@charset "utf-8";
/* CSS Document */
body.loggedIn .loggedIn{
	display: block!important;
}

body.loggedIn .notLoggedIn{
	display: none!important;
}

body.notLoggedIn .loggedIn{
	display: none!important;
}

body.notLoggedIn .notLoggedIn{
	display: block!important;
}

.hide {
	display: none !important;
}
#ajax_loader {
	width: 100%;
	height: 100%;
	z-index: 100;
	position: relative;
	top: 0;
	left: 0;
}
#ajax_loader .spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

#ajax_loader .spinner > div {
  background-color: #333;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

#ajax_loader .spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

#ajax_loader .spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

#ajax_loader .spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

#ajax_loader .spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.disabled {
	display: none;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
	 transform: scaleY(0.4);
	 -webkit-transform: scaleY(0.4);
  }  20% {
	 transform: scaleY(1.0);
	 -webkit-transform: scaleY(1.0);
  }
}
