/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Open Software License (OSL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/osl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * @copyright  Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
 * @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */

#nav {
	margin: 0 0 0 0px;
	font-size:1.1em;
	z-index:999;
}
/************** ALL LEVELS  *************/ /* Style consistent throughout all nav levels */
#nav li {
	list-style:none;
	position:relative;
	text-align:left;
}
#nav li.over {
	z-index:99;
}
#nav li.active {
	z-index:98;
} /* to prevent the li separator from showing through on mouseover on li */
#nav a {
	line-height:1.3em;
}
#nav a, #nav a:hover {
	display:block;
	text-decoration:none;
}
#nav span {
	display:block;
	cursor:pointer;
	white-space:nowrap;
}
#nav li ul span {
	white-space:normal;
}
/************ 1ST LEVEL  ***************/
#nav li {
	float:left;
}
#nav li.active a {
	color: #fff;
	background-color: #1B9CDD;
	font-weight: bold;
}
#nav a {
	float:left;
	padding:7px 10px 7px 10px;
	color:#FFFFFF;
	font-weight:bold;
	text-transform: uppercase;
	font-size: 0.9em;
	margin: 0;
}
#nav li.over a, #nav a:hover {
	color:#FFFFFF;
	background-color:#1B9CDD;
}
/************ 1ST LEVEL RESET ************/
#nav ul {
	background: #1B9CDD;
}
#nav ul li, #nav ul li.active {
	float:none;
	padding-bottom:1px;
	background:#1B9CDD url(../images/nav_divider.gif) repeat-x 0 100%;
}
#nav ul li.over {
	background:#1B9CDD url(../images/nav_divider.gif) repeat-x 0 100%;
}
#nav ul li.last {
	background:#1B9CDD;
	padding-bottom:0;
}
#nav ul a, #nav ul a:hover {
	float:none;
	padding:0;
	background:none;
}
#nav ul li a {
	font-weight:normal !important;
	text-transform:capitalize;
}
/************ 2ND LEVEL ************/
#nav ul {
	position: absolute;
	width:15em;
	top:25px;
	left:-10000px;
}
/* Show menu */
#nav li.over > ul {
	left:0;
}
#nav li.over > ul li.over > ul {
	left:100px;
}
#nav li.over ul ul {
	left:-10000px;
}
#nav ul li a:hover {
	background:#002851;
	color:#1B9CDD;
}
#nav ul span, #nav ul li.last li span {
	padding:5px 1em 5px 1em;
}
#nav li.level2 a {
	background: #014D87;
}
#nav li.level2 a:hover {
	color: #1B9CDD;
}
/************ other ************/
#nav ul ul {
	top:5px;
}

/* Other */
#nav li.level0 {
	background-color:#000A11;
	margin-right: 20px;
}
#nav li.level0 > a {
	float:left;
	text-align: center;
}
#nav li.level0 > a:hover {
	float:left;
	text-align: center;
	color: #FFFFFF;
}
#nav ul.level0 {
	padding: 3px 6px 6px 6px;
	margin-top:4px;
}
#nav ul ul {
	padding: 6px 0 6px 0;
	background: #014D87;
	margin-top: 6px;
}
#nav ul.level0 li.parent > a {
	background-image: url(../images/nav_parent_arrow.gif);
	background-repeat:no-repeat;
	background-position:right;
}