/*

    Fourmilab standard style sheet for screen media
    
*/

    /* Regular text links */
    
    a.v:link,  a.v:visited {
	background-color: inherit;
    	color: rgb(0%, 0%, 80%);
	text-decoration: none;
    }

    a.v:hover  {
    	background-color:  rgb(30%, 30%, 100%);
    	color: rgb(100%, 100%, 100%);
    }
    
    a.v:active {
    	color: rgb(100%, 0%, 0%);
    	background-color:  rgb(30%, 30%, 100%);
    }

    /* Links without decoration.  These are usually
       wrapped around buttons and images which are
       self-evidently links. */
    
    a:link, a:visited, a:hover {
    	background-color:  inherit;
    	color: inherit;
	text-decoration: none;
    }
        
    body {
        margin-left: 15%;
        margin-right: 10%;
	background-color: #FFFFFF;
	color: #000000;
    }

    /* Float-clearing breaks. */
      
    br.cb {
    	clear: both;
    }
  
    br.cl {
    	clear: left;
    }
  
    br.cr {
    	clear: right;
    }
    
    /* Navigation table */
    
    table.nav {
    	width: 100%;
	font-family: sans-serif;
    }
    
    table.nav td {
    	vertical-align: top;
    }
    
    table.nav td.l {
    	width: auto;
	text-align: left;
    }
    
    table.nav td.r {
    	width: auto;
	text-align: right;
    }
        
    /* Navigation links at document bottom. */
    
    h3.nav {
    	margin-top: 0px;
	margin-bottom: 0px;
    }
    
    /* Verse list items */
    
    ol li {
    	margin-top: 1ex;
	text-align: justify;
    }

    /* Text blocks with various alignment */
     
    .c {
    	text-align: center;
    }
       
    .j {
    	text-align: justify;
    }
    
    .r {
    	text-align: right;
    }
