/*
 * navigation.css
 */

.navigation1 {
	color: red;
}
a.navigation_font {
	color: black;
}
a.navigation_font:hover {
	color: red;
}
.submenu {
	position: absolute;
	border: 1px solid #AAAAAA;
	visibility: hidden;
}
.submenu ul {
        list-style-type: none;
        padding: 2px;
        margin: 0px;
        background-color: #222222;
}
.submenu a {
	display: block;
	/*width: 100%; This makes the drop-down div HUGE in IE!!*/
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
	padding: 2px;
}
.submenu a:hover {
	color: #FF9A34;
}

#nav-header .dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: bold !important;
    color: #777777 !important;
    margin-left: -5px;
}

.dropdown-disabled {
    cursor: default;
}
.dropdown-disabled:hover {
    background-image: none !important;
    background-color: #FFFFFF !important;
}