﻿/*
===========================================================
             CSS STYLES FOR NORTH SKY MENU
===========================================================
     Structural CSS required for basic menu operation.
                   USE EXTREME CAUTION!
  Modifying the CSS here will most likely break the menu!
===========================================================
*/

ul.NorthSkyMenu, 
ul.NorthSkyMenu ul {
	position: relative;
	display: block;
	margin: 0px;
	border: 0;
	padding: 0px;
	/*white-space: nowrap;*/
	list-style: none;
	z-index: 999;
	width:220px;
}
 
ul.NorthSkyMenu a {
	display: block;
	text-decoration: none;
	margin: 0;
	border: 0;
	padding: 0;
}
 
ul.NorthSkyMenu li {
	position: relative;
	float: left; 
	width: 220px;
	_width: 1%; /* Hack for IE6 and lower */
	_height: 1%; /* Hack for IE6 and lower */
	margin: 0;
	border: 0;
	padding: 0;
	/*white-space: nowrap;*/
	list-style: none;
	z-index: 9999;
	line-height:1em;
}
 
ul.NorthSkyMenu li ul {
	position: absolute;
	left: -999em;
	visibility: hidden;
}

ul.NorthSkyMenu ul.lvl1 li {
	z-index: 99999; 
	border-bottom:1px solid #FFF;
}

ul.NorthSkyMenu ul.lvl2 li {
	z-index: 999999; 
}

ul.NorthSkyMenu ul.lvl3 li {
	z-index: 9999999; 
}

ul.NorthSkyMenu ul.lvl4 li {
	z-index: 99999999; 
}

ul.NorthSkyMenu ul.lvl5 li {
	z-index: 999999999; 
}
 
ul.NorthSkyMenu li li {
	width: 100%;
	white-space: normal;
}
 
ul.NorthSkyMenu li:hover ul ul, 
ul.NorthSkyMenu li:hover ul ul ul, 
ul.NorthSkyMenu li:hover ul ul ul ul, 
ul.NorthSkyMenu li.hover ul ul, 
ul.NorthSkyMenu li.hover ul ul ul,
ul.NorthSkyMenu li.hover ul ul ul ul {
	left: -999em;
	visibility: hidden;
}
 
ul.NorthSkyMenu li:hover ul, 
ul.NorthSkyMenu li li:hover ul, 
ul.NorthSkyMenu li li li:hover ul, 
ul.NorthSkyMenu li li li li:hover ul, 
ul.NorthSkyMenu li.hover ul, 
ul.NorthSkyMenu li li.hover ul, 
ul.NorthSkyMenu li li li.hover ul, 
ul.NorthSkyMenu li li li li.hover ul {
	left: 0;
	visibility: visible;
}
 
ul.NorthSkyMenu a.disabled {
	cursor: default;
}

ul.NorthSkyMenu iframe {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	filter: progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);
	display: block;
}


/*
===========================================================
 NorthSkyActions Start
===========================================================
*/

/* root-level menu */
ul.NorthSkyActions 
{
    width: 20px !important;
	text-align: center;
}

/* all submenus */
/* Typically set borders, background colors here. */
ul.NorthSkyActions .sub {
	border: solid 1px #333;
	text-align: left;
}

ul.NorthSkyActions .lvl1 {
	border-top: 0;
}

/* all menu items */
/* Typically set menu item borders here. */
ul.NorthSkyActions li {
}

/* nested menu items */
ul.NorthSkyActions .sub li {
}

/* menu item links */
/* Typically set padding, colors, text attributes here. */
ul.NorthSkyActions a {
	padding: 6px;
	height: auto;
	color: #fff;
	font-family: Verdana;
	font-size: 10px;
	line-height: 12px;
}

ul.NorthSkyActions a img 
{
    padding: 1px 4px 1px 1px;
    vertical-align: middle;
}

/* nested menu item links */
ul.NorthSkyActions .sub a {
	padding: 2px 6px;
	height: 100%;
	font-size: 10px;
	line-height: 24px;
	color: #369;
	background-color: #fff;
	opacity: 0.98;
	filter: alpha(opacity=98); /* */
}

/* hovered menu item links */
ul.NorthSkyActions a:hover,
ul.NorthSkyActions .root a.breadcrumb:hover,
ul.NorthSkyActions .sub a.breadcrumb:hover,
ul.NorthSkyActions .root a.current:hover,
ul.NorthSkyActions .sub a.current:hover {
	height: auto;
	color: #fff;
	background-color: #369;
}

/* hovered nested menu item links */
ul.NorthSkyActions .sub a:hover {
	background-image: none;
}

/* Applied to the submenu list immediately under the menu item hovered over */
/* Second-level menu lists only */
ul.NorthSkyActions li:hover ul, 
ul.NorthSkyActions li.hover ul {
	width: 160px; /* width of submenu, must be set so third-level list can get shifted over properly */
}

/* Applied to the submenu list immediately under the menu item hovered over */
/* Add more rules here if your menus have more than three (4) tiers */
ul.NorthSkyActions .sub li:hover ul, 
ul.NorthSkyActions .sub li.hover ul {
	left: 160px;
	top: 0;
}

ul.NorthSkyActions .separator,
ul.NorthSkyActions .sub .separator {
	padding: 0;
	font-size: 1px;
	line-height: 1px;
	width: auto;
	height: 1px;
	overflow: hidden;
	background-color: #999;
}

ul.NorthSkyActions .separator:hover,
ul.NorthSkyActions .sub .separator:hover {
	background-color: #fff;
	color: #369;
}

ul.NorthSkyActions a.branch 
{
    background-image: url('/images/action_right.gif');
    background-position: right;
    background-repeat: no-repeat;
}

ul.NorthSkyActions>li 
{
    width: 20px !important;
	margin-top: 6px;
    background: url('/images/action.gif') no-repeat center center;
    cursor: pointer;
    
}

ul.NorthSkyActions>li:hover 
{
    z-index: 1000;
} 
