/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-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.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @copyright  Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
 * @license    http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

.header-nav-container { background:#073859; }

#nav { position:relative;}

/************** ALL LEVELS  *************/ /* Style consistent throughout all nav levels */
#nav li { float:left; }
#nav li.over { }
#nav a { border:1px solid #073859; border-bottom:0; }
#nav a,
#nav a:hover { color:#fff; text-decoration:none; }
#nav span { }
#nav li ul span { }

/************ 0 LEVEL  ***************/
#nav li { }
#nav li.active a { }
#nav a { display:block; padding:5px 9px; }
#nav li.over a,
#nav a:hover { background:#0f619b; border:1px solid #000; border-bottom:0; font-weight:normal; }

/************ 1ST LEVEL ************/
#nav ul { border:1px solid #000; border-top:0; padding:18px; width:860px; }
#nav ul li { float:left; padding:2px; position:relative; width:211px; z-index:1; }
#nav ul li.active { }
#nav ul li.over { z-index:1000; }
#nav ul li.last { }

#nav ul a { display:inline; padding:0; }
#nav ul li.over a,
#nav ul a:hover { border:0; text-decoration:underline; }
#nav li.over ul a { border:0; }

/************ 2ND LEVEL ************/
#nav ul { background:#0f619b; display:none; left:0; position:absolute; z-index:10; }

/* Show menu */
#nav li.over > ul { }
#nav li.over > ul li.over > ul { }
#nav li.over ul ul { display:none; }

#nav ul li a { }
#nav ul li a:hover { }
#nav ul li a,
#nav ul li a:hover { border:0; }
#nav ul span, #nav ul li.last li span { }

/************ 3RD+ LEVEL ************/
#nav ul a { background:none; position:relative; z-index:5; }
#nav ul ul { background:#073859; border:1px solid #000; left:60px; padding:10px; position:absolute; top:10px; width:180px; z-index:20; }
#nav ul ul li { float:none; width:auto; }
#nav li.over ul ul a { background:#073859; text-decoration:none; }
#nav li ul ul a:hover { background:none; text-decoration:underline; }


/************ CSS3 ******************/

#nav a {
	-webkit-border-top-right-radius:5px;
	-webkit-border-top-left-radius:5px;
	
	-moz-border-radius:5px 5px 0 0;
}

#nav ul {
	-webkit-border-bottom-right-radius:5px;
	-webkit-border-bottom-left-radius:5px;

	-moz-border-radius:0 0 5px 5px;
}
#nav ul ul {
	-webkit-border-radius:5px;

	-moz-border-radius:5px;
}