/*loading*/
.loadingdiv{
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E7E7E7;
    z-index: 999001;
    -moz-opacity: .8;
    opacity: .8;
    filter: alpha(opacity=80);
    background-image: url(../images/loading.gif);
    background-repeat: no-repeat;
    background-position: 50% 45%;
    transform: scale(1.5,1.5);
    -ms-transform: scale(1.5,1.5);
    -moz-transform: scale(1.5,1.5);
    -webkit-transform: scale(1.5,1.5);
    -o-transform: scale(1.5,1.5);
}