/*---------------------------------------------
================ default.css ==================

version:      1.0
author:       Doug Ward
email:        doug_ward@mac.com

comments:     Global rules.

---------------------------------------------*/

	/* The CSS for this site is implemented via an 'environmental' approach. This approach 
	 * establishes named layout boxes (or, 'environments')via CSS positioning. 
	 *
	 * This layout contains 'masthead', 'globalNav', 'container', 'leftColumn', 'mainContent', 'rightColumn', and 'footer' environments.
	 *
	 * Default declarations, or declarations that apply to the entire layout are contained in the 'default.css' file.
	 *
	 * Default 'environmental' declaration, or declarations that apply to one environment, are found within the 'environments-x.css' files.
	 *
	 * This layout supports one, two, or three columns, and is determined via descendant selectors of the body id
	 * (i.e., #oneColLayout #mainContent, or #twoColLayout #mainContent). 
	 *
	 */

* {
	/* Zero out all default margins and padding.*/
		 margin: 0;
		 padding: 0;
}

body {
	/* Set font-size using percentages. IE/Win 6.x- does not allow users to override font-sizes set using pixels.
	 * Using an initial setting of 90% also helps produce more consistent sizing between Macs and PCs.
	 */
		 background-color: #F7F7D4;
		 font: 90%/1.5em Geneva, Arial, sans-serif;
}

.clear {
		 clear: both;
}

img.pdf {
		 line-height: inherit;
		 vertical-align: middle;
		 border: none;
}


/* Styles for <noscript> section
	 * 
	 */
#invisible {
	/* This class is assigned to an element via JavaScript.
	 * If a user has JavaScript disabled, the element won't be hidden.
	 */
		 visibility: hidden;
}

	/* === js_disabled ===
	 * This div is contained within <noscript> tags, and only displays if
	 * the user has javascript disabled.
	 */
#jsDisabled {
		 background: #f93;
		 padding: 5px 0;
		 text-align: center;
}
