/* Base Layout 
 * This css is only for the overall Layout 
 */
/* Use this conditional Comment in the markup 
    <!--[if IE]>
    <style type="text/css">
    #container {display:inline-block;}
    #left {width:197px;}
    </style>
    <![endif]-->
*/
body {
    text-align: center;
}

#outermostwrapper {
    text-align: left;
    width:950px;
    margin:0 auto;
}

/* The header and footer */
.headfoot {
    display:block; 
}
#head {
    height: 161px;
}
/* This bit does all the work */
#container {
    position:relative; 
    display:block; 
    background:#ecf1f6; 
    border-left:200px solid #bad6ef; 
    /* border-right:200px solid #a8a; */
    overflow:visible;
}

#left {
    float:left; 
    position:relative; 
    width: 244px;
    margin-left:-243px;
    display:inline;
}

#right {
    float:right; 
    position:relative; 
    width:244px;
    margin-right:-243px;
    display:inline;
}

.clear {
    clear:both;
    height:1px;
    overflow:hidden;
}
