
/* ubutton estilo YOOTheme */

div.ubuttons_yoo {
	overflow: hidden;
	display: block;
}

div.ubuttons_yoo button.ubutton_unit, div.ubuttons_yoo img.ubuttons_image {
	padding: 0;
	margin: 0;
}

div.ubuttons_yoo h2.ubuttons_title {
	margin: 0px 0px 8px 0px;
}
div.ubuttons_yoo span.ubutton_extra {}
div.ubuttons_yoo button.ubutton_unit {
	display: inline-block;
	margin: 0px 20px 20px 0px;
	border: 1px solid #CCC;

	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;

	border-top-left-radius: 6px 6px;
	border-top-right-radius: 6px 6px;
	border-bottom-right-radius: 6px 6px;
	border-bottom-left-radius: 6px 6px;

	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: black;

}

div.ubuttons_yoo span.ubutton_button_inside {
	display: inline-block;
	width: 120px;
	padding: 8px 0px 10px 0px;
	text-align: center;

	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	background: whiteSmoke;
	background: -moz-radial-gradient(50% 30%, white 40%, #EBEBEB);
	background: -webkit-gradient(radial, 50% 30%, 0, 50% 30%, 100, from(white), to(#EBEBEB), color-stop(40%, white));

	background: -o-radial-gradient(center, ellipse cover, #ebebeb 0%,#ffffff 86%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #ebebeb 0%,#ffffff 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #ebebeb 0%,#ffffff 100%); /* W3C */

	border-top: 1px solid white;
	border-top-left-radius: 6px 6px;
	border-top-right-radius: 6px 6px;
	border-bottom-right-radius: 6px 6px;
	border-bottom-left-radius: 6px 6px;
}

div.ubuttons_yoo img.ubuttons_image {
	display: block;
	margin: auto;
	margin-bottom: 5px;
	width: 64px;
	height: 64px;
	border: 0 none;
	padding: 0;
	text-align: center;
	vertical-align:middle;
}

/*
div.ubuttons_yoo div:link {
	color: #0B55C4;
	text-decoration: none;
}
*/
div.ubuttons_yoo button.ubutton_unit:hover {
	text-decoration: none;
	border: 1px solid #bebebe;
}
div.ubuttons_yoo button.ubutton_unit:hover span.ubutton_button_inside {
	background: #ffffff;
	background: -moz-radial-gradient(50% 30%, #ebebeb 40%, #fafafa);
	background: -webkit-gradient(radial, 50% 30%, 0, 50% 30%, 100, from(#ebebeb), to(#fafafa), color-stop(40%, #ebebeb));

	background: -o-radial-gradient(center, ellipse cover, #ebebeb 0%,#fafafa 100%);
	background: -ms-radial-gradient(center, ellipse cover,  #ebebeb 0%,#fafafa 100%); /* IE10+ */
	background: radial-gradient(center, ellipse cover,  #ebebeb 0%,#fafafa 100%); /* W3C */


	color: #0B55C4;
}

div.ubuttons_yoo div:active {
	text-decoration: none;
	border: 1px solid #bebebe;
}
div.ubuttons_yoo button.ubutton_unit:active span.ubutton_button_inside {
	background: #e0e0e0;
	background: -moz-radial-gradient(50% 30%, #dadada 40%, #e0e0e0);
	background: -webkit-gradient(radial, 50% 30%, 0, 50% 30%, 100, from(#dadada), to(#e0e0e0), color-stop(40%, #dadada));
	color: #000000;
}

/* icone via CSS */
div.ubuttons_yoo span.ubutton_icon {
	width: 120px;
	height: 64px;
	display: block;
	margin-bottom: 5px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	text-align: center;
	vertical-align: middle;
}

/* label do botao */
div.ubuttons_yoo span.ubutton_label {
	color: #323232;
	text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.7);
	text-align:center;
}



/* botao desativado */
div.ubuttons_yoo button.ubutton_unit.ubutton_disabled {
	border: 1px solid #aaa;
	cursor:default;
}
div.ubuttons_yoo button.ubutton_unit.ubutton_disabled span.ubutton_button_inside {
	background: #EEEEEF;
}
div.ubuttons_yoo button.ubutton_unit.ubutton_disabled span.ubutton_label {
	color: #aaa;
}
div.ubuttons_yoo button.ubutton_unit.ubutton_disabled span.ubutton_icon {
	opacity:0.4;
	-moz-opacity: 0.4;
	filter: alpha(opacity=40);
}