/* ------- Width of the menu ------- */

.menutable {
	width: 170px;
}


/*** CLASSES FOR INACTIVE MENU ITEMS ***/

/* Level 1 */

.menu1 {
	font-family:Arial, Verdana;
	font-size:12px;
	cursor: hand;
	background-color: #E8EDF5;
	height: 15px;
	padding-top: 2px;
	padding-left: 12px;
	border-bottom:1px solid #CAD3E1;
}
.menu1_hover {
	font-family:Arial, Verdana;
	font-size:12px;
	cursor: hand;
	background-color: #E8EDF5;
	height: 15px;
	padding-top: 2px;
	padding-left: 12px;
	border-bottom:1px solid #CAD3E1;
}
.menu1text {
	text-decoration: none;
	font-weight:bold;
	color: #003366
}
.menu1text_hover {
	text-decoration: none;
	font-weight:bold;
	color: #446CA9;
}

/* Level 2 */

.menu2 {
	font-family:Arial, Verdana;
	font-size:12px;
	cursor: hand;
	background-color: #AFBFD8;
	height: 15px;
	padding-top: 2px;
	padding-left: 22px;
	border-bottom:1px solid #708BB4;
}
.menu2_hover {
	font-family:Arial, Verdana;
	font-size:12px;
	cursor: hand;
	background-color: #E8EDF5s;
	height: 15px;
	padding-top: 2px;
	padding-left: 22px;
	border-bottom:1px solid #708BB4;
}
.menu2text {
	text-decoration: none;
	color: #FFFFFF;
}
.menu2text_hover {
	text-decoration: none;
	color: #0034669;
}

/* Level 3 */

.menu3 {
	font-family:Arial, Verdana;
	font-size:12px;
	cursor: hand;
	background-color: #E8EDF5;
	height: 15px;
	padding-top: 2px;
	padding-left: 32px;
	border-bottom:1px solid #708BB4;
}
.menu3_hover {
	font-family:Arial, Verdana;
	font-size:12px;
	cursor: hand;
	background-color: #E8EDF5;
	height: 15px;
	padding-top: 2px;
	padding-left: 32px;
	border-bottom:1px solid #708BB4;
}
.menu3text {
	text-decoration: none;
	color: #446CA9;
}
.menu3text_hover {
	text-decoration: none;
	color: #446CA9;
}


/*** CLASSES FOR ACTIVE (SELECTED) MENU ITEMS ***/

/* Level 1 (active) */

.menuaktiv1 {
	font-family:Arial, Verdana;
	font-size:12px;
	text-decoration: none;
	color: #FFFFFF;
	font-weight: bold;
	background-color: #446CA9;
	height: 15px;
	padding-top: 2px;
	padding-left: 12px;
	border-bottom:1px solid #CAD3E1;
}

/* Level 2 (active) */

.menuaktiv2 {
	font-family:Arial, Verdana;
	font-size:12px;
	text-decoration: none;
	color: #ffffff;
	font-weight: bold;
	background-color: #446CA9;
	height: 15px;
	padding-top: 2px;
	padding-left: 22px;
	border-bottom:1px solid #708BB4;
}

/* Level 3 (active) */

.menuaktiv3 {
	font-family:Arial, Verdana;
	font-size:12px;
	text-decoration: none;
	color: #003466;
	font-weight: normal;
	background-color: #E8EDF5;
	height: 15px;
	padding-top: 2px;
	padding-left: 32px;
	border-bottom:1px solid #708BB4;
}


/***

REFERENCE

text-decoration : text decoration such as underline or none
color : text color
font-weight: font in bold or normal
background-color: bg color in hex
height: height of the menu item
padding-top: use this value to position the menu item text vertically
padding-left: distance from left side of the parent <td> to the begining of the text of a menu item
cursor: appearance of the cursor when hovering over an element

***/
