/*
    3.0_4.screen-layouts
    
    Within the site all column layouts within main content areas should be modular
    and defined here.
    - All layouts are designed to be used with the cc class to clear the containers
    - Layouts prefix: lay 
    
    A few examples/often used layouts are defined below.
    
*/

/* 
	lay-c2
	General 2 equal column layout
-------------------------------------------------------*/
.lay-c2 {
	margin: 0;
	padding: 0;
}
	.lay-c2 .lay-c2-left,
	.lay-c2 .lay-c2-right {
		list-style-image: none;
		list-style-type: none;
		position: relative;
		width: 49.2%;
		zoom: 1; 
	}
	.lay-c2 .lay-c2-left { float: left; }
	.lay-c2 .lay-c2-right { float: right; }

/*
    lay-m2
    2 Column master layout with area for content on the right
    and navigation on the left.
----------------------------------------------------------*/
.lay-m2 {
    padding-top: 25px;
    padding-bottom: 25px;
}
    .lay-m2 .mod-content {
	    position: relative;
	    /*margin-left: 25px;*/
	    float: right;
	    width: 718px;
    }
    .lay-m2 .mod-navigation {
	    position: relative;
	    float: left;
	    width: 174px;
    }

