@charset "UTF-8";
/* CSS Document */

#sala {
	position: relative;
}
ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 26px; /*--Set height of tabs--*/
	border-bottom: 1px solid #679800;
	width: 100%;
}
ul.tabs li {
	float: left;
	margin: 0;
	padding: 0;
	height: 25px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 25px; /*--Vertically aligns the text within the tab--*/
	border: 1px solid #679800;
	margin: 0 2px -1px;  /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: transparent;
}
ul.tabs li.first {
	margin-left: 10px;
}
ul.tabs li a {
	font-family: Helvetica, "Helvetica Neue", Arial,sans-serif;
	text-decoration: none;
	color: #679800;
	display: block;
	font-size: 1em;
	padding: 0 10px;
	outline: none;
}
ul.tabs li a:hover {
	background: #B6CE85;
}
html ul.tabs li.active, html ul.tabs li.active a, html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
	background: #679800;
	color: #FFFFFF;
	border-bottom: 1px solid #679800; /*--Makes the active tab look like it's connected with its content--*/
}
.tab_container {
	overflow: hidden;
	clear: both;
	float: left; width: 100%;
	background: transparent;
}
.tab_content {
	padding: 20px 0 10px;
}
/* tabs para as páginas */
ul.pages {
	margin: 10px 0 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 22px; /*--Set height of tabs--*/
	/*border-bottom: 1px solid #679800;*/
	width: 400px;
}
ul.pages li {
	float: left;
	margin: 0;
	padding: 0;
	height: 20px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 20px; /*--Vertically aligns the text within the tab--*/
	border: 1px solid #679800;
	margin: 0 2px;
	overflow: hidden;
	position: relative;
	background: transparent;
}
ul.pages li.first {
}
ul.pages li a {
	font-family: Helvetica, "Helvetica Neue", Arial,sans-serif;
	text-decoration: none;
	color: #679800;
	display: block;
	font-size: 1em;
	padding: 0 4px;
	outline: none;
}
ul.pages li a:hover {
	background: #B6CE85;
}
html ul.pages li.active, html ul.pages li.active a, html ul.pages li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
	background: #679800;
	color: #FFFFFF;
	border-bottom: 1px solid #679800; /*--Makes the active tab look like it's connected with its content--*/
}
.page_container {
	overflow: hidden;
	/*clear: both;*/
	float: left;
	width: 920px;
	background: transparent;
	margin-top: 10px;
}
.page_content {
	padding: 0;
}
