/*
   New Perspectives on HTML and CSS
      
      Final Project
      Author: Jeff Lawrence
      Date: 04/01/2016   
		
		General Style Sheet
      Filename: Oscar.css
      Supporting files: None

*/


/* Default styles */

* {
   margin: 0px;
   list-style: none;
}

header, section, footer, nav {
   display: block;
}

/* Figure Sytles */

figure {
	float: right;
}
	
	
	

/* Body styles */
body {
   background-color: white;
   font-family: Verdana, Geneva, sans-serif;
   margin: 0px auto;
   width: 1000px;
}

/* Header styles */

header {
   background-color: rgb(215, 205, 151);
   border-bottom: 1px solid rgb(105, 177, 60);
   color: white;
}

header h1 {
	text-align: center;
   color: white; 
   background-color: rgb(105, 177, 60);
   font-size: 1.1em; 
   padding: 5px 0px 5px 12px;
}

header h2 {
	text-align: center;
   color: white; 
   background-color: rgb(105, 177, 60);
   font-size: 1.0em;
}



/* Navigation list styles */

header nav ul li a {
	text-decoration: none; 
   color: rgb(105, 177, 60);
}

/* Main section styles */

#main {
   float: left;
   width: 1000px;   
}

#main hgroup h2 {
   color: white;  
   background-color: rgb(153, 0, 153);
   font-size: 1.1em; 
   letter-spacing: 5px;
   padding: 5px 0px 5px 12px;
}

#main p {
   line-height: 1.4em;
   margin: 15px;
}

/*

/* Aside styles */

aside {
   border: 1px solid rgb(153, 0, 153);
   -moz-border-radius: 20px;
   -webkit-border-radius: 20px;
   border-radius: 20px;
   float: top;
   margin: 5px 0px 10px 15px;
   width: 250px;
}

aside#current {
   background-color: rgb(218, 210, 218);
}

aside#current p {
   border-left: 4px solid rgb(153,0,153);
   font-size: 0.9em;
}

aside h1 {
   background-color: rgb(153,0,153);
   -moz-border-radius: 10px;
   -webkit-border-radius: 10px;
   border-radius: 10px;

   color: white; 
   font-size: 0.9em; 
   text-align: center;
   margin: 10px;
}

aside h2 {
   color: black; 
   text-align: left; 
   font-size: 0.9em; 
   line-height: 0.95;
   margin: 15px;
}

aside p {
   border-left: 4px solid rgb(255,202,255);
   font-size: 0.7em; 
   padding: 0px 0px 0px 5px; 
   margin: 10px 25px;
}


/* Footer styles */   

footer {
   clear: left;
   padding-top: 10px;
}

footer address {
   font-size: 1.0em;
   font-style: normal;
   text-align: center;
   color: white;
   background-color: rgb(105, 177, 60);
   margin: 20px 0px;
}
