﻿/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/flyoutt.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* common styling */
.menu {
	font-family: verdana, arial;
	font-size: 12px;
	font-weight: bold;
	width: 202px;
	position: relative;
	margin: 0 auto;
}
/* ADD 28PX TO HEIGHT EVERY TIME A NEW BUTTON IS ADDED */
.menu ul li a {
	display: block;
	text-decoration: none;
	color: #fffefe;
	width: 202px;
	height: 28px;
	text-indent: 15px;
	line-height: 28px;
	background: url(images/button.gif) no-repeat;
}
.menu ul {
	padding: 0;
	margin: 0;
	margin-left: 10px;
	list-style-type: none;
}
.menu ul li {
	float: left;
	margin-right: 1px;
	position: relative;
}
.menu ul li ul {
	display: none;
}
/* specific to non IE browsers */
.menu ul li:hover a {
	width: 202px;
	height: 28px;
	color: #f1a81d;
	background: url(images/button-hover.gif) no-repeat;
}
.menu ul li:hover ul {
	display: block;
	position: absolute;
	top: 0;
	left: 190px;
	width: 202px;
}
.menu ul li:hover ul li a.hide {
	color: #fffefe;
}
.menu ul li:hover ul li:hover a.hide {
	width: 202px;
}
.menu ul li:hover ul li ul {
	display: none;
}
.menu ul li:hover ul li a {
	display: block;
	background: url(images/button.gif) no-repeat;
	color: #fffefe;
	width: 202px;
}
.menu ul li:hover ul li a:hover {
	background: url(images/button-hover.gif) no-repeat;
	color: #f1a81d;
}
.menu ul li:hover ul li:hover ul {
	display: block;
	position: absolute;
	left: 190px;
	top: 0;
	color: #f1a81d;
}
.menu ul li:hover ul li:hover ul li a {
	display: block;
	background: url(images/button.gif) no-repeat;
	color: #fffefe;
	width: 202px;
}
.menu ul li:hover ul li:hover ul li a:hover {
	background: url(images/button-hover.gif) no-repeat;
	color: #f1a81d;
	width: 202px;
}