/*
-----------------------------------------------
Jumpmenu
----------------------------------------------- */

#jump_menu {

}
#jump_menu li {
	margin: 0;
	padding: 0 0 8px;
	float: left;
	position: relative;
	list-style: none;
}
/* main level link */
#jump_menu a {
	font-weight: bold;
	color: #F00;
	text-decoration: none;
	display: block;
	padding:  4px 20px;
	margin: 0;
	-webkit-border-radius: 0.2em;
	-moz-border-radius: 0.2em;
	font-size: 11px;
	width: 237px;
}
#jump_menu a.choose {
	font-size: 14px;
	background: #d1d1d1; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb', endColorstr='#a1a1a1'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#a1a1a1)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #ebebeb,  #a1a1a1); /* for firefox 3.6+ */
	color: #444;
	border-top: solid 1px #f8f8f8;

}
/* main level link hover */
#jump_menu .current a, #jump_menu li:hover > a {
	background: #d1d1d1; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb', endColorstr='#a1a1a1'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#a1a1a1)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #ebebeb,  #a1a1a1); /* for firefox 3.6+ */
	color: #333;
	border-top: solid 1px #f8f8f8;
}
/* sub levels link hover */
#jump_menu ul li:hover a, #jump_menu li:hover li a {
	background: none;
	border: none;
	color: #666;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}
#jump_menu ul a:hover {
	background: #0399d4 !important; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#04acec', endColorstr='#0186ba'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba)) !important; /* for webkit browsers */
	background: -moz-linear-gradient(top,  #04acec,  #0186ba) !important; /* for firefox 3.6+ */

	color: #fff !important;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}
/* level 2 list */
#jump_menu ul {
	background: #ddd; /* for non-css3 browsers */
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#cfcfcf'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#cfcfcf)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #fff,  #cfcfcf); /* for firefox 3.6+ */

	display: none;
	margin: 0;
	padding: 0;
	width: 160px; /* First width */
	position: absolute;
	top: 28px;  /* Down 28px, Up -200px */
	left: 0;
	border: solid 1px #b4b4b4;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;

}
/* dropdown */
#jump_menu li:hover > ul {
	display: block;
}
#jump_menu ul li {
	float: none;
	margin: 0;
	padding: 0;
	border-bottom:1px solid #CCC;
}
#jump_menu ul a {
	font-weight: normal;
}
/* level 3+ list */
#jump_menu ul ul {
	left: 150px;
	top: -1px;
	width: 275px; /* First width */
}
/* rounded corners for first and last child */
#jump_menu ul li:first-child > a {
	-webkit-border-top-left-radius: 0px;
	-moz-border-radius-topleft: 0px;
	-webkit-border-top-right-radius: 0px;
	-moz-border-radius-topright: 0px;
}
#jump_menu ul li:last-child > a {
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-bottomleft: 0px;
	-webkit-border-bottom-right-radius: 0px;
	-moz-border-radius-bottomright: 0px;
}
/* clearfix */
#jump_menu:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#jump_menu {
	display: inline-block;
}
html[xmlns] #jump_menu {
	display: block;
}
* html #jump_menu {
	height: 1%;
}
