body{
	text-align: center;
	background-color: #111;
	margin: 0;
	font-family: verdana;
}
h1{
	background-color: #000;
	color: #aaa;
	padding: 8px 0;
	margin: 0 0 30px 0;
}
#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 5px solid #555;
    border-radius: 50%;
    border-top: 5px solid #ccc;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
#view-port{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: #221e24; /* very dark blue */
	
}
#view-port #view-port-image{
	margin: 10px auto;
	border: 5px solid #000;
	border-radius: 20px;
	opacity: 1px;
	max-width: 95%;
	max-height: 95%;
    -webkit-animation-name: flow; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 1.3s; /* Safari 4.0 - 8.0 */
    animation-name: flow;
    animation-duration: 1.3s;
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes flow {
  from {opacity: .5;}
  to {opacity: 1;}
}

/* Standard syntax */
@keyframes flow {
  from {opacity: .5;}
  to {opacity: 1;}
}
#del, #prev, #next{
	position: fixed;
	z-index: 999;
	cursor: pointer;
	opacity: .75;
}
#del:hover, #prev:hover, #next:hover{
	opacity: 1;
}
#del{
	top: 20px;
	right: 20px;
}
#prev, #next{
	top: calc(50% - 50px);
}
#prev{
	left: 20px;
}
#next{
	right: 20px;
}
.thumbnail{
	display: inline-block;
	border: 3px solid #888;
	border-radius: 8px;
	width: 200px;
	height: 200px;
	cursor: pointer;
	overflow: hidden;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.thumbnail:hover{
	border: 3px solid #ccc;
}
#container {
	display: none;
	text-align: center;
}
a{
	color: #aaa;
    display: inline-block;
    margin: 30px 5px;
}















