/*
 IT-270
 Web Design Project

 Divemaster Dan HPage2 Stylesheet
 Author: Jacob Talbot
 Date:   23 March 2016

 Filename: pcpage2.css

 Supporting files: dnspage.html, corals.png

*/

/* Page Body Styles */

body {
	background: black url(../media/corals.png) top left no-repeat;
	background-size: 1400px 400px;
	position: relative;

	width: 95%;
	min-width: 1000px;
	max-width: 1400px;
     }

/* Navigation List Style */

nav a {
	text-decoration: none;
      }

/* Horizontal Navigation List */

nav.horizontalNAV {
	margin-left: 33%;
	width: 66%;
	}

nav.horizontalNAV li {
	font-size: 87.5%;
	float: left;
	padding: 15px 0px;
	text-align: center;
	width: 20%;
	}

nav.horizontalNAV li a {
	color: rgb(255, 255, 99);
	}
	
nav.horizontalNAV li a:hover {
	color: white;
	}

/* Prices Section */

#prices {
	clear: left;
	float: left;
	margin-left: 33%;
	width: 40%;
	}

#prices h1 {
	color: rgb(255, 255, 99);
	font-family: 'Pacifico', 'Lucida Calligraphy', cursive;
	font-size: 158%;
	font-weight: bold;
	margin: 10px 0px 0px 10px;
	}

/* Vertical Navigation List */

nav.verticalNAV {
	float: left;
	margin-left: 3%;
	width: 23%;
	}

nav.verticalNAV a {
	border-bottom: 1px solid rgb(245, 245, 95);
	color: rgb(245, 245, 95);
	display: block;
	line-height: 2.2em;
	}

nav.verticalNAV a:hover {
	background-color: rgb(105, 96, 87);
	background-color: rgba(255, 255, 255, 0.3);
	}

/* Story Section Style */

#story {
	background-color: gray;
	background-color: rgba(255, 255, 255, 0.8);
	clear: left;
	float: left;
	margin: 20px 0px 0px 33%;
	width: 66%;
       }

#story article {
	border-right: 1px solid black;
	float: left;
	width: 50%;
	}

#story article hgroup {
	background: rgb(97, 30, 2);
	
	-o-background-size: contain;
	-moz-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;

	color: rgb(145, 98, 78);
	color: rgba(255, 255, 255, 0.3);

	height: 90px;
	text-ident: 10px;
	}

#story article hgroup h1 {
	font-size: 158%;
	letter-spacing: 3px;
	}

#story article hgroup h2 {
	font-size: 105%;
	}

#story article p {
	font-size: 80%;
	margin: 10px;
	}

#story figure {
	float: left;
	width: 49%;
	}

#story figure img {
	border: 5px inset rgb(145, 98, 78);
	display: block;
	margin: 30px auto 10px;
	width: 80%;
	}

#story figure figcaption {
	font-size: 75%;
	font-style: italic;
	text-align: center;
	}

/* Header Style */

header {
	position: absolute;
	top: 20px;
	left: 0px;
       }

/* Aside Style */

aside {
	color: rgb(145, 98, 78);
	
	position: absolute;
	top: 400px;
	left: 10px;

	width: 30%;
      }

aside h1 {
	font-size: 105%;
	font-weight: bold;
	margin-bottom: 25px;
	text-align: center;
	 }

aside h2 {
	font-size: 85%;
	font-weight: bold;
	 }

aside p {
	font-size: 75%;
	margin: 15px;
	}

footer {
	clear: left;
	margin-left: 33%;
	width: 66%;
       }

Footer address {
	color: rgb(245, 245, 95);
	font-size: 80%;
	font-style: normal;
	padding-top: 10px;
	text-align: center;
	}