/* ------------- 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 #FBC81F;
	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;
	cursor:pointer;
}

#main-menu {
	z-index:1000;
}

.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;
	z-index: 998;
}

.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;
	z-index:998;
}

#header {
	z-index: 999;
	position:relative;
}

#adm-header #logo {
	z-index:998
}

#menus {
	margin-left: 50px;
	text-align:left;
	background-color: #cc9933;
	/*background: #eee;*/
	/*margin-top: -20px; menu para unificada*/
	position: absolute; /* adicionar para o IE */ *
	position: none; /* adicionar para o IE */
	z-index:997;
}

#menus ul {
	list-style: none;
	margin: 0;
	padding: 0;
	float: left;
}

#menus ul li {	
	color: #ffffff;
	width: 250px;
	background-color: #cc9933;
	padding-top:5px;
	padding-bottom:5px;
}

#menus ul li ul {
	margin-top:5px;
}

#menus ul li ul li {
	padding-top: 10px;
	width: 230px;
	padding-bottom: 12px;
	padding-left: 15px;
}

#menus a,#menus h2,#menus h2 a,#menus h2 a:hover {
	font: bold 14px verdana, helvetica, sans-serif;
	display: block;
	margin: 0;
	padding: 2px 3px;
}

#menus h2,#menus h2 a,#menus h2 a:hover {
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
}

#menus h2 a,#menus h2 a:hover {
	border: 0px;
}

#menus a {
	color: #ffffff;	
	text-decoration: none;
	font-size : 16px;
}

#menus ul li ul li:hover, #menus ul li ul li ul li:hover {	
	background-color: #744d00;
}

#menus ul li ul li, #menus ul li ul li ul li {	
	background-color: #996600;
}

#menus a:hover {
	text-decoration: none;
}

#menus a:hover {
}

#menus ul ul {
	position: absolute;
	z-index: 1;
	left: 0px;
}

#menus ul ul ul {
	position: absolute; /* mudar para o IE */
	width: 250px;
	left: 100%;
	margin-top:-28px;
}

div#menus ul ul,div#menus ul li:hover ul ul,div#menus ul ul li:hover ul ul {
	display: none;
}

div#menus ul li:hover ul,div#menus ul ul li:hover ul,div#menus ul ul ul li:hover ul
	{
	display: block;
}

[if IE]> <style type ="text/css" media ="screen">#menus ul li {
	float: left;
	width: 100%;
}

</
style> <![endif]
[if lt IE 7]> <style type ="text/css" media ="screen">body {
	behavior: url();
	font-size: 100%;
}

#menus ul li a {
	height: 1%;
}

#menus a,#menus h2 {
	/*font: bold 14 verdana, helvetica, sans-serif;*/
	font-family: "Arial" !important; 
	font-size: 12px;
	font-weight: 700;
}

#menus ul li a:hover ul li a:hover ul.left {
	left: -70px;
}
div#menus ul ul,div#menus ul li:hover ul ul,div#menus ul ul li:hover ul ul
	{
	display: none;
}

div#menus ul li:hover ul,div#menus ul ul li:hover ul,div#menus ul ul ul li:hover ul
	{
	display: block;
}

@-webkit-keyframes movimento-diagonal {
   from {
      left: -30px;
   }
   
   to {
      left: 100px;
   }
}

#anim {
   -webkit-animation-name: movimento-diagonal;
   -webkit-animation-duration: 3s;
   -webkit-animation-iteration-count: infinite;
   -webkit-animation-direction: alternate;/*para que volte a sua posicao inicial */
   width: 850px;
   color: red;
   position: relative; 
   padding: 2px;
   font-size: 17px;
   border: 2px solid #B5D334;
   border: 2px solid #B5D334;
   -moz-border-radius: 10px; 
   -webkit-border-radius: 10px; 
   border-radius:10px;
   background-color: #FFFFFF;
   padding: 10px;
}

.smallTextInput {
	border: 1px solid #cccccc;
	height: 29px;
	width: 155px;
	margin-right: 10px;
	margin-bottom: 10px;
	font-size: 16px;
	color: #3E4A45;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.8);
	padding-left: 5px;
	display: block;
	float: left;
}

/**Desenvolvido para o dialog de ajuda**/
.ajuda ol, .ajuda p {
	
	color: #000;
	line-height: 1.5;
	font-size: 16px;
	margin-bottom: 10px;
	text-indent: 25px;
	text-align: justify;	
	font-family: 'Open Sans Condensed', sans-serif;
	padding: 10px;
}


.ajuda ol {

	padding: 20px;
	margin-left: 27px;	
}

.ajuda li {

	padding: 0px;
	margin-left: 5px;	
	text-align: justify;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 14px; *
}

#menu { z-index: 1000000; }


