/*
 * Skin for jPlayer Plugin (jQuery JavaScript Library)
 * http://www.jplayer.org
 *
 * Skin Name: Blue Monday
 *
 * Copyright (c) 2010-2012 Happyworm Ltd
 * Dual licensed under the MIT and GPL licenses.
 *  - http://www.opensource.org/licenses/mit-license.php
 *  - http://www.gnu.org/copyleft/gpl.html
 *
 * Author: Silvia Benvenuti
 * Skin Version: 4.3 (jPlayer 2.2.0)
 * Date: 19th November 2012
 */

html .jp-video.ui--video {
	visibility: visible;
}

.jp-audio,
.jp-audio-stream,
.jp-video {
	position: relative;

	color: #666;
	background-color:#fff;

	   -moz-border-radius: 3px;
	-webkit-border-radius: 3px;
			border-radius: 3px;
}

.jp-video video,
.jp-video iframe,
.jp-video object,
.jp-video embed {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}

.jp-jplayer {
	overflow: hidden;
}

.jp-audio {
	width:auto;
}

.jp-video-full {
	/* Rules for IE6 (full-screen) */
	width:480px;
	height:270px;
	/* Rules for IE7 (full-screen) - Otherwise the relative container causes other page items that are not position:static (default) to appear over the video/gui. */
	position:static !important; position:relative;
}

/* The z-index rule is defined in this manner to enable Popcorn plugins that add overlays to video area. EG. Subtitles. */
.jp-video-full div div {
	z-index: 120001;
}

.jp-video-full .jp-jplayer {
	top: 0;
	left: 0;
	position: fixed !important; position: relative; /* Rules for IE6 (full-screen) */
	overflow: hidden;
}

.jp-video-full .jp-gui {
	position: fixed !important; position: static; /* Rules for IE6 (full-screen) */
	top: 0;
	left: 0;
	width:100%;
	height:100%;
	z-index:120002; /* 1 layer above the others. */
}

.jp-video-full .jp-interface {
	position: absolute !important; position: relative; /* Rules for IE6 (full-screen) */
	bottom: 0;
	left: 0;
}

.jp-interface {
	position: relative;
	width:100%;
}

.jp-audio .jp-type-single .jp-interface {
	height:80px;
}
.jp-audio .jp-type-playlist .jp-interface {
	height:80px;
}

.jp-audio-stream .jp-type-single .jp-interface {
	height:80px;
}

.jp-video .jp-interface {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 5;

	filter 		: alpha(opacity=95);
	opacity 	: 0.95;
}

/* @group CONTROLS */

.jp-volume-bar-holder {
	margin-top: 0;
}

.jp-volume-bar-item,
.jp-volume-bar-item a {
	float: left;
	height: 20px;
}

.jp-controls-holder {
	clear: both;
	margin:0 auto;
	position: relative;
	overflow:hidden;
	display: block;
	height: 30px;
}
.jp-controls > li {
	height: 30px;
}

.jp-interface ul.jp-controls {
	list-style-type:none;
	margin:0;
	padding: 0;
	overflow:hidden;
}

.jp-audio ul.jp-controls {
	width: 380px;
	padding:20px 20px 0 20px;
}

.jp-audio-stream ul.jp-controls {
	width: 142px;
	padding:20px 20px 0 20px;
}

.jp-video .jp-type-single ul.jp-controls {
	position: absolute;
	height: 30px;

	left: 20px;
	right: 20px;
	top: 50%;
	margin-top: -15px;
}

.jp-video .jp-type-playlist ul.jp-controls {
	width: 134px;
	margin-left: 172px;
}
.jp-video ul.jp-controls,
.jp-interface ul.jp-controls li {
	display:inline;
	float: left;
}

.jp-interface ul.jp-controls a {
	float: left;
	overflow:hidden;
	text-align: center;
	width: 24px;
	height: 24px;
	padding-top: 5px;
	padding-bottom: 1px;
	text-decoration: none !important;
}
a.jp-play,
a.jp-pause {

}

a.jp-play {}
a.jp-play:hover {}
a.jp-pause {
	display: none;
}
a.jp-pause:hover {}

a.jp-stop, a.jp-previous, a.jp-next {

}

a.jp-stop {
	margin-left:10px;
}

a.jp-stop:hover {}

a.jp-previous {
	background: url("jplayer.blue.monday.jpg") 0 -112px no-repeat;
}
a.jp-previous:hover {
	background: url("jplayer.blue.monday.jpg") -29px -112px no-repeat;
}

a.jp-next {
	background: url("jplayer.blue.monday.jpg") 0 -141px no-repeat;
}
a.jp-next:hover {
	background: url("jplayer.blue.monday.jpg") -29px -141px no-repeat;
}

/* @end */

/* @group progress bar */

.jp-progress {
	position: relative;
	overflow:hidden;
	background-color:rgba(0,0,0,.2);
	*background-color:#ddd;
  	z-index: 6;
}
.jp-audio .jp-progress {
	position: absolute;
	top:32px;
	height:15px;
  	z-index: 6;

}
.jp-audio .jp-type-single .jp-progress {
	left:110px;
	width:186px;
}
.jp-audio .jp-type-playlist .jp-progress {
	left:166px;
	width:130px;
}
.jp-video .jp-progress {
	top:0px;
	left:0px;
	width:100%;
	height:6px;
}
.jp-seek-bar {
	width:0px;
	height:100%;
	cursor: pointer;
}
.jp-play-bar {
	width:0px;
	height:100%;
}

/* The seeking class is added/removed inside jPlayer */
.jp-seeking-bg {
	background: url("jplayer.blue.monday.seeking.gif");
}

/* @end */

/* @group volume controls */


a.jp-mute,
a.jp-unmute,
a.jp-volume-max {
	width:18px;
	height:15px;
	margin-top:12px;
}

.jp-audio .jp-type-single a.jp-mute,
.jp-audio .jp-type-single a.jp-unmute {
	margin-left: 210px;	
}
.jp-audio .jp-type-playlist a.jp-mute,
.jp-audio .jp-type-playlist a.jp-unmute {
	margin-left: 154px;
}

.jp-audio-stream .jp-type-single a.jp-mute,
.jp-audio-stream .jp-type-single a.jp-unmute {
	margin-left:10px;
}

.jp-audio a.jp-volume-max,
.jp-audio-stream a.jp-volume-max {
	margin-left: 56px;	
}

.jp-video a.jp-mute,
.jp-video a.jp-unmute,
.jp-video a.jp-volume-max {
	margin-top:0;
}

.jp-video a.jp-mute,
.jp-video a.jp-unmute {}

.jp-video a.jp-volume-max {}

a.jp-mute {}
a.jp-mute:hover {}
a.jp-unmute {
	display: none;
}
a.jp-unmute:hover {}
a.jp-volume-max {}
a.jp-volume-max:hover {}

.jp-volume-bar-holder {
	margin-left: 15px;
	padding-left: 10px;
	border-left: 1px solid #ebebeb;

	height: 30px;
	float: left;
}
.jp-volume-bar {
	overflow:hidden;
	background: #ddd;
	width:46px;
	height:5px;
	margin-top: 12px;
	cursor: pointer;
}
.jp-audio .jp-volume-bar {
	top:37px;
	left:330px;
}
.jp-audio-stream .jp-volume-bar {
	top:37px;
	left:92px;
}
.jp-video .jp-volume-bar {
	top:17px;
	left:72px;
}
.jp-volume-bar-value {
	width:0px;
	height: 6px;
}

/* @end */

/* @group current time and duration */

.jp-audio .jp-type-single .jp-time-holder {}
.jp-audio .jp-type-playlist .jp-time-holder {}

.jp-time-holder { height: 30px; line-height: 30px; margin-left: 15px; }

.jp-current-time,
.jp-duration {
}
.jp-current-time {
	display:inline;
}
.jp-duration {
}

.jp-video .jp-current-time {
}
.jp-video .jp-duration {
}

.jp-time-holder > div {
	float: left;
}

.jp-time-separator {
	margin: 0 5px;
}

/* @end */

/* @group playlist */

.jp-title {
	font-weight:bold;
	text-align:center;
}

.jp-title,
.jp-playlist {
	width:100%;
	background-color:#ccc;
	border-top:1px solid #009be3;
}
.jp-type-single .jp-title,
.jp-type-playlist .jp-title,
.jp-type-single .jp-playlist {
	border-top:none;
}
.jp-title ul,
.jp-playlist ul {
	list-style-type:none;
	margin:0;
	padding:0 20px;
	font-size:.72em;
}

.jp-title li {
	padding:5px 0;
	font-weight:bold;
}
.jp-playlist li {
	padding:5px 0 4px 20px;
	border-bottom:1px solid #eee;
}

.jp-playlist li div {
	display:inline;
}

/* @end */

.jp-jplayer {
	overflow: hidden !important;
}

.jp-video-play {
	width:100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	z-index: 3;

	overflow:hidden; /* Important for nested negative margins to work in modern browsers */
	cursor:pointer;
	background-color:rgba(0,0,0,0); /* Makes IE9 work with the active area over the whole video area. IE6/7/8 only have the button as active area. */
}
.jp-video-270p .jp-video-play {
	margin-top:-270px;
	height:270px;
}
.jp-video-360p .jp-video-play {
	margin-top:-360px;
	height:360px;
}
.jp-video-full .jp-video-play {
	height:100%;
}
.jp-video a.jp-video-play-icon {
	position:relative;
	display:block;
	width: 112px;
	height: 100px;

	margin-left:-56px;
	margin-top:-50px;
	left:50%;
	top:50%;

	text-align: center !important;

	font-size: 80px !important;
	text-decoration: none !important;

	color: #fff !important;
	-ms-filter 		: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	 filter 		: alpha(opacity=80);
	-moz-opacity	: 0.80;
	-khtml-opacity	: 0.80;
	 opacity 		: 0.80;

	text-shadow: 0 0 5px rgba(0,0,0,.2);
}
.jp-video .jp-video-play:hover a.jp-video-play-icon {
	-ms-filter 		: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	 filter 		: alpha(opacity=100);
	-moz-opacity	: 1;
	-khtml-opacity	: 1;
	 opacity 		: 1;
}


.jp-jplayer audio,
.jp-jplayer {
	width:0px;
	height:0px;
}

.jp-jplayer > img {
	width: 100% !important;
	max-width: 100%;
	height: auto !important;
    z-index: 2;
    position: absolute;
}

.jp-jplayer {
	background-color: #000000;
	overflow: hidden;
	position: absolute;
	left: 1px;
	top: 0;
	bottom: 0;
	width: 100%  !important;
	height: 100% !important;
}

/* @group TOGGLES */

/* The audio toggles are nested inside jp-time-holder */

ul.jp-toggles {
	list-style-type:none;
	padding:0;
	margin:0 auto;
	overflow:hidden;
}

.jp-audio .jp-type-single ul.jp-toggles {
	width:25px;
}
.jp-audio .jp-type-playlist ul.jp-toggles {
	width:55px;
	margin: 0;
	position: absolute;
	left: 325px;
	top: 50px;
}

.jp-video ul.jp-toggles {
	margin-top:10px;
	width:100px;
}

ul.jp-toggles li {
	display:block;
	float:right;
}

ul.jp-toggles li a {
	display:block;
	width:25px;
	height:18px;
	text-indent:-9999px;
	line-height:100%; /* need this for IE6 */
}

a.jp-full-screen {}
a.jp-full-screen:hover {}
a.jp-restore-screen {}
a.jp-restore-screen:hover {}

a.jp-repeat {
	background: url("jplayer.blue.monday.jpg") 0 -290px no-repeat;
}

a.jp-repeat:hover {
	background: url("jplayer.blue.monday.jpg") -30px -290px no-repeat;
}

a.jp-repeat-off {
	background: url("jplayer.blue.monday.jpg") -60px -290px no-repeat;
}

a.jp-repeat-off:hover {
	background: url("jplayer.blue.monday.jpg") -90px -290px no-repeat;
}

a.jp-shuffle {
	background: url("jplayer.blue.monday.jpg") 0 -270px no-repeat;
	margin-left: 5px;
}

a.jp-shuffle:hover {
	background: url("jplayer.blue.monday.jpg") -30px -270px no-repeat;
}

a.jp-shuffle-off {
	background: url("jplayer.blue.monday.jpg") -60px -270px no-repeat;
	margin-left: 5px;
}

a.jp-shuffle-off:hover {
	background: url("jplayer.blue.monday.jpg") -90px -270px no-repeat;
}

.jp-controls-right {
	float: right !important;
}


/* @end */

/* @group NO SOLUTION error feedback */

.jp-no-solution {
	padding: 100px 0 ;
	color: red !important;
	display: block;
	text-align:center;
	display: none;
}

.jp-no-solution a {
}

.jp-no-solution span {
	display:block;
	text-align:center;
	font-weight:bold;
}

/**
 * Audio Player
 */

.jp-video.type--audio {
	padding-bottom: 48px !important;
} 

.jp-video.type--audio .jp-controls-holder {
	height: 42px;
}

.jp-video.type--audio .jp-jplayer,
.jp-video.type--audio .jp-video-play,
.jp-video.type--audio .jp-full-screen,
.jp-video.type--audio .jp-restore-screen
{
	display: none !important;
}

/* @end */
