@charset 'UTF-8';
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,900);
@font-face{font-family:'FontAwesome';src:url('font/fontawesome-webfont.eot?v=4.0.1');src:url('font/fontawesome-webfont.eot?#iefix&v=4.0.1') format('embedded-opentype'),url('font/fontawesome-webfont.woff?v=4.0.1') format('woff'),url('font/fontawesome-webfont.ttf?v=4.0.1') format('truetype'),url('font/fontawesome-webfont.svg?v=4.0.1#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}

/*********************************************************************************/
/* Basic                                                                         */
/*********************************************************************************/

	body {
		background: #fff;
	}

		body.loading {
		}
		
			body.loading * {
				-moz-transition: none !important;
				-webkit-transition: none !important;
				-o-transition: none !important;
				-ms-transition: none !important;
				transition: none !important;
			}

	body,input,textarea,select {
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 300;
		font-size: 18pt;
		line-height: 1.75em;
		color: #39454b;
		letter-spacing: 0.5px;
	}

	h1,h2,h3,h4,h5,h6 {
		font-weight: 900;
		color: inherit;
	}
	
		h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
			color: inherit;
			text-decoration: none;
		}
		
	h2 {
		font-size: 2.25em;
		letter-spacing: -2px;
		line-height: 1.25em;
	}
		
	strong, b {
		font-weight: 900;
		color: inherit;
	}
	
	em, i {
		font-style: italic;
	}

	a {
		color: #98c593;

		-moz-transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
		-webkit-transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
		transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
	}

	sub {
		position: relative;
		top: 0.5em;
		font-size: 0.8em;
	}
	
	sup {
		position: relative;
		top: -0.5em;
		font-size: 0.8em;
	}
	
	hr {
		border: 0;
		border-top: solid 1px #ddd;
	}
	
	blockquote {
		border-left: solid 0.5em #ddd;
		padding: 1em 0 1em 2em;
		font-style: italic;
	}
	
	p, ul, ol, dl, table {
		margin-bottom: 1em;
	}

	header {
		margin-bottom: 1em;
	}
	
		header p {
			display: block;
			margin: 1em 0 0 0;
			padding: 0 0 0.5em 0;
		}
		
	footer {
		margin-top: 2em;
	}

	br.clear {
		clear: both;
	}
	
	.dropShadow {
		text-shadow: 0.025em 0.025em #000;
	}

	/* Sections/Articles */
	
		section,
		article {
			margin-bottom: 3em;
		}
		
		section > :last-child,
		article > :last-child {
			margin-bottom: 0;
		}

		section > .content > :last-child,
		article > .content > :last-child {
			margin-bottom: 0;
		}

		section:last-child,
		article:last-child {
			margin-bottom: 0;
		}

		.row > section,
		.row > article {
			margin-bottom: 0;
		}

	/* Images */

		.image {
			position: relative;
			display: inline-block;
		}
		
			.image:before {
				content: '';
				position: absolute;
				left: 0;
				top: 0;
				width: 100%;
				height: 100%;
				background: url('images/overlay.png');
			}
		
			.image img {
				display: block;
				width: 100%;
			}

			.image.featured {
				display: block;
				width: 100%;
				margin: 0 0 2em 0;
			}
			
			.image.full {
				display: block;
				width: 100%;
			}
			
			.image.left {
				float: left;
				margin: 0 2em 2em 0;
			}
			
			.image.centered {
				display: block;
				margin: 0 0 2em 0;
			}

				.image.centered img {
					margin: 0 auto;
					width: auto;
				}

	/* Lists */

		ul.default {
			list-style: disc;
			padding-left: 1em;
		}
		
			ul.default li {
				padding-left: 0.5em;
			}		

		ul.icons {
			cursor: default;
		}	
		
			ul.icons li {
				display: inline-block;
			}
			
				ul.icons a {
					display: inline-block;
					width: 2em;
					height: 2em;
					line-height: 2em;
					text-align: center;
					border: 0;
				}

		ul.menu {
			cursor: default;
		}
		
			ul.menu li {
				display: inline-block;
				line-height: 1em;
				border-left: solid 1px rgba(145,146,147,0.25);
				padding: 0 0 0 0.5em;
				margin: 0 0 0 0.5em;
			}
			
			ul.menu li:first-child {
				border-left: 0;
				padding-left: 0;
				margin-left: 0;
			}

		ul.actions {
			cursor: default;
		}
		
			ul.actions li {
				display: inline-block;
				margin: 0 0 0 0.5em;
			}
			
			ul.actions li:first-child {
				margin-left: 0;
			}

		ol.default {
			list-style: decimal;
			padding-left: 1.25em;
		}

			ol.default li {
				padding-left: 0.25em;
			}

	/* Forms */

		form {
		}
		
			form label {
				display: block;
			}
		
			form input[type="text"],
			form input[type="password"],
			form select,
			form textarea {
				display: block;
				width: 100%;
				padding: 0.75em;
				background: none;
				border: solid 2px rgba(185,186,187,0.25);
				color: inherit;
				border-radius: 0.5em;
				outline: none;

				-moz-appearance: none;
				-webkit-appearance: none;
				-o-appearance: none;
				-ms-appearance: none;
				appearance: none;

				-moz-transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
				-webkit-transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
				-o-transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
				-ms-transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
				transition: all 0.2s ease-in-out, color 0.2s ease-in-out;
			}

				form input[type="text"]:hover,
				form input[type="password"]:hover,
				form select:hover,
				form textarea:hover {
				}

				form input[type="text"]:focus,
				form input[type="password"]:focus,
				form select:focus,
				form textarea:focus {
					border-color: #9ac8e9;
				}

			form input[type="text"],
			form input[type="password"],
			form select {
				line-height: 1em;
			}
				
			form textarea {
				min-height: 8em;
			}

			form .formerize-placeholder {
				color: rgba(145,146,147,0.85) !important;
			}

			form ::-webkit-input-placeholder {
				color: rgba(145,146,147,0.85) !important;
			}

			form :-moz-placeholder {
				color: rgba(145,146,147,0.85) !important;
			}

			form ::-moz-placeholder {
				color: rgba(145,146,147,0.85) !important;
			}

			form :-ms-input-placeholder {
				color: rgba(145,146,147,0.85) !important;
			}

			form ::-moz-focus-inner {
				border: 0;
			}
			
	/* Tables */
	
		table {
			width: 100%;
		}
		
			table.default {
				width: 100%;
			}
			
				table.default tbody tr:nth-child(2n+2) {
					background: #f4f4f4;
				}
				
				table.default td {
					padding: 0.5em 1em 0.5em 1em;
				}
				
				table.default th {
					text-align: left;
					font-weight: 900;
					padding: 0.5em 1em 0.5em 1em;
				}
			
				table.default thead {
					background: #444;
					color: #fff;
				}
				
				table.default tfoot {
					background: #eee;
				}
				
				table.default tbody {
				}

	/* Buttons */
		
		.button {
			background-color: #98c593;
			border: 0;
			border-radius: 3.5em;
			color: #fff;
			cursor: pointer;
			display: inline-block;
			height: 3.5em;
			line-height: 3.5em;
			outline: 0;
			padding: 0 2em 0 2em;
			position: relative;
			text-align: center;
			text-decoration: none;

			-moz-appearance: none;
			-webkit-appearance: none;
			-o-appearance: none;
			-ms-appearance: none;
			appearance: none;

			-moz-transition: all 0.2s ease-in-out;
			-webkit-transition: all 0.2s ease-in-out;
			-o-transition: all 0.2s ease-in-out;
			-ms-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
		}

			.button.down {
				width: 5em;
				height: 5em;
				line-height: 4.5em;
				padding: 0;
				background-image: url('images/dark-arrow.svg');
				background-position: center center;
				background-repeat: no-repeat;
				text-indent: -10em;
				overflow: hidden;
			}
			
				.button.down.anchored {
					bottom: 0;
					border-bottom: 0;
					border-radius: 3em 3em 0 0;
					height: 4.5em;
					margin-left: 9em;
				}
				
				.button.down.anchoredFinal {
					bottom: 0;
					border-bottom: 0;
					border-radius: 3em 3em 0 0;
					height: 4.5em;
					margin-left: 0em;
				}
			
			.button.anchored {
				position: absolute;
				left: 50%;
			}
			
			.button:hover {
				background-color: #a8d5a3;
			}
			
			.button:active {
				background-color: #88b583;
			}

			.button.style2 {
				background-color: transparent;
				border: solid 2px #e5e6e7;
				color: inherit;
			}

				.button.style2:hover {
					background-color: rgba(145,146,147,0.035);
				}
				
				.button.style2.down {
					background-image: url('images/arrow.svg');
				}
				
		.buttonAvancarArrow{
			display:block;
			width:40px;
			height:40px;
			background-image:url(images/arrowAvancar.png);
		}
		
		#shareFacebook{
			display:block;
			width:120px;
			height:26px;
			background-image:url(images/shareFacebook.png);
			float:left;
			margin-right:9px;
		}
		
		#shareTwitter{
			display:block;
			width:120px;
			height:26px;
			background-image:url(images/shareTwitter.png);
			float:left;
			margin-bottom:10px;
		}

	/* Box */

		.box {
			background-image:url(images/boxBg.png);
			color: #fff;
			padding: 2em;
		}
		
			.box.style2 {
				padding: 0em 2.5em 1em 2.5em;
			}
			
		.tag {
			text-align:right;
			color: #fff;
			padding-top:1em;
			
		}
		
		a.butAvancar:link {
			text-align:right;
			color: #000;
			
		}

	/* Main */
		
		.main {
			position: relative;
			margin: 0;
			overflow-x: hidden;
		}
		
			.main.style1 {
				text-align: center;
				padding: 10em 0 10em 0;
			}
			
				.main.style1 h2 {
					font-size: 4.25em;
					line-height: 1em;
					letter-spacing: -4px;
				}
				
				.main.style1 .content {
					opacity: 1.0;

					-moz-transition: all 1s ease;
					-webkit-transition: all 1s ease;
					-o-transition: all 1s ease;
					-ms-transition: all 1s ease;
					transition: all 1s ease;
					
					-moz-transform: translateZ(0);
					-webkit-transform: translateZ(0);
					-o-transform: translateZ(0);
					-ms-transform: translateZ(0);
					transform: translateZ(0);
				}
				
			.main.style1.inactive {
			}
			
				.main.style1.inactive .content {
					opacity: 0;
				}
		
			.main.style2 {
				padding: 10em 0 10em 0;
				overflow: hidden;
			}
			
				.main.style2 .content {
					position: relative;
					width: 35%;

					-moz-transition: all 1s ease;
					-webkit-transition: all 1s ease;
					-o-transition: all 1s ease;
					-ms-transition: all 1s ease;
					transition: all 1s ease;
					
					-moz-transform: translateZ(0);
					-webkit-transform: translateZ(0);
					-o-transform: translateZ(0);
					-ms-transform: translateZ(0);
					transform: translateZ(0);
				}
			
				.main.style2.left {
				}

					.main.style2.left .content {
						left: 0;
					}

				.main.style2.right {
				}

					.main.style2.right .content {
						left: 85%;
					}

				.main.style2.inactive {
				}

					.main.style2.inactive .content {
					}

						.main.style2.inactive.left .content {
							left: -35%;
						}

						.main.style2.inactive.right .content {
							left: 100%;
						}
						
						.main.style2 p {
							font-size:13pt;
							line-height:18pt;
				}
		
			.main.style3 {
				text-align: center;
				padding: 6em 0 6em 0;
				color:#fff;
			}

				.main.style3 .content {
				}

					.main.style3 .content > header {
						margin-bottom: 2em;
					}

				.main.style3.primary {
					background: #fff;
				}
			
				.main.style3.secondary {
					background: #f5f6f7;
				}

	/* Dark */

		.dark {
			color: #fff;
		}

			.dark a {
				color: #fff;
			}
		
			.dark .button.style2 {
				border-color: inherit;
				background-color: rgba(64,64,64,0.05);
			}

				.dark .button.style2:hover {
					background-color: rgba(255,255,255,0.1);
				}
				
				.dark .button.style2.down {
					background-image: url('images/dark-arrow.svg');
				}
		


/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

	#header {
		position: fixed;
		z-index: 10000;
		left: 0;
		top: 0;
		width: 100%;
		background-image:url(images/boxBg.png);
		height: 3em;
		line-height: 3em;
		box-shadow: 0 0 0.15em 0 rgba(0,0,0,0.1);
	}
	
	body {
		padding-top: 3em;
	}

	#logo {
		position: absolute;
		display:block;
		width:300px;
		top: 0;
		height: 3em;
		line-height: 3em;
		letter-spacing: -1px;
		background-image:url(../images/logoHead.png);
	}
	
		#logo a {
			font-size: 1.25em;
			color:fff;
		}
	
	#nav {
		position: absolute;
		right: 0.5em;
		top: 0;
		height: 3em;
		line-height: 3em;
	}

		#nav ul {
			margin: 0;
		}

			#nav ul li {
				display: inline-block;
				margin-left: 0.5em;
				font-size: 0.9em;
			}
			
				#nav ul li a {
					display: block;
					color: inherit;
					text-decoration: none;
					height: 3em;
					line-height: 3em;
					padding: 0 0.5em 0 0.5em;
					outline: 0;
					color:#fff;
				}
				
				#nav ul li a:hover {
					color:#632182;
					background-color:#fff;
				}
				
		.saibaMais {
					color:#fff;
				}
				
				.saibaMais:hover {
					color:#632182;
					background-color:#fff;
				}

/*********************************************************************************/
/* Intro                                                                         */
/*********************************************************************************/

	#intro {
		background: url('images/overlay.png'), url('../images/intro.jpg');
		background-size: 256px 256px, cover;
		background-attachment: fixed, fixed;
		background-position: top left, bottom center;
		background-repeat: repeat, no-repeat;
	}

/*********************************************************************************/
/* IntroCont                                                                         */
/*********************************************************************************/

	#introCont {
		background: url('images/overlay.png'), url('../images/introCont.jpg');
		background-size: 256px 256px, cover;
		background-attachment: fixed, fixed;
		background-position: top left, bottom center;
		background-repeat: repeat, no-repeat;
	}

/*********************************************************************************/
/* Educação                                                                      */
/*********************************************************************************/

	#educacaoProb {
		background: url('images/overlay.png'), url('../images/educacaoProb.jpg');
		background-size: 256px 256px, cover;
		background-attachment: fixed, fixed;
		background-position: top left, center center;
	}
	
	#educacaoSolu {
		background: url('images/overlay.png'), url('../images/educacaoSolu.jpg');
		background-size: 256px 256px, cover;
		background-attachment: fixed, fixed;
		background-position: top left, center center;
	}

/*********************************************************************************/
/* Moradia                                                                           */
/*********************************************************************************/

	#moradiaProb {
		background: url('images/overlay.png'), url('../images/moradiaProb.jpg');
		background-size: 256px 256px, cover;
		background-attachment: fixed, fixed;
		background-position: top left, center center;
	}
	
	#moradiaSolu {
		background: url('images/overlay.png'), url('../images/moradiaSolu.jpg');
		background-size: 256px 256px, cover;
		background-attachment: fixed, fixed;
		background-position: top left, center center;
	}

/*********************************************************************************/
/* Policiamento                                                                  */
/*********************************************************************************/

	#policiaProb {
		background: url('images/overlay.png'), url('../images/policiaProb.jpg');
		background-size: 256px 256px, cover;
		background-attachment: fixed, fixed;
		background-position: top left, center center;
	}
	
	#policiaSolu {
		background: url('images/overlay.png'), url('../images/policiaSolu.jpg');
		background-size: 256px 256px, cover;
		background-attachment: fixed, fixed;
		background-position: top left, center center;
	}	
	
/*********************************************************************************/
/* Transporte                                                                  */
/*********************************************************************************/

	#transporteProb {
		background: url('images/overlay.png'), url('../images/transporteProb.jpg');
		background-size: 256px 256px, cover;
		background-attachment: fixed, fixed;
		background-position: top left, center center;
	}
	
	#transporteSolu {
		background: url('images/overlay.png'), url('../images/transporteSolu.jpg');
		background-size: 256px 256px, cover;
		background-attachment: fixed, fixed;
		background-position: top left, center center;
	}
	
/*********************************************************************************/
/* Iluminação                                                                  */
/*********************************************************************************/

	#iluminacaoProb {
		background: url('images/overlay.png'), url('../images/iluminacaoProb.jpg');
		background-size: 256px 256px, cover;
		background-attachment: fixed, fixed;
		background-position: top left, center center;
	}
	
	#iluminacaoSolu {
		background: url('images/overlay.png'), url('../images/iluminacaoSolu.jpg');
		background-size: 256px 256px, cover;
		background-attachment: fixed, fixed;
		background-position: top left, center center;
	}	

/*********************************************************************************/
/* Faça Parte                                                                    */
/*********************************************************************************/

	#facaParte {
		background: url('images/overlay.png'), url('../images/facaParte.jpg');
		background-size: 256px 256px, cover;
		background-attachment: fixed, fixed;
		background-position: top left, center center;
	}
		
		#facaParte p {
			color:#fff;		
	}
	
		#facaParte a {
			color:#fff;		
	}
	
		#facaParte a:hover {
			color:#000;		
			background-color:#fff;
	}
	
			
/*********************************************************************************/
/* Parcerias                                                                       */
/*********************************************************************************/

	#parcerias {
		background: url('images/overlay.png'), url('../images/parcerias.jpg');
		overflow: hidden;
		z-index:11;
		
	}
	
		#parcerias .box {
			position: relative;
			bottom: 0;
			
			-moz-transition: all 1s ease;
			-webkit-transition: all 1s ease;
			-o-transition: all 1s ease;
			-ms-transition: all 1s ease;
			transition: all 1s ease;
			
			-moz-transform: translateZ(0);
			-webkit-transform: translateZ(0);
			-o-transform: translateZ(0);
			-ms-transform: translateZ(0);
			transform: translateZ(0);
		}
		
		#parcerias.inactive {
		}

			#parcerias.inactive .box {
				bottom: -30em;
			}
			
		#parcerias ul{
			list-style-type: none;

		}
		
		#parcerias a{
			display:block;
			width:150px;
			height:80px;
		}
		
		#parcerias ul li{
			display:inline;
			float:left;
			margin:5px;
		}
		
		#parcerias span{
			display:none;
		}
		
		#thinkOlga{background-image:url(images/logoThinkolga_Off.png);}
		#thinkOlga:hover{background-image:url(images/logoThinkolga_On.png);}
		
		#forumNacional{background-image:url(images/logoForumNacional_Off.png);}
		#forumNacional:hover{background-image:url(images/logoForumNacional_On.png);}
		
		#InstitutoPolis{background-image:url(images/logoInstitutoPolis_Off.png);}
		#InstitutoPolis:hover{background-image:url(images/logoInstitutoPolis_On.png);}
		
		#CMC{background-image:url(images/logoCMC_Off.png);}
		#CMC:hover{background-image:url(images/logoCMC_On.png);}
		
		#CMN{background-image:url(images/logoCMN_Off.png);}
		#CMN:hover{background-image:url(images/logoCMN_On.png);}
		
		#CF8{background-image:url(images/logoCF8_Off.png);}
		#CF8:hover{background-image:url(images/logoCF8_On.png);}
		
		#REDES{background-image:url(images/logoREDES_Off.png);}
		#REDES:hover{background-image:url(images/logoREDES_On.png);}
		
		#UNAS{background-image:url(images/logoUNAS_Off.png);}
		#UNAS:hover{background-image:url(images/logoUNAS_On.png);}
		
		#MMM{background-image:url(images/logoMMM_Off.png);}
		#MMM:hover{background-image:url(images/logoMMM_On.png);}
		
		#AMB{background-image:url(images/logoAMB_Off.png);}
		#AMB:hover{background-image:url(images/logoAMB_On.png);}
		
		#ETAPAS{background-image:url(images/logoETAPAS_Off.png);}
		#ETAPAS:hover{background-image:url(images/logoETAPAS_On.png);}
		
		#CONAM{background-image:url(images/logoCONAM_Off.png);}
		#CONAM:hover{background-image:url(images/logoCONAM_On.png);}
		
		#MLB{background-image:url(images/logoMLB_Off.png);}
		#MLB:hover{background-image:url(images/logoMLB_On.png);}
		
		#FASE{background-image:url(images/logoFASE_Off.png);}
		#FASE:hover{background-image:url(images/logoFASE_On.png);}
		
		#UNMP{background-image:url(images/logoUNMP_Off.png);}
		#UNMP:hover{background-image:url(images/logoUNMP_On.png);}
		
			
			
/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/
	
	#footer {
		position: relative;
		height: 5em;
		line-height: 5em;
		margin: 0;
		background: #5c2078;
		color: #999;
		color: rgba(185,186,187,0.5);
		overflow: hidden;
	}

		#footer a {
			color: #999;
			color: rgba(185,186,187,0.5);
		}

			#footer a:hover {
				color: #bbb;
				color: rgba(185,186,187,1.0);
			}
	
		#footer .actions {
			position: absolute;
			left: 0.5em;
			top: 0.5em;
			height: 5em;
			line-height: 5em;
			margin: 0;
		}
		
			#footer .actions li {
				font-size: 1.25em;
				margin: 0;
			}
			
				#footer .actions li a {
					padding: 0.5em;
					display:block;
					width:30px;
					height:30px;
				}
				
				/* Facebook */
				.smFacebook{
					background-image:url(images/sm_facebook-OFF.png);
					
				}
				.smFacebook:hover{
					background-image:url(images/sm_facebook-ON.png);
					
				}
				
				/* Twitter */
				.smTwitter{
					background-image:url(images/sm_twitter-OFF.png);
					
				}
				.smTwitter:hover{
					background-image:url(images/sm_twitter-ON.png);
					
				}
				
				/* Instagram */
				.smInstagram{
					background-image:url(images/sm_instagram-OFF.png);
					
				}
				.smInstagram:hover{
					background-image:url(images/sm_instagram-ON.png);
					
				}
				
				/* YouTube */
				.smYoutube{
					background-image:url(images/sm_youtube-OFF.png);
					
				}
				.smYoutube:hover{
					background-image:url(images/sm_youtube-ON.png);
					
				}
				
				/* Google+ */
				.smGoogle{
					background-image:url(images/sm_googlep-OFF.png);
					
				}
				.smGoogle:hover{
					background-image:url(images/sm_googlep-ON.png);
					
				}
				
				/* Linkedin */
				.smLinkedin{
					background-image:url(images/sm_linkedin-OFF.png);
					
				}
				.smLinkedin:hover{
					background-image:url(images/sm_linkedin-ON.png);
					
				}
		
		#footer .menu {
			position: absolute;
			right: 2em;
			top: 0;
			height: 5em;
			line-height: 5em;
			margin: 0;
		}
		
			#footer .menu li a{
				display:block;
				background-image:url(images/aaLogo.png);
				background-repeat:no-repeat;
				width:204px;
				height:54px;
				margin-top:20px;
				font-size: 0.9em;
			}

		
/*********************************************************************************/
/* Touch Mode                                                                    */
/*********************************************************************************/

	body.touch {
	}
	
		body.touch .main {
			background-attachment: scroll !important;
		}
		
		body.touch .poptrox-popup {
		}

			body.touch .poptrox-popup .nav-next,
			body.touch .poptrox-popup .nav-previous,
			body.touch .poptrox-popup .closer {
				opacity: 1.0 !important;
			}
