﻿@charset "utf-8";
/*Tabs CSS*/

ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 28px; /*--Set height of tabs--*/
	border-bottom: 1px solid #CC3366;
	width: 100%;
}
ul.tabs li {
	float: left;
	margin: 0;
	margin-top:2px;
	margin-right:2px;
	padding: 0;
	height: 25px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 200%; /*--Vertically aligns the text within the tab--*/
	border: 1px solid #CC3366;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
/*	position: relative;*/
	background: #CC3366;
	font-size:10pt;
	border-top-right-radius:5px;
	border-top-left-radius:5px;
}
ul.tabs li a {
	text-decoration: none;
	display: block;
	padding: 0 20px;
	outline: none;
	color:#FFF;
}
ul.tabs li a:hover {
	background: #FC508B;
}
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--*/
	color:#CC3366;
	font-weight:bold;
	background: #fff;
	border-bottom: 1px solid #fff; /*--Makes the active tab look like it's connected with its content--*/
}
/*Tab Content CSS*/

.tab_container {
	border: 1px solid #CC3366;
	border-top: none;
	overflow: hidden;
	clear: both;
	float: left; width: 100%;
	background: #fff;
	margin-bottom:15px;
	line-height:150%;
}
.tab_content {
	margin:15px;
	text-align: justify;
	text-justify:inter-ideograph;
}

#tab2.tab_content:first-letter{
	color:#CC3366;
	font-size:130%;
	font-weight:bold;
}
#tab3.tab_content h1{
	color:#CC3366;
	font-size:130%;
	font-weight:bold;
	border-bottom:2px solid #CC3366;
	padding-bottom:5px;
}
#tab3.tab_content table{
	margin-top:0px;
	margin-bottom:20px;
}