@charset "iso-8859-1";
/* CSS Document */

#majesty_menu  a.backcolor1:hover{
	background-color:#800B2D;
}
#majesty_menu  a.backcolor2:hover{
	background-color:#492D53;
}
#majesty_menu  a.backcolor3:hover{
	background-color:#853A2A;
}
#majesty_menu  a.backcolor4:hover{
	background-color:#515E71;
}
#majesty_menu  a.backcolor5:hover{
	background-color:#715E41;
}

#majesty_menu {
	position:absolute;        /* establish a menu-relative positioning context */
	float:left;                                     /* play nicely with others */
	top:142px;
	left:49px;
	margin:0;
	padding:0;
	border:0;
	width:102%;         /* we always want our menu to fill the available space */
	font-size: 11px;         /* this (and also below) sets the menu's font size */
	text-transform:uppercase;
	
	font-weight:bold;
}
#majesty_menu a{
	color:white;
	padding:5px 5px;
}

#majesty_menu img {
	vertical-align: top;      /* prevent images from being pushed down by text */
}

#majesty_menu ul {
	
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;          /* we don't want to view the list as a list */
}                              

#majesty_menu li {
	float:left;    /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
	
	margin:0;
}

#majesty_menu ul li table {
	font-size:11px;        /* this sets the base font size for our entire menu */
}

/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

#majesty_menu ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	padding:1px;                               /* this is our box border width */
}

#majesty_menu ul li a{
	display:block;
	float:left;
	text-decoration:none;
	border:1px solid #e4e0da;
	margin:0;
	width:159px;
	height:28px;
}

#majesty_menu ul li a.first{
	border-left:none;
}
#majesty_menu ul li a.last{
	border-right:none;
	width:158px;
}

#majesty_menu ul ul a{
	height:auto;
}
#majesty_menu ul li:hover a,
#majesty_menu ul li a:hover {                        /* selected top-level menu items */
	    /* these 2 lines create the push-in illusion */

}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

#majesty_menu ul li:hover ul,
#majesty_menu ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0;
	padding:0;
	top:36px;              /* place us just up underneath the top-level */
	left:0;       /* left-align our drop-down to the previous button border */
	background-color:white;
}



#majesty_menu ul li:hover ul li a,
#majesty_menu ul li a:hover ul li a {                   /* 2nd level unselected items */
	margin:1px 1px 0px 1px;;
	border:none;
	width:158px;
}
#majesty_menu ul li:hover ul li a.last,
#majesty_menu ul li a:hover ul li a.last{

	border-bottom:1px solid #fff;
}
#majesty_menu ul li:hover ul li:hover a,
#majesty_menu ul li a:hover ul li a:hover {                /* 2nd level selected item */
}


/*======================== 3RD LEVEL MENU DEFINITIONS ========================*/

#majesty_menu ul li:hover ul li ul,
#majesty_menu ul li a:hover ul li a ul {             /* hide inactive 3rd-level menus */
	visibility:hidden;
}
     
#majesty_menu ul li:hover ul li:hover ul,
#majesty_menu ul li a:hover ul li a:hover ul {             /* 3rd level drop-down box */
	visibility:visible;
	position:absolute;
	top:0;
	left:170px;
	margin:0;
	padding:0;

}



