body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; 
max-height: 100%; 
background-color: #D1FEFF;
}

#framecontentTop{
position: absolute;
top: 0;
left: 200px;
right: 0; /*Set right value to WidthOfRightFrameDiv*/
width: auto;
height: 200px; /*Height of top frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/

color: #D6156C;
background-image: url(rightcorner.png); 
background-repeat: no-repeat;
background-position: top right;
}


#framecontentLeft, #framecontentRight{
position: absolute; 
top: 0; 
left: 0; 
width: 200px; /*Width of left frame div*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: #D1FEFF;
padding-top:120px;
text-align:right;
}

#framecontentLeft {
background-image: url(leftcorner.png); 
background-repeat: no-repeat;
}

#framecontentLeft a{
font-family: Helvetica;
font-variant: small-caps;
font-weight:normal;
font-size: 200%;
color: #D6156C;
text-decoration: none;
}

#framecontentLeft a:hover{
font-family: Helvetica;
font-variant: small-caps;
font-weight:normal;
font-size: 200%;
color: #463F5C;
text-decoration: none;
}

#framecontentRight{
z-index: 2;
left: auto;
right: 0; 
top: 0;
width: 220px; /*Width of right frame div*/
padding-right: 10px;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
color: white;
background-color: transparent;
}

#maincontent {
z-index: 1;
position: fixed; 
top: 120px; /*Set top value to HeightOfTopFrameDiv*/
left: 200px; /*Set left value to WidthOfLeftFrameDiv*/
right: 220px; /*Set right value to WidthOfRightFrameDiv*/
bottom: 0;
overflow: auto; 
background-color: #FCFAD9;
color: #2B2825;
font-family: "Gill Sans", "Helvetica Narrow", Arial;
padding: 15px;
-moz-border-top-right-radius: 20px;
-webkit-border-top-right-radius: 20px;
-moz-border-top-left-radius: 20px;
-webkit-border-top-left-radius: 20px;
border-radius: 20px;  
border: 2px solid #ABAA93;
}

#maincontent hr {
border: 0;
color: #0b8c8f;
background-color: #0b8c8f;
height: 2px;
}

#maincontent a {
text-decoration: none;
color: #D6156C;
}

#maincontent a:hover {
color:#0B8C8F; 
text-decoration: underline
}

.innertube{
margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}

* html body{ /*IE6 hack*/
padding: 120px 150px 0 200px; /*Set value to (HeightOfTopFrameDiv WidthOfRightFrameDiv 0 WidthOfLeftFrameDiv)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}

* html #framecontentTop{ /*IE6 hack*/
width: 100%;
}


