/* CSS Document */

#tabs {
	position: relative;
	display: block;
	width: 100%;
	height: 285px;
	z-index: 0;
}
#tabs a { color: #000000; text-decoration: none; }
#tabs a:hover { text-decoration: underline; }
#tabs .group {
	display: inherit;
	float: left;
}
#tabs .header {
	position: relative;
	display: inherit;
	background-color: #DDDDDD;
	padding: 5px;
	margin: 0px 5px 0px 0px;
	float: left;
	border-left: 1px #000000 solid;
	border-right: 1px #000000 solid;
	border-top: 1px #000000 solid;
	z-index: 0;
	border-bottom: none;
}
#tabs .content {
	border: 1px #000000 solid;
	position: absolute;
	display: none;
	left: 0px;
	top: 26px;
	width: auto;
	background-color: #DDDDDD;
	padding: 5px;
	z-index: 1;
}
#tabs .left {
	float: left; width: 225px; height: 225px; overflow: hidden;
}
#tabs .right {
	float: right; width: 225px; height: 240px; text-align: center;
}
#tabs .middle { height: 225px; overflow: hidden; vertical-align: middle; }
#tabs .show .header { z-index: 2; }
#tabs .show .content { display: block; }

#tabs .over { background-color: #FFFFCC; }
