/* For guideline purposes only! */
/* Goal is to fit #monitorCanvas inside the #monitorBoundary */
/* To turn off boundary, set "display" property to 'none'. */
/* To turn on boundary, set "display" property to 'block'. */

#monitorBoundary {
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;

	width: 800px;
	height: 600px;

	border: 1px dashed red;
}

html>body #monitorBoundary {
	
	width: 798px;
	height: 598px;

}



/* For Monitor text appearance in general. */
div.monitorResult {
	font-size: 10px;
	color: #000;
}


/* For Airline and Airport tables. */
div.monitorResult td.code {
	color: #fff;
}

div.monitorResult td.divider {
	color: #fff;
}


div.monitorResult td.label {
	color: #fff;
}






/*************************
 * Extended List
 * (when user clicks "More Airlines" or "More Airports")
 *************************/
 
div.monitorExtended {
	background-color: #34a;
	color: #ccc;
	border: 1px solid #000;
	padding: 10px;
	text-align: center;
}

/* Header */
div.monitorExtended h1 {
	font-size: 12px;
	color: #fe6;	
		

	margin: 0px;
	margin-bottom: 3px;
}


/* The "Close" button. */
div.monitorExtended p {
	margin-top: 2em;
}

div.monitorExtended a:link {
	color: #fff;
}

div.monitorExtended a:visited {
	color: #fff;
}




/**************************
 * Monitor Canvas
 * (Fit this inside the Monitor boundary.)
 **************************/

/* Positioning. */
div.monitorCanvas {
	position: absolute;
	
	top: 0px;
	left: 0px;

	width: 800px;
	height: 600px;

}


/*
 * Title Bar
 */
div.monitorTitleBar {
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 635px;
	height: 25px;
	
	padding-top: 2px;
	
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	color: #000;
	background-color: #ddd;
	border: 1px solid #000;
}

html>body div.monitorTitleBar {
	height: 21px;
}
 
/*
 * Logo
 */
 
/* "Logo Canvas" */
div.monitorLogo {
	position: absolute;
	top: 0px;
	left: 0px;
	
	width: 780px;
	height: 100px;
	
	background-color: #fff;
	border: 1px solid #000;
}

html>body div.monitorLogo {
	height: 99px;
}


/* Logo image placement _inside_ "logo canvas" */
div.monitorLogo img {

	position: absolute;
	top: 0px;
	left: 0px;
	
	
	width: 780px;
	height: 100px;
}



/*
 * Monitor Map.
 */
 
/* "Map Canvas" */
div.monitorMap {
	position: absolute;
	top: 0px;
	left: 0px;

	width: 637px;
	height: 567px;
	
	background-color: #fff;
	border: 1px solid #000;
}

html>body div.monitorMap {
	width: 635px;
	height: 565px;
}

/* Map image placement _inside_ "map canvas" */
div.monitorMap img {
	display: inline;
	position: absolute;
	top: 0px;
	left: 0px;
	
	width: 635px;
	height: 565px;
	
	border: none;
}




/***************/
/* Info blocks */
/***************/

/*
 * Monitor general info block.
 */
 
div.monitorInfo {
	background-color: #fff;
	border: 1px solid #000;
	padding: 2px;
}


/* Colors of links in info blocks. */
div.monitorInfo a:link {
	color: #00a;
}

div.monitorInfo a:visited {
	color: #00a;
}



/*
 * FlightView branding.
 */
div.monitorFVBranding {
	position: absolute;

	bottom: 33px;
	right: 165px;

	width: 155px;
	height: 60px;

	padding: 3px;
	text-align: center;
}

html>body div.monitorFVBranding {

	right: 163px;
	width: 140px;
	height: 52px;
}


/*
 * Status bar.
 */
div.monitorStatus {
	position: absolute;

	bottom: 0px;
	left: 0px;

	width: 635px;
	height: 34px;

	padding-top: 5px;
}




html>body div.monitorStatus {
	width: 633px;
	height: 25px;

}









/*****************/
/* Legend blocks */
/*****************/

/*
 * Monitor general legend block.
 */
 

div.monitorLegend {
	padding: 2px;
	background-color: #007;
	color: #fff;
	border: 1px solid #000;
}

/* Links in legend blocks. */
div.monitorLegend a:link {
	color: #fff;
}

div.monitorLegend a:visited {
	color: #fff;
}

/* Legend headers. */
div.monitorLegend h1 {
	font-size: 12px;
	color: #ccf;	

	margin: 0px;
	margin-bottom: 3px;
}




/*
 * Flight Icon Legend
 */


/* Positioning. */
div.monitorFlightIconLegend {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 166px;
	height: 70px
}

html>body div.monitorFlightIconLegend {
	width: 158px;

}


/*
 * Airline Legend
 */
 
/* Positioning. */
div.monitorAirlineLegend {
	position: absolute;
	top: 69px;
	right: 0px;
	
	width: 166px;
	height: 160px;
}


html>body div.monitorAirlineLegend {
	width: 158px;
	height: 154px;
}




/*
 * Airport Legend
 */

/* Positioning. */ 
div.monitorAirportLegend {
	position: absolute;
	top: 180px;
	right: 0px;
	width: 166px;
	height: 233px;
	
	
}


html>body div.monitorAirportLegend {
	width: 158px;
	height: 221px;
}

/* 
 * Weather Legend 
 */

/* Positioning. */
div.monitorWeatherLegend {
	position: absolute;
	top: 400px;
	right: 0px;
	
	width: 166px;
	height: 90px;
	
	
}

html>body div.monitorWeatherLegend {
	width: 158px;

}

/* Color of text. */
div.monitorWeatherLegend td {
	color: #fff;
}



/*
 * Flight Info Legend
 */
 
/* Positioning. */
div.monitorFlightInfoLegend {
	position: absolute;
	bottom: 0px;
	right: 0px;
	width: 166px;
	height: 110px;
}


html>body div.monitorFlightInfoLegend {
	width: 158px;

}