

#overviewWrapper {
	position: fixed;
	left: 0; top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background-color: #e8e8e8;
	z-index: 1;
	overflow: hidden;
}

#SBBtimeTable {
	position: fixed;
	width: 50%;
	height: 50%;
	border: 1px solid red;
	top: 100%;
	z-index: 100000;
}

#redPanoIcon, #greyPanoIcon {
	position: absolute;
	top: 100%;
	left: 0;
	visibility: hidden;
}

/********************* Control Panel ***********************/

#overviewCpContainer{
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 48px;
	z-index: 300;
}


#overviewTitle {
	font-family: 'oldStandard';
	padding-left: 12px;
	padding-right: 40px;
	width: auto;
}

#overviewTitle span {
	font-size: 1.2rem;
	width: auto;
	line-height: 52px;
}


#hideOverviewChrome, #showOverviewChrome {
	position: absolute;
	height: 48px;
	width: 48px;
}

#hideOverviewChrome {
	bottom: 0;
}

#showOverviewChrome {
	bottom: -48px;
	background-color: gray;
}


/**************** Map ***********************/

#billboardContainer {
	position: relative;
	box-sizing: border-box;
	margin: 18px 48px 14px 48px;
	padding: 16px;
	border: 3px solid #7e7d7c;
 	border-radius: 4px;
	height: calc( 50% - 48px);
	background-color: #e8e8e8;
	z-index: 450;
}

#overviewMapContainer {
	position: relative;
	box-sizing: border-box;
	width: calc(50% - 16px);
	height: 100%;
	float: left;
	border-top: 3px solid white;
	border-left: 3px solid white;
	border-radius: 3px;
	max-width: 900px;
	max-height: 600px;
}

#overviewOfflineMapContainer {
	position: relative;
	top: 0; left: 0;
	width: 100%;
	height: inherit;
	overflow: hidden;
	z-index: 1;
}

#overviewOfflineMapFrame{
 	position: relative;
 	top: 0;
	left: 0;
	overflow: auto;
 	width: calc(100% + var(--scrollbarWidth) );
	height: calc(100% + var(--scrollbarWidth) );
}

#overviewOnlineMapContainer {
	position: absolute;
 	top: 0; left: 0;
 	width: 100%;
	height: 100%;
	z-index: 0;
}

.mapImg{
	top: 0; left: 0;
	width: 900px;
 	height: 600px;
	z-index: 0;
}

.mapPin {
	position: absolute;
	z-index: 6000;
}

.onlineMap{
	width: 100%; height: 100%;
}

#imgContainer {
	box-sizing: border-box;
	position: relative;
	width: calc(50% - 16px);
	height: 100%;
	float: right;
	z-index: 500;
	overflow: hidden;
}

#imgContainer img {
	position: absolute;
}

/*********** locations *************/


#contentContainer {
	position: relative;
	box-sizing: border-box;
	margin-left: 48px;
	float: left;
	width: calc(50% - 59px);
	height: calc( 50% - 48px);
	border: 1px solid #b5b5b5;
	box-shadow: 3px 3px 4px 1px #cdcdcd;
	overflow: hidden;
	background-color: white;
}

#contentFrame {
	position: absolute;
	box-sizing: border-box;
	margin: 1em 0;
	left: 0; top: 0;
	bottom: 0;
	width: calc(100% + var(--scrollbarWidth) );
	overflow-y: scroll;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

.contentBox {
	box-sizing: border-box;
	height: auto;
	margin: 0 3em;
}

.contentHeader {
	position: relative;
	float: left; /* because it takes a float to contain other floats ... */
	width: 100%;
	margin-bottom: 10px;
	padding-bottom: 4px;
	margin-top: 0.8em;
	border-bottom: 1.5px solid var(--middleGray);
}

.contentTitle {
	float: left;
	font-size: 1.4rem;
	line-height: 1.9rem;
	font-family: 'oldStandard';
	color: var(--middleGray2);
 	overflow-x: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.toPanorama {
	box-sizing: border-box;
	float: right;
	height: 1.6rem;
	margin-top: 0.1rem;
 }

.toPanorama img {
	display: block;
	height: 100%;
}

.red {
	display: none;
}

.contentTxt {
	height: auto;
	display: block;
	padding-bottom: 0.5rem;
	font-family: 'sourceSerifPro';
	font-size: 1.1rem;
	line-height: 1.65rem;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
	color: #595959;
}

