/* This stylesheet is having the definitions for the various div's and their
   positioning on the page */


#container {
margin: 0 auto;
width: 850px;
text-align: left;
border-left: 1px solid #c00;
border-right: 1px solid #c00;
background-color:#fff;
}

* html #container {   /*** IE5.x/win box model fix ***/
width: 850px;
wid\th: 850px;
}

html>body #container {
  width: 848px;
}

/* The left menu part of the page */
#column1 { 
        width: 180px; 
        font-weight:bold;
        float: left;
        background-color: #fff;
        margin-right: -1px;
        border-right: 1px solid #c00;
      }

html>body #column1 {
        border-left: 1px solid #c00;
        margin-left: -1px;
        margin-right: -1px;
        border-right: 1px solid #c00;
        width: 182px;
      }

/* The right part of the page */
#column2 { 
        position: relative;
        width: 647px; 
        float: left;
        background-color: #fff;
        border-left: 1px solid #c00;
        padding-left: 10px;
        padding-right: 10px;
      }
        
html>body #column2 { 
        float: right;
        width: 645px; 
        margin-right: -1px;
        border-right: 1px solid #c00;
        padding-right: 10px;
      }

