@charset "utf-8";
/* CSS Document */

/* Berson Drop Down Menus */
/* A solid CSS + Suckerfish Solution */
/* Thanks to the designers at HTMLDog for their coding wisdom */

/* --- Navigation Segment --- */

#post_nav_clear {
clear: both;
}

#nav {
background-image: url(../art/nav_bar_bg.jpg);
background-position: center;
background-repeat: repeat-x;
display: table;
font-family: Tahoma, Geneva, sans-serif;
font-size: 13px;
list-style: none;
margin: 0 auto;
padding: 0;
position: relative;
text-align: center;
width: 960px;
}

.nav_ul {
list-style: none;
margin: 0;
margin-left: 5.9%; /* Adjust this value if you add more navbar links */
padding: 0;
}

.nav_li {
float: left;
list-style: none;
margin: 0;
padding: 0;
}

.nav_a {
background-image: url(../art/nav_bar_bg.jpg);
background-position: center;
background-repeat: repeat-x;
color: white;
display: block;
margin: 0;
padding: 10px 20px; /* Adjust the right/left padding if you add more navbar links */
}

.nav_li a:link,
.nav_li a:visited {
color: white;
text-decoration: none;
}

.nav_li a:hover {
background-color: #FFF;
background-image: none;
color: #900;
text-decoration: none;
}

.sub_nav_ul {
 list-style: none;
 margin: 0;
 padding: 0;
}

.sub_nav_a {
background-color: black;
color: white;
display: block;
margin: 0;
padding: 10px 20px;
}


/* --- Suckerfish --- */
#nav li ul {
	position: absolute;
	left: -999em;
}

#nav li:hover ul {
	left: auto;
}

#nav li:hover ul, #nav li.sfhover ul {
	left: auto;
}

/* --- End --- */
