/* classic slising doors example css as seen on http://www.alistapart.com/articles/slidingdoors/*/

#tabs ul.tabs-list {
	margin:0;
	padding:0;
	list-style:none;
}
#tabs ul.tabs-list li {
	float:left;
	margin:0;
	padding:0 9px 0 0;
}
#tabs ul.tabs-list a {
	background: none repeat scroll 0 0 #FAFAFA;
	border-color: #CCCCCC;
	border-style: solid;
	border-top-left-radius: 0.5em;
	border-top-right-radius: 0.5em;
	border-width: 2px 2px 0;
	color: #666666;
	cursor: pointer;
	float: left;
	font-weight: normal;
	margin: 4px 0 0;
	overflow: hidden;
	padding: 8px 0.5em 10px;
	position: relative;
	text-decoration: none;
	text-shadow: none;
	top: 4px;
}
/* Commented Backslash Hack
     hides rule from IE5-Mac \*/
  #tabs ul.tabs-list a {
	float:none;
}
/* End IE5-Mac hack */
  #tabs ul.tabs-list a:hover {
	color:#333;
}
#tabs ul.tabs-list .current {
	border-width:0;
}
#tabs ul.tabs-list .current a {
	background: none repeat scroll 0 0 #FFFFFF;
	border-color: #000000;
	color: #333333;
	font-weight: bold;
	top: 2px;
	z-index: 999;
}
.js #tabs .current-info,  .js #tabs .accessibletabsanchor,  .js #tabs .tabhead /*position each individual tab's heading (default class .tabhead) off-screen*/ {
	position:absolute;
	left:-999em;
}
.js #tabs .content {
	clear:both;
	margin:8px 0 0 0;
}
.tabbody {
	background-color: #FFFFFF;
	border: 2px solid #000000;
	border-radius: 0 1em 1em 1em;
	clear: left;
	color: #333333;
	display: block;
	overflow: auto;
	padding: 0 35px;
	position: relative;
	visibility: visible;
	z-index: 5;
}
