/* ================================================================ 
This copyright notice must be kept untouched in the stylesheet at 
all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/three-up-two-down.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* Set up the containing div with a background image - not supplied with the zip file */
#outer {background:#fff; border:0px solid #000; position:relative; color:#001F56; z-index:5; width:200px;}

/* The menu styling */
/* Remove the padding, margins and bullets from the lists */
.menu, .menu ul {list-style-type:none; padding:0; margin:0; width:200px;}
/*.menu {margin:100px 20px 80px 5px;}*/
.menu {margin:0px 0px 0px 0px;}
/* for IE7 to position the tables correctly */
.menu {position:relative; float:left;}

/* for IE5.5 and IE6 to position the tables corectly */
* html .menu {position:static;}

/* Set up the size of the list items and float left to place inline */
.menu li {display:block; float:left; width:200px; background:#E1E1E1; border-bottom:1px solid #FFFFFF; margin:0px 0px 0px 0px;}

/* Give the sub level list item a diffent background color to make it 'stand out'. */
.menu li.sub {background:#E1E1E1; background-image:url(../images/gray-black.gif);
	background-position:right;
	background-repeat:no-repeat;}

/* Style and position the table so it takes no part in the menu function. The font size is necessary for IE5.5 */
.menu table {border-collapse:collapse; width:0; height:20px; position:absolute; top:auto; left:0; font-size:1em;}

/* Default link styling */
.menu li a {display:block; color:#001F56; font-weight:bold; font-family:arial, sans-serif; font-size:11px; line-height:20px; height:20px; text-decoration:none; text-indent:10px;}

.menu a:visited { color:#001F56;}

/* Style the list OR link hover. Depends on which browser is used */
.menu a:hover {color:#ffffff; background:#898989;}

/* For all browsers except IE5.5 and IE6 to keep the hover state through the menu cascade. */
.menu :hover > a {color:#ffffff; background:#898989;}

/* Give the link OR list a relative position. Depends on which browser is used */
.menu li.sub:hover,
.menu li.sub a:hover {position:relative;}

/* keep the 'next' level invisible by placing it off screen. */
.menu ul, 
.menu :hover ul ul, 
.menu :hover ul :hover ul ul,
.menu :hover ul :hover ul :hover ul ul,
.menu :hover ul :hover ul :hover ul :hover ul ul {position:absolute;left:-9999px; width:100%; top:0;}

/* Position the flyout sub levels to 'pull-up' or 'drop-down' when hovering over the sub level list OR link.  the transparent gif is for IE7 only and need not actually exist. File transparent.gif supplied with zip file */
/* pull up */
.menu :hover ul, 
.menu :hover ul :hover ul :hover ul,
.menu :hover ul :hover ul :hover ul :hover ul :hover ul {padding-left:5px; left:200px; bottom:auto; top:0px; background: url(../images/transparent.gif);} 
/* drop down */
.menu :hover ul :hover ul,
.menu :hover ul :hover ul :hover ul :hover ul {padding-left:5px; left:200px; top:0px; bottom:auto;}