/**
* Layout css
*
* This file contains only structural css. Only major css classes and elements
* that affect positioning. Such as:
*   display, position, float, clear, width, height, min-width, min-height
*   margin, border, padding, overflow
*
* This is the main layout css. If your site has pages with a totally different
* layout you should create whatever.layout.css and put that layout in there or
* you could ofcourse extend this file but thats not recommended as it would lead
* to a bloated css file that would also cause unnecessary css to be loaded each
* page request.
*/

html, body
{
   height: 100%;
   margin: 0;
   padding: 0;
}

/**
* #site and #site-inner wraps the entire site
*/
#site
{
   
}
#site-inner
{
   
}

#header
{
   
}

#header-inner
{
   
}

#main
{
   
}

#main-inner
{
   
}



#footer
{
   
}

#footer-inner
{
   
}