/* CSS for Content Tabbing */

.form_container{
	border:2px solid #FFF;
	width:520px; 
	height: 390px; 
	background-color:#C49916;
	padding: 5px;
	color:#000000;
}

.tab_border{
border-top: 4px solid #CACACA; 	/*White color theme*/ 
}

.content_tabbing ul{
margin:0;
/*margin-left: 4px;*/ 			/*margin between first menu item and left browser edge*/
padding: 0;
list-style: none;
}

.content_tabbing li{
display: inline;
margin: 0 2px 0 0;
padding: 0;
text-transform:uppercase;		/*All text is in uppercase*/
}

.content_tabbing a{
float: left;
display: block;
font: bold 10px Arial;
color: white;
text-decoration: none;
margin: 0 2px 0 0; 				/*Margin between each menu item*/
padding: 5px 10px;
background-color: #77471F; 		/*Brown color theme*/ 
border-top: 1px solid #C4A816;
}

.content_tabbing a:hover{
background-color: #CACACA; 		/*Dirty White color theme*/ 
color: Black;					/*Text Color*/
}

.content_tabbing a.selected{ 	/*currently selected tab*/
background-color: #CACACA; 		/*Dirty White color theme*/ 
color: Black;
border-color: #CACACA;			/*Dirty White color theme*/ 
}

.tabcontent{
display:none;
margin:0px;
padding:0px;
font-family: Tahoma;
font-size:12px;
}

/*@media print {
.tabcontent {
display:block !important;
}
}*/