@charset "utf-8";
<style type="text/css">
 /* =========================================================================
For any free or commercial usage please keep this credits text intact.
Author : Femi Hasani www.vision.to ,test idea and CSS code.
The original version of this stylesheet and the associated (x)html
is available at http://www.vision.to/simple-css-one-level-dropdown-menu.php
A link to www.vision.to would be apperciated but not mandatory.
=============================================================================== */
ul#nav {
	z-index: 5000;
}

ul#nav li {
    list-style:none;
	position: relative;
	float: left;
	text-align: center;
	line-height: 33px;	
}

ul#nav li a {
	display: block;
	color: #fff;
	text-decoration: none;
	text-align: center;
    padding: 0 15px;
	margin:0 13px;
}

ul#nav  li ul {
    display: block;
    position: absolute;
/* hidding submenus based on: http://css-class.com/articles/ursidae/  */
    left: -999em;/* this makes it more accessible than display:none; */
    width: 200px;
    background:#55201d;
}

ul#nav  li:hover ul,
ul#nav  li.over ul /* This is for Internet Explorer 6  */
{
    display: block;
    left: 0;
    top: 100%;
    position: absolute;
    z-index: 4000;
    width: 200px;
	margin:0 0 0 13px;
	padding:0;
}

ul#nav  li ul li {
    width: 200px;
    height: auto;
    background: transparent;
    text-indent: 0;
}

ul#nav  li:hover ul li a,
ul#nav  li.over ul li a {
    display: block;
    text-decoration: none;
    margin: 0;
    color: #fff;
    text-indent: 0;
    text-align: left;
    border: 0;
    white-space: nowrap;
}

ul#nav li ul li a:hover {
    color: #fff;
    background: #6c2825;
}

ul#nav li.active a,
ul#nav li a:hover,
ul#nav li:hover a,
ul#nav li.over a {
    background: #55201d;
}
</style>