/**
 * Two-Column Layout Styles
 *
 * Layout out for pages using two columns on evergreen.edu
 *
 * These styles were developed by generations forgotten to time.
 * Two-column pages have different layout needs than
 * standard pages.
 *
 * Styles in this file are organized according to the SMACSS principles:
 * http://smacss.com/
 *
 * @project     The Evergreen State College
 * @version     1.0
 * @package     XHTML (Transitional) and CSS
 * @author      The Evergreen State College
 * @copyright   2012 by the author
 * @cssdoc      0.2.22
 * @license     Copyrighted
 */

/**
 * Imported Stylesheets
 *
 * @section imports
 */

@import url(../components/header.css);
@import url(../components/forms.css);
@import url(../components/vcard.css);
@import url(../components/subsite_footer.css);
@import url(../components/page_navigation.css);
@import url(../components/subsite_header.css);
@import url(../components/profilefooter.css);

/**
 * Base Styles
 *
 * @section base
 * @see http://smacss.com/book/type-base
 */

body{
    margin: 0;  /*box model*/
    padding: 0;
}

/**
 * Layout Styles
 *
 * @section layout
 * @see http://smacss.com/book/type-layout
 */

#container{ 
    padding: 0 2%;  /*box model*/
}

#content{
    margin: 0 0 0 17.625%;  /*box model*/
    min-width: 200px;
    max-width: 1152px;  /*IE8*/
    max-width: 72rem;
}
#content .primary{
    /*width:99%;*/        /*box model*/
    overflow: hidden;  /*layout*/
}

#footer{ 
    clear: both;
}

/**
 * Module Styles
 *
 * @section module
 * @see http://smacss.com/book/type-module
 */

/*This file was organized by Justin McDowell. ((O)O)*/