/*Styles used in the Superfish jQuery effects */

body {
 -moz-opacity: .999; /*to defeat firefox redraw problem with fade effect*/
}

#headerblock {
	height: 273px;
	background: url(../images/headergradient2.jpg)  repeat-x;/*Relative path from the CSS file! */
}

#headerimage {
	display: block;
	height: 228px;
}	

#menublock {
	width: 914px;
	height: 45px;
	position: relative;
	float: left;
	left: 50%;
	padding-left: 10px;
	display: inline;
	margin-left: -457px;
	z-index: 1; /*Don't remove this! It's essential to defeat an IE6 z-index bug */
}


#menu .menuitem {
	float: left;
	color: #fff;
	font-weight: bold;
	height: 45px;
	padding-top: 12px;
	
	text-align: left;
	background: url(../images/smallred.png) no-repeat;/*Relative path from the CSS file! */
	background-position: 100px -4px;
	margin-left: 10px;
	padding-left: 15px;
	width: 145px;
	text-decoration: none;
	display:inline;
}

#menu li {

	background: url(../images/vertical.png) no-repeat;/*Relative path from the CSS file! */
	background-position: 12px -4px; /*Pulls the menu in from the left edge of the page*/
	width: 145px;

}

#menu li a.menuitem:hover {
	text-align: left;
	background: url(../images/smallorange.png) no-repeat;/*Relative path from the CSS file! */
	background-position: 100px -3px;
	margin-left: 10px;
	padding-left: 15px;
	width: 145px;
	text-decoration: none;
	display: inline;
}

/* link styles */
.nav a {
	text-decoration: none;
	display: block;
	padding: 5px 7px 4px 17px;
	color: #fff;
	width: 120px;
	font-weight: bold;
	background-color: #4C5353;
	margin: 0;
}

#menu  li li a {
  /* style for links on pop-up menus */
  color: #fff;
}

#menu li li li a {
	/* style for second level menu links - if any */
}

#menu a:hover{
	background-color: #333;
	color: #FFF;
	text-decoration: none;
}

/* main nav bar */
.nav {
	margin: 0;
	padding: 0;
	line-height: 1;
}

/* all list items */
.nav  li {
	margin:0 !important;
	padding:0 !important;
	list-style: none; /* remove bullets */
	float: left; /* place buttons side by side */
 	position: relative;
}


/* pop-up subnav */
.nav ul {
	margin: 0;
	padding: 0;
	position: absolute;
 	left: 17px; /*This positions the sublink*/
  	top: 45px; /* change when you change height of links */
	z-index: 99;
	display: none;
	text-align: left;
	
}

/* list items in pop-up subnav */
.nav ul li {
	float: none; /* so links line up one above the other for drop-downs */
}


