/* Define the special counters for page agb */

#agb{
  counter-reset: section;
}

#agb h1:before{
                content: counter(section) " ";
                counter-increment: section;
}
#agb h1{
         counter-reset: subsection;
}
#agb h2:before{
                content: counter(section) "." counter(subsection) " ";
                counter-increment: subsection;
}

/* Define the header styling (more austere than other pages) */
#agb h1, #agb h2{
             background-image: none;
                  border: none;
                  color: #555;
                  padding: 0;
         margin-top: 0.7em;
}
#agb h1{
         font-size: 1.3em;
         font-weight: bold;
}
#agb h2{
         font-size: 1em;
         font-weight: bold;
}
#agb p{ text-align: justify; }