

html{
  padding: 0;
     font-family: 'Old Standard TT', serif;
    
    }
 
body {
	
	background: url('dark_geometric.png');
	background-color:white;
}
 
#container {
	width: 2000px;
	
	}
	
 
 #logo{float:left;
margin-left: 75px;
margin-top:25px;
padding-bottom: 3px;
 }
 
 
 /*header*/

  .blocktext {
	  
    width:100%;
    text-align:center;	
    margin-left: 200px;
    margin-right: auto;
    font: 'Old Standard TT', serif;
    color:green;        
	}
  	 
  	 
  .bannercontainer{
  margin-top:10px;  
  height:350px;
  width:100%;
  
  background-color:green;
  padding-top: 10px;
  padding-bottom:3px;
 }
 
  	 
/*photobanner*/
 
.photobanner {
	
	height: 320px;
	width: 100%;
	overflow:hidden;


	}
	
footer{
  font-family: 'Old Standard TT', serif;
	font-size:.75em;
}

/*keyframe animations*/
.first {
	-webkit-animation: bannermove 30s linear infinite;
	   -moz-animation: bannermove 30s linear infinite;
	    -ms-animation: bannermove 30s linear infinite;
	     -o-animation: bannermove 30s linear infinite;
	        animation: bannermove 30s linear infinite;
}
 
@keyframes "bannermove" {
 0% {
    margin-left: 0px;
 }
 100% {
    margin-left: -800px;
 }
 
}
 
@-moz-keyframes bannermove {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -800px;
 }
 
}
 
@-webkit-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -800px;
 }
 
}
 
@-ms-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -800px;
 }
 
}
 
@-o-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left:-800px;
 }
 
}


 
.photobanner img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
 
.photobanner img:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	cursor: pointer;
 
	-webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
	box-shadow: 0px 3px 5px rgba(0,0,0,0.2);
}