
	/*
	 * 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;
		}
	}