/*
   New Perspectives on HTML, CSS, and JavaScript
   Final Project: Animation

   Animation

   Author: Josh Robertson     
   Date:   August 28, 2015     
   Filename:  AnimStyle.css, AirVehicle.jpg

*/


/* Header Styles */

h1 {
   display: block;
   color: black;
   font-family: Times;
   font-size: 36px;
   text-align: center;
   height: 200px;
   margin-top: -20px;
   background: url(AirVehicle.jpg);
   background-repeat: no-repeat;
   background-position: 80% 45%;
   background-size: 800px 400px;
}


/* Navigation Styles */

nav.horizontal {
   margin-top: -23px;
   padding-left: 17%;
   padding-top: 0%;
}

nav.horizontal ul {
   height: 22px;
   background-color: rgb(40, 40, 130);
   border-radius: 40px 40px 40px 40px;
   width: 75%;
}

nav.horizontal ul li {
   padding: 0px;
   float: left; 
   width: 11.6%; 
   line-height: 22px;
   height: 20px; 
}

nav.horizontal ul li a {
   display: block; 
   text-align: center;
   width: 73%; 
   font-size: 10px; 
   font-family: Century Gothic;
   text-decoration: none; 
   color: white;
}

nav.horizontal ul li:hover {
   background-color: rgba(255, 255, 255, 0.6);

}


/* Section Styles */


section {
   font-size: 20px;
   display: block;
   width: 30%;
   height: 430px;
   float: right;
   background-color: rgb(80, 80, 130);
   border: 3px
	   solid
	   black;
   border-radius: 40px 40px 40px 40px;
   pading-right: 15%;
}


/* Article Styles */

article {
   font-size: 20px;
   display: block;
   padding-left: 5%;
   padding-right: 50%;
   padding-top: 3%;
}


/* Object Styles */

object {
   padding-left: 5%;
}


