/* ------- Width of the menu ------- */

.menutable {
	width: 190px;
	border-top:1px solid #D5D5D5;
}


/*** CLASSES FOR INACTIVE MENU ITEMS ***/

/* Level 1 */

.menu1 {
	cursor: pointer;
	height: 24px;
	padding-left: 12px;
}
.menu1_hover {
	cursor: pointer;
	height: 24px;
	padding-left: 12px;
}
.menu1text {
	text-decoration: none;
	color: #000000;
}
.menu1text_hover {
	text-decoration: underline;
	color: #000000;
}

/* Level 2 */

.menu2 {
	cursor: pointer;
	border-bottom:1px solid #D5D5D5;
	padding-top:3px;
	padding-bottom:3px;
}
.menu2_hover {
	cursor: pointer;
	border-bottom:1px solid #D5D5D5;
	padding-top:3px;
	padding-bottom:3px;
}
.menu2text {
	text-decoration: none;
	color: #000000;
}
.menu2text_hover {
	text-decoration: underline;
	color: #000000;
}

/* Level 3 */

.menu3 {
	cursor: pointer;
	padding-left:15px;
	border-bottom:1px solid #D5D5D5;
	padding-top:3px;
	padding-bottom:3px;
}
.menu3_hover {
	cursor: pointer;
	padding-left:15px;
	border-bottom:1px solid #D5D5D5;
	padding-top:3px;
	padding-bottom:3px;
}
.menu3text {
	text-decoration: none;
	color: #000000;
}
.menu3text_hover {
	text-decoration: underline;
	color: #000000;
}


/*** CLASSES FOR ACTIVE (SELECTED) MENU ITEMS ***/

/* Level 1 (active) */

.menuaktiv1 {
	text-decoration: none;
	color: #227F4F;
	height: 20px;
}

/* Level 2 (active) */

.menuaktiv2 {
	text-decoration: none;
	color: #227F4F;
	border-bottom:1px solid #D5D5D5;
	padding-top:3px;
	padding-bottom:3px;
}

/* Level 3 (active) */

.menuaktiv3 {
	text-decoration: none;
	color: #227F4F;
	padding-left: 15px;
	border-bottom:1px solid #D5D5D5;
	padding-top:3px;
	padding-bottom:3px;
}


/*** 

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

***/
