.tabs{
	margin:40px;
	width:380px;
	font-family:georgia,serif;
	font-size:13px;
	font-style:italic;
	color:#666;
	text-shadow:0 1px rgba(255,255,255,0.9);
}
.tabs>ul,.tabs>div{
	position:relative;
}
.tabs>ul{
	overflow:hidden;
	margin:0;
	padding:0;
	list-style-type:none;
	margin:0 4px;
	padding:3px 0 0 0;
	z-index:2;
}
.tabs>ul>li{
	float:left;
	position:relative;
	margin:-3px -1px 0 0;
}
.tabs>ul>li>a{
	display:inline-block;
	padding:5px 10px;
	text-decoration:none;
	color:#f5f5f5;
	font-weight:bold;
	text-shadow:0 -1px rgba(0,0,0,0.5);
	background:#bbb;
	background:-o-linear-gradient(top, #ddd, #999);
	background:-moz-linear-gradient(top, #ddd, #999);
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #ddd), color-stop(1, #999));
	outline:none;
	-webkit-border-radius:4px 4px 0 0;
	-moz-border-radius:4px 4px 0 0;
	border-radius:4px 4px 0 0;
	border:1px solid #888;
	-webkit-box-shadow:inset 0 1px 0 #fff,inset 0 -2px 3px -1px rgba(0,0,0,0.3);
	-moz-box-shadow:inset 0 1px 0 #fff,inset 0 -2px 3px -1px rgba(0,0,0,0.3);
	box-shadow:inset 0 1px 0 #fff,inset 0 -2px 3px -1px rgba(0,0,0,0.3);
}
.tabs>ul>li>a:hover{
	color:#fff;
	background:#ccc;
	background:-o-linear-gradient(top, #eee, #999);
	background:-moz-linear-gradient(top, #eee, #999);
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #eee), color-stop(1, #999));
}
.tabs>ul>li.active-tab>a{
	color:#555;
	text-shadow:0 1px rgba(255,255,255,0.9);
	background:#e5e5e5;
	background:-o-linear-gradient(top, #ddd, #e5e5e5);
	background:-moz-linear-gradient(top, #ddd, #e5e5e5);
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #ddd), color-stop(1, #e5e5e5));
	-webkit-box-shadow:inset 0 2px 0 #fff;
	-moz-box-shadow:inset 0 2px 0 #fff;
	box-shadow:inset 0 2px 0 #fff;
	border-bottom-color:#e5e5e5;
}
.tabs>div{
	z-index:1;
	top:-1px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	border:1px solid #888;
	background:#e5e5e5;
	background:-o-linear-gradient(top, #e5e5e5, #f5f5f5);
	background:-moz-linear-gradient(top, #e5e5e5, #f5f5f5);
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0, #e5e5e5), color-stop(1, #f5f5f5));
	-webkit-box-shadow:inset 0 -2px 0 rgba(0,0,0,0.15),0 3px 4px -2px rgba(0,0,0,0.25); 
	-moz-box-shadow:inset 0 -2px 0 rgba(0,0,0,0.15),0 3px 4px -2px rgba(0,0,0,0.25);
	box-shadow:inset 0 -2px 0 rgba(0,0,0,0.15),0 3px 4px -2px rgba(0,0,0,0.25);
	min-height:140px;
}
.tabs>div>div{
	position:relative;
	top:0;
	left:0;
	display:none;
	overflow:hidden;
	padding:10px 15px;
}
.tabs>div>div.active-tab-content{
	display:block;
}
.tabs .ajax-loader{
	position:absolute;
	display:none;
	width:24px;
	height:24px;
	line-height:24px;
	text-align:center;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	background:url(ajax-loader.gif) no-repeat center center;
	overflow:hidden;
	top:25px;
	left:50%;
	margin-left:-12px
}