html, body {
	background-color: #fafafa;
	color: #556475;
    font-size: 16px;
/*    height: 100%;
    width: 100%;
*/
}



a , div , table {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



a ,
a:link ,
a:visited ,
a:hover ,
a:active {
    color: inherit;
}

a:hover {
	text-decoration: none;
}

a img:hover {
	opacity: 0.75;
	filter: alpha(opacity=75); /* For IE8 and earlier */
}



.isa_info ,
.isa_success ,
.isa_warning ,
.isa_error {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-size: 0.9em;
	margin: 10px;
	padding: 12px;
}

.isa_info {
    background-color: #BDE5F8;
	border: 1px solid #00529B;
    color: #00529B;
}

.isa_success {
    background-color: #DFF2BF;
	border: 1px solid #4F8A10;
    color: #4F8A10;
}

.isa_warning {
    background-color: #FEEFB3;
	border: 1px solid #9F6000;
    color: #9F6000;
}

.isa_error {
    background-color: #FFD2D2;
	border: 1px solid #D8000C;
    color: #D8000C;
}

.isa_info i ,
.isa_success i ,
.isa_warning i ,
.isa_error i {
    margin: 5px;
    font-size: 1em;
    vertical-align: middle;
}
/*
<div class="isa_info"><i class="fa fa-info-circle"></i>msg</div>
<div class="isa_success"><i class="fa fa-check-circle"></i>msg</div>
<div class="isa_warning"><i class="fa fa-exclamation-circle"></i>msg</div>
<div class="isa_error"><i class="fa fa-times-circle"></i>msg</div>
*/



div#menu {
	background-color: #556475;
    background-image: -moz-linear-gradient(top left 90deg, #101a2b 0%, #556475 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#101a2b), to(#556475));
    background-image: linear-gradient(top left 90deg, #101a2b 0%, #556475 100%);
	color: #f7fbfc;
	height: 50px;
	width: 100%;
	z-index: 100;
}

div#menu a {
	border-left: 1px solid #9bb0c0;
	border-right: 1px solid #556475;
	display: inline-block;
	height: 50px;
	float: left;
	font-size: 20px;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
	width: 200px;
}

div#menu a:hover ,
div#menu a:focus {
    background-image: -moz-linear-gradient(top left 90deg, #556475 0%, #101a2b 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#556475), to(#101a2b));
    background-image: linear-gradient(top left 90deg, #556475 0%, #101a2b 100%);
}

div#menu a i {
	font-size: 150%;
	vertical-align: middle;
}

div#menu i#menuExclamation {
	display: none;
}

div#menu a.bars {
	display: none;
}



div#content {
	background-color: #f7fbfc;
	border: 1px solid #d3e0e9;
	margin: 50px 10px;
	padding: 10px 15px;
}



fieldset {
	border: 0;
	margin-bottom: 50px;
	min-width: 0;
}



fieldset > div {
	height: 90px;
	float: left;
	padding: 15px 20px;
	width: 25%;
}

fieldset > div label {
	font-variant: small-caps;
	font-weight: bold;
	margin-bottom: -10px;
	width: 100%;
}



legend {
	border-bottom: 1px solid #e5e5e5;
	font-size: 21px;
	margin-bottom: 20px;
	text-transform: uppercase;
	width: 100%;
}



h1 {
	font-size: 30px;
	margin-bottom: 20px;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}



form.login {
	background-color: #d3e0e9;
	border: 1px solid #101a2b;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.2);
	box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.2);
	color: #101a2b;
	font-family: sans-serif;
	font-size: 14px;
	height: 270px;
	margin-left: -150px;
	margin-top: -140px;
	position: absolute;
		left: 50%;
		top: 50%;
	width: 300px;
}

form.login.error {
	height: 330px;
	margin-top: -165px;
}



button ,
input ,
textarea ,
select {
	background-color: #f7fbfc;
	border: 1px solid #9bb0c0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
    -moz-box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e5e7e8;
    -webkit-box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e5e7e8;
    box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e5e7e8;
	color: #556475;
	font-family: Helvetica, sans-serif;
	font-size: 18px;
	height: 35px;
	margin: 12px auto 10px auto;
	outline: none;
	padding-left: 10px;
    -moz-transition: -moz-box-shadow .5s ease;
    -o-transition: box-shadow .5s ease;
    -webkit-transition: -webkit-box-shadow .5s ease;
    transition: box-shadow .5s ease;
    width: 100%;
}

button:hover ,
input:hover ,
textarea:hover ,
select:hover {
    border-color: 1px solid #f7fbfc;
    -moz-box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .7), 0 0 0 5px #e5e7e8;
    -webkit-box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .7), 0 0 0 5px #e5e7e8;
    box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .7), 0 0 0 5px #e5e7e8;
}

button:focus ,
input:focus ,
textarea:focus ,
select:focus {
    -moz-box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e6f2f9;
    -webkit-box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e6f2f9;
    box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e6f2f9;
}

button ,
input[type=button] ,
input[type=submit] {
	background-color: #101a2b;
    background-image: -moz-linear-gradient(top left 90deg, #acd6ef 0%, #6ec2e8 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#acd6ef), to(#6ec2e8));
    background-image: linear-gradient(top left 90deg, #acd6ef 0%, #6ec2e8 100%);
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
	color: #f7fbfc;
	cursor: pointer;
	display: block;
	font-weight: bold;
	padding: 2px 20px;
	width: auto;
}

button:hover ,
input[type=submit]:hover ,
input[type=button]:hover {
    background-image: -moz-linear-gradient(top left 90deg, #b6e2ff 0%, #6ec2e8 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#b6e2ff), to(#6ec2e8));
    background-image: linear-gradient(top left 90deg, #b6e2ff 0%, #6ec2e8 100%);
}

button:active ,
input[type=submit]:active ,
input[type=button]:active {
    background-image: -moz-linear-gradient(top left 90deg, #6ec2e8 0%, #b6e2ff 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#6ec2e8), to(#b6e2ff));
    background-image: linear-gradient(top left 90deg, #6ec2e8 0%, #b6e2ff 100%);
}

button {
	display: inline-block;
	margin: 10px;
}

input[type=file] {
	background-color: initial;
	border: initial;
	-moz-border-radius: initial;
	-webkit-border-radius: initial;
	border-radius: initial;
    -moz-box-shadow: initial;
    -webkit-box-shadow: initial;
    box-shadow: initial;
	color: initial;
	font-family: initial;
	margin: initial;
	margin-top: 15px;
	outline: initial;
	padding-left: initial;
    -moz-transition: initial;
    -o-transition: initial;
    -webkit-transition: initial;
    transition: initial;
}

input[type=checkbox] {
	background-color: initial;
	border: initial;
	-moz-border-radius: initial;
	-webkit-border-radius: initial;
	border-radius: initial;
    -moz-box-shadow: initial;
    -webkit-box-shadow: initial;
    box-shadow: initial;
	color: initial;
	font-family: initial;
	font-size: initial;
	height: initial;
	margin: 10px 20px 10px auto;
	outline: initial;
	padding: initial
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	-o-transform: scale(2);
	-webkit-transform: scale(2);
	transform: scale(2);
    -moz-transition: initial;
    -o-transition: initial;
    -webkit-transition: initial;
    transition: initial;
	vertical-align: middle;
	width: initial;
}

input:disabled ,
textarea:disabled ,
input:read-only ,
textarea:read-only {
	background-color: #ddd;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #d3e0e9;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #d3e0e9;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #d3e0e9;
}
:-moz-placeholder { /* Firefox 18- */
  color: #d3e0e9;
}
/* COLOR SCHEME https://coolors.co/101a2b-556475-9bb0c0-d3e0e9-f7fbfc */



div.imageHolder {
	float: left;
	height: 500px;
	padding: 16px;
	text-align: center;
	width: 25%;
		max-width: 300px;
}

div.imageHolder > div {
	background-color: inherit;
	-moz-box-shadow: 0 4px 8px 0 rgba( 0 , 0 , 0 , 0.2 ) , 0 6px 20px 0 rgba( 0 , 0 , 0 , 0.19 );
	-webkit-box-shadow: 0 4px 8px 0 rgba( 0 , 0 , 0 , 0.2 ) , 0 6px 20px 0 rgba( 0 , 0 , 0 , 0.19 );
	box-shadow: 0 4px 8px 0 rgba( 0 , 0 , 0 , 0.2 ) , 0 6px 20px 0 rgba( 0 , 0 , 0 , 0.19 );
	height: 100%;
	width: 100%;
}

div.imageHolder img ,
div.imageHolder video {
	width: 100%;
}

div.imageHolder > div div.location {
	font-family: 'Times New Roman';
	font-size: 150%;
	padding: 10px 15px;
}

div.imageHolder > div div.comment {
	background-color: rgba( 0 , 0 , 0 , 0.05 );
	padding: 10px 15px;
}

div.imageHolder > div div.tags {
	font-size: 80%;
	padding: 10px 15px;
	text-align: left;
}

div.imageHolder div.imageContainer {
	margin: 0;
	padding: 0;
	position: relative;
}

div.imageHolder div.imageContainer .thumbnail img {
	height: auto;
}

div.imageHolder div.imageContainer div.edit {
	background-color: rgba( 0 , 0 , 0 , 0.5 );
	color: #fff;
	display: none;
	height: 100%;
	position: absolute;
		left: 0;
		top: 0;
	width: 100%;
}

div.imageHolder div.imageContainer div.edit a {
	display: block;
	height: 33.33%;
	width: 100%;
}

div.imageHolder div.imageContainer div.edit a img {
	height: 100%;
	width: 100%;
}

div.imageHolder div.imageContainer div.imageMenu,
div.imageHolder div.imageContainer div.imageDownload {
	background-color: #000;
	color: #fff;
	cursor: pointer;
	font-weight: 900;
	height: 40px;
	line-height: 40px;
	position: absolute;
		right: 0;
		top: 0;
	text-align: center;
	width: 40px;
}

div.imageHolder div.imageContainer div.imageDownload {
    top: 40px;
    
}

div.imageHolder div.imageContainer div.imageMenu:hover,
div.imageHolder div.imageContainer div.imageDownload:hover {
	background-color: #555;
}



div#slideshow {
	background-color: #000000;
	background-color: rgba( 0 , 0 , 0 , 0.9 );
	display: none;
	height: 100%;
	overflow: hidden;
	padding: 0;
	position: fixed;
		left: 0;
		top: 0;
	text-align: center;
	width: 100%;
	z-index: 101;
}

div#slideshow #close ,
div#slideshow #previous ,
div#slideshow #next ,
div#slideshow #showHideText {
	color: #f1f1f1;
	cursor: pointer;
	font-size: 40px;
	font-weight: bold;
	position: absolute;
	z-index: 10;
}

div#slideshow #close {
		right: 35px;
		top: 15px;
}

div#slideshow #previous {
		left: 35px;
		top: 50%;
}

div#slideshow #next {
		right: 35px;
		top: 50%;
}

div#slideshow #showHideText {
		bottom: 15px;
		right: 35px;
}

div#slideshow #close:hover ,
div#slideshow #previous:hover ,
div#slideshow #next:hover ,
div#slideshow #showHideText:hover {
	color: #a1a1a1;
}

div#slideshow div#text {
	background-color: #000000;
	background-color: rgba( 0 , 0 , 0 , 0.5 );
	color: #fafafa;
	position: absolute;
		bottom: 0;
		left: 0;
	text-align: center;
	width: 100%;
}

div#slideshow div#text div#textLocation {
	font-size: 250%;
}

div#slideshow div#text div#textComment {
	padding: 36px 0 18px 0;
}

div#slideshow div#text div#textDate {
	font-size: 75%;
	font-variant: italic;
	padding-bottom: 36px;
}



div#tagDiv {
	width: 100%;
}

div#tagDiv div {
/*	background: #00d4ff;
	background: -moz-linear-gradient(0deg, #10b9db 0%, #00d4ff 50%, #10b9db 100%);
	background: -webkit-linear-gradient(0deg, #10b9db 0%, #00d4ff 50%, #10b9db 100%);
	background: linear-gradient(0deg, #10b9db 0%, #00d4ff 50%, #10b9db 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#10b9db",endColorstr="#10b9db",GradientType=1);
*/	border: 1px solid #9bb0c0;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
	/*color: #f7fbfc;*/
	cursor: pointer;
	display: inline-block;
	font-family: Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	height: 25px;
	outline: none;
	padding: 5px 20px;
	margin: 0;
	width: auto;
}

div#tagDiv div:hover {
	background-color: rgba( 0 , 0 , 0 , 0.1 );
}



@media ( orientation: portrait ) {
	
	
	
	div#slideshow img ,
	div#slideshow video {
		width: 100%;
	}
	
	
	
}



@media ( orientation: landscape ) {
	
	
	
	div#slideshow img ,
	div#slideshow video {
		height: 100%;
	}
	
	
	
}



@media ( max-width: 870px ) {
	
	
	
	fieldset > div {
		width: 50%;
	}
	
	
	
	div.imageHolder {
		width: 50%;
	}
	
	
	
	div#slideshow {
		padding: 10px 18px;
	}
	
	
	
}



@media ( max-width: 470px ) {
	
	
	
	fieldset > div {
		width: 100%;
	}
	
	
	
	div.imageHolder {
		width: 100%;
	}
	
	
	
}



@media ( max-width: 1000px ) {
	
	
	
	div#menu {
		position: absolute;
			right: 0;
			top: 0;
	}
	
	
	
	div#menu a {
		display: none;
	}
	
	
	
	div#menu a.bars {
		display: block;
		float: right;
		width: 70px;
	}
	
	
	
	div#menu.responsive {
		display: block;
		height: auto;
		width: 100%;
	}
	
	div#menu.responsive a {
		border-bottom: 1px solid #9bb0c0;
		border-top: 1px solid #556475;
		display: block;
		float: none;
		width: 100%;
	}
	
	div#menu.responsive a.bars {
		position: absolute;
			right: 0;
			top: 0;
		width: 70px;
	}
	
	
	
}
