@charset "utf-8";
/* CSS Document */

/* ===== Scrollbar CSS ===== */
  /* Firefox */
 * {
    scrollbar-width: none;
    scrollbar-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  }
::-webkit-scrollbar {
  width: 0px;
	
}

/* Track */
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.75); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0)!important;
}
/* ===== Scrollbar CSS ===== */
/*
#loader{
	position: fixed;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background:url("../ImageData/Logo4.gif") no-repeat center;
	background-color: black;
	background-size: contain;
}


#loader {
    animation:cssAnimation 2s;
    -webkit-animation:cssAnimation 2s;
    animation-fill-mode: forwards;
    
    animation-delay:2s;
    -webkit-animation-delay:2s;
    -webkit-animation-fill-mode: forwards;
}



@keyframes cssAnimation {
    0%   {opacity: 1;}
	30%   {opacity: 0.7;}
	50%  {opacity: 0.5;}
	70%  {opacity: 0.3;}
    90% {opacity: 0.1;-webkit-transform: translateY(0px);}
    100% {opacity: 0;-webkit-transform: translateY(0px);}
}
*/