/* CSS Document */
body  {
	font: 14px;
	margin: 0;
	padding: 0;
	text-align: center;
	background-color: #CCCCCC;
}
#container { 
	width: 780px; 
	background: #FFFFFF;
	margin: 10px auto; 
	border: 5px solid #ffffff;
	text-align: left; 
	overflow: hidden;

} 
#header { 
	background:no-repeat; 
	height:auto;
	padding: 0;
	border-bottom: 1px solid #333333;
} 

#sidebar1 {
	float: left; 
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 5px 7px;
	margin-top: 5px;

}
#mainContent { 
	margin: 5px 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px ; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 570px;
	border-left:1px solid #333333;
} 

#footer { 
	padding: 0 ;
	background: #006BA5;
	margin:0;
	position: relative;
} 
#footer1 {
	clear:both;
	height: auto;
	background-color:#FFFFFF;
	margin-top:5px;
	border-top: 1px solid #333333;
	
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}





/*text*/
.sidenav {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-weight: bold;
	text-align:left;
	line-height:14px;
}

.navbar {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	color: #006BA5;
	text-align:center;
}

.list	{
	line-height:18px;
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
	color: #333333;
}


a:link {
	text-decoration: none;
	color: #006BA5;
}

p {
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
	line-height:18px;
	color: #333333;
}

#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #fff;
	text-align:center
}

h1 {
	font-family: "Times New Roman", Times, serif;
	font-size: 36px;
	line-height:40px;
	font-weight: normal;
	color: #333333;
	padding:10px 0;
}

h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	line-height:20px;
	color: #333333;
	font-weight: bold;
	font-style:italic;
}

h4 {
	font-family: "Times New Roman", Times, serif;
	font-size: 17px;
	
	color: #333333;
}

h5	{
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
	line-height:14px;
	font-weight: bold;
	color: #333333;
}

h6 {
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	line-height:14px;
	font-weight: bold;
	color: #333333;
}

ul	{
	margin: 0 0 0 30px;
	padding: 0;
	
}




