/* --------------------------------------------- */
/* Author: http://codecanyon.net/user/CodingJack */
/* --------------------------------------------- */

/* LEGEND

   1 - GENERAL STYLES - (line #32)
   
   2 - WHITE SKIN - (line #365)
   
   3 - BLACK SKIN - (line #475)
   
   4 - MISCELLANEOUS - (line #585)
   
   5 - HTML5 VIDEO PLAYER - (line #654)
   
*/

/* ...........................................................................   1   */

/* ********************************** */
/* ********* GENERAL STYLES ********* */
/* ********************************** */

/* The main plugin container */
.mm-box {
			
	margin: 0;
	padding: 0;
	overflow: hidden;
	text-align: left;
	visibility: hidden;
	position: relative;
	display: inline-block;
	
	zoom: 1; /* IE7 */
	*display: inline; /* IE7 */
	
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	
}

/* The main content container */
.mm-container {

	position: relative;
	overflow: hidden;

}

/* The thumbnail container */
.mm-list {

	display: none;
	position: relative;
	
}

/* Thumbnail unordered list */
.mm-list ul {

	margin: 0;
	padding: 0;
	position: relative;
	
}

/* Thumb scrolling applied to touch swipe */
.mm-swipe {
	
	/* css property to animate, transition time in seconds, transition easing function */
	/* for more easing functions visit this link: http://matthewlein.com/ceaser/ */
	-webkit-transition: margin-left 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-moz-transition: margin-left 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-o-transition: margin-left 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-ms-transition: margin-left 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	transition: margin-left 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	
}

/* Thumbnail item */
.mm-list li {

	position: absolute;
	
	list-style-type: none;
	overflow: hidden;
	cursor: pointer;
	
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	
}

/* First thumb will be active when the gallery loads */
.mm-list li:first-child {

	cursor: auto;
	
}

/* Class applied to several gallery elements that animate in */
.mm-fadein-media {
	
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	
	/* css property to animate, transition time in seconds, transition easing function */
	/* for more easing functions visit this link: http://matthewlein.com/ceaser/ */
	-webkit-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-moz-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-o-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-ms-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	
}

/* Disable image selection */
img.mm-fadein-media {

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	
}

/* Hide each thumb's tooltip data */
.mm-tooltip {

	display: none;
	font: 16px 'Yanone Kaffeesatz', Arial, Helvetica, sans-serif;
	
}

/* The main tooltip that is used */
.mm-tool-tip {
	
	font: 16px 'Yanone Kaffeesatz', Arial, Helvetica, sans-serif;
	
	position: absolute;
	margin: 0;
	padding: 5px 8px 5px 8px;
	
	overflow: hidden;
	white-space: nowrap;
	pointer-events: none;
	cursor: default;
	z-index: 1;
	
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	
	-moz-box-shadow: inset 0 0 2px #BBB;
    -webkit-box-shadow: inset 0 0 2px #BBB;
    box-shadow: inset 0 0 2px #BBB;
	
	/* css properties to animate, transition time in seconds, transition easing function */
	/* for more easing functions visit this link: http://matthewlein.com/ceaser/ */
	-webkit-transition: all 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-moz-transition: all 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-o-transition: all 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-ms-transition: all 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	transition: all 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	
}

/* The tooltip child container */
.mm-tool-tip div {

	display: inline-block;
	
}

/* The main circle graphic */
.mm-circle-effect {

	position: absolute;
	left: 0;
	top: 0;
	
	/* css properties to animate, transition time in seconds, transition easing function */
	/* for more easing functions visit this link: http://matthewlein.com/ceaser/ */
	-webkit-transition: all 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-moz-transition: all 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-o-transition: all 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-ms-transition: all 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	transition: all 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	
}

/* Default positioning applied to thumb-shadow and thumb-gloss below */
.mm-thumb-effect {

	position: absolute;
	left: 0;
	top: 0;	
	
}

/* An inner thumb shadow that can be applied */
.mm-thumb-shadow {
	
	background: url(../img/mm_box/graphics/inner_thumb_shadow.png) no-repeat;
	pointer-events: none;
	
}

/* The circle gloss that can be applied */
.mm-thumb-gloss {
	
	background: url(../img/mm_box/graphics/circle_gloss.png) no-repeat;	
	pointer-events: none;
	opacity: 1;
	
	/* css property to animate, transition time in seconds, transition easing function */
	/* for more easing functions visit this link: http://matthewlein.com/ceaser/ */
	-webkit-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-moz-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-o-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-ms-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	
}

/* Traditional thumbs, applies slightly darkgraphic to selected thumbs */
.mm-traditional-thumb {

	position: absolute;
	left: 0;
	top: 0;

	background: url(../img/mm_box/graphics/ie_black_70.png);
	background: rgba(0, 0, 0, 0.7);
	pointer-events: none;
	
}

/* The IE blur filter fallback */
.mm-ie-blur {
	
	-ms-filter: "progid:DXImageTransform.Microsoft.Blur(pixelRadius=15)";
	filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=15);
	
}

/* Hide each thumbnail's description data */
.mm-info {

	display: none;
	font: 16px 'Yanone Kaffeesatz', Arial, Helvetica, sans-serif;
	
}

/* The description text container that is used for an item's description */
.mm-info-box {

	position: absolute;
	line-height: normal;
	visibility: hidden;
	z-index: 10;
	overflow: hidden;
	width: 0;
	height: 0;
	top: 20px;
	left: 20px;
	
	/* css properties to animate */
	-webkit-transition-property: width, height;
	-moz-transition-property: width, height;
	-o-transition-property: width, height;
	-ms-transition-property: width, height;
	transition-property: width, height;
	
	/* transition time in seconds */
	-webkit-transition-duration: 0.75s;
	-moz-transition-duration: 0.75s;
	-o-transition-duration: 0.75s;
	-ms-transition-duration: 0.75s;
	transition-duration: 0.75s;
	
	/* transition easing function */
	/* for more easing functions visit this link: http://matthewlein.com/ceaser/ */
	-webkit-transition-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-moz-transition-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-o-transition-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-ms-transition-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
	transition-timing-function: cubic-bezier(0.230, 1.000, 0.320, 1.000);
	
}

/* The description text field that is used for an item's description */
.mm-info-text {

	font: 16px 'Yanone Kaffeesatz', Arial, Helvetica, sans-serif;
	line-height: 24px;
	
	margin: 0;
	padding: 20px;
	
	position: absolute;
	top: 0;
	left: 0;
	
}

/* Description text field paragraph */
.mm-info-text p {

	margin: 0;
	
}

/* Adjustment to position the Canvas blur effect inside the info box */
.mm-canvas {

	margin: -20px 0 0 -20px;
	
}

/* Container that holds the thumbnail's info and selected buttons/graphics */
.mm-button-holder {

	cursor: pointer;
	position: absolute;
	visibility: hidden;
	
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	
}

/* The thumbnail info button */
.mm-button {

	width: 32px;
	height: 32px;
	display: block;
	position: absolute;
	opacity: 1;
	
	/* css property to animate, transition time in seconds, transition easing function */
	/* for more easing functions visit this link: http://matthewlein.com/ceaser/ */
	-webkit-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-moz-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-o-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-ms-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	
}

/* Disable mouse events for the selected graphic */
.mm-selected-inner, .mm-selected-outer {

	pointer-events: none;
	
}



/* ...........................................................................   2   */

/* ********************************** */
/* *********** WHITE SKIN *********** */
/* ********************************** */


/* default border */
.mm-white-skin {
	
	border: 10px solid #FFF;
	
}

/* default preloader */
.mm-white-skin .mm-container {

	background: #000 url(../img/mm_box/graphics/preloader_one.gif) no-repeat center center;
	
}

/* default thumbnail background color and top border color */
.mm-white-skin .mm-list {

	background-color: #FFF;
	border-top: 10px solid #FFF;
	
}

/* thumbnail circle bevel graphic */
.mm-white-skin .mm-circle-bevel {

	background: url(../img/mm_box/graphics/circle_bevel_white.png) no-repeat center center;
	background-size: cover;
	
}

/* thumbnail circle shadow graphic */
.mm-white-skin .mm-circle-shadow {

	background: url(../img/mm_box/graphics/circle_shadow_white.png) no-repeat center center;
	background-size: cover;
	
}

/* thumbnail selected mouseover graphic */
.mm-white-skin .mm-selected-inner {

	background: url(../img/mm_box/graphics/selected_inner_white.png) no-repeat center center;
	
}

/* thumbnail selected mouseout graphic */
.mm-white-skin .mm-selected-outer {

	background: url(../img/mm_box/graphics/selected_outer_white.png) no-repeat center center;
	
}

/* thumbnail info mouseover graphic */
.mm-white-skin .mm-info-btn-inner {

	background: url(../img/mm_box/graphics/info_btn_inner_white.png) no-repeat center center;
	
}

/* thumbnail info mouseout graphic */
.mm-white-skin .mm-info-btn-outer {

	background: url(../img/mm_box/graphics/info_btn_outer_white.png) no-repeat center center;
	
}

/* default tooltip */
.mm-white-skin-tooltip {

	color: #111;
	border: 1px solid #FFF;
	
	background: #FFF; 
	background: -moz-linear-gradient(top, #FFF 0%, #EEE 100%); 
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFF), color-stop(100%, #EEE)); 
	background: -webkit-linear-gradient(top, #FFF 0%, #EEE 100%); 
	background: -o-linear-gradient(top, #FFF 0%, #EEE 100%);
	background: -ms-linear-gradient(top, #FFF 0%, #EEE 100%); 
	background: linear-gradient(top, #FFF 0%, #EEE 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFF", endColorstr="#EEEEEE", GradientType=0); 
	
}

/* default description text */
.mm-white-skin .mm-info-text {

	color: #111;
	background: url(../img/mm_box/graphics/ie_white_35.png);
	background: rgba(255, 255, 255, 0.35);
	
}

/* default link styles */
.mm-white-skin .mm-info-text a,
.mm-white-skin .mm-info-text a:visited {

	color: #111;
	
}


/* ...........................................................................   3   */

/* ********************************** */
/* *********** BLACK SKIN *********** */
/* ********************************** */


/* default border */
.mm-black-skin {
	
	border: 10px solid #000;
	
}

/* default preloader */
.mm-black-skin .mm-container {

	background: #FFF url(../img/mm_box/graphics/preloader_two.gif) no-repeat center center;
	
}

/* default thumbnail background color and top border color */
.mm-black-skin .mm-list {

	background-color: #000;
	border-top: 10px solid #000;
	
}

/* thumbnail circle bevel graphic */
.mm-black-skin .mm-circle-bevel {

	background: url(../img/mm_box/graphics/circle_bevel_black.png) no-repeat center center;
	background-size: cover;
	
}

/* thumbnail circle shadow graphic */
.mm-black-skin .mm-circle-shadow {

	background: url(../img/mm_box/graphics/circle_shadow_black.png) no-repeat center center;
	background-size: cover;
	
}

/* thumbnail selected mouseover graphic */
.mm-black-skin .mm-selected-inner {

	background: url(../img/mm_box/graphics/selected_inner_black.png) no-repeat center center;
	
}

/* thumbnail selected mouseout graphic */
.mm-black-skin .mm-selected-outer {

	background: url(../img/mm_box/graphics/selected_outer_black.png) no-repeat center center;
	
}

/* thumbnail info mouseover graphic */
.mm-black-skin .mm-info-btn-inner {

	background: url(../img/mm_box/graphics/info_btn_inner_black.png) no-repeat center center;
	
}

/* thumbnail info mouseout graphic */
.mm-black-skin .mm-info-btn-outer {

	background: url(../img/mm_box/graphics/info_btn_outer_black.png) no-repeat center center;
	
}

/* default tooltip */
.mm-black-skin-tooltip {

	color: #FFF;
	border: 1px solid #000;
	
	background: #000; 
	background: -moz-linear-gradient(top, #111 0%, #000 100%); 
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #111), color-stop(100%, #000)); 
	background: -webkit-linear-gradient(top, #111 0%, #000 100%); 
	background: -o-linear-gradient(top, #111 0%, #000 100%);
	background: -ms-linear-gradient(top, #111 0%, #000 100%); 
	background: linear-gradient(top, #111 0%, #000 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111111", endColorstr="#000000", GradientType=0); 
	
}

/* default description text */
.mm-black-skin .mm-info-text {

	color: #FFF;
	background: url(../img/mm_box/graphics/ie_black_35.png);
	background: rgba(0, 0, 0, 0.35);
	
}

/* default link styles */
.mm-black-skin .mm-info-text a,
.mm-black-skin .mm-info-text a:visited {

	color: #EEE;
	
}


/* ...........................................................................   4   */

/* ********************************** */
/* ********* MISCELLANEOUS ********** */
/* ********************************** */

/* ---------------------------------- */
/* -- when no-border class is used -- */
/* ---------------------------------- */
.mm-no-border {

	border: 0;
	
}

.mm-no-border .mm-list {

	border: 0;
	
}

.mm-no-border .mm-list li {

	padding: 0;
	
}

.mm-no-border .mm-hover {

	left: 0;
	
}

/* ----------------------------------- */
/* when no--round-border class is used */
/* ----------------------------------- */
.mm-no-round-border {

	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	
}

/* ----------------------------------- */
/* --- when no-shadow class is used -- */
/* ----------------------------------- */
.mm-no-shadow {
	
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	
}

/* ----------------------------------- */
/* --- preload background graphics --- */
/* ----------------------------------- */
.mm-preload {

	width: 0;
	height: 0;
	overflow: hidden;
	
}


/* ...........................................................................   5   */

/* ********************************** */
/* *********** HTML VIDEO *********** */
/* ********************************** */

/* The main video container */
.mm-video-container {

	position: fixed;
	
}

/* The main video controls container */
.mm-vid-controls {

	background: url(../img/mm_box/graphics/vid_bg.png) repeat-x;
	height: 28px;
	margin-top: -28px;
	position: absolute;
	opacity: 1;
	
	/* css property to animate, transition time in seconds, transition easing function */
	/* for more easing functions visit this link: http://matthewlein.com/ceaser/ */
	-webkit-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-moz-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-o-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-ms-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	
}

/* Remove unwanted image selection performed by some browsers */
.mm-vid-controls img {

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	
}

/* The play/pause button container */
.mm-vid-play-pause {

	float: left;
	width: 6px;
	margin: 5px 0 0 9px;
	position: relative;
	cursor: pointer;
	
}

/* The play button */
.mm-vid-play {
	
	position: absolute;
	padding: 3px;
	
}

/* The pause button */
.mm-vid-pause {

	position: absolute;
	padding: 3px;
	margin-top: 1px;
	display: none;
	
}

/* The video status text */
.mm-vid-time {

	float: left;
	position: relative;
	overflow: hidden;
	text-align: center;
	cursor: default;
	
	font: 10px Verdana, Geneva, sans-serif;
	font-weight: bold;
	color: #EEE;
	
	width: 72px;
	margin: 8px 0 0 15px;
	line-height: 10px;
	
	/* text gradient in web-kit :) */
	-webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0.85)));
	
}

/* The video progress line and total line container */
.mm-vid-lines {

	float: left;
	width: 403px;
	margin-top: 5px;
	padding-left: 15px;
	position: relative;
	
}

/* The video total line */
.mm-vid-total {

	width: 403px;
	height: 2px;
	padding: 8px 0 8px 0;
	display: block;
	background: url(../img/mm_box/graphics/vid_total.png) center left;
	position: absolute;
	cursor: pointer;
	
}

/* The video progress line */
.mm-vid-progress {

	width: 0;
	height: 2px;
	padding: 8px 0 8px 0;
	display: block;
	background: url(../img/mm_box/graphics/vid_progress.png) center left;
	position: absolute;
	cursor: pointer;
	
}

/* The video volume button container */
.mm-vid-vol-buttons {

	float: left;
	width: 13px;
	position: relative;
	margin-top: 6px;
	padding-left: 9px;
	
}

/* The video volume on button */
.mm-vid-volume {

	position: absolute;
	padding: 3px;
	cursor: pointer;
	
}

/* The video volume mute button */
.mm-vid-mute {

	position: absolute;
	padding: 3px;
	display: none;
	cursor: pointer;
	
}

/* The video volume scrub container */
.mm-vid-vol-lines {

	float: left;
	width: 55px;
	margin-top: 5px;
	padding-left: 9px;
	position: relative;
	
}

/* The video volume scrub total line */
.mm-vid-vol-total {

	width: 55px;
	height: 2px;
	padding: 8px 0 8px 0;
	display: block;
	background: url(../img/mm_box/graphics/vid_total.png) center left;
	position: absolute;
	cursor: pointer;
	
}

/* The video volume scrub current volume line */
.mm-vid-vol-current {

	width: 25px;
	height: 2px;
	padding: 8px 0 8px 0;
	display: block;
	background: url(../img/mm_box/graphics/vid_progress.png) center left;
	position: absolute;
	cursor: pointer;
	
}

/* The video normalscreen/fullscreen container */
.mm-vid-fullscreen {

	float: left;
	margin-top: 6px;
	padding-left: 9px;
	position: relative;
	
}

/* The video fullscreen button */
.mm-vid-full {

	position: absolute;
	padding: 3px;
	cursor: pointer;
	
}

/* The video normal screen button */
.mm-vid-normal {

	position: absolute;
	padding: 3px;
	display: none;
	cursor: pointer;
	
}

/* Adjusts the video control bar when taken fullscreen */
.mm-vid-fscreen {
	
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	
}

/* Applied to the HTML Video element itself */
.mm-video {

	background-color: #000;
	outline: none;
	padding: 0 !important;
	margin: 0 !important;
	
}

/* The big play button */
.mm-vid-play-btn {
	
	width: 46px;
	height: 46px;
	
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -23px 0 0 -23px;
	
	background: url(../img/mm_box/graphics/vid_play_button.png) no-repeat;
	cursor: pointer;
	display: block;
	opacity: 1;
	
	/* css property to animate, transition time in seconds, transition easing function */
	/* for more easing functions visit this link: http://matthewlein.com/ceaser/ */
	-webkit-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-moz-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-o-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-ms-transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	transition: opacity 0.75s cubic-bezier(0.230, 1.000, 0.320, 1.000);
	
}









