.spinner {
	animation-name: spin, depth;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-duration: 5s;
	text-align: center;
	/* [disabled]font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif; */
	/* [disabled]font-size: 13pt; */
	/* [disabled]font-weight: bold; */
	color: #FFFFFF;
	margin-left: 10px;
	margin-bottom: 6px;
	margin-top: 5px;
}
@keyframes spin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(-360deg); }
}
@keyframes depth {
  0 { text-shadow: 0 0 #545454; }
  25% { text-shadow: 1px 0 #545454, 2px 0 #545454, 3px 0 #545454, 4px 0 #545454, 5px 0 #545454; }
  50% { text-shadow: 0 0 #545454; }
  75% { text-shadow: -1px 0 #545454, -2px 0 #545454, -3px 0 #545454, -4px 0 #545454, -5px 0 #545454; }
  100% { text-shadow: 0 0 #545454; }
}
