/* CSS für jQuery-Plugin easyTabs */

.etabs {
	margin: 0 0 0 20px;
	padding: 0;
}
.tab {
	display: inline;
	display: inline-block;
	background: #eee;
	border: solid 1px #d8d8d8;
	border-bottom: none;
	moz-border-radius: 3px 3px 0 0;
	webkit-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
	zoom: 1;
}
.tab a {
	display: block;
	font-size: 14px;
	line-height: 2em;
	outline: none;
	padding: 0 10px;
}
.tab a:hover {
	text-decoration: underline;
}
.tab.active {
	background: #fff;
	border-color: #d8d8d8;
	padding-top: 6px;
	position: relative;
	top: 1px;
}
.tab a.active {
	font-weight: bold;
}
.tab-container .panel-container {
	padding: 20px;
	background: #fff;
	border: solid #d8d8d8 1px;
	moz-border-radius: 0 3px 3px 3px;
	webkit-border-radius: 0 3px 3px 3px;
	border-radius: 0 3px 3px 3px;
}
.panel-container {
	margin-bottom: 10px;
}
div.panel-container {
	height: 250px !important;
	overflow: auto;
}