/*

Menu Test Style Sheet

*/



/* VERTICAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
	margin: 0;
	padding: 0;
	width: 228px;
	list-style: none;
	font-family: "Times New Roman", Times, serif;
	font-style: italic;
	text-align: center;
	font-weight: normal;
	line-height:25px;
}

/*
 Submenus (<ul> tags) are hidden and absolutely positioned across from their parent.
 They don't *have* to touch their parent menus, but is' a good idea as CSS-only fallback
 mode requires menus to touch/overlap (when JS is disabled in the browser).
*/
.menulist ul {
 display: none;
 position: absolute;
 border: 5px solid #000;
 top: -1px;
 left: 228px;
}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.menulist li {
 position: relative;
 border: 0px solid #F3C47A;  
 margin-bottom: -1px;  
 background-color: #F3C47A;
 text-align: center;
}
.menulist ul>li:last-child {
 margin-bottom: -1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 3px;
 color: #000;
 text-decoration: none;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #000;
 background-color: #F3C47A
 font-weight: bold;
}
.menulist a.highlighted {
 color: #000;
 background-color:#F3C47A;
 font-weight: bold;
}

/* green THIS WORKS in IE and Moz */
.menulist a#greenmain:hover {background-image:url(assets/greenarrow3.jpg); background-repeat:no-repeat; color:#000000;}				
.menulist a.highlighted#greenmain {background-image:url(assets/greenarrow3.jpg); background-repeat:no-repeat; color:#000000;}
.menulist a#greensub {background-color:#99d594; color:#000000; border:none;}
.menulist a#greensub:hover {background-color:#99d594; color:#000000; border: none; font-weight:bold;}
.menulist #greensub {background-color:#99d594;}  /* this is the background for the spacer */

/* pink THIS WORKS in IE and Moz */
.menulist a#pinkmain:hover {background-image:url(assets/pinkarrow3.jpg); background-repeat:no-repeat; color:#000000;}				
.menulist a.highlighted#pinkmain {background-image:url(assets/pinkarrow3.jpg); background-repeat:no-repeat; color:#000000;}
.menulist a#pinksub {background-color:#FBB4D9; color:#000000;}
.menulist a#pinksub:hover {background-color:#FBB4D9; color:#000000; font-weight:bold;}
.menulist #pinksub {background-color:#FBB4D9;} /* this is the background for the spacer */

/* blue THIS WORKS in IE and Moz */
.menulist a#bluemain:hover {background-image:url(assets/bluearrow3.jpg); background-repeat:no-repeat; color:#000000;}				
.menulist a.highlighted#bluemain {background-image:url(assets/bluearrow3.jpg); background-repeat:no-repeat; color:#000000;}
.menulist a#bluesub {background-color:#B3E3EE; color:#000000;}
.menulist a#bluesub:hover {background-color:#B3E3EE; color:#000000; font-weight:bold;}
.menulist #bluesub {background-color:#B3E3EE;} /* this is the background for the spacer */

/* purple THIS WORKS in IE and Moz */
.menulist a#purplemain:hover {background-image:url(assets/purplearrow3.jpg); background-repeat:no-repeat; color:#000000;}				
.menulist a.highlighted#purplemain {background-image:url(assets/purplearrow3.jpg); background-repeat:no-repeat; color:#000000;}
.menulist a#purplesub {background-color:#CAA7D1; color:#000000;}
.menulist a#purplesub:hover {background-color:#CAA7D1; color:#000000; font-weight:bold;}
.menulist #purplesub {background-color:#CAA7D1;} /* this is the background for the spacer */

/* more submenu colors here */

/* tan THIS WORKS in IE and Moz */
.menulist a#tanmain:hover {background-image:url(assets/tanarrow3.jpg); background-repeat:no-repeat; color:#000000;}				
.menulist a.highlighted#tanmain {background-image:url(assets/tanarrow3.jpg); background-repeat:no-repeat; color:#000000;}
.menulist a#tansub {background-color:#CC9966; color:#000000;}
.menulist a#tansub:hover {background-color:#CC9966; color:#000000; font-weight:bold;}
.menulist #tansub {background-color:#CC9966;} /* this is the background for the spacer */


/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

/* menu blank spacers */
.menuspacertop {
background-color:#F3C47A;
line-height: 40px;
}
.menuspacerbot {
background-color:#F3C47A;
line-height: 38px;
}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist li {
	float: left;
	width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hacks */


