@charset "utf-8";
/* CSS Document */

#nav, #nav ul {
    margin:0;
    padding:0;
    list-style:none;
/*	z-index: 999;*/
	font-size: 16px;
}
#nav li {
    position:relative;/* set containing block for AP sub ul */
    float:left;
/*    background:#396595;*/
    text-align:center;
}
#nav li a:hover {
	color: #ddd;
}
#nav a {
    float:left;
    width:150px;
    padding:.25em 0;
    font-weight:bold;
    text-decoration:none;
    color:#fff;
}

/* ------ Sub UL Drop Down ------ */
#nav ul {
    position:absolute;
    width:140px;
	font-size: 14px;
    left:0;
    top:100%;
    margin-left:-999em;/* hide the sub ul */
}
#nav ul li {
	padding: 5px;
	border-bottom: 1px solid lightgrey;
	border-left: 1px solid lightgrey;
	border-right: 1px solid lightgrey;
	z-index: 999;
	font-weight: normal;
	background-color: #396595;
/*    background: #3f6b9a;*/
}
#nav ul li a {
	font-weight: normal;
}
#nav li:hover ul {
    margin-left:0;/* reveal the sub ul on li:hover */
}