unknown {
	font-size: small
}

#content {
	margin: 0 auto;
	height: 100%;
	width: 800px;
	z-index: 1;
}

#flashmenu {
	text-align: left;
	width: 70px;
	height: 300px;
	margin-left: 55px;
	margin-top: 320px;
	position: absolute;
	z-index: 5;
}

#flashbanner {
	text-align: left;
	width: 732px;
	height: 98px;
	margin-left: 74px;
	margin-top: 183px;
	position: absolute;
	z-index: 10;
}

#tabs {
	font-size: 12px;
	background: url(imagens/tab_bg.gif) repeat-x left bottom;
	float: left;
	width: 100%;
	line-height: normal;
}

#tabs ul {
	padding-right: 6px;
	padding-left: 6px;
	padding-bottom: 0px;
	padding-top: 10px;
	margin: 0px;
	list-style-type: none;
}

#tabs li {
	background: url(imagens/tab_left.gif) no-repeat left top;
	float: left;
	padding-right: 0px;
	padding-left: 9px;
	padding-bottom: 0px;
	padding-top: 0px;
	margin: 0px;
}

#tabs a {
	display: block;
	background: url(imagens/tab_right.gif) no-repeat right top;
	float: left;
	color: #426BBA;
	padding-right: 15px;
	padding-left: 6px;
	padding-bottom: 4px;
	padding-top: 5px;
	text-decoration: none;
}

#tabs a:hover {
	color: #333;
}

#tabs #current {
	background-image: url(imagens/tab_left-on.gif);
}

#tabs #current a {
	background-image: url(imagens/tab_right-on.gif);
	padding-bottom: 5px;
	color: #426BBA;
	font-weight: bold;
}

input, textarea, select {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666666;
	background-color: #F1F6FB;
	border: 1px solid #426BBA;
}

a.button, span.button, del.button {
	display: -moz-inline-box;
	display: inline-block;
	cursor: pointer;
	border: none;
    font-size: 0;
    line-height: 0;

	/* for Safari, read this first http://creativebits.org/webdev/safari_background_repeat_bug_fix	*/
	background-position: 0 0;
	background-repeat: no-repeat;
	height: 30px;
	text-decoration: none;
	color: #2e523b;
	font-style: normal;
	margin: 0 6px 0px 0;
	padding: 0 10px 0 0;
	vertical-align: middle;	

    padding-top: -2px;
	_position: relative;
	_width: 10px;
	_overflow-y: hidden;
}

a.button, span.button, del.button, a.button span, span.button button, span.button input, del.button span {
    background-image: url(imagens/btn0.png);
    _background-image: url(imagens/btn0.png);
}

a.button span, span.button button, span.button input, del.button span {
	white-space: nowrap;
	cursor: pointer;
    color: #222;
	display: -moz-inline-box;
	display: inline-block;
	line-height: 1;
    letter-spacing: 0 !important;
    font-family: "Arial" !important;
    font-size: 12px !important;
    font-style: normal;
    background-color: transparent;
	background-position: 100% 0;
	background-repeat: no-repeat;
	height: 30px;
	padding: 8px 20px 0 10px;
	margin: 0 -16px 0 10px;
	border: none;
	vertical-align: text-top;
	zoom: 1;
	_position: relative;
    _padding-left: 0px;
	_padding-right: 12px;
	_margin-right: -10px;
	_display: block;
	_top: 0;
	_right: -5px;
}

span.button button{
   line-height: 2.5; /* Opera need this */
}

html.safari a.button span, html.safari del.button span {
  line-height: 1.3;
}

html.safari span.button button {
  line-height: 2.6;
}

html.safari a.button:focus, html.safari span.button button:focus {
	outline: none;
}

del.button {
	background-position: 0 -120px;
	/*cursor: not-allowed;*/
}

del.button span{
	cursor: default;
    color: #aaa !important;
	background-position: 100% -120px;
}

span.button button, span.button input {
	padding-top: 0px;
	line-height: 2.5; /* Opera need this */
}
/*
a.button:hover, span.button:hover, a.button:focus, a.dom-button-focus, span.button-behavior-hover { /* Hover style
	background-position: 0 -60px;
	color: #222;
	text-decoration: none;
}
*/
a.button:hover span, span.button:hover button, a.button:focus span, span.button-behavior-hover button, span.button-behavior-hover input {
	background-position: 100% -60px;
}

a.button:active, a.button:focus span {
	color: #444;
}

del.button-behavior-hover, del.button:hover {
	background-position: 0 -180px;
	/*cursor: not-allowed;*/
}

del.button-behavior-hover span, del.button:hover span {
	background-position:100% -180px;
	/*cursor: not-allowed;*/
}

span.button button, del.button span, span.button input { /* Optional hack for IE6 to simulate hover selector */
	_behavior: expression (
		(function(el) {
			if(typeof(behavior_onMouseEnter) == 'undefined') {
				behavior_onMouseEnter = function(el) {
					var dEl = this.parentNode;
					var sClass = dEl.className ;
					dEl.__defaultClassName = sClass ;
					dEl.className = sClass + ' button-behavior-hover';
					this.setCapture();
				};
				behavior_onMouseLeave = function(el) {
					var dEl = this.parentNode;
					dEl.className = dEl.__defaultClassName;
					dEl.__defaultClassName = undefined;
					this.releaseCapture();
				};
			};
			el.runtimeStyle.behavior = 'none';
			el.onmouseenter = behavior_onMouseEnter;
			el.onmouseleave = behavior_onMouseLeave;
		})(this));
}

/*
Now define your buttons in any of following ways (http://www.thinkflick.com/how-to/cool-css-rounded-corner-buttons-and-links/)
// Simple anchor
<a class="button" href="#"><span>Your link Text</span></a>

// Form button for IE
<span class="button"><input name="foo" type="submit" value="yout text" /></span> 

// For Not IE (if browser is different)
<span class="button"><button>your text</button></span>

//Disabled Buttons
<del class="button"><span>your text</span></del>
*/

.FundoSite {
	margin: auto;
	padding: 0px;
	background-attachment: fixed;
	background-image: url(imagens/fundo.gif);
	background-repeat: repeat;
	background-position: left top;
}

.FundoBanner {
	background-image: url(imagens/fundo_banner.png);
	background-repeat: no-repeat;
	background-position: top center;
}

.FundoSiteCabecalho {
	background-image: url(imagens/site_cabecalho.png);
	background-repeat: no-repeat;
	background-position: top center;
}

.FundoNewsCabecalho {
	background-image: url(http://www.anep-ipb.org.br/imagens/news_cabecalho.jpg);
	background-repeat: no-repeat;
	background-position: top center;
}

.FundoSiteRodape {
	background-attachment: inherit;
	background-image: url(imagens/site_rodape.png);
	background-repeat: no-repeat;
	background-position: top center;
}

.SombraSiteEsquerda {
	background-attachment: inherit;
	background-image: url(imagens/sombra_site_esquerda.png);
	background-repeat: no-repeat;
	background-position: right top;
}

.SombraSiteDireita {
	background-attachment: inherit;
	background-image: url(imagens/sombra_site_direita.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}

.FundoCorpoCabecalho {
	background-image: url(imagens/corpo_cabecalho.png);
	background-repeat: no-repeat;
	background-position: top center;
}

.FundoCorpoCabecalho2 {
	background-image: url(imagens/corpo_cabecalho2.png);
	background-repeat: no-repeat;
	background-position: top center;
}

.FundoCorpoRodape {
	background-attachment: inherit;
	background-image: url(imagens/corpo_rodape.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

.FundoCorpoRodape2 {
	background-attachment: inherit;
	background-image: url(imagens/corpo_rodape2.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

.SombraCorpoEsquerda {
	background-attachment: inherit;
	background-image: url(imagens/sombra_corpo_esquerda.png);
	background-repeat: no-repeat;
	background-position: right top;
}

.SombraCorpoDireita {
	background-attachment: inherit;
	background-image: url(imagens/sombra_corpo_direita.png);
	background-repeat: no-repeat;
	background-position: left top;
}

.FundoTabela {
	background-image: url(imagens/tab_ligacao.jpg);
	background-attachment: inherit;
	background-repeat: no-repeat;
	background-position: top left;
}

.Borda1 {
	border: dashed 1px #333;
}

.Borda2 {
	border: dashed 1px #9FB6DE;
}

.BordaInf1 {
	border-bottom: dashed 1px #333;
}

.BordaInf2 {
	border-bottom: dashed 1px #9FB6DE;
}

.BordaSup1 {
	border-top: dashed 1px #333;
}

.BordaSup2 {
	border-top: dashed 1px #9FB6DE;
}

.BordaEsq1 {
	border-left: dashed 1px #333;
}

.BordaEsq2 {
	border-left: dashed 1px #9FB6DE;
}

.TextoTitulo1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 13px;
	font-weight: bold;
	color: #426BBA;
	line-height: 120%;
}

.TextoPadrao {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #333;
	line-height: 170%;
}

.TextoNoticias {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #333;
	line-height: 120%;
}

.TextoNoticiasLink {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #426BBA;
	line-height: 120%;
	text-decoration: none;
}

.TextoNoticiasLink:hover {
	text-decoration: underline;
}

.TextoNoticiasData {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #666;
	line-height: 120%;
}

.TextoLink {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #426BBA;
	line-height: 170%;
	text-decoration: none;
}

.TextoLink:hover {
	text-decoration: underline;
}

.TextoRodape {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #426BBA;
	line-height: 150%;
}
