/* tabs css*/
ul.tabs {
	margin: 10px 0 0 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 25px; /*--Set height of tabs--*/
	border-bottom: 2px solid #dedede;
	border-left: 2px solid #dedede;
	width: 100%;
}
ul.tabs li {
	float: left;
	margin: 0;
	padding: 0;
	height: 24px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 31px; /*--Vertically aligns the text within the tab--*/
	border: 2px solid #dedede;
	border-left: none;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: #e0e0e0;

}
ul.tabs li a {
	text-decoration: none;
	color: #424a55;
	display: block;
	font-size: 11px;
	padding: 0 8px;
	border-right: 1px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
	border-bottom: 1px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
}
ul.tabs li a:hover {
	background: #ccc;
}

/*tab content css*/
.tab-container {
	border: 2px solid #dedede;
	border-top: none;
	overflow: hidden;
	clear: both;
	float: left;
	width: 100%;
	background: #fff;
	margin-bottom:10px;
}
.tab-content {
	padding: 10px;
	font-size: 12px;
}

.tab-content p {
	padding: 10px;
	font-size: 11px;
}

.tab-content img {
	padding: 1px;
	border:0px;
}

.tabs li.active {
    font-weight: bold;
    margin-bottom: 3px;
}