/* 
-----------------------------------------------
Master Stylesheet
Author:   Elle Meredith
Version:  2009.06

----------------------------------------------- */

@import url("reset.css");   /* Reset */
@import url("grid.css");    /* Blueprint Grid */
@import url("screen.css");  /* screen */


/* Global Super Classes and Misc
----------------------------------------------- */
form label {cursor: pointer; }
acronym, abbr {border-bottom:1px dotted; cursor:help;}
code {font-family: 'Courier New', Courier, Fixed;}

.hide               { display: none; }
.invisible          { visibility: hidden; }

.left               { float: left; }
.right              { float: right; }
.clear 				{ clear:both; }

/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clearfix:after, .container:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix, .container {display: inline-block;}
* html .clearfix,
* html .container {height: 1%;}
.clearfix, .container {display: block;}

/* Regular clearing
   apply to column that should drop below previous ones. */

