/*Main elements styling*/
body {
    width: 100%;
    min-width: 385px;
    max-width: 800px;
    margin: auto;
    display: block;
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
    font-size: 12px;
}

section {
    margin: 5px 10px;
}

a {
    text-decoration: none;
    color: #7A7A7A;
}

/*Header styling*/
.headerwrap {
    background-color: silver;
}

header {
    width: 100%;
    display: inline-block;
}

nav {
    display: none;
    padding-bottom: 5px;
    background-color: silver;
}

nav a {
    display: block;
    text-align: right;
    margin: 5px 14px;
    padding: 5px 0px;
    font-size: 1.2em;
    color: black;
    text-decoration: none;
}

button.navdropdown {
    width: auto;
    height: auto;
    margin-top: 10px;
    margin-right: 9px;
    
    background: none;
    border: none;
    outline: none;
    font-size: 1.5em;
}

header h1 {
    margin-left: 10px;
    font-size: 1.5em;
}

/*Footer styling*/
footer {
    height: 60px;
    background-color: silver;
    -webkit-transform: preserve-3d;
    -ms-transform: preserve-3d;
    transform-style: preserve-3d;
}

address {
    font-style: normal;
    width: 50%;
}

footer article a{
    text-align: right;
    font-size: 1.5em;
    padding: 0px 3px;
}

/*Classes*/
.spacer {
    margin: 0px 10px;
}

.centerV {
    position: relative;
	top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.left {
    display: inline-block;
    float: left;
}
.right {
    display: inline-block;
    float: right;
}