
/* root element for tabs  */
ul.tabs {
	list-style:none;
	margin:0 !important;
	padding:0;
	height:30px;
	border-bottom:1px solid #666;
}

/* single tab */
ul.tabs li {
	float:left;
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important;
}

/* link inside the tab. uses a background image */
ul.tabs a {
	background: url(../images/tabs.png) no-repeat 0 0;
	font-size:11px;
	display:block;
	height: 30px;
	line-height:30px;
	width: 163px;
	text-align:center;
	text-decoration:none;
	color:#000;
	padding:0px;
	margin:0px;
	position:relative;
	top:1px;
}

ul.tabs a:active {
	outline:none;
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background-position: 0 0;
	color:#fff;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background-position: 0 0;
	cursor:default !important;
	color:#000 !important;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* width 2 */
ul.tabs a.w2 	{ background-position: 0 0; width:163px; }
ul.tabs a.w2:hover 	{ background-position: 0 -31px; }
ul.tabs a.w2.current { background-position: 0 -62px; }

/* initially all panes are hidden */
div.panes div.pane {
	display:none;
}

div.panes {
	border-left: #666 1px solid;
	border-right: #666 1px solid;
	border-bottom: #666 1px solid;
	padding: 15px;
	background-color: #fff;
	overflow: auto;
}

#tabsContainer{
	width: 490px;
	position: relative;
	top: 15px;
	left: 0;
}



/*TABS MENORES*/


/* root element for tabs  */
ul.tabsMenores {
	list-style:none;
	margin:0 !important;
	padding:0;
	height:30px;
	border-bottom:1px solid #666;
}

/* single tab */
ul.tabsMenores li {
	float:left;
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important;
}

/* link inside the tab. uses a background image */
ul.tabsMenores a {
	background: url(../images/tabs_pequenas.png) no-repeat 0 0;
	font-size:11px;
	display:block;
	height: 30px;
	line-height:30px;
	width: 114px;
	text-align:center;
	text-decoration:none;
	color:#000;
	padding:0px;
	margin:0px;
	position:relative;
	top:1px;
}

ul.tabsMenores a:active {
	outline:none;
}

/* when mouse enters the tab move the background image */
ul.tabsMenores a:hover {
	background-position: 0 0;
	color:#fff;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabsMenores a.current, ul.tabsMenores a.current:hover, ul.tabsMenores li.current a {
	background-position: 0 0;
	cursor:default !important;
	color:#000 !important;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* width 2 */
ul.tabsMenores a.w2 	{ background-position: 0 0; width:114px; }
ul.tabsMenores a.w2:hover 	{ background-position: 0 -31px; }
ul.tabsMenores a.w2.current { background-position: 0 -62px; }

/* initially all panes are hidden */
div.panesMenores div.paneMenores {
	display:none;
}

div.panesMenores {
	border-left: #666 1px solid;
	border-right: #666 1px solid;
	border-bottom: #666 1px solid;
	padding: 15px;
	background-color: #fff;
	overflow: auto;
}

