/* THIS FILE IS COPYRIGHT ©2014 OSCAR STRANGIO AND IS INTENDED ONLY FOR USE ON THE NICOLE PRECEL SITE */

/* - - - FONTS & ANIMATIONS - - - */
@import url("fonts/font-awesome.min.css");

/* - - - BASE STYLES - - - */
*{
	margin:0;
	padding:0;
}
html, body{
	background: white;
	height: 100%;
}
body{
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; 
	font-weight: normal;
	font-size: 14px;
	color: rgb(80, 80, 80);
	cursor: default;
	-webkit-font-smoothing: subpixel-antialiased;
}
p{
	font-size: 16px;
	line-height: 22px;
}
h1{
	font-size: 38px;
	font-weight: bold;
	font-style: normal;
	color: white;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.5);
}
h2{
	font-size: 22px;
	font-weight: normal;
	font-style: normal;
	color: white;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.5);
}
h3{
	font-size: 16px;
	color: white;
	font-weight: normal;
	font-style: normal;
	text-shadow: 1px 1px 0px rgba(0,0,0,0.5);
}
li{
	list-style: none;
}
b{
	font-weight: bold;
	font-style: normal;
}
a, a:visited{
	color: rgb(80, 80, 80);
	font-weight: bold;
	text-decoration: none;
}
a.blue{
	color: #08c;
}
a:hover{
	color: #08c;
	text-decoration: underline;
}
a.nohover:hover, ul a:hover{
	text-decoration: none;
}

/* - - - COMMON ELEMENTS - - - */
.horizontal-wrapper{
	position: relative;
	width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.bg-dark{
	background: rgba(0,0,0,0.5);
	background: -moz-linear-gradient(top, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.5) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.01)), color-stop(100%,rgba(0,0,0,0.5)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.01) 0%,rgba(0,0,0,0.5) 100%);
	background: -o-linear-gradient(top, rgba(0,0,0,0.01) 0%,rgba(0,0,0,0.5) 100%);
	background: -ms-linear-gradient(top, rgba(0,0,0,0.01) 0%,rgba(0,0,0,0.5) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0.01) 0%,rgba(0,0,0,0.5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03000000', endColorstr='#80000000',GradientType=0 );
}
.image-wrapper{
	position: relative;
	width: 100%;
	margin-bottom: 30px;
}
.image-wrapper img{
	width: 100%;
}
.image-wrapper .bg-dark{
	position: absolute;
	bottom: 3px;
	height: 100px;
	width: 100%;
}
.image-wrapper .bg-dark h3{
	padding: 10px;
	position: absolute;
	bottom: 0px;
}

/* - - - HEADER - - - */
.nav{
	position: relative;
	height: 112px;
	padding-top: 10px;
}
.nav .logo{
	float: left;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	background-image: url('np-logo-black.png');
	background-size: cover;
}
.nav ul{
	position: relative;
	float: right;
	list-style: none;
	top: 43px;
}
.nav ul li{
	display: inline;
	margin-left: 2px;
	padding: 4px;
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(80,80,80,0);
	color: rgb(80,80,80);
	font-weight: normal;
	-webkit-transition: opacity 0.2s, border 0.2s;
	-moz-transition: opacity 0.2s, border 0.2s;
	-ms-transition: opacity 0.2s, border 0.2s;
	-o-transition: opacity 0.2s, border 0.2s;
	transition: opacity 0.2s, border 0.2s;
}
.nav ul li a{
	color: rgb(80,80,80);
	font-weight: normal;
}
.nav ul li:hover{
	border-bottom: 1px solid rgba(80,80,80,0.5);
	opacity: 1;
	text-decoration: none;
}
.nav ul li.active{
	border-bottom: 1px solid rgba(80,80,80,1);
	font-weight: bold;	
	opacity: 1;
}
.nav ul li.active a{
	font-weight: bold;	
	opacity: 1;
}

/* - - - FOOTER - - - */
.page-wrap {
	min-height: 100%;
	margin-bottom: -36px; 
}
.page-wrap:after {
	content: "";
	display: block;
}
.footer, .page-wrap:after {
	height: 36px; 
}
.footer{
	position: relative;
	width: 100%;
	font-size: 12px;
	clear: both;
}
.footer .horizontal-wrapper{
	border-top: 1px solid rgba(80,80,80,0.3);
	padding-top: 5px;
}
.footer .horizontal-wrapper ul{
	float: left;
	list-style: none;
}
.footer .horizontal-wrapper ul li{
	display: inline;
	margin-right: 8px;
	color: rgb(80,80,80);
	font-weight: bold;
	font-size: 19px;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
	opacity: 0.6;
}
.footer .horizontal-wrapper ul li:hover{
	opacity: 1;
}
.footer .horizontal-wrapper .copyright{
	float: right;
	padding-top: 4px;
	color: rgb(80,80,80);
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
	opacity: 0.6;
}
.footer .horizontal-wrapper .copyright:hover{
	opacity: 1;
}