/* Tabs */

.tabs-nav{
	background: url("images/border-solid.png") repeat-x scroll 0 100% transparent;    
	height: 39px;
	margin-bottom: 0;
	padding: 0 !important;
	list-style: none;
	margin-left: 0;
	text-shadow: none;
}
.tabs-wrapper ul.tabs-nav li {
	float: left;
	height: 36px;
	list-style-type: none;
	margin-right: 3px;
	position: relative;
	text-align: center;
	padding: 0;
	width: 95px;
	overflow: hidden;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	-khtml-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	border-left: 1px solid #0E0E0E;
	border-right: 1px solid #0E0E0E;
	border-top: 1px solid #0E0E0E;
}
.tabs-wrapper ul.tabs-nav li a {
	border-bottom: medium none;
	text-transform: uppercase;
	height: 100%;
	left: 0;
	color: #FFFFFF;
	line-height: 36px;
	position: absolute;
	text-decoration: none;
	top: 0;
	width: 100%;
	background: url("images/gradient-gray.png") repeat-x 0 0;
	background: -moz-linear-gradient(top,  #373737 0%, #181818 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#373737), color-stop(100%,#181818));
	background: -webkit-linear-gradient(top,  #373737 0%,#181818 100%);
	background: -o-linear-gradient(top,  #373737 0%,#181818 100%);
	background: -ms-linear-gradient(top,  #373737 0%,#181818 100%);
	background: linear-gradient(top,  #373737 0%,#181818 100%);
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	-khtml-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
}
.tabs-wrapper ul.tabs li a {
	text-transform: none;
}
.tabs-wrapper ul.tabs-nav li a.current, .tabs-wrapper ul.tabs-nav li a.current:hover {
	background: #212121 !important;
}
.tabs-wrapper .pane {
	clear: both;
}
.tabs-wrapper ul.tabs-nav li a:hover {
	background: #212121;
	background: url("images/gradient-gray.png") repeat-x 0 100%;
	background: -moz-linear-gradient(top,  #181818 0%, #333333 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#181818), color-stop(100%,#333333));
	background: -webkit-linear-gradient(top,  #181818 0%,#333333 100%);
	background: -o-linear-gradient(top,  #181818 0%,#333333 100%);
	background: -ms-linear-gradient(top,  #181818 0%,#333333 100%);
	background: linear-gradient(top,  #181818 0%,#333333 100%);
}

/* Accordion */

.accordion {
	position: relative;
}
.accordion-header {
	font-family: 'OpenSansRegular', Tahoma, sans-serif;
	font-size: 13px;
	padding: 6px 12px;
	background: url("images/gradient-gray.png") repeat-x 0 0;
	background: -moz-linear-gradient(top,  #373737 0%, #181818 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#373737), color-stop(100%,#181818));
	background: -webkit-linear-gradient(top,  #373737 0%,#181818 100%);
	background: -o-linear-gradient(top,  #373737 0%,#181818 100%);
	background: -ms-linear-gradient(top,  #373737 0%,#181818 100%);
	background: linear-gradient(top,  #373737 0%,#181818 100%);
	border: 1px solid #0E0E0E;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	margin: 0 0 1px 0;
	cursor: pointer;
}
.accordion-header a:hover {
	border: none !important;
}
.accordion-header a:before {
	content: '';
	background: url(images/accordion-arrow.png) no-repeat 0 0;
	width: 8px;
	height: 8px;
	display: block;
	float: left;
	margin: 6px 6px 0 0;
}
.accordion-header.current a:before {
	background: url(images/accordion-arrow.png) no-repeat 0 -8px;
	margin: 4px 6px 0 0;
}
.accordion-header a{
	border: none;
	color: #ffffff;
}
.accordion .pane {
	padding: 0 22px;
	border-top: 0;
	margin-top: -2px;
	position: relative;
	top: 1px;
	margin-bottom: 2px;
	overflow: auto;
	display: hidden;
	zoom: 1;
}