/*
Title:		screen.css
--
Notes:
	= Controlling stylesheet for screen rendering; imports other sheets;
		defines rules for the highest-level layout containers
*/

@import url("baseline.css");
@import url("common.css");
@import url("navigation.css");
@import url("shell.css"); 
@import url("layout.css");
@import url("blocks.css");
@import url("sifr.css");
@import url("ccbn.css"); 

/* edited shell.css z-index attributes to fix popover display issue */

/*
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.75em; /* 12px */ }

.print { visibility: hidden; }

html { overflow-y: scroll !important; }
