/** Most GWT widgets already have a style name defined */
.gwt-DialogBox {
	width: 400px;
}

.pointer {
	cursor: pointer;
}

.autocomplete-popup-overflow {
	max-height: 200px;
	overflow-y: auto;
}

.glass-background {
	background: rgba(0, 0, 0, 0);
	color: #fff;
}

.loading {
	height: 150px;
	width: 150px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -60px 0 0 -60px;
	-webkit-animation: spin 4s linear infinite;
	-moz-animation: spin 4s linear infinite;
	animation: spin 4s linear infinite;
	stroke: #fff;
	stroke-width: 10px;
	stroke-linejoin: round;
}

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