/*
Title:		screen.css
Author: 	zF.
--
Notes:
	= Controlling stylesheet for screen rendering; imports other sheets;
		defines rules for the highest-level layout containers
*/

@import url("lib/baseline.css");
@import url("lib/common.css");
@import url("lib/components.css");

/*	====================================
	DEFAULTS
*/
 /* 
 Set base font-size based on default browser setting of 16px  
 	[ 10px = 0.625em | 11px = 0.6875em | 12px = 0.75em | 14px = 0.875em |  16px = 1em | 18px = 1.125em ]
 */
body { font-size: 0.6875em; /* 11px */ font-family: Arial, sans-serif; }
#body { width: 745px; margin: 0 auto; }

/*	====================================
	PRIMARY CONTAINER WIDTHS
*/
#content .navigation { width: 136px; float: left; }
#content .article { width: 555px; float: right; }
.home #content .article, .performance_metrics #content .article, .around_the_world #content .article { float: none; width: 100%; }
.around_the_world #content {  overflow: visible; }

.priorities_engagement .article { overflow: hidden; }
