﻿.navbar {
    overflow: hidden;
    background-color: navy;
    font-family:"Palatino Linotype";
}

.navbar a {
    float: left;
    font-size: 12px;
    color: white;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 12px;    
    border: none;
    outline: none;
    color: white;
    padding: 10px 20px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: red;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: navy;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: red;
}

.dropdown:hover .dropdown-content {
    display: block;
}


body {
	color: #000;
	font-family: "Palatino Linotype";
	font-size: medium;
	font-style: normal;
	background-color: white;
}

#masthead {
	width: auto;
	margin: 0;
	padding: 0;
	overflow: auto;
}

#masthead {
	text-align: right;
	width: 100%;
	background-color: white;
}

#masthead img {
	float: left;
	margin: 0;
	padding: 0;
}
/* Styles for Header */
#masthead p {
	font-size: small;
	text-align: right;
	color: #000;
	margin: 10px 10px 10px 0;
	padding: 0;
}
#footer {
	width: auto;
	clear: both;
	overflow: auto;
}
/* Styles for Footer */
#footer p {
	font-size: x-small;
	text-align: center;
	color: #393939;
	margin: 10px;
	padding: 1px;
}

#footer a {
	color: #393939;
	text-decoration: underline;
}

/* Styles for table */
.style-0 {
	font-size:small;
}
.style-1 {
	border: 1px solid #000080;
	background-color: #000080;
}
.style-1a {
	border: 1px solid red;
	background-color: red;
}
.style-2 {
	color: #FFFFFF;
	text-align:center;
}
.style-2a {
	color: #FFFFFF;
	text-align:left;
}
.style-3 {
	font-size:x-small;
}
.style-4 {
	border: 1px solid #000080;
}
.style-5 {
	text-align: right;
}
.style-10 {
	text-align: right;
}
.style-11 {
	text-align: left;
}
.style-12 {
	text-align: center;
	font-weight:bold;
	font-family:"Times New Roman";
}
div.gallery {
    border: 1px solid #ccc;
}

div.gallery:hover {
    border: 1px solid #777;
}

div.gallery img {
    width: 100%;
    height: auto;
}

div.desc {
    padding: 15px;
    text-align: center;
}

* {
    box-sizing: border-box;
}

.responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
}

@media only screen and (max-width: 700px){
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px){
    .responsive {
        width: 100%;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}