
body             /*Specifies full window usage (no spaces between window and page content) */
{
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  height: 100%; 
  max-height: 100%; 
}

#navframecontent         /*This Id formats the Navigational bar on the left */
{
  position: absolute;
  top: 0;
  bottom: 0; 
  left: 0;
  width: 125px; /*Width of frame div responsible for the navigational links*/
  height: 100%;
  overflow: hidden; /*Disables scrollbars. Set to "scroll" to enable*/
  color:white;      /*color of text*/
  background: blue;
}


#navframecontent a:hover {color:black}         /* Navigation bar hover over link color */
#navframecontent a{color:white;}              /* Color of the links in the navigation bar */


#maincontent    /*This Id formats the frame to the right of the navigation (web site content) */
{
  position: fixed;
  top: 0; 
  left: 125px; /*This value should be the same as the width under the framecontent id */
  right: 0;
  bottom: 0;
  overflow: auto; 
  background: #fff;
  border-left:3px ridge grey;
}

.innertube    /*This class allows for formatting of the web site content */ 
{
  margin: 15px; /* Provides margins for the div that is nested inside the framecontent (navigation)*/

}


* html body
{ 

  /*IE6 hack to allow for comprehension of width values*/
  padding: 0 0 0 125px; /*Set value to (0 0 0 WidthOfFrameDiv)*/
}


* html #maincontent
{ 
  /*IE6 hack to allow for comprehension of width values*/
  height: 100%; 
  width: 100%; 

}




#footer {font-size: small;}

.jesus
{
   
   color: red;
   font-weight: bold;
}


.mainbodyfont
{

   color: black;
   font-size: medium;
}   



.verse
{

   color: black;
   font-size:medium;
   font-style: italic;
}


ul {font-size:medium;}
