/* ----------------------
=== Menu Design ===
This file contains all information to render the different
levels of the main menu apart from the positioning and style
of the containing box which is defined in layout.css.

Imported by main.css
   ---------------------- */

div#main-menu {
	color: #036;
         font-family: Arial, Helvetica, sans-serif;
}

/* LEVEL 1 */

.menu_level1_no {
	padding: 5px 0 5px 1em;
	border-bottom: 1px solid #b2ccff;
        font-weight: normal;
}

.menu_level1_no:hover {
	background: #fff;
}

.menu_level1_act {
	padding: 5px 0 5px 1em;
        border-bottom: 1px solid #b2ccff;
         font-weight: bold;
}

.menu_level1_act:hover {
	background: #fff;
}


/* LEVEL 2 */

.menu_level2_no {
	padding: 3px 0 3px 2em;
         font-weight: normal;
}

.menu_level2_no:hover {
	background: #fff;
}

.menu_level2_act {
	padding: 3px 0 3px 2em;
         font-weight: bold;
}

.menu_level2_act:hover {
	background: #fff;
}

/* LEVEL 3 */

.menu_level3_no {
	padding: 3px 0 3px 2.5em;
        font-weight: normal;
        font-style: italic;
}

.menu_level3_no:hover {
	background: #fff;
}

.menu_level3_act {
	padding: 3px 0 3px 2.5em;
        font-weight: normal;
        font-style: italic;
}

.menu_level3_act:hover {
	background: #fff;
}

/* LINK FORMATTING */

#main-menu a {
	display: block;
         color: #003c79;
         font-size: 10pt;
	text-decoration: none;
}

#main-menu a:hover {
         color: #F30;
}