.tabs {
	width: 92%;
	margin: 10px;
	height: 380px;
}

.tab_active {
	-moz-border-radius: 5px 5px 0px 0px;
	border-color: #aaa;
	border-width: 1px;
	border-style: solid;
	background-color: #fff;
	color: #000;
	float: left;
	width: 100px;
	cursor: default;
	font-weight: bold;
	padding: 2px;
	font-size: 12px;
	text-align: left;
}

.tab_inactive {
	-moz-border-radius: 5px 5px 0px 0px;
	border-color: #aaa;
	border-style: solid;
	border-width: 1px;
	background-color: #ddd;
	color: #777;
	float: left;
	width: 100px;
	cursor: default;
	padding: 2px;
	font-size: 10pt;
	text-align: left;
}

.tab_content {
	-moz-border-radius: 0px 10px 10px 10px;
	width: 100%;
	border-color: #aaa;
	border-style: solid;
	border-width: 1px;
	color: #000;
	float: left;
	text-align: justify;
	padding: 10px;
	font-size: 10px;
	min-height: 330px;
	background-color: #E6E6E6;
}

* html .tab_content {
	height: 100%; /* hack para IE6 hq trata height como min-height */
	}
