﻿@import url("layout.css");
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	background-image: url("../images/background2.gif");
	background-repeat: repeat;
	background-attachment: scroll;
}
#container {
	width: 700px;
	margin: 10px auto;
}
#masthead {
	text-align: center;
	width: 698px;
    border-radius: 10px;
	background: #5F3222;
	border-top:2px solid #815444;
	border-right:2px solid #3d1000;
	border-bottom:2px solid #3d1000;
	border-left:2px solid #815444;

}
#navigation {
	float: left;
	width: 148px;
	border-radius: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	background:transparent;
			
}
#content {
	float: left;
	width: 518px;
	border-radius: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	color: white;
	text-align:center;
	padding: 10px;
	border-top:2px solid #815444;
	border-right:2px solid #3d1000;
	border-bottom:2px solid #3d1000;
	border-left:2px solid #815444;
	background-color:#5F3222;
}
#footer {
	text-align: center;
	clear: inherit;
	width: 698px;
	border-radius: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: transparent;
}
/* Masthead Styles */
#masthead h1,h2 {
	font-family: Verdana;
	font-style: italic;
	font-weight: bold;
	color:  #fff;

}
#masthead h3 {
	color: #fff;
}
/* Navigation Styles */
#navigation ul {
	position:fixed;
	list-style-type: none;
	width: 148px;
	display: block;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
#navigation li {
	display: block;
	margin: 0;
	padding: 0;
	border: none;
	background-color: #3d1000;
	
}
#navigation a {
	text-decoration: none;
	display: block;
	width:148px;
	padding:2px;
	background: #5F3222;
	color:white;
	float: left;
	text-align: left;
	border-top:2px solid #815444;
	border-right:2px solid #3d1000;
	border-bottom:2px solid #3d1000;
	border-left:2px solid #815444;
}
#navigation a:hover {
	background:#a37666;
	color:#000;
	border-top:2px solid #815444;
	border-right:2px solid #c59888;
	border-bottom:2px solid #c59888;
	border-left:2px solid #815444;
}
}

/* Content Styles */
#content h1, h2, h3 {
	text-align: center;
	font-family: Verdana;
	font-style: italic;
	font-weight: bold;
	color:  #fff;

}


#content h4,h5,h6 {
	font-family: Verdana;
	font-style: italic;
	color: #fff;
}

#content img {
	padding: 5px;
	border: 1px solid #808080;
}

#content p {
	font-family: Verdana;
	color:  #fff;
}

/* Footer Styles */
#footer p {
	font-family: Verdana;
	margin-top: 5px;
}



 /* Style the Image Used to Trigger the Modal */
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
}

/* Modal Caption (Caption) */
.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)}
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}

mark { 
    background-color: #5F3222;
    color: white;
}

