#PhotoPopup {
    position: fixed;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    padding: 5px;
	background-color: #111;
}

#PhotoPopupTop {
	width: 62px;
display: none;
}

#PhotoPopupNav {
	position: relative;
	top: 2px;
	width: 58px;
	
	border-left: solid 2px #111;
	border-right: solid 2px #111;
	background-color: #111;
}

#PhotoPopupNavInner {
	position: relative;
	top: 2px;
	width: 50px;

	overflow: hidden;
	padding: 1px 0 0 4px;
	border: solid 2px #888;
	border-bottom: none;
	background-color: #111;
}

#PhotoPopupNavLink {
	position: relative;
	top: 2px;

	margin: 0 2px 0 2px;
	padding: 0 2px 0 2px;
	cursor: pointer;

	font-size: .8em;
	font-weight: 100;
}

#PhotoPopupMain {
    height: 100%;
}

#PhotoPopupMainInner {
    position: relative;
    box-sizing: border-box;
    height: 100%;
	padding: 8px 8px 1.8em 8px;
	border: solid 2px #888; 
}

#PhotoPopupViewport {
	position: relative;
	box-sizing: border-box;
	height: 100%;
}

#PhotoPopupViewport img {
	position: relative;
	float: left;
}

#PhotoPopupText {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1.8em;
	line-height: 1.8em;
	color: #ccc;
	font-size: 1.2em;
	font-weight: 500;
	text-align: center;
}

#PhotoHover {
	position: absolute;
	top: 0px;
	left: 0px;
	border: solid 1px black; 
}

#PhotoHoverInner {
	padding: 4px 4px 0px 4px;
	border: solid 1px #888; 
	background-color: #111;
}

#PhotoHoverViewport {
	position: relative;
    box-sizing: border-box;
    height: 100%;
    padding-bottom: 0 0 1.5em 0;
}

#PhotoHoverViewport img {
	position: relative;
	float: left;
}

#PhotoHoverText {
	padding: 2px 0 1px 0;
	color: #ccc;
	font-size: 0.75em;
	text-align: center;
}


