@charset "UTF-8";

/* SpryTabbedPanels.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* Horizontal Tabbed Panels
 *
 * The default style for a TabbedPanels widget places all tab buttons
 * (left aligned) above the content panel.
 */

 /*
 * ALTERA AS DIMENSÕES DO PAINEL BEM COMO SEU POSICIONAMENTO NA TELA
 */
 
.TabbedPanels {
	padding: 0px;
	float: left;
	clear: none;
	width: 89%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
	width: 523px; 
	margin-top: 35px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 26px;
}

/* This is the selector for the TabGroup. 
 */
.TabbedPanelsTabGroup {
	margin: 0 0 0 0px;
	padding: 0px;
}

/* This is the selector for the TabbedPanelsTab.
 *
 * COR DO FUNDO DOS TABS QUE NÃO ESTÃO SENDO ACESSADOS
 * ALTERA TAMBEM AS CARACTERISTICAS DO TEXTO ESCRITO NAS TABS
 */
 
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 4px 16px 4px 17px;
	margin: 0px 1px 0px 0px;
	
	font-family:Helvetica, Arial, Verdana, sans-serif;
	font-size:14px;
	color:#fff;
	
	background-color:#1968b3;
	
	list-style: none;
	border-left: solid 1px #fff;
	border-bottom: solid 1px #fff;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
}

/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 *
 * COR DO FUNDO DO TAB QUE O CURSOR ESTA PASSANDO POR CIMA
 */
.TabbedPanelsTabHover {
	background-color:#1968b3;
}

/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 *
 * COR DO FUNDO DO TAB QUE ESTA SENDO ACESSADO
 * ALTERA TAMBEM AS CARACTERISTICAS DA FONTE USADA NO TITULO DA TAB QUE ESTA SENDO ACESSADA
 */
.TabbedPanelsTabSelected {
	background-color:#1968b3;
	border-bottom: 1px solid #fff;
	
	font-family:Helvetica, Arial, Verdana, sans-serif;
	font-size:14px;
	color:#faa635;
}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 *
 * ALTERAÇÃO DA FONTE DO TEXTO PRINCIPAL DE TODAS AS TABS
 * COR DO FUNDO DO TEXTO PRINCIPAL DO TAB QUE ESTA SELECIONADO
 */
.TabbedPanelsContentGroup {
	clear: both;
	border-left: solid 1px #fff;
	border-bottom: solid 1px #fff;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	font-family:Helvetica, Arial, Verdana, sans-serif;
	font-size:13px;
	color:#333;
	background-color:#fcc987;
}

.TabbedPanelsContentGroup h1{
	font-family:Helvetica, Arial, Verdana, sans-serif;
	font-size:14px;
	color:#575757;
	padding:0 0 7px 0;
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
	padding:0 0 0 53px;
}

.TabbedPanelsContent ul li{
	padding:0 0 2px 0px;
}

.TabbedPanelsContent p{
	padding: 0 0 5px 0;
	
}
/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
}

/* Vertical Tabbed Panels
 *
 * The following rules override some of the default rules above so that the
 * TabbedPanels widget renders with its tab buttons along the left side of
 * the currently active content panel.
 *
 * With the rules defined below, the only change that will have to be made
 * to switch a horizontal tabbed panels widget to a vertical tabbed panels
 * widget, is to use the "VTabbedPanels" class on the top-level widget
 * container element, instead of "TabbedPanels".
 */

/* This selector floats the TabGroup so that the tab buttons it contains
 * render to the left of the active content panel. A border is drawn around
 * the group container to make it look like a list container.
 */
.VTabbedPanels .TabbedPanelsTabGroup {
	float: left;
	width: 10em;
	height: 20em;
	background-color: #EEE;
	position: relative;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: none;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTabSelected {
	background-color: #EEE;
	border-bottom: solid 1px #999;
}

/* This selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	padding: 0px;
	width: 20em;
	height: 20em;
}
