/*////////////////////////////////////*/

 /*  script menu  */

 /*========================= TOP OF THE MENU CASCADE =========================*/

.cssmenu {
/*	position:relative;        /* establish a menu-relative positioning context keep this as is*/*/
	float:left;                                     /* play nicely with others */
	margin:0;
	padding:0;
    padding-top: 3px;
	border:0;
	height:20px;                                  /* the menu's overall height */
	width:100%;         /* we always want our menu to fill the available space */
	background: none;    /* adopt menu background  */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;         /* this (and also below) sets the menu's font size */
/*	border-bottom:1px solid black;        /* give us a black border underneath */
}

.cssmenu img {
	vertical-align: top;      /* prevent images from being pushed down by text */
}

.cssmenu ul {
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;          /* we don't want to view the list as a list */
	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 */

.cssmenu 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;
}


/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

.cssmenu ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	padding:1px;                               /* this is our box border width */
}

.cssmenu ul li a,
.cssmenu ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	float:left;
	text-decoration:none;
	height:18px;
}

.cssmenu ul li:hover a,
.cssmenu ul li a:hover {                        /* selected top-level menu items */
	border-top:2px solid #fff;        /* this creates the push-in illusion */
	height:16px;
}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

.cssmenu ul li:hover ul,
.cssmenu 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: #fbfbfb;         /* this sets our menu's effective "border" color */
z-index: 100;
}
.cssmenu ul li a:hover  { 
position: relative;
z-index: 100;
}

.cssmenu ul.rightmenu li:hover ul,
.cssmenu ul.rightmenu li a:hover ul {    /* 2nd level neighborhood drop-down box */
	left:auto;
	right:0;         /* nudge the right menu right to line up under the border */
}

.cssmenu ul li:hover ul li a,
.cssmenu ul li a:hover ul li a {                   /* 2nd level unselected items */
    position:relative;
	border:0;
	margin:0;
	padding:0;
	height:auto;
	color:#000;               /* this sets the unselected drop-down text color */
	background: none;       /* this sets the drop-down menu background color */
	width:12.0em;
    margin-left:-20px;
    z-index: 100;
}

.cssmenu ul li:hover ul li:hover a,
.cssmenu ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color:#fff;
	background: #c03;
    margin-left:-20px;
}

.cssmenu ul ul {
    position:relative;
    border:1px solid #000;                      /* formatting around the menu block  */
    z-index: 100;
}
/*======================== 3RD LEVEL MENU DEFINITIONS ========================*/

.cssmenu ul li:hover ul li ul,
.cssmenu ul li a:hover ul li a ul {             /* hide inactive 3rd-level menus */
	visibility:hidden;
}
     
.cssmenu ul li:hover ul li:hover ul,
.cssmenu 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:12.08333em;
	width:14em;
}

.cssmenu ul li:hover ul li:hover ul li a,
.cssmenu ul li a:hover ul li a:hover ul li a {     /* 3rd level unselected items */
	width:14em;
	background: none;
    color: black;
}

.cssmenu ul li:hover ul li:hover ul li a:hover,
.cssmenu ul li a:hover ul li a:hover ul li a:hover {    /* level3 selected items */
	width:13.5em;
	color:#fff;
	background: #c03;
}

/*======================== 4th LEVEL MENU DEFINITIONS ========================*/

.cssmenu ul li:hover ul li:hover ul li ul,
.cssmenu ul li a:hover ul li a:hover ul li a ul {             /* hide inactive 4th-level menus */
	visibility:hidden;
}

.cssmenu ul li:hover ul li:hover ul li:hover ul,
.cssmenu ul li a:hover ul li a:hover ul li a:hover ul {             /* 4th level drop-down box */
	visibility:visible;
	position:absolute;
	margin-top:-1px;	      /* bring the top edge of the 4th level menu up one */
	top:0;
	left:12.08333em;
	width:14em;
}



.cssmenu ul li:hover ul li:hover ul li:hover ul li a,
.cssmenu ul li a:hover ul li a:hover ul li a:hover ul li a {     /* 4th level unselected items */
	width:14em;
	background: none;
    color: black;
}

.cssmenu ul li:hover ul li:hover ul li:hover ul li a:hover,
.cssmenu ul li a:hover ul li a:hover ul li a:hover ul li a:hover {    /* level4 selected items */
	width:13.5em;
	color:#fff;
	background: #c03;
}

/*================================================================================*/

