﻿/***********************************************/
/* HTML tag styles                             */
/***********************************************/

body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; 
max-height: 100%; 
}

* html body{ /*IE6 hack*/
padding: 0 0 0 200px; /*Set value to (0 0 0 WidthOfFrameDiv)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}

a:link
{
	font-weight: bold;
	color: #003366;
	text-decoration: underline;
}

a:hover
{
	font-weight: bold;
	color: #ffffff;
	text-decoration: underline;
}

a:active
{
	font-weight: bold;
	color: #ffffff;
	text-decoration: underline;
}

a:visited
{
	font-weight: bold;
	color: yellow;
	text-decoration: inherit;
}

/***********************************************/
/* Layout Divs                                 */
/***********************************************/

#framecontent{
position: absolute;
top: 0;
bottom: 0; 
left: 0;
width: 200px; /*Width of frame div*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background: #003366;
color: white;
}

#maincontent{
position: fixed;
top: 0; 
left: 200px; /*Set left value to WidthOfFrameDiv*/
right: 0;
bottom: 0;
overflow: auto; 
background: #999999;
}

#footer{
	width: 100%;
	height: 10px;
	background: #999999;
	font-family: Verdana;
	font-size: 8pt;
}

/***********************************************/
/* Style Divs                                  */
/***********************************************/

.innertube{
margin: 5px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}

.style1
{
	font-size: 12px; 
	font-weight: bold; 
	font-family: Verdana;
}

.style2
{
	color: #FF0000;
}

.style3
{
	font-size: medium; 
	font-weight: bold; 
	font-family: Verdana;
}

.style4
{
	font-size: 12px; 
	font-weight: bold; 
	font-family: Verdana; 
	color: red;
}
