/* 
    Document   : orion-footer
    Created on : 24 mai 2012, 17:20:49
    Author     : olivier.dupre
    Description:
        CSS appliquées sur le pied-de-page d'une page ORION.
*/
/**
 * Couleurs de l'icône et de son fond, permettant de replier l'en-tête
 *//**
 * Taille de la police dans la barre de menu vertical
 */
/**
 * Jeu de couleurs pour la coloration des lignes paires/impaires dans les tableaux
 */
/**
 * Couleur des icones d'aide contextuelle.
 */
/**
 * Arrondi des boutons.
 */
/**
 * Couleurs de l'icône et de son fond, permettant de replier l'en-tête
 *//**
 * Taille de la police dans la barre de menu vertical
 */
/**
 * Jeu de couleurs pour la coloration des lignes paires/impaires dans les tableaux
 */
/**
 * Couleur des icones d'aide contextuelle.
 */
/**
 * Arrondi des boutons.
 */
/**
 * Définit un fond transparent.
 */
.o-transparent {
  background-color: transparent;
}
/**
 * Définit le fond et le texte totalement transparent.
 */
.o-fully-transparent {
  background-color: transparent;
  opacity: 0;
}
/**
 * Ne pas afficher un élément à l'écran, tout en le positionnant à l'intérieur d'un autre...
 * L'utilisation de cette classe permet notament de fournir une alternative textuelle non affichée pour des composants
 * graphiques, types icônes, utilisés dans des liens. Les liseuses d'écran vont lire le contenu de la balise (span, ...)
 * alors qu'elle en sera pas affiché à l'écran.
 */
.o-invisible {
  position: absolute;
  top: -5000px;
  left: -5000px;
  overflow: hidden;
  width: 1px;
  height: 1px;
}
/**
 * Coloration "grisée" (plus claire) d'un composant désactivé.
 */
.o-disabled {
  color: #999999;
}
/**
 * Permet d'afficher un div comme si c'était un span.
 * Cette technique permet de respecter le type des balises (block ou inline), sachant qu'une balise inline (span)
 * ne peut pas contenir de balise block (div, h1, ...).
 */
.o-div-inline {
  display: inline;
}
/**
 * Permet de centrer horizontalement un affichage par rapport à son parent.
 */
.o-center {
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}
.o-ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.o-overflow {
  overflow: auto;
}
/**
 * Fluid system.
 */
h1 {
  font-size: 30px;
  line-height: 34px;
}
h1 small {
  font-size: 12px;
}
h2 {
  font-size: 24px;
  line-height: 26px;
}
h2 small {
  font-size: 10px;
}
h3 {
  font-size: 20px;
  line-height: 24px;
}
h3 small {
  font-size: 8px;
}
h4,
h5,
h6 {
  line-height: 18px;
}
h4 {
  font-size: 16px;
}
h4 small {
  font-size: 12px;
}
h5 {
  font-size: 14px;
}
h6 {
  font-size: 12px;
  color: #999999;
  text-transform: uppercase;
}
/**
Rendu global pour les icônes
 */
i[class^="icon-"] {
  margin-right: 0.3em;
  margin-left: 0.3em;
}
/**
* Utilitaires pour affiner la présentation : marges, padding, ...
* Les classes ne sont pas et (ne doivent pas) liés à une structure XHTML particulière.
*/
.o-margin1 {
  margin: 1em;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.o-footer {
  background: #127abf;
  background-repeat: no-repeat;
  background-position: left;
  height: 32px;
  width: 100%;
  text-align: center;
  -webkit-border-radius: 0 0 1em 0;
  -moz-border-radius: 0 0 1em 0;
  border-radius: 0 0 1em 0;
}
.o-footer-img {
  margin-left: 1.5em;
  margin-right: 0.5em;
  float: left;
}
.o-footer-left-part {
  line-height: 100%;
  font-size: 12px;
  float: left;
  margin-top: calc(( 20px ) / 2);
  margin-top: -moz-calc(( 20px ) / 2);
  margin-top: -webkit-calc(( 20px ) / 2);
}
.o-footer-middle-part {
  line-height: 100%;
  display: inline-block;
  margin: 0 auto;
  margin-top: calc(( 18px ) / 2);
  margin-top: -moz-calc(( 18px ) / 2);
  margin-top: -webkit-calc(( 18px ) / 2);
}
.o-footer-right-part {
  line-height: 100%;
  float: right;
  margin-top: calc(( 18px ) / 2);
  margin-top: -moz-calc(( 18px ) / 2);
  margin-top: -webkit-calc(( 18px ) / 2);
}
.o-footer-text {
  color: #000000;
}
.o-footer-link {
  color: #ffffff;
  margin-left: 0.5em;
  margin-right: 1.5em;
  text-decoration: none;
}
.o-footer-owner {
  color: #ffffff;
  font-weight: bold;
  margin-left: 0.2em;
  margin-right: 0.2em;
}
