/*
Description:	Base/Master Class
Author:			rye 
Version:		1.0
Date Created:	May 11, 2009
Last Modified:	May 26, 2009
Modified by:	rob

[Table Of Contents] 

	0- Reset
	1- Global
	2- Layouts
	3- Content
	4- Design			
	5- Branding	
	6- Named Components	
	7- Color Scheme

*/

/*==================================== Testing ====================================*/


/*==================================== 0 Reset ====================================*/
@import url('reset.css');


/*==================================== 1 Global ====================================*/

body
{
	text-align:center; /*Added by: Rob / Purpost: (margin: 0 auto) is not rendering properly in i.e. This should fix the problem.*/
}

/*==================================== 2 Layouts ====================================*/

/* { MAIN */
#main_container
{
	width:100%;
	height:auto;
	margin: 0 auto; /*Center container on page*/	
	text-align:left; /*Added by: Rob / Purpost: Override text-alignment from the body element style*/
}

#main_panel_left_container
{
	float:left;
	width:10%;
	height:auto;	
}

/* for container elements please see  PAGE */
#main_panel_content_container
{
	float:left;
	width:80%;
	height:auto;	
}

#main_panel_right_container
{
	float:left;
	width:10%;
	height:auto;	
}

/* MAIN }*/

/* { PAGE */
#page_header
{
	height: 185px;
	width: 100%;
}

/* for container elements please see  CONTENT */
#page_content
{
	height:600px;
	width:100%;
}

#page_footer
{
	height:100px;
	width:100%;
}
/* PAGE } */


/* { CONTENT */

#content_left
{
	float:left;
	width:10%;
	height:100%;
}

#content_body
{
	float:left;
	width:79%;
	height:100%;
}

#content_right
{
	float:left;
	width:10%;
	height:100%;
}
/* CONTENT } */

/*==================================== 3 Content ====================================*/

/*==================================== 4 Design ====================================*/
#main_panel_content_container
{
	
}


/*==================================== 5 Branding ====================================*/

body
{
	
}

/*==================================== 6 Named Components ====================================*/

/*==================================== 7 Color Scheme ====================================*/





/*==================================== Testing ====================================*/

