/*
	Paleta:
	@texto: 
	@texto2: 
	@background: 
*/
* {
	margin: 0;
	padding: 0;
}

html,body {
	background: #000 url(../img/bg.png) repeat;
	color: #312E30;
	font-family: Helvetica;
}

a {
	text-decoration: none;
	color: inherit;
}
img {
	border:0;
}

h1 {
	font-size: xx-large;
	font-family: 'Helvetica Neue', Helvetica;
	color: #ddd;
	text-align: center;
	letter-spacing: 0;
	float: right;
	width: 600px;
	margin-top: 30px;
}
h2 {
	font-size: large;

}

.wrapper {
	width: 900px;
	margin: 0 auto;
}

#header {
	padding: 15px;
}

ul.menu {
	width: 100%;
	font-size: larger;
}
ul.menu li {
	float: left;
	list-style: none;
}
ul.menu li a {
	display: block;
	padding: 10px;
	background-color: #FFFFFE;
	-webkit-transition-property: background-color, color;
	-webkit-transition-duration: 0.2s, 0.1s;
}
ul.menu li a:hover {
	color: #fff;
	background-color: #65A9F7;
}
ul.menu li a.selected, ul.menu li a:active {
	color: #fff;
	background-color: #2E87FF;
}

#content {
	font-size: small;
	font-family: Helvetica;
	border-top: 1px solid #E4E4E4;
	background-color: #fff;
	padding: 15px;
	clear: both;
}

#content a {
	color: #65A9F7;
}

div#message {
	font-weight: bold;
	width: 90%;
	margin: 0 auto;
	text-align: center;
	padding: 10px 0;
	border: 1px solid #8C8C8C;
	background-color: #E8E8E8;
}
div#message.info {
	border: 1px solid #2E87FF;
	color: #2E87FF;
	background-color: #C0E1FF;
}
div#message.error {
	border: 1px solid #BD4644;
	color: #BD4644;
	background-color: #FFE6E6;
}

/* Tabelas de listagem  */
table.listing {
	width: 90%;
	margin: 0 auto;
	border: 1px solid #999;
}
table.listing.wide {
	width: 100%;
}
table.listing tr td, table.listing tr th {
	padding: 5px;
}
table.listing tr td.acoes{
	padding: 0;
	text-align: center;
}
table.listing tr {
	background-color: #E7EEF5;
	-webkit-transition-property: background-color;
	-webkit-transition-timing-function: ease-out;
	-webkit-transition-duration: 0.4s;
}
table.listing tr.even {
	background-color: #D6E5EC;
}
table.listing tr:hover, table.listing tr.destaque {
	background-color: #BBD2F4;
/*	-webkit-transition-duration: 0.7s;*/
}

a.confirmacao {
	color: #373737;
	background-color: #C3C3C3;
	padding: 4px 6px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}
a.confirmacao:hover {
	background-color: #373737;
	color: #C3C3C3;
}

/* Tabelas de formulários */
form table {
	margin: 10px auto;
}
form table td {
	padding: 5px;
}
form table th {
	text-align: left;
}

span.asterisk {
	color: red;
	font-weight: bold;
}

.bigbutton {
	width: 150px;
}
.bigbutton a {
	display: block;
	background-color: #CDC6C6;
	color: #3E3E3E;
	padding: 13px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.bigbutton a:hover {
	background-color: #D5CED0;
}


/* Links da navegação */
div#nav a {
	background-color: #4F9FFF;
	color: #fff;
	padding: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition-property: opacity;
	-webkit-transition-duration: 0.5s;
}
div#nav a:hover, div#nav a.selected {
	opacity: .8;
	-moz-opacity: .8;
}
div#nav a img {
	display: none;
}
div#nav a.destaque {
	background-color: #98B757;
}
div#nav a.destaque2 {
	background-color: #F3A036;
}

div.close-button {
	position: relative;
}
.close-button a {
	position: absolute;
	top: -8px;
	right: -8px;
}

