body {
		 background-color: white;
	 	 font-family: Georgia;
		 /*font-size: 40px;*/
		 color: #777777;

     scrollbar-base-color: black; 
     scrollbar-face-color: gray; 
     scrollbar-track-color: black; 
     scrollbar-arrow-color: black;
     scrollbar-highlight-color: black; 
     scrollbar-3dlight-color: black; 
     scrollbar-shadow-color: black;
     scrollbar-darkshadow-color: black;
}

/* Table */

table {
			font-size: 11px; /* If it's going to be in a table, which it is, this is the standard height for text */
}

span.title {
						 font-size: 35px;
						 }

span.article {
						 font-size: 15px;
						 }

span.about {
						 font-size: 14px;
						 }

						 
/* Regular Links */
			
a:link {text-decoration: none; color: #296FA3;}  /* #296FA3 */
a:visited {text-decoration: none; color: #296FA3;}
a:hover {text-decoration: underline; color: #296FA3;}
a:active {text-decoration: none; color: #296FA3;} 



/* TESTING for bottom frame */

body{
		 background-color: white;
		 margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; 
max-height: 100%; 
}

#framecontent{
position: absolute; 
bottom: 0; 
left: 0; 
width: 100%; 
height: 300px; /*Height of frame div*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background: white;
color: white;
}

#maincontent{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 130px; /*Set bottom value to HeightOfFrameDiv*/
overflow: auto; 
background: white;
}

.innertube{
margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}

* html body{ /*IE6 hack*/
padding: 0 0 130px 0; /*Set value to (0 0 HeightOfFrameDiv 0)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}



