#about_container {
	width: 90%;
	overflow: hidden;
	margin: 15px auto;
	padding:5px;
	border:2px solid #e2b494;
}

#notes_container {
	width: 90%;
	overflow: hidden;
	margin: 15px auto;
	padding:5px;
	border:none;
}

#notes_container div {
	display:none;
	background-color:#f7c4a2;
	border-top:2px solid #ff6666;
	border-bottom:2px solid #ff6666;
	margin-bottom:3px;
	padding:5px;
}


/*photobanner   325x250  was 350*233*/

.photobanner {
	height:250px;/*233*/
	width:4300px;/*3550*/
	margin:5px 5px 20px 5px;
}

.photobanner img {
    border:1px solid black;
	margin:5px;
	-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 4px 6px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 4px 6px rgba(0,0,0,0.5);
	box-shadow: 0px 4px 6px rgba(0,0,0,0.5);
}


/*keyframe animations*/
.first {
	-webkit-animation: bannermove 10s linear infinite;
	-moz-animation: bannermove 10s linear infinite;
	-ms-animation: bannermove 10s linear infinite;
	animation: bannermove 10s linear infinite;
}

.photobanner:hover .first {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
     animation-play-state: paused;
}

@keyframes "bannermove" {
 0% {
    margin-left: 0px;
 }
 100% {
    margin-left: -2050px;/*2125*/
 }

}

@-moz-keyframes bannermove {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2050px;
 }

}

@-webkit-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2050px;
 }

}

@-ms-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2050px;
 }

}

@-o-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2050px;
 }

}
