
	/*
	 * for all MHS implimentations of OpenSeaDragon
	 */

	#osd_viewer {
		background: black;
		position: relative;
	}
	
	
	.navigator {
		margin-top: 36px !important;
	}
	
	#osd_navigator_wrapper-displayregion {
		border: 1px solid red !important;
	}
	
	
	#OSDcontrols {
		position: absolute;
		top: 0;
		right: 0;
		z-index: 400;
		padding: 3px;
		background: #1188ff;
		color: white;
		font-family: "Arial", sans-serif;
		font-size: 13px;
		font-weight: normal;
		font-style: normal;
		text-align: right;
	}
	
	
	#OSDcontrols span {
		box-sizing: border-box;
		color: white;
		cursor: pointer;
		display: inline-block;
		padding: 6px 5px 3px 5px;
		border-radius: 3px;
		min-height: 28px;
		vertical-align: middle;
	}
	
	#OSDcontrols span:hover {
		box-shadow: 0 0 3px rgba(0,0,0,.35);
	}
	
	#OSDcontrols span i {
		font-style: normal;
	}
	
	#OSDcontrols svg {
		fill: white;
		width: 18px;
		cursor: pointer;
	}
	
	#OSDcontrols #OSDoptions {
		text-align: center;
		box-shadow: none;
		padding: 0;
	    min-height: 0;
	}
	
	#OSDcontrols #OSDoptions .menuToggler {
	}
	
	#OSDcontrols #OSDoptionsGrp {
		display: none;
		height: auto;
		width: auto;
		position: absolute;
		top: 34px;
		right: 0;
		color: white;
		border-radius: 0;
		border-bottom-left-radius: 3px;
		box-shadow: none;
		background: #1188ff;
		color: white;
		font-family: "Arial", sans-serif;
		font-size: 13px;
		font-weight: normal;
		font-style: normal;
		text-align: left;
	}
	
	#OSDcontrols #OSDoptionsGrp span {
		display: block;
		width: 100%;
	}
	
	#OSDcontrols #OSDoptions.open #OSDoptionsGrp {
		display: block;
	}
	
	#OSDcontrols #OSDoptions .upArrow {
		display: none;
	}
	#OSDcontrols #OSDoptions.open .upArrow {
		display: inline-block;
	}
	#OSDcontrols #OSDoptions.open .downArrow {
		display: none;
	}

	#OSDcontrols #OSDoptionsGrp #OSDnavToggler:before {
		content: "show ";
	}
	
	#OSDcontrols #OSDoptionsGrp #OSDnavToggler.shown:before {
		content: "hide ";
	}
	
	.OSDPrevNextButton {
		position: absolute;
		z-index: 100;
		top: 50%;
		left: 0;
		height: 43px;
		margin-top: -25px;
		width: 50px;
		background: #1184ff;
		border-radius: 25px;
		line-height: 50px;
		padding-top: 7px;
		text-align: center;
		opacity: .5;
	}
	
	.OSDPrevNextButton:hover {
		opacity: 1;
	}
	
	
	.OSDPrevNextButton svg {
		fill: #ffffff;
	}
	
	.OSDNextButton {
		right: 0;
		left: auto;
	}
	
	
	
	@media(max-width: 400px) {
		
		#OSDcontrols span i {
			display: none;
		}
	}



	.osdLoadingSpinner {
		position: absolute;
		top: 10%;
		left: 50%;
		z-index: 900;
	}



	.sk-cube-grid {
		width: 40px;
		height: 40px;
		margin: 100px auto;
	  }
	  
	  .sk-cube-grid .sk-cube {
		width: 33%;
		height: 33%;
		background-color: #a0a0a0;
		float: left;
		-webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
				animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; 
	  }
	  .sk-cube-grid .sk-cube1 {
		-webkit-animation-delay: 0.2s;
				animation-delay: 0.2s; }
	  .sk-cube-grid .sk-cube2 {
		-webkit-animation-delay: 0.3s;
				animation-delay: 0.3s; }
	  .sk-cube-grid .sk-cube3 {
		-webkit-animation-delay: 0.4s;
				animation-delay: 0.4s; }
	  .sk-cube-grid .sk-cube4 {
		-webkit-animation-delay: 0.1s;
				animation-delay: 0.1s; }
	  .sk-cube-grid .sk-cube5 {
		-webkit-animation-delay: 0.2s;
				animation-delay: 0.2s; }
	  .sk-cube-grid .sk-cube6 {
		-webkit-animation-delay: 0.3s;
				animation-delay: 0.3s; }
	  .sk-cube-grid .sk-cube7 {
		-webkit-animation-delay: 0s;
				animation-delay: 0s; }
	  .sk-cube-grid .sk-cube8 {
		-webkit-animation-delay: 0.1s;
				animation-delay: 0.1s; }
	  .sk-cube-grid .sk-cube9 {
		-webkit-animation-delay: 0.2s;
				animation-delay: 0.2s; }
	  
	  @-webkit-keyframes sk-cubeGridScaleDelay {
		0%, 70%, 100% {
		  -webkit-transform: scale3D(1, 1, 1);
				  transform: scale3D(1, 1, 1);
		} 35% {
		  -webkit-transform: scale3D(0, 0, 1);
				  transform: scale3D(0, 0, 1); 
		}
	  }
	  
	  @keyframes sk-cubeGridScaleDelay {
		0%, 70%, 100% {
		  -webkit-transform: scale3D(1, 1, 1);
				  transform: scale3D(1, 1, 1);
		} 35% {
		  -webkit-transform: scale3D(0, 0, 1);
				  transform: scale3D(0, 0, 1);
		} 
	  }