/**
 * Structure
 * 
 */

.container
{
	max-width:100rem;
	background-color: #fff;
}


/*
	Top and bottom border lines uses as seperators for nav/ headings
 */
.seperator
{
	border-top: 1px solid #000;
	border-bottom: 1px solid #CCC;
}

.seperator-top
{
	border-top: 1px solid #CCC;
}

.seperator-bottom
{
	border-bottom: 1px solid #CCC;
}




/* 
Breakpoints
*/
@media only screen and (max-width: 725px)
{
	/*
		Main content area 
	 */
	section.main .container>.row>.row>.w_7_10
	,section.main .container>.row>.row>.sidebar
	{
		width:100%;
	}
}


