/*-----CSS styles-----*/

body  {
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 75%;
	font-style: normal;
	text-decoration: none;
	background-color: #D1D1D1;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
#container {
	width: 860px;
	text-align: left;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #EDEDED;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
} 
#header {
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 200px;
	background-image: url(images/header.jpg);
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#sidebar1 {
	background: #EBEBEB;
	float: left;
	width: 190px;
}
#sideContent
 {
	background-image: url(images/color_block.jpg);
	background-repeat: repeat-y;
	background-position: left;
}
#navigation ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	}
	
#navigation li {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	list-style-type: none;
	font-size: 95%;
	}
	
#navigation li a:link, #navigation li a:visited {
	text-decoration: none;
	background-color: #CCCCCC;
	display: block;
	padding-top: 0.4em;
	padding-right: 7px;
	padding-bottom: 0.4em;
	border-left-width: 12px;
	border-left-style: solid;
	border-left-color: #2B408D;
	padding-left: 10px;
	color: #000000;
	width: 161px;
}
	
#navigation li a:hover {
	background-color:#ECFCFF
	}
	
#mainContent {
	padding-top: 20px;
	padding-right: 50px;
	padding-bottom: 30px;
	padding-left: 50px;
	width: 568px;
	margin-left: 190px;
	background-color: #FFFFFF;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #000000;
	margin-bottom: 0px;
	}
 
#footer {
	background-color: #2B408D;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000000;
	height: 30px;
	color: #FFFFFF;
	text-align: center;
	padding-top: 10px;
} 
H2 {
	font-size: 120%;
	text-decoration: underline;
}
H3 {
	font-size: 110%;
}
.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:0px;
	line-height: 0px;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
a:link {
	color: #000000;
}
#img {
	float: left;
	margin-top: 18px;
	margin-right: 15px;
	margin-bottom: 5px;
	border: thin solid #000000;
}
#clear {
	clear: both;
}
