/* ListGlobal CSS  *//* STYLES// .LGlob_list           ul element of list// .LGlob_active         li of section you are in// .LGlob_preActive      li of section before active section (but not first section)// .LGlob_firstPreActive li of the first section if it is NOT the active section// .LGlob_firstActive    li of the first section when it IS active// .LGlob_firstNoActive  li of the first section when NO section is active// .LGlob_postActive     li of a section AFTER the active section// .LGlob_lastPostActive li of the last section when NOT active// .LGlob_lastActive     li of the last section when it IS active// .LGlob_lastNoActive   li of the last section when NO section is active// .LGlob_noActive       li of ALL but first and last sections when no section is active// .id[id]              a style for all a where [id] is the id number of the document */ul.LGlob_list { padding: 0px;  margin: 0px;  }ul.LGlob_list li{ display: inline;  padding: 0px 20px 0px 0px;  list-style-type: none;}ul.LGlob_list li.LGlob_firstPreActive,ul.LGlob_list li.LGlob_firstNoActive, ul.LGlob_list li.LGlob_lastActive a, ul.LGlob_list li.LGlob_firstActive a, ul.LGlob_list li.LGlob_active a{  color: #003; }  /* Nice hovering links */ul.LGlob_list li a { position:static;  font-style: italic;  font-weight: bold;  color: #996;  font-size: 13px;  text-decoration: none;   }ul.LGlob_list li.LGlob_noActive a,ul.LGlob_list li.LGlob_preActive a,ul.LGlob_list li.LGlob_postActive a,ul.LGlob_list li.LGlob_firstPreActive a,ul.LGlob_list li.LGlob_lastPostActive a,ul.LGlob_list li.LGlob_lastNoActive a,ul.LGlob_list li.LGlob_firstNoActive a,{  }ul.LGlob_list li.LGlob_preActive a:hover,ul.LGlob_list li.LGlob_postActive a:hover,ul.LGlob_list li.LGlob_firstPreActive a:hover,ul.LGlob_list li.LGlob_lastPostActive a:hover,ul.LGlob_list li.LGlob_noActive a:hover,ul.LGlob_list li.LGlob_lastNoActive a:hover,ul.LGlob_list li.LGlob_firstNoActive a:hover,ul.LGlob_list li.LGlob_active a:hover,ul.LGlob_list li.LGlob_lastActive a:hover, ul.LGlob_list li.LGlob_firstActive a:hover { color: #003;}
