/* ------- Width of the menu ------- */

.menutable {
	width: 178px;
}


/*** CLASSES FOR INACTIVE MENU ITEMS ***/

/* Level 1 */

.menu1 {
	cursor: pointer;
	background-color: #FFFFFF;
	height: 18px;
	border-bottom: dotted;
	border-bottom-width: 1px;
	border-color: #7f8285;
}
.menu1_hover {
	cursor: pointer;
	background-color: #FFFFFF;
	height: 18px;
	border-bottom: dotted;
	border-bottom-width: 1px;
	border-color: Gray;
}
.menu1text {
	text-decoration: none;
	color: #000000;
}
.menu1text_hover {
	text-decoration: none;
	color: #454545;
}

/* Level 2 */

.menu2 {
	cursor: pointer;
	background-color: #F0F0F0;
	height: 18px;
}
.menu2_hover {
	cursor: pointer;
	background-color: #F0F0F0;
	height: 18px;
}
.menu2text {
	text-decoration: none;
	color: #000000;
	padding-top: 2px;
}
.menu2text_hover {
	text-decoration: none;
	color: #454545;
	padding-top: 2px;
}

/* Level 3 */

.menu3 {
	cursor: pointer;
	background-color: #F0F0F0;
	height: 18px;
}
.menu3_hover {
	cursor: pointer;
	background-color: #F0F0F0;
	height: 18px;
}
.menu3text {
	text-decoration: none;
	color: #000000;
	padding-top: 2px;
}
.menu3text_hover {
	text-decoration: none;
	color: #454545;
	padding-top: 2px;
}


/*** CLASSES FOR ACTIVE (SELECTED) MENU ITEMS ***/

/* Level 1 (active) */

.menuaktiv1 {
	text-decoration: none;
	color: #0000;
	font-weight: bold;
	background-color: #FFFFFF;
	height: 18px;
	border-bottom: dotted;
	border-bottom-width: 1px;
	border-color: #7f8285;
}

/* Level 2 (active) */

.menuaktiv2 {
	text-decoration: none;
	color: #000000;
	font-weight: bold;
	background-color: #E0E0E0;
	height: 18px;
}

/* Level 3 (active) */

.menuaktiv3 {
	text-decoration: none;
	color: #000000;
	font-weight: bold;
	background-color: #E0E0E0;
	height: 18px;
}

