@charset "utf-8";
/* CSS Document */

/**********************************************/
/*************** Tabs Section *****************/
/**********************************************/

#tabContainer {
	width:700px;
	background-color:#FFFFFF;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 5px;
}

#tabs{
	height:55px;
	overflow:hidden;
}

#tabs > ul{
	font: 1em;
	list-style:none;
}

#tabs > ul > li{
	display:block;
	float:left;
	color:#FFFFFF;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	-moz-border-radius-bottomright: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius:4px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	background-position: left top;
	background-image: url(../images/butt.png);
	height: 39px;
	width: 115px;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 0px;
	text-align: center;
	background-color: #0033CC;
}

#tabs > ul > li:hover{
	background: #FFFFFF; /* webkit */
	cursor:pointer;
	color: #330000;
	background-position: left top;
	background-image: url(../images/butt-ho.png);
}

#tabs > ul > li.tabActiveHeader{
	background: #FFFFFF; /* webkit */
	cursor:pointer;
	color: #330000;
	background-position: left top;
	background-image: url(../images/butt-vi.png);
}

#tabscontent {
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-topright: 4px;
	-moz-border-radius-bottomright: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-top-left-radius: 0px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	background: #FFFFFF; /* webkit */
	margin:0;
	color:#333;
	background-color: #FFFFFF;
	background-position: left top;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	border: thin dashed #1C72FF;
}

.tabslink{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FF0000;
	font-weight: bold;
}

/**********************************************/
