/*
JQuery Tabs by
http://www.sohtanaka.com/web-design/simple-tabs-w-css-jquery/
Adapted for OSC to CSS www.niora.com
****************************************************************/
ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 25px; /*--Set height of tabs--*/
/*	border-bottom: 2px solid #ffffff;*/
/*	border-left: 2px solid #ffffff; */
}

ul.tabs li {
	
	padding: 0;
	height: 25px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 21px; /*--Vertically aligns the text within the tab--*/
/*	border: 1px solid #ffffff; */
	border-bottom: 2px solid #ffffff; 
	border-left: none;
	margin-bottom: -2px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
/*	background: #cccccc; */
}

ul.tabs li.description-tab {
	width: 86px;
	float: left;
	margin: 0 0 0 0;
}

ul.tabs li.details-tab {
	width: 96px;
	float: left;
	margin: 0 0 0 0;
}

ul.tabs li.condition-tab {
	width: 86px;
	float: right;
	margin: 0 0 0 0;
}

ul.tabs li a {
	text-decoration: none;
	color: #000000;
	background:url('//www.thrift-ola.com/assets/products-sprite.png') no-repeat;
	display: block;
	font-size: 0.8em;
/*	text-transform:uppercase;
	font-weight:bold;
	padding: 5px 0 10px 5px; */
	/*--border: 1px solid #fff;*/ /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
	text-indent: -9000px;
}

ul.tabs li.description-tab a {
		height: 25px;
		width: 86px;
 		background-position: -300px 0px;
 		

}

ul.tabs li.description-tab a:hover {
 		background-position: 0px 0px;
}

html ul.tabs li.description-tab.active a, html ul.tabs li.description-tab.active a:hover {
 		background-position: 0px 0px;
}

ul.tabs li.details-tab a {
		height: 25px;
		width: 96px;
 		background-position: -400px 0px;
}

ul.tabs li.details-tab a:hover {
 		background-position: -100px 0px;
}

html ul.tabs li.details-tab.active a, html ul.tabs li.details-tab.active a:hover {
 		background-position: -100px 0px;
 		}


ul.tabs li.condition-tab a {
		height: 25px;
		width: 86px;
 		background-position: -500px 0px;
}

ul.tabs li.condition-tab a:hover {
 		background-position: -200px 0px;
}

html ul.tabs li.condition-tab.active a, html ul.tabs li.condition-tab.active a:hover {
 		background-position: -200px 0px;
	}

html ul.tabs li.active {
 		border-bottom: 2px solid #e5e5e5;
}

ul.tabs li a:hover {
/*	background: #e0e0e0; */
}

html ul.tabs li.active, html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
/*	background: #e0e0e0;
	border-bottom: 2px solid #e0e0e0; /*--Makes the active tab look like it's connected with its content--*/
*/
}

.tab_container {
/*	border: 2px solid #ffffff; */
	border-top: none;
	overflow: hidden;
	height: 150px;
	clear: both;
	float: left;
	width: 100%;
	background: #e5e5e5;
}
.tab_wrap {
 margin: 15px 10px 15px 10px;
 height: 120px;
 width: 248px;
 outline: none;
}
.tab_content {
	overflow: auto;
	height: 120px;
	width: 100%;
	outline: none;
}