/**
*	Style Name: Common Style Sheet
*	Description: This is Style Sheet used by websites.
*	Author: Ven Grollmus
*	Author URI: http://www.itsolutionsandmarketing.com/
*	Version: 1.0.1
*/

/* Fonts */
@import 'https://fonts.googleapis.com/css?family=Open+Sans';

/* Page Layout */
html {
    height: 100%
}

body {    
    background-color:black;
    padding: 10px;
    margin: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

header img {
    max-width: 100%;
    height: auto;
}

header h1 {
    text-align: center;
}

img.align_right {
    float: right;
    margin: 0 0 10px 10px;
    display: block;
}

#main {
    
    background-color:bisque;
    max-width: 960px;
    margin: 0 auto;
    height: 100%;
}

#content {
    margin: 10px;
}

#map {
    max-width:25%;
    height:180px;
    padding: 5px;
    margin: 5px;
}

#main footer {
    background-color: #996600;
    font-size: 11px;
    padding: 5px;
}

#second_footer {
    margin: 10px;
    color: white;
}

/* Padding */
.left-padding {
    padding-left: 30px;
}

/* Header Navigation Menu */
header nav {
    margin: 0;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin:0;
    background:#996600;
}

header nav ul li {
    display: block;
    position: relative;
    float: left;
    background: #996600;
}

header nav li ul {
    display: none;
}

header nav ul li a {
    display: block;
    padding:1em;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
}

header nav ul li a:hover {
    background: #2c3e50;
}

header nav li:hover > ul {
    display: block;
    position: absolute;
}

header nav li:hover li {
    float: none;
}

header nav li:hover a {
    background: #996600;
}

header nav.main-navigation li ul li {
    border-top: 0;
}

header nav ul ul ul {
    left: 100%;
    top: 0;
}

header nav ul:before,
ul:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

header nav ul:after {
    clear: both;
}

/* Footer Navigation Menu */
footer nav {
    margin: 0;
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin:0;
    background:#996600;
}

footer nav ul li {
    display: block;
    position: relative;
    float: left;
    background: #996600;
}

footer nav li ul {
    display: none;
}

footer nav ul li a {
    display: block;
    padding:1em;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
}

footer nav ul li a:hover {
    background: #2c3e50;
}

footer nav li:hover > ul {
    display: block;
    position: absolute;
}

footer nav li:hover li {
    float: none;
}

footer nav li:hover a {
    background: #996600;
}

footer nav.main-navigation li ul li {
    border-top: 0;
}

footer nav ul ul ul {
    left: 100%;
    top: 0;
}

fotter nav ul:before,
ul:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

footer nav ul:after {
    clear: both;
}