p {
	font-size: 15px;
}
ul.tabs {
	height: 30px;
	display: block;
	/*margin: 0 0 20px 0;*/
	/*margin:20px;*/
	padding: 0;
	border-bottom: solid 1px #b3b596;
	
}

ul.tabs li {
	display: block;
	width: auto;
	height: 30px;
	padding: 0;
	float: left;
	margin-bottom: 0; 
}

ul.tabs li a {
	list-style-type: none;
	display: block;
	text-decoration: none;
	width: auto;
	height: 29px;
	padding: 0px 20px;
	line-height: 29px;
	border: solid 1px #b3b596;
	border-width: 1px 1px 0 0;
	margin: 0;
	background-color: #e6e6e6;
	font-size: 13px; 
}

ul.tabs li a.active {
	color: #9a0033;
	list-style-type: none;
	background: #fff;
	height: 30px;
	position: relative;
	top: -4px;
	padding-top: 4px;
	border-left-width: 1px;
	margin: 0 0 0 -1px;
	-moz-border-radius-topleft: 3px;
	-webkit-border-top-left-radius: 3px;
	border-top-left-radius: 3px;
	-moz-border-radius-topright: 3px;
	-webkit-border-top-right-radius: 3px;
	border-top-right-radius: 3px; 
}

ul.tabs li:first-child a.active {
	list-style-type: none;
	margin-left: 0; 
}

ul.tabs li:first-child a {
	border-width: 1px 1px 0 1px;
	-moz-border-radius-topleft: 3px;
	-webkit-border-top-left-radius: 3px;
	border-top-left-radius: 3px; 
}

ul.tabs li:last-child a {
	-moz-border-radius-topright: 3px;
	-webkit-border-top-right-radius: 3px;
	border-top-right-radius: 3px; 
}

ul.tabs-content { margin: 10px; display: block; }
ul.tabs-content > li { list-style-type: none; display:none; }
ul.tabs-content > li.active { list-style-type: none; display: block; }

/* Clearfixing tabs for beautiful stacking  */
ul.tabs:before, ul.tabs:after {
  list-style-type: none;
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0; 
}

ul.tabs:after {
  list-style-type: none;
  clear: right; 
}

