ul.tabs {
	margin: 0;
	margin-left: -200px;
	padding: 0;
	list-style: none;
	height: 25px; /*--Set height of tabs--*/
	width: 100%;
	float: left;
}

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--*/
	overflow: hidden;
	position: relative;
	background: #EEE7E7;
}

ul.tabs li a {
	text-decoration: none;
	color: #000000;
	display: block;
	font-size: 12px;
	padding: 0 20px;
	margin-top: -3px;
	outline: none;
}

html ul.tabs li.active, html ul.tabs li.active a, html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
	background: #835537;
	color: #FFFFFF;
}


.tab_container {
	overflow: hidden;
	clear: both;
	float: left;
	background: #EEE7E7;
	margin-bottom: 50px;
	margin-left: -200px;
}

.tab_content {
	padding: 20px;
	font-size: 13px;
}

#npage .tabs {
	margin-left: -300px;
}

#npage .tab_container {
	margin-top: 30px;
	margin-left: -320px;
}

