/*========================== TOP OF THE MENU CASCADE =========================*/

.menu {
	clear: both;                                /*fix disappearing menu in IE6 */
	position: absolute;
	top: 125px;
	left: 0;
	border: 0;
	height: 20px;                                  /* the menu's overall height */
	width: 780px;
	padding-left: 70px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;         /* this (and also below) sets the menu's font size */
	}
.menu ul {
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;
	line-height:1.5em;           /* globally set the menu's item spacing. note */
	}                            /* this must be 1.0 or 1.5 or 2.0 for Mozilla */
.menu li {
	float:left;
	position:relative;
	margin:0;
	margin-right: 20px;
	}
.menu ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	m\argin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
	font-size:11px;        /* this sets the base font size for our entire menu */
	}
.rightmenu {
	position:relative;
	float:right;
	}

/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

.menu ul li ul {
	display: none;                  /* initially hide the entire list hierarchy */
	padding: 1px;                               /* this is our box border width */
	}
.menu ul li ul li {                    /* unselected top-level menu items */
	margin: 0;
	}
.menu ul li a,
.menu ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	float:left;
	text-decoration:none;
	height:19px;
	}
.menu ul li:hover a,
.menu ul li a:hover,
.menu ul li.current a {                        /* selected top-level menu items */
	height:18px;
color: #f63;
	}
	
/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

.menu ul li:hover ul,
.menu ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0;
	top:18px;              /* place us just up underneath the top-level images */
	left:-1px;       /* left-align our drop-down to the previous button border */
	height:auto;      /* the drop-down height will be determiend by line count */
	width:13.5em;
	color:black;                        /* this sets the unselected-text color */
	background: #f63;         /* this sets our menu's effective "border" color */
	}
.menu ul li:hover ul.leftbutton,
.menu ul li a:hover ul.leftbutton {/* our first dropdown should not be skewed */
	left:0px;
	}
.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {                   /* 2nd level unselected items */
	border:0;
	margin:0;
	padding:0;
	height:auto;
	color:#000;               /* this sets the unselected drop-down text color */
	background:#d7def8;       /* this sets the drop-down menu background color */
	width:13.5em;
	}
.menu ul li:hover ul li:hover a,
.menu ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color:black;
	background: #fff;
	}
/*======================== 3RD LEVEL MENU DEFINITIONS ========================*/

.menu ul li:hover ul li ul,
.menu ul li a:hover ul li a ul {             /* hide inactive 3rd-level menus */
	visibility:hidden;
	}
.menu ul li:hover ul li:hover ul,
.menu ul li a:hover ul li a:hover ul {             /* 3rd level drop-down box */
	visibility:visible;
	position:absolute;
	margin-top:-1px;	      /* bring the top edge of the 3rd level menu up one */
	top:0;
	left:13.5em;
	width:14em;
	}
.menu ul li:hover ul li:hover ul li a,
.menu ul li a:hover ul li a:hover ul li a {     /* 3rd level unselected items */
	width:14em;
	background:#d7def8;
	}
.menu ul li:hover ul li:hover ul li a:hover,
.menu ul li a:hover ul li a:hover ul li a:hover {    /* level3 selected items */
	width:14em;
	background:white;
	}
	
/*======================== METANAVI DEFINITIONS ========================*/
	
.metanavi {
	clear: both;                                /*fix disappearing menu in IE6 */
	position: absolute;
	top: 18px;
	left: 0;
	border: 0;
	height: 20px;                                  /* the menu's overall height */
	width: 780px;
	padding-left: 70px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;         /* this (and also below) sets the menu's font size */
	}
.metanavi ul {
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;
	line-height:1.5em;           /* globally set the menu's item spacing. note */
	}                            /* this must be 1.0 or 1.5 or 2.0 for Mozilla */
.metanavi li {
	float:left;
	position:relative;
	margin:0;
	margin-right: 20px;
	}
.metanavi a,
.metanavi a:link,
.metanavi a:visited {
	color: #666;
	text-decoration: none;
	}
.metanavi a:active,
.metanavi a:hover {
	color: #f63;
	}

@media print {
.menu,.metanavi {display:none;}
}