﻿/*
   Author: Kerry Cramer
   Date:   8/22/2014
   Filename:  mystyles.css
   
*/

/* Section Styles */

body {
margin: 10px;
padding: 0px;
line-height: 1.5em;
width: 98%;
max-width: 980px;
min-width: 250px;
background-color: aliceblue;
font-family: Verdana, Geneva, sans-serif
}

header {
width: 100%;
text-align: center;
}

haside {
   float:right;
   position: relative;
     left: -40px;
     top: 50px;
   border: 3px solid navy;
   background-color: rgb(151, 247, 236);
   margin: 3px;
   padding: 1px;
   border-radius: 20px;
   box-shadow: 10px 10px 5px #888888;
   -webkit-box-shadow:10px 10px 5px #888888;
   -moz-box-shadow: 10px 10px 5px #888888;
}

section {
width: 100%;
}

footer {
clear: left;
width: 100%;
text-align: center;
margin-top: 5px;
}

aside {
   float: right;
   border: 3px solid rgb(255, 177, 255);
   margin: 30px;
   padding: 10px;
box-shadow:10px 10px 20px #000;
-webkit-box-shadow:10px 10px 20px #000;
-moz-box-shadow: 10px 10px 20px #000;
}

aside img {
   display: block;
}

aside p {
   display: block;
   text-align: center;
   font-size: 0.8em;
}

footer address {
width: 100%;
clear: left;
font-size: 0.8em;
font-style: normal;
font-variant: small-caps;
border-top: 1px solid black;
background-color: rgb(255, 177, 255);
}

/* Block Styles */
h1, h2, h3, h4, h5, h6 {
font-family: Arial, Helvetica, sans-serif;
color: navy;
}

header h1 {
margin: 1em 0em;
font-size: 2em;
}

h2 {
margin: 1em 0em;
font-size: 1.5em;
}

header h1 {
margin: 0px;
}

header h2 {
font-size: 1.2em;
font-style: italic;
margin: 0em;
padding-bottom: 0.5em;
border-bottom:1px black solid;
}

article p {
margin: 0.2em 0.9em 0.7em 0em;
}

article ul {
margin: 0.1em 0.8em 0.5em;
}

article ul li {
margin-right: 0.5em;
}

button {
    background-color: navy;
    color:white;
    height: 1.4em;
    width: 6.8em;
}



