
/**
 * Tab
 */
.tab 
{
	background-color: #EEEEEE;
}

.tab_active
{
	background-color: #FFFFFF;
}

.tab, .tab_active
{
	padding:6px; 
	
	cursor:pointer; 
	cursor:hand;
	
	border: 1px solid #CACACC; 
	border-bottom:0px; 
	
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}


/**
 * Tab Content
 */
.tab_content
{
	
}

/**
 * Tab Content Wrapper
 */
.tab_content_wrapper
{
	border:1px solid #CACACC;
	padding:6px;
	
	-webkit-border-radius: 5px;
	-webkit-border-top-left-radius: 0;
	-moz-border-radius: 5px;
	-moz-border-radius-topleft: 0;
	border-radius: 5px;
	border-top-left-radius: 0;
}

