/* Created by Patrick Fitzgerald March 27, 2006 pat@barelyfitz.com */
/* Copyright (c) 2006 Patrick Fitzgerald */
/* Modified and annotated by Mike Nichols October 9, 2009 */

/* all tabs font properties */
ul.tabbernav {
	/* size of all tab fonts */
	font-size: .9em;
	/* all tabs bold or not */
	font-weight: bold;
	/* all tabs font family if desired */
	/*font-family: Verdana, sans-serif;*/
	/* padding might be needed in some installations */
	/*padding: 3px 0;*/
	/* do not change this! */
	margin: 0;
}

/* all tab properties */
ul.tabbernav li a {
	/* border on top of tabs */
	border-top: 3px solid red;
	/* border color right and left */
	border-right: 1px solid black;
	border-left: 1px solid black;
	/* tab color */
	background: #F8FFC0;
	/* underline or not */
	text-decoration: none;
	/* font color */
	color: black;
	/* distance from top of letters to top of tab */
	padding-top: 3px;
	/* distance from bottom of letters to bottom of tab */
	padding-bottom: 3px;
	/* distance from right of letters to right edge of tab */
	padding-right: 8px;
	/* distance from left of letters to left edge of tab */
	padding-left: 8px;
	/* tab spacing */
	margin-left: 3px;
	/* do not change this! */
	border-bottom: none;
}

/* unselected tab hover behavior */
ul.tabbernav li a:hover {
	/* font color */
	color: white;
	/* tab color */
	background: red;
	/* border color */
	border-color: black;
}

/* selected tab properties */
ul.tabbernav li.tabberactive a {
	/* font color */
	color: blue;
	/* tab color */
	background-color: white;
	/* top border color */
	border-top: 3px solid blue;
	/* do not change this! */
	border-bottom: 3px solid #FFFFFF;
}

/* selected tab hover behavior */
ul.tabbernav li.tabberactive a:hover {
	/* font color */
	color: black;
	/* tab color */
	background: white;
	/* do not change this! */
	border-bottom: 3px solid white;
}

/* content box */
.tabberlive .tabbertab {
	/* padding around inside of box */
	padding: 10px;
	/* border color */
	border: 1px solid black;
	/* do not change this! */
	overflow: auto;
}

/* ===== DO NOT CHANGE ANYTHING BELOW THIS LINE ===== */

/* interface setup */
.tabber {}
.tabberlive { margin-top:1em; }

/* selected tab setup */
ul.tabbernav li {
	list-style: none;
	margin: 0;
	display: inline;
}

 /* hide unselected tab content */
.tabberlive .tabbertabhide { display:none; }

/* hide the heading */
.tabberlive .tabbertab h2, .tabberlive .tabbertab h3 { display:none; }