@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	15;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
	clear: both;
	margin-left: 0;
	margin-right: 0;
	width: 100%;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}
/* VARIABLES */
/* BASE */
html,
body {
  font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.4;
  height: 100%;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #ffffff;
}

.container {
  overflow: hidden;
  *zoom: 1;
  margin: 0 20px;
}

.site-content {
  padding-top: 66px;
}

/* HEADER */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0px;
  height: 66px;
  line-height: 66px;
  color: #ffffff;
  background-color: #000120;
  background-image:url(../images/navbarbg.png);
}

.header__logo {
  font-weight: 700;
  padding: 0 25px;
  float: left;
}

/* MENU */
.menu {
  float: right;
  font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif; color:#fff;
}
.menu a {
  padding: 0 30px;
  color:#fff;
}
.menu a:hover {
  color: #de010a;
}
#footnote {
}
.zeroMargin_mobile {
margin-left: 0;
}
.hide_mobile {
display: none;
}

/* Mobile Layout: 480px and below. */
/* RESPONSIVE */
@media only screen and (max-width: 768px) {
  .site-pusher,
  .site-container {
    height: 100%;
  }

  .site-container {
    overflow: hidden;
  }

  .site-pusher {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  .header {
    position: static;
  }

  .header__icon {
    position: relative;
    display: block;
    float: left;
    width: 50px;
    height: 66px;
    cursor: pointer;
  }
  .header__icon:after {
    content: '';
    position: absolute;
    display: block;
    width: 1rem;
    height: 0;
    top: 16px;
    left: 15px;
    box-shadow: 0 10px 0 1px #fff, 0 16px 0 1px #fff, 0 22px 0 1px #fff;
  }

  .menu {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #000120;
    /* overflow-y: scroll;
        -webkit-overflow-scrolling: touch;*/
    width: 250px;
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
  }
  .menu a {
    display: block;
    height: 15px;
    text-align: center;
    line-height: 15px;
    border-bottom: 1px solid #fff;
  }

  .with--sidebar .site-pusher {
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
  }
  .with--sidebar .site-cache {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }
  #footnote {
  }
  .hide_tablet {
  display: none;
  }
  .zeroMargin_tablet {
  margin-left: 0;
  }
}  

.gridContainer {
	margin-left: 0px;
	margin-right: 0px;
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
	clear: none;
	float: none;
}

.zeroMargin_desktop {
margin-left: 0;
}

.hide_desktop {
display: none;
}


/* RESPONSIVE */
@media only screen and (max-width: 768px) {
  .site-pusher,
  .site-container {
    height: 100%;
  }
  
  .site-container {
    overflow: hidden;
  }
  
  .site-pusher {
    @include transition-duration(0.3s);
    @include transform(translateX(0px));
  }
   
  .header {
    position: static;
	
  }
  
  .header__icon {
    position: relative;
    display: block;
    float: left;
    width: 50px;
    height: 66px;
    
    cursor: pointer;
    
    &:after {
      content: '';
      position: absolute;
      display: block;
      width: 1rem;
      height: 0;
      top: 16px;
      left: 15px;
      @include box-shadow(0 10px 0 1px #fff, 

0 16px 0 1px #fff, 0 22px 0 1px #fff);
    }
  }
  
  .menu {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: darken($header-bg, 5);
/*    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;*/
    
    width: $menu-width;
    
    @include transform(translateX($menu-width 

* -1));
    a {
      display: block;
      height: 40px;
      
      text-align: center;
      line-height: 40px;
      
      border-bottom: 1px solid $header-bg;
    }
  }
  
  .with--sidebar {
    .site-pusher {
      @include transform(translateX($menu-

width));
    }
    .site-cache {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0,0,0,0.6);
    }
  }
}
#header {
	background-color:#000117;
	background-image:url(../images/navbarbg.png);
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif; color:#fff;
	font-weight:bold;
	float:right;
	text-decoration:none;
	font-size:1em;
	
}





#mainContent {
}
#secondNavBar {
	background-color:#000120;
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif; color:#fff;
	font-weight:bold;
	align-content:space-between;
	text-decoration:none;
	font-size:1em;
	positive:relative;
	top:-10%;
	left:60%;
}
#content {
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif; color:#000120;
	font-size:.5em;
	font-weight:bold;
	
	
	}

#content {
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif; color:#000120;
	font-size:1em;
	font-weight:bold;
	
	}
	#headercontent {
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif; color:#000120;
	font-size:2em;
	font-weight:bolder;
	
	
	}
	#footnote {
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif; color:#000120; a:link:#000120;
	font-size:.75em;
	padding: 8px 8px 2px 8px;
	
	}
#donatebutton { 
	position:relative;
	bottom:60%;
	float:right;
}

#footer {
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	font-size:.75em;
}
#contentSecond {
width: 100%;
}
#contentRightSecond {
width: 100%;
margin-left: 0;
clear: both;
}
#heroimage {
	
}
#content {
}

.zeroMargin_mobile {
margin-left: 0;
}
.hide_mobile {
display: none;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media screen and (min-width: 481px) {

.gridContainer {
	margin-left: 0px;
	margin-right: 0px;
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
	clear: none;
	float: none;
}
#header {
	background-color:#000120;
	background-image:url(../images/navbarbg.png);
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif; color:#fff;
	font-weight:bold;
	align-content:space-between;
	text-decoration:none;
	font-size:1em;
}

#mainContent {
}

#secondNavBar { 
}

nav ul { list-style: none; margin: 0; padding: 0; }
nav ul li:hover > ul { display: block; }

nav > ul > li { float: left; }
nav ul::after { content: ''; display: block; clear: both; }

nav ul li a { display: inline-block; color: #fff; padding: 0px 20px; text-decoration: none; width: 150px; }

nav ul ul { display: none; position: absolute; top: 100%; background-color: rgba(100, 0, 0, .8);} 


/* top level*/
nav > ul { float: right; position:relative; 
top: -35px; 
padding-left: 20px; }

nav > ul > li { float: left; }
nav > ul > li > a { padding: 10px 20px 15 20px; width: auto; }

.donatebutton { 
	position:relative;
	bottom:60%;
	right:80%;
 }  


#heroimage { 
}

#content { 
}



#footer { 
}

.hide_tablet { 
display: none;
}

.zeroMargin_tablet { 
margin-left: 0;
}

	
}

#footer {
}
#contentSecond {
width: 49.1712%;
}
#contentRightSecond {
width: 49.1712%;
clear: none;
margin-left: 1.6574%;
}
.hide_tablet {
display: none;
}
.zeroMargin_tablet {
margin-left: 0;
}
#heroimage {
}
#secondNavBar {
}
#content {
}

.zeroMargin_desktop {
margin-left: 0;
}
.hide_desktop {
display: none;
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media screen and (min-width: 769px) {

.gridContainer {
	margin-left: 0px;
	margin-right: 0px;
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
	clear: none;
	float: none;
	
}
#header {
	background-color:#000117;
	background-image:url(../images/navbarbg.png);
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif; color:#fff;
	font-weight:bold;
	align-content:space-between;
	text-decoration:none;
	font-size:1em;
}
#mainContent {
}
#secondNavBar {
	background-color:#000120;
	font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif; color:#fff;
	font-weight:bold;
	align-content:space-between;
	text-decoration:none;
	font-size:1em;
}

#footer {
}
#contentSecond {
width: 100%;
}
#contentRightSecond {
width: 100%;
clear: both;
margin-left: 0;
}
.zeroMargin_desktop {
margin-left: 0;
}
.hide_desktop {
display: none;
}
}
/*nav ul { list-style: none; margin: 0; padding: 0; }
nav ul li:hover > ul { display: block; }

nav > ul > li { float: left; }
nav ul::after { content: ''; display: block; clear: both; }

nav ul li a { display: inline-block; color: #fff; padding: 0px 20px; text-decoration: none; width: 150px; }

nav ul ul { display: none; position: absolute; top: 100%; background-color: rgba(100, 0, 0, .8);}*/


/* top level */
/*nav > ul { float: right; position:relative; 
top: -35px; 
padding-left: 20px; }

nav > ul > li { float: left; }
nav > ul > li > a { padding: 10px 20px 15 20px; width: auto; } */

#donatebutton {float:right; 
	position:absolute;
	bottom:30%;
	left:70%;
	padding: 0px 10px 10px 0px; }

	#imagetexta { font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif; color:#fff;
	font-weight:bold;
	text-decoration:none;
	font-size:4em;
	line-height:90%;
	position: absolute;
    bottom:65%;
    left: 8%;
}
