#companylogo {position:absolute; width: 980px;top: 75px; left: 125px;
border-radius:40px;}

#bannerphoto { position:absolute; width: 980px; left: 135px; top:145px; -moz-border-radius:10px; -webkit-border-radius:10px; 
border-radius:10px;}

.clear {
   clear:both;    
}

.test {
color:tan;
   width:1000px;
   text-align:center; 
   border-style:outset;
   border:1px solid tan;
   font-size: 24px;
   font-weight: bold;
   margin-top:400px;
   margin-left:110px;}
   

a:link {color: tan;}      /* unvisited link */
a:visited {color:tan;}  /* visited link */
a:hover {color:blue;}  /* mouse over link */
a:active {color:#0000FF;}  /* selected link */


.test a {
    display:block;
    float:left;
    width:25%;
}

#cowboy{position:absolute; width:400; height:600;left:440px; padding-top:20px;}

* {margin: 0; padding: 0;}
 
body {
    <!-- src: http://subtlepatterns.com/?p=1045 -->
    background: url('greypaper.jpg');
}
 
#container {
    width: 1000px;
    overflow: hidden;
    margin: 50px auto;
    background: white;
}

/*header*/
header {
    width: 800px;
    margin: 40px auto;
}
 
header h1 {
    text-align: center;
    font: 100 60px/1.5 Helvetica, Verdana, sans-serif;
     
}
 
header p {
    font: 100 15px/1.5 Helvetica, Verdana, sans-serif;
    text-align: justify;
}
 
/*photobanner*/
 
.photobanner {
    height: 100px;
    width: 350px;
    margin-bottom: 80px;
}

/*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: -2125px;
 }
 
}
 
@-moz-keyframes bannermove {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2125px;
 }
 
}
 
@-webkit-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2125px;
 }
 
}
 
@-ms-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2125px;
 }
 
}
 
@-o-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -2125px;
 }
 
}

.photobanner {
    height: 233px;
    width: 3550px;
    margin-bottom: 80px;
}
 
.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);

