@charset "UTF-8";
/* CSS Document */



/* this applies to everything  ------------------------------------------------------------------------------------------------------*/

a:active {
	outline: none;
}
a:focus {
	-moz-outline-style: none;
}
#tabs_container {
	width: 99%; /* sets the width of the content section */
}



/* this is the tabs  ---------------------------------------------------------------------------------------------------------------*/

#tabs_container ul.tabs {
	list-style: none;
	border-bottom: 1px solid #ccc;
	height: 21px; /* distance from the top of the tabs to the top of the content section */
	margin: 0; /* keeps the tabs flush with the top of the content section */
	padding-left: 0em; /* this sets the space to the left of the entire tab set */
}
#tabs_container ul.tabs li { /* this is for the div that contains the left tabs; NOT the tabs themselves */
	float: left;
}
#tabs_container ul.tabs li.buy { /* this is for the div that contains the right tabs; NOT the tabs themselves */
	float: right;
}
#tabs_container ul.tabs li a { /* this set is for the tabs to the left */
	padding: 3px 6px; /* determines the depth of the tabs into the content section; determines the length of the tabs */
	display: block;
	border-left: 1px solid #ccc;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	margin-right: 0.2em; /* space to the right of each individual tab */
	text-decoration: none;
	background-color: #E6E6E6;
}
#tabs_container ul.tabs li.buy a { /* this set is for the tabs to the right */
	padding: 3px 6px; /* determines the depth of the tabs into the content section; determines the length of the tabs */
	display: block;
	border-left: 1px solid #ccc;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	margin-right: 0em; /* space to the right of each individual tab */
	text-decoration: none;
	background-color: #218cd9;
	color: white;
}
#tabs_container ul.tabs li.buy a:hover { /* this set is for the rollover inactive tabs to the right */
	color:#edecec;
}
#tabs_container ul.tabs li.active a { /* this set applies to the active tabs on the left */
	background-color: #fff;
	padding-top: 4px;
}
#tabs_container ul.tabs li.buy.active a { /* this set applies to the active tabs on the right */
	background-color: #fff;
	color: #4d4d4d;
	padding-top: 4px;
}
#tabs_container ul.tabs li.active a:hover { /* this set applies to the rollover for the active tabs on the left */
	padding-top: 4px;
	color: #4d4d4d;
}
#tabs_container ul.tabs li.buy.active a:hover { /* this set applies to the rollover for the tabs on the right */
	color: #4d4d4d;
}



/* this is the contents  -----------------------------------------------------------------------------------------------------------*/

div.tab_contents_container {
	border: 1px solid #ccc;
	border-top: none;
	padding-right: 0.75em;
	padding-left: 0.75em;
	padding-bottom: 0.25em;
	padding-top: 1.5em;
}
div.tab_contents {
	display: none;
}
div.tab_contents_active {
	display: block;
}
div.clear {
	clear: both;
}
#tab_2_contents {
	text-align: left;
}
#tab_3_contents {
	text-align: center;
}
#tab_5_contents {
	text-align: left;
}






/*
a:active {
	outline: none;
}
a:focus {
	-moz-outline-style: none;
}
#tabs_container {
	width: 400px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
#tabs_container ul.tabs {
	list-style: none;
	border-bottom: 1px solid #ccc;
	height: 21px;
	margin: 0;
}
#tabs_container ul.tabs li {
	float: left;
}
#tabs_container ul.tabs li a {
	padding: 3px 10px;
	display: block;
	border-left: 1px solid #ccc;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	margin-right: 2px;
	text-decoration: none;
	background-color: #efefef;
}
#tabs_container ul.tabs li.active a {
	background-color: #fff;
	padding-top: 4px;
}
div.tab_contents_container {
	border: 1px solid #ccc;
	border-top: none;
	padding: 10px;
}
div.tab_contents {
	display: none;
}
div.tab_contents_active {
	display: block;
}
div.clear {
	clear: both;
}
*/
