@font-face {
	font-family: "Futura Md BT";
	src: url("FUTURAM0.eot"); /* para IE */
	src: local("Futura Md BT"), url("FUTURAM0.ttf") format("truetype");
}

body{
	margin: 0px;
	background: #EEEEEE;
}

*{
	font-family: "Futura Md BT";
}

#menu{
	font-size: 18px;
	color: #EEEEEE;
	text-decoration: none;
}
#menu a{
	font-size: 18px;
	color: #EEEEEE;
	text-decoration: none;
	width: 100%;
	height: 100%;
	display: block;
	padding-top: 6px;
}

#buscar{
	text-align: center;
	height: 25px;
	width: 200px;
	font-size: 14px;
}

.exibir{
	cursor: pointer;
}
.editar{
	cursor: pointer;
}
.excluir{
	cursor: pointer;
}

.formulario{
	font-size: 14px;
	color: #555555;
}
.formulario td{
	border-bottom: 1px solid #ddd;
	padding-top: 5px;
	padding-bottom: 5px;
}

.lista td{
	border-bottom: 1px solid #ddd;
	font-size: 12px;
	color: #555555;
	padding: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.lista tr{
	min-height: 20px;
}
.lista tr:nth-child(even){
	background: #FAFAFA;
}

.lista th{
	border-bottom: 1px solid gray;
	font-size: 16px;
	font-weight: normal;
	color: #555555;
	cursor: pointer;
	padding: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.nada, .nada td{
	padding: 0;
	margin: 0;
	border: 0;
	color: initial;
	background: initial;
}

.pagina{
	cursor: pointer;
}

/* TABLESORTER */
table.lista thead tr .header {
	background-image: url(../img/setas_vertical.png);
	background-repeat: no-repeat;
	background-position: center right+5px;
	cursor: pointer;
}
table.lista thead tr .headerSortUp {
	background-image: url(../img/seta_baixo.gif);
}
table.lista thead tr .headerSortDown {
	background-image: url(../img/seta_cima.gif);
}


/* INPUTS */
input[type='button'], input[type='submit'], .btn{
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;

    color: #333;
    background-color: #fff;
    border-color: #ccc;
	
	padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
	
	outline: none;
	text-decoration: none;
}
input[type='button'].active, input[type='submit'].active, .btn.active{
	color: #333;
	background-color: #d4d4d4;
	border-color: #8c8c8c;
	box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}
input[type='button']:active:hover, input[type='submit']:active:hover, .btn:active:hover {
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c;
	box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}
input[type='button']:hover, input[type='submit']:hover, .btn:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}
input[type='button']:disabled, input[type='submit']:disabled, .btn:disabled{
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}
input[type='button'][disabled]:hover, input[type='submit'][disabled]:hover, .btn[disabled]:hover{
	background-color: #fff;
    border-color: #ccc;
}

input[type='text'], input[type='password'], select, textarea{
    border: 1px solid #aaa;
    border-radius: 2px;
	min-height: 25px;
}
input[type='text'], input[type='password']{
	padding-left: 5px;
}