/* 
    Created on : Aug 18, 2015, 3:57:25 PM
    Revised on:  Aug 24, 2015
    Author     : CK MacLeod
*/

/*will handle basic case, others more complicated */
.breakpoint ol.children li, 
.comments-area .breakpoint ul.children {
    
    padding-left: 0px;

}
/*
2015 VERSION 

.comment-list .breakpoint article {
    padding-top: 0;
}

.comments-area li.leftturn {
	margin-left: -14px;
}

.leftturn > article {
	border: 2px solid #EFE1E1;
	padding: 12px 0 6px 6px;
}

.leftturn > article:before {
	content: '\2190';
	font-size: 75%;
	float: left;
	padding: 0 6px;
	color: gray;
	background-color: #EFE1E1;
        width: 100%;
}

.leftturn > article:hover:before {
	content: '\2190	Max-Depth/Nesting to Left';
}

.rightturn {
	margin-left: 14px;
}

.rightturn > article {
	border: 2px solid #B6DAED;
	padding: 12px 0 6px 6px;
}

.rightturn > article:before {
	content: '\2192';
	font-size: 75%;
	float: left;
        text-align: left;
	padding: 0 6px;
	color: gray;
	background-color: #B6DAED;
        width: 100%;
}

.rightturn > article:hover:before {
	content: 'Max-Depth/Nesting to Right \2192';
}*/

/*COMBINED VERSION */




.comment-list .breakpoint article {

	background-color: #fff;
	position: relative;
}

.breakpoint .comment-respond {
	width: 435px;
	background-color #fff;
}


.comments-area li.leftturn {
	margin-left: -14px;
}

.comments-area .leftturn > article {
	border: 2px solid #EFE1E1;
	width: 435px;

}

.leftturn > article:before {
	content: '\2190';
	font-size: 75%;
	float: left;
	padding: 0 6px;
	color: gray;
	background-color: #EFE1E1;
	position: absolute;
	bottom: 0;
	left: 0;

}

.leftturn > article:hover:before {
	content: '\2190	Max-Depth/Nesting to Left';
}

.rightturn {
	margin-left: 14px;
}

.comments-area .rightturn > article {
	border: 2px solid #B6DAED;
	width: 435px;

}

.rightturn > article:before {
	content: '\2192';
	font-size: 75%;
	float: right;
        text-align: right;
	padding: 0 6px;
	color: gray;
	background-color: #B6DAED;
	position: absolute;
	bottom: 0;
	left: 0;
}

.rightturn > article:hover:before {
	content: 'Max-Depth/Nesting to Right \2192';
}

@media only screen and (max-width: 640px) {
	.comments-area li.leftturn {
		margin-left: -4px;
	}

	.rightturn {
		margin-left: 4px;
	}	

	.breakpoint .comment-respond, .comments-area .rightturn > article, .comments-area .leftturn > article {
		max-width: 100%;
	}

}
