@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #0098c7;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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;
}
#container {
	width: 800px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-image: url(../images/dsc_background.jpg);
	background-repeat: no-repeat;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 25px;
	margin-left: auto;
} 
#header {
	background-color: #FFFFFF;
	height: 115px;
	width: 800px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
	padding: 0px;
} 
#logo {
	float: left;
	height: 115px;
	width: 150px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
}
#navigation {
	float: left;
	height: 25px;
	width: 635px;
	background-color: #FFFFFF;
	background-image: url(../images/navigation.jpg);
	padding-top: 90px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
}
#tag_bar {
	background-image: url(../images/tag.png);
	height: 25px;
	width: 740px;
	padding: 0px;
	margin-top: 15px;
	margin-right: 30px;
	margin-bottom: 0px;
	margin-left: 30px;
	float: left;
}
#tag_bar p {
	font-family: Georgia, "Times New Roman", Times, serif;
	display: none;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 240px;
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 30px;
	background-image: url(../images/white.png);
}
#sidebar1 p {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 0.8em;
	font-weight: bold;
	color: #121212;
	margin: 0px;
	padding: 0px;
	line-height: 1.2em;
}
#sidebar1 h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1em;
	font-weight: bold;
	color: #0098C7;
	font-style: normal;
	margin: 0px;
	padding: 0px;
}
#sidebar1 ul {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 0.8em;
	line-height: 1.3em;
	color: #121212;
	font-style: normal;
	font-weight: bold;
	margin: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 20px;
}
#sidebar1 li {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 0px;
	list-style-image: url(../images/arrow.png);
}
#sidebar1  a:link   {
	color: #0098C7;
	font-size: 0.8em;
}
#sidebar1 a:visited {
	color: #0098C7;
	font-size: .8em;
}
#sidebar1 a:hover {
	color: #121212;
	font-size: .8em;
}
#sidebar1 a:active {
	color: #0098C7;
	font-size: .8em;
}
#flash {
	height: 260px;
	width: 470px;
	padding-top: 0px;
	padding-right: 30px;
	padding-bottom: 10px;
	padding-left: 0px;
	float: right;
	margin: 0px;
} 
#home_copy {
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	background-image: url(../images/white.png);
	margin-top: 10px;
	margin-right: 30px;
	margin-bottom: 15px;
	margin-left: 30px;
}
#home_copy p {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 0.8em;
	line-height: 1.3em;
	font-weight: normal;
	color: #000000;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 0px;
}
#home_copy h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.2em;
	font-weight: bold;
	color: #0098C7;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}
#footer {
	background-color: #FFFFFF;
	margin: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 25px;
} 
#footer p {
	margin: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 0.65em;
	color: #0098C7;
}
.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;
	margin-left: 8px;
}
.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;
}
#container .clearfloat {
}
