/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/


*/	
	body.custom { background: url(http://www.jacksonvillespeedway.com/images/back2.jpg )no-repeat fixed top center; margin: 0 auto ;}
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #ffffff; border: 0.2em solid #949494; }

		.custom #page {background: #ffffff;}
				#header, #footer { padding-top: 0em; padding-bottom: 0em; padding-right: 0em; padding-left: 0em;  }
		#content {background: #ffffff; width: 65.6em; float: left; }
		
.custom #sidebars {


					HEIGHT: 1900px;}
					

					
.custom .menu {background: url(http://www.jacksonvillespeedway.com/images/nback.gif) repeat; font-weight:bold;  }
.custom .menu a {  background: url(http://www.jacksonvillespeedway.com/images/nback.gif) repeat; border-width: 0 0 0 0;} 
.custom .menu li { margin-bottom: 0em; }


#nav {
	background: url(http://www.jacksonvillespeedway.com/images/nback.gif) repeat;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	MARGIN: 0px;
	WIDTH: 100%;
	HEIGHT: 45px;
	font-weight:bold;
	float: left;
	list-style: none;
	font-size:18px;
	text-transform:uppercase;
	}

#nav ul{
float: left;
margin: 5px 0 0 0;
	padding: 0;
}	
	
#nav li {
	float: left;
	list-style-type: none; }
#nav li a {
	display: block;
	padding: 6px 15px;
	text-decoration: none;
	font-weight: bold;
	color: #fff;

	list-style-type: none;}
 #nav li a:hover {
	color: #CFCFCF;
	 }	
	
/* dropdown part of navigation */
#nav li ul {
	display: none;  }	
#nav li:hover ul {
	display: block;
	position: absolute;
	margin: 0;
	padding: 0; }
#nav li:hover li {
	list-style-type: none;
	float: none; }
#nav li:hover li a {
	background-color: #CCCCCC;
	border-bottom: 1px solid #fff;
	color: #000; }
#nav li li a:hover {
	background-color: #999999; }
		
	
		
	

	
/*	
#nav {
	background: url(http://www.jacksonvillespeedway.com/images/nback.gif) repeat;
	MARGIN: 0px;
	WIDTH: 100%;
	HEIGHT: 45px;
	font-weight:bold;

	}
.menu{
border: none;
	height: 32px;
	position: relative;
	width: 923px;
	}
	
.menu_1 {
	border: none;
	height: 32px;
	width: 923px;
	padding: 0px;
	position: absolute;
	top: 0px;
	left: 0px;
}
*/