
	nav {
	    background: url("../images/nav.jpg") no-repeat scroll 0 0 transparent;
	    height: 30px;
	    border-bottom: 1px solid #44599a;
	    padding-left: 350px;
	}

	nav ul li {
	    float: left;
	    height: 25px;
	    list-style-type: none;
	    margin: 0;
	    padding: 10px 0 0 0;
	    position: relative;
	    text-align: center;
	}

	nav ul li a {
	    color: #3b52a2;
	    display: block;
	    font: bold 12px "Trebuchet MS",Arial,Helvetica,sans-serif;
	    text-decoration: none;
	    text-transform: uppercase;
	}

	nav a { color: yellow; }
	
	nav a:visited {
	    color: #3b52a2;
	}

	nav a:hover, nav a:focus {
	    color: red;
	}

	nav a:active {
	    color: yellow;
	}

	nav a.current {
	    font-weight: bold;
	    color: red;
	    text-decoration: overline;
	}

	nav > ul {
	    height: 40px;
	    margin: 0;
	    padding: 0;
	}

	nav > ul > li {
	    display: inline;
	    margin: 0 20px;
	}

	nav ul ul {
	    background: #999; /* for non-css3 browsers */
	    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5B98C5', endColorstr='#0E4588'); /* for IE */
	    background: -moz-linear-gradient(center top , #5B98C5, #0E4588) repeat scroll 0 0 transparent;
	    border: 1px solid #B4B4B4;
	    border-radius: 10px 10px 10px 10px;
	    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	    display: none;
	    left: 0;
	    margin: 0;
	    padding: 5px 0 0 0;
	    position: absolute;
	    top: 35px;
	    width: 185px;
	}

	nav ul li:hover > ul {
	    display: block !important;
	}

	nav ul ul li {
	    float: none;
	    margin: 0;
	    padding: 0 15px;
	    text-align: left;
	    z-index: 4;
	}

	nav ul ul ul {
	    left: 181px;
	    top: -3px;
	}

	nav ul ul li:first-child > a {
	    border-radius: 10px 10px 0 0;
	}

	nav ul ul li:last-child > a {
	    border-radius: 0 0 10px 10px;
	}

	nav ul:after {
	    clear: both;
	    content: ".";
	    display: block;
	    height: 0;
	    line-height: 0;
	    visibility: hidden;
	}

	nav ul {
	    display: inline-block;
	}

	html[xmlns] nav ul {
	    display: block;
	}

	* html nav ul {
	    height: 1%;
	}
