body{
	font: 400 18px Oswald, sans-serif;
	line-height: 1.8;
	color: #818181;
	/*color: #c6c386;*/

}

#sobre a{
	text-decoration: none;
}
#sobre a:link, a:visited, a:active{
	color: #4169e1;
}
#sobre a:hover{
	color: #aca4ae;
	text-decoration: none;
}

.jumbotron{
	font-family: Droid Sans, sans-serif;
	letter-spacing: 5px;
	background-color: #e39e54; /* Orange */
    color: #ffffff;
    padding: 70px 25px;
}

.container-fluid{
	padding: 60px 50px;
}


.navbar{
	font-family: Droid Sans, sans-serif;
	margin-bottom: 0;
	background-color: #e8d174;
	z-index: 9999;
	border: 0;
	font-size: 12px !important;
	line-height: 1.42857143 !important;
	letter-spacing: 5px;
	border-radius: 0;
}

.navbar li a, .navbar .navbar-brand{
	color: #fff !important;
}

.navbar-nav li a:hover, .navbar-nav li.active a{
	color: #f4511e !important;
	background-color: #fff !important;
}

.navbar-default .navbar-toggle{
	border-color: transparent;
	color: #fff !important;
}


#sobre, #contato, #portfolio{
	font-family: PT Sans Narrow, sans-serif;
}

#portfolio{
	letter-spacing: 4px;
}

#footer{
	font-family: PT Sans Narrow, sans-serif;
	font-size: .9em;
	background-color: #e8d174;
	padding: 8px;
}

.slideanim(visibility:hidden;)

.slide{
	/* The name of the animation */
	animation-name: slide;
	-webkit-animation-name: slide;
	 /* The duration of the animation */
	 animation-duration: 1s;
	 -webkit-animation-duration: 1s;
	  /* Make the element visible */
	  visibility: visible;
}

/* Go from 0% to 100% opacity (see-through) and specify the percentage 
from when to slide in the element along the Y-axis */
@keyframes slide{
	0%{
		opacity: 0;
		-webkit-transform: translateY(70%);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateY(0%);
	}
}
@-webkit-keyframes slide{
	0%{
		opacity: 0;
		-webkit-transform: translateY(70%);
	}
	100%{
		opacity: 1;
		-webkit-transform: translateY(0%);
	}
}

.thumbnail{
	padding: 0 0 15px 0;
	border: none;
	border-radius: 0;
}
.thumbnail img{
	width: 100%;
	height: 100%;
	margin-bottom: 10px;
}

.dropdown-menu{
	background-color: #e8d174;
}