.banner{
	background-color: hsl(0,0%,100%);
	height: 60px;
	position: fixed;
	width: 100%;
	z-index: 100;
	
	-webkit-transform: translateZ(1000px);
	-webkit-transform-style: preserve-3d;
}

.white-backing{
	background-color: white;
	position: absolute;
	top: 0;
	width: 100%;
	height: 60px;
	z-index: 1;
}

.logo{
	z-index: 4;
	cursor: pointer;
	display: inline-block;
	float: left;
	
	padding: 0px;
	margin: 10px;
	width: 40px;
	height: 40px;
	
	border: 0 solid black;
	
	transform: scale(1,1);
	-webkit-transform: scale(1,1);
}

/*Hyper links & drop down list*/

.nav-container{
	display: flex;
}

/* parent nav button */
.nav-button{
	z-index: 3;
	float: left;
	position: relative;
	cursor: pointer;
	display: block;
	width: 150px;
	height: 60px;
	flex-shrink: 1;
	
	line-height: 60px;
	background-color: hsl(0, 0%, 100%);
	text-align: center;
	font-family: verdana;
	font-size: 13px;
	color: hsl(0,0%,40%);
	
	-webkit-animation-name: nav-button-leave;
    -webkit-animation-duration: 0.5s;
	-webkit-animation-direction: normal;
	-webkit-animation-fill-mode: forwards;
	
	animation-name: nav-button-leave;
    animation-duration: 0.5s;
	animation-direction: normal;
	animation-fill-mode: forwards;
	
	transform: scale(1,1);
	
	transition: transform 0.15s;
	-webkit-transition: transform 0.15s;
}

/* This div is placed over the swf logo to let the link activate */
.home-button-link{
	position: absolute;
	width: 100%;
	height: 100%;
}

@keyframes nav-button-leave{
    0%{
		background-color: hsl(0, 0%, 95%);
	}
    
	100%{
		background-color: hsl(0, 0%, 100%);
	}
}
@-webkit-keyframes nav-button-leave{
    0%{
		background-color: hsl(0, 0%, 95%);
	}
	
	100%{
		background-color: hsl(0, 0%, 100%);
	}
}

.nav-button:hover{
	background-color: hsl(0, 0%, 95%);
	
	-webkit-animation-name: nav-button-hover;
    -webkit-animation-duration: 0.25s;
	-webkit-animation-direction: normal;
	-webkit-animation-fill-mode: forwards;
	
	animation-name: nav-button-hover;
    animation-duration: 0.25s;
	animation-direction: normal;
	animation-fill-mode: forwards;
}

.nav-button:active{
	transform: scale(0.9,0.9);
	
	transition: transform 0.15s;
	-webkit-transition: transform 0.15s;
}

@keyframes nav-button-hover{
    0%{
		background-color: hsl(0, 0%, 100%);
	}
	
	100%{
		background-color: hsl(0, 0%, 95%);
	}
}
@-webkit-keyframes nav-button-hover{
    0%{
		background-color: hsl(0, 0%, 100%);
	}
	
	100%{
		background-color: hsl(0, 0%, 95%);
	}
}

.dropdownlist{
	position: relative;
	padding: 0 0 0 0;
	background-color: white;
	top: -1000px;
	z-index: 2;
	opacity: 0;
	
	transition: opacity 0.5s;
	-webkit-transition: opacity 0.5s;
}

.nav-button:hover :first-child{
	top:0px;
	opacity: 1;

	transition: opacity 0.25s;
	-webkit-transition: opacity 0.25s;
}

.dropdownbutton{
	cursor: pointer;
	display: block;
	width: 100%;
	height: 60px;
	
	line-height: 60px;
	text-align: center;
	font-family: 'Karla', sans-serif;
	font-size: 16px;
	line-height: 60px;
	color: black;
}

.dropdownbutton:hover{
	background-color: hsl(0, 0%, 95%);
}

/*end drop down list*/

.horizontal-gradient{
	position: relative;
	z-index: 1;
	height: 4px;
	width: 100%;
	background-color: #00CCFF;
	/*background: -webkit-linear-gradient(right,#00CCFF,#007A99,#00CCFF);
	background: -o-linear-gradient(left,#00CCFF,#007A99,#00CCFF);
	background: -moz-linear-gradient(left,#00CCFF,#007A99,#00CCFF);
	background: linear-gradient(to left,#00CCFF,#007A99,#00CCFF);*/
}

.background{
	background-color: hsl(0,0%,90%);
	background-image: url("/Images/curls.png");
	background-size: 1000px;
	padding: 70px 0 30px 0;
}

.center{
	position: relative;
	width: 100%;
	max-width:960px;
	margin: 0px auto;
	height: 100%;
}

.content{
	position: relative;
	top: 10px;
	min-height: 500px;
	padding: 0 0 50px 0;
	/*background-color: hsl(0, 0%, 85%);*/
	border: 0px solid black;
	border-radius: 25px;
}

.white-container{
	position: relative; 
	width: 100%; 
	z-index:10; 
	background-color: white; 
	box-shadow: 0px 2px 11px hsla( 0, 0%, 0%, 0.15);
	border: 0px solid white; 
	border-radius: 10px;
	padding: 20px 0px;
}

.gray-container{
	background-color: hsl(0,0%,95%);
	min-height: 100px;
	padding: 20px;
}

.item{
	z-index:2;
	position: relative;
	cursor: pointer;
	background-color: hsl(0, 0%, 95%);
	margin: 0px 0px 40px 0px;
	/*padding: 20px;*/
	width: calc(100% -20px);
	max-width: 960px;
	min-height: 10px;
	overflow: hidden;
	
	/*border: 0px solid black;*/
	border-radius: 0px;
	
	-ms-transform: scale(1,1);
	-webkit-transform: scale(1,1);
	transform: scale(1,1);
	
	-webkit-box-shadow: 0px 0px 0px 0px hsla(0,0%,0%,0.1);
	-moz-box-shadow:    0px 0px 0px 0px hsla(0,0%,0%,0.1);
	box-shadow:         0px 0px 0px 0px hsla(0,0%,0%,0.1);
	
	transition: border-radius 0.5s, -ms-transform 0.5s, -webkit-transform 0.5s, transform 0.5s, -webkit-box-shadow 0.5s, -moz-box-shadow 0.5s, box-shadow 0.5s;
}

html{
    max-width: 100%;
    overflow-x: hidden;
}

.item-divider{
	position: relative;
	z-index: 1;
	height: 2px;
	width: 100%;
	background: -webkit-linear-gradient(right,hsl(0,0%,95%),hsl(0,0%,85%),hsl(0,0%,95%),hsl(0,0%,85%),hsl(0,0%,95%),hsl(0,0%,85%),hsl(0,0%,95%));
	background: -o-linear-gradient(left,hsl(0,0%,95%),hsl(0,0%,85%),hsl(0,0%,95%),hsl(0,0%,85%),hsl(0,0%,95%),hsl(0,0%,85%),hsl(0,0%,95%));
	background: -moz-linear-gradient(left,hsl(0,0%,95%),hsl(0,0%,85%),hsl(0,0%,95%),hsl(0,0%,85%),hsl(0,0%,95%),hsl(0,0%,85%),hsl(0,0%,95%));
	background: linear-gradient(to left,hsl(0,0%,95%),hsl(0,0%,85%),hsl(0,0%,95%),hsl(0,0%,85%),hsl(0,0%,95%),hsl(0,0%,85%),hsl(0,0%,95%));
}

@media all and (min-width: 800px) {
	.item:hover{
		-webkit-transform: scale(1.03,1.03);
		-ms-transform: scale(1.03,1.03);
		transform: scale(1.03,1.03);
				
		-webkit-box-shadow: 0px 0px 50px 0px hsla(0,0%,0%,0.1);
		-moz-box-shadow:    0px 0px 50px 0px hsla(0,0%,0%,0.1);
		box-shadow:         0px 0px 50px 0px hsla(0,0%,0%,0.1);
		
		border-radius: 15px;
		
		transition: border-radius 0.5s, -ms-transform 0.5s, -webkit-transform 0.5s, transform 0.5s, -webkit-box-shadow 0.5s, -moz-box-shadow 0.5s, box-shadow 0.5s;
	}
}

.update-title{
	font-size: 18px;
	color: hsl(0,0%,20%);
}

.googleform{
	height: 106px;
	
	transition: height 1s;
}

.googleform:hover{
	height: 420px;
	
	transition: height 1s;
}

@media all and (min-width: 0px) {
	.googleform:hover{
		height: 500px;
		
		transition: height 1s;
	}
}

@media all and (min-width: 400px) {
	.googleform:hover{
		height: 450px;
		
		transition: height 1s;
	}
}

@media all and (min-width: 690px) {
	.googleform:hover{
		height: 430px;
		
		transition: height 1s;
	}
}

.button{
	display: inline-block;
}

.button:hover{
	cursor: pointer;
}

.space{
	height: 100px;
}

.footer-background{
	height: 100%;
	background-image: url(Images/squares.jpg);
	background-attachment: fixed;
}


