body {
	background-color: #FFFFFF;
	font-family: helvetica, arial, sans-serif;
	margin: 0;
	padding: 0;
}

#main {
	background-color: #DDDDDD;
	height: 100%;
	width: 100%;
	position: fixed;
	overflow: auto;
}

.sectionframe_tan {
	background-color: #827E74;
	color: #EEEEEE;
	height: auto;
	width: 100%;
	border-top: 5px solid #555555;
	border-bottom: 5px solid #555555;
	box-shadow: 0px 6px 10px 8px #777777;
	position: relative;
}

.section_tan {
	height: auto;
	width: 600px;
	min-width: 600px;
	margin: 0 auto;
}

.sectionframe_grey {
	background-color: #DDDDDD;
	color: #524E44;
	height: auto;
	width: 100%;
}

.section_grey {
	height: auto;
	width: 600px;
	min-width: 600px;
	margin: 0 auto;
}

.section_grey_gallery {
	height: auto;
	width: 1200px;
	min-width: 600px;
	margin: 0 auto;
}

.text_large {
	font-size: 30px;
	font-weight: bold;
}

.text_medium {
	font-size: 16px;
	font-weight: normal;
}

.text_small {
	font-size: 14px;
	font-weight: normal;
}

.text_center {
	text-align: center;
}

.text_formlabel {
	font-size: 14px;
	font-weight: bold;
	display: inline-block;
	padding-bottom: 3px;
}

input[type="text"], textarea {
	width: 60ex;
	background-color: #EAE5E2;
	font-size: 14px;
	font-weight: normal;
	color: #524E44;
	font-family: helvetica, arial, sans-serif;
}

input[type=submit] {
	background-color: #EAE5E2;
	color: #524E44;
	height: 30px;
	width: 100px;
	border: 1px solid #555555;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
}

input[type=submit]:hover {
	background: #F4F0E7;
}

.link_grey {
	text-decoration: none;
	color: #EEEEEE;
}

.link_grey:hover {
	text-decoration: none;
	color: #FFFFFF;
}

.link_tan {
	text-decoration: none;
	color: #524E44;
}

.link_tan:hover {
	text-decoration: none;
	color: #A49888;
}

.gallery_image {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
	max-height: 150px;
	max-width: 550px;
}

.gallery_image:hover {
	opacity: 0.6;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.75);
}

.modal_format {
    margin: auto;
    display: block;

    max-width: 500px;
	max-height: 600px;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 600px;
    text-align: center;
    color: #CCCCCC;
    padding: 10px 0;
    height: 350px;
}

.modal_format, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.3s;
    animation-name: zoom;
    animation-duration: 0.3s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}