/*
 * ghindaVideoPlayer - jQuery plugin 1.0.0
 *
 * Copyright (c) 2010 Cristian-Ionut Colceriu
 *
 * ghindaVideoPlayer.css
 * Styles for the ghindaVideoPlayer
 *
 */

/* base styles */
.ghinda-video-player {}
.ghinda-video-play, .ghinda-volume-button {
	cursor: pointer;
}
.ghinda-video-timer {
	cursor: default;
}


/* Start of simpledark default theme */
.ghinda-video-player.simpledark {
	float: left;
	position: relative;
	padding: 0px;
	border: 0px;
	font-family: 'Helvetica', Helvetica Neue, Arial, sans-serif;
}

.ghinda-video-player.simpledark .ghinda-video-controls {
	position: relative;
	float: left;
	clear: both;
	width: 100%;
	z-index: 99;
	margin-top: -10px;
}

.ghinda-video-player.simpledark .ghinda-video-play, .ghinda-video-player.simpledark .ghinda-video-seek, .ghinda-video-player.simpledark .ghinda-volume-box, .ghinda-video-timer {
	float: left;
}

/* play, pause */
.ghinda-video-player.simpledark .ghinda-video-play {
	display: block;
	margin-top: -53px;
	position: relative;
	left: 0px;
	float: right;
	-moz-transition: all 0.2s ease-in-out; /* Firefox */
	-webkit-transition: all 0.2s ease-in-out; /* Safari and Chrome */
	-o-transition: all 0.2s ease-in-out;  /* Opera */
	transition: all 0.2s ease-in-out;
}

.ghinda-video-player.simpledark .ghinda-paused-button {
	/*background: url(images/pause-icon.png) no-repeat;*/
}


.ghinda-video-player.simpledark video {
	float: left;
}


.ghinda-video-player.simpledark .ghinda-video-play:hover {	
    opacity: 1;
}

/* seek */
.ghinda-video-player.simpledark .ghinda-video-seek {
	position:relative;		
	width: 100%;
	height: 10px;
	margin-top: 0px;		
	background: transparent;
}

.ghinda-video-player.simpledark .ghinda-video-seek .ui-slider-handle {
	width: 1px;
	height: 10px;	
	background: #aaa;
}

.ghinda-video-player.simpledark .ghinda-video-seek .ui-slider-handle.ui-state-hover {
	background: #fff;
}

.ghinda-video-player.simpledark .ghinda-video-seek .ui-slider-range {
	background: #ccc;
	opacity: 0.33;
}


/* timer */
.ghinda-video-player.simpledark .ghinda-video-timer {
	margin-top: -43px;
	margin-right: 100px;
	float: right;
	display: none;
}

/* volume */
.ghinda-video-player.simpledark .ghinda-volume-box {
	position: absolute;
	bottom: 0px;
	right: 0px;
	overflow: hidden;
	width: 10px;
	height: 10px;
	color: #fff;
	padding: 0px;
	display: none;
}

.ghinda-video-player.simpledark .ghinda-volume-box:hover {	
	height: 135px;
	padding-top: 20px;
}


.ghinda-video-player.simpledark .ghinda-volume-box:hover .ghinda-volume-slider {
	position: relative;
	visibility: visible;
	opacity: 1;
}

.ghinda-video-player.simpledark .ghinda-volume-slider {	
	position: relative;
	height: 100px;
	width: 3px;
	left: 4px;
	visiblity: hidden;
	opacity: 0;
	background: #535353;	
	-moz-transition: all 0.1s ease-in-out; /* Firefox */
	-webkit-transition: all 0.1s ease-in-out; /* Safari and Chrome */
	-o-transition: all 0.1s ease-in-out;  /* Opera */
	transition: all 0.1s ease-in-out; 
}

.ghinda-video-player.simpledark .ghinda-volume-slider .ui-slider-handle {
	width: 12px;
	height: 12px;
	left: -4px;
	margin-left:0;
	background: #fff;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;	
}

.ghinda-video-player.simpledark .ghinda-volume-slider .ui-slider-handle.ui-state-hover {
	background: #fff;
}

.ghinda-video-player.simpledark .ghinda-volume-slider .ui-slider-range {
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;
	background: #fff;
	background-image: -moz-linear-gradient(top, #fff, #d5d5d5);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #fff),color-stop(1, #d5d5d5));
}

/* volume button */

.ghinda-video-player.simpledark .ghinda-volume-button {
	position: absolute;
	top: 12px;
	display: block;
	width: 10px;
	height: 10px;
	background: cyan;
}

.ghinda-video-player.simpledark .ghinda-volume-button:hover {

}

.ghinda-video-player.simpledark .ghinda-volume-mute {
	/*background: url(images/volume-mute-icon.png) no-repeat;*/
}


/* Start of smalldark child theme */

.ghinda-video-player.smalldark {
	padding: 0px;
}

.ghinda-video-player.smalldark video:hover + .ghinda-video-controls {
	visibility: visible;
	opacity: 0.7;
}

.ghinda-video-player.smalldark .ghinda-video-controls:hover {
	visibility: visible;
	opacity: 0.7;
}

.ghinda-video-player.smalldark .ghinda-video-controls {
	position: absolute;
	top: 150px;
	left: 80px;
	width: 320px;
	padding: 10px;
	
	border: 1px solid #2E2E2E;
	
	-moz-border-radius: 5px; /* FF1+ */
	-webkit-border-radius: 5px; /* Saf3+, Chrome */
	border-radius: 5px; /* Opera 10.5, IE 9 */
	
	background: #000000;
	background-image: -moz-linear-gradient(top, #313131, #000000); /* FF3.6 */
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #313131),color-stop(1, #000000)); /* Saf4+, Chrome */
	
	opacity: 0;
	visibility: hidden;
	
	box-shadow: inset 0 15px 35px #535353;
	
	-moz-transition: all 0.1s ease-in-out; /* Firefox */
	-webkit-transition: all 0.1s ease-in-out; /* Safari and Chrome */
	-o-transition: all 0.1s ease-in-out;  /* Opera */
	transition: all 0.1s ease-in-out; 
}

.ghinda-video-player.smalldark .ghinda-video-seek {
	width: 200px;
}

.ghinda-video-player.smalldark .ghinda-volume-box {
	bottom: 10px;
}

.ghinda-video-player.smalldark .ghinda-volume-box:hover {	
	height: 85px;	
}

.ghinda-video-player.smalldark .ghinda-volume-slider {
	height: 50px;
}

/* needed jquery ui styles
 * using these, we don't depend on jQuery UI's stylsheet
 */
.ui-slider-handle {
	position: absolute;
	z-index: 2;
	display: block;
	margin-left: -1px;
	cursor: default;
	outline: none;
}

.ui-slider-range {
	display:block;
	width:100%;	
	height:100%;
	left:0;
	bottom: 0;
	border:0 none;
	position:absolute;
	z-index:1;
}