/*
	tabs.css
	Copyright (c) Dan Wright 2006, All rights reserved.
	http://danwright.info/contact
*/


ul.simpletabs {
	padding: 3px 0px;
	list-style-type: none;
	white-space: nowrap;
	margin-left: 0;
	margin-bottom: 0;
	text-align: left;
}

ul.simpletabs li {
	display: inline;
	margin: 0;
	margin-left: 0.25in;
	margin-bottom: 0px;
	padding: 5px 1em 3px 1em; /* T R B L */
	background: #333;
	border: 1px solid #444;
	-webkit-border-top-left-radius: 8px;
	-webkit-border-top-right-radius: 8px;
	-moz-border-radius-topleft: 8px;
	-moz-border-radius-topright: 8px;
	
	border-bottom: none;
	cursor: pointer;
}

ul.simpletabs li.selected {
	padding-bottom: 4px;
	background: #111;
	color: #aaaa77;
	font-weight: bold;
	border-color: gray;
}


div.tabcontent {
	display: none;
	border: 1px solid gray;
	padding: 1em;
	margin-left: 0.25in;
	
}

div.tabcontent.selected {
	display: block;
	background: #111111;
	-webkit-box-shadow: rgba(0,0,0,0.25) 4px 4px 8px;
	-moz-box-shadow: rgba(0,0,0,0.25) 4px 4px 8px;
	-webkit-border-top-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-bottomleft: 3px;
	-moz-border-radius-bottomright: 3px;
}

div.tabcontent.loading {
	display: block !important;
}

.selected table {
	background: #111111;
}


div.tabcontent td {
	padding: 0in 0.2in 0in 0.35in;
	width: 2.5in;
	text-align: center;
}


div.tabcontent td p {
	width: 2in;
	padding: 0 0 0 0;
	margin: 0;
}

p.title {
	margin-top: 0.5em;
	margin-bottom: 1.5em;
}

div.tabcontent img {
	border: 0.2in solid purple;
	padding: 1px 1px 1px 1px;
}

