html,body {
	margin: 0;
	padding: 0;
	font-family: Arial, Verdana, sans-serif, Helvetica;
	font-size: 12px;
	height: 100%;
}

#corpo {
	width: 100%;
	height: 100%;
	background-color: #091F4B;
}

#menu {
	width: 200px;
	padding: 10px;
	vertical-align: top;
	background-color: #fff;
	border-radius: 5px;
}

#conteudo {
	vertical-align: top;
	padding: 10px;
	background-color: #fff;
	border-radius: 5px;
	height: 100%;
}

#graficoVendaMes {
	width: 100%;
	height: 100%;
}

a {
	color: #3892D3;
	font-weight: bold;
	text-decoration: none;
}

ul {
	padding-left: 20px;
}

li {
	padding: 1px 0;
}

label {
	display: block;
	font-weight: bold;
}

input[type=text],
input[type=email],
input[type=number],
input[type=password],
textarea {
	border: 1px solid #ccc;
	border-radius: 5px;
	text-indent: 5px;
	font-size: 12px;
}

.fillSpace {
	width: 100%;
}

.alignLeft {
	float: left;
}

.alignRight {
	float: right;
}

#mensagemCorpo {
	width: 100%;
	position: absolute;
}

#mensagem {
	display: none;
	background-color: #F9EDBE;
	border: 1px solid #F0C36D;
	padding: 2px 5px;
	border-radius: 2px;
	box-shadow: 2px 2px 2px #888888;
	font-weight: bold;
	font-size: 12px;
}

.odd {
	background-color: #AED7F4;
}

.even {
	background-color: #D6EEFF;
}

.selected {
	background-color: #091F4B;
	color: #ffffff;
	font-weight: bold;
}

.marginTop10 {
	margin-top: 10px;
}