﻿/*Botão Branco (Início)*/
a.round_button_white{
	background: url('../img/btnLightGrey_Esq.png') no-repeat left top;
	display: block;
	float: left;
	/* Change 13px as desired */
	line-height: 19px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 24px) */
	height: 27px; /* Height of button background height */
	padding-left: 7px; /* Width of left menu image */
	text-decoration: none;
	margin-right:2px;
	margin-left:1px;
	font-style: normal;
	font-variant: normal;
	font-weight: bold;
	font-size: 13px;
	font-family: arial;
}

a:link.round_button_white, a:visited.round_button_white, a:active.round_button_white{
color: #000; /*button text color*/
}

a.round_button_white span{
background: transparent url('../img/btnLightGrey_Dir.png') no-repeat top right;
display: block;
padding: 4px 7px 4px 0; /*Set 11px below to match value of 'padding-left' value above*/
}

a.round_button_white:hover{ /* Hover state CSS */
background-position: bottom left; text-decoration:none;
}

a.round_button_white:hover span{ /* Hover state CSS */
background-position: bottom right;
color: #000;
}
/*Botão Branco (Fim) */

.buttonwrapper{ /* Container you can use to surround a CSS button to clear float */
overflow: hidden; /*See: http://www.quirksmode.org/css/clearing.html */
width: 100%;
}


/*Botão Portal */

.myButtonPortal {
	-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9) );
	background:-moz-linear-gradient( center top, #f9f9f9 5%, #e9e9e9 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
	background-color:#f9f9f9;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	border:1px solid #dcdcdc;
	display:inline-block;
	color:#666666;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:4px 16px;
	text-decoration:none;
	text-shadow:1px 1px 0px #ffffff;
}.myButtonPortal:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9) );
	background:-moz-linear-gradient( center top, #e9e9e9 5%, #f9f9f9 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9');
	background-color:#e9e9e9;
}.myButtonPortal:active {
	position:relative;
	top:1px;
}