﻿
/*** ESSENTIAL STYLES ***/
.KI-Menu, .KI-Menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.KI-Menu {
	line-height:	1.0;
	font-size:.8em;
}
.KI-Menu ul {
	position:		absolute;
	top:			-999em;
	width:			220px; /* left offset of submenus need to match (see below) */
}
.KI-Menu ul li {
	width:			100%;
}
.KI-Menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.KI-Menu li {
	float:			left;
	position:		relative;
}
.KI-Menu a {
	display:		block;
	position:		relative;
}
.KI-Menu li:hover ul,
.KI-Menu li.sfHover ul {
	left:			0;
	top:			28px; /* match top ul list item height */
	z-index:		99;
}
ul.KI-Menu li:hover li ul,
ul.KI-Menu li.sfHover li ul {
	top:			-999em;
}
ul.KI-Menu li li:hover ul,
ul.KI-Menu li li.sfHover ul {
	left:			220px; /* match ul width */
	top:			0;
}
ul.KI-Menu li li:hover li ul,
ul.KI-Menu li li.sfHover li ul {
	top:			-999em;
}
ul.KI-Menu li li li:hover ul,
ul.KI-Menu li li li.sfHover ul {
	left:			180px; /* match ul width */
	top:			0;
}

/*** DEMO SKIN ***/
.KI-Menu {
	float:			left;
	margin-bottom:	1em;
}
.KI-Menu a {
	padding:8px 10px 7px;
	text-decoration:none;
}
.KI-Menu a, .KI-Menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#fff;
}
.KI-Menu li {
	background: #003366; /* old browsers */
	background: -moz-linear-gradient(top, #3E658B 0%, #003366 99%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3E658B), color-stop(99%,#003366)); /* webkit */
	/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3E658B', endColorstr='#003366',GradientType=0 );  ie */
}

.ie .KI-Menu li {
   	border-bottom: 1px solid #808b99; 
}

.KI-Menu li ul {
	background: #003366; /* old browsers */
	background: -moz-linear-gradient(top, #3E658B 0%, #003366 99%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3E658B), color-stop(99%,#003366)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3E658B', endColorstr='#003366',GradientType=0 ); /* ie */
}
.KI-Menu li li {
	background:transparent;
}
.KI-Menu li li li {
	
}
.KI-Menu li:hover, .KI-Menu li.sfHover,
.KI-Menu a:focus, .KI-Menu a:hover, .KI-Menu a:active {
	background: #40668c; /* old browsers */
	background: -moz-linear-gradient(top, #9fb2c5 0%, #8099b3 99%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9fb2c5), color-stop(99%,#8099b3)); /* webkit */
	/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9fb2c5', endColorstr='#40668c',GradientType=0 );  ie */
	outline:		0;
color:#000;
}

/*** arrows **/
.KI-Menu a.sf-with-ul {
	padding-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			.75em;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('/_layouts/images/kienterprise/superfish/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			10px;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.KI-Menu ul .sf-sub-indicator { background-position:  -10px 0; }
.KI-Menu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.KI-Menu ul a:focus > .sf-sub-indicator,
.KI-Menu ul a:hover > .sf-sub-indicator,
.KI-Menu ul a:active > .sf-sub-indicator,
.KI-Menu ul li:hover > a > .sf-sub-indicator,
.KI-Menu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	background:	url('../_catalogs/_LAYOUTS/1033/KIEnterprise/styles/images/shadow.png') no-repeat right bottom;
	padding: 0 8px 9px 0;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}

/*** adding sf-vertical in addition to sf-menu creates a vertical menu ***/
.KI-Menu-Vertical .KI-Menu, .KI-Menu-Vertical .KI-Menu li {
	width:	220px;
}
/* this lacks ul at the start of the selector, so the styles from the main CSS file override it where needed */
.KI-Menu-Vertical .KI-Menu li:hover ul,
.KI-Menu-Vertical .KI-Menu li.sfHover ul {
	left:	220px; /* match ul width */
	top:	0;
}

/*** alter arrow directions ***/
.KI-Menu-Vertical .KI-Menu .sf-sub-indicator { background-position: -10px 0; } /* IE6 gets solid image only */
.KI-Menu-Vertical .KI-Menu a > .sf-sub-indicator { background-position: 0 0; } /* use translucent arrow for modern browsers*/

/* hover arrow direction for modern browsers*/
.KI-Menu-Vertical .KI-Menu a:focus > .sf-sub-indicator,
.KI-Menu-Vertical .KI-Menu a:hover > .sf-sub-indicator,
.KI-Menu-Vertical .KI-Menu a:active > .sf-sub-indicator,
.KI-Menu-Vertical .KI-Menu li:hover > a > .sf-sub-indicator,
.KI-Menu-Vertical .KI-Menu li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}




/*** adding the class sf-navbar in addition to sf-menu creates an all-horizontal nav-bar menu ***/
#topNav .KI-Menu {
	background: #003366; /* old browsers */
	background: -moz-linear-gradient(top, #3E658B 0%, #003366 99%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3E658B), color-stop(99%,#003366)); /* webkit */
	/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3E658B', endColorstr='#003366',GradientType=0 );  ie */
	position:		relative;
height:31px;
width:100%;
margin:0;
padding:0;
float:none;
line-height:inherit;
}

#topNav .KI-Menu li {
	position:		relative;
display : inline;
line-height: inherit;
}



#topNav .KI-Menu a {
	border-top:		none;
}

#topNav .KI-Menu-Horizontal .KI-Menu li ul {
	
	
	
	width : 220px;
	background-image: none;
	visibility: hidden;
}



#topNav .KI-Menu li ul {
	width:			220px; /*IE6 soils itself without this*/
position : absolute;
left : 0;
top : 31px;
	display : block;
	background-image: none;
	visibility: hidden;
}
#topNav .KI-Menu li li {
	background: #174C7F;
	position:		relative;
}
#topNav .KI-Menu li li ul {
	width:			180px;

}
#topNav .KI-Menu li li li {
	width:			100%;
}


#topNav .KI-Menu ul li {
	width:			220px;
	float:			left;
display : block;
}
#topNav .KI-Menu a, #topNav .KI-Menu a:visited {
	border:			none;
}
#topNav .KI-Menu li.current {
	background:		red;
}
#topNav .KI-Menu li:hover,
#topNav .KI-Menu li.sfHover,
#topNav .KI-Menuli li.current,
#topNav .KI-Menu a:focus, #topNav .KI-Menu a:hover, #topNav .KI-Menu a:active {
	
}
#topNav .KI-Menu ul li:hover,
#topNav .KI-Menu ul li.sfHover,
#topNav ul.KI-Menu ul li:hover li,
#topNav ul.KI-Menu ul li.sfHover li,
#topNav .KI-Menu ul a:focus, #topNav .KI-Menu ul a:hover, #topNav .KI-Menu ul a:active {
}

#topNav .KI-Menu-Horizontal .KI-Menu ul li {
	float: none;
	margin: 0;
	
}


#topNav ul.KI-Menu li li li:hover,
#topNav ul.KI-Menu li li li.sfHover,
#topNav .KI-Menu li li.current li.current,
#topNav .KI-Menu ul li li a:focus, #topNav .KI-Menu ul li li a:hover, #topNav .KI-Menu ul li li a:active {
	
}
#topNav ul.KI-Menu .current ul,
#topNav ul.KI-Menu ul li:hover ul,
#topNav ul.KI-Menu ul li.sfHover ul {
	left:			220px;
	top:			0px /* match top ul list item height */
}
#topNav ul.KI-Menu .current ul ul {
	top: 			-999em;
}

#topNav .KI-Menu li li.current > a {
	font-weight:	bold;
}

/*** point all arrows down ***/
/* point right for anchors in subs */
#topNav .KI-Menu ul .sf-sub-indicator { background-position: -10px -100px; }
#topNav .KI-Menu ul a > .sf-sub-indicator { background-position: 0 -100px; }

/* apply hovers to modern browsers */
#topNav .KI-Menu ul a > .sf-sub-indicator,
#topNav .KI-Menu ul a:focus > .sf-sub-indicator,
#topNav .KI-Menu ul a:hover > .sf-sub-indicator,
#topNav .KI-Menu ul a:active > .sf-sub-indicator,
#topNav .KI-Menu ul li:hover > a > .sf-sub-indicator,
#topNav .KI-Menu ul li.sfHover > a > .sf-sub-indicator {
background-position: -10px 0px; /* arrow hovers for modern browsers*/
}

/*** remove shadow on first submenu ***/
#topNav .KI-Menu > li > ul {
	background-color:#174C7F;
	background-image:url(/_layouts/images/kienterprise/leftNav/leftNavLinksBg.png);
	background-repeat:repeat-x;
	padding: 0;
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-topright: 0;
	-webkit-border-top-right-radius: 0;
	-webkit-border-bottom-left-radius: 0;
}

.KI-Menu span.KI-Menu-NonLink {
	display: block;
	position: relative;
	padding: 8px 10px 7px;
	text-decoration: none;
	color: #fff;
cursor:pointer;
}

.KI-Menu .KI-Menu-WithChildren span.KI-Menu-NonLink {
background:		url('/_layouts/images/kienterprise/superfish/arrows-ffffff-nonLinkInactive.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
background-position:160px 10px;
}

.KI-Menu .KI-Menu-WithChildren span.KI-Menu-NonLink:hover {
background:		url('/_layouts/images/kienterprise/superfish/arrows-ffffff-nonLinkActive.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
background-position:160px 10px;
}



















