/* =============================================================================
   HTML5 Boilerplate CSS: h5bp.com/css
   ========================================================================== */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }

html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
html, button, input, select, textarea { font-family: sans-serif; color: #222; }
body { margin: 0; font-size: 1.2em; line-height: 1.8em; }

::-moz-selection { background: #fe57a1; color: #fff; text-shadow: none; }
::selection { background: #fe57a1; color: #fff; text-shadow: none; }

a { color: inherit; text-decoration: none; }
a:focus { outline: thin dotted; }
a:hover, a:active { outline: 0; }

abbr[title] { border-bottom: 1px dotted; }
b, strong { font-weight: bold; }
blockquote { margin: 1em 40px; }
dfn { font-style: italic; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
ins { background: #ff9; color: #000; text-decoration: none; }
mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
q { quotes: none; }
q:before, q:after { content: ""; content: none; }
small { font-size: 85%; }

sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }

img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }

svg:not(:root) { overflow: hidden; }

figure { margin: 0; }

form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
label { cursor: pointer; }
legend { border: 0; *margin-left: -7px; padding: 0; white-space: normal; }
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
button, input { line-height: normal; }
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }
button[disabled], input[disabled] { cursor: default; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; *width: 13px; *height: 13px; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
textarea { overflow: auto; vertical-align: top; resize: vertical; }
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }

table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }

.chromeframe { margin: 0.2em 0; background: #ccc; color: black; padding: 0.2em 0; }



/* ===== Primary Styles ========================================================
   Author:
   ========================================================================== */
   
.rel {
	position: relative;
	top: 0px;
	left: 0px;
}
.fl {
	float: left;
}
   
   
body {
	font-size: 62.5%;
}

header, footer, #main {
	max-width: 1200px;
	margin: auto;
}

#header-container {
	background-image: url(images/back-header.png);
	border-bottom: 5px solid rgb(20,20,20);
	box-shadow: 0 0 10px rgb(60,60,60);
}

header {
}

header nav a {
	color: white;
	text-align: center;
}

header nav  a div {
	padding: 2em 0;
	border: 1px solid rgb(20,20,20);
	border-bottom: none;
	border-right: 0px;
	font-size: 1.4em;
	box-shadow: rgba(255, 255, 255, 0.14) 1px 1px 1px 0px inset;
}
header nav a:last-child div {
	border-right: 1px solid rgb(20,20,20);
}
header nav a div:hover {
	box-shadow: rgba(0, 0, 0, 0.3) 0px 20px 50px 5px inset;
}

#logo-container {
	line-height: 16em;
	float: left;
}
#div_restrito-container {
	line-height: 6em;
	float: right;
	#position: absolute;
	#top: 50%;
	display: table-cell;
	vertical-align: middle;
}
#div_restrito {
	#position: relative; #top: -50%
}


.gallery {
	margin-top: 20px;
	border: 1px solid transparent;
	border-top: none;
	border: 30px solid rgb(40,40,40);
	margin-bottom: 2em;
}

.gallery > div {
	width: 100%;
}

.gallery > div > img {
	/*box-shadow: 0 0 5px rgb(60,60,60);*/
	width: 100%;
}


.more-button {
	background: rgb(235,235,235); /* para browsers sem suporte a CSS 3 */
	
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebebeb', endColorstr='#c8c8c8'); /* IE */
	background: -webkit-gradient(linear, left top, left bottom, from(rgb(235,235,235)), to(rgb(200,200,200))); /* webkit browsers */
	background: -moz-linear-gradient(top,  rgb(235,235,235),  rgb(200,200,200)); /* Firefox 3.6+ */
	
	border: 1px solid rgb(140,140,140);
	padding: 4px 20px;
	padding-top: 2px;
	width: 140px;
	
	position:relative;
	
	font: 18px/36px 'Segoe UI', Arial;
	color: rgb(50,50,50);
	
	cursor: pointer;
	
	transition: all .4s;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-o-transition: all .4s;
}


.more-button:hover {
	box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 1px inset;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 2px 1px inset;
	color: white;
	border-color: rgb(60,60,60);
	
	filter: none;
	background: rgb(20,20,20); /* para browsers sem suporte a CSS 3 */
}

.more-button img {
	display: inline;
	position: relative;
	top: -2px;
	padding-right: 10px;
}


/* FOOTER */
#footer-container {
	margin-top: 2em;
	background-image: url(images/back-header.png);
}

footer {
	height: 56px;
	padding-top: 35px;
	text-align: center;
	margin-top: 2px;
	
}

footer, footer a {
	color: rgb(240,240,240);
	font: 13px Arial;
}
footer a:hover {
	color: rgb(60,60,60);
}
/* FIM FOOTER */



/* input */
#div_restrito input[type=text], #div_restrito input[type=password], #div_restrito select {
	width: 10em;
	background: rgb(40,40,40);
}

input[type=text], input[type=password], textarea, select {
	background: rgb(60,60,60);
	color: rgb(240,240,240);
	border: 1px solid rgb(55,55,55);
	margin-right: 5px;
	box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 1px 0px inset;
	border-radius: 0.4em;
	font-size: 1.3em;
	padding: 0.7em;
	/*-webkit-transition: all .5s;
	transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;*/
}
	
input[type=text]:focus, input[type=password]:focus, textarea:focus {
	background: rgb(40,40,40);
	outline-style: none;
	outline-width: 0px;
}

/* button */
.button {
	color: white;
	font: 1.3em sans-serif;
	padding: 0.6em 2em;
	height: 35px;
	text-decoration: none;
	display: inline-block;
	cursor: default;
	background-color: #333;
	background: -moz-linear-gradient(bottom, #333, #444);
	background: -ms-linear-gradient(bottom, #333, #444);
	background: -o-linear-gradient(bottom, #333, #444);
	background: -webkit-linear-gradient(bottom, #333, #444);
	background: linear-gradient(bottom, #333, #444);
	border: solid 1px black;
	box-shadow: rgba(120, 120, 120, 0.4) 0px -1px 1px 1px inset;
	border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	margin: 0px;
	margin-right: 0px;
}
.button:hover {
	background-color: rgb(white);
	background-image: -webkit-linear-gradient(top, white, rgb(210,210,210));
	color: #ff6937;
	text-shadow: 0 0 1px rgba(255,255,255,.2);
}
.button:active {
	background: rgb(250,250,250);
	box-shadow: rgba(120, 120, 120, 0.4) -1px 1px 1px 1px inset;
}

/* placeholder */
.ie input{line-height: 35px;}
.ie input[type="email"]{color: #2F82C2;}
.ie input[type="password"]{color: #ED1C70;}
.ie label{right: 10px;}

.ie input[type="email"]:focus, .ie input[type="password"]:focus{
    background:transparent;
    -ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#80ffffff,endColorstr=#80ffffff)";
    zoom: 1;
}
.ie7 label, .ie6 label{display: none;}
/* placeholder */

/* =============================================================================
   Media Queries
   ========================================================================== */
/* 
@media only screen and (min-width: 35em) {
	Style adjustments for viewports that meet the condition
}
 */
/* =============================================================================
   Non-Semantic Helper Classes
   ========================================================================== */

.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; *line-height: 0; }
.ir br { display: none; }
.hidden { display: none !important; visibility: hidden; }
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
.invisible { visibility: hidden; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }

/* =============================================================================
   Print Styles
   ========================================================================== */
 
@media print {
  * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
  a, a:visited { text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* h5bp.com/t */
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}
