
body {
	background: url(https://massabor.com.br/bg.jpg) repeat-x;
	color: #737373;
	font-family: "Arial", Verdana, sans-serif;
	font-size: 16px;
}

a, a:visited {
	color: #0066cc;
	text-decoration: none;
}

a img {
	border: none;
}

span.subtext {
	color: #949494;
	display: block;
	font-style: italic;
	font-size: 10px;
	margin: 0 0 10px;
}

.good {
	color: #FF0000;
}

.bad {
	color: #FF0000;
}

p, input, label {
	margin: 0 0 10px;
	display: block;
}

input, .button, textarea {
	background: #fff url(images/form_bg.jpg) repeat-x;
	border: 1px solid #bdbdbd;
	color: #282828;
	display: block;
	font-size: 16px;
	padding: 10px;
}

textarea {
	height: 150px;
	width: 85%;
}

.button {
	color: #0066cc !important;
	display: inline-block;
	font-size: 14px !important;
	margin-top: 15px;
	padding: 10px;
}

.download {
	font-size: 13px !important;
}

input.submit {
	display: inline;
}

input.block {
	display: block !important;
}

input.medium {
	display: inline !important;
	width: 90%;
}

input.hidden {
	display: none;
}

.right_button {
	float: right;
}

fieldset {
	border: none;
	margin: 10px 0 0;
	padding: 0px;
}

ol, ul {
	margin: 0px;
	padding-left: 20px;
}

ul {
	list-style: none;
	padding-left: 0px;
}

.filePreview {
	max-width: 800px;
}

.clear {
	clear: both;
}

/* Layout */
#wrap {
	background: #f3f3f3;
	-moz-box-shadow: 0 1px 2px #000;
	-moz-border-radius: 10px;
	margin: 50px auto;
	padding: 25px;
	width: 800px;
	-webkit-border-radius: 10px;
	-webkit-box-shadow: 0 1px 2px #000;
}

#wrap h1 {
	color: #282828;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 38px;
	font-weight: 100;
	margin: 0 0 10px;
}

#wrap h2 {
	color: #282828;
}

#menu {
	background: #d9d9d9 url(images/tablebg.jpg) repeat-x;
	border: 1px solid #9e9e9e;
	margin-bottom: 10px;
	padding: 5px;
	text-shadow: 0 1px 0 #fff;
}

#menu p {
	margin-bottom: 0px;
}

#menu .right {
	float: right;
}

#menu .left {
	float: left;
}

#left-col {
	float: left;
	width: 500px;
}

#right-col {
	float: right;
	width: 280px;
}

.right-box {
	background: #d4d2d3 url(images/tablebg.jpg) repeat-x;
	border: 1px solid #9e9e9e;
	margin-bottom: 10px;
	padding: 10px;
}

.right-box h2 {
	color: #282828;
	font-weight: lighter;
	margin-top: 0px;
	margin-bottom: 5px;
}

#fileTable {
	border: 1px solid #9e9e9e;
}

#fileTable a {
	color: #737373;
}

.fileRow {
	background: #fff url(images/form_bg.jpg) repeat-x;
	border-bottom: 1px solid #e5e5e5;
	padding: 10px;
}

.fileRow:hover {
	background: #ececec;
	text-shadow: 0 1px 0 #fff;
}

.fileRow img,
.button img {
	margin-right: 5px;
}

.admin {
	font-style: italic;
	font-weight: bold;
}

.margin {
	margin-bottom: 10px;
}

/* Tables */
table {
	border-collapse: separate;
	border-spacing: 0;
}

tr.table_header {
	color: #656565;
	text-shadow: 0 1px 0 #fff;
	text-align: left;
}

tr.table_header th {
	background: #d9d9d9 url(images/tablebg.jpg) repeat-x;
	border-top: 1px solid #9e9e9e;
	border-bottom: 1px solid #9e9e9e;
}

th.left {
	border-left: 1px solid #9e9e9e;
}

th.right {
	border-right: 1px solid #9e9e9e;
}

tr:hover {
	background: #e1e1e1;
}

th,
td {
	padding: 10px; /* Aumentei o padding para um visual mais espaçado */
}

td.td2 {
	padding-left: 0px;
}

/* Used for Validation */
span.LV_validation_message {
	display: inline;
	font-weight: bold;
	margin: 0 0 0 5px;
	color: #ff0000;
}

.LV_valid {
	color: #ff0000;
}

.LV_invalid {
	color: #CC0000;
}




/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: DodgerBlue;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}