#menu {
    float: left;
	margin-top: 150px;
    height: 30px;
    width: 1100px;
    list-style: none;
    background: #013E74;
	filter: alpha(opacity = 80);
    opacity: 0.8;
}

.menu {
    position: relative;
    z-index: 100;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.menu ul ul {
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
    padding: 0;
    margin: 0;
    float: left;
    position: relative;
    padding-left: 20px;
    padding-right: 30px;
}

/* style the links for the top level */
.menu a, .menu a:visited {
    display: block;
    float: left;
    color: #ccc;
    font-size: 14px;
    font-weight: bold;
    padding: 0;
	padding-top: 4px;
    margin: 0;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
}

/* style the second level hover */
.menu ul ul a.drop:hover, .menu ul ul a.drop:active {
}

.menu ul ul :hover > a.drop {
}

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
    background: #fff;
}

/* style the third level hover */
.menu ul ul ul a:hover, .menu ul ul ul a:active {
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
    visibility: hidden;
    position: absolute;
    height: auto;
    top: 20px;
    left: 35px;
    width: 170px;
	margin-top: 5px;
	-moz-box-shadow: 0px 0px 10px #000; /* FF3.5+ */
    -webkit-box-shadow: 0px 0px 10px #000; /* Saf3.0+, Chrome */
    box-shadow: 0px 0px 10px #000; /* Opera 10.5, IE 9.0 */
	border: 1px solid #404040;
}

/* position the third level flyout menu */
.menu ul ul ul {
    left: 140px;
    top: 0;
}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
    left: -155px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
    position: absolute;
    top: 0;
    left: 0;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
    color: #404040;
    height: auto;
    line-height: 1em;
    padding: 5px;
    width: 160px;
    font-size: 12px;
    border-bottom-width: 1px;
    border-bottom-color: #1b4f27;
    border-bottom-style: dotted;
    text-align: left;
    font-weight: normal;
	background: #ccc;
	text-shadow: 0px 0px 0px #transparent; 
}

.menu ul ul li {
    float: left;
    position: relative;
    padding: 0;
    margin: 0;
    border: none;
}

/* style the top level hover */
.menu a:hover, .menu a:active, .menu a.dropact {
    color: #fff;
    text-decoration: none;
	padding-bottom: 5px;
	border-bottom: 1px #996600 dotted;
}

.menu ul ul a:hover {
    background: #000066;
    color: #fff;
}

.menu :hover > a, .menu :active > a {
    color: #fff;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul, .menu ul li:active ul, .menu ul a:active ul {
    visibility: visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul, .menu ul :active ul ul {
    visibility: hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul, .menu ul :active ul :active ul {
    visibility: visible;
}
