@import "https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700,700italic";
@import "https://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700";
@import "https://fonts.googleapis.com/css?family=PT+Sans+Caption:400,700";
@import "https://fonts.googleapis.com/css?family=PT+Serif:400,400italic,700,700italic";

html, body{
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: "PT Sans", sans-serif;
	font-size: 16px;
}

.fa{
	font-size: 25px !important;
	cursor: pointer;
	margin: 10px;
	opacity: 0.7;
}

.fa:hover{
	opacity: 1.0;
}

#seaioScreen{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: #000000;
	text-align: center;
	color: #FFFFFF;
	font-size: 50px;
	padding: 30vh 0 0 0;
}

#keyboard{
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	background: #000000;
	color: #FFFFFF;
	font-size: 15px;
	padding: 15px;
	box-shadow: 3px -3px 9px white;
}
#keyboard span{
	display: inline-block;
	width: 60px;
	font-style: italic;
}

#imageContainer {
	position:relative;
	height:100%;
	width:100%;
	margin:0;
}
#imageContainer img {
	position:absolute;
	-webkit-transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	-o-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
	opacity:0;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
}
#imageContainer img.opaque {
	opacity:1;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=1);
}

#imageTitle{
	display: none;
	position: fixed;
	top: 0;
	width: 100%;
	margin: 100px auto;
	font-size: 50px;
	text-shadow: 2px 2px #ffffff;
	color: #000000;
	z-index: 10;
	text-align: center;
}
#imageTitleContent {
	display: inline-block;
	text-align: center;
	padding: 10px 50px;
	background: #ffffff;
	box-shadow: 0 0 10px #000000;
	border-radius: 3px;
}
#previewArea{
	position: fixed;
	top: 50px;
	left: 0;
	width: 150px;
	height: 90%;
}
#previews{
	position: fixed;
	top: 0;
	left: 0;
	background: white;
	display: none;
	padding: 25px;
	width: 15%;
	height: 95%;
	overflow: auto;
	z-index: 20;
}
.previewImg{
	max-height: 100px;
	overflow: hidden; 
	margin-bottom: 20px;
}
.previewImg img{
	width: 100%;
}

#controlArea{
	position: fixed;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
}
#controls{
	position: fixed;
	top: 0;
	right: 0;
	background: white;
	display: none;
	padding: 25px;
	box-shadow: -3px 3px 9px gray;
	z-index: 20;
}
#controls .fa{
	color: #484848;
	font-size: 28px;
}
.controlTitle{
	font-size: 15px;
	font-weight: bold;
	color: #B8B8B8;
}
.controlItem{
	display: inline-block;
	margin-right: 53px;
	text-align: center;
	width: 60px;
	color: #B8B8B8;
}
.controlItem:last-child{
	margin-right: 0;
}
.controlItemText{
	font-size: 12px;
}
.controlItemZoom{
	margin-right: 0;
	width: auto;
}

#controls hr{
	height: 1px;
	margin: 14px 0;
	color: #b8b8b8;
}


#admin{
	position: fixed;
	top: 50px;
	left: 50px;
	background: #FFFFFF;
	width: calc(100% - 150px);
	box-shadow: -3px 3px 9px gray;
	display: none;
	padding: 25px;
	border-radius: 3px;
}
#adminClose{
	position: absolute;
	top: 0;
	right: 0;
	width: 38px;
	height: 42px;
}
