.tabs {
	width:100%;
	overflow:hidden;
	/*font-size:0.9em;*/
	font-size: 13px;
	margin: 2em 0;
	zoom:1;
	padding:1px;
	position:relative;
}

.tabs dt {
	float:left;
	line-height:23px;
	height:23px;
	background:#e8f0f5;

	border:1px solid #e8f0f5;

	border-bottom:0;
	padding:0 1em;
	position:relative;

	left:35px;
	margin-right: 1px;
	cursor:pointer;
	
	-webkit-border-top-left-radius:10px;
	-webkit-border-top-right-radius:10px;
	-moz-border-radius-topleft:10px;
	-moz-border-radius-topright:10px;
}

.tabs dt:hover {
	background-color: #bfdff4; /*#FFcc00,#bfdff4;*/
}

.tabs dt.selected {
	border-color:#b0d0e9;
	background:#fff;
	z-index:3;
	cursor:text;
}

.tabs dd {
	background:#fff;
	display:none;
	float:right;
	width:100%;
	margin:2em 0 0 -100%;
	position:relative;
	z-index:2;
}

.tabs dd.selected {
	display:block;
}

.tabs .tab-content {
	border:1px solid #b0d0e9;
	padding: 10px 20px;
	
	-webkit-border-radius:20px;
	-moz-border-radius:20px;
}

