/* Start of CMSMS style sheet 'grid' */
@charset "utf-8";
/*
  Grid CSS
  Author:         Roy Lindauer
  Date:           10/18/07
  Revision Date:  03/10/08
  Version:        0.4
*/
    
/*
  Overload baseline styles
*/
#site{
    width:880px;
    position:relative;
    margin:0 auto;
    }
#header{
    height:81px;
    position:relative;
    }
#page{
    position:relative;
    }
#footer{
    height: 150px;
    position:relative;
    margin:0 auto;
    }

#intro{
    position:relative;
	height:255px;
    }
	
.column{
	padding:0 10px;
    width:273px;
    float:left;
    position:relative;
	}
	
#content{
    float:right;
    /*
      Padding and width equation
      CSS Width - Padding = Real Width
      If you want a 600px container with 10px of padding
      you set the width property to 580 and padding-left and padding-right to 10
      to include a border, subtract the total width of the border(left + right) from the
      width value
    */
    padding:0 20px;
    width:547px;
    min-height: 300px;
    position:relative;
    }
#sidebar{
    float:left;
    /*
      Padding and width equation
      CSS Width - Padding = Real Width
      If you want a 300px container with 10px of padding
      you set the width property to 280 and padding-left and padding-right to 10
      to include a border, subtract the total width of the border(left + right) from the
      width value
    */
    padding:0 20px 0 10px;
    width:263px;
    position:relative;
    overflow:hidden;
    }
/*
  Additional Site Structure Style Definitions

*/
.header_badge{
	position:absolute;
	top:0;
	right:0;
	}

*/
.award{
	position:absolute;
	top:200;
	right:0;
	}
/* End of 'grid' */

