/**
 * @ import.css
 *
 * @ Author:	Michael Wilson
 * @ Email:		mwilson "at" wootadoo "dot" com
 *
 * import.css is a "plugin" type control for all style sheets used within a given site.
 * Stylesheets can be added or removed as necessary, creating a modular CSS management 
 * system.
 * ---------------------------------------------------------------------------------- */





/**
 * @ global.css
 *
 * global.css contains generic site-wide rules such as margin, padding, typography, 
 * color, clearing, and any "set it and forget it" rules such as pull quotes, image 
 * borders, and other often used classes. 
 * ---------------------------------------------------------------------------------- */

@import url("global.css");





/**
 * @ layout.css
 *
 * layout.css controls the positioning, margin, padding, and general appearance of 
 * elements within the site and is segmented by page and page section. Typography, 
 * color, and other similar rules can be placed here to override those found in 
 * global.css.
 * ---------------------------------------------------------------------------------- */

@import url("layout.css");





/**
 * @ nav.css
 *
 * nav.css handles all of the site's navigation(s) -- both global and local 
 * types -- and is segmented per page or occurrence of navigation, beginning with the
 * primary navigation.
 * ---------------------------------------------------------------------------------- */
 
@import url("nav.css");





/**
 * @ forms.css
 *
 * forms.css manages all form and form elements within the site and is segmented by 
 * form name and element.
 * ---------------------------------------------------------------------------------- */

@import url("forms.css");

