#page{
	width:auto;
	margin:auto;
	max-width:1024px;
	padding-bottom:100px;
}

#page a{
	color:#8CBF44;
}

#blogtitle{
	margin:0 auto 3em auto;
	display:block;
	padding: 0 17px;
}

#blogtitle h1{
	margin:15px 0;
}

#blogtitle h2{
	font-size: 1.3em;
}

.date{
	color: rgba(0,0,0,0.48);
	padding-right:15px;
}

#blogtitle a{
	color:#8CBF44;
}

.page-content, .page-content-img{
	padding:0 17px 17px 17px;
	margin:auto;
}

.page-content p{

}

.page-content-img{
	text-align:center;
}

#headerimg {
    max-width: 922px;
	text-align:center;
    margin: 0 auto;
    /*overflow: hidden;
    max-height: 303px; */
}

#headerimg img{
	width:100%;
	text-align:center;
    height: auto;
    max-height: 303px;
}

.page-content ol{
	margin-left:-15px;
}

.page-content li{
	margin-bottom:10px;
}

.page-content .quoteblock{
	font-family:inherit;
	font-weight:normal;
}



/* The Image Box */
div.img {
    border: 1px solid #ccc;
	position:relative;
}

div.img:hover {
    border: 1px solid #777;
}

/* The Image */
div.img img {
    width: 100%;
    height: 300px;
    cursor: pointer;
	object-fit:cover;
}

/* Description of Image */
div.desc {
    padding: 15px;
    text-align: center;
}

* {
    box-sizing: border-box;
}

#gallery-container{
	padding:7.5px;
	margin-top:7.5px;
}

/* Add Responsiveness */
.responsive {
    padding: 7.5px;
    float: left;
}

.gallery-col1{
	width:100%
}

.gallery-col2{
	width:50%;
}

.gallery-col3{
	width:33.3333333333%;
}

.gallery-col4{
	width: 25%;
}

/* 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: 700px;
}

/* Add Animation */
.modal-content {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {transform:scale(0)}
    to {transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0.1)}
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 100px;
    right: 10%;
    color: #8CBF44;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
	z-index:3;
	background-color:white;
	opacity:1;
	line-height:0.85;
	padding-bottom:3px;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Columns */
@media only screen and (max-width: 700px){
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
    }
    .modal-content {
        width: 100%;
    }
	div.img img {
		height: 200px;
	}
}

@media only screen and (max-width: 500px){
    .responsive {
        width: 100%;
    }
}

/* Clear Floats */
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}