/* &lt;!-- */

/*  From http://matthewjamestaylor.com/blog/ultimate-2-column-right-menu-pixels.htm
    with fixed width amendments - see below
*/

body {
    margin:0;
    padding:0;
    border:0;           /* This removes the border around the viewport in old versions of IE - MJT */
    width:100%;
    background: #bbb;
    text-align: center; /* use this for fixed with - see #fixed */
}

body
{
  font-family: Verdana,Tahoma,Arial,Helvetica,Sans-serif;
  font-size: 8pt;
  font-weight: normal;
  font-style: normal;
}

#hg-header {
    clear:both;
    float:left;
    width:100%;
    border: 0;
    padding: 0; /* keep this - see #hg-header-inner for padding */
}

/* column container */
.colmask {
    position:relative;  /* Fixes IE7 overflow hidden bug and stops the layout jumping out of place - MJT */
    clear:both;
    float:left;
    width:100%;         /* width of whole page - MJT */
    overflow:hidden;    /* This chops off any overhanging divs - MJT */
}

/* 2 column right menu settings - MJT */
.colmask .colleft {
    float:left;
    width:200%;
    margin-left:-200px;
    position:relative;
    right:100%;
}

.colmask .col1wrap {
    float:left;
    width:50%;
    position:relative;
    left:50%;
    padding-bottom:1em;
}

.colmask .col1 {
    margin:0 15px 0 215px;
    overflow:hidden;
}

.colmask .col2 {
    float:right;
    width:170px;
    position:relative;
    left:185px;
}

#hg-footer {
    clear:both;
    float:left;
    width:100%;
    padding: 0; /* keep this - see #hg-footer-inner for padding*/
    margin: 0;
}

/*  From http://matthewjamestaylor.com/blog/how-to-convert-a-liquid-layout-to-fixed-width */

#fixed {
    margin:0 auto 0 50px;
    width: 800px;   /* you can use px, em or % */
    text-align:left;
}

/*  Remaining style is custom and not part of MJT's */

#hg-header-inner,
#hg-footer-inner {padding: 5px 15px;}

/*  Borders for the four zones are done in several places
    The surrounding border is actually inset in a white border
    for focus - the thin container is actually a background
    only a small amount of which is visible
 */

#hg-header {border-bottom: 2px solid #ff6666;}
.col1wrap {border-right: 2px solid #ff6666;}
#hg-footer {border-top: 2px solid #ff6666;}

#fixed {
    display: table;
    border-style: solid;
    border-width: 8px 6px;
    border-color: #fff;
    background: #ff6666;
    padding: 2px;
}

/*  Because of the background above, everything would be that colour
    therefore it's necessary to set the panels separately
*/

#hg-header {background: #fff;}
.rightmenu {background: #ff9;}
#hg-footer {background: #ff9;}
.colleft {background:#fff;} /* this would be the same as .rightmenu */


#hg-header p,
#hg-header h1,
#hg-header h2 {
    padding: 0.4em 15px 0 15px;
    margin: 0;
}

#banner-left {
    width: 25%;
    float: left;
    height: 20em;
    background: white;
    color: black;
}

#banner-left h1 {
    color: #ff6666;
    font-family: Calibri, Tahoma, Verdana;
    font-size: 36pt;
    line-height: 130%;
    margin-left: -0.7em;
    padding-left: 1.1em;
}

#banner-right {
    width: 75%;
    float: right;
    height: 20em;
    display: table;
    background: transparent url('/img/SCBA-Table-2.jpg') no-repeat top right;
/*    background:     transparent url('/img/SCBA-Table-1.jpg') no-repeat bottom right; */
}

#banner-right p {
    float: right;
    margin-top: 8em;
    font-family: Calibri;
    font-size: 16pt;
}

#banner-right p, #banner-right a  {
    background: none;
    color: white;}

#banner-right p:first-child {float: left;}


/*  This inhibits display of items which are two columns wide in right-hand column
    The corresponding 'rhs-one-col-wide' is switched off in the 3-up style sheet
*/
div.rhs-two-cols-wide {display: none;}

/* --&gt; */