.video-player {}
.video-play, .volume-button {
	cursor: pointer;
}
.video-timer {
	cursor: default;
}

/*Start of circle*/
.video-player.circle{
	position:absolute;
}

.video-player.circle .bevel{
	width:0px;
	height:0px;
	display:none;
}

.video-circle-controls{
	z-index : 50;
    top: 2px;
    background : rgba(0,0,0,0.2);	
	cursor:hand;
}

.video-circle-play{
	width: 22px;
	height: 28px;
	position:absolute;
	margin:auto;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background: url(icon/video-circle.png) no-repeat -10px -39px;	
	z-index:120;
	cursor:hand;
	-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; 
}

.video-paused-button {
	background: url(icon/video-circle.png) no-repeat -43px -41px;
}

.video-circle-play:hover {	
    opacity: 1;
}


/* volume button */

.video-circle-volume-button {
	margin-top:7px;
	right:50px;
	position : absolute;
	display: block;
	width: 15px;
	height: 15px;
	background: url(icon/video-circle.png) no-repeat -6px -6px;
}

.video-circle-volume-mute {
	background: url(icon/video-circle.png) no-repeat -32px -6px;
}

/*fullscreen*/
.video-circle-player-fullscreen {
	margin-top:7px;
	right : 15px;
	display: block;
	width: 15px;
	height: 15px;
	position : absolute;
	background: url(icon/video-circle.png) no-repeat -57px -6px;
}

.video-circle-exit-fullscreen {
	background: url(icon/video-circle.png) no-repeat -79px -6px;
}

/*video seek*/
/* seek */
.video-circle-seek {
	position:absolute;		
	width: 70px;
	height: 70px;
	margin: auto;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    z-index: 50;
    
}
.video-circle-time{
	position:absolute;		
	width: 55px;
	height: 35px;
	margin: auto;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    color: red;
    
}
.video-circle-range{
	position:absolute;
	top:0px;
	left:0px;
	width:60px;
	height:60px;
	z-index:1;
	margin: auto;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    border-radius: 50%;
    border:2px solid white;
    z-index: 100;
	z-index:2;
}

/*Start of default*/
.video-player.default{
	position:absolute;
}

.video-player.default .bevel{
	width:0px;
	height:0px;
	display:none;
}

.video-player.default .video-controls{
	position: absolute;
	z-index : 2;
	visibility: hidden;
	opacity: 0;

	width: 100%;
	left:0px;
	bottom : 4px;
	height:30px;
	background:#222222;
	
	-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; 
}

.video-player.default .control-border{
	position: absolute;
	width: 100%;
	left:0px;
	top:1px;
	height:1px;
	
	background:#444444;
}

/*.video-player.default video:hover + .video-controls {
	visibility: visible;
	opacity: 1;
}

.video-player.default .video-controls:hover {
	visibility: visible;
	opacity: 1;
}*/

.video-player.default .video-play, .video-player.default .volume-box, .video-player.default .volume-button, .video-player.default .video-timer, .video-player.default .player-fullscreen {
	float: left;
	margin-top:4px;
}

.video-player.default .video-play {
	

	width: 22px;
	height: 22px;
	margin-left:5px;
	margin-right: 10px;
	background: url(icon/player-play.png) no-repeat;	
	
  opacity:0.7;
	cursor:hand;
	
	-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; 
}

.video-player.default .paused-button {
	background: url(icon/player-pause.png) no-repeat;
}

.video-player.default .video-play:hover {	
    opacity: 1;
}

.video-player.default .video-timer {
	margin-top: 8px;
	margin-right: 10px;
	cursor : default;
	color: #999;
	font-family:Arial, Tahoma;
	font-size: 0.7em;
	font-weight: bold;
}

/* volume button */

.video-player.default .volume-button {
	
	margin-right:10px;
	
	display: block;
	width: 22px;
	height: 22px;
	background: url(icon/player-volume-full.png) no-repeat;

	cursor:hand;
	opacity: 0.8;
}

.video-player.default .volume-button:hover {
	opacity: 1;
}

.video-player.default .volume-mute {
	background: url(icon/player-volume.png) no-repeat;
}

/*fullscreen*/
.video-player.default .player-fullscreen {
	margin-top:6px;
	
	display: block;
	width: 22px;
	height: 22px;
	background: url(icon/player-fullscreen.png) no-repeat;

	cursor:hand;
	opacity: 0.8;
}

.video-player.default .player-fullscreen:hover {
	opacity: 1;
}

.video-player.default .player-exit-fullscreen {
	margin-top:4px;
	background: url(icon/player-exit-fullscreen.png) no-repeat;
}

/*video seek*/
/* seek */
.video-player.default .video-seek {
	float:left;
	position:relative;		
	width: 80px;
	height: 10px;
	margin-top: 10px;
	margin-right:10px;	
}

.video-player.default .video-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	border: 1px solid #494949;

	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;
	
	background: #535353;
	background-image: -moz-linear-gradient(top, #535353, #333333);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #535353),color-stop(1, #333333));
	
	box-shadow: inset 0 -3px 3px #333333;
}

.video-player.default .video-seek .slider-range{
	position:absolute;
	top:1px;
	left:0px;
	height:100%;
	-moz-border-radius:15px 0px 0px 15px;
	-webkit-border-radius:15px 0px 0px 15px;
	border-radius:15px 0px 0px 15px;
	
	z-index:2;
	
	background: #4cbae8;
	background-image: -moz-linear-gradient(top, #4cbae8, #39a2ce);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #4cbae8),color-stop(1, #39a2ce));
	
	box-shadow: inset 0 -3px 3px #39a2ce;
}

.video-player.default .video-seek .slider-handle{
	position:absolute;
	top:0px;
	left:0px;
	
	width: 10px;
	height: 10px;	
	border: 1px solid #323232;
	
	z-index:3;

	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;	
	
	background: #e6e6e6;
	background-image: -moz-linear-gradient(top, #e6e6e6, #d5d5d5);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #e6e6e6),color-stop(1, #d5d5d5));
	
	box-shadow: inset 0 -3px 3px #d5d5d5;	
}

.video-player.default .volume-seek{		
	position: absolute;
	height: 60px;
	width: 6px;
	bottom:30px;

	
	visibility: hidden;
	opacity: 0;

}

.video-player.default .volume-seek:hover {
	visibility: visible;
	opacity: 1;
}

.video-player.default .volume-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	border: 1px solid #444;
	
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	
	background: #535353;
	background-image: -moz-linear-gradient(top, #535353, #333333);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #535353),color-stop(1, #333333));
	
	box-shadow: inset 0 3px 3px #333333;
}

.video-player.default .volume-seek .slider-range{
	position:absolute;
	bottom:0px;
	left:1px;
	width:100%;
	height:0;
	-moz-border-radius:0px 0px 5px 5px;
	-webkit-border-radius:0px 0px 5px 5px;
	border-radius:0px 0px 5px 5px;
	
	z-index:2;
	
	background: #e6e6e6;
	background-image: -moz-linear-gradient(top, #e6e6e6, #d5d5d5);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #e6e6e6),color-stop(1, #d5d5d5));
	
	box-shadow: inset 0 -3px 3px #b9a2ce;
}

.video-player.default .volume-seek .slider-handle{
	position:absolute;
	bottom:0px;
	left:-2px;
	
	width: 10px;
	height: 10px;	
	border: 1px solid #323232;
	
	z-index:3;

	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;	
	
	background: #e6e6e6;
	background-image: -moz-linear-gradient(top, #e6e6e6, #d5d5d5);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #e6e6e6),color-stop(1, #d5d5d5));
	
	box-shadow: inset 0 -3px 3px #b9a2ce;
}

/*start of round*/

.video-player.round{
	position:absolute;
}

.video-player.round .bevel{
	display:block;
	float:left;
	position:relative;
	height:80%;
	top:10%;
	width:0px;
	margin-right:10px;
	border-left:1px solid #000000;
	border-right:1px solid #555555;
}

.video-player.round .video-controls{
	position: absolute;
	z-index : 2;
	visibility: hidden;
	opacity: 0;

	width:90%;
	left: 5%;
	bottom : 10px;
	height:30px;
	background:#222222;
	
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;	
	
	-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; 
}

.video-player.round .control-border{
	display:none;
}

/*.video-player.round video:hover + .video-controls {
	visibility: visible;
	opacity: 0.8;
}

.video-player.round .video-controls:hover {
	visibility: visible;
	opacity: 0.8;
}*/

.video-player.round .video-play, .video-player.round .volume-box, .video-player.round .volume-button, .video-player.round .video-timer, .video-player.round .player-fullscreen {
	float: left;
	margin-top:4px;
}

.video-player.round .video-play {

	width: 22px;
	height: 22px;
	margin-left:10px;
	margin-right: 10px;
	background: url(icon/player-play.png) no-repeat;	
	
  opacity:0.7;
	cursor:hand;
	
	-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; 
}

.video-player.round .paused-button {
	background: url(icon/player-pause.png) no-repeat;
}

.video-player.round .video-play:hover {	
    opacity: 1;
}

.video-player.round .video-timer {
	margin-top: 8px;
	margin-right: 10px;
	cursor : default;
	color: #999;
	font-family:Arial, Tahoma;
	font-size: 0.7em;
	font-weight: bold;
}

/* volume button */

.video-player.round .volume-button {
	
	margin-right:10px;
	
	display: block;
	width: 22px;
	height: 22px;
	background: url(icon/player-volume-full.png) no-repeat;

	cursor:hand;
	opacity: 0.8;
}

.video-player.round .volume-button:hover {
	opacity: 1;
}

.video-player.round .volume-mute {
	background: url(icon/player-volume.png) no-repeat;
}

/*fullscreen*/
.video-player.round .player-fullscreen {
	display: block;
	width: 22px;
	height: 22px;
	background: url(icon/round-player-fullscreen.png) no-repeat;

	cursor:hand;
	opacity: 0.8;
}

.video-player.round .player-fullscreen:hover {
	opacity: 1;
}

.video-player.round .player-exit-fullscreen {
	margin-top:4px;
	background: url(icon/round-player-exit-fullscreen.png) no-repeat;
}

/*video seek*/
/* seek */
.video-player.round .video-seek {
	float:left;
	position:relative;		
	width: 80px;
	height: 5px;
	margin-top: 12px;
	margin-right:15px;	
}

.video-player.round .video-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	border: 1px solid #968F89;

	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;
	
	background: #535353;
	background-image: -moz-linear-gradient(top, #C8C8CA, #CECECE);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #CECECE),color-stop(1, #C8C8CA));
	
	box-shadow: inset 0 -3px 3px #C8C8CA;
}

.video-player.round .video-seek .slider-range{
	position:absolute;
	top:1px;
	left:1px;
	height:100%;
	-moz-border-radius:15px 0px 0px 15px;
	-webkit-border-radius:15px 0px 0px 15px;
	border-radius:15px 0px 0px 15px;
	
	z-index:2;
	
	background: #F68100;
	background-image: -moz-linear-gradient(top, #F68100, #EE840E);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #F68100),color-stop(1, #EE840E));
	
	box-shadow: inset 0 -3px 3px #EE840E;
}

.video-player.round .video-seek .slider-handle{
	position:absolute;
	top:-5px;
	left:0px;
	
	background: url(icon/round-seek-handle.png) no-repeat;
	
	width: 20px;
	height: 20px;	
	
	z-index:3;
}

.video-player.round .volume-seek{		
	position: absolute;
	height: 60px;
	width: 6px;
	bottom:25px;

	
	visibility: hidden;
	opacity: 0;

}

.video-player.round .volume-seek:hover {
	visibility: visible;
	opacity: 1;
}

.video-player.round .volume-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	border: 1px solid #444;
	
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	
	background: #535353;
	background-image: -moz-linear-gradient(top, #535353, #333333);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #535353),color-stop(1, #333333));
	
	box-shadow: inset 0 3px 3px #333333;
}

.video-player.round .volume-seek .slider-range{
	position:absolute;
	bottom:0px;
	left:1px;
	width:100%;
	height:0;
	-moz-border-radius:0px 0px 5px 5px;
	-webkit-border-radius:0px 0px 5px 5px;
	border-radius:0px 0px 5px 5px;
	
	z-index:2;
	
	background: #e6e6e6;
	background-image: -moz-linear-gradient(top, #e6e6e6, #d5d5d5);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #e6e6e6),color-stop(1, #d5d5d5));
	
	box-shadow: inset 0 -3px 3px #b9a2ce;
}

.video-player.round .volume-seek .slider-handle{
	position:absolute;
	bottom:0px;
	left:-2px;
	
	width: 10px;
	height: 10px;	
	border: 1px solid #323232;
	
	z-index:3;

	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;	
	
	background: #e6e6e6;
	background-image: -moz-linear-gradient(top, #e6e6e6, #d5d5d5);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #e6e6e6),color-stop(1, #d5d5d5));
	
	box-shadow: inset 0 -3px 3px #b9a2ce;
}

/*start of classic*/
.video-player.classic{
	position:absolute;
}

.video-player.classic .bevel{
	display:block;
	float:left;
	position:relative;
	height:80%;
	top:10%;
	width:0px;
	margin-right:10px;
	border-left:1px solid #000000;
	border-right:1px solid #555555;
}

.video-player.classic .video-controls{
	position: absolute;
	z-index : 2;
	visibility: hidden;
	opacity: 0;

	width: 100%;
	left:0px;
	bottom : 0px;
	height:40px;
	
	background: #222222;
	
	-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; 
}

.video-player.classic .control-border{
	position: absolute;
	width: 100%;
	left:0px;
	top:1px;
	height:1px;
	
	background:#444444;
}

/*.video-player.classic video:hover + .video-controls {
	visibility: visible;
	opacity: 1;
}

.video-player.classic .video-controls:hover {
	visibility: visible;
	opacity: 1;
}*/

.video-player.classic .video-play, .video-player.classic .volume-box, .video-player.classic .volume-button, .video-player.classic .video-timer, .video-player.classic .player-fullscreen {
	float: left;
	margin-top:4px;
}

.video-player.classic .video-play {
	

	width: 32px;
	height: 32px;
	margin-left:10px;
	margin-right: 10px;
	background: url(icon/classic-buttons.png) 0 0 no-repeat;	
	
  opacity:0.7;
	cursor:hand;
	
	-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; 
}

.video-player.classic .paused-button {
	background: url(icon/classic-buttons.png) -33px 0px no-repeat;
}

.video-player.classic .video-play:hover {	
    opacity: 1;
}

.video-player.classic .video-timer {
	margin-top: 13px;
	margin-right: 10px;
	cursor : default;
	color: #999;
	font-family:Arial, Tahoma;
	font-size: 0.7em;
	font-weight: bold;
}

/* volume button */

.video-player.classic .volume-button {
	
	margin-right:10px;
	
	display: block;
	width: 22px;
	height: 22px;
	background: url(icon/classic-buttons.png) -100px 0 no-repeat;

	cursor:hand;
	opacity: 0.8;
}

.video-player.classic .volume-button:hover {
	opacity: 1;
}

.video-player.classic .volume-mute {
	background: url(icon/classic-buttons.png) -100px -32px no-repeat;
}

/*fullscreen*/
.video-player.classic .player-fullscreen {
	margin-top:4px;
	
	display: block;
	width: 22px;
	height: 22px;
	background: url(icon/classic-buttons.png) -193px 0 no-repeat;

	cursor:hand;
	opacity: 0.8;
}

.video-player.classic .player-fullscreen:hover {
	opacity: 1;
}

.video-player.classic .player-exit-fullscreen {
	margin-top:4px;
	background: url(icon/classic-buttons.png) -225px 0 no-repeat;
}

/*video seek*/
/* seek */
.video-player.classic .video-seek {
	float:left;
	position:relative;		
	width: 80px;
	height: 8px;
	margin-top: 15px;
	margin-right:15px;	
}

.video-player.classic .video-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	border: 1px solid #494949;

	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	border-radius:15px;
	
	background: #535353;
	background-image: -moz-linear-gradient(top, #535353, #333333);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #535353),color-stop(1, #333333));
	
	box-shadow: inset 0 -3px 3px #333333;
}

.video-player.classic .video-seek .slider-range{
	position:absolute;
	top:1px;
	left:0px;
	height:100%;
	-moz-border-radius:15px 0px 0px 15px;
	-webkit-border-radius:15px 0px 0px 15px;
	border-radius:15px 0px 0px 15px;
	
	z-index:2;
	
	background: #90C962;
	background-image: -moz-linear-gradient(top, #90C962, #7AB750);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #90C962),color-stop(1, #7AB750));
	
	box-shadow: inset 0 -3px 3px #7AB750;
}

.video-player.classic .video-seek .slider-handle{
	position:absolute;
	top:-5px;
	left:0px;
	
	width: 16px;
	height: 20px;	
	
	background:url(icon/classic-buttons.png) -168px -5px no-repeat;
	
	z-index:3;

	
}

.video-player.classic .volume-seek{		
	position: absolute;
	height: 72px;
	width: 13px;
	bottom:30px;

	
	visibility: hidden;
	opacity: 0;
	
	background:url(icon/classic-buttons.png) 0 -33px no-repeat;

}

.video-player.classic .volume-seek:hover {
	visibility: visible;
	opacity: 1;
}

.video-player.classic .volume-seek .slider-total{
	position:absolute;
	top:5px;
	left:5px;
	width:4px;
	height:62px;
	
	z-index:1;
	
	background-color:#000000;
}

.video-player.classic .volume-seek .slider-range{
	position:absolute;
	bottom:6px;
	
	left:6px;
	width:2px;
	height:0;
	
	background-color:#2292FE;
	
	z-index:2;

}

.video-player.classic .volume-seek .slider-handle{
	position:absolute;
	bottom:0px;
	left:1px;
	
	width: 12px;
	height: 12px;	
	
	
	z-index:3;

	background:url(icon/classic-buttons.png) -138px -11px no-repeat;
}


/*Start of smallblack*/
.video-player.smallblack{
	position:absolute;
}

.video-player.smallblack .bevel{
	width:0px;
	height:0px;
	display:none;
}

.video-player.smallblack .video-controls{
	position: absolute;
	z-index : 2;
	visibility: hidden;
	opacity: 0;

	width: 100%;
	left:0px;
	bottom : 0px;
	height:24px;
	background:#222222;
	
	-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; 
}

.video-player.smallblack .control-border{
	position: absolute;
	width: 100%;
	left:0px;
	top:1px;
	height:1px;
	
	background:#444444;
}

/*.video-player.smallblack video:hover + .video-controls {
	visibility: visible;
	opacity: 1;
}

.video-player.smallblack .video-controls:hover {
	visibility: visible;
	opacity: 1;
}*/

.video-player.smallblack .video-play, .video-player.smallblack .volume-box, .video-player.smallblack .volume-button, .video-player.smallblack .video-timer, .video-player.smallblack .player-fullscreen {
	float: left;
	margin-top:0px;
}

.video-player.smallblack .video-play {
	

	width: 24px;
	height: 24px;
	margin-left:5px;
	margin-right: 5px;
	background: url(icon/smallblack-buttons.png) no-repeat;	
	
  opacity:0.7;
	cursor:hand;
}

.video-player.smallblack .paused-button {
	background: url(icon/smallblack-buttons.png) -24px 0 no-repeat;	
}

.video-player.smallblack .video-play:hover {	
    opacity: 1;
}

.video-player.smallblack .video-timer {
	margin-top: 5px;
	margin-right: 10px;
	cursor : default;
	color: #AAA;
	font-family:Arial, Tahoma;
	font-size: 0.6em;
	font-weight: bold;
}

/* volume button */

.video-player.smallblack .volume-button {
	
	margin-right:5px;
	
	display: block;
	width: 24px;
	height: 24px;
	background: url(icon/smallblack-buttons.png) -48px 0 no-repeat;	

	cursor:hand;
	opacity: 0.8;
}

.video-player.smallblack .volume-button:hover {
	opacity: 1;
}

.video-player.smallblack .volume-mute {
	background: url(icon/smallblack-buttons.png) -72px 0 no-repeat;	
}

/*fullscreen*/
.video-player.smallblack .player-fullscreen {
	
	display: block;
	width: 24px;
	height: 24px;
	background: url(icon/smallblack-buttons.png) -96px 0 no-repeat;	

	cursor:hand;
	opacity: 0.8;
}

.video-player.smallblack .player-fullscreen:hover {
	opacity: 1;
}

.video-player.smallblack .player-exit-fullscreen {
	background: url(icon/smallblack-buttons.png) -120px 0 no-repeat;	
}

/*video seek*/
/* seek */
.video-player.smallblack .video-seek {
	float:left;
	position:relative;		
	width: 80px;
	height: 5px;
	margin-top: 8px;
	margin-right:10px;	
}

.video-player.smallblack .video-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	border: 1px solid #494949;

	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	
	background: #535353;
	background-image: -moz-linear-gradient(top, #535353, #333333);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #535353),color-stop(1, #333333));
	
	box-shadow: inset 0 -3px 3px #333333;
}

.video-player.smallblack .video-seek .slider-range{
	position:absolute;
	top:1px;
	left:0px;
	height:100%;
	-moz-border-radius:5px 0px 0px 5px;
	-webkit-border-radius:5px 0px 0px 5px;
	border-radius:5px 0px 0px 5px;
	
	z-index:2;
	
	background: #ECECEC;
	background-image: -moz-linear-gradient(top, #ECECEC, #DDDDDD);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #ECECEC),color-stop(1, #DDDDDD));
	
	box-shadow: inset 0 -3px 3px #DDDDDD;
}

.video-player.smallblack .video-seek .slider-handle{
	position:absolute;
	top:0px;
	left:0px;
	
	width: 6px;
	height: 6px;	
	border: 1px solid #323232;
	
	z-index:3;

	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;	
	
	background: #323232;
	background-image: -moz-linear-gradient(top, #323232, #222222);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #e6e6e6),color-stop(1, #222222));
	
	box-shadow: inset 0 -3px 3px #222222;	
}

.video-player.smallblack .volume-seek{		
	position: absolute;
	height: 70px;
	width: 12px;
	bottom:20px;

	
	visibility: hidden;
	opacity: 0;
	
	border : 1px solid #000;
	background:#222222;
	
}

.video-player.smallblack .volume-seek:hover {
	visibility: visible;
	opacity: 1;
}

.video-player.smallblack .volume-seek .slider-total{
	position:absolute;
	top:3px;
	left:4px;
	width:2px;
	height:62px;
	
	z-index:1;
	
	border: 1px solid #444;
	
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	border-radius:2px;
	
	background: #535353;
	background-image: -moz-linear-gradient(top, #535353, #333333);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #535353),color-stop(1, #333333));
	
	box-shadow: inset 0 3px 3px #333333;
}

.video-player.smallblack .volume-seek .slider-range{
	position:absolute;
	bottom:4px;
	left:5px;
	width:2px;
	height:60px;
	-moz-border-radius:0px 0px 2px 2px;
	-webkit-border-radius:0px 0px 2px 2px;
	border-radius:0px 0px 2px 2px;
	
	z-index:2;
	
	background: #e6e6e6;
	background-image: -moz-linear-gradient(top, #e6e6e6, #d5d5d5);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #e6e6e6),color-stop(1, #d5d5d5));
	
	box-shadow: inset 0 -3px 3px #b9a2ce;
}

.video-player.smallblack .volume-seek .slider-handle{
	position:absolute;
	bottom:0px;
	left:1px;
	
	width: 8px;
	height: 8px;	
	border: 1px solid #323232;
	
	z-index:3;

	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	border-radius:8px;	
	
	background: #e6e6e6;
	background-image: -moz-linear-gradient(top, #e6e6e6, #d5d5d5);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #e6e6e6),color-stop(1, #d5d5d5));
	
	box-shadow: inset 0 -3px 3px #b9a2ce;
}

.audio-file, .audio-timer{
	cursor : default;
}

.video-center-button{
	position: absolute;
	z-index : 50;
	width:56px;
	height:56px;
	margin:auto;
	left : 0px;
	top : 0px;
	right : 0px;
	bottom : 0px;
	cursor : pointer;
	opacity : 0.8;
	
	background : url(icon/play.png) no-repeat;
	border:0px solid #FFD666;
}

.video-center-button:hover{
	opacity : 1;
}

.audio-player {}
/* start of skin1 */
.audio-player.skin1{
	position : relative,
	background : #7b796f
}

.audio-player.skin1 .back_button{
	display:none;
}

.audio-player.skin1 .audio-play{
	position:absolute;
	cursor: pointer;
	background : url(icon/audio-skin.png) no-repeat -15px -16px;
	width : 10px;
	height: 10px;
	left: 11px;
	top: 0px;
	bottom: 0px;
	z-index: 20;
	margin: auto;
}
.audio-player.skin1 .paused-button{
	position:absolute;
	cursor: pointer;
	background : url(icon/audio-skin.png) no-repeat -31px -17px;
	width : 10px;
	height: 10px;
	left: 11px;
	top: 0px;
	bottom: 0px;
	margin: auto;
	z-index: 20;
}
.audio-player.skin1 .forward_button{
	display:none;
}
.audio-player.skin1 .volume-button{
	
	display:none;
}
.audio-player.skin1 .volume-mute{
   	display: none;
}
.audio-player.skin1 .audio-timer{
	display:none;
}
.audio-player.skin1 .audio-file{
	display:none;
}

/* seek */
.audio-player.skin1 .audio-seek {
	position:absolute;		
	width: 120px;
	height: 10px;
	left:35px;
	bottom:0px;
	top:0px;
	margin: auto;
}
.audio-player.skin1 .audio-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	z-index:1;
	background-image: -webkit-linear-gradient(top, #616159, #B7B4A5);
	
	border-radius: 4px;
}

.audio-player.skin1 .audio-seek .slider-range{
	position:absolute;
	top:0px;
	left:0px;
	height:100%;
	z-index:2;
	box-shadow: inset 0 -3px 3px #ACACAC;
}

.audio-player.skin1 .audio-seek .slider-handle{
	position : absolute;
	width: 11px;
    height: 11px;
    z-index: 100;
    background: url(icon/audio-skin.png) no-repeat -46px -17px;	
}
.audio-player.skin1 .volume-seek{
	position:absolute;
	width: 79px;
	height: 20px;
	top:0px;
	bottom: 0px;
	margin: auto;
	right: 8px;
}
.audio-player.skin1 .volume-seek .slider-total{
	position :absolute;
	left:0px;
	top:0px;
	width: 100%;
	height: 20px;
	z-index:1;
	background: url(icon/audio-skin.png) no-repeat -150px -7px;
}
.audio-player.skin1 .volume-seek .slider-range{
	position :absolute;
	left:0px;
	width:100%;
	top:0px;
	height: 20px;
	z-index:2;
	background: url(icon/audio-skin.png) no-repeat -68px -7px;
}
.audio-player.skin1 .volume-seek .slider-handle{
	display:none;
}


/* start of skin2 */
.audio-player.skin2{
	position : relative,
	background : #7b796f
}

.audio-player.skin2 .back_button{
	display:none;
}

.audio-player.skin2 .audio-play{
	position:absolute;
	cursor: pointer;
	background : url(icon/audio-skin.png) no-repeat -15px -62px;
	width : 10px;
	height: 17px;
	left: 11px;
	top: 0px;
	bottom: 0px;
	z-index: 20;
	margin: auto;
}
.audio-player.skin2 .paused-button{
	position:absolute;
	cursor: pointer;
	background : url(icon/audio-skin.png) no-repeat -33px -65px;
	width : 15px;
	height: 10px;
	left: 11px;
	top: 0px;
	bottom: 0px;
	margin: auto;
	z-index: 20;
}
.audio-player.skin2 .forward_button{
	display:none;
}
.audio-player.skin2 .volume-button{
	
	display:none;
}
.audio-player.skin2 .volume-mute{
   	display: none;
}
.audio-player.skin2 .audio-timer{
	display:none;
}
.audio-player.skin2 .audio-file{
	display:none;
}

/* seek */
.audio-player.skin2 .audio-seek {
	position:absolute;		
	width: 120px;
	height: 10px;
	left:35px;
	bottom:0px;
	top:0px;
	margin: auto;
}
.audio-player.skin2 .audio-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:10px;
	background-image: -webkit-linear-gradient(top, #616159, #B7B4A5);
	
}

.audio-player.skin2 .audio-seek .slider-range{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:10px;
	z-index:2;
	background-image: -webkit-linear-gradient(top, #FFFFFF, #b8fb7d);
}

.audio-player.skin2 .audio-seek .slider-handle{
    display : none;
}

.audio-player.skin2 .volume-seek{
	position:absolute;
	width: 31px;
	height: 10px;
	top:0px;
	bottom: 0px;
	margin: auto;
	right: 8px;
}
.audio-player.skin2 .volume-seek .slider-total{
	position :absolute;
	left:0px;
	top:0px;
	width: 31px;
	height: 10px;
	z-index:1;
	background: url(icon/audio-skin.png) no-repeat -95px -64px;
}
.audio-player.skin2 .volume-seek .slider-range{
	position :absolute;
	left:0px;
	width:31px;
	top:0px;
	height: 10px;
	z-index:2;
	background: url(icon/audio-skin.png) no-repeat -60px -65px;
}
.audio-player.skin2 .volume-seek .slider-handle{
	display:none;
}


/*Start of default*/
.audio-player.default{
	position:relative;
	
	background: #DEDDD8;
	background-image: -moz-linear-gradient(top, #DEDDD8, #A19F95);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #DEDDD8),color-stop(1, #A19F95));
	
	box-shadow: 3px 3px 5px #b9a2ce;
	
	min-height:55px;
}

.audio-player.default .back_button{
	display:none;
}

.audio-player.default .audio-play{
	position:absolute;
	cursor: pointer;
	width:36px;
	height:21px;
	left:11px;
	bottom:11px;
	background:url(icon/audio-default.png) -34px -29px no-repeat;
}
.audio-player.default .paused-button{
	background:url(icon/audio-default.png) -80px -29px no-repeat;
} 

.audio-player.default .forward_button{
	display:none;
}

.audio-player.default .volume-button{
	position:absolute;
	width:20px;
	height:15px;
	right:100px;
	bottom:11px;
	background:url(icon/audio-default.png) -133px -34px no-repeat;
}

.audio-player.default .volume-mute {
	background: url(icon/audio-default.png) -158px -34px no-repeat;	
}

.audio-player.default .audio-timer{
	display:none;
}

.audio-player.default .audio-file{
	display:none;
}

/* seek */
.audio-player.default .audio-seek {
	position:absolute;		
	width: 80px;
	height: 10px;
	left:11px;
	bottom:40px;
}

.audio-player.default .audio-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	background: #6D9CB7;
}

.audio-player.default .audio-seek .slider-range{
	position:absolute;
	top:0px;
	left:0px;
	height:100%;
	
	z-index:2;
	
	background: #C9C9C8;
	background-image: -moz-linear-gradient(top, #E6E6E4, #ACACAC);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #E6E6E4),color-stop(1, #ACACAC));
	
	box-shadow: inset 0 -3px 3px #ACACAC;
}

.audio-player.default .audio-seek .slider-handle{
	position:absolute;
	left:0px;
	top:0px;
	
	width: 15px;
	height: 10px;	
	
	z-index:3;

	background: #A69F9A;
	background-image: -moz-linear-gradient(top, #DED2D2, #6F6B63);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #DED2D2),color-stop(1, #6F6B63));
	
	box-shadow: inset 0 -3px 3px #6F6B63;
}

.audio-player.default .volume-seek{		
	position:absolute;		
	width: 80px;
	height: 10px;
	right:11px;
	bottom:15px;
		
}

.audio-player.default .volume-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	border-top: 1px solid #AAA9A0;

	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	border-radius:2px;
	
	background: #999999;
}

.audio-player.default .volume-seek .slider-range{
	position:absolute;
	top:0px;
	left:0px;
	height:100%;
	-moz-border-radius:2px 0px 0px 2px;
	-webkit-border-radius:2px 0px 0px 2px;
	border-radius:2px 0px 0px 5px;
	
	z-index:2;
	
	border:1px solid #A3A2A2;
	
	background: #CECECC;
	background-image: -moz-linear-gradient(top, #E1E1DF, #B1B1B0);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #E1E1DF),color-stop(1, #B1B1B0));
	
	box-shadow: inset 0 -3px 3px #B1B1B0;
}

.audio-player.default .volume-seek .slider-handle{
	position:absolute;
	top:0px;
	left:0px;
	
	width: 6px;
	height: 12px;	
	
	z-index:3;

	background: #AAA29E;
	background-image: -moz-linear-gradient(top, #DED2D2, #76726A);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #DED2D2),color-stop(1, #76726A));
	
}

/*Start of decent*/
.audio-player.decent{
	width:308px;
	height:114px;
	background:url(icon/audio-decent.png) 0 0 no-repeat;	
}

.audio-player.decent .back_button{
	position:absolute;
	cursor: pointer;
	width:42px;
	height:42px;
	left:115px;
	top:30px;
	background:url(icon/audio-decent.png) 0 -133px no-repeat;
}

.audio-player.decent .audio-play{
	position:absolute;
	cursor: pointer;
	width:54px;
	height:54px;
	left:160px;
	top:20px;
	background:url(icon/audio-decent.png) -48px -133px no-repeat;
}
.audio-player.decent .paused-button{
	background:url(icon/audio-decent.png) -105px -133px no-repeat;
} 

.audio-player.decent .forward_button{
	position:absolute;
	cursor: pointer;
	width:42px;
	height:42px;
	left:220px;
	top:30px;
	background:url(icon/audio-decent.png) -168px -134px no-repeat;
}

.audio-player.decent .volume-button{
	position:absolute;
	width:21px;
	height:18px;
	left:276px;
	top:84px;
	background:url(icon/audio-decent.png) -222px -134px no-repeat;
}

.audio-player.decent .volume-mute {
	background: url(icon/audio-decent.png) -222px -158px no-repeat;	
}

.audio-player.decent .audio-timer{
	display:none;
}

.audio-player.decent .audio-file{
	display:none;
}

/* seek */
.audio-player.decent .audio-seek {
	position:absolute;		
	width: 160px;
	height: 10px;
	left:107px;
	top:88px;
}

.audio-player.decent .audio-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	border-top: 1px solid #919191;
	border-bottom:1px solid #F1F1F1;

	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	
	background: #C3C3C3;
	
	box-shadow: inset 0 -3px 3px #C3C3C3;
}

.audio-player.decent .audio-seek .slider-range{
	position:absolute;
	top:0px;
	left:0px;
	height:100%;
	-moz-border-radius:5px 0px 0px 5px;
	-webkit-border-radius:5px 0px 0px 5px;
	border-radius:5px 0px 0px 5px;
	
	z-index:2;
	
	border:1px solid #A3A2A2;
	
	background: #C3F4FC;
	background-image: -moz-linear-gradient(top, #C3F4FC, #A8D3E7);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #C3F4FC),color-stop(1, #A8D3E7));
	
	box-shadow: inset 0 -3px 3px #A8D3E7;
}

.audio-player.decent .audio-seek .slider-handle{
	position:absolute;
	left:0px;
	top:-3px;
	
	width: 18px;
	height: 18px;	
	
	z-index:3;

	background:url(icon/audio-decent.png) -337px -83px no-repeat;
}

.audio-player.decent .volume-seek{		
	position: absolute;
	left:280px;
	top:15px;
	height: 60px;
	width: 6px;
	bottom:30px;
		
}

.audio-player.decent .volume-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	border: 1px solid #979797;
	
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	
	background: #535353;
	background-image: -moz-linear-gradient(top, #535353, #333333);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #535353),color-stop(1, #333333));
	
	box-shadow: inset 0 3px 3px #333333;
}

.audio-player.decent .volume-seek .slider-range{
	position:absolute;
	bottom:0px;
	left:1px;
	width:100%;
	height:0;
	-moz-border-radius:0px 0px 5px 5px;
	-webkit-border-radius:0px 0px 5px 5px;
	border-radius:0px 0px 5px 5px;
	
	z-index:2;
	
	background: #FFF6D5;
	background-image: -moz-linear-gradient(top, #FFF6D5, #D7F695);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #FFF6D5),color-stop(1, #D7F695));
	
	box-shadow: inset 0 -3px 3px #FFF6D5;
}

.audio-player.decent .volume-seek .slider-handle{
	position:absolute;
	bottom:0px;
	left:-4px;
	
	width: 18px;
	height: 18px;	
	
	z-index:3;

	background:url(icon/audio-decent.png) -337px -83px no-repeat;
}

/*Start of advanced*/
.audio-player.advanced{
	width:398px;
	height:195px;
	background:url(icon/audio-advanced.png) -17px -6px no-repeat;	
}

.audio-player.advanced .back_button{
	position:absolute;
	cursor: pointer;
	width:11px;
	height:10px;
	left:15px;
	top:165px;
	background:url(icon/audio-advanced.png) -33px -212px no-repeat;
}

.audio-player.advanced .audio-play{
	position:absolute;
	cursor: pointer;
	width:7px;
	height:10px;
	left:50px;
	top:165px;
	background:url(icon/audio-advanced.png) -70px -211px no-repeat;
}
.audio-player.advanced .paused-button{
	background:url(icon/audio-advanced.png) -98px -212px no-repeat;
} 

.audio-player.advanced .forward_button{
	position:absolute;
	cursor: pointer;
	width:11px;
	height:10px;
	left:78px;
	top:165px;
	background:url(icon/audio-advanced.png) -128px -211px no-repeat;
}

.audio-player.advanced .volume-button{
	display:none;
}

.audio-player.advanced .volume-mute {
	display:none;
}

.audio-player.advanced .audio-timer{
	position:absolute;
	right:10px;
	top:40px;
	
	color: #999;
	font-family:Arial, Tahoma;
	font-size: 0.6em;
	font-weight: bold;
}

.audio-player.advanced .audio-file{
	position:absolute;
	right:10px;
	top:65px;
	
	color: #999;
	font-family:Arial, Tahoma;
	font-size: 0.6em;
	font-weight: bold;
}

/* seek */
.audio-player.advanced .audio-seek {
	position:absolute;		
	width: 250px;
	height: 2px;
	left:10px;
	top:110px;
}

.audio-player.advanced .audio-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;

	background: #5888A5;
}

.audio-player.advanced .audio-seek .slider-range{
	position:absolute;
	top:-1px;
	left:0px;
	height:100%;
	
	z-index:2;
	
	border:1px solid #5888A5;
	
	background: #6CACD5;
}

.audio-player.advanced .audio-seek .slider-handle{
	display:none;
}

.audio-player.advanced .volume-seek{		
	display:none;
}

.audio-player.advanced .volume-seek .slider-total{
	display:none;
}

.audio-player.advanced .volume-seek .slider-range{
	display:none;
}

.audio-player.advanced .volume-seek .slider-handle{
	display:none;
}

/*list*/
.audio-player.advanced .list-button{
	position:absolute;
	cursor: pointer;
	width:12px;
	height:10px;
	left:235px;
	top:165px;
	background:url(icon/audio-advanced.png) -153px -210px no-repeat;
}

.audio-player.advanced .list-panel-bk{
	position : absolute;
	background-color:#333333;
	width:378px;
	height : 120px;
	left:0px;
	top:196px;
	border-radius : 10px;
	padding : 10px;
	display:none;
}

.audio-player.advanced .list-panel{
	position : relative;
	width:100%;
	height:100%;
	overflow-x : hidden;
	overflow-y : auto;
}

.audio-player.advanced .list-item{
	position:relative;
  float : bottom;
  white-space : nowrap;
	cursor : pointer;
	width:350px;
	height:28px;
	line-height:28px;
	text-align : left;
	vertical-align : middle;
	font-family : "Tahoma","sans-serif","Arial";
	font-size : 12px;
	color:#EEEEEE;
}

.audio-player.advanced .list-item.selected{
	color: red;
}

.audio-player.advanced .list-item:hover{
	color:red;
}

/*Start of wave*/
.audio-player.wave{
	background:#000;
}

.audio-player.wave .back_button{
	position:absolute;
	cursor: pointer;
	width:12px;
	height:11px;
	right:20px;
	bottom:5px;
	background:url(icon/audio-default.png) -245px -34px no-repeat;
}

.audio-player.wave .audio-play{
	position:absolute;
	cursor: pointer;
	width:7px;
	height:11px;
	left:12px;
	bottom:4px;
	background:url(icon/audio-default.png) -211px -34px no-repeat;
}
.audio-player.wave .paused-button{
	width:9px;
	background:url(icon/audio-default.png) -226px -35px no-repeat;
} 

.audio-player.wave .forward_button{
	position:absolute;
	cursor: pointer;
	width:12px;
	height:11px;
	right:2px;
	bottom:5px;
	background:url(icon/audio-default.png) -269px -34px no-repeat;
}

.audio-player.wave .volume-button{
	position:absolute;
	cursor: pointer;
	width:12px;
	height:12px;
	right:40px;
	bottom:4px;
	background:url(icon/audio-default.png) -289px -33px no-repeat;
}

.audio-player.wave .volume-mute {
	background:url(icon/audio-default.png) -308px -33px no-repeat;
}

.audio-player.wave .audio-timer{
	position:absolute;
	left:10px;
	top:5px;
	
	color: #2C8DB5;
	font-family:Arial, Tahoma;
	font-size: 0.6em;
	font-weight: bold;
}

.audio-player.wave .audio-file{
	position:absolute;
	right:10px;
	top:5px;
	
	color: #2C8DB5;
	font-family:Arial, Tahoma;
	font-size: 0.6em;
	font-weight: bold;
}

/* seek */
.audio-player.wave .audio-seek {
	position:absolute;		
	width: 150px;
	height: 2px;
	left:32px;
	bottom:9px;
}

.audio-player.wave .audio-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;

	background: #5888A5;
}

.audio-player.wave .audio-seek .slider-range{
	position:absolute;
	top:-1px;
	left:0px;
	height:100%;
	
	z-index:2;
	
	border:1px solid #5888A5;
	
	background: #6CACD5;
}

.audio-player.wave .audio-seek .slider-handle{
	display:none;
}

.audio-player.wave .volume-seek{		
	position:absolute;		
	width: 30px;
	height: 2px;
	right:55px;
	bottom:9px;
}

.audio-player.wave .volume-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;

	background: #5888A5;
}

.audio-player.wave .volume-seek .slider-range{
	position:absolute;
	top:-1px;
	left:0px;
	height:100%;
	
	z-index:2;
	
	border:1px solid #5888A5;
	
	background: #6CACD5;
}

.audio-player.wave .volume-seek .slider-handle{
	display:none;
}

/*list*/
.audio-player.wave .list-button{
	display:none;
}

.audio-player.wave .list-panel-bk{
	position : absolute;
	width : 33%;
	background-color:#000;
	height : 80%;
	right:0px;
	top:22px;
	overflow : hidden;
}

.audio-player.wave .list-panel{
	position:relative;
	width:100%;
	height:100%;
	overflow-x:hidden;
	overflow-y:auto;
}

.audio-player.wave .list-item{
	position:relative;
  float : bottom;
  white-space : nowrap;
	cursor : pointer;
	width:100%;
	height:22px;
	line-height:22px;
	text-align : left;
	vertical-align : middle;
	font-family : "Tahoma","sans-serif","Arial";
	font-size : 12px;
	color:#5888A5;
}

.audio-player.wave .list-item.selected{
	color:#80B0C6;
}

.audio-player.wave .list-item:hover{
	color:#80B0C6;
}

/*Start of glass*/
.audio-player.glass{
	width:405px;
	height:140px;
	background:url(icon/audio-glass.png) -11px -13px no-repeat;	
}

.audio-player.glass .back_button{
	position:absolute;
	cursor: pointer;
	width:11px;
	height:12px;
	left:14px;
	top:62px;
	background:url(icon/audio-glass.png) -251px -316px no-repeat;
}

.audio-player.glass .audio-play{
	position:absolute;
	cursor: pointer;
	width:50px;
	height:50px;
	left:44px;
	top:44px;
	background:url(icon/audio-glass.png) -42px -294px no-repeat;
}
.audio-player.glass .paused-button{
	background:url(icon/audio-glass.png) -104px -294px no-repeat;
} 

.audio-player.glass .forward_button{
	position:absolute;
	cursor: pointer;
	width:11px;
	height:12px;
	left:110px;
	top:62px;
	background:url(icon/audio-glass.png) -279px -316px no-repeat;
}

.audio-player.glass .volume-up-button{
	position:absolute;
	cursor: pointer;
	width:11px;
	height:12px;
	left:62px;
	top:16px;
	background:url(icon/audio-glass.png) -190px -316px no-repeat;
}

.audio-player.glass .volume-down-button{
	position:absolute;
	cursor: pointer;
	width:11px;
	height:12px;
	left:62px;
	top:110px;
	background:url(icon/audio-glass.png) -220px -316px no-repeat;
}

.audio-player.glass .volume-button{
	display:none;
}

.audio-player.glass .volume-mute {
	display:none;
}

.audio-player.glass .audio-timer{
	position:absolute;
	left:275px;
	bottom:20px;
	
	color: #ccc;
	font-family:Arial, Tahoma;
	font-size: 0.6em;
	font-weight: bold;
}

.audio-player.glass .audio-file{
	position:absolute;
	left:150px;
	top:20px;
	
	color: #ccc;
	font-family:Arial, Tahoma;
	font-size: 0.6em;
	font-weight: bold;
}

/* seek */
.audio-player.glass .audio-seek {
	position:absolute;		
	width: 207px;
	height: 6px;
	left:146px;
	top:95px;
}

.audio-player.glass .audio-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	
	background:url(icon/audio-glass.png) -44px -369px no-repeat;
}

.audio-player.glass .audio-seek .slider-range{
	position:absolute;
	top:0px;
	left:0px;
	height:100%;
	
	z-index:2;
	
	background:url(icon/audio-glass.png) -44px -381px no-repeat;
}

.audio-player.glass .audio-seek .slider-handle{
	display:none;
}

.audio-player.glass .volume-seek{		
	display:none;
}

.audio-player.glass .volume-seek .slider-total{
	display:none;
}

.audio-player.glass .volume-seek .slider-range{
	display:none;
}

.audio-player.glass .volume-seek .slider-handle{
	display:none;
}

/*list*/
.audio-player.glass .list-button{
	position:absolute;
	cursor: pointer;
	width:14px;
	height:12px;
	left:146px;
	top:108px;
	background:url(icon/audio-glass.png) -311px -317px no-repeat;
}

.audio-player.glass .list-panel-bk{
	position : absolute;
	width : 310px;
	height : 69px;
	background:url(icon/audio-glass.png) -16px -152px no-repeat;
	left:10px;
	top:116px;
	padding:26px;
	overflow:hidden;
	display:none;
}

.audio-player.glass .list-panel{
	position : relative;
	width : 100%;
	height : 100%;
	overflow-x : hidden;
	overflow-y : auto;
}

.audio-player.glass .list-item{
	position:relative;
  float : bottom;
  white-space : nowrap;
	cursor : pointer;
	width:310px;
	height:25px;
	line-height:25px;
	text-align : left;
	margin-left:2px;
	vertical-align : middle;
	font-family : "Tahoma","sans-serif","Arial";
	font-size : 12px;
	background-color:transparent;
	color:#999999;
}

.audio-player.glass .list-item.selected{
	background-color:rgba(0,200,0, 0.1);
	color:#00CC00;
}

.audio-player.glass .list-item.selected:hover{
	background-color:rgba(0,200,0, 0.1);
	color:#00CC00;
}

.audio-player.glass .list-item:hover{
	background-color:transparent;
	color:#DDDDDD;
}

/*Start of simple*/
.audio-player.simple{
	width:203px;
	height:90px;
	background:url(icon/audio-simple.png) -20px -21px no-repeat;	
}

.audio-player.simple .back_button{
	position:absolute;
	cursor: pointer;
	width:25px;
	height:25px;
	left:21px;
	top:24px;
	background:url(icon/audio-simple.png) -21px -131px no-repeat;
}

.audio-player.simple .audio-play{
	position:absolute;
	cursor: pointer;
	width:40px;
	height:40px;
	left:52px;
	top:13px;
	background:url(icon/audio-simple.png) -57px -123px no-repeat;
}
.audio-player.simple .paused-button{
	background:url(icon/audio-simple.png) -103px -124px no-repeat;
} 

.audio-player.simple .forward_button{
	position:absolute;
	cursor: pointer;
	width:25px;
	height:25px;
	left:97px;
	top:24px;
	background:url(icon/audio-simple.png) -156px -131px no-repeat;
}

.audio-player.simple .volume-button{
	position:absolute;
	width:26px;
	height:24px;
	left:156px;
	top:21px;
	background:url(icon/audio-simple.png) -196px -131px no-repeat;
}

.audio-player.simple .volume-mute {
	background: url(icon/audio-simple.png) -242px -131px no-repeat;	
}

.audio-player.simple .audio-timer{
	display:none;
}

.audio-player.simple .audio-file{
	display:none;
}

/* seek */
.audio-player.simple .audio-seek {
	position:absolute;		
	width: 160px;
	height: 10px;
	left:20px;
	top:63px;
}

.audio-player.simple .audio-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	border: 1px solid #040404;

	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	
	background: #14161D
	
}

.audio-player.simple .audio-seek .slider-range{
	position:absolute;
	top:0px;
	left:0px;
	height:100%;
	-moz-border-radius:5px 0px 0px 5px;
	-webkit-border-radius:5px 0px 0px 5px;
	border-radius:5px 0px 0px 5px;
	
	z-index:2;
	
	border:1px solid #040404;
	
	background: #41546B;
	background-image: -moz-linear-gradient(left, #A05CA6, #2F7A61);
	background-image: -webkit-gradient(linear,left top,right top,color-stop(0, #A05CA6),color-stop(1, #2F7A61));
	
	box-shadow: inset 0 -3px 3px #2F7A61;
}

.audio-player.simple .audio-seek .slider-handle{
	position:absolute;
	left:0px;
	top:0px;
	
	width: 12px;
	height: 12px;	
	
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	
	z-index:3;
	
	background: #CCCCCC;
	background-image: -moz-linear-gradient(left, #FCFCFC, #CCCCCC);
	background-image: -webkit-gradient(linear,left top,right top,color-stop(0, #FCFCFC),color-stop(1, #CCCCCC));
}

.audio-player.simple .volume-seek{		
	display:none;
}

.audio-player.simple .volume-seek .slider-total{
	display:none;
}

.audio-player.simple .volume-seek .slider-range{
	display:none;
}

.audio-player.simple .volume-seek .slider-handle{
	display:none;
}

/*Start of enjoy*/
.audio-player.enjoy{
	width:350px;
	height:63px;
	background:url(icon/audio-enjoy.png) -19px -10px no-repeat;	
}

.audio-player.enjoy .back_button{
	display:none;
}

.audio-player.enjoy .audio-play{
	position:absolute;
	cursor: pointer;
	width:48px;
	height:48px;
	left:8px;
	top:5px;
	background:url(icon/audio-enjoy.png) -32px -93px no-repeat;
}
.audio-player.enjoy .paused-button{
	background:url(icon/audio-enjoy.png) -84px -93px no-repeat;
} 

.audio-player.enjoy .forward_button{
	display:none;
}

.audio-player.enjoy .volume-button{
	position:absolute;
	width:48px;
	height:48px;
	left:295px;
	top:5px;
	background:url(icon/audio-enjoy.png) -137px -93px no-repeat;
}

.audio-player.enjoy .volume-mute {
	background: url(icon/audio-enjoy.png) -192px -94px no-repeat;	
}

.audio-player.enjoy .audio-timer{
	display:none;
}

.audio-player.enjoy .audio-file{
	display:none;
}

/* seek */
.audio-player.enjoy .audio-seek {
	position:absolute;		
	width: 223px;
	height: 36px;
	left:63px;
	top:12px;
}

.audio-player.enjoy .audio-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	background: url(icon/audio-enjoy.png) -35px -171px no-repeat;	
}

.audio-player.enjoy .audio-seek .slider-range{
	position:absolute;
	top:0px;
	left:0px;
	height:100%;
	
	z-index:2;
	
	background: url(icon/audio-enjoy.png) -33px -217px no-repeat;

}

.audio-player.enjoy .audio-seek .slider-handle{
	position:absolute;
	left:0px;
	top:-3px;
	
	width: 45px;
	height: 52px;	
	
	z-index:3;
	
	background: url(icon/audio-enjoy.png) -248px -96px no-repeat;
	
}

.audio-player.enjoy .volume-seek{		
	display:none;
}

.audio-player.enjoy .volume-seek .slider-total{
	display:none;
}

.audio-player.enjoy .volume-seek .slider-range{
	display:none;
}

.audio-player.enjoy .volume-seek .slider-handle{
	display:none;
}

/*Start of background*/
.audio-player.background{
	width:100px;
	height:100px;
	/*background:url(icon/audio-background.png) 0px 0px no-repeat;*/
}

.audio-player.background .back_button{
	display:none;
}

.audio-player.background .audio-play{
	position:absolute;
	cursor: pointer;
	width:100px;
	height:100px;
	background:url(icon/audio-background.png) 0px -101px no-repeat;
	display:none;
}
.audio-player.background .paused-button{
	background:url(icon/audio-background.png) 0px 0px no-repeat;
	display:none;
} 

.audio-player.background .forward_button{
	display:none;
}

.audio-player.background .volume-button{
	display:none;
}

.audio-player.background .volume-mute {
	display:none;
}

.audio-player.background .audio-timer{
	display:none;
}

.audio-player.background .audio-file{
	display:none;
}

/* seek */
.audio-player.background .audio-seek {
	display:none;
}

.audio-player.background .audio-seek .slider-total{
	display:none;
}

.audio-player.background .audio-seek .slider-range{
	display:none;

}

.audio-player.background .audio-seek .slider-handle{
	display:none;
}

.audio-player.background .volume-seek{		
	display:none;
}

.audio-player.background .volume-seek .slider-total{
	display:none;
}

.audio-player.background .volume-seek .slider-range{
	display:none;
}

.audio-player.background .volume-seek .slider-handle{
	display:none;
}

/*Start of tree*/
.audio-player.tree{
	width:322px;
	height:125px;
	background:url(icon/audio-tree.png) -2px -11px no-repeat;	
}

.audio-player.tree .back_button{
	position:absolute;
	cursor: pointer;
	width:42px;
	height:42px;
	left:78px;
	top:75px;
	background:url(icon/audio-tree.png) -12px -159px no-repeat;
}

.audio-player.tree .audio-play{
	position:absolute;
	cursor: pointer;
	width:49px;
	height:49px;
	left:137px;
	top:73px;
	background:url(icon/audio-tree.png) -62px -154px no-repeat;
}
.audio-player.tree .paused-button{
	background:url(icon/audio-tree.png) -172px -156px no-repeat;
} 

.audio-player.tree .forward_button{
	position:absolute;
	cursor: pointer;
	width:42px;
	height:42px;
	left:200px;
	top:75px;
	background:url(icon/audio-tree.png) -122px -159px no-repeat;
}

.audio-player.tree .volume-button{
	display:none;
}

.audio-player.tree .volume-mute {
	display:none;
}

.audio-player.tree .audio-timer{
	position:absolute;
	left:245px;
	top:43px;
	
	color: #666;
	font-family:Arial, Tahoma;
	font-size: 0.6em;
	font-weight: bold;
}

.audio-player.tree .audio-file{
	position:absolute;
	left:75px;
	top:13px;
	
	color: #666;
	font-family:Arial, Tahoma;
	font-size: 0.6em;
	font-weight: bold;
}

/* seek */
.audio-player.tree .audio-seek {
	position:absolute;		
	width: 160px;
	height: 7px;
	left:72px;
	top:48px;
}

.audio-player.tree .audio-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	
	background:url(icon/audio-tree.png) -13px -220px no-repeat;
}

.audio-player.tree .audio-seek .slider-range{
	position:absolute;
	top:0px;
	left:0px;
	height:100%;
	
	z-index:2;
	
	background:url(icon/audio-tree.png) -13px -240px no-repeat;
}

.audio-player.tree .audio-seek .slider-handle{
	position:absolute;
	left:0px;
	top:-4px;
	
	width: 14px;
	height: 14px;	
	
	z-index:3;

	background:url(icon/audio-tree.png) -193px -225px no-repeat;
}

.audio-player.tree .volume-seek{		
	display:none;
}

.audio-player.tree .volume-seek .slider-total{
	display:none;
}

.audio-player.tree .volume-seek .slider-range{
	display:none;
}

.audio-player.tree .volume-seek .slider-handle{
	display:none;
}

/*Start of christmas*/
.audio-player.christmas{
	width:374px;
	height:95px;
	background:url(icon/audio-christmas.png) -26px -15px no-repeat;	
}

.audio-player.christmas .back_button{
	position:absolute;
	cursor: pointer;
	width:11px;
	height:12px;
	left:16px;
	top:68px;
	background:url(icon/audio-christmas.png) -40px -133px no-repeat;
}

.audio-player.christmas .audio-play{
	position:absolute;
	cursor: pointer;
	width:6px;
	height:12px;
	left:57px;
	top:68px;
	background:url(icon/audio-christmas.png) -79px -133px no-repeat;
}
.audio-player.christmas .paused-button{
	width:8px;
	background:url(icon/audio-christmas.png) -106px -133px no-repeat;
} 

.audio-player.christmas .forward_button{
	position:absolute;
	cursor: pointer;
	width:11px;
	height:12px;
	left:93px;
	top:68px;
	background:url(icon/audio-christmas.png) -133px -133px no-repeat;
}

.audio-player.christmas .volume-button{
	position:absolute;
	cursor: pointer;
	width:13px;
	height:13px;
	left:347px;
	top:68px;
	background:url(icon/audio-christmas.png) -169px -133px no-repeat;
}

.audio-player.christmas .volume-mute {
	background:url(icon/audio-christmas.png) -200px -133px no-repeat;
}

.audio-player.christmas .audio-timer{
	position:absolute;
	left:10px;
	top:30px;
	
	color: #333;
	font-family:Arial, Tahoma;
	font-size: 0.6em;
	font-weight: bold;
}

.audio-player.christmas .audio-file{
	position:absolute;
	left:10px;
	top:10px;
	
	color: #333;
	font-family:Arial, Tahoma;
	font-size: 0.6em;
	font-weight: bold;
}

/* seek */
.audio-player.christmas .audio-seek {
	position:absolute;		
	width: 180px;
	height: 10px;
	left:126px;
	top:68px;
}

.audio-player.christmas .audio-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	border-top: 1px solid #252525;
	border-bottom:1px solid #939393;

	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	
	background: #1F1F1F;
	
}

.audio-player.christmas .audio-seek .slider-range{
	position:absolute;
	top:1px;
	left:0px;
	height:100%;
	-moz-border-radius:5px 0px 0px 5px;
	-webkit-border-radius:5px 0px 0px 5px;
	border-radius:5px 0px 0px 5px;
	
	z-index:2;
	
	border-bottom:1px solid #225D94;
	
	background: #4388D1;
	background-image: -moz-linear-gradient(top, #5C99E2, #A8D3E7);
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, #5C99E2),color-stop(1, #2A76BF));
	
	box-shadow: inset 0 -3px 3px #2A76BF;
}

.audio-player.christmas .audio-seek .slider-handle{
	position:absolute;
	left:0px;
	top:0px;
	
	width: 14px;
	height: 15px;	
	
	z-index:3;

	background:url(icon/audio-christmas.png) -232px -133px no-repeat;
}

.audio-player.christmas .volume-seek{		
	display:none;
}

.audio-player.christmas .volume-seek .slider-total{
	display:none;
}

.audio-player.christmas .volume-seek .slider-range{
	display:none;
}

.audio-player.christmas .volume-seek .slider-handle{
	display:none;
}

/*Start of turnonoff*/
.audio-player.turnonoff{
	width:100px;
	height:26px;
	background:#333;
	border-radius : 3px;
}

.audio-player.turnonoff .back_button{
	display:none;
}

.audio-player.turnonoff .audio-play{
	position:absolute;
	cursor: pointer;
	width:22px;
	height:22px;
	left:0px;
	top:2px;
	background:url(icon/player-volume.png) no-repeat;
}
.audio-player.turnonoff .paused-button{
	background:url(icon/player-volume-full.png) no-repeat;
} 

.audio-player.turnonoff .volume-status{
	position:absolute;
	cursor : pointer;
	width : 78px;
	height : 26px;
	line-height : 26px;
	left : 22px;
	top : 0px;
	color : #CCCCCC;
	text-align : center;
	vertical-align : middle;
	font-family : "Tahoma","sans-serif","Arial";
	font-size : 14px;
}

.audio-player.turnonoff .volume-status:hover{
	color : #FFFFFF;
}

.audio-player.turnonoff .forward_button{
	display:none;
}

.audio-player.turnonoff .volume-button{
	display:none;
}

.audio-player.turnonoff .volume-mute {
	display:none;
}

.audio-player.turnonoff .audio-timer{
	display:none;
}

.audio-player.turnonoff .audio-file{
	display:none;
}

/* seek */
.audio-player.turnonoff .audio-seek {
	display:none;
}

.audio-player.turnonoff .audio-seek .slider-total{
	display:none;
}

.audio-player.turnonoff .audio-seek .slider-range{
	display:none;
}

.audio-player.turnonoff .audio-seek .slider-handle{
	display:none;
}

.audio-player.turnonoff .volume-seek{		
	display:none;
}

.audio-player.turnonoff .volume-seek .slider-total{
	display:none;
}

.audio-player.turnonoff .volume-seek .slider-range{
	display:none;
}

.audio-player.turnonoff .volume-seek .slider-handle{
	display:none;
}

/*Start of fade*/
.audio-player.fade{
	width:345px;
	height:65px;
	background:url(icon/audio-fade.png) -19px -2px no-repeat;	
}

.audio-player.fade .back_button{
	position:absolute;
	cursor: pointer;
	width:28px;
	height:28px;
	left:16px;
	top:17px;
	background:url(icon/audio-fade.png) -30px -91px no-repeat;
}

.audio-player.fade .audio-play{
	position:absolute;
	cursor: pointer;
	width:31px;
	height:31px;
	left:44px;
	top:15px;
	background:url(icon/audio-fade.png) -64px -89px no-repeat;
}
.audio-player.fade .paused-button{
	background:url(icon/audio-fade.png) -100px -89px no-repeat;
} 

.audio-player.fade .forward_button{
	position:absolute;
	cursor: pointer;
	width:28px;
	height:28px;
	left:75px;
	top:17px;
	background:url(icon/audio-fade.png) -138px -91px no-repeat;
}

.audio-player.fade .volume-button{
	display:none;
}

.audio-player.fade .volume-mute {
	
}

.audio-player.fade .audio-timer{
	position:absolute;
	right:18px;
	top:22px;
	
	color: #999;
	font-family:Arial, Tahoma;
	font-size: 0.6em;
	font-weight: bold;
}

.audio-player.fade .audio-file{
	display:none;
}

/* seek */
.audio-player.fade .audio-seek {
	position:absolute;		
	width: 150px;
	height: 10px;
	left:108px;
	top:25px;
}

.audio-player.fade .audio-seek .slider-total{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	
	z-index:1;
	
	background:url(icon/audio-fade.png) -31px -139px no-repeat;
	
}

.audio-player.fade .audio-seek .slider-range{
	position:absolute;
	top:0px;
	left:0px;
	height:100%;
	-moz-border-radius:5px 0px 0px 5px;
	-webkit-border-radius:5px 0px 0px 5px;
	border-radius:5px 0px 0px 5px;
	
	z-index:2;
	
	background:url(icon/audio-fade.png) -193px -138px no-repeat;
}

.audio-player.fade .audio-seek .slider-handle{
	position:absolute;
	left:0px;
	top:-2px;
	
	width: 15px;
	height: 15px;	
	
	z-index:3;

	background:url(icon/audio-fade.png) -176px -98px no-repeat;
}

.audio-player.fade .volume-seek{		
	display:none;
}

.audio-player.fade .volume-seek .slider-total{
	display:none;
}

.audio-player.fade .volume-seek .slider-range{
	display:none;
}

.audio-player.fade .volume-seek .slider-handle{
	display:none;
}

.volume-bar {
    vertical-align : middle;
	position : absolute;
	z-index : 999;
}

.volume-reduce {
	cursor : pointer;
	position : absolute;
}

.volume-add {
	cursor : pointer;
	position : absolute;
}

.volume-pgress{position:absolute; border:0 none;}
.volume-pgress span{cursor:pointer;display:block; position:absolute; width:12px; height:12px;  background:#FFF;-moz-border-radius: 50%; -webkit-border-radius:50% ; border-radius:50%;}
  
.phoneThumbBar {
	bottom: 0px;
	left: 0px;
	right: 0px;
	position: absolute;
	background-color:#000000;
	opacity:0.6;
	height: 120px;
	z-index: 98;
}
.phoneThumbBG {
	position: absolute;
	bottom: 1px;
	/*left: 0px;*/
	right: 0px;
	height: 105px;
	overflow: hidden;
	opacity: 0.9;
	/*background-color:#888888;*/
	z-index:102;
}
.phoneThumbBox {
	position: absolute;
	left: 0px;
	right: 0px;
	height: 95px;
	/*background-color:#ff0000;*/
}
.phoneThumbItem{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 60px;
	height: 82px;
	border-width: 1px;
	border-style:inset;
}

.bottom.right, .bottom.right button, .bottom.right .numbering{
  position: absolute; 
  top: 2px;
  left: auto; }
  a ,button{
   cursor: pointer;
  }
  .bottom.right{
  	 padding-right: 10px;
  }
  .top.right, .top.right button, .top.right .numbering{
  position: absolute; 
  top: 2px;
  left: auto; }
   .top.right{
  	 padding-right: 10px;
  }
    .bottom.left, .bottom.left button, .bottom.left .numbering{
  position: absolute; 
  top: 2px;
  right: auto; }
   .bottom.left{
  	 padding-left: 0px;
  }
	.pbToolBar{
	
    overflow: hidden;
    position: absolute;
    z-index: 99;
   
    
 	bottom: -270px;
  	left: 0px;
 	right: 0px;
 	
  	height: 42px;
	}
	.pbToolBar button {
    width: 45px;
    height: 33px;
    padding: 2px;
	}
		.pbTopBar{
	
    overflow: hidden;
    position: absolute;
    z-index: 99;
   
    
 	top: -50px;
  	left: 0px;
 	right: 0px;
 	
  	height: 42px;
  	
	}
	.pbTopBar button {
    width: 45px;
    height: 33px;
    padding: 2px;
	}
	.phonebutton{
		width : 40px;
		height : 40px;
		position : absolute;
		cursor : pointer;
	}
	.phonebutton div{
		width : 25px;
		height : 25px;
		margin-left : 7px;
		margin-top : 7px;
	}
	.phoneMoreButton{
		width : 65px;
		height : 40px;
		position : absolute;
		cursor : pointer;
	}
	.phoneMoreButton div{
		width : 25px;
		height : 25px;
		margin-left : 20px;
		margin-top : 7px;
	}
p{padding:0;margin:0;}
input{font-family:Calibri;}
textarea{font-family:Calibri;}
.win10_border{border:1px solid rgba(252, 251, 249, 0.5);}

.form_title{font-size:18px;}
.close{right:20px;top:21px;padding:3px;position:absolute;cursor:pointer;}
.drag{position:absolute;top:5px;left:0;right:0;margin:auto;pointer-events:none;}
.close:hover{opacity:0.7;}
.close:active{opacity:0.5;}
.close:focus{opacity:0.5;}

.about_form{vertical-align:middle;line-height:20px;text-align:center;width:437px;height:315px;background:#000000;padding:20px;color:#ffffff;font-size:15px;font-family:Calibri;position:absolute;}
.about_form .form_title{text-align:left;}
.about_form .content_title{border:1px solid transparent;top:51px;cursor:pointer;width:105px;height:34px;position:absolute;line-height:34px;vertical-align:middle;text-align:center;}
.about_form .contact_title{left:51%;}
.about_form .description_title{right:51%;}
.about_form .focus{background:rgba(255,255,255,0.25);}
.about_form .content{margin-top:73px;width:100%;}
.about_form .content1{display:none;height:220px;overflow:auto;}
.about_form .content2{height:220px;overflow:hidden;position: relative;}
.about_form .description{text-align:left;}
.about_form .item{position:relative;margin:15px 0;min-height:18px;text-align:left;}
.about_form .item .title{display:inline-block;position:absolute;left:0;top:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.about_form .content2 .item .content{margin:0;width:auto;}
.about_form .content1 .item .content{margin:0 0 0 70px;width:auto;}
.about_form a{color:#1a7fc7;text-decoration:none;}
.about_form .content2 .aboutLogo{display: inline-block; width: 100%; height: 105px;}

.about_form .swiper{width:98%;position:absolute;left:0;top:0;}
.about_form .progress{width:15px;height:5px;position:absolute;bottom:0;right:0;cursor:pointer;}
.about_form .progressBar{width:5px;height:5px;background:rgba(255,255,255,0.25);position:absolute;right:0;top:0;cursor:pointer;border-radius:2px;}

.about_form.rightToLeft{text-align:right;}
.about_form.rightToLeft .form_title{text-align:right;}
.about_form.rightToLeft .item .title{left:auto;right:0;}
.about_form.rightToLeft a{float: right;}
.about_form.rightToLeft .content2 .item .content{margin:0;text-align:right;}
.about_form.rightToLeft .content1 .item .content{margin:0 70px 0 0;text-align:right;}

/*.bookmark_form .close{transition: all 500ms;
-moz-transition: all 500ms;
-webkit-transition: all 500ms;
-o-transition: all 500ms;}

.bookmark_form .close:hover{
transform:rotate(360deg);
-ms-transform:rotate(360deg);
-moz-transform:rotate(360deg);
-webkit-transform:rotate(360deg);
-o-transform:rotate(360deg); }*/



.color_panel{display:none;z-index:9999;width:202px;background-color:#ffffff;position:absolute;}
.color_panel tr{position:relative;}
.color_panel td{width:14px;height:14px;position:relative;}


.colorSelection{width:25px;height:25px;cursor:pointer;border-width:2px;padding:0;}

.bookmark_form{text-align:left;vertical-align:middle;line-height:20px;position:absolute;display:block;z-index:1000;left:-350px;top:157px;width:300px;height:425px;background:#000000;padding:20px;color:#ffffff;font-size:15px;font-family:Calibri;}
.bookmark_form .inputForm{width:100%;margin-top:10px;height:23px;position:relative;}
.bookmark_form .input_title{width:250px;height:23px;border:none;padding:0 10px;position:absolute;left:0;}
.bookmark_form .colorSelection{width:24px;height:23px;border:none;position:absolute;right:0;}
.bookmark_form .add_page{display:inline-block;vertical-align:middle;text-align:center;cursor:pointer;width:145px;height:30px;line-height:30px;margin-top:10px;background:rgba(255,255,255,0.25);}
.bookmark_form .add_page.left{margin-right:10px;}
.bookmark_form .list_title{cursor:default;font-size:15px;height:26px;width:100%;margin-top:20px;background:rgba(255,255,255,0.1);line-height:26px;vertical-align:middle;text-align:left;}
.bookmark_form .list_title span{padding:0 10px;display:inline-block;}
.bookmark_form .list_title .page{border-right:1px solid rgba(255,255,255,0.1);width:30px;}
.bookmark_form .list_title .description{width:158px;border-right:1px solid rgba(255,255,255,0.1);}
.bookmark_form .list_title .edit{}

.bookmark_form .stage{overflow:hidden;width:100%;position:relative;}
.bookmark_form .swiper{width:100%;left:0;top:0;}

.bookmark_form .progress{width:15px;height:5px;position:absolute;bottom:0;right:0;cursor:pointer;}
.bookmark_form .progressBar{width:5px;height:5px;background:rgba(255,255,255,0.25);position:absolute;right:0;top:0;cursor:pointer;border-radius:2px;}

.bookmark_form .removeAll{margin:8px 0;width:100%;height:30px;line-height:30px;background:rgba(255,255,255,0.25);cursor:pointer;vertical-align:middle;text-align:center;display:none;}

.bookmark_form .item{width:100%;height:26px;line-height:26px;vertical-align:middle;text-align:left;position:relative;margin-top:5px;}
.bookmark_form .item span{padding:0 10px;display:inline-block;}
.bookmark_form .item input{display:inline-block;}
.bookmark_form .item .page{width:30px;}
.bookmark_form .item .title{width:132px;height:20px;border:none;padding:0 10px;background:transparent;}
.bookmark_form .item .colorSelection{margin:0;width:20px;height:18px;position:absolute;left:181px;top:5px;display:none;}
.bookmark_form .item img{position:absolute;cursor:pointer;}
.bookmark_form .item .save{left:210px;top:5px;display:none;}
.bookmark_form .item .cancel{left:240px;top:5px;display:none;}
.bookmark_form .item .edit{left:240px;top:5px;}
.bookmark_form .item .delete{left:264px;top:5px;}
.bookmark_form .item.bookmarkItem_focus{background:rgba(255,255,255,0.25)}

.bookmark_form.rightToLeft{text-align:right;}
.bookmark_form.rightToLeft .input_title{left:auto;right:0;direction:rtl;}
.bookmark_form.rightToLeft .colorSelection{right:auto;left:0;}
.bookmark_form.rightToLeft .list_title{text-align:right;}
.bookmark_form.rightToLeft .list_title .page{border-left:1px solid rgba(255,255,255,0.1);border-right:none;width:30px;}
.bookmark_form.rightToLeft .list_title .description{border-left:1px solid rgba(255,255,255,0.1);border-right:none;}
.bookmark_form.rightToLeft .list_title .edit{}
.bookmark_form.rightToLeft .progress{left:0;right:auto;}
.bookmark_form.rightToLeft .progressBar{left:0;right:auto;}

.bookmark_form.rightToLeft .item{text-align:right;}
.bookmark_form.rightToLeft .item .title{direction:rtl;}
.bookmark_form.rightToLeft .item .colorSelection{right:181px;left:auto;}
.bookmark_form.rightToLeft .item .save{right:210px;left:auto;}
.bookmark_form.rightToLeft .item .cancel{right:240px;left:auto;}
.bookmark_form.rightToLeft .item .edit{right:240px;left:auto;}
.bookmark_form.rightToLeft .item .delete{right:264px;left:auto;}

.bookmark_form.phone{background:transparent;width:100%;height:100%;padding:0;left:0;top:0;margin:0;}
.bookmark_form.phone .stage{margin:0;width:100%;height:100%;}
.bookmark_form.phone .item{position:relative;width:100%;height:100px;line-height:100px;vertical-align:middle;font-size:15px;cursor:pointer;}
.bookmark_form.phone .item span{margin:0 10px;float:left;display:inline-block;width:auto;}
.bookmark_form.phone .item img{height:76px;float:left;margin:12px 0;position:relative;}
.bookmark_form.phone .item .delete{position:absolute;cursor:pointer;top:30px;left:auto;right:10px;width:41px;height:41px;background-position:-402px -429px;background-image: url(phoneIcon/phone_icon.png);background-repeat: no-repeat;}
.bookmark_form.phone .item .delete:hover{background-position:-462px -429px;}



.help_form{text-align:left;vertical-align:middle;line-height:20px;position:absolute;left:0;top:0;z-index:1000;width:380px;background:#000000;padding:20px;color:#ffffff;font-size:15px;font-family:Calibri;}
.help_form{text-align:center;}
.help_form .logo{text-align:center;margin:10px;max-width:380px;max-height:200px;}
.help_form .title{margin:10px;}
.help_form .form_title{text-align:left;}

.help_form.rightToLeft .form_title{text-align:right;}

.phone_scroll_y{overflow-y:auto;overflow-x:hidden;-webkit-overflow-scrolling:touch;}



.print_form{text-align:left;vertical-align:middle;line-height:20px;position:absolute;left:0;top:0;z-index:1000;background:#000000;width:310px;padding:20px;color:#ffffff;font-size:15px;font-family:Calibri;position:absolute;}
.print_form .printButton{cursor:pointer;width:100%;height:26px;margin-top:20px;background:rgba(255,255,255,0.25);line-height:26px;vertical-align: middle;text-align:center;}
.print_form .item{cursor:pointer;margin:10px 0;line-height:26px;vertical-align: middle;position:relative;padding:0 0 0 20px;}
.print_form .item span{margin-left:10px;}
.print_form .item img{vertical-align: middle;position:absolute;left:4px;top:6px;}
.print_form .printRange input{padding:0 5px;width:102px;height:26px;border:none;margin-left:10px;font-size:12px;}

.print_form.rightToLeft{text-align:right;}
.print_form.rightToLeft .item{padding:0;}
.print_form.rightToLeft .item img{left:auto;right:4px;}
.print_form.rightToLeft .item span{margin:0 30px 0 0;}
.print_form.rightToLeft .printRange input{margin:0 10px 0 0;}

.print_form.phone{background:transparent;width:100%;padding:0;}
.print_form.phone .item{margin:10px;}
.print_form .printButton{margin:20px 0;width:auto;}


/*scrollbar*/
::-webkit-scrollbar {
  height: 0;
  width: 0;
}

::-webkit-scrollbar-button {
  height: 0;
  width: 0;
}



.search_form{text-align:left;vertical-align:middle;line-height:20px;position:absolute;z-index:1000;left:-300px;top:0;width:250px;height:548px;background:#000000;padding:20px 10px 20px 10px;color:#ffffff;font-size:15px;font-family:Calibri;position:absolute;}
.search_form .input_search{width:210px;height:30px;border:none;padding:0 30px 0 10px;margin-top:10px;}
.search_form .searchButton{position:absolute;top:56px;right:15px;cursor:pointer;z-index:10;}
.search_form .result{margin-top:10px;}
.search_form .close{right:11px;}
.search_form.rightToLeft .close{left:11px;right:auto;}

.search_form .stage{overflow:hidden;width:270px;height:460px;position:relative;margin:10px 0 0 -10px;}
.search_form .swiper{width:100%;position:absolute;left:0;top:0;}

.search_form .progress{width:15px;height:5px;position:absolute;bottom:0;right:4px;cursor:pointer;}
.search_form .progressBar{width:5px;height:5px;opacity:0.25;background:#ffffff;position:absolute;right:4px;top:0;cursor:pointer;border-radius:2px;}

.search_form .item{padding:10px 12px;cursor:pointer;}
.search_form .item .description{font-size:15px;margin-top:3px;opacity:0.6;}
.search_form .item:hover{background:rgba(255,255,255,0.25);}

.search_form.rightToLeft{text-align:right;}
.search_form.rightToLeft .input_search{direction:rtl;padding:0 10px 0 30px;}
.search_form.rightToLeft .searchButton{left:15px;right:auto;}
.search_form.rightToLeft .progress{left:4px;right:auto;}

.search_form.phone{border-top:1px solid rgba(255,255,255,0.25);width:100%;height:100%;padding:0;left:0;top:0;background:transparent;}
.search_form.phone .input_search{border-radius:12px;margin:20px 15px;height:20px;line-height:20px;padding:0 25px 0 5px;width:275px;background:transparent;border:1px solid transparent;}
.search_form.phone .result{margin:0;height:25px;line-height:25px;background:rgba(255,255,255,0.05);padding:0 10px;}
.search_form.phone .stage{width:100%;position:relative;margin:0;}
.search_form.phone .searchButton{width:15px;height:15px;right:25px;top:24px;}
.search_form.phone .searchButton div{width:100%;height:100%;}
.search_form.rightToLeft.phone .searchButton{left:25px;top:24px;right:auto;}
.search_form.rightToLeft.phone .input_search{padding:0 5px 0 25px;}



.share_form{text-align:left;vertical-align:middle;line-height:20px;position:absolute;z-index:1000;left:0;top:0;width:400px;background:#000000;padding:20px;color:#ffffff;font-size:15px;font-family:Calibri;position:absolute;}
.share_form .link_title{margin-top:10px;line-height:28px;}
.share_form .link_input{width:320px;height:30px;padding:0 10px;border:none;}
.share_form .copy{width:52px;height:30px;cursor:pointer;background:rgba(255,255,255,0.25);position:absolute;right:20px;top:78px;line-height:30px;vertical-align:middle;text-align:center;}
.share_form .insert_input{width:378px;height:73px;padding:10px;border:none;resize:none;}
.share_form .copy2{top:auto;bottom:20px;}
.share_form .sharePanel{width:100%;height:30px;margin-top:8px;overflow:hidden;}
.share_form .sharePanel img{height:30px;margin:0 2px 0 0;border:none;}

.share_form.rightToLeft{text-align:right;}
.share_form.rightToLeft .copy{left:20px;right:auto;}

.share_form .shareCurrentPageBox{position:relative;margin:0;}
.share_form .shareCurrentPageLink{margin-top:5px;}
.share_form .shareCurrentPage{position:absolute;margin:4px 0;left:0; width:14px; height: 14px;}
.share_form.rightToLeft .shareCurrentPage{position:absolute;margin:4px;left:auto;right:0;}
.share_form .shareCurrentPageTitle{display: inline-block; margin: 0 20px;}

.share_form.phone{background:transparent;width:100%;height:100%;padding:0;}
.share_form.phone .stage{overflow:hidden;width:100%;height:100%;position:relative;}
.share_form.phone .swiper{width:100%;left:0;top:0;}
.share_form.phone .progress{left:0;right:auto;}
.share_form.phone .progressBar{left:0;right:auto;}

.share_form.phone .item{padding:10px;vertical-align:middle;font-size:15px;line-height:50px;height:50px;font-weight:bold;position:relative;}
.share_form.phone .item .logo{width:50px;height:50px;display:inline-block;float:left;}
.share_form.phone .item .logo div{width:50px;height:50px;}
.share_form.phone .item span{margin-left:20px;float:left;}



.tableofcontent_form{text-align:left;vertical-align:middle;line-height:20px;position:absolute;z-index:1000;left:-300px;top:150px;width:250px;height:548px;background:#000000;padding:20px;color:#ffffff;font-size:15px;font-family:Calibri;}
.tableofcontent_form .input_search{width:225px;height:30px;border:none;padding:0 30px 0 10px;margin-top:10px;margin-left:-10px;}
.tableofcontent_form .searchButton{position:absolute;top:56px;right:20px;cursor:pointer;z-index:10;}

.tableofcontent_form .stage{overflow:hidden;width:272px;height:515px;position:relative;margin:12px 0 0 -12px;}
.tableofcontent_form .swiper{width:100%;position:absolute;left:0;top:0;}

.tableofcontent_form .progress{width:15px;height:5px;position:absolute;bottom:0;right:0;cursor:pointer;}
.tableofcontent_form .progressBar{width:5px;height:5px;background:rgba(255,255,255,0.25);position:absolute;right:0;top:0;cursor:pointer;border-radius:2px;}

.tableofcontent_form .item{padding:10px 12px;font-size:15px;cursor:pointer;position:relative;margin-right:5px;margin-left:0;}
.tableofcontent_form .item .arrow{padding:10px;position:absolute;top:8px;}
.tableofcontent_form .item .description{padding:3px 0;display:inline-block;}
.tableofcontent_form .item:hover{background:rgba(255,255,255,0.1);}

.tableofcontent_form.rightToLeft{text-align:right;}
.tableofcontent_form.rightToLeft .item{margin-right:0;margin-left:5px;}
.tableofcontent_form.rightToLeft .progress{left:0;right:auto;}
.tableofcontent_form.rightToLeft .progressBar{left:0;right:auto;}

.tableofcontent_form.phone{background:transparent;width:100%;height:100%;padding:0;left:0;top:0;margin:0;}
.tableofcontent_form.phone .stage{margin:0;width:100%;height:100%;}


.thumbBar {
	bottom: -130px;
	left: 0px;
	right: 0px;
	position: absolute;
	height: 120px;
	z-index: 100;
}
.thumbBG {
	position: absolute;
	bottom: 1px;
	left: 0px;
	right: 0px;
	height: 105px;
	overflow: hidden;
	/*background-color: #000000;*/
	opacity: 0.9;
}
.thumbBox {
	position: absolute;
	bottom: 1px;
	left: 0px;
	right: 0px;
	height: 95px;
}


.thumbItem{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 60px;
	height: 82px;
	border-width: 1px;
	border-style:inset;
	border-color: #aaaaaa;
}
  
.fbTopBar{
	position: absolute;
  overflow: hidden;  
  z-index: 99;
 
	top: 0px;
	left: 0px;

  width: 100%;
	height: 46px;

}

.fbTopBar .button {
	position : static;
	display:inline;
	width : 42px;
	height : 46px;
}

.fbTopBar .button img {
	width:22px;
	height:22px;
	margin-left : 10px;
	margin-top : 13px;
}

.fbTopBar .button span{
	display: none;
}

.fbToolBar{
  position: absolute;
  overflow: hidden;
  z-index: 99;
 
  bottom: 0px;
	left: 0px;

  width : 100%;
	height: 46px;

}
	
	
.pageNumber{
	position : absolute;
}

.pageNumber input{
	border:transparent;
	text-align : center;
	vertical-align : middle;
	height : 17px;
	font-family:Arial;
}

.pageNumber input:focus{
	outline:none;
}
	
.logoBar{
	position: absolute;
	left: 5px;
	top:0px;
	height:100%;
	z-index: 1;
}

.searchBar{
	position:absolute;
	right : 42px;
	background-color:gray;
	margin-top:8px;
	padding-left:10px;
	padding-right:5px;
}

.preSearch{
	background-color:gray;
	display:inline;
	float:left;
}

.preSearch input{
	background-color:gray;
	color:#AAAAAA;
	font-family : Arial;
	display:inline;
	float:left;
	border:0px solid transparent;
	height:18px;
	margin-top:5px;
}

.preSearch input:focus{
	outline:none;
}

.searchBar .button{
	position : static;
	display:inline;
	width : 30px;
	height : 30px;
}

.searchBar .button img{
	width:22px;
	height:22px;
	margin-left : 5px;
	margin-top : 5px;
}

.searchBar .button span{
	display:none;
}

.buttonBar{
	display:inline;
	height:100%;
}

.buttonBar.left{
	float:left;
}

.buttonBar.right{
	float:right;
}

.pageBar{
	display:inline;
	float:left;
	height:100%;
}
	
.buttonBar .button {
	position : static;
	display:inline;
	width : 42px;
	height : 46px;
}

.button.left{
	float:left;
}

.button.right{
	float:right;
}

.buttonBar .button img {
	width:22px;
	height:22px;
	margin-left : 10px;
	margin-top : 13px;
}

.button span{
	font-family : "Tahoma","sans-serif","Arial";
	font-size : 12px;
}

.buttonBar .button span{
	display:none;
}

.pageBar .button{
	position:absolute;
	width : 42px;
	height : 46px;
}

.pageBar .button img {
	width:22px;
	height:22px;
	margin-left : 10px;
	margin-top : 13px;
}

.pageBar .button span{
	display:none;
}

.extendedBar{
	overflow : hidden;
	position : absolute;
	z-index: 98;
}

.extendedBar .button{
	position : absolute;
	display:block;
	width : 160px;
	height : 46px;
}

.extendedBar .button img{
	width:22px;
	height:22px;
	margin-left : 5px;
	margin-top : 13px;
}


.extendedBar .button span{
	position:absolute;
	color : white;
	margin-left:10px;
	margin-top : 18px;
}

.extendedBar.rtl .button img{
	width:22px;
	height:22px;
	float : right;
	margin-right : 5px;
	margin-top : 13px;
}


.extendedBar.rtl .button span{
	position:absolute;
	color : white;
	right :0px;
	margin-right:30px;
	margin-top : 18px;
}

.floatPageButton{
	position : absolute;
	z-index: 100;
	width:63px;
	height:160px;
	opacity:0.95;
}

.floatPageButton img{
	width:22px;
	height:22px;
	margin-left:19px;
	margin-top:56px;
}

.floatPageButton span{
	display : none;
}


.thumbnail_win10{text-align:left;vertical-align:middle;line-height:20px;position:absolute;z-index:1000;left:0;top:0;padding:10px 0;width:100%;height:254px;background:#000000;color:#ffffff;font-size:12px;font-family:Calibri;}
.thumbnail_win10 .close{right:20px;top:-24px;position:absolute;cursor:pointer;width:26px;height:18px;background-color:#000000;}
.thumbnail_win10 .close img{position:absolute;left:10px;top:6px;}

.thumbnail_win10 .stage{overflow:hidden;height:225px;margin:20px;position:relative;}
.thumbnail_win10 .swiper{position:absolute;top:0;height:190px;}

.thumbnail_win10 .progress{width:8px;height:8px;position:absolute;bottom:7px;right:0;cursor:pointer;}
.thumbnail_win10 .progressBar{width:8px;height:8px;background:rgba(255,255,255,0.25);position:absolute;top:0;cursor:pointer;border-radius:4px;}

.thumbnail_win10 p{height:20px;line-height:20px;bottom:0;vertical-align:middle;position:absolute;width:100%;bottom:0;left:0;text-align:center;}
.thumbnail_win10 .item_focus{display:inline-block;height:190px;margin-right:10px;cursor:pointer;position:absolute;}
.thumbnail_win10 .item_focus .title{display:none;}
.thumbnail_win10 .item{height:190px;position:absolute;}
.thumbnail_win10 .item .title{display:none;}
.thumbnail_win10 .item img{height:170px;width:120px;box-sizing:border-box;pointer-events:none;}

.thumbnail_win10 .item.highlight img{border:2px solid #016BAF;}
.thumbnail_win10 .item_focus.highlight .item.left img{border:2px solid #016BAF;border-width:2px 0 2px 2px;}
.thumbnail_win10 .item_focus.highlight .item.right img{border:2px solid #016BAF;border-width:2px 2px 2px 0;}

.thumbnail_win10 .item:hover img{border:2px solid #f18200;}
.thumbnail_win10 .item_focus:hover .item.left img{border:2px solid #f18200;border-width:2px 0 2px 2px;}
.thumbnail_win10 .item_focus:hover .item.right img{border:2px solid #f18200;border-width:2px 2px 2px 0;}

.thumbnail_win10 .btn{}
.thumbnail_win10 .leftBtn{}
.thumbnail_win10 .rightBtn{}



.videogallery_form{text-align:left;vertical-align:middle;line-height:20px;position:absolute;z-index:1000;color:#ffffff;margin:auto;width:700px;background:#000000;padding:20px;font-size:15px;font-family:Calibri;position:absolute;overflow:hidden;}
.videogallery_form .form_title{font-size:18px;line-height:20px;}
.videogallery_form .title{font-size:18px;line-height:20px;}
.videogallery_form .video{width:344px;height:223px;background:rgba(255,255,255,0.25);margin-top:15px;}
.videogallery_form .video_list{width:340px;height:223px;position:absolute;right:15px;top:50px;}
.videogallery_form .info{margin-top:15px;}
.videogallery_form .info .description{width:100%;}
.videogallery_form .description{opacity:0.6;}

.videogallery_form .stage{overflow:hidden;width:100%;height:201px;position:relative;}
.videogallery_form .swiper{width:100%;position:absolute;left:0;top:0;}

.videogallery_form .progress{width:15px;height:5px;position:absolute;bottom:0;right:-5px;cursor:pointer;}
.videogallery_form .progressBar{width:5px;height:5px;background:rgba(255,255,255,0.25);position:absolute;right:5px;top:0;cursor:pointer;border-radius:2px;}

.videogallery_form .item{cursor:pointer;width:274px;padding-left:61px;min-height:42px;margin-top:5px;position:relative;}
.videogallery_form .item .title{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.videogallery_form .item .thumbnail{background-color:rgba(255,255,255,0.25);width:56px;height:42px;position:absolute;top:2px;;left:0;background-position:center center;background-size:contain;background-repeat:no-repeat;}
.videogallery_form .item:hover {text-decoration:underline;}

.videogallery_form.rightToLeft{text-align:right;}
.videogallery_form.rightToLeft .video_list{left:15px;right:auto;}
.videogallery_form.rightToLeft .item{padding-right:61px;padding-left:0;margin-left:5px;}
.videogallery_form.rightToLeft .item .thumbnail{left:auto;right:0;}
.videogallery_form.rightToLeft .progress{left:-5px;right:auto;}

.rightToLeft .close{right:auto;left:20px;}

.appear_win10{position:absolute;opacity:0;z-index:1001;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,0.5);text-align:center;vertical-align:middle;}
.appear_win10 .main_dom{position:relative;display:inline-block;left:0;top:0;}
.appear_win10:after{content:""; display:inline-block; height:100%;vertical-align:middle;}

.button_hover:hover{opacity:0.7;filter:alpha(opacity=40);}
.button_hover:active{opacity:0.2;filter:alpha(opacity=20);}

.disable{opacity:0.2;filter:alpha(opacity=20);}
.usable{opacity:1;filter:alpha(opacity=100);}


.phoneTopBar{position : absolute;width : 100%;height : 40px;left : 0;top : 0;z-index : 99;-webkit-box-shadow : 0 0 5px rgba(40, 0, 0, 0.5);-moz-box-shadow : 0 0 5px rgba(40, 0, 0, 0.5);-o-box-shadow : 0 0 5px rgba(40, 0, 0, 0.5);box-shadow : 0 0 5px rgba(40, 0, 0, 0.5);}
.phoneTopBar .button{width : 40px;height : 40px;position : absolute;cursor:pointer;}
.phoneTopBar .button img{max-height : 40px;position : absolute;top:0;bottom:0;margin:auto;}
.phoneTopBar .button .icon{position : absolute;left : 10px;top : 10px;}
.phoneTopBar .button div{width : 20px;height : 20px;}
.phoneTopBar .button span{display:none;}

.phoneBottomBar{position : absolute;width : 100%;height : 40px;bottom : 0;left : 0;z-index : 99;}
.phoneBottomBar .button{width : 40px;height : 40px;position : absolute;cursor:pointer;}
.phoneBottomBar .button img{height : 20px;width:20px;position : absolute;top:0;bottom:0;margin:auto;}
.phoneBottomBar .button .icon{position : absolute;left:10px;top:10px;width:20px;height:20px;}
.phoneBottomBar .button span{display:none;}

.phone.extendedBar .arrow{position:absolute;width:50px;height:20px;left:50%;cursor:pointer;margin-left:-25px;border-radius:5px 5px 0 0;top:-20px;background-color:rgba(0,0,0,0.8);}
.phone.extendedBar .arrow img{width:10px;margin:5px 20px;}

.extendedBar.phone{border-bottom:1px solid rgba(255,255,255,0.1);overflow : hidden;position : absolute;bottom:-280px;z-index: 98;border-radius:0;background:#000000;width:100%;height:72px;}
.extendedBar.phone .button{width : 40px;height : 52px;border-radius: 0;float:left;margin:10px 0 0 30px;position:relative;text-align:center;}
.extendedBar.phone .button .icon{position:relative;display:block;width:32px;height:32px;border-radius:16px;background-color:rgba(255,255,255,0.1);margin:0 0 0 4px;}
.extendedBar.phone .button img{display:block;width:18px;height:18px;position:absolute;left:7px;top:7px;margin:0;}
.extendedBar.phone .button span{color : white;line-height:20px;display:block;position:relative;margin:0 0 0 -15px;width:70px;}

.extendedBar.phone .stage{height:100%;}
.extendedBar.phone .stage .swiper{height:100%;}
.extendedBar.phone .stage .swiper .item{height:100%;}
.extendedBar.phone .stage .swiper .dots{height:20px;position:absolute;left:0;bottom:0;}
.extendedBar.phone .stage .swiper .dots .dot{width:10px;height:10px;border-radius:5px;background:#ffffff;}

.phoneGotoPageContent img{
	width : 22px;
	height : 22px;
	cursor : pointer;
	margin: 4px -2px 4px 0;
}

.phoneGotoPageContent .inputButton{
	display : inline-block;
	position : relative;
	overflow : visible;
	top : 1px;
	margin-left : 7px;
	width : 25px;
	height : 30px;
	cursor : pointer;
	border:1px solid rgba(255,255,255,0.1);
}

.phoneGotoPageContent .goBtn div{
	width : 20px;
	height : 20px;
	margin:4px;
}


.phoneGotoPageContent .btn{
	display : inline-block;
	position : relative;
	overflow : visible;
	margin-top : 12px;
	margin-left : 7px;
	width : 30px;
	height : 30px;
	cursor : pointer;
	border:1px solid rgba(255,255,255,0.1);
}

.phoneGotoPageContent .btn div{
	width : 25px;
	height : 25px;
}

.phoneGotoPageContent .goBtn{
	width : 30px; 
	height: 30px;
    top: 0px;
	right : 0px;
	cursor : pointer;
    z-index : 5;
    position:absolute;
}

.form_mask_phone{opacity:0.5;background:#000000;z-index:9999;position:absolute;width:100%;height:100%;top:0;left:0;}

.print_form.phone{background:transparent;width:100%;padding:0;border-radius: 0;border:none;box-shadow: none;filter:none;}
.print_form.phone .item{cursor:pointer;line-height:26px;vertical-align: middle;position:relative;padding:10px 20px 10px;margin:0 15px;border-bottom: 1px solid rgba(255,255,255,0.2);}
.print_form.phone .item img{vertical-align: middle;position:absolute;left:10px;top:14px;width:20px;}
.print_form.phone.rightToLeft .item img{vertical-align: middle;position:absolute;right:10px;left:auto;top:16px;}
.print_form.phone .form_title{font-family:"Arial";font-size:15px;line-height:36px; padding: 0 15px;margin:0; margin-bottom: 10px;}
.print_form.phone.rightToLeft .form_title{text-align: right;}
.print_form.phone .printRange input{padding:0 5px;width:100px;height:26px;border:none;margin-left:10px;font-size:12px;background-color:#D3D3D3; }
.print_form.phone .item span{margin-left:20px;}
.print_form.phone .close{top:6px;position:absolute;cursor:pointer;left:auto;right:10px;}
.print_form.phone.rightToLeft .close{top:6px;position:absolute;cursor:pointer;left:10px;}
.print_form.phone .printButton{margin:15px;width:auto;height: 36px;line-height:36px;font-size: 20px;}

.bookmark_form.phone{background:transparent;width:100%;height:100%;padding:0;left:0;top:0;margin:0;border-radius: 0;border:none;box-shadow: none;filter:none;
-webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;}
.bookmark_form.phone .stage{margin:0;width:100%;height:100%;}
.bookmark_form.phone .form_title{font-family:"Arial";margin:0;padding:0 15px;line-height: 36px;}
.bookmark_form.phone .close{position: absolute;right:10px;left:auto;top:6px;cursor: pointer;}
.bookmark_form.phone.rightToLeft .close{position: absolute;left:10px;right:auto;top:6px;cursor: pointer;}
.bookmark_form.phone .item{position:relative;width:100%;height:100px;line-height:100px;vertical-align:middle;font-size:15px;cursor:pointer;}
.bookmark_form.phone .item span{margin:0 10px;float:left;display:inline-block;width:auto;}
.bookmark_form.phone .item img{height:76px;float:left;margin:12px 0;position:relative;}
.bookmark_form.phone.rightToLeft .item img{height:76px;float:left;margin:12px 0;position:relative;}
.bookmark_form.phone .item .delete{position:absolute;cursor:pointer;top:30px;left:auto;right:15px;width:41px;height:41px;background-position:-402px -429px;background-image: url(phoneIcon/phone_icon.png);background-repeat: no-repeat;}
.bookmark_form.phone .item .delete:hover{background-position:-462px -429px;}

.search_form.phone{border-top:1px solid rgba(255,255,255,0.25);width:100%;height:100%;padding:0;left:0;top:0;background:transparent;border-radius:0;border:none;box-shadow: none;filter:none;
-webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;}
.search_form.phone .form_title{font-family:"Arial";line-height:36px;margin:0 15px;}
.search_form.phone  .close{position: absolute;right:10px;left:auto;top:6px;cursor: pointer;}
.search_form.phone.rightToLeft .close{position: absolute;left:10px;right:auto;top:6px;cursor: pointer;}
.search_form.phone .input_search{background-color:#fff;border-radius:5px;margin:10px 14px 20px;height:30px;line-height:30px;padding:0 25px 0 5px;width:275px;border:1px solid transparent;}
.search_form.phone .result{margin:0;height:25px;line-height:25px;background:rgba(255,255,255,0.05);padding:0 10px;}
.search_form.phone .stage{width:100%;position:relative;margin:0;}
.search_form.phone .searchButton{width:15px;height:15px;right:25px;top:55px;}
.search_form.phone .searchButton div{width:100%;height:100%;}
.search_form.rightToLeft.phone .searchButton{left:25px;top:55px;right:auto;}
.search_form.rightToLeft.phone .input_search{padding:0 5px 0 25px;}

.share_form.phone{border-radius: 0;border:none;box-shadow: none;filter:none;}
.share_form.phone .item{padding:0;vertical-align:middle;font-size:15px;font-weight:bold;position:relative;display: inline-block;width: 20%; margin-left: 10%; margin-bottom: 30px;text-align: center;}
.share_form.phone.rightToLeft  .item{padding:0;vertical-align:middle;font-size:15px;font-weight:bold;position:relative;display: inline-block;width: 20%;margin-left: 0; margin-right: 10%; margin-bottom: 30px;text-align: center;}
.share_form.phone .item .logo{width:40px;height:40px;margin:0 auto;display:block;float: none;}
.share_form.phone .item .logo_title{line-height: 30px;}
.share_form.phone .form_title{background:transparent; width:auto;font-family:"Arial";font-size:15px;line-height:36px;position: relative;padding:0 15px;margin:0;margin-bottom: 20px;}
.share_form.phone .item .logo div{width:40px;height:40px;}
.share_form.phone .copy{width:74%;height:30px;line-height:30px;cursor:pointer;background:rgba(255,255,255,0.4);color:#fff;position:absolute;top:320px;left:12%;right:auto;vertical-align:middle;text-align:center;}
.share_form.phone.rightToLeft .form_title{right:auto;text-align:right;font-size:15px;line-height:36px;}
.share_form.phone .close{top:6px;left:auto;right:10px;position:absolute;cursor:pointer;}
.share_form.phone.rightToLeft .close{top:6px;position:absolute;cursor:pointer;right:auto;left:10px;}


.tableofcontent_form.phone{background:transparent;width:100%;height:100%;padding:0;left:0;top:0;margin:0;border-radius:0;border:none;box-shadow: none;filter:none;}
.tableofcontent_form.phone .stage{margin:0;width:100%;height:100%; padding:0;}
.tableofcontent_form.phone .form_title{font-family:"Arial";line-height: 36px;padding: 0 15px;margin:0;}
.tableofcontent_form.phone .close{position: absolute;right:10px;left:auto;top:6px;}
.tableofcontent_form.phone.rightToLeft .close{position: absolute;left:10px;right:auto;top:6px;}

.print_form.phone .printButton{margin:15px;width:auto;height: 36px;line-height:36px;font-size: 20px;}

.about_form.phone{background:transparent;width:100%;padding:0;border-radius: 0;}
.about_form.phone .item .title {left:20px;top:10px;}
.about_form.phone.rightToLeft .item .title {right:20px;}
.about_form.phone .aboutLogo{ width: 300px;height: 70px; display: inline-block;}
.about_form.phone .content {margin:0 0 0 65px; width: auto;}
.about_form.phone .description{border-top: 1px solid rgba(255,255,255,0.2);}
.about_form.phone .description.item .content {margin: 0px;}
.about_form.phone.rightToLeft .content {margin:0 65px 0 0;}
.about_form.phone .item{cursor:pointer;margin:0;vertical-align: middle;position:relative;padding:10px 20px 10px;border-bottom: 1px solid rgba(255,255,255,0.2);}
.about_form.phone.rightToLeft .item{text-align: right;}
.about_form.phone .form_title{font-family:"Arial";width:auto;border:none;position:relative;font-size:15px;line-height:36px; padding: 0 15px;margin:0;}
.about_form.phone.rightToLeft .form_title{text-align: right;}
.about_form.phone .close{top:6px;position:absolute;cursor:pointer;left:auto;right:10px;}
.about_form.phone.rightToLeft .close{top:6px;position:absolute;cursor:pointer;left:10px;}


