/*
	  Course: IT-270
      Final Project
	  
	  Author: Nathan Fournier
	  Date: 01/21/2016
      Filename: style.css 
*/

* {
   margin: 0px;
   padding: 0px;
}

header, figure, hgroup, footer, article, nav, section {
   display: block;
}

body {
   background-color: gray;
   font-family: Verdana, Geneva, sans-serif;
}

html, body {
 height: 100%;
} 

header{
   background-color: #f8f8f8;
   position: relative;
   height: 150px;
}

header table{
	margin: 0px;
	padding: 0px;
	border: 0px;
}

header h1 {
	text-align:center;
	vertical-align: middle;
	font-size: 70px;
	font-style: italic;
	text-shadow: 2px 2px #00FF00;
}

section#main{
   background-color: lightgray;
   background-image: url(back2.png), url(back3.png);
   background-position: top right, top left;
   background-repeat: no-repeat;

   font-family: Verdana, Geneva, sans-serif;
   margin: 0px auto;
   min-height: 100%;
   position: relative;
   width: 900px;

   border-left: 1px solid gray;
   border-right: 1px solid gray;
}

article {
   width: 900px;
   min-height: 800px;
   border-left: 1px solid black;
   background-color: white;
}

article h3{
	padding-top: 20px;
}

img.logo{
	 float:left;
	 width: 100px; 
	 height:auto;
	 padding-top: 10px;
	 margin-left: 5px;
	 margin-right: 10px;
}

p {
	padding-left:10px;
	padding-right:20px;
	padding-bottom:20px;
}

p.storeDesc{
	margin-left: 10px;
	margin-right: 10px;
	padding-bottom: 20px;
	min-height: 60px;
}

ul {list-style: none;}


/* Navigation Style */
nav {
   margin-top: -3px;
}

nav ul {
   height: 20px;
   background-color: darkgreen;
   padding-left: 150px;
}

nav ul li {
   padding: 0px;
   float: left; 
   width: 15.5%; 
   line-height: 20px;
   height: 20px; 
}

nav ul li a {
   display: block; 
   text-align: center;
   width: 100%; 
   font-size: 10px; 
   text-decoration: none; 
   color: white;
}

nav ul li:hover {
   background-color: rgb(171, 171, 231);
   background-color: rgba(255, 255, 255, 0.4);
}

dl {
	margin-left: 10px;
}

dl dt {
	font-weight:bold;
}

dl dd {
	padding-bottom:20px;
}

footer {
	position: relative;
	bottom: 0;
    width: 900px;
    background-color: white;
    clear: left;
    color: black;
    font-size: 10px;
    height: 20px;
    line-height: 20px;
    border-top: 1px solid black;
    text-indent: 15px;
}