
#tabmenu-grande {
	font-size: 22px;
	font-family: 'BebasNeueRegular';
	-webkit-font-smoothing:none;
	-webkit-font-smoothing:subpixel-antialiased;
	-webkit-font-smoothing:antialiased;

	z-index:10;
}
#tabmenu-grande ul {
	line-height: 1em; /* setting the line height now so we don't have any headaches*/
	margin: 0px; /* let's keep the margin set to 0 for the same reasons as above*/
	list-style-type: none; /* we remove the UL's default disc bullets */
	float: left; /* we float the list to the left like we will all the elements inside*/
	padding: 0px 5px 0px 0px; /* give it a left padding of 5px to counter the effect of margin -5px below */
}
#tabmenu-grande div {
	float: left; /* floatin' left */
}
#tabmenu-grande div a {
	text-decoration: none; /* remove the default underline off the anchor text */
	display: block; /* we display this text as block so that we can apply padding/margin without problems */
	float: left; /* floatin' left, to make the menu horizontal */
	padding: 0px 32px 0px 0px;  /* we give it a left padding of 10px to show the first 10 pixels of the tabs image. you can also use padding-left: 10px; */
	background: url(../../img/bg/tabs-grandes.png) no-repeat right top;  /* we link to the tabs image, no tiling, showing the top left part of it */
	margin-right: -14px;  /* this is important for the overlapping part - we are overlapping the tabs by 5 px */
	z-index: 0; /* keep it on layer 0 (default) */
	position: relative;  /* very important as this enables the z-index to work for us and keeps the tabs where they should be */
	color: #6386b5;  /* color of the tab text */
}
#tabmenu-grande div a strong {
	font-weight: normal;   /* remove the bold effect */
	display: block;   /* display the strong element as a block so we can pad it, etc. */
	float: right;   /* float it left as well */
	background: url(../../img/bg/tabs-grandes.png) no-repeat left top;  /* now we show the right part of the tab and we complete the "puzzle" */
	padding: 10px 8px 10px 20px;  /* important, as through this you define the position of the text within the tab */
	cursor: pointer;  /* this makes the browser show the "hand" cursor when hovering over the tab */
}
#tabmenu-grande div a:hover {
	position: relative; /* again, keep things relative */
	z-index: 5; /* we show this tab over all other tabs in the menu, which would be on layer 0, thus overlapping occurs */
	background: url(../../img/bg/tabs-grandes.png) no-repeat right bottom;  /* now we show the bottom part of the tabs image, the "hover" instance */
	color: #092353;   /* we color the hovered tab's text black */
}
#tabmenu-grande div a:hover strong {
	background-image: url(../../img/bg/tabs-grandes.png) no-repeat;  
	position: relative; /* keep it relative */
	z-index: 5; /* show this on layer 5 as well */
	background-position: left bottom; /* we show the right bottom part of the tabs image (the hover instance) */
}


#tabmenu-grande div.tabon-gr a {
	position: relative; /* again, keep things relative */
	z-index: 5; /* we show this tab over all other tabs in the menu, which would be on layer 0, thus overlapping occurs */
	background: url(../../img/bg/tabs-grandes.png) no-repeat right bottom;  /* now we show the bottom part of the tabs image, the "hover" instance */
	color: #000000;   /* we color the hovered tab's text black */
}
#tabmenu-grande div.tabon-gr a strong {
	background-image: url(../../img/bg/tabs-grandes.png) no-repeat;  
	position: relative; /* keep it relative */
	z-index: 5; /* show this on layer 5 as well */
	background-position: left bottom; /* we show the right bottom part of the tabs image (the hover instance) */
}



<!---->
div.tabhide-gr {display:none; width:0; overflow:hidden;}
div.tabshow-gr {clear:left; background:#fff; width:100%; margin:0 0 15px 0px; top:-2px; position:relative; z-index:0; border:1px solid #e3e0cc; overflow:hidden;
padding:13px 0px 0px 0px;

-webkit-border-top-right-radius: 8px;
-moz-border-radius-topright: 8px;
-o-border-radius-topright: 8px;
border-top-right-radius: 8px;

background: rgb(255,255,255);

background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(237,237,237,1) 100%);

background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(237,237,237,1)));

background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%);

background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%);

background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%);

background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(237,237,237,1) 100%);

filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 );


}

