/* ------------- BUTTONS ------------- */
/* DEFAULT */

.button {
	-moz-box-shadow:inset 0px 0px 5px 1px #ffffff;
	-webkit-box-shadow:inset 0px 0px 5px 1px #ffffff;
	box-shadow:inset 0px 0px 5px 1px #ffffff;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fdfdfd), color-stop(1, #dbdbdb));
	background:-moz-linear-gradient(top, #fdfdfd 5%, #dbdbdb 100%);
	background:-webkit-linear-gradient(top, #fdfdfd 5%, #dbdbdb 100%);
	background:-o-linear-gradient(top, #fdfdfd 5%, #dbdbdb 100%);
	background:-ms-linear-gradient(top, #fdfdfd 5%, #dbdbdb 100%);
	background:linear-gradient(to bottom, #fdfdfd 5%, #dbdbdb 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfd', endColorstr='#dbdbdb',GradientType=0);
	background-color:#fdfdfd;
	border-color:#d1d1d1;
	color:#777777;
	padding:3px 10px;
	cursor:pointer;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	border-style:solid;
	border-width:2px;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
}

.button :hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #dbdbdb), color-stop(1, #fdfdfd));
	background:-moz-linear-gradient(top, #dbdbdb 5%, #fdfdfd 100%);
	background:-webkit-linear-gradient(top, #dbdbdb 5%, #fdfdfd 100%);
	background:-o-linear-gradient(top, #dbdbdb 5%, #fdfdfd 100%);
	background:-ms-linear-gradient(top, #dbdbdb 5%, #fdfdfd 100%);
	background:linear-gradient(to bottom, #dbdbdb 5%, #fdfdfd 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dbdbdb', endColorstr='#fdfdfd',GradientType=0);
	background-color:#dbdbdb;
}


/* GREEN */
.green, .button   
{
	-moz-box-shadow:inset 0px 0px 5px 1px #caefab;
	-webkit-box-shadow:inset 0px 0px 5px 1px #caefab;
	box-shadow:inset 0px 0px 5px 1px #caefab;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #77d42a), color-stop(1, #5cb811));
	background:-moz-linear-gradient(top, #77d42a 5%, #5cb811 100%);
	background:-webkit-linear-gradient(top, #77d42a 5%, #5cb811 100%);
	background:-o-linear-gradient(top, #77d42a 5%, #5cb811 100%);
	background:-ms-linear-gradient(top, #77d42a 5%, #5cb811 100%);
	background:linear-gradient(to bottom, #77d42a 5%, #5cb811 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#77d42a', endColorstr='#5cb811',GradientType=0);
	background-color:#77d42a;
	border-color:#268a16;
	color:#ffffff;
	padding:3px 10px;
	cursor:pointer;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	border-style:solid;
	border-width:2px;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
}

.green:hover, .button:hover
{
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #5cb811), color-stop(1, #77d42a));
	background:-moz-linear-gradient(top, #5cb811 5%, #77d42a 100%);
	background:-webkit-linear-gradient(top, #5cb811 5%, #77d42a 100%);
	background:-o-linear-gradient(top, #5cb811 5%, #77d42a 100%);
	background:-ms-linear-gradient(top, #5cb811 5%, #77d42a 100%);
	background:linear-gradient(to bottom, #5cb811 5%, #77d42a 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#5cb811', endColorstr='#77d42a',GradientType=0);
	background-color:#5cb811;
}


/* RED */
.red, .buttonRed 
{
	-moz-box-shadow:inset 0px 0px 5px 1px #f29c93;
	-webkit-box-shadow:inset 0px 0px 5px 1px #f29c93;
	box-shadow:inset 0px 0px 5px 1px #f29c93;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #ce0100));
	background:-moz-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background:-webkit-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background:-o-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background:-ms-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background:linear-gradient(to bottom, #fe1a00 5%, #ce0100 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100',GradientType=0);
	background-color:#fe1a00;
	border-color:#d83526;
	color:#ffffff;
}
.red:hover, .buttonRed:hover 
{
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ce0100), color-stop(1, #fe1a00));
	background:-moz-linear-gradient(top, #ce0100 5%, #fe1a00 100%);
	background:-webkit-linear-gradient(top, #ce0100 5%, #fe1a00 100%);
	background:-o-linear-gradient(top, #ce0100 5%, #fe1a00 100%);
	background:-ms-linear-gradient(top, #ce0100 5%, #fe1a00 100%);
	background:linear-gradient(to bottom, #ce0100 5%, #fe1a00 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ce0100', endColorstr='#fe1a00',GradientType=0);
	background-color:#ce0100;
}

/* Yellow */
.yellow 
{
	-moz-box-shadow:inset 0px 0px 5px 1px #ccff66;
	-webkit-box-shadow:inset 0px 0px 5px 1px #ccff66;
	box-shadow:inset 0px 0px 5px 1px #ccff66;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ccff00), color-stop(1, #ccff99));
	background:-moz-linear-gradient(top, #ccff00 5%, #ccff99 100%);
	background:-webkit-linear-gradient(top, #ccff00 5%, #ccff99 100%);
	background:-o-linear-gradient(top, #ccff00 5%, #ccff99 100%);
	background:-ms-linear-gradient(top, #ccff00 5%, #ccff99 100%);
	background:linear-gradient(to bottom, #ccff00 5%, #ccff99 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ccff00', endColorstr='#ccff99',GradientType=0);
	background-color:#ccff00;
	border-color:#cccc00;
	color:#000000;
}
.yellow 
{
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ccff99), color-stop(1, #ccff00));
	background:-moz-linear-gradient(top, #ccff99 5%, #ccff00 100%);
	background:-webkit-linear-gradient(top, #ccff99 5%, #ccff00 100%);
	background:-o-linear-gradient(top, #ccff99 5%, #ccff00 100%);
	background:-ms-linear-gradient(top, #ccff99 5%, #ccff00 100%);
	background:linear-gradient(to bottom, #ccff99 5%, #ccff00 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ccff99', endColorstr='#ccff00',GradientType=0);
	background-color:#ccff99;
}

.formItem, .formSelect
{
	font-size:13px;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 15px;
	margin-right: 15px;
}


.border-line
{
	border:solid 3px #70870c;
	padding: 30px 50px;
	text-align:left;
	position:relative;
	margin-top:80px;
}

 .books-container .box a { position:absolute; bottom:10px; right:10px;}
 
 .alert-internal-box {
	border:solid 1px #FFA200;
	padding:20px;
	position:relative;
	background-color:#E9E9E9;
}

.alert-internal-box img:first-of-type
{
	position:absolute;
	left:-15px;
	top:-15px;
}

.alert-internal-box-sucesso {
	border:solid 1px green;
	padding:20px;
	position:relative;
	background-color:#E9E9E9;
}

.alert-internal-box-sucesso img:first-of-type
{
	position:absolute;
	left:-15px;
	top:-15px;
}

select {background-color: #ffffff;padding:4;}

.span-text-link { 
	cursor: pointer; color : #70870c;font-size:14px;font-weight:bold;font-family: "Arial" !important;
}

.span-text-link:hover { 
	text-decoration: underline;
}

.tiny { width:50px; }
.small, .smallTextInput2, .smallFreeTextInput { width:100px; }
input[type="text"].medium, input[type="password"].medium { width:220px; }
.largeTextInput2, .largeTextInput, .largeFreeTextInputSelectEnums { width:472px; }
select.small { width:112px; }
select.medium { width:232px; }
select.large { width:484px; }

.invalid-text-internal {text-align: justify; border:2px solid red; padding: 15px;}

.invalid-text-internal ul li {padding:0px; text-align: left;}
.radio[disabled='disabled'] {
	color: red;
    background-color: red;
}

.box-interno, .box-busca {
	border:solid 3px #70870c;
	border-radius: 10px;
	padding: 15px;
}

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
	margin: 0px 0px -10px 0px;
	margin-bottom: 25px;
}

table tr.alertRed { background-color : #EF533F; }
table tr.alertRed2 { background-color : #fc6; }


fieldset {
	border: 2px solid #B5D334;
	width:920px;
	color:#000000;
	font-size:12px;
	-moz-border-radius: 10px; 
	-webkit-border-radius: 10px; 
	border-radius:10px;
	background-color: #FFFFFF;
	padding: 10px;
}

select.multiple {
	clear: both;
	border: 1px solid #cccccc;
	height: 60px;
	margin-right: 10px;
	margin-bottom: 10px;
	font-family: arial, verdana;
	font-size: 16px;
	color: #3E4A45;
	font-weight: bold;
}

.buttonLink {
	-moz-box-shadow:inset 0px 0px 5px 1px #f29c93;
	-webkit-box-shadow:inset 0px 0px 5px 1px #f29c93;
	box-shadow:inset 0px 0px 5px 1px #f29c93;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fe1a00), color-stop(1, #ce0100));
	background:-moz-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background:-webkit-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background:-o-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background:-ms-linear-gradient(top, #fe1a00 5%, #ce0100 100%);
	background:linear-gradient(to bottom, #fe1a00 5%, #ce0100 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100',GradientType=0);
	background-color:#fe1a00;
	border-color:#d83526;
	color:#ffffff;
	padding:3px 10px;
	border-radius:5px;
	border-style:solid;
	border-width:2px;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
}

.menu_acoes {
	position:absolute; 
	border:0px solid #000000; 
	margin-left:0px; 
	background-color: #4f5e0b; 
	display:none; 
	margin-top:0px;
	margin-left: -145;
	text-align:left;
	padding:0px; width:200px;
}

.menu_acoes a {
	color: #FFFFFF;
	font-size: 13px;
}

.menu_acoes ul, .menu_acoes ul li {
	padding:0px;
	list-style: none;
}

.menu_acoes ul li {
	padding:8px;
	list-style: none;
}

.menu_acoes ul li:hover {
	background-color: #92A530;
}

.menu_acoes_ie {
	position:absolute; 
	border:0px solid #000000; 
	margin-left:0px; 
	background-color: #4f5e0b; 
	display:none; 
	text-align:left; 
	padding:8px;
	color: #FFFFFF;
}