/*
------------------------------------------------------------
 Module:
 	/styles/framework.css

 Description:
	CSS framework that includes the necessary CSS files via the
	@import directive to style the entire web site. Initial idea
	on this sort of abstraction was seen and read on Doug
	Bowman's site, stopdesign.com.

	(Getting fancy-pants and calling this a 'framework'...)
	
	reset.css -- reset browser defaults so that the most common 
	lements have the same default style values across all the
	different user-agents
	
	structure.css -- basic page layout rules
	menu.css -- navigation menus
	typography.css -- rules to handle text display
	details-details.css -- link styling and misc. style rules
	msie.css -- necessary hacks

 Last Updated:
 	dean matsueda, 201001
------------------------------------------------------------ */

@import url("reset.css");
@import url("structure.css");
@import url("menu.css");
@import url("typography.css");
@import url("details.css");
@import url("msie.css");