/* 1 */
#menu, #menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 2 */
#menu {
    width: 797px;
    margin: 0px 0px;
    background-color: #FF8300;
    border-radius: 7px;
	z-index: 1000;
}

/* 3 */
#menu:before,
#menu:after {
    content: "";
    display: table;
}

#menu:after {
    clear: both;
}

#menu {
    zoom:1;
}

/* 4 */
#menu a {
	float: left;
	padding: 0px 0px;
	color: #FF8300;
	font: bold 13pt Arial;
	line-height: 32pt;
	height:40px;
	letter-spacing: 2px;
	text-indent:18px;
	text-decoration: none;
}

#menu li {
    float: left;
    position: relative;
}

#menu li:hover > a {
	color: #FF8300;
	z-index: 1000;
}

*html #menu li a:hover { /* IE6 only */
	color: #FF8300;
}

/* 5 */
#menu ul {
	color: #FF8300;
	margin: 0px 0 0 0;
	_margin: 0; /*IE6 only*/
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 40px;
	left: 0;
	background: #FFF;
	border-radius: 3px;
	z-index: 1000;
}

#menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    margin: 0;
}

#menu ul ul {
	top: 0px;
	left: 200px;
	margin: 0 0 0 0px;
	_margin: 0; /*IE6 only*/
	z-index: 1000;
}

#menu ul li {
    float: none;
    display: block;
    border: 0;
    width: 200px;
    _line-height: 0; /*IE6 only*/
	z-index: 1000;
}
#menu ul li ul li {
    width: 180px;
}
#menu ul li ul li a {
    float: none;
    display: block;
    border: 0;
	font-size:11pt;
    width: 180px;
    _line-height: 0; /*IE6 only*/
	z-index: 1000;
}

#menu ul li:last-child {   
    box-shadow: none;    
	z-index: 1000;
}

#menu ul a {
	color: #FF8300;    
    padding: 0px;
    width: 200px;
    _height: 40px; /*IE6 only*/
    display: block;
    white-space: nowrap;
    float: none;
    text-transform: none;
}

#menu ul a:hover {
	color: #FFF;
	background-color: #ffcc32;
}

/* 6last */
#menu ul li:first-child > a {
    border-radius: 3px 3px 0 0;
	z-index: 1000;
}

#menu ul li:first-child > a:after {
	content: '';
	position: absolute;
	left: 20px;
	top: -14px;
	border-left: 7px solid transparent;
	border-bottom: 7px solid #ffcc32;
	border-top: 7px solid transparent;
	border-right: 7px solid transparent;
	z-index: 1000;
}

#menu ul ul li:first-child a:after {
    left: -7px;
    top: 50%;
    margin-top: -7px;
    border-left: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-top: 7px solid transparent;
    border-right: 7px solid #transparent;
	z-index: 1000;
}

#menu ul li:first-child a:hover:after {
    border-bottom-color: #ffcc32; 
}

##menu ul ul li:first-child a:hover:after {
    border-right-color: #ffcc32; 
    border-bottom-color: transparent;   
}

##menu ul li:last-child > a {
    border-radius: 0 0 3px 3px;
	z-index: 1000;
}
