/*
	99Lime.com HTML KickStart by Joshua Gatcke
	kickstart-menus.css
*/

/*---------------------------------
	MENU LAYOUT
	DO NOT EDIT This Section (unless you know what you are doing)
-----------------------------------*/
.menu{margin:0;padding:0;line-height:100%;
font-size:0; /* Kill white space gap between LI elements */
position:relative;z-index:1000;}

	.menu:after{clear:both;content:' ';display:block;font-size:0;line-height:0;visibility:hidden;width:0;height:0}
	.menu li{margin:0;padding:0;list-style-type:none;display:inline-block;*display:inline;position:relative;zoom:1;line-height:inherit;
	top:0;left:0;font-size:16px; /* fixed font-size to replace font-size:0 in parent .menu 1em/16px default */}
		.menu li a{margin:0;padding:0;display:block;display:inline;display:inline-block;position:relative;zoom:1;line-height:100%;top:0;left:0;}


/*--------------Sub Menus-------------------*/
	/*.menu li:hover > ul{display:block;}*/
	.menu ul{margin:0;padding:0;position: absolute;top:100%;left:0;display:none;min-width:220px;max-width:150%;*width:220px;}
	.menu ul li{display:block;width:100%;}
	.menu ul li a{display:block;}
		.menu ul ul{top:0;left:100%;}

/*--------------Dividers-------------------*/
	.menu ul li.divider{border-top:1px solid #ccc;}
	.menu ul li.divider a{border-top:1px solid #fff;}


/*--------------Right---------------------*/
	.menu li.right{float:right;}


/*--------------Arrows-------------------*/
	.menu li.has-menu a{padding-right:25px;}
	.menu li.has-menu span.arrow{border-style:solid;border-width:5px;
	display:block;position:absolute;top:50%;right:5px;font-size:0;line-height:0;height:0;width:0;}
	.menu li li.has-menu span.arrow{margin-top:-4px;}

/*--------------Vertical Menu Layout-------------------*/
.menu.vertical{}
	.menu.vertical li{display:block;}
	.menu.vertical li a{display:block;}
	.menu.vertical ul{top:0;left:100%;}
	.menu.vertical li.has-menu span.arrow{margin-top:-4px;}

/*--------------Vertical Right Menu Layout-------------------*/
.menu.vertical.right{text-align:left;}
	.menu.vertical.right ul{top:0;right:100%;left:auto;}
	.menu.vertical.right li a{padding-left:25px;padding-right:20px;}
	.menu.vertical.right li.has-menu span.arrow{right:auto;left:5px;margin-top:-4px;}


/*---------------------------------
	MENU STYLES
	EDIT BELOW THIS LINE TO CUSTOMIZE
-----------------------------------*/
.menu{
background: #e1e5e8; /* Old browsers */
background: -moz-linear-gradient(top,  #e1e5e8 0%, #b6bec3 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e1e5e8), color-stop(100%,#b6bec3)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #e1e5e8 0%,#b6bec3 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #e1e5e8 0%,#b6bec3 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #e1e5e8 0%,#b6bec3 100%); /* IE10+ */
background: linear-gradient(to bottom,  #e1e5e8 0%,#b6bec3 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e1e5e8', endColorstr='#b6bec3',GradientType=0 ); /* IE6-9 */
z-index:600;
}

	.menu li{}

		.menu li a{
		text-shadow:0px 1px 1px #fff;
		padding:10px 18px;
		text-decoration:none;
		font-size:14px;
		color: #000;
		}

		.menu li.current>a,
		.menu li.current>a:hover,
		.menu li.current.hover>a{
background: #3a5994; /* Old browsers */
background: -moz-linear-gradient(top,  #3a5994 0%, #1f356f 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3a5994), color-stop(100%,#1f356f)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #3a5994 0%,#1f356f 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #3a5994 0%,#1f356f 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #3a5994 0%,#1f356f 100%); /* IE10+ */
background: linear-gradient(to bottom,  #3a5994 0%,#1f356f 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3a5994', endColorstr='#1f356f',GradientType=0 ); /* IE6-9 */
		color:#fff;
		text-shadow:0px -1px 0 rgba(0,0,0,0.2);
		cursor: pointer;
		}

		.menu li a:hover,
		.menu li.hover>a{
		background:#009ee0;
		color:#fff;
		text-shadow:0px -1px 0 rgba(0,0,0,0.2);		
		}

	/* sub menus */
	.menu ul{
	background: #e1e5e8;
	border:1px solid #b6bec3;
	}

	.menu ul li{}
	.menu ul li a{}

		/* sub-sub menus */
		.menu ul ul{}
		.menu ul ul li{}
		.menu ul ul li a{}

	/* arrows */
	/* arrow down */  .menu li.has-menu span.arrow{border-color-top:#ccc;border-color:#ccc transparent transparent transparent;}
	/* arrow left */  .menu li li.has-menu span.arrow, .menu.vertical li.has-menu span.arrow
					   {border-color-left:#ccc;border-color:transparent transparent transparent #ccc;}
	/* arrow right */ .menu.vertical.right li.has-menu span.arrow{border-color-right:#ccc;border-color:transparent #ccc transparent transparent;}

	/* dividers */ 	  .menu ul li.divider{border-top:1px solid #ccc;}
					  .menu ul li.divider a{border-top:1px solid #fff;}
