/* CSS Document */
/*
///////////// Tab css /////////////
////////////////////////////////
*/
#tabs_wrapper {
    width: 422px;
}
#tabs_container {
	margin-top:20px;
}
#tabs {
    list-style: none;
    margin: 0 0 -1px 0px;
	padding:0;
}
#tabs li {
    display: inline;
	width:33.33333%;
	float:left;
}
#tabs li a {
    border: 1px solid #DDDDDD;
    text-decoration: none;
	line-height:34px;
	display:block;
	background:#F8F8F8;
	padding:0 10px;
	color:#636363;
	font-size:14px;
	font-weight:bold;
	text-transform:uppercase;
	white-space:nowrap;
	text-overflow:ellipsis;
	overflow:hidden;
	font-family:Tahoma, Geneva, sans-serif;
    outline: none;
	text-align:center;
}
#tabs li a:hover {
    background-color: #E9EAEC;
}
#tabs li.active {
	margin-bottom:-1px;}
#tabs li.active a {
    background: #fff;
	color:#000;
	line-height:35px;
    border-bottom:none;
}
#tabs li.active a:hover {
    border-bottom: none;
}
 
#tabs li a.icon_accept {
    background-image: url(accept.png);
    background-position: 5px;
    background-repeat: no-repeat;
    padding-left: 24px;
}
#tabs li a.icon_accept:hover {
    padding-left: 24px;
}
 
#tabs_content_container {
	border: 1px solid #DDDDDD;
    border-top: none;
	background:#FFFFFF;
	line-height:16px;
    padding: 10px;
    clear:both;
}
.tab_content {
    display: none;
}

