/*
* File Name     : structure.css
* Dependencies  : core.css
* Description   : defines the layout of the site
* Version       : 1.0.1
* Date Modified : 10/9/2007
* Usage         : Copyright 2007 Craig Phares. All rights reserved.
*/

/* window properties */

/* keep the scrollbar at all times - good for centered layouts */
/*html { min-height:100%; margin-bottom:1px; }*/
html { width:100%; height:100%; }
/* body alignment */
body { width:100%; height:100%; }

/* useful structural elements */

/* clears space after float elements */
.clearer { clear:both; overflow:hidden; height:0px; font-size:0px; }
/* horizontal rule style - used in place of hr tags */
.hr {}
/* inline images and copy */
.floatleft { float:left; }
.floatright { float:right; }
/* centered elements */
.centered { text-align:center; }
/* non-breakable text */
.nowrap { white-space:nowrap; }

/* global page stucture elements */
#wrapper {}
#header {}
#main {}
#footer {}

