
/* Top frame */
#pageHead {
           position: fixed;
           top: 0px;
           left: 0px;
           width: 100%;
           height: 100px;
           z-index: 1;
/* The main CSS should provide a background color. Here we just avoid to have a transparent background. */
           background-color: #ffffCC;
/*           border: 2px solid #0000DD; */
}

/* Left index/browsing frame */
#linkIndex{
            position: fixed;
            left: 0px;
            top: 100px;                    /* Compare to height of pageHead */
            width: 100px;
/*            border: 2px solid #DD0000; */
            padding: 3px;
}



/* Right contents frame */
           /* Compare to height of pageHead */
/*              margin-left: 132px; */
          /* Compensate left border by 2px */
/*              border: 2px solid #00DD33; */
/*
#contentsBox{
              position: relative;
              margin-top: 100px;
              margin-left: auto;
              border-left: 2px solid darkgreen; 
              padding: 0px 5px;
}
*/

#contentsBox{
              position: absolute;
              top: 100px;
              left: 110px;
              border-left: 2px solid darkgreen; 
}
