#loader {
  position: fixed;
  top: 80%;
  left: 50%;
  margin-left: -40px;
/*  Z-INDEX: -30;*/
  Z-INDEX: 100;
  border: 10px solid #f3f3f3;
  border-radius: 50%;
  border-top: 10px solid skyblue;
  border-right: 10px solid bisque;
  border-bottom: 10px solid lightgreen;
  border-left: 10px solid pink;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;

  opacity: 0.0;
  transition: all 3.0s ease;


  display: none; /*disabled*/
}



@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}



.preloader{

  position: fixed;
  top: 80%;
  left: 50%;
  width: 58px;
  height: 60px;
  margin-top: 10px;
  margin-left: -29px;
  /*Z-INDEX: -20;*/

  Z-INDEX: 99;
  
  background-color: #FFF9E1; /*pageflip*/
  border-radius: 50%;
  text-align: center;
   
  visibility: hidden;
  opacity: 0;



  transition: all 3.0s ease;


  display: none; /*disabled*/
}

.preloader_inner{

  text-align: center;
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 1em;

  padding-top: 10px;

  border-radius: 50%;

  /*display: inline-block; */
  display: none /*disabled*/
}


.showload{
  visibility:visible !important;
  opacity: 0.7 !important;
  /*transition: all 3.0s ease;*/
}  

.partpgn {
  font-size: 0.7em;
}

#pagetitle {
  position: fixed;
  top: 6%;
  left: 50%;
  width: 300px;
  margin-left: -150px;
/*  Z-INDEX: -100;*/

  Z-INDEX: 100;
  
  text-align: center;
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 4em;
  color: skyblue;
  opacity: 0.0;
 
  -webkit-transition: opacity 1000ms linear;
  transition: opacity 1000ms linear;
}



.notused {
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;

}


@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}