﻿/* Page Style */
body {
	background-color: #ffffff;
	font-family: Vedana, sans-serif;
	color: #000000;
	font-size: 16px;
}
.empty {
	height: 15px;
}

/* Page Header */
.header {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}
.subheader {
	font-size: 20px;
	font-style: italic;
	text-align: center;
}

.footer {
	background-color: black;
	color: white;
	z-index: 10;
	position: fixed;
	bottom: 0px;
	width: 100%;
	padding-top: 12px;
	padding-bottom: 12px;
}
.footer a {
	display: block;
	text-decoration: none;
	color: white;
}
.footer ul {
	list-style: none;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
.footer ul li {
	float: left;
	padding-left: 12px;
}

/* Menu Style */
.menu {
	background-color: black;
	color: white;
}
.menu ul {
	list-style: none;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
.menu li {
	float: left;
}
.menu a, .dropdown-btn {
	display: inline-block;
    color: white;
    text-align: center;
    padding: 12px 12px;
    text-decoration: none;
}
.menu a:hover ,.dropdown:hover .dropdown-btn {
	background-color: red;
}
.menu .dropdown-content {
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
.menu .dropdown-content a {
	color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.menu .dropdown-content a:hover {
	background-color: #f1f1f1;
}
.menu .dropdown-content .curr-selection {
	color: #a1a1a1;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown-content {
	display: none;
}
