@charset "utf-8";
/* CSS Document */

body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	margin: 0; 
	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;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #CC3300;
}
a:active {
	text-decoration: none;
	color: #CC3300;
}

#container { 
	width: 100%;  /* this will create a container 100% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#container h2, #container p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
#container h2{
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 5px;
	margin-top: 5px;
}

#header {
	padding: 0 0px 0 0px;
	position: relative;
	text-align: center;
	width: 100%;
	height: 110px;
	color: #FEF7CB;
	font-size: 36px;
	font-weight: bold;
	background-color: #23759D;
	background-position: left;
	background-image: url(images/cowbg1.jpg);
	background-repeat: no-repeat;
} 

#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: 0;
	font-size: 16px;
	font-weight: bold;
	font-style: italic;
}
#header h2 {
	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: 0;
	font-size: 14px;
	font-weight: bold;
	font-style: italic;
}
#header a  {
	color: #FEF7CB;
}
#title{
	top: 3px;
	position: relative;
}
#bottom-nav{
	background: #000000;
	padding: 0 0px 0 0px;
	width: 100%;
	color: #C4DCA3;
	font-weight: bold;
} 

#bottom-nav ul {
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	list-style: none;
	background-color: #000000;
	height: 2.7em;
	text-align: center;
}
#bottom-nav li {
	float: left;
	margin-left: 0px;
	width: 14%;
}
#bottom-nav a {
	text-decoration: none;
	color: #FFD57D;
	background-color: #000000;
}
#bottom-nav a:hover{
	color: #FFFF00;
}
#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 50%; /* the background color will be displayed for the length of the content in the column, but no further */
	margin-top: 0px; /* top and bottom padding create visual space within this div  */
	background-color: #FFFFFF;
	margin-left: 25px;
	padding-top: 15px;
}
/* Tips for mainContent:
1. the space between the mainContent and sidebar is created with the right margin on the mainContent div.  No matter how much content the sidebar div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar space when the content in #sidebar ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
#mainContent {
	width: 680px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
} 
#mainContent img{
	padding-right: 10px;
	float: left;
}
#blurb
{
	width: 95%;
	position: relative;
	background: #FFFFFF;
	margin: 0 auto 0px; /* the auto margins (in conjunction with a width) center the page */
	padding-left: 5px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding-top: 20px;
	text-align: center;
	padding-bottom: 60px;
}

#footer {
	padding: 0 0px;
	text-align: center;
	background-color: #FFFFFF;
} 
#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 */
}
#footer strong {
	font-size: 16px;
	font-weight: bold;

}

/* Miscellaneous classes for reuse */
.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. The floated element must precede the element it should be next to on the 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;
}
.subject{
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #808080;
	margin-left: 10px;
	margin-top: 5px;
	padding-bottom: 10px;
	height: 90px;
}

.subject img{
	padding-right: 10px;
	float: left;
}
legend{
	font-size: 12px;
	font-weight: bold;
}
.copyright{
	font-size: 10px;
	color: #666666;
}
#sidebar {
	margin-top: 0px; /* top and bottom padding create visual space within this div  */
}
.smalltext{
	font-size: 10px;
}
[if IE]>
/* place css fixes for all versions of IE in this conditional comment */
.main #sidebar { padding-top: 30px; }
.main #mainContent { zoom: 1; padding-top: 15px; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
<![endif]
