/* ------- Width of the menu ------- */

.menutable {
	width: 199px;
}

.niveau2table {
	border-bottom:1px solid #e1e1e1;
	width: 199px;
}

.niveau3table {
	width: 199px;
}

/*** CLASSES FOR INACTIVE MENU ITEMS ***/

/* Level 1 */

.menu1, .menu1:visited {
	cursor: pointer;
	background-color: #f8f8fa;
	height: 33px;
	padding-top: 2px;
	padding-left: 12px;
	border-bottom:1px solid #e1e1e1;
	text-decoration: none;
}
.menu1_hover {
	cursor: pointer;
	background-color: #ededed;
	height: 33px;
	padding-top: 2px;
	padding-left: 12px;
	border-bottom:1px solid #e1e1e1;
	text-decoration: none;
}
.menu1text, .menu1text:visited {
	font-family:Verdana;
	font-size:11px;
	text-decoration: none;
	color: #656565;
	font-weight:normal;
}
.menu1text_hover {
	text-decoration: none;
	color: #656565;
}

/* Level 2 */

.menu2 {
	cursor: pointer;
	background-color: #ffffff;
	height: 33px;
	padding-left: 19px;
	text-decoration: none;
}
.menu2_hover {
	cursor: pointer;
	background-color: #ffffff;
	height: 33px;
	padding-left: 19px;
	text-decoration: none;
}
.menu2text, .menu2text:visited {
	font-family:Verdana;
	font-size:11px;
	text-decoration: none;
	color: #656565;
}
.menu2text:hover {
	font-family:Verdana;
	font-size:11px;
	text-decoration: none;
	color: #ff0000;
}

/* Level 3 */

.menu3 {
	cursor: pointer;
	background-color: #ffffff;
	height: 33px;
	padding-left: 19px;
}
.menu3_hover {
	cursor: pointer;
	background-color: #ffffff;
	height: 33px;
	padding-left: 19px;
}
.menu3text, .menu3text:visited {
	font-family:Verdana;
	font-size:11px;
	text-decoration: none;
	color: #656565;
}


/*** CLASSES FOR ACTIVE (SELECTED) MENU ITEMS ***/

/* Level 1 (active) */

.menuaktiv1 {
	font-family:Verdana;
	font-size:11px;
	text-decoration: none;
	color: #656565;
	font-weight: normal;
	background-color: #f8f8fa;
	height: 33px;
	padding-top: 2px;
	padding-left: 12px;
	border-bottom:1px solid #e1e1e1;
}

/* Level 2 (active) */

.menuaktiv2 {
	font-family:Verdana;
	font-size:11px;
	text-decoration: none;
	color: #ff0000;
	font-weight: normal;
	background-color: #ffffff;
	height: 33px;
	padding-left: 19px;
}

/* Level 3 (active) */

.menuaktiv3 {
	font-family:Verdana;
	font-size:11px;
	text-decoration: none;
	color: #ff0000;
	font-weight: normal;
	background-color: #ffffff;
	height: 33px;
	padding-left: 25px;
}


/*** 

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

***/