﻿h1           { font-family: Trebuchet MS; font-size: 12pt; color: #000080; font-weight: bold }

.Inhalt      { font-family: Trebuchet MS; font-size: 12pt; margin-top: 0; margin-bottom: 0 }
.Bibeltext   { font-family: Trebuchet MS; font-size: 10pt; background-color: #FEEFDE; 
               text-align: justify; border: 1px solid #800000; padding: 5 }
h2           { font-size: 12pt; font-family: Trebuchet MS; color: #000080; margin-left: 15 }
p            { font-family: Trebuchet MS; font-size: 12pt; text-align: justify }
ul           { font-family: Trebuchet MS; font-size: 12pt; text-align: justify; list-style-type: disc }
ol           { font-family: Trebuchet MS; font-size: 12pt; text-align: justify; }

h1 a:hover 
{
    font-weight:bold;
    text-decoration:none; 
}

h2 a:hover 
{
    font-weight:bold;
    text-decoration:none; 
}

/* link pseudo-class, noch nicht besuchter Link */
a:link  
{
    color:Blue;
    text-decoration:none; 
    font-weight:normal;
}
/* link pseudo-class, schon besuchter Link */
a:visited 
{ 
    text-decoration:none; 
    font-weight:normal;
    color:Blue;
}
/* dynamic pseudo-class, Benutzer 'hovert' */
a:hover 
{ 
    text-decoration: underline; 
    color:Blue;
    font-weight:normal;
    
}

/* dynamic pseudo-class, Link wird ausgewählt */
a:active 
{ 
    text-decoration:none; 
    font-weight:normal;
    
}
/* dynamic pseudo-class, Element akzeptiert Eingaben */
a:focus 
{ 
    text-decoration:none; 
    font-weight:normal;
    
}



