﻿/*
	Contains all stylistic features the various message boxes appearing on the UI.
*/

/* Data container of all message boxes */
.ve_messageBoxData
{
	position:relative;
	top:25%;
	
	font-family: Verdana;
	font-size: 11px;
}


.ve_ambigBox, .ve_loadingBox, .ve_infoBox
{
	z-index:1000;
}

/* Information box (top of map) */
.ve_infoBox
{
	position: absolute;
	width: 500px;
	height: 45px;
	
	border: 2px solid #d0d0d0;
	text-align: center;
}

/* Loading box (center of screen) */

.ve_loadingBox
{
	position: absolute;
	width: 300px;
	height: 60px;
	
	border: 2px solid #d0d0d0;
	text-align: center;
}

/* Disambiguation box (when clarifying find locations, NOT routing) */

.ve_ambigBox
{
	position: absolute;
	width: 400px;
	height: auto;
	
	border: 2px solid #d0d0d0;
	text-align: left;
	padding: 5px 5px 5px 5px;
}

.ve_ambigBox .ve_messageBoxData
{
	top: 0%;
}
