<!-- Below is the CSS for the example tab panel div tags. 
     You may, of course, change these according to your 
     design requirements.

     Refer to the Creating a Tab Panel article for notes 
     about this CSS. -->

* {padding: 0; margin: 0;}

* {
    -moz-box-sizing: border-box;
}



.tab { 
	font-family: verdana,sans-serif; 
	font-size: 11px;
	width: 100%;
	text-align: center;
	border-style: solid;
	border-color: black;
	border-left-width: 1px;
	border-right-width: 1px;
	border-top-width: 1px;
	border-bottom-width: 0px;
	padding-left: 0px;
	padding-right: 0px;
	margin-left: 0px;
	margin-right: 0px;
	margin-top:0px;
	margin-bottom: 0px;
	cursor: pointer;
	}
.tabhold { 
	background-color: white;
	padding-top: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	padding-right: 3px;
	margin-left: 0px;
	margin-right: 0px;
	margin-top:15px;
	margin-bottom: 15px;
	color: black;
	}
.tabfocus { 
	padding-left: 0px;
	padding-top: 0px;
	padding-bottom: 15px;
	padding-right: 3px;
	background-color: black;
	margin-left: 0px;
	margin-right: 0px;
	margin-top:15px;
	margin-bottom: 15px;
	color: white;
	}
.tabcontent { 
	font-family: sans-serif; 
	font-size: 14px;
	float: left;
	height: 100%;
	border-style: solid;
	border-color: black;
	border-width: 0px;
	padding-top: 0px;
	padding-left: 10px;
	padding-right: 25px;
	margin-left: 0px;
	margin-right: 0px;
	margin-top:15px;
	margin-bottom: 15px;
	}
