/*
   New Perspectives on HTML
   Tutorial 2
   Case Problem 2

   Fiddler Style Sheet
   Author: Tasha Juroszek 
   Date:   3/1/2014

   Filename:         fidstyles.css
   Supporting Files: none

*/

/* Section Styles */

body{
    background: lightskyblue;
    width: 98%;
    position: relative;
   
	margin: 0px auto;
}    
header{
    text-align: center;
    box-shadow: inset rgb(0, 51, 101) -5px -5px 10px;
}

/* Navigation List */
nav{
    float: left;
    margin-top: 15px;
    width: 13%;
    padding-right: 0px;
}
nav ul li {
	list-style: none;
}

nav ul li a{
	border-bottom: 1px solid rgb(182, 182, 92);
	color: rgb(51, 102, 0);
	display: block;
	line-height: 1.5em;
    text-decoration: none;
}

nav ul li:hover {
   background-color: rgb(228, 152, 154);
}
nav figure img{
    float: left;
    -o-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    transform: rotate(-30deg);
}

/*Multimedia control styles*/
audio {
    background-color: white;
    display: block;
    margin: 5px auto;
    width: 90%
}
nav video{
    width: 100%;
    height: 100%;
}
/* Section styles */
section {
	float: left;
	width: 60%;
	padding-left: 30px;
}

/* Article styles */
article {
   background-color: gray;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 15px;
	margin: 15px 0px;
	-moz-border-radius: 20px;
	-webkit-border-radius:20px;
	border-radius: 20px;
}

article h1 {
	text-align: center;
	text-transform: uppercase;
	font-weight: normal;
	margin-bottom: 10px;
}

article p {
	font-size: smaller;
	margin-bottom: 15px;
}

article figure {
	float: right;
	text-align: center;
	width: 18%;
	margin: 0px 5px 10px 15px;
}

article img {
	width: 100%;
	height: auto;
}

article figcaption {
	font-size: 10px;
	font-style: italic;
}

article ul {
	font-size: smaller;    
	margin-left: 2em;
	line-height: 1.8em;
}
article iframe {
    float: center;
}

/* Links2 Navigation styles */
aside {
	float: right;
	width: 20%;
    padding-right: 0px;
	margin-left: 2px;
}

aside h1 {
	color: red;
	font-weight: normal;
	font-variant: small-caps;
	text-align: center;
}

aside ul li {
	list-style: none;
}

aside ul li a{
	border-bottom: 1px solid rgb(182, 182, 92);
	color: rgb(51, 102, 0);
	display: block;
	line-height: 2.2em;
    text-decoration: none;
}
aside img {
    width: 250px;
    height: 250px;
}
aside figure{
    -ms-tranform: rotate(30);
    transform: perspective(150) rotateX(30deg);
}
aside video{
    width: 100%;
    height: 100%;
}
/* Figure Box Styles */

figure {
   float: center;
   margin: 20px;
   width: 500px;
}

/* Footer styles */
footer {
    clear: left;
	width: 100%;
	background-color: rgb(51, 102, 0);
	text-align: center;
	margin-top: 25px;
	padding-bottom: 20px;
}

footer address {
	font-style: strong;
	color: white;
	font-size: 15px;
}