/* CSS RESET */

    /* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

	html, body, div, span, applet, object, iframe,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	b, u, i, center,
	dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td,
	article, aside, canvas, details, embed, 
	figure, figcaption, footer, header, hgroup, 
	menu, nav, output, ruby, section, summary,
	time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}

/* HTML5 display-role reset for older browsers */

	article, aside, details, figcaption, figure, 
	footer, header, hgroup, menu, nav, section {
		display: block;
	}

	body {
		line-height: 1;
	}

	ol, ul {
		list-style: none;
	}

	blockquote, q {
		quotes: none;
	}

	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none;
	}

	table {
		border-collapse: collapse;
		border-spacing: 0;
	}

/* MY CSS */

	body {
		background: #424949;
        font-family: "Palatino Linotype", Palatino, "Times New Roman", serif;
	}

    #title {
    	width: 80%;
    	background: #000000;
    	display: block;
    	margin: auto;
    	padding-top: 30px;
    	padding-bottom: 30px;
    	margin-top: 20px;
    	margin-bottom: 15px;
    	border-top-left-radius: 20px;
    	border-top-right-radius: 20px;
        border: 1px solid #AF7AC5;
        box-shadow: 0px 5px 5px black;
    }

    #menu {
    	width: 80%;
    	cursor: default;
    	background: #000000;
    	display: block;
    	margin: auto;
    	padding-top: 20px;
    	padding-bottom: 20px;
    	text-align: center;
        border: 1px solid #AF7AC5;
        box-shadow: 0px 5px 5px black;
    }

    #menu a {
        color: #FFFFFF;
        text-decoration: none;
        text-transform: uppercase;
        cursor: default;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    #menu a:hover {
        color: #000000;
        background: #FFFFFF;
    }

    h1 {
        font-family: 'Pacifico', cursive;
        font-weight: bold;
        font-size: 4em;
        color: #FFFFFF;
        text-align: center;
        cursor: default;
    }

    .content {
    	width: 80%;
    	background: #AF7AC5;
    	display: block;
    	margin: auto;
    	margin-top: 15px;
    	margin-bottom: 15px;
        border: 1px solid #000000;
        border-top-left-radius: 20px;
        border-bottom-right-radius: 20px;
        box-shadow: 0px 5px 5px black;
    }

    .contentHeader {
    	font-size: 1.25em;
        font-family: Helvetica, Arial, sans-serif;
        font-weight: bold;
    	padding-top: 20px;
    	padding-left: 20px;
        padding-bottom: 10px;
    }

    .date {
    	font-style: italic;
        font-weight: normal;
    	padding-right: 20px;
        float: right;
        font-family: "Palatino Linotype", Palatino, "Times New Roman", serif;
    }

    p {
    	padding-top: 10px;
    	padding-left: 40px;
        padding-right: 40px;
    	padding-bottom: 10px;
        line-height: 1.6;
    }

    #footer {
    	width: 80%;
        font-family: Helvetica, Arial, sans-serif;
    	cursor: default;
    	background: #000000;
    	display: block;
    	margin: auto;
    	padding-top: 20px;
    	padding-bottom: 20px;
        margin-bottom: 20px;
    	border-bottom-left-radius: 20px;
    	border-bottom-right-radius: 20px;
        border: 1px solid #AF7AC5;
        box-shadow: 0px 5px 5px black;
    }

    #bottomTable {
        width: 100%;
    }

    #bottomTable td {
        text-align: center;
        color: #FFFFFF;
        line-height: 1.6;
    }

    .standardImage {
        width: 50%;
        margin-bottom: 20px;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        border: 1px solid #000000;
    }

    ul {
        list-style-type: square;
        margin: 15px;
        padding-left: 40px;
        line-height: 1.6;
    }

    /* Set the size of the div element that contains the map */
      #map {
        height: 400px;  /* The height is 400 pixels */
        width: 60%;  /* The width is the width of the web page */
        display: block;
        margin: auto;
        margin-top: 10px;
        margin-bottom: 20px;
        border: 1px solid #000000;
       }