/*MAIN BLOCKS*/

* {
	margin: 0;
	padding: 0;
}

body {
	background: #222222;
	background-position: top center;
	background-image: url(/images/body.jpg);
	background-repeat: repeat-y;
	font-family: Arial;
}

#wrapper {
	margin: auto;
	width: 800px;
	height: auto;

}

#header {
	width:800px;
	height: auto;
	border-bottom: medium solid #fff;

}

#logo {
	width: 423px;
	height: 114px;
	background-image: url(/images/header-logo.png);
	margin-top: 50px;
	float:left;
	clear:both;
}

#navigation {
	width: 100%;
	height: auto;
	margin-top: 15px;
	float: left;
}

#content {
	width: 100%;
	height: auto;
	position: relative;
	margin-top: 30px;
	color: #fff;
}

#footer {
	width: 100%;
	height: auto;
	position: relative;
	margin-top: 30px;
	color: #fff;
	border-top: medium solid #fff;

}

/* TOP NAVIGATION */
ul#topnav {
	margin: 0; padding: 0;
	float:left;
	width: 100%;
	list-style: none;
	font-size: 1.1em;
}
ul#topnav li {
	float: left;
	margin: 0; padding: 0;
	padding-left: 6px;
	padding-right: 6px;
	position: relative; /*--Important--*/
}
ul#topnav li a {
	float: left;
	text-indent: -9999px; /*--Push text off of page--*/
	height: 30px;
}

ul#bottomnav {
	margin: 0; padding: 0;
	float:left;
	width: 100%;
	list-style: none;
	font-size: 1.1em;
}
ul#bottomnav li {
	float: left;
	margin: 0; padding: 0;
	padding-left: 6px;
	padding-right: 6px;
	position: relative; /*--Important--*/
}
ul#bottomnav li a {
	float: left;
	text-indent: -9999px; /*--Push text off of page--*/
	height: 30px;
}
/* ul#topnav li:hover a, ul#topnav li a:hover { background-position: left bottom; }  */ /*--Hover State--*/

ul#topnav a.home {
	background: url(/images/menu/home.png) no-repeat;
	width: 59px;
}

ul#bottomnav a.about {
	background: url(/images/menu/about.png) no-repeat;
	width: 68px;
}

ul#topnav a.schedule {
	background: url(/images/menu/schedule.png) no-repeat;
	width: 97px;
}

ul#bottomnav a.contact {
	background: url(/images/menu/contact.png) no-repeat;
	width: 91px;
}
ul#topnav a.sponsors {
	background: url(/images/menu/sponsors.png) no-repeat;
	width: 104px;
}
ul#bottomnav a.teams {
	background: url(/images/menu/teams.png) no-repeat;
	width: 68px;
}
ul#topnav a.standings {
	background: url(/images/menu/standings.png) no-repeat;
	width: 112px;
}

ul#bottomnav a.parents {
	background: url(/images/menu/parents.png) no-repeat;
	width: 88px;
}

ul#topnav a.registration {
	background: url(/images/menu/registration.png) no-repeat;
	width: 160px;
}

ul#topnav a.importantdates {
	background: url(/images/menu/importantdates.png) no-repeat;
	width: 220px;
}

ul#topnav a.apparel {
	background: url(/images/menu/apparel.png) no-repeat;
	width: 100px;
}

ul#topnav a.cheerleading {
	background: url(/images/menu/cheerleading.png) no-repeat;
	width: 155px;
}

ul#bottomnav a.coaches {
	background: url(/images/menu/coaches.png) no-repeat;
	width: 100px;
}

ul#bottomnav a.forms {
	background: url(/images/menu/forms.png) no-repeat;
	width: 80px;
}

ul#bottomnav a.homefield {
	background: url(/images/menu/homefield.png) no-repeat;
	width: 135px;
}


ul#topnav li .sub {
	position: absolute; /*--Important--*/
	top: 44px; left: 0;
	background: #344c00 url(sub_bg.png) repeat-x; /*--Background gradient--*/
	padding: 20px 20px 20px;
	float: left;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	display: none; /*--Hidden for those with js turned off--*/
}
ul#topnav li .row { /*--If needed to break out into rows--*/
	clear: both;
	float: left;
	width: 100%;
	margin-bottom: 10px;
}
ul#topnav li .sub ul{
	list-style: none;
	margin: 0; padding: 0;
	width: 150px;
	float: left;
}
ul#topnav .sub ul li {
	width: 100%; /*--Override parent list item--*/
	color: #fff;
}
ul#topnav .sub ul li h2 { /*--Sub nav heading style--*/
	padding: 0;  margin: 0;
	font-size: 1.3em;
	font-weight: normal;
}
ul#topnav .sub ul li h2 a { /*--Sub nav heading link style--*/
	padding: 5px 0;
	background-image: none;
	color: #e8e000;
}
ul#topnav .sub ul li a {
	float: none;
	text-indent: 0; /*--Override text-indent from parent list item--*/
	height: auto; /*--Override height from parent list item--*/
	background: url(navlist_arrow.png) no-repeat 5px 12px;
	padding: 7px 5px 7px 15px;
	display: block;
	text-decoration: none;
	color: #fff;
}
ul#topnav .sub ul li a:hover {
	color: #ddd;
	background-position: 5px 12px ;/*--Override background position--*/
}

/* MISC */
.transparent_class {
	filter:alpha(opacity=60);
	-moz-opacity:0.6;
	-khtml-opacity: 0.6;
	opacity: 0.6;
}

.clear{
	clear:both;
}