@charset "UTF-8";
/* CSS Document */

#grad {
  background: -webkit-linear-gradient(darkblue, black); /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(darkblue, black); /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(darkblue, black); /* For Firefox 3.6 to 15 */
  background: linear-gradient(darkblue, black); /* Standard syntax */
}
$primary-color:#FFF;

*{
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

html, body{
  margin: 0px;
  padding: 0px;
  font-family: 'Helvetica Light',sans-serif;
  font-size: 14px;
  font-weight: 200;
  height: 100%;
  letter-spacing:.1em;
  color: #fff;
  background:#fff;
 text-align: center;
  transition: all 0.3s ease-in-out;
}

p{
	text-align:justify;
}

.indent{
	letter-spacing: normal;
	text-align: justify;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	color: #FFF;
	font-size: 14px;
}
.quote{
	font-family: "Helvetica Light", sans-serif;
	font-size: 14px;
	font-weight: lighter;
	font-style: italic;
	padding-left: 20px;
}

.blacktext {
	color: #000;
	border: thin solid #000;
	width: 800px;
	height: auto;
	margin-top:10px;
	
	font-size:12px;
}
.blacktext a {
	color: #06C;
	text-decoration: none;
	clear: none;
	margin: 0px;
	padding: 0px;
}

h1, h2{
	text-align: center;
	font-size: 16px;
	color: #FFF;
	background-color: #06C;
	padding-top: 5px;
	padding-bottom: 5px;
	line-height: 16px;
}

h2{
  color: $primary-color;
	
}

.container{
  width: 800px;
  max-width: 100%;
  margin: auto;

}
h3 {
	font-size: 16px;
	text-decoration: underline;
	font-weight: 200;
	line-height: 16px;
}

header{
	text-align: center;
  width: 100%;
  height: 80px;
  position: relative;
   margin: auto;
  background:#000  no-repeat center;
  background-size:cover;
}

  h1{
    font-size: 3rem;
    font-weight: 300;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
  }

.nav{
  clear: both;
  overflow: hidden;
}


ul {
	margin: auto;
	padding: 0;
	list-style: none;
	display: table;
	width: 800px;
	text-align: center;
	background-color: #000;
}
li { 
  display: table-cell; 
  position: relative; 
  padding: 10px 0;
}

a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.15em;
  
  display: inline-block;
  padding: 15px 15px;
  position: relative;
}
a:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

a:hover:after { 
  width: 100%; 
  left: 0; 

	color:#999;

}
/*
  ul{
    list-style: none;
   margin-left: 150px;
    padding: 0;
  }
    li{
      float: left;
	}
      a{
        display: block;
        padding: 25px 20px;
        text-decoration: none;
        color:#FFF;
        font-weight: normal;
        
     
        }
		
		
*/
	
section{
  width: 100%;
  padding:60px 0px;
  
}
  article{
    padding: 60px 0px;
  }


section:nth-of-type(odd){
  background: #000;
}

/*helper*/
.isFixed{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color:#000;
/*  box-shadow: 0 2px 0 #eee;*/
}
.whiteSpace{
  margin-top: 0px;
  -webkit-transition: none;
  transition: none;
}
