#slider {
	border-color:#EBEBEB rgb(204, 204, 204) rgb(204, 204, 204) rgb(235, 235, 235);
	border-style:solid;
	border-width:1px;
	padding:2px;
	overflow:hidden;

	-moz-border-radius-topright: 6px;
	-khtml-border-top-right-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	border-top-right-radius: 6px;
	-moz-border-radius-topleft: 6px;
	-khtml-border-top-left-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	border-top-left-radius: 6px;
}
.cptab {
	display: none;
	padding:0 15px;
}

#tabs{
	display: block;
	background:#dedede none repeat scroll 0%;
	font-size:14px;
	overflow:hidden;

	-moz-border-radius-topright: 6px;
	-khtml-border-top-right-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	border-top-right-radius: 6px;
	-moz-border-radius-topleft: 6px;
	-khtml-border-top-left-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	border-top-left-radius: 6px;
}

.tabs {
    list-style: none;
    margin: 0;
    padding: 0 0 0 10px;
}
.tabs:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tabs li {
    float: left;
    padding: 6px 5px;
    min-width: 50px; /* be nice to Opera */
    margin: 2px 2px 0px 1px !important;
	text-decoration: none;
	list-style: none;
}
.tabs a, .tabs a span {
    display: block;
    padding: 0 1px;
}

.tabs a {
    margin: 1px 0 0; /* position: relative makes opacity fail for disabled tab in IE */
    padding-left: 0;
    color: #2583AD;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */    
    outline: 0; /* prevent dotted border in Firefox */
}
.tabs .selected{
	background: #6D6D6D url(../images/menu-bits.gif) repeat-x scroll left top;
	border-color: #6D6D6D;
	color: #FFFFFF;
	text-shadow:0 -1px 0 #666666;

	-moz-border-radius-topright: 6px;
	-khtml-border-top-right-radius: 6px;
	-webkit-border-top-right-radius: 6px;
	border-top-right-radius: 6px;
	-moz-border-radius-topleft: 6px;
	-khtml-border-top-left-radius: 6px;
	-webkit-border-top-left-radius: 6px;
	border-top-left-radius: 6px;
}

.selected a,
.selected a:hover {
	color:#FFFFFF !important;
}

.tabs .selected a,
.tabs .selected a:hover  {
    position: relative;
    top: 1px;
    z-index: 2;
    margin-top: 0;
}

.tabs li a:hover {
	color:#D54E21;
}

.tabs .selected a, .tabs a:hover, .tabs a:focus, .tabs a:active {
    background-position: 100% -150px;
}
.tabs a {
    background-position: 100% -100px;
}
.tabs .selected a:link, .tabs .selected a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.tabs a:hover, .tabs a:focus, .tabs a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}

#skinoptions {
	max-height: 85vh;
	overflow:auto;
	float:left;
}

/* Additional IE specific bug fixes... */
* html .tabs { /* auto clear, @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html .tabs  { /* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}

