/*	----------------------------------------------------------------
	MaxCycle (Fullscreen Slideshow for use with jQuery Cycle Plugin)
	----------------------------------------------------------------
	
	Demo at: http://www.aaronvanderzwan.com/maxcycle/
	Download and Info at: http://github.com/akv2/MaxCycle---jQuery-Plugin/
	Copyright (c) 2007-2011 Aaron Vanderzwan
	Dual licensed under the MIT and GPL licenses.
	
*/
/*! Version: 2.0.73 (12-Oct-2012) */

/* Basic CSS for FillElement */
#holder {
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 9999;
    box-shadow: 0px -10px 99px rgba(0, 0, 0, .6);
}

.mc-hide-scrolls {
    overflow: hidden;
}

body .mc-cycle {
    /* height: 90000px !important; */
    left: 0;
    overflow: hidden;
    position: relative;
    top: 0;
    width: 100%;
    z-index: -1;
    min-height: 100vh;
    /* mobile viewport bug fix */
    min-height: -webkit-fill-available;
}

div.mc-image {
    /*NOTE: Mozilla flickers when fading and using 'all', so we have to be specific with what property we want to transition:
	 	If you are using fading transitions, use 'opacity: */
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;

    /*If you are using horizontal slide transitions, use the following CSS:
	-webkit-transition: left 1s ease-in-out; 
	-moz-transition: left 1s ease-in-out; 
	-o-transition: left 1s ease-in-out; 
	transition: left 1s ease-in-out;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.blue:before,
.red:before,
.green:before {
    content: '';
    z-index: 9999999999;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    display: block;
}

.blue::before {
    background: linear-gradient(#f57b3c 0%, #0d0d0d 100%);
    opacity: .6
}

.red:before {
    background: transparent radial-gradient(closest-side at 26% 60%, #00D10040 0%, #5C86166D 57%, #E516368C 100%) 0% 0% no-repeat padding-box;
}

.green:before {
    background: transparent radial-gradient(closest-side at 26% 60%, #00D10040 0%, #5C86166D 57%, #5C86168C 100%) 0% 0% no-repeat padding-box;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {

    .blue:before {
        /*        background: linear-gradient(rgba(165, 165, 255, 0.25) 0%, rgba(71, 71, 238, 0.45) 62.34%, rgba(14, 63, 177, 0.55) 100%);*/

    }

    .red:before {
        background: linear-gradient(rgba(0, 209, 0, 0.25) 0%, rgba(92, 134, 22, 0.43) 57.31%, rgba(229, 22, 54, 0.55) 100%);

    }

    .green:before {
        background: linear-gradient(rgba(0, 209, 0, 0.25) 0%, rgba(92, 134, 22, 0.43) 57.31%, rgba(92, 134, 22, 0.55) 100%);

    }

}

.mc-old-browser .mc-image {
    overflow: hidden;
}

#maximage {
    z-index: -1;
    position: relative;
    top: 0;
    height: 100%;
    width: 100%;
}
