#navbar 
{
    height:3.7em;
    margin:0 15px;
    background: url(../img/nav_bg.jpg) repeat-x left top;
}

.menu
{
    text-align:center;
    padding: 3px 0 0 0;
    letter-spacing:-1px;
}

.menu a
{
    text-decoration:none;
    color: #585858;
    display:block;
    padding:10px 0 6px 0;
}

.menu a:hover
{
    text-decoration:underline;
    color: #FE7C21;
}

a:focus, a:active
{
    border:1px dotted #585858;
    background-color:#fff;
    color: #333;
}

.menu .menu_sep
{
    background: url(../img/nav_sep.gif) no-repeat 0 5px;
}

.menu li {
    float: left;
    list-style: none;
    padding: 0 8px;
    position: relative;
    width:8em;
    font-size:1.1em;
    text-transform:uppercase;
    font-weight:bold;
}

.menu li a
{
        border-top:3px solid #585858;
        padding-top: 10px;
}

.menu li a:hover
{
        border-top:3px solid #FE7C21;
        color: #FE7C21;
}

.menu ul {
	text-align: center;
	margin: 17px 0 0 0;
	padding: 1px;
	list-style: none;
	width: 9em; /* Width of Menu Items */
}

.menu ul li {
	clear: left;
	width: 10.5em;
	position: relative;
	font-size:0.9em;
	border:0;
	padding:0;
}



	
.menu li ul {
	position: absolute;
	left: 0; /* Set 1px less than menu width */
	top: 1em;
	display: none;
	z-index: 99;
}

/* Styles for Menu Items */
.menu ul li a {
	display: block;
	text-decoration: none;
	background: #F7F7F7; /* IE6 Bug */
	border-bottom: 1px solid #999;
	border-top:0;
	border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    color: #333;
    padding:2px 0;
}

.menu ul li a:hover
{
    border-bottom:1px solid #FE7C21;
    border-top:0;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    color: #333;
}


/* Fix IE. Hide from IE Mac \*/
* html .menu ul li { float: left; height: 1%; }
* html .menu ul li a { height: 1%; }
/* End */


.menu li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; } /* The magic */


