/* 
 _____   _           _         _                        _                  
|_   _| | |         | |       | |                      | |                 
  | |   | |__   __ _| |_ ___  | |_ ___  _ __ ___   __ _| |_ ___   ___  ___ 
  | |   | '_ \ / _` | __/ _ \ | __/ _ \| '_ ` _ \ / _` | __/ _ \ / _ \/ __|
 _| |_  | | | | (_| | ||  __/ | || (_) | | | | | | (_| | || (_) |  __/\__ \
 \___/  |_| |_|\__,_|\__\___|  \__\___/|_| |_| |_|\__,_|\__\___/ \___||___/

Oh nice, welcome to the stylesheet of dreams. 
It has it all. Classes, ID's, comments...the whole lot:)
Enjoy responsibly!
@ihatetomatoes

*/

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0.2em 0;
    background: #f4f4f4;
    /*color: #000;*/
    padding: 0.2em 0;
}



/* ==========================================================================
   Author's custom styles
   ========================================================================== */

#loader-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450%;
    z-index:99999;
	overflow:hidden;
}

#loader {
    display: block;
    position: relative;
    top: 20px;
    width: 200px;
    height: 200px;
    margin: 0 auto;
	background-image: url("forexamplelogo.png");
	background-size:200px;
   /* border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;*/
    -webkit-animation: spin 3s linear 1; 
    animation: spin 3s linear 1; 
    z-index:9999999;
}

#preloader{
	opacity:0.8;
	width:30px;
	height:30px;
	display: block;
    position: relative;
	background:url("loading-2.gif");
	background-size:30px;
	margin: 0 auto;
	margin-top:28%;
	z-index:99999999999999999;
}



/*     #loader:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
		background-image:url(/web/20170615182426im_/http://for-example.org/preloader/img/inner.png);
		background-repeat:no-repeat;
	


        -webkit-animation: spin 8s linear infinite !important; 
        animation: spin 8s linear infinite !important; 
    }

   #loader:after {
        content: "";
        position: absolute;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
		
		background-image:url(/web/20170615182426im_/http://for-example.org/preloader/img/outer.png);
		background-repeat:no-repeat;
	

        -webkit-animation: spin 6s linear infinite !important; 
          animation: spin 6s linear infinite !important; 
    }*/

    @-webkit-keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }
    @keyframes spin {
        0%   { 
            -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(0deg);  /* IE 9 */
            transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
        }
        100% {
            -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: rotate(360deg);  /* IE 9 */
            transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
        }
    }

    #loader-wrapper .loader-section {
        position: fixed;
        top: 0;
        width: 51%;
        height: 100%;
       /* background: #222222;*/
	   /*background:#eae9e2;*/
	   background:#fff;
        z-index: 1000;
        -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(0);  /* IE 9 */
        transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
    }

    #loader-wrapper .loader-section.section-left {
        left: 0;
    }

    #loader-wrapper .loader-section.section-right {
        right: 0;
    }

    /* Loaded */
    .loaded #loader-wrapper .loader-section.section-left {
        -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(-100%);  /* IE 9 */
                transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

        -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
                transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }

    .loaded #loader-wrapper .loader-section.section-right {
        -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
            -ms-transform: translateX(100%);  /* IE 9 */
                transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
        transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    }
    
    .loaded #loader {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
    }
	
	.loaded #preloader {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
    }
	
    .loaded #loader-wrapper {
        visibility: hidden;

        /*-webkit-transform: translateY(-100%); 
            -ms-transform: translateY(-100%);  
                transform: translateY(-100%); */

        -webkit-transition: all 0.3s 1s ease-out;  
                transition: all 0.3s 1s ease-out;
    }
    
    /* JavaScript Turned Off */
    .no-js #loader-wrapper {
        display: none;
    }
/*    .no-js h1 {
        color: #222222;
    }*/







/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

/*.hidden {
    display: none !important;
    visibility: hidden;
}*/

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}


/* 
	Ok so you have made it this far, that means you are very keen to on my code. 
	Anyway I don't really mind it. This is a great way to learn so you actually doing the right thing:)
	Follow me @ihatetomatoes
*/


/* #Tablet (Landscape)
================================================== */

/* Note: Design for a width of 768px */

@media only screen and (min-width: 960px) and (max-width: 1060px) {
	
	/*#loader{
		left: 30%;
    	top: 24%;
	}*/
	

}
	
	


/* #Tablet (Portrait)
================================================== */

/* Note: Design for a width of 768px */

@media only screen and (min-width: 768px) and (max-width: 959px) {
	
	#loader-wrapper {
		position: fixed;
		width: 100%;
		height: 100%;
	}

	#loader{
    		top: 27%;
	}
	
	#preloader{
	  display: none;
	}
	
	.loaded #loader {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
    }
	
	.loaded #loader-wrapper {
	visibility: hidden;

	-webkit-transform: translateY(-100%); 
		-ms-transform: translateY(-100%);  
			transform: translateY(-100%); 

	-webkit-transition: all 0.3s 1s ease-out;  
			transition: all 0.3s 1s ease-out;
    }
	
	header #header-inner .logo-top{
		opacity:1;
	}
	

	
}


/*  #Mobile (Portrait)
================================================== */

/* Note: Design for a width of 320px */

@media only screen and (max-width: 767px) {
	
		#loader-wrapper {
		position: fixed;
		width: 100%;
		height: 100%;
	}
	
	#loader{
    	top: 30%;
	}

	#preloader{
	  display: none;
	}
	
	
	#loader,
	#loader:after,
	#loader:before {
		width: 150px;
		height: 150px;
		background-size:150px;
	}

	.loaded #loader {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
    }
	
	.loaded #loader-wrapper {
	visibility: hidden;

	-webkit-transform: translateY(-100%); 
		-ms-transform: translateY(-100%);  
			transform: translateY(-100%); 

	-webkit-transition: all 0.3s 1s ease-out;  
			transition: all 0.3s 1s ease-out;
    }

	header #header-inner .logo-top{
		opacity:1;
	}
		
		
}


/* #Mobile (Landscape)
================================================== */

/* Note: Design for a width of 480px */

@media only screen and (min-width: 480px) and (max-width: 767px) {
	
		#loader-wrapper {
		position: fixed;
		width: 100%;
		height: 100%;
	}
	

	#loader{
    	top: 23%;
	}
	
	#loader,
	#loader:after,
	#loader:before {
		width: 150px;
		height: 150px;
		background-size:150px;
	}

	.loaded #loader {
        opacity: 0;
        -webkit-transition: all 0.3s ease-out;  
                transition: all 0.3s ease-out;
    }
	
	.loaded #loader-wrapper {
	visibility: hidden;

	-webkit-transform: translateY(-100%); 
		-ms-transform: translateY(-100%);  
			transform: translateY(-100%); 

	-webkit-transition: all 0.3s 1s ease-out;  
			transition: all 0.3s 1s ease-out;
    }

	header #header-inner .logo-top{
		opacity:1;
	}
	
		
}

/*  #Mobile (Portrait)
================================================== */

/* Note: Design for a width of 320px */

@media only screen and (max-device-width: 959px) {
	
	#loader-wrapper{
		display:none;
	}
	
	
	
}

/*
     FILE ARCHIVED ON 18:24:26 Jun 15, 2017 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 08:25:11 Apr 23, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  capture_cache.get: 0.356
  load_resource: 240.943
  PetaboxLoader3.resolve: 83.945
  PetaboxLoader3.datanode: 21.66
*/