/* The aim of the further class is to provide a way to make text visible only 
 * for screen reader, but not for graphical usefull browser 
 * Usefull for "skip to content Anchor" or so.
 * 
 * Exemple of use :
 *
 * <a href="#maincontent" class="invisibleZone" >Skip to main content</a>
 * ...
 * <a name="maincontent" title="begin main content" href="#maincontent" class="invisibleZone"/>
 *
 * Or :
 * <a href="front/accessibilityStatement.jsp" title="options d'accessibilité de ce site"
 *          class="invisibleZone" 
 *          accesskey="0">Accessibility statement</a>
 */ 
.invisibleZone {
	  height:    0pt        !important;
    left:      -2000px    !important;
    overflow:  hidden     !important;
    position:  absolute   !important;
    top:       -2000px    !important;
    width:     0pt        !important;
}
