/*Geral*/

* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
			padding:0px;
			margin:0px;
}

body, input, select, textarea, button {
    font-family: tahoma;
    font-size: 14px;
}

h1, h2, h3, h4, h5, pre {
    font-family: tahoma;
    margin: 10px 0px;
}

/*Pestanas*/ 

.block {
  width: 100%;
  margin: 10px;
}

.block label {
  float: left;
  padding: 10px 20px;
  border-radius: 10px 10px 0 0;
  border: 1px solid #fff;
  cursor: pointer;
  background: #f2f8fb;
  width: 160px;
  font-family: tahoma;
  font-size: 90%;
  text-transform: uppercase;
}

.block label.active {
  background:#000;
}

.block label:checked {
  background:#000;
}

.block input[type="radio"] {
  display: none;
}

.block .cont {
  display: none;
  width: 90%;
  position: absolute;
  top: 50px;
  background: #fff;
  padding: 10px;
  color: #666;
}
[type=radio]:checked ~ label ~ .cont {
  display: block;
}

/*Menu*/
 
#menu ul {
			padding:5px 10px;
			margin:5px 10px;
			float: left;
			width: 80%;
			background-color:#EDEDED;
			list-style:none;
			font-size: 120%;
            font-family: tahoma;
}
 
#menu ul li { display: inline; }
 
#menu ul li a {
			background-color:#EDEDED;
			color: #333;
			text-decoration: none;
			border-bottom:3px solid #EDEDED;
			padding: 2px 10px;
			float:left;
}
 
#menu ul li a:hover {
			background-color:#D6D6D6;
			color: #6D6D6D;
			border-bottom:3px solid #EA0000;
}

/*Formularios*/

.formulario {
    width: 60%;
    margin: 20px auto;
    padding: 30px;
    border: 1px solid #ccc;
    background: #fafafa;
    border-radius: 5px;
}
.formulario p{
    width: 80%;
    font-size: 1em;
}

.grupo:before, .grupo:after {
    content: " ";
    display: table;
}

.grupo:after {
    clear: both;
}

.campo, .campo2 {
    margin-bottom: 1em;
}

.campo label, .campo2 label {
    margin-bottom: 0.2em;
    color: #666;
    display: block;
    text-transform: uppercase;
}

.campo2 label {
    margin-bottom: 0.2em;
    font-size: 1.6em;
    color: #666;
    display: block;
}

/*fieldset.grupo .campo {
    float:  left;
    margin-right: 1em;
}*/

fieldset.grupo .campo {
    margin: 1em;
}

.campo input[type="text"],
.campo input[type="email"],
.campo input[type="url"],
.campo input[type="tel"],
.campo input[type="date"],
.campo select,
.campo textarea {
    padding: 0.2em;
    border: 1px solid #CCC;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    display: block;
    text-transform: uppercase;
}

.campo2 input[type="text"]{
    padding: 0.2em;
    border: 1px solid #CCC;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    display: block;
    width: 150px;
    text-align: center;
    font-weight: bold;
    color: #666;
}

.campo select option {
    padding-right: 1em;
    text-transform: uppercase;
}

.campo input:focus, .campo select:focus, .campo textarea:focus {
    background: #FFC;
}

.campo label.checkbox {
    color: #000;
    display: inline-block;
    margin-right: 1em;
    text-transform: uppercase;
}

.botao {
    font-size: 1.1em;
    background: #a8dae5;
    border: 0;
    margin-top: 1em;
    margin-bottom: 1em;
    color: #666;
    padding: 0.2em 0.6em;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    text-shadow: 0px 0px 0px rgba(0,0,0,0.5);
}

.botao:hover {
    background: #b7d5e5;
    box-shadow: inset 2px 2px 2px rgba(0,0,0,0.2);
    text-shadow: none;
    color: #666;
}

.botao, select, label.checkbox {
    cursor: pointer;
}

label {
	 display: inline;
	 width: 120px;
	 float: left;
}

.field{
    width: 100%;
    margin: 15px 0;
}

.field label, 
.field span{
	 position: left;
    padding-left: 10px;
    font-size: .8em;
    display: block;
    width: 80%;
}
.radiobox label{
    width: auto;
    display: inline-block;
}

input[type=text],
input[type=email],
textarea{
	 display: inline;
    width: 80%;
    padding-left: 10px;
    height: 30px;
    line-height: 30px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
}
input#nao{
    margin-left: 30px;
}

input[type=submit]{
    display: block;
    float: right;
    background-color: #fff;
    height: 35px;
    border: 1px solid #ccc;
    outline: 0;
    cursor: pointer;
    width: 100px;
    margin: 40px auto;
    text-align: center;
    border-radius: 15px;
}

.box {
float: left;
width: 50%;
}