/************************/
/*    Loading general   */
/************************/
.loading_div
{
	display:    none;
	position:   fixed;
	z-index:    1000;
	top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, 0.8 ) 
                url('../images/loading.gif') 
                50% 50% 
                no-repeat;
}

.loading_div p
{
	font-size : 16px;
	font-weight : bold;
	position : fixed;
	z-index : 1000;	
	top : 50%;
    left : 50%;
	margin-left:-150px;
	margin-top:25px;
}

body.loading
{
    overflow: hidden;   
}

body.loading .loading_div
{
    display: block;
}

/************************/
/*   Loading product    */
/************************/
.loading_product_div
{
	display:    none;
	position:   fixed;
	z-index:    1000;
	top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, 0.6 ) 
                url('../images/loading.gif') 
                50% 50% 
                no-repeat;
}

.loading_product_div p
{
	font-weight : bold;
	position : fixed;
	z-index : 1000;	
	top : 50%;
    left : 50%;
	margin-top:25px;
}

body.loading_product
{
    overflow: hidden;   
}

body.loading_product .loading_product_div
{
    display: block;
}

/************************/
/*     Loading photo    */
/************************/
.loading_photo_div
{
	display:    none;
	position:   fixed;
	z-index:    1000;
	top:        0;
    left:       0;
    height:     100%;
    width:      100%;
    background: rgba( 255, 255, 255, 0.6 ) 
                url('../images/loading.gif') 
                50% 50% 
                no-repeat;
}

.loading_photo_div p
{
	font-weight : bold;
	position : fixed;
	z-index : 1000;	
	top : 50%;
    left : 50%;
	margin-left:-140px;
	margin-top:25px;
}

body.loading_photo
{
    overflow: hidden;   
}

body.loading_photo .loading_photo_div
{
    display: block;
}