/*
	_lib/75th/_css/media.css
	project:75th anniversary
	purpose:css for the site's modal media player
*/




div#media_player {
	display:none;
	position:fixed;
	top:50%; /* for now */
	left:50%; /* for now */
	z-index:1001;
	margin:15px 0 0 0;
	width:588px;
	min-height:50px;
	height:auto!important;
	height:50px;
	border:1px solid #e1e1e1;
	background:#f6f4f1;
	box-shadow:4px 4px 30px rgba(0, 0, 0, 0.40);
	-moz-box-shadow:4px 4px 30px rgba(0, 0, 0, 0.40);
	-webkit-box-shadow:4px 4px 30px rgba(0, 0, 0, 0.40);
	text-align:center;
}

	a#mp_close {
		position:absolute;
		top:-14px;
		right:-14px;
		display:block;
		width:28px;
		height:28px;
		cursor:pointer;
		background:url(../../_images/btn-close.png) no-repeat;
	}
	
	
	a#mp_close:hover {
		background-position:-28px 0;	
	}

	div#media_player div.title {
		padding:0 0 0 26px;
		height:28px;
		line-height:28px;
		font-size:12px;
		font-weight:bold;
		border-bottom:1px solid #e1e1e1;
		color:#505050;
	}
	
	div#mp_video_player,
	div#mp_audio_player,
	div#mp_image_player {
		display:none;	
	}
	
	div#mp_video_player {
		margin:25px auto;
		width:550px;
	}
	
	
		div#mp_audio_player .audiojs {
			width:588px;
			height:22px;
			background:none;i
		}
	
			div#mp_audio_player .audiojs .play-pause {
				border-right:1px solid #c8c7c4;
			}
			
			div#mp_audio_player .audiojs .play-pause,
			div#mp_audio_player .audiojs .play,
			div#mp_audio_player .audiojs .pause {
				margin:0;
				padding:0;
				width:41px;
				height:22px;
			}
			
			div#mp_audio_player .audiojs .play,
			div#mp_audio_player .audiojs .pause {
				background:url("../../_images/memory-bank/player-graphics.png") no-repeat;
			}
			
			
			div#mp_audio_player .audiojs .play {				
			}
			
			div#mp_audio_player .audiojs .pause {
				background-position:-41px 0;
			}
			
			div#mp_audio_player .audiojs p { width:25px; height:20px; margin:-3px 0px 0px -1px; }
			div#mp_audio_player .audiojs .scrubber {
				margin:7px 8px 5px 8px;
				width:424px;
				height:10px;
				border:0;
				background:#999;
			}
			
			div#mp_audio_player .audiojs .progress {
				width:0;
				height:10px;
				background:#ffb319;
			}
			
			div#mp_audio_player .audiojs .loaded {
				height:10px;
				background:#757575;
				background-image: -webkit-gradient(
				 linear,
				 left top,
				 left bottom,
				 color-stop(0.5, rgb(156,156,156)),
				 color-stop(0.5, rgb(117,117,117))
				);
				background-image: -moz-linear-gradient(
				 center top,
				 rgb(156,156,156) 50%,
				 rgb(117,117,117) 50%
				);
			}
			
			div#mp_audio_player .audiojs .time {
				float:left;
				height:22px;
				line-height:22px;
				color:#656565;
				font-family:Arial, Helvetica, sans-serif;
				text-shadow:none;
				border-left:1px solid #c8c7c4;
			}
			
				div#mp_audio_player .audiojs .time em {
					color:#656556;	
				}
	

	
	div#mp_image_player {
		padding:20px;
	}
	
	div#mp_image_player.inactive {
		min-height:200px;
		height:auto!important;
		height:200px;
		background:url(../../../_images/loaders/bars/1.gif) no-repeat center center;
	}
	
		div#mp_image_player img {
			margin:0 auto;
		}