/* CSS Document */
.clear { clear:both; height:1px; font-size:1px; line-height:7px;
}

#nav-mine {
	margin: 0;
	padding: 7px 2px 0;
 font-size: .91em;
	line-height: 100%;
	position: relative;
	min-height: 35px;

}
#nav-mine li {
	margin: 0 15px 0 3px;
	padding: 0 0 8px;
	float: left;
	position: relative;
	list-style: none;
 height: 27px;
}


/* main level link */
#nav-mine a {
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	display: block;
	padding:  7px 7px;
	margin: 0;

	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	
	text-shadow: 0 1px 1px rgba(0,0,0, .3);
}
#nav-mine a:hover {
	background: #000;
	color: #fff;
}

/* main level link hover */
#nav-mine .current a, #nav-mine li:hover > a {
	background: #354f69 url(images/button.png) repeat-x 0 -60px;
	color: #333;
	border-top: solid 1px #f8f8f8;

	-webkit-box-shadow: 0 1px 1px rgba(0,0,0, .2);
	-moz-box-shadow: 0 1px 1px rgba(0,0,0, .2);
	box-shadow: 0 1px 1px rgba(0,0,0, .2);

	text-shadow: 0 1px 0 rgba(255,255,255, .75);
}

/* sub levels link hover */
#nav-mine ul li:hover a, #nav-mine li:hover li a {
	background: none;
	border: none;
	color: #354f69;

	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}
#nav-mine ul a:hover {
	background: #dedede url(images/button.png) repeat-x 0 -100px!important;
	color: #666666 !important;

	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;

	text-shadow: 0 1px 1px rgba(0,0,0, .1);
}

/* dropdown */
#nav-mine li:hover > ul {
	display: block;
 z-index: 1000;
 position:absolute;
}

/* level 2 list */
#nav-mine ul {
	display: none;
	z-index: 1000;
	margin: 0;
	padding: 0;
	width: 185px;
	position: absolute;
	top: 35px;
	left: 0;
	background: #fff url(images/button.png) repeat-x 0 0;
	border: solid 1px #b4b4b4;

	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;

	-webkit-box-shadow: 0 1px 3px rgba(0,0,0, .3);
	-moz-box-shadow: 0 1px 3px rgba(0,0,0, .3);
	box-shadow: 0 1px 3px rgba(0,0,0, .3);
}
#nav-mine ul li {
	float: none;
	margin: 0;
	padding: 0;
}

#nav-mine ul a {
	font-weight: normal;
	text-shadow: 0 1px 0 #fff;
 font-size: 1.1em;
}

/* level 3+ list */
#nav-mine ul ul {
	left: 181px;
	top: -3px;
}

/* rounded corners of first and last link */
#nav-mine ul li:first-child > a {
	-webkit-border-top-left-radius: 5px;
	-moz-border-radius-topleft: 5px;

	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
}
#nav-mine ul li:last-child > a {
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;

	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomright: 5px;
}

/* clearfix */
#nav-mine:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#nav-mine {
	display: block;
} 
html[xmlns] #nav-mine {
	display: block;
}
 
* html #nav-mine {
	height: 1%;
}

