/**
 * Styles for the dropdown menu.
 *
 * This file is include on the page through the menu/dropdown.tpl file.
 */
.dropdown UL {
	margin: 0;
	padding: 0;
	list-style: none;
}
.dropdown LI {
	position: relative;
}
.dropdown UL UL {
	position: absolute;
	display: none;
}
.dropdown A {
	display: block;
	position: relative;
	text-decoration: none;
}
.dropdown LI:hover > UL { display: block; } /* The magic */
.dropdown LI.level1.over UL.level2 { display: block; } /* The magic */
.dropdown LI.level2.over UL.level3 { display: block; } /* The magic */
.dropdown LI.level3.over UL.level4 { display: block; } /* The magic */
.dropdown LI.level4.over UL.level5 { display: block; } /* The magic */



/*
DESIGN STYLES
*/
.dropdown.ddleft {
	float: left;
}
.dropdown.ddright {
	float: right;
}
.dropdown LI.level1 {
	float: left;
	border-right: 1px solid white;
}
.dropdown LI.level1.last {
	border-right: none;
}
.dropdown UL.level2 {
	top: 18px;
}
.dropdown.ddright UL.level2 {
	right: 0px;
}
.dropdown UL.level1 UL {
	width: 150px;
}
.dropdown UL.level2 UL {
	left: 150px;
}
.dropdown UL {
	background-color: #015CAB;
}
.dropdown A {
	color: white;
	padding: 5px 5px 5px 5px;
}
.dropdown A.level1 {
	color: white;
	padding: 3px 5px 3px 5px;
	font-weight: bold;
}
#navigation, .dropdown LI.level1, .dropdown LI.level1 LI A:hover {
	background-color: #323D7B;
}
.dropdown A.level1 {
	color: #DADADA;
}
.dropdown LI.level1 LI {
	background-color: #3C4681;
}

