/* CSS Document */

/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	background: #fff;
	margin: 0px; /* Always set margins to 0. Some browsers automatically apply them. */
	padding: 0px; /* Always apply padding if you apply margins */
	
}

/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

p, h1, h2, h3, h4, h5, h6, a, ul, li, ol, dt, dd, td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* Redefines the p tag */
p { 
	font-size: 11px;
	color:#000;
	line-height: 20px;
	margin: 10px;
}
h1 {
	font-size: 22px;
	color:#cc0000;
	margin: 10px;
}

h2 {
	font-size: 12px;
	font-weight: normal;
	color:#fff;
	margin: 10px;
	border-bottom: 1px solid #fff;}

h3 {
	font-size: 14px;
	font-weight: bold;
	color:#fff;
	text-align: center;
	margin-top: 5px;
}


/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
color: #808080;
}
a:visited {
color: #808080;
}
a:hover {
color: #cc9999;
text-decoration: underline;
}


/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */



div#container {
	background: #fff;
	width: 723px;
	margin: 0px auto;
	}
	

div#header {
	height:219px;
	width: 723px;
	margin-bottom: -2px;
}


div#navigation{
	width: 215px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	margin-top: 0px;
	float: left;
	background: #993333;
}

#navigation ul{
	list-style: none;
	margin: 0px;
	padding: 0px;
}

#navigation li{
	border-bottom: 1px solid #fff;
	font-color: #fff;
	font-weight: bold;
}

#navigation li a {
	display: block;
	padding: 5px 5px 5px 0.5em;
	border-top: 0px solid #fff;
	border-right: 1px solid #fff;
	background: #660000;
	color:#fff;
	text-decoration: none;
}

#navigation span{
	color:#cccc33;
}

#navigation li a:hover{
    display: block;
	padding: 5px 5px 5px 0.5em;
	color:#fff;
	background: #808080;
}


div#contentholder{   /*--Both the content Nav and sidenav divs are wrapped with this div  */
	width: 723px;
	position: relative;
	border-top: 1px solid #333;
	border-left: 1px solid #333;
	border-right: 1px solid #333;
	}	


div#content {
	background:#fff;
	width: 475px;
	float: right;

}

#content li {font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color:#000;
	line-height: 20px;
	margin: 10px;
}

div#sidenav{
	width: 215px;
	float: left;
	margin: 3px;
}

div#sidnavtop{
	width: 215px;
	height: 11px;
}

div#sidnavbottom{
	width: 215px;
	height: 11px;
}


/* Creates the div container for the footer. */

div#links {
	font-size: 11px;
	background: #fff;
	width: 723px;
	height: 25px;
	clear: both;
	text-align: center;}

div#footer {
	background: #333333;
	width: 723px;
	height: 38px;
	clear: both;
	text-align: center;}

div.copyright {
	font-size: 9px;
}

input, textarea {
		font-size: 11px;
        margin-bottom: 10px;
		
}

label{  
		text-align: left;
        width: 50px;
        padding-right: 20px;
}


/* ----------------- IMAGE ELEMENTS ----------------- */


img.left {
	float: left;
}
img.right {
	float: right;
}
clear {
	clear: both;
}

/* ----------------- CUSTOM CLASSES ----------------- */

