@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:	25;
	
	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 {
	width: 100%;  
	

	
}

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;
	width: 100%;        
}

#top {
	float: left;
	height: 72px;
	width: 20%;
	margin-right: auto;
	margin-left: auto;
	
}
#top:hover {
	border-bottom: 4px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;

	
}

.campaigns {
	border-bottom: 4px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;

	
}
#div1{
	z-index: 100;
	position: absolute;
	
	
	
	}
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}


/* Add a black background color to the top navigation */
#navbar {
    
    background-color: #ffffff;
    overflow: hidden;
	border-bottom: 4px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;
	 padding: 50px 10px; /* Large padding which will shrink on scroll (using JS) */
  transition: 0.4s; /* Adds a transition effect when the padding is decreased */
  position: fixed; /* Sticky/fixed navbar */
  width: 100%;
  top: 0; /* At the top */
  z-index: 99; 

}

.topnav2 {
 
	
	margin: auto;
	
	max-width: 1024px;

	
}
/* Style the links inside the navigation bar */
#navbar a {
  float: left;
  
  text-align: center;
  padding-right: 16px;
	padding-left: 16px;
  text-decoration: none;
  font-size: 17px;
	
}

/* Change the color of links on hover */
#navbar a:hover {
 background-color: #ffffff;
   
	
	
}

/* Add a color to the active/current link */
#navbar a.active {
  background-color: #ffffff;
  color: white;
}

/* Centered section inside the top navigation */


.topnav-centered {
  float: none;
  position: absolute;
  top: 50%;
  left: 50%;
	padding-right: 7px;
  transform: translate(-50%, -50%);
}

/* Right-aligned section inside the top navigation */
.topnav-right {
  float: right;
	margin-top:-2px;
}
.topnav-right2 {
  line-height: 60px;
	float: right;
	padding-right: 10px;
}

/* Responsive navigation menu - display links on top of each other instead of next to each other (for mobile devices) */
@media screen and (max-width: 600px) {
  #navbar a, .topnav-right {
    float: none;
    display: block;
  }

  .topnav-centered a {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
}

/* Dropdown Button */
.dropbtn {
    background-color: #ffffff;
	border-top: none;
	border-right: none;
	border-left: none;
    border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
    cursor: pointer;

}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #ffffff;
}
.dropbtn2 {
    background-color: #ffffff;
	border-top: none;
	border-right: none;
	border-left: none;
    border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
	
    

}

.dropbtn2 a:hover {
	background-color: #ffffff;
   	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;
}

.dropbtn3 {
    background-color: #ffffff;
	border-top: none;
	border-right: none;
	border-left: none;
float: left;
	
    

}

.dropbtn3 a:hover {
	background-color: #ffffff;
   	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;
}



/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
	float: left;
	background-color: #ffffff;
	margin-top:-1px;
	

}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: fixed;
    background-color: #ffffff;
   width: 172px;
   text-align: left;
    z-index: 1;
	float: left;
	margin-left: -10px;
	
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
	float: left;
	width: 140px;
	border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffffff;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
	background-color: #ffffff;
  
	border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #ffffff;
   
	border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}


#top {
	float: left;
	height: 72px;
	width: 20%;
	margin-right: auto;
	margin-left: auto;
	
}
#top:hover {
	border-bottom: 4px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;

	
}



#myDiv {
  display: none;
}

.nav {

	width: 100%;
	height: 75px;
	margin-right: auto;
	margin-left: auto;
	border-top: 3px;
	border-top-style: solid;
	border-top-color: #9e005d;
	background-color: #ffffff;
			border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: #cccccc;

}


#graphicdesign {
	max-width: 200px;
	height: 40px;
	float: right;

	padding-top: 6px;
	padding-right: 15px;

}

#daniellegerard{
	max-width: 200px;
		height: 40px;
	border-right: 1px;
	border-right-style: solid;
	border-right-color: #9e005d;
	padding-top: 5px;
	
	float: left;

}

	


h1{color:#9e005d;
font-family: century-gothic, sans-serif;
font-size:14px;
line-height: 14px;
font-weight: lighter;
text-align: right;

}

h2{color:#999999;
font-family: century-gothic, sans-serif;
font-size:14px;
line-height: 6px;
font-weight: lighter;
text-align: left;


}


h3{color:#999999;
font-family:century-gothic, sans-serif;
font-size:12px;
line-height: 43px;
font-weight: lighter;
text-align: left;

}




h4{
	color: #999999;
	font-family: century-gothic, sans-serif;
	font-size: 13px;
	font-weight: lighter;
	text-align: center;
	font-style: italic;
	line-height: 25px;

}

h5{
	color: #9e005d;
	font-family: century-gothic, sans-serif;
	font-size: 14px;
	font-weight: lighter;
	text-align: center;
font-style: italic;
padding-bottom: 20px;
	
}

h6{color:#999999;
font-family:century-gothic, sans-serif;
font-size:13px;
font-weight: lighter;
text-align: center;
line-height: 25px;


}

h7{color:#999999;
font-family:century-gothic, sans-serif;
font-size:14px;
line-height: 36px;
font-weight: lighter;
text-align: center;


}

h7:hover {
	padding-bottom: 20px;
	border-bottom: 4px;
	border-bottom-style: solid;
	border-bottom-color: #9e005d;

	
}


h9{color:#ffffff;
font-family:century-gothic, sans-serif;
font-size:30px;
text-align: center;
line-height: 70px;
padding-left: 23px;

}

h10{color:#9e005d;
font-family:century-gothic, sans-serif;
font-size:300%;
line-height: 30px;
font-weight: bold;
text-align: center;

}

h11{color:#9e005d;
font-family:century-gothic, sans-serif;
font-size:20px;
line-height: 30px;
font-weight: bold;
text-align: left;

}

h13{
	color:#999999;
font-family:century-gothic, sans-serif;
font-size:12px;
line-height: 23px;
font-weight: lighter;
text-align: center;
letter-spacing:.02em;

}

h14{
	color:#9e005d;
font-family:century-gothic, sans-serif;
font-size:14px;
line-height: 16px;
font-weight: lighter;
text-align: left;

}


h15{
	color:#999999;
font-family:century-gothic, sans-serif;
font-size:14px;
line-height: 16px;
font-weight: lighter;
text-align: left;

}

h16{color:#ffffff;
font-family:century-gothic, sans-serif;
font-size:20px;
line-height: 20px;
font-weight: bold;
text-align: center;


}

h17{color:#ffffff;
font-family:century-gothic, sans-serif;
font-size:14px;
line-height: 20px;
font-weight: lighter;
text-align: center;


}



p{
	color:#999999;
font-family:century-gothic, sans-serif;
font-size:14px;
line-height: 23px;
font-weight: lighter;
text-align: center;

}




 a{text-decoration: none;}
 


#footer {
	min-height: 150px;
	background-color: #f9f9f9;
}
#footer-copy {
padding-top: 30px;


}



#social {
	height: 20px;
	width: 120px;
	margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	padding-bottom:50px;
}
#download { height: 20px;
width: 20px;
float: right;
padding-right: 30px;

}

#linkedin{
	height: 20px;
	width: 20px;
	float: right;
	padding-right: 30px;

	}
#gmail{
	height: 20px;
	width: 20px;
	float: right;
}

#nav-content{ 
max-width: 2024px;
margin-right: auto;
	margin-left: auto;



}


	#image{
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	padding-top: 50px;
	padding-bottom:50px;

	}
	
	
	#image-email{
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	padding-top: 50px;
	padding-bottom: 25px;

	}
		
#content{
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	
	
	}
	#campaigns{
	position: absolute;
	z-index:10;
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	top: 75%;
	
	}
	
	#cover-copy{
			
widht: 100%;
height: 100%;
	background-color: #FFFFFF;
	z-index:0;
	position: relative;
	overflow: hidden;
		margin: auto;
		
		text-align: left;
		}

.scroll{
    text-align: center;
   
	padding-top: 5em;
	padding-bottom: 3em;
	max-width: 650px;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}


.row {
 display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 0px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 0px;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.column img {

  vertical-align: middle;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}


		@media only screen and (max-width: 768px) {

	#cover-copy{
			
	max-width: 720px;

		}
		

				 #image-0{
			margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	 z-index: 0;
	 position: fixed;
	 background-image:
	 url(images/images/images/campaigns_1.jpg);
	 background-repeat: no-repeat;
	 width: 100%;
	 max-height: 1200px;
	 background-size:cover;
	 background-position: center;
	 }
	 

}
		
		#cover{
	z-index:10;
position: absolute;
	overflow: hidden;
	top: 29%;
	left: 58%;
	max-width: 400px;
	min-height: 500px;

	
		}
		
	#cover-pattern{
	position: absolute;
	height: 100%;
	z-index:1;
	width: 100%;
	overflow: hidden;
	
	  background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAF0lEQVQIW2NkYGCoB+JGIAYDRhiDeAEAPuoBBQUs7qUAAAAASUVORK5CYII=
    ) repeat;
		}
		
	

#cover-copy-type-notes {

	margin: auto;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		padding-top: 35px;
		text-align: left;
		max-width: 300px;
		border-top: 1px;
	border-top-style: solid;
	border-top-color: #9e005d;
	padding-bottom: 50px;

		

}

#video-copy-type-notes {
max-width: 800px;
height: 85px;
	margin: auto;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		padding-top: 25px;
		padding-bottom: 50px;
		
}


#icon-copy-type-notes {
max-width: 800px;
height: 85px;
	margin: auto;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;

}


#cover-copy-type-header {
		position: relative;
		margin: auto;
		top: 0;
		right:0;
		left: 0;
		bottom: 0;
		z-index: 0;
		text-align: left;
		
		padding-top: 40px;
		max-width: 300px;
		padding-bottom: 
		30px;
}


	#row{
	margin: auto;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		
		padding-top: 25px;
		padding-bottom: 25px;
		
		


	}
	
	#row-2{
		margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	width: 95%;
	max-width: 1663px;
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
	overflow: hidden;

}

 #image-1{
			margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	text-align: center;
	float: left;
	width: 47%;
	 
	 
	 }
	 
	  #image-2{
			margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
text-align: center;
	float: right;
	width: 47%;
	 
	 
	 }


#caption {
max-width: 740px;
height: 50px;
padding-top: 30px;
	margin: auto;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		text-align: center;

}



		#more-campaigns{
	margin: auto;
	right: 0;
		left: 0;
		bottom: 0;
		top: 0;
		
		width: 100%;
		z-index:1;
  background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAF0lEQVQIW2NkYGCoB+JGIAYDRhiDeAEAPuoBBQUs7qUAAAAASUVORK5CYII=
    ) repeat;

	}
	
	#more-header {
		width: 100%;
		height: 45px;
		margin: auto;
		right: 0;
		left: 0;
		bottom: 0;
		top: 0;
		padding-top: 60px;

}

#more-header-copy {
	text-align: center;

}

#more-grid{
	
	max-width: 1024px;
	margin: auto;
		right: 0;
		left: 0;
		bottom: 0;
		top: 0;
		margin-top: 50px;
	
	
	}
	
	#more-grid-container{
	
	width: 100%;
	
	}
	




	
		#image-icons{
max-width: 1024px;
margin: auto;
		right: 0;
		left: 0;
		bottom: 0;
		top: 0;
		


	}
	
	#row-3{
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom:0;
	width: 670px;
		padding-top: 75px;
		padding-bottom: 50px;


	}



	#row-video{
	margin: auto;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	
		width: 100%;
	height: 100%;
	background-color: #f9f9f9;

	}
	
	#video{
	margin: auto;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 720px;
	padding-top: 100px;


	}
	
	
	 #image-0{
			margin: auto;
    top: -50px;
    left: 0;
    right: 0;
    bottom: 0;
	 z-index: 0;
	 position: fixed;
	 background-image:
	 url(images/images/images/campaigns_1.jpg);
	 background-repeat: no-repeat;
	 width: 100%;
	 max-height: 1200px;
	 background-size:cover;
	 background-position: center;
	 }
	 
	 
	 
	 
	 
	#next {
	position: fixed;
	top: 38%;
	right: 2%;
	z-index: 1000;
	cursor: pointer;

}

 #prev {
	position: fixed;
	top: 38%;
	left: 2%;
	z-index: 1000;
	cursor: pointer;

}



		
	
	.back-to-top {
position: fixed;
bottom: 0;
right: -0;
    text-decoration: none;
    color: #000000;
    background-color: #9e005d;
	height: 65px;
	width: 65px;
z-index: 1000;

}

#myVideo {
position: relative;
width: 60%; 
	margin-top: 50px;
	
}


#video-top{
	
  position: relative;
    text-align: center;
    color: white;

}

#video-watch{
	
  position: relative;
    text-align: center;
    color: white;
}
#type-notes {
max-width: 740px;
height: 150px;
padding-top: 30px;
	margin: auto;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		text-align: center;

}

@media only screen and (min-width: 1367px) {
	ul.img-list li:hover span.text-content {
  opacity: 1;
}

span.text-content {
  background: rgba(0,0,0,0.3);
  color: white;
  cursor: pointer;
  display: table;
  height: 18em;
  left: 0;
  position: absolute;
  top: 0;
  width: 18em;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}


span.text-content span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}



ul.img-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

ul.img-list li {
  display: inline-block;
  height: 18em;
  margin: 0 1.5em 3em 1.5em;
  position: relative;
  width: 18em;
}

		

}
	

	

	

@media only screen and (max-width: 1366px) {

  #next {
	position: fixed;
	overflow: hidden;
	top: 45%;
	right: 0%;
	z-index: 1000;
	cursor: pointer;

}

 #prev {
	position: fixed;
	overflow: hidden;
	top: 45%;
	left: 0%;
	z-index: 1000;
	cursor: pointer;

}


	#campaigns{
	position: absolute;
	z-index:10;
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	top: 85%;
	
	}
	
	#cover{
	z-index:10;
position: absolute;
	overflow: hidden;
	top: 33.5%;
	left: 58%;
	max-width: 400px;
	min-height: 500px;

	
		}
		ul.img-list li:hover span.text-content {
  opacity: 1;
}

span.text-content {
  background: rgba(0,0,0,0.3);
  color: white;
  cursor: pointer;
  display: table;
  height: 18em;
  left: 0;
  position: absolute;
  top: 0;
  width: 18em;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}


span.text-content span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}



ul.img-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

ul.img-list li {
  display: inline-block;
  height: 18em;
  margin: 0 1.5em 3em 1.5em;
  position: relative;
  width: 18em;
}

		


@media only screen and (max-width: 1024px) {
	.topnav2 {
 
	
	margin: auto;
	
	max-width: 1024px;
		padding-left: 10px;

	
}

	/* Right-aligned section inside the top navigation */
.topnav-right {
  float: right;
	margin-top:-2px;
	margin-right: 20px;
}
	#myVideo {
position: relative;
width: 95%; 
	margin-top: 50px;
	
}

	
	
	 #next {
	display: none;

}

 #prev {
	display: none;

}


	#more-grid-container{
	
	width: 95%;
	margin: auto;
	
	}
	
	#campaigns{
	position: absolute;
	z-index:10;
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	top: 100%;
	
	}
	

	 #row{
	margin-left: auto;
	margin-right: auto;
		width: 95%;
		padding-top: 25px;
		padding-bottom: 25px;


	}
	
		#cover{
	z-index:10;
position: absolute;
	overflow: hidden;
	top: 40%;
	left: 58%;
	max-width: 400px;
	min-height: 500px;

	
		}
		
			#more-campaigns{
	margin: auto;
	right: 0;
		left: 0;
		bottom: 0;
		top: 0;
		width: 100%;
		z-index:1;
	background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAF0lEQVQIW2NkYGCoB+JGIAYDRhiDeAEAPuoBBQUs7qUAAAAASUVORK5CYII=
    ) repeat;

	}
		#footer {
	min-height: 150px;
	background-color: #f9f9f9;
}
	ul.img-list li:hover span.text-content {
  opacity: 1;
}

span.text-content {
  background: rgba(0,0,0,0.3);
  color: white;
  cursor: pointer;
  display: table;
  height: 18em;
  left: 0;
  position: absolute;
  top: 0;
  width: 18em;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}


span.text-content span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}



ul.img-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

ul.img-list li {
  display: inline-block;
  height: 18em;
  margin: 0 1em 2em 1em;
  position: relative;
  width: 18em;
}

	#type-notes {
max-width: 740px;
height: 100px;
padding-top: 30px;
	margin: auto;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		text-align: center;

}
	



}

@media only screen and (max-height: 900px) {
	#campaigns{
	position: absolute;
	z-index:10;
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	top: 85%;
	
	}

			#cover{
	z-index:10;
position: absolute;
	overflow: hidden;
	top: 34%;
	left: 58%;
	max-width: 400px;
	min-height: 500px;

	
		}
	
		 #next {
	position: fixed;
	top: 45%;
	right: 2%;
	z-index: 1000;
	cursor: pointer;

}

 #prev {
	position: fixed;
	top: 45%;
	left: 2%;
	z-index: 1000;
	cursor: pointer;

}


}

@media only screen and (max-width: 768px) {

	
	#more-grid-container{
	
	width: 95%;
	margin: auto;
	
	}
	
	#campaigns{
	position: absolute;
	z-index:10;
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	top: 100%;
	
	}
	

	 
	 #row{
	margin-left: auto;
	margin-right: auto;
		width: 95%;
		padding-top: 0px;



	}
	
		#cover{
	z-index:10;
position: absolute;
	overflow: hidden;
	top: 40%;
	left: 45%;
	max-width: 400px;
	min-height: 500px;

	
		}
		
				#more-campaigns{
	margin: auto;
	right: 0;
		left: 0;
		bottom: 0;
		top: 0;
		width: 100%;
		z-index:1;
					padding-bottom: 15px;
	 background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAF0lEQVQIW2NkYGCoB+JGIAYDRhiDeAEAPuoBBQUs7qUAAAAASUVORK5CYII=
    ) repeat;

	}
	
	#footer {
	min-height: 150px;
	background-color: #f9f9f9;
}

ul.img-list li:hover span.text-content {
  opacity: 1;
}

span.text-content {
  background: rgba(0,0,0,0.3);
  color: white;
  cursor: pointer;
  display: table;
  height: 14em;
  left: 0;
  position: absolute;
  top: 0;
  width: 14em;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}


span.text-content span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}



ul.img-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

ul.img-list li {
  display: inline-block;
  height: 14em;
  margin: 0 .5em 1em .5em;
  position: relative;
  width: 14em;
}
	
	
	#cover-copy{
			
	max-width: 720px;

		}

	h16{color:#ffffff;
font-family:century-gothic, sans-serif;
font-size:18px;
line-height: 20px;
font-weight: bold;
text-align: center;


}

h17{color:#ffffff;
font-family:century-gothic, sans-serif;
font-size:14px;
line-height: 20px;
font-weight: lighter;
text-align: center;


}


#video{
	margin: auto;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 720px;
	padding-top: 100px;


	}
	
	#type-notes {
max-width: 740px;
height: 75px;
padding-top: 30px;
	margin: auto;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
		text-align: center;

}
	
	
}


	
		





/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}