@charset "utf-8";
/* CSS Document */

html{
	height:100%;
}

body{
	width:100%;
	height:100%;
	margin:0;
	background: -moz-linear-gradient(top, #006497 0%, #000235 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#006497), color-stop(100%,#000235));
	background: -webkit-linear-gradient(top, #006497 0%,#000235 100%);
	background: -o-linear-gradient(top, #006497 0%,#000235 100%);
	background: -ms-linear-gradient(top, #006497 0%,#000235 100%);
	background: linear-gradient(top, #006497 0%,#000235 100%);
	font-family: 'Open Sans', sans-serif;
}

p {
	text-indent:1.5em;
	margin-top:0;
	margin-bottom:0;
}

#base{
	width:100%;
	min-width:800px;
	height:100%;
	min-height:500px;
	overflow:hidden;
	max-height:100%;
	margin:0;
	background:url(../images/logo.png);
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
}

#center{
	display:table;
	margin:0 auto;
	width:1000px;
}

#body{
	display:table;
	margin:0 auto;
}

#logo{
	display:table;
	padding:20px 60px;
	margin-top:130px;
	float:left;
	border-right:#09F solid thin;
}

#portfolio{
	float:left;
	display:table;
	padding:0 60px;
	margin-top:140px;
	color:#0C0;
	font-size:18px;
	text-shadow:2px 2px 2px #000;
}

#portfolio li{
	list-style:none;
	margin:5px;
}

#portfolio a{
	color:#0C0;
	text-decoration:none;
}

#portfolio a:hover{
	color:#FFF;
}

#menu{
	position:absolute;
	width:100%;
	display:table;
	background:#000;
	color:#FFF;
	bottom:100px;
}

#menu a{
	color:#FFF;
	text-decoration:none;
}

#menu a:hover{
	color:#CCC;
}

#menu ul{
	display:table;
	float:left;
	margin:0;
	padding:0;
}

#menu img{
	float:right;
	margin:5px 10px;
}

#menu li{
	list-style:none;
	float:left;
	margin:10px;
}

#conteudo{
	display:table;
	width:980px;
	min-height:350px;
	padding:20px;
	background:#000;
	border-radius:4px;
	box-shadow:1px 1px 8px #006;
	color:#CCC;
	font-size:14px;
	text-align:justify;
	line-height:14px;
	margin-top:20px;
}

#conteudo h1{
	font-size:18px;
	margin-bottom:10px;
	padding-bottom:0;
	line-height:10px;
}

#conteudo h2{
	font-size:16px;
	margin-bottom:10px;
	padding-bottom:0;
	line-height:10px;
}

#form, #dados{
	float:left;
	margin:50px;
}

#form input[type='text'], #form textarea{
	padding:5px;
	background:#666;
	border:#999 solid thin;
	border-radius:3px;
	color:#FFF;
	width:200px;
	max-width:200px;
	margin:5px 0;
}

#form textarea{
	height:50px;
	max-height:50px;
}

#form input[type='submit']{
	background:#666;
	color:#CCC;
	padding:3px 5px;
	border-radius:3px;
	float:right;
	margin-right:5px;
	border:none;
}

#form input[type='submit']:hover{
	background:#888;
	color:#EEE;
}