﻿/* CSS - STYLES FOR MAIN OUTER DIV CONTAINERS  */

body {	/* Style for the body tag */
				margin-top:0px;
				margin-bottom:0px;
				margin-left:0px;
				margin-right:0px;
				background-color:#ffffff;/*#9a9a9a;*/ /*#444444;*/
		  }



div.main {	/* Main outer container DIV */
				margin-top:0px; 
				margin-bottom:0px;  /*15px; Margin of space at the end of the web page */ 
				
		  }


div.sub-main {	/* Sub-main container DIV */
				background-color: #ffffff; /*#cccccc;*/ /* Ensure the entire container backgorund is white */
				width: 960px; /*71.1%; /*960px;*/ /* Define the width of the main web page area */ /*OK for 950-1200px (960px ~71.1%)*/
		  		
		  }


div.page-contents {	/* Page content DIV - container to hold main content Div AND sidebar Div */
				margin-top:40px; 
				margin-left:0px;
				background-color: #ffffff;/*#cccccc;*/
				width: 100%; /*960px; */  
		  		}


div.content-main  { background-color: #ffffff; /*#cccccc;*/  /*Container DIV for the contents area fo==of page */
						float: left;
						width: 70%; /*67%; /*638px; */
						/* height: 600px; */
						
				  }
	
div.content-sidebar  {background-color: #ffffff; /*#cccccc;*/ /* Container for the sidebar content */
	                   float:left;
	                   width: 30%;/*33%;/*322px; */
	                   /* height: 600px; */ 
	                   color: #27397a;
	                   
	                                      
	                   }
		
	