﻿/* ================================================================ 
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
{
	width: 228px;
	height: 108px;
	position: relative;
	color: #F1F9FD;
	background-color: #b9350b;
}

/* The menu styling */
/* Remove the padding, margins and bullets from the lists */
.menu, .menu ul {list-style-type:none; padding:0; margin:0; width:227px;}
.menu
{
	margin: 0px -1px;
}
/* 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: 227px;
	background: #CE6647;
	margin-top: 1px;
	border: solid 1px #B82F05;
}

/* Give the sub level list item a diffent background color to make it 'stand out'. */
.menu li.sub
{
	background: #CE6647;
}

/* 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:24px; position:absolute; bottom: 0; top:auto; left:0; font-size:1em;}

/* Default link styling */
.menu li a
{
	display: block;
	color: #F1F9FD;
	font-family: Verdana, arial, sans-serif;
	font-size: 11px;
	line-height: 23px;
	height: 24px;
	text-decoration: none;
	text-indent: 0px;
	font-weight: bold;
	border-right: #d48971 7px solid;
	margin-left: 10px;
}

/* Style the list OR link hover. Depends on which browser is used */
.menu a:hover
{
}

/* For all browsers except IE5.5 and IE6 to keep the hover state through the menu cascade. */
.menu :hover > a
{
	color: #F1F9FD;
	background: #CE6647;
}

/* 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:227px; 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 */
/* drop down */
.menu :hover ul, 
.menu :hover ul :hover ul, 
.menu :hover ul :hover ul :hover ul :hover ul
{
	padding: 20px 20px 20px 0;
	left: 200px;
	top: -35px;
	bottom: auto;
	background: transparent url(transparent.gif);
}
/* pull up */
.menu :hover ul :hover ul :hover ul, 
.menu :hover ul :hover ul :hover ul :hover ul :hover ul
{
	padding: 20px 20px 20px 0;
	left: 200px;
	bottom: -35px;
	top: auto;
	background: transparent url(transparent.gif);
} 

