/*
*
* CSS Reset
*
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li, input, textarea,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
   margin: 0;
   padding: 0;
   border: 0;
   font-size: 100%;
   font: inherit;
   vertical-align: baseline;
   -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}


/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
   display: block;
}
ol, ul {
   list-style: none;
}
blockquote, q {
   quotes: none;
   margin-left:50px;
   font-style: italic;
   
}
blockquote:before, blockquote:after,
q:before, q:after {
   content: '';
   content: none;
}



body{
   font-family:"OpenSans","DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
   padding:30px;
   font-size:24px;
   font-weight:500;
   line-height:1.5em;
   color:white;
}


strong{
   font-weight:700;
}

pre{
   margin-bottom:50px;
   font-family: monospace;
   font-size:20px;
}

pre p{
   white-space: pre-wrap;
   font-family:"OpenSans","DejaVu Sans", "Bitstream Vera Sans", "Liberation Sans", Verdana, "Verdana Ref", sans-serif;
}

hr{
   border:1px dashed #777;
}

a{
   text-decoration:none;
   outline:none;
   color: #9eb030;   
}

a:hover{
   text-decoration:underline;
   animation: LinkColorCycle 1.5s infinite linear;
}
a img{
   outline:none;
}


ul{
   margin-bottom:2.4em;
}

li a{
   display:block;
   margin-bottom:16px;
}

li a.indent{
   padding-left:16px;
}

li a.inline{
   display:inline;
   margin-bottom:0;
}








@keyframes LinkColorCycle{
	0%{
		filter: hue-rotate(180deg);
	}
	50%{
		filter: hue-rotate(70deg);
	}
	100%{		
		filter: hue-rotate(180deg);      
	}
}

article{
   margin-bottom:2em;
}

section{
   margin-bottom:2em;
}


p{
   line-height:1.5em;
   margin-bottom:1.2em;
   font-size:24px;
   max-width:50em;
   font-weight:500;
}

p.last{
   margin-bottom:30px;
}

h1,h2,h3,h4,h5,h6{   
   font-weight:700;
   line-height:1.2em;
}

h1,h2,h3,h4{
   text-transform:uppercase;
   font-family:"chalkboard", sans-serif;
   margin-bottom:30px;
}

h5,h6{
   margin-bottom:.3em;
}

h1{
   font-size:83px;   
}
h2{
   font-size:50px;
}
h2.above{
   margin-bottom:0;
   line-height:1em;   
}
p + h2{
   margin-top:54px;
}
h3{
   font-size:27px;
}
p + h3{
   margin-top:40px;
}
h4{
   font-size:24px;
}
p + h4{
   margin-top:36px;
}
h5{
   font-size:24px;
}
h6{
   font-size:24px;
}

.warning{
   font-weight:bold;
   color:#880000;
}

.clear{
   clear:both;
}

.center{
   text-align:center;
   text-wrap:balance;
}

.right{
   text-align:right;
}


.nobtm{
   margin-bottom:0;
}



.bg-image{
   background:#ffeecc;
   background-image: url("/images/mockup4.png");
   background-position: top center;
   /*background-size: cover;*/
   background-repeat: no-repeat;
   /*background-blend-mode: hard-light;*/
   background-attachment: fixed;
   /*filter: blur(2px);*/
   opacity:1;
   position:fixed;   
   top:0;
   left:0;
   bottom:0;
   right:0;
   z-index:0;
}

/* Main */
.main{
   margin:0 auto;
   max-width:1070px;
   position:relative;
   z-index:20;
   /*background:#ffeecc;
   padding:20px;*/
   /*border:2px solid white;*/
   padding:10 150px;
   
}
/*
.main:after{
   content:"";
   position:absolute;
   top:0;
   left:0;
   bottom:0;
   right:0;
   z-index:-1;
   background:#ffeecc;
   background-image: url("/images/mockup4.png");
   background-position: top right;
   background-size: cover;
   background-repeat: no-repeat;
   /*background-blend-mode: hard-light; /* luminosity color-burn hard-light*//*
   background-attachment: fixed;
   filter: blur(2000px);   
   opacity:95;
}*/


.main-image{
   width:100%;
   display:block;
   margin-bottom:30px;
   border:16px solid rgba(255,255,255,.25);
}

.content-box{   
   border:16px solid rgba(255,255,255,.25);
   margin-bottom:30px;   
}

.content-box-inner{   
   padding:70px;
   padding-bottom:40px;
   position:relative;
}


.content-box-inner:before{
   content:"";
   position:absolute;
   top:0;
   left:0;
   bottom:0;
   right:0;
   z-index:-1;
   
   background:#111;
   opacity:.9;
}


.content-box-inner:after{
   content:"";
   position:absolute;
   top:0;
   left:0;
   bottom:0;
   right:0;
   z-index:-2;
   
   background:#ffeecc;
   background-image: url("/images/mockup4-blur.png");
   background-position: top center;
   background-repeat: no-repeat;
   background-attachment: fixed;
}



/* header */

.header{   
   margin-bottom:30px;
}


.logo{
   width:180px;
   
   float:left;
}

.main-nav{
   float:right;
}

.main-nav a{
   float:left;
   border:1px solid #9eb030;
   display:inline-block;
   width:200px;
   overflow:hidden;
   text-align:center;
   margin:0;
   margin-left:30px;
   padding:7px 16px;
   color:white;
   position:relative;   
   border:16px solid rgba(255,255,255,.3);
   font-size:18px;
}

.main-nav a:before{
   content:"";
   position:absolute;
   top:0;
   left:0;
   bottom:0;
   right:0;
   z-index:-1;
   
   background:#111;
   opacity:.9;
}

.main-nav a:after{
   content:"";
   position:absolute;
   top:0;
   left:0;
   bottom:0;
   right:0;
   z-index:-2;
   
   
   
   background:#ffeecc;
   background-image: url("/images/mockup4-blur.png");
   background-position: top center;
   background-repeat: no-repeat;
   background-attachment: fixed;
}


.main-nav a:hover{
   text-decoration:none;
}