/**
 * CSS Menu
 */

/**
 * Menu area height
 */
#menucontainer
{
	height: 18px;
}

/**
 * General menu settings
 */
#menu 
{
	/* General text alignment */
	text-align: left;
}

/**
 * General menu settings
 */
#menu ul
{
}

/**
 * General menu item settings
 */
#menu li
{
	/* General menu text color */
	color: #ccc;
	
	/* General menu background */
	background: #ccc;
}

/**
 * General menu item settings
 */
#menu a, #menu h1
{
	/* If changed, IE workaround must be edited as well */
	font: 11px/16px arial, helvetica, sans-serif;
	
	font-weight: bold;
	padding: 1px 25px 1px 5px;
	color: #000000;
	background: inherit;
}

/**
 * General menu link settings
 */
#menu a
{
	text-decoration: none;
}

/**
 * Menu level 2 (and 3 if not otherwise defined) item settings
 */
#menu ul ul li a, #menu ul ul li h1
{
	background: #fff;
}

/**
 * General selected item
 */
#menu a:hover, #menu h1:hover
{
	color: #fff;
	background: #ccc;
}

/**
 * Submenu item with an arrow 
 * (parent class must be defined in the link tag)
 */
#menu a.parent, #menu h1.parent
{
	color: #fff;
	background-color: inherit;
	background: url(arrow.gif) no-repeat center right;
}

/**
 * Selected submenu item with an arrow 
 * (parent class must be defined in the link tag)
 */
#menu a.parent:hover, #menu h1.parent:hover
{
	color: #fff;
	background: #bdd3e7 url(arrow_white.gif) no-repeat center right;
}

/**
 * Menu level 2 frame (not HTML frame) settings
 */
#menu ul ul
{
	/* Menu level 2 width */
	width: 150px;
}

/**
 * Menu level 3 frame (not HTML frame) settings
 */
#menu ul ul ul
{
	/* Menu level 3 width */
	width: 100px;
}ttings
 */
#menu ul ul ul
{
	/* Menu level 3 width */
	width: 100px;
}}