@charset "utf-8";
/* CSS Document */

ul.nav {
	width: 1000px;
	height: 25px;
	background: #8D3B2D;
	margin: 0 auto;
	padding: 10px;
	font-family:Verdana, Geneva, sans-serif;
	position: relative;
	z-index: 9999;
	}
	 
ul.nav li {
    position: relative;
    margin: 0 21px;
    height: 55px;
    list-style: none;
    float: left;
	text-transform:uppercase;
	}
	 
ul.nav li a {
    display: block;
    text-decoration: none;
    color: #FFF;
    font-weight: bold;
    font-size: 12px;
    height: 25px;
    padding-top: 6px;
	}
	 
ul.nav li a:hover {
    color: #CCC;
    padding-top: 6px;
    height: 25px;
	}
	 
/************************* DROP DOWN - First Level **************************/
ul.nav ul {
    width: 200px;
    position: absolute;
    visibility: hidden;
    height: auto;
    z-index: 1;
    left: -70px;
	}
	 
ul.nav ul a {
    font-size: 12px;
    color: #999;
    text-align: left;
    font-weight: normal;
    font-family: Verdana, Geneva, sans-serif;
    display: block;
	text-transform:none;
	}
	 
ul.nav li:hover ul,
ul.nav a:hover ul {
    visibility: visible;
	}
	 
ul.nav ul li {
    float: left;
    clear: both;
    width: 228px;
    background: #FFF;
    height: 20px;
    padding: 10px 14px 10px 16px;
    white-space: nowrap;
	}
	 
ul.nav ul li a {
    border-bottom: 1px solid #CCC;
    padding-bottom: -5px;
    height: 17px;
	}
	 
ul.nav ul li a:hover {
    color: #8D3B2D;
    height: 17px;
	}
	 
/************************* DROP DOWN - Second Level **************************/
ul.nav ul ul {
    position: absolute;
    display: none;
    visibility: hidden;
    position: absolute;
    z-index: 2;
    left: 112px;
    top: 0px;
	}
	 
ul.nav ul li:hover ul,
ul.nav ul a:hover ul {
    visibility: visible;
    display: inline;
	}
	 
ul.nav ul ul li {
    background: #F5F5F5;
	}
	 
/************************* DROP DOWN - third Level **************************/
ul.nav ul ul ul.third {
    position: absolute;
    display: none;
    visibility: hidden;
    position: absolute;
    z-index: 3;
    left: 112px;
    top: 0px;
    zoom: 1;
	}
	 
ul.nav ul ul li:hover ul.third ,
ul.nav ul ul a:hover ul.third {
    visibility: visible;
    display: block;
    overflow: visible;
	}
	 
ul.nav ul ul ul.third li {
    background: #9F0;
	}