/* Table of Contents
==================================================
    #Base 960 Grid
    #Tablet (Portrait)
    #Mobile (Portrait)
    #Mobile (Landscape)
    #Clearing */

/* #Base 960 Grid
================================================== */

    .bodyAppProc, body.sectiontable, body.sectiontable form, body.bodyDuo, body.bodyChp, .PSOFOShop          
	{ position: relative; width: 960px; margin: 20px auto; padding: 0; }

/* #Additional - Large Screens beyond 1280px
================================================== */
    /* Note: Design for a width of 1280px
    @media only screen and (min-width: 1280px) {
        .bodyAppProc, body.sectiontable, body.sectiontable form, body.bodyDuo, body.bodyChp, .PSOFOShop               
		{ width: 1280px; }
    } */

/* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 768px */

    @media only screen and (min-width: 768px) and (max-width: 959px) {
        .bodyAppProc, body.sectiontable, body.sectiontable form, body.bodyDuo, body.bodyChp, .PSOFOShop, .sectionspacer 				
		{ width: 768px; }
    }


/*  #Mobile (Portrait)
================================================== */

    /* Note: Design for a width of 320px */

    @media only screen and (max-width: 767px) {
        .bodyAppProc, body.sectiontable, body.sectiontable form, body.bodyDuo, body.bodyChp, .PSOFOShop, .sectionspacer 	  
		{ width: 300px; }
    }


/* #Mobile (Landscape)
================================================== */

    /* Note: Design for a width of 480px */

    @media only screen and (min-width: 480px) and (max-width: 767px) {
        .bodyAppProc, body.sectiontable, body.sectiontable form, body.bodyDuo, body.bodyChp, .PSOFOShop, .sectionspacer   
		{ width: 420px; }
    }


/* #Clearing
================================================== */

    /* Self Clearing Goodness */
    .bodyAppProc:after, body.sectiontable:after, body.sectiontable form:after, body.bodyDuo:after, body.bodyChp:after.PSOFOShop:after, .sectionspacer:after 
	{ content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

    /* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */
    .clearfix:before,
    .clearfix:after,
    .row:before,d
    .row:after {
      content: '\0020';
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0; }
    .row:after,
    .clearfix:after {
      clear: both; }
    .row,
    .clearfix {
      zoom: 1; }

    /* You can also use a <br class="clear" /> to clear columns */
    .clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
    }
