@charset "utf-8";
/* CSS Document */

/************************************** utk loader ****************************************************/

.loader_1 {
	position:fixed;
	z-index:999;
	height:100%;
	width:100%;
	top:0;
	left:0;
	background-color:black;
	filter: alpha(opacity=60);
	opacity:0.6;
	-moz-opacity:0.8;
}
.tengah {
	z-index:1000;
	margin:300px auto;
	padding:10px;
	width:240px;
	background-color:white;
	border-radius:10px;
	filter: alpha(opacity=100);
	opacity:1;
	-moz-opacity:1;
}
.tengah img {
	height:228px;
	width:228px;
}

/***************************************** loader *************************************************/

.loaderload {
    /*display:    none;*/
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 ) 
                url('../../img/ajax-loader.gif') 
                50% 50% 
                no-repeat;
}

/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.loader {
    display:    none;
    position:   fixed;
    z-index:    1000;
    top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, .8 ) 
                url('../../img/ajax-loader.gif') 
                50% 50% 
                no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
body.loading {
    overflow: hidden;   
}

/* Anytime the body has the loading class, our
   modal element will be visible */
body.loading .loader {
    display: block;
}