/* RESETS */

*, *:before, *:after{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;	
	-webkit-transition: 0.2s all ease-in-out;
	-moz-transition: 0.2s all ease-in-out;
	-ms-transition: 0.2s all ease-in-out;
	-o-transition: 0.2s all ease-in-out;
	transition: 0.2s all ease-in-out;
}

html, body, div, section, article, aside, nav, blockquote, figure, figcaption{
	margin: 0;
	padding: 0;
	display: block;
}

html, body{
	font-size: 16px;
	-webkit-font-smoothing: subpixel-antaliased;
	font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	-webkit-backface-visibility:hidden;
	-moz-osx-font-smoothing: grayscale;

}

body{
	font-family: 'TitilliumWeb-Regular', sans-serif;
	color: #616161;
	background-color: rgba(247, 247, 247, 0.8);
}

h1{
	font-size: 32px;
}

span{
	color: #fe7b26;
}

/* CLEARFIX */

.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
    *zoom: 1;
}

/* STYLES */

section.wrapper{
	position: relative;
	height: 100%;
	border-top: 1px solid #fe7b26;
	border-bottom: 3px solid #fe7b26;
	
}

section.container{
	width: 100%;
	position: relative;
	
}

section.container > div{
	width: 100%;
	position: relative;
	
	overflow: hidden;
	padding: 0;
}

header.header{
	width: 100%;
	position: relative;
	
	padding-bottom: 10px;	
}

header.header > div {
	width: 100%;
	position: relative;
	overflow: hidden;
	
	background-color: rgba(0,0,0,.03);
}

section.logo{
	position: relative;
}

section.logo a > section{
	overflow: hidden;
	position: relative;
	background-image: url('http://www.rgb.inf.br/indisponivel/imagens/rgb_logo.png');
	background-position: center 30px;
	background-repeat: no-repeat;
	background-size: content;
	padding: 40px 40px 80px 40px;
}

section.description{
	position: relative;
}

section.description > section{
	overflow: hidden;
	position: relative;
	width: 100%;
	text-align: center;
}

section.description section > h1{
	margin: 10px 0 0 0;
	letter-spacing: -1px;
	font-weight: normal;
}

section.description section > p {
	margin: 0;
}

section.contato {
	position: relative;
}

section.contato > section{
	overflow: hidden;
	position: relative;
	width: 100%;
	text-align: center;
	padding: 20px 0 40px 0;
}

section.contato section > div{
	position: relative;
	width: 50%;
	padding: 0 10px;
}

section.contato section div > p{
	margin: 0;
	padding: 0;
}

.left{
	float: left;
	text-align: right;
}

.right{
	float: right;
	text-align: left;
	border-left: 1px solid #ccc;
}

.box-shadow{ 
	background-image: url('http://www.rgb.inf.br/indisponivel/imagens/box-shadow.png');
	background-repeat: no-repeat;
	background-position: bottom center;
}

section.content{
	position: relative;
	margin-top: -10px;
	padding-top: 40px;
	
}

section.content > div {
	width: 100%;
	position: relative;
	overflow: hidden;
}

section.content-bg{
	position: relative;
	background-image: url('http://www.rgb.inf.br/indisponivel/imagens/content-bg.png');
	background-repeat: no-repeat;
	background-position: 270px center;
	background-size: 40%;
	overflow: hidden;
	padding-bottom: 50px;
}

div.lista{
	position: relative;
	float: right;
	text-align: left;
	font-size: 16px;
	text-transform: uppercase;
	width: 50%;
}

div.lista ul > li{
    color: #fe7b26;    
    list-style:disc;                
}
div.lista ul li > a {
    text-decoration: none;
    color:#333;
}

div.lista ul li > a:hover {
    color: #fe7b26;
}

div.content-title{
	position: relative;
	width: 100%;
	text-align: center;
	overflow: hidden;
}

div.content-title div > h1 {
	margin: 0;
	font-weight: normal;
	padding: 0;
}

div.title-line-left{
	left: 0;
	width: 64%;
	text-align: right;
}

div.title-line-left > h1{
	font-size: 20px;
	text-transform: uppercase;
}

div.title-line-right {
	width: 48.7%;
	float: right;
	text-align: left;
}

div.title-line-right > h1{
	font-size: 28px;
	text-transform: uppercase;
}

/* FONTS */

@font-face {
	font-family: 'TitilliumWeb-Regular';
	src: url('http://www.rgb.inf.br/indisponivel/fonts/TitilliumWeb-Regular.eot');
	src: url('http://www.rgb.inf.br/indisponivel/fonts/TitilliumWeb-Regular.eot?#iefix') format('embedded-opentype'),
	     url('http://www.rgb.inf.br/indisponivel/fonts/TitilliumWeb-Regular.woff') format('woff'),
	     url('http://www.rgb.inf.br/indisponivel/fonts/TitilliumWeb-Regular.ttf') format('truetype'),
	     url('http://www.rgb.inf.br/indisponivel/fonts/TitilliumWeb-Regular.svg#TitilliumWeb-Regular') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* VIEWPORT */

@viewport{
    zoom: 1.0;
    width: extend-to-zoom;
}

/*
* // ie fix
*/

@-ms-viewport{
    width: extend-to-zoom;
    zoom: 1.0;
}

/* MEDIA QUERIES */

@media screen and (max-width: 715px) {

	div.title-line-left, .title-line-right{
		width: 100% !important;
		float: none;
		text-align: center !important;
	}

	div.lista{
		width: 100% !important;
		float: none;
	}

	div.lista > ul{
		margin: 0;
		padding: 0;
		text-align: center;
		padding-top: 30px;
	}

	div.lista ul > li{
		width: 100%;
		display: block;
		padding: 5px 20px;
		background-color: rgba(255,255,254,.9);
		border-bottom: 3px solid rgba(0,0,0,.09);
	}

	div.lista ul > li:hover {
		background-color: rgba(247, 247, 247, 1);
	}

	div.lista ul > li:hover > a {
		color: #333 !important;
	}

	div.lista ul li > a{
		color: #fe7b26 !important;
	}

	section.content-bg{
		position: relative;
		background-image: url('http://www.rgb.inf.br/indisponivel/imagens/content-bg.png');
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 60%;
		overflow: hidden;
	}

}

@media screen  and (min-width: 715px) and (max-width : 1024px) {

	div.title-line-left, .title-line-right{
		width: 100% !important;
		float: none;
		text-align: center !important;
	}

	section.content-bg{
		background-position: left ;
	}
	
}

