html {
   min-height: 100%;
   margin-bottom: 1px;
}

body {
   margin-top: 0px;
   margin-left: 0px;
   margin-right: 0px;
   background-color: #000000;
   text-align: center;
   min-width:1000px;
   /* IE Dynamic Expression to set the width */
   width:expression(document.body.clientWidth < 1050 ? "1000px" : "100%" );
   color: #B0B0B0;    
}

a {
   color: #d7b659; /*#FFDA73;*/
   font-family: Verdana;
   font-weight: bold;
   font-size: 11px;
   text-decoration: none;
}

a:hover {
   text-decoration: underline;
}

div#page-contents {
   position: relative;
   width: 100%;
}

div#left-column {
   position: absolute;
   left: 0px;
   top: 0px;   
   width: 200px;
   text-align: left;
}

div#center-column {
   margin-left: 200px;
   margin-right: 201px;
   text-align: left;
    background-color: red;
}

div#right-column {
   position: absolute;
   right: 0px;
   top: 0px;
   width: 200px;
   text-align: left;
}

