IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

HTML Discussion :

Pourquoi mon footer s'affiche avant la fin de la page ?


Sujet :

HTML

  1. #1
    Membre habitué
    Profil pro
    Étudiant
    Inscrit en
    Mars 2013
    Messages
    388
    Détails du profil
    Informations personnelles :
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mars 2013
    Messages : 388
    Points : 172
    Points
    172
    Par défaut Pourquoi mon footer s'affiche avant la fin de la page ?
    Bonsoir,

    J'aimerais que mon <footer> ne s'affiche qu'à la fin de l'affichage de toute la page, mais ici il s'affiche toujours et il gène l'affichage complet de la page :



    Nom : footer pb.png
Affichages : 2525
Taille : 114,8 Ko

    Comment faire pour le mettre tout en bas de la page ?

    Code CSS du footer :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    footer{
    	position:fixed;
    	bottom:0;
    	left:0;
    	height:40px;
    	background: #CC3D3D;
    	box-shadow: -1px 0 10px #555; /*ombre*/
    	width:100%;
    	color: white;
    	text-align:center;
    	z-index:2; /*formulaire se met sous le footer */
    }
     
     
    }
    Merci

  2. #2
    Membre habitué
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2015
    Messages
    98
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Seine et Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Juin 2015
    Messages : 98
    Points : 184
    Points
    184
    Par défaut
    Bonjour,
    Le principe du footer est celui que tu décris.
    Si tu le veux en bas de la page enlève le position: fixed.
    Après je ne sais pas comment il est codé côté html. La réponse permettra de savoir si il faut le mettre en absolute, relative... et s'il faut changer le positionnement.

  3. #3
    Modérateur

    Avatar de NoSmoking
    Homme Profil pro
    Inscrit en
    Janvier 2011
    Messages
    16 939
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Isère (Rhône Alpes)

    Informations forums :
    Inscription : Janvier 2011
    Messages : 16 939
    Points : 44 112
    Points
    44 112
    Par défaut
    Bonjour,
    tu peux allé regarder cette discussion Page "pleine" sur les navigateurs.

  4. #4
    Membre habitué
    Profil pro
    Étudiant
    Inscrit en
    Mars 2013
    Messages
    388
    Détails du profil
    Informations personnelles :
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mars 2013
    Messages : 388
    Points : 172
    Points
    172
    Par défaut
    Merci pour vos réponses.
    Côté HTML :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <footer> © 2015 Croix-Rouge Française </footer>
    Il est écrit une seule fois dans un fichier commun.

    @NoSmoking:
    Y a un problème avec ce code c'est qu'il se met tout en haut de la page au dessus du contenu du body de la page.

  5. #5
    Membre habitué
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2015
    Messages
    98
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Seine et Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Juin 2015
    Messages : 98
    Points : 184
    Points
    184
    Par défaut
    Cette info n'est pas suffisante, il faut voir comment cet element footer ce positionne avec les autres éléments de la page.
    S'il est à la fin de ton fichier html (avant </body>), tu peux essayer
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    footer{
    	height:40px;
    	background: #CC3D3D;
    	box-shadow: -1px 0 10px #555; /*ombre*/
    	width:100%;
    	color: white;
    	text-align:center;
    }
    Mais il y a peut être d'autres élément en absolute au niveau du body et dans ce cas tu peux faire, en plus, au niveau html :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    <body>
      <div>
         ...toute le contenu actuel de body sans le footer
      </div>
      <footer> © 2015 Croix-Rouge Française </footer>
    </body>
    Pas super propre, mais ca peut dépanner...

  6. #6
    Membre habitué
    Profil pro
    Étudiant
    Inscrit en
    Mars 2013
    Messages
    388
    Détails du profil
    Informations personnelles :
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mars 2013
    Messages : 388
    Points : 172
    Points
    172
    Par défaut
    @www.diazis.com: Merci pour ta réponse.
    En essayant ton code, mon footer s'est mis en haut de la page
    Voici comment le <footer> est positionné :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    <?php
    session_start();
    /*Connexion BDD*/
    include("connexion.php");                       
    ?>
    <!DOCTYPE html> 
    <html>
    	<head>
    		<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
     
    		<link rel="stylesheet" href="css/demo.css">
    		<link rel="stylesheet" href="css/font-awesome.css">
    		<link rel="stylesheet" href="css/sky-mega-menu.css">
     
    		<link rel="stylesheet" href="css/footer.css">
     
    	</head>
    	<body class="bg-red">
    		<div class="body">		
    			<!-- MENU -->
     
     
    		</div>	
                   <footer> © 2015 Croix-Rouge Française</footer>		
    </body>
    </html>

  7. #7
    Membre habitué
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2015
    Messages
    98
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Seine et Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Juin 2015
    Messages : 98
    Points : 184
    Points
    184
    Par défaut
    as tu bien changé ton footer dans ta feuille de style ?
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    footer{
      height:40px;
      background: #CC3D3D;
      box-shadow: -1px 0 10px #555; /*ombre*/
      width:100%;
      color: white;
      text-align:center;
    }
    Si oui qu'y-a-t-il dans tes css pour As tu également vérifier que tu n'avais pas d'autre référence à footer ou à la classe "body" dans tes autres css ?

  8. #8
    Membre habitué
    Profil pro
    Étudiant
    Inscrit en
    Mars 2013
    Messages
    388
    Détails du profil
    Informations personnelles :
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mars 2013
    Messages : 388
    Points : 172
    Points
    172
    Par défaut
    Oui j'ai bien changé le footer dans le css.
    Pour class='body' j'ai :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    .body {
    	max-width: 600px;
    	margin: 0 auto;
    	padding: 40px;
    	box-sizing: content-box;
    	-moz-box-sizing: content-box;
    }
    .body-s {
    	max-width: 400px;
    }
    En supprimant tous les liens vers les feuilles de style mise à part le footer, le <footer> se met en bas du contenu (page o* est écrit le footer), mais pas tout en bas de la page.
    Y a un autre problème : d'abord je précise que j'ai écrit le menu et le footer sur une seule page, et que celle-ci est appelée dans toutes les autres pages avec un include("fichier_appele.php") en haut de ces pages. Le problème est que le <footer> se place sous le menu (comme écrit dans le fichier_appele.php ) mais il se place aussi au dessus du contenu des autres pages!

  9. #9
    Membre habitué
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2015
    Messages
    98
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Seine et Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Juin 2015
    Messages : 98
    Points : 184
    Points
    184
    Par défaut
    Si tu fais un include en haut de tes scripts php et que tu renvois du code html dans le reste du script php, ca peut pas marcher. Non seulement tu as envoyés le footer mais aussi la fin du body...
    Il faut que tu scinde ton fichier en deux.
    Le premier (allant jusqu'à la fin de ton menu) appelé au début de tes scripts
    et l'autre (commençant à la fin du div class body) appelé à la fin de tes scripts

  10. #10
    Membre habitué
    Profil pro
    Étudiant
    Inscrit en
    Mars 2013
    Messages
    388
    Détails du profil
    Informations personnelles :
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mars 2013
    Messages : 388
    Points : 172
    Points
    172
    Par défaut
    Merci beaucoup.
    J'ai scindé le fichier en 2 pour menu et footer, et le footer se met bien en bas de la page
    J'ai juste une dernière question : pour mes pages dont le contenu est petit et qui ne prend pas toute la page, le footer se met sous le contenu, mais vu que y a peu de contenu, le footer n'est pas arrivé au bas de la page. Est-ce qu'il y a un moyen pour le footer dans ce cas se mette en bas de la page, ou bien faut-il que je rajoute des espaces ?

  11. #11
    Membre habitué
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2015
    Messages
    98
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Seine et Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Juin 2015
    Messages : 98
    Points : 184
    Points
    184
    Par défaut
    Tu peux essayer :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
     
    body {
      margin: 0;
      padding: 0;
      min-height: 100%;
    }
     
    footer{
      position: absolute;
      bottom: 0;
      left: 0;
      height:40px;
      background: #CC3D3D;
      box-shadow: -1px 0 10px #555; /*ombre*/
      width:100%;
      color: white;
      text-align:center;
    }
    Attention le premier est bien body pas .body (que tu conserves comme précédemment).
    Comme tu as un padding de 40px sur .body ca devrait le faire.

  12. #12
    Membre habitué
    Profil pro
    Étudiant
    Inscrit en
    Mars 2013
    Messages
    388
    Détails du profil
    Informations personnelles :
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mars 2013
    Messages : 388
    Points : 172
    Points
    172
    Par défaut
    Merci. En fait, avec position: absolute; ça permet de bien positionner le <footer>, mais uniquement pour les pages courtes, car pour les pages longues, le <footer> reste figé en bas de l'écran mais pas en de la page.

  13. #13
    Membre habitué
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2015
    Messages
    98
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Seine et Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Juin 2015
    Messages : 98
    Points : 184
    Points
    184
    Par défaut
    ca veut dire que tu as des éléments en absolute à l'intérieur du div de classe body qui n'étendent pas automatiquement la hauteur du tag body.
    Soit tu peux les mettre en relative et ca fonctionnera sinon j'ai pas de solution simple.

  14. #14
    Membre habitué
    Profil pro
    Étudiant
    Inscrit en
    Mars 2013
    Messages
    388
    Détails du profil
    Informations personnelles :
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mars 2013
    Messages : 388
    Points : 172
    Points
    172
    Par défaut
    Les éléments qui sont en absolute font partie de mon menu. Je les ai mis en relative mais ça n'a rien changé à part que le menu s'est décalé.

  15. #15
    Membre habitué
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2015
    Messages
    98
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Seine et Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Juin 2015
    Messages : 98
    Points : 184
    Points
    184
    Par défaut
    Quand je disais les mettre en relative, ca voulait aussi dire revoir leur positionnement.
    Cela, je ne pense pas que le problème vient de ta barre de menu. Tu peux donc laisser les éléments en absolute.
    As tu un lien disponible avec la version du site ou c'est ok pour les petites pages et pas ok pour les plus longues ?
    Sinon édite le code source de la page et le fichier css correspondant.

  16. #16
    Membre habitué
    Profil pro
    Étudiant
    Inscrit en
    Mars 2013
    Messages
    388
    Détails du profil
    Informations personnelles :
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mars 2013
    Messages : 388
    Points : 172
    Points
    172
    Par défaut


    As tu un lien disponible avec la version du site ou c'est ok pour les petites pages et pas ok pour les plus longues ?
    Sinon édite le code source de la page et le fichier css correspondant.
    Le site n'est pas en ligne, c'était la question ?
    C'est le contraire, ok pour les grandes pages et pas ok pour les petites pages.
    Je dois dire que le conteneur ne prend pas toute la hauteur de la page, et ça malgré un height: 100%;
    Code source de la page courte :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    <?php
    /*-------------Inclure le menu -----------------*/
    include("menu.php");                            
    ?>
    <!DOCTYPE html> 
    <html>
    	<head>
    		<title>Capitalisation RLF : typologie </title>
    		<meta charset="utf-8">
    		<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
     
    		<link rel="stylesheet" href="css/sky-forms.css">
    		<link rel="stylesheet" href="css/sky-forms-red.css">
    		<!--[if lt IE 9]>
    			<link rel="stylesheet" href="css/sky-forms-ie8.css">
    		<![endif]-->
     
     
    	</head>
    	<body class="bg-red" >
    	<!--Formulaire------------------------------------------->
    		<div class="body">
    			<form action="" method="post" id="sky-form" class="sky-form">
    				<header>Saisie d'une typologie</header>
    				<fieldset>	
     
    						<!--Nom de la structure-->
    							<section>
    								<label class="input">
    									<i class="icon-append fa fa-briefcase"></i>
    									<input type="text" name="typologie" id="typologie" placeholder="Nom de la typologie">
    								</label>
    								<i></i>
    							</section>
     
    			<fieldset>
    					<button type="submit" class="button" name="valider">Valider</button>
    			</fieldset>
     
    			</form>					
    		</div>
     
    		<?php 
    /*-------------Inclure le footer -----------------*/
    include("footer.php"); ?>		
    	</body>
    </html>
    EDIT: Voilà le rendu visuel :
    Nom : page courte.png
Affichages : 2346
Taille : 85,1 Ko

  17. #17
    Membre habitué
    Profil pro
    Étudiant
    Inscrit en
    Mars 2013
    Messages
    388
    Détails du profil
    Informations personnelles :
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mars 2013
    Messages : 388
    Points : 172
    Points
    172
    Par défaut
    Si je mets position:absolute; => le problème est résolu pour les pages courtes, mais pas pour les pages longues
    Si je mets position:relative; => le problème est résolu pour les pages longues mais pas pour les pages courtes


  18. #18
    Membre habitué
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2015
    Messages
    98
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Seine et Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Juin 2015
    Messages : 98
    Points : 184
    Points
    184
    Par défaut
    Le bonne solution me semble être la position asolute.
    Maintenant pour que ca marche aussi pour les pages longues, il faut trouver pourquoi le height du body ne s'étend pas au delà de 100%.
    Il faudrait que je charge ta page sur mon pc.
    Ce que tu as posté n'est pas le code source mais ton fichier php.
    Affiche ta page avec la version absolute puis click droit afficher la source ou code souce.
    Puis tu postes aussi ton ou tes fichiers css

  19. #19
    Membre habitué
    Profil pro
    Étudiant
    Inscrit en
    Mars 2013
    Messages
    388
    Détails du profil
    Informations personnelles :
    Localisation : France, Seine Saint Denis (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Mars 2013
    Messages : 388
    Points : 172
    Points
    172
    Par défaut
    Ah d'accord je vois.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    <!DOCTYPE html> 
    <html>
    	<head>
    		<meta charset="utf-8">		
     
     
    		<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
     
    		<link rel="stylesheet" href="css/demo.css">
    		<link rel="stylesheet" href="css/font-awesome.css">
    		<link rel="stylesheet" href="css/sky-mega-menu.css">
     
    		<link rel="stylesheet" href="css/footer.css">
     
    	<!--Image du title de l'URL-->
    		<link rel="icon" 
    		  type="image/png" 
    		  href="img/croix_rouge1.jpg">	
     
    		<!--[if lt IE 9]>
    			<link rel="stylesheet" href="css/sky-forms-ie8.css">
    		<![endif]-->
     
    		<!--[if lt IE 9]>
    			<link rel="stylesheet" href="css/sky-mega-menu-ie8.css">
    			<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
    		<![endif]-->
     
    		<!--[if lt IE 10]>
    			<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    			<script src="js/jquery.placeholder.min.js"></script>
    		<![endif]-->
    	</head>
    	<body class="bg-red">
    		<div class="body">		
    			<!-- mega menu -->
    			<ul class="sky-mega-menu sky-mega-menu-fixed sky-mega-menu-response-to-icons sky-mega-menu-anim-scale">
    				<!-- home -->
    				<li >
    					<a href="accueil_RLF.php" title="Accueil"><i class="fa fa-single fa-home"></i></a>
    				</li>
    				<!--/ home -->
     
    				<!-- about -->
    				<li aria-haspopup="true" >
    					<a href="#" title="Contacts"><i class="fa fa-star" ></i>Contacts</a>
    					<div class="grid-container3">
    						<ul>
    							<li><a href="ajouter_structure.php"><i class="fa fa-globe"></i>Ajouter</a></li>
    							<li><a href="modif_supp_structure.php"><i class="fa fa-globe"></i>Editer</a></li>
    							<li><a href="ajouter_categorisation.php"><i class="fa fa-globe"></i>Catégoriser</a></li>
    							<li><a href="affichage_structure.php"><i class="fa fa-globe"></i>Afficher</a></li>
    							<li aria-haspopup="true">
    								<a href="#"><i class="fa fa-group"></i>Interlocuteurs</a>
    								<div class="grid-container3">
    									<ul>
    										<li aria-haspopup="true">
    											<a href="ajout_personne.php"><i class="fa fa-male"></i>Ajouter</a>
    										</li>
    										<li aria-haspopup="true">
    											<a href="modif_supp_personne.php"><i class="fa fa-female"></i>Editer</a>
    										</li>
    										<li aria-haspopup="true">
    											<a href="affichage_personne.php"><i class="fa fa-male"></i>Afficher</a>
    										</li>
    									</ul>
    								</div>
    							</li>
    						</ul>
    					</div>
    				</li>
    				<!--/ about -->
     
    				<!-- news -->
    				<li aria-haspopup="true" title="Recherche">
    					<a href="recherche.php"><i class="fa fa-bullhorn"></i>Recherche</a>
    				</li>
    				<!--/ news -->
     
    				<!-- portfolio -->
    				<li aria-haspopup="true" >
    					<a href="#"title="Tables"><i class="fa fa-briefcase"></i>Tables</a>
    					<div class="grid-container3">
    						<ul>
    							<li><a href="thematique.php"><i class="fa fa-lemon-o"></i>Thématique</a></li>
    							<li><a href="typologie.php"><i class="fa fa-globe"></i>Typologie</a></li>
     
    						</ul>
    					</div>
    				</li class="right">
    				<!--/ portfolio -->
     
    				<!-- register form -->
    				<li aria-haspopup="true" class="right">
    					<a href="#_"><i class="fa fa-lock"></i>Contact</a>
    					<div class="grid-container5">
    						<form action="#">
    							<fieldset>								
    								<section>
    									<label class="input">
    										<i class="fa fa-append fa-envelope-o"></i>
    										<input type="email" placeholder="Adresse Email">
    									</label>
    								</section>
     
    								<div class="row">
    									<section class="col col-6">
    										<label class="input">
    											<i class="fa fa-append fa-user"></i>
    											<input type="text" placeholder="Nom">
    										</label>
    									</section>
    									<section class="col col-6">
    										<label class="input">
    											<i class="fa fa-append fa-user"></i>
    											<input type="text" placeholder="Prénom">
    										</label>
    									</section>
    								</div>
     
    								<section>
    									<label class="textarea">
    										<i class="fa fa-append fa-comment"></i>
    										<textarea rows="4" placeholder="Message"></textarea>
    									</label>
    								</section>
     
    								<button type="submit" class="button">Envoyer</button>
    							</fieldset>	
     
    						</form>
    					</div>
    				</li>
    				<!--/ register form -->
     
    				<!-- login form 
    				<li aria-haspopup="true" class="right">
    					<a href="#_"><i class="fa fa-sign-in"></i>Login</a>
    					<div class="grid-container4">
    						<form action="#">
    							<fieldset>								
    								<section>
    									<label class="input">
    										<i class="fa fa-append fa-user"></i>
    										<input type="text" placeholder="Login or E-mail">
    									</label>
    								</section>
     
    								<section>
    									<label class="input">
    										<i class="fa fa-append fa-lock"></i>
    										<input type="password" placeholder="Password">
    									</label>
    								</section>
     
    								<button type="submit" class="button">Login</button>
    							</fieldset>						
    						</form>
    					</div>
    				</li>
    				 login form -->
    			</ul>
    			<!--/ mega menu -->
     
     
    <!--		
    		<form class="sky-form">
    			<div class="accueil">
    				<header>Accueil Croix-Rouge Française - Espace RLF</header>
     
     
    				<fieldset>
    				<br />	<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
    				</fieldset>	
    			</div>
     
    			<footer></footer>
     
    			</form>
    			-->	
     
     
    		</div>	
     
    	</body>
    </html><!DOCTYPE html> 
    <html>
    	<head>
    		<title>Capitalisation RLF : thématique </title>
    		<meta charset="utf-8">
    		<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
     
    		<link rel="stylesheet" href="css/demo.css">
    		<link type='text/css' href='css/basic.css' rel='stylesheet' media='screen' />
    		<link rel="stylesheet" href="css/font-awesome.css">
    		<link rel="stylesheet" href="css/sky-forms.css">
    		<link rel="stylesheet" href="css/sky-forms-red.css">
    		<!--[if lt IE 9]>
    			<link rel="stylesheet" href="css/sky-forms-ie8.css">
    		<![endif]-->
     
    		<script src="js/jquery.min.js"></script>
    		<script src="js/jquery.validate.min.js"></script>
    		<script src="js/jquery.maskedinput.min.js"></script>
    		<script src="js/jquery.modal.js"></script>
    		<script type="text/javascript" src="https://pin.authentification.croix-rouge.fr/forms/js/jquery-ui.min.js"></script>
    		<script type="text/javascript" src="js/jquery.ui.datepicker-fr.js"></script>
    		<script type="text/javascript" src="http://api.geonames.org/export/geonamesData.js?username=croixrougecrf"></script>
    		<script type="text/javascript" src="js/jsr_class.js"></script>
    		<!--[if lt IE 10]>
    			<script src="js/jquery.placeholder.min.js"></script>
    		<![endif]-->		
    		<!--[if lt IE 9]>
    			<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
    			<script src="js/sky-forms-ie8.js"></script>
    		<![endif]-->
     
    	</head>
    	<body class="bg-red" >
    	<!--Formulaire------------------------------------------->
    		<div class="body">
    			<form action="" method="post" id="sky-form" class="sky-form">
    				<header>Saisie d'une thématique</header> 
     
     
     
     
    				<fieldset>	
     
    						<!--Nom de la structure-->
    							<section>
    								<label class="input">
    									<i class="icon-append fa fa-briefcase"></i>
    									<input type="text" name="thematique" id="thematique" placeholder="Nom de la thématique">
    								</label>
    								<i></i>
    							</section>
     
    			<fieldset>
    					<button type="submit" class="button" name="valider">Valider</button>
    			</fieldset>
     
    			</form>					
    		</div>
     
    <!DOCTYPE html> 
    <html>
    	<head>
     
     
    		<link rel="stylesheet" href="css/footer.css">
     
    	</head>
    	<body >
     
    <footer> <div id="footer">© 2015 Croix-Rouge Française </div></footer>		
    	</body>
    </html>
     
     
     
    	</body>
    </html>
    codes CSS :
    "css/sky-mega-menu.css"
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    @import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400,700);
     
    /**/
    /* defaults */
    /**/
    .sky-mega-menu,
    .sky-mega-menu * {
    	margin: 0;
    	padding: 0;
    	outline: none;
    	border: 0;
    	background: none;
    }
    .sky-mega-menu {
    	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }
     
     
    /**/
    /* level 1 */
    /**/
    .sky-mega-menu {
    	position: relative;
    	z-index: 999;
    	background: rgba(255,255,255,0.9);
    	box-shadow: 0 0 20px rgba(0,0,0,.3);
    	font-size: 0;
    	line-height: 0;
    	text-align: right;
    }
    .sky-mega-menu:after {
    	content: '';
    	display: table;
    	clear: both;
    }
    .sky-mega-menu li {
    	position: relative;
    	display: inline-block;
    	float: left;
    	padding: 5px;
    	border-style: solid;
    	border-color: rgba(0,0,0,.1);
    	border-right-width: 1px;
    	font-size: 13px;
    	line-height: 45px;
    	text-align: left;
    	white-space: nowrap;
    }
    .sky-mega-menu li a {
    	display: block;
    	padding: 0 20px;
    	text-decoration: none;
    	color: #666;
    	transition: background 0.4s, color 0.4s;
    	-o-transition: background 0.4s, color 0.4s;
    	-ms-transition: background 0.4s, color 0.4s;
    	-moz-transition: background 0.4s, color 0.4s;
    	-webkit-transition: background 0.4s, color 0.4s;
    }
    .sky-mega-menu li > div {
    	position: absolute;
    	z-index: 1000;
    	top: 100%;
    	left: -9999px;
    	margin-top: 8px;
    	background: rgba(255,255,255,0.9);
    	box-shadow: 0 0 8px rgba(0,0,0,.3);
    	opacity: 0;
    	-o-transform-origin: 0% 0%;
    	-ms-transform-origin: 0% 0%;
    	-moz-transform-origin: 0% 0%;
    	-webkit-transform-origin: 0% 0%;
    	-o-transition: -o-transform 0.4s, opacity 0.4s;
    	-ms-transition: -ms-transform 0.4s, opacity 0.4s;
    	-moz-transition: -moz-transform 0.4s, opacity 0.4s;
    	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    }
    .sky-mega-menu li > div:after {
    	content: '';
    	position: absolute;
    	bottom: 100%;
    	left: 0;
    	width: 100%;
    	height: 8px;
    	background: transparent;	
    }
    .sky-mega-menu li > div:before {
    	content: '';
    	position: absolute;
    	bottom: 100%;
    	left: 24px;
    	border-right: 5px solid transparent;
    	border-bottom: 5px solid rgba(255,255,255,0.9);
    	border-left: 5px solid transparent;
    }
    .sky-mega-menu li:hover > a,
    .sky-mega-menu li.current > a {
    	background: #cc3d3d;
    	color: #fff;
    }
    .sky-mega-menu li:hover > div {
    	left: 0;
    	opacity: 1;
    	-webkit-transform: translate(0, 0);
    }
    .sky-mega-menu .right {
    	float: none;
    	border-right-width: 0;
    	border-left-width: 1px;
    }
    .sky-mega-menu .right > div {
    	-o-transform-origin-x: 100%;
    	-ms-transform-origin-x: 100%;
    	-moz-transform-origin-x: 100%;
    	-webkit-transform-origin-x: 100%;
    }
    .sky-mega-menu .right:hover > div {
    	right: 0;
    	left: auto;
    }
    .sky-mega-menu .right:hover > div:before {
    	right: 24px;
    	left: auto;
    }
    .sky-mega-menu .switcher {
    	display: none;
    }
     
     
    /**/
    /* level 2+ */
    /**/
    .sky-mega-menu li li {
    	display: block;
    	float: none;
    	border-width: 0;
    	border-top-width: 1px;
    	line-height: 21px;
    	white-space: normal;
    }
    .sky-mega-menu li li:first-child {
    	border-top: 0;
    }
    .sky-mega-menu li li a {
    	padding-top: 12px;
    	padding-bottom: 12px;
    }
    .sky-mega-menu li li > div {
    	top: 0;
    	margin: 0 0 0 8px;
    }
    .sky-mega-menu li li > div:after {
    	top: 0;
    	right: 100%;
    	bottom: auto;
    	left: auto;
    	width: 8px;
    	height: 100%;
    }
    .sky-mega-menu li li > div:before {
    	top: 22px;
    	right: 100%;
    	bottom: auto;
    	left: auto;
    	border-top: 5px solid transparent;
    	border-right: 5px solid rgba(255,255,255,0.9);
    	border-bottom: 5px solid transparent;
    }
    .sky-mega-menu li li:hover > div {
    	left: 100%;
    }
    .sky-mega-menu .right li > div {
    	margin: 0 8px 0 0;
    	-o-transform-origin-x: 100%;
    	-ms-transform-origin-x: 100%;
    	-moz-transform-origin-x: 100%;
    	-webkit-transform-origin-x: 100%;
    }
    .sky-mega-menu .right li > div:after {
    	right: auto;
    	left: 100%;
    }
    .sky-mega-menu .right li > div:before {
    	right: auto;
    	left: 100%;
    	border-right: none;
    	border-left: 5px solid rgba(255,255,255,0.9);
    }
    .sky-mega-menu .right li:hover > div {
    	right: 100%;
    	left: auto;
    }
     
     
    /**/
    /* positions */
    /**/
    .sky-mega-menu-fixed {
    	position: fixed;
    	top: 0;
    	left: 0;
    	width: 100%;
    }
    .sky-mega-menu-pos-bottom li > div {
    	top: auto;
    	bottom: 100%;
    	margin: 0 0 8px;
    	-o-transform-origin-y: 100%;
    	-ms-transform-origin-y: 100%;
    	-moz-transform-origin-y: 100%;
    	-webkit-transform-origin-y: 100%;
    }
    .sky-mega-menu-pos-bottom li > div:after {
    	top: 100%;
    	bottom: auto;
    }
    .sky-mega-menu-pos-bottom li > div:before {
    	top: 100%;
    	bottom: auto;
    	border-top: 5px solid rgba(255,255,255,0.9);
    	border-right: 5px solid transparent;
    	border-bottom: none;
    	border-left: 5px solid transparent;
    }
    .sky-mega-menu-pos-bottom li li > div {
    	top: auto;	
    	bottom: 0;
    }
    .sky-mega-menu-pos-bottom li li > div:before {
    	top: auto;
    	bottom: 22px;
    }
    .sky-mega-menu-pos-bottom.sky-mega-menu-fixed {
    	top: auto;
    	bottom: 0;
    }
     
    .sky-mega-menu-pos-left li,
    .sky-mega-menu-pos-right li {
    	display: block;
    	float: none;
    	border-width: 0;
    	border-top-width: 1px;
    }
    .sky-mega-menu-pos-left li:first-child,
    .sky-mega-menu-pos-right li:first-child {
    	border-top: 0;
    }
    .sky-mega-menu-pos-left li > div,
    .sky-mega-menu-pos-right li > div {
    	top: 0;	
    }
    .sky-mega-menu-pos-left li > div {
    	margin: 0 0 0 8px;
    }
    .sky-mega-menu-pos-right li > div {
    	margin: 0 8px 0 0;
    	-o-transform-origin-x: 100%;
    	-ms-transform-origin-x: 100%;
    	-moz-transform-origin-x: 100%;
    	-webkit-transform-origin-x: 100%;
    }
    .sky-mega-menu-pos-left li > div:after,
    .sky-mega-menu-pos-right li > div:after {
    	top: 0;
    	bottom: auto;
    	width: 8px;
    	height: 100%;
    }
    .sky-mega-menu-pos-left li > div:after {
    	right: 100%;
    	left: auto;
    }
    .sky-mega-menu-pos-right li > div:after {
    	right: auto;
    	left: 100%;
    }
    .sky-mega-menu-pos-left li > div:before,
    .sky-mega-menu-pos-right li > div:before {
    	top: 22px;
    	bottom: auto;
    	border-top: 5px solid transparent;
    	border-bottom: 5px solid transparent;
    }
    .sky-mega-menu-pos-left li > div:before {
    	right: 100%;
    	left: auto;
    	border-right: 5px solid rgba(255,255,255,0.9);
    }
    .sky-mega-menu-pos-right li > div:before {
    	right: auto;
    	left: 100%;
    	border-left: 5px solid rgba(255,255,255,0.9);
    }
    .sky-mega-menu-pos-left li:hover > div {
    	left: 100%;
    }
    .sky-mega-menu-pos-right li:hover > div {
    	right: 100%;
    	left: auto;
    }
    .sky-mega-menu-pos-left .bottom > div,
    .sky-mega-menu-pos-right .bottom > div {
    	top: auto;
    	bottom: 0;
    	-o-transform-origin-y: 100%;
    	-ms-transform-origin-y: 100%;
    	-moz-transform-origin-y: 100%;
    	-webkit-transform-origin-y: 100%;
    }
    .sky-mega-menu-pos-left .bottom > div:before,
    .sky-mega-menu-pos-right .bottom > div:before {
    	top: auto;
    	bottom: 22px;
    }
    .sky-mega-menu-pos-right li li > div {
    	margin: 0 8px 0 0;
    	-o-transform-origin-x: 100%;
    	-ms-transform-origin-x: 100%;
    	-moz-transform-origin-x: 100%;
    	-webkit-transform-origin-x: 100%;
    }
    .sky-mega-menu-pos-right li li > div:after {
    	right: auto;
    	left: 100%;
    }
    .sky-mega-menu-pos-right li li > div:before {
    	right: auto;
    	left: 100%;
    	border-right: none;
    	border-left: 5px solid rgba(255,255,255,0.9);
    }
    .sky-mega-menu-pos-right li li:hover > div {
    	right: 100%;
    	left: auto;
    }
    .sky-mega-menu-pos-left.sky-mega-menu-fixed {
    	top: 0;
    	right: auto;
    	bottom: 0;
    	left: 0;
    	width: auto;
    }
    .sky-mega-menu-pos-right.sky-mega-menu-fixed {
    	top: 0;
    	right: 0;
    	bottom: 0;
    	left: auto;
    	width: auto;
    }
     
     
    /**/
    /* animations */
    /**/
    .sky-mega-menu-anim-slide li > div {
    	-o-transform: translate(0, 60px);
    	-ms-transform: translate(0, 60px);
    	-moz-transform: translate(0, 60px);
    	-webkit-transform: translate(0, 60px);	
    }
    .sky-mega-menu-pos-bottom.sky-mega-menu-anim-slide li > div {
    	-o-transform: translate(0, -60px);
    	-ms-transform: translate(0, -60px);
    	-moz-transform: translate(0, -60px);
    	-webkit-transform: translate(0, -60px);
    }
    .sky-mega-menu-anim-slide li:hover > div {
    	-o-transform: translate(0, 0);
    	-ms-transform: translate(0, 0);
    	-moz-transform: translate(0, 0);
    	-webkit-transform: translate(0, 0);	
    }
    .sky-mega-menu-anim-scale li > div {
    	-o-transform: scale(0, 0);
    	-ms-transform: scale(0, 0);
    	-moz-transform: scale(0, 0);
    	-webkit-transform: scale(0, 0);
    }
    .sky-mega-menu-anim-scale li:hover > div {
    	-o-transform: scale(1, 1);
    	-ms-transform: scale(1, 1);
    	-moz-transform: scale(1, 1);
    	-webkit-transform: scale(1, 1);
    }
    .sky-mega-menu-anim-flip {
    	perspective: 2000px;
    	-o-perspective: 2000px;
    	-moz-perspective: 2000px;
    	-webkit-perspective: 2000px;
    }
    .sky-mega-menu-anim-flip li > div {
    	transform-style: preserve-3d;
    	-o-transform-style: preserve-3d;
    	-moz-transform-style: preserve-3d;
    	-webkit-transform-style: preserve-3d;
    	transform: rotateX(-75deg);
    	-o-transform: rotateX(-75deg);
    	-moz-transform: rotateX(-75deg);
    	-webkit-transform: rotateX(-75deg);
    }
    .sky-mega-menu-anim-flip li:hover > div {
    	transform: rotateX(0deg);
    	-o-transform: rotateX(0deg);
    	-moz-transform: rotateX(0deg);
    	-webkit-transform: rotateX(0deg);
    }
     
     
    /**/
    /* grid */
    /**/
    .sky-mega-menu .grid-column {
    	float: left;
    	border-color: #d9d9d9;
    	border-left-width: 1px;
    	border-left-style: solid;
    }
    .sky-mega-menu .grid-column:first-child {
    	margin-left: 0;
    	border-left: 0;
    }
    .sky-mega-menu .grid-column2,
    .sky-mega-menu .grid-container2 {
    	width: 155px;
    }
    .sky-mega-menu .grid-column3,
    .sky-mega-menu .grid-container3 {
    	width: 233px;
    }
    .sky-mega-menu .grid-column4,
    .sky-mega-menu .grid-container4 {
    	width: 311px;
    }
    .sky-mega-menu .grid-column5,
    .sky-mega-menu .grid-container5 {
    	width: 389px;
    }
    .sky-mega-menu .grid-column6,
    .sky-mega-menu .grid-container6 {
    	width: 467px;
    }
    .sky-mega-menu .grid-column7,
    .sky-mega-menu .grid-container7 {
    	width: 545px;
    }
    .sky-mega-menu .grid-column8,
    .sky-mega-menu .grid-container8 {
    	width: 623px;
    }
    .sky-mega-menu .grid-column9,
    .sky-mega-menu .grid-container9 {
    	width: 701px;
    }
    .sky-mega-menu .grid-column10,
    .sky-mega-menu .grid-container10 {
    	width: 779px;
    }
    .sky-mega-menu .grid-column11,
    .sky-mega-menu .grid-container11 {
    	width: 857px;
    }
    .sky-mega-menu .grid-column12,
    .sky-mega-menu .grid-container12 {
    	width: 935px;
    }
     
     
    /**/
    /* icons */
    /**/
    .sky-mega-menu li a > .fa {
    	display: block;
    	float: left;
    	width: 16px;
    	margin: 0 10px 0 -4px;
      font-size: 16px;
      line-height: inherit;
      text-align: center;
    }
    .sky-mega-menu li a > .fa-single {
    	float: none;
    	margin: 0;
    }
    .sky-mega-menu li a > .fa-indicator {
    	position: relative;
    	top: -1px;
    	float: none;
    	display: inline-block;
    	vertical-align: middle;
    	width: auto;
    	margin: 0 -10px 0 10px;
    	font-size: 9px;
    	line-height: 1;
    	text-align: right;
    }
    .sky-mega-menu li li a > .fa-indicator {
    	top: 0;
    	float: right;
    	display: block;
    	line-height: inherit;
    }
     
     
    /**/
    /* forms */
    /**/
    .sky-mega-menu form fieldset {
    	display: block;	
    	padding: 25px 30px;
    }
    .sky-mega-menu form fieldset + fieldset {
    	border-top: 1px solid rgba(0,0,0,.1);
    }
    .sky-mega-menu form section {
    	margin-bottom: 20px;
    }
    .sky-mega-menu form .input,
    .sky-mega-menu form .textarea,
    .sky-mega-menu form .radio,
    .sky-mega-menu form .checkbox,
    .sky-mega-menu form .button {
    	position: relative;
    	display: block;
    }
    .sky-mega-menu form .input input,
    .sky-mega-menu form .textarea textarea {
    	display: block;
    	box-sizing: border-box;
    	-moz-box-sizing: border-box;
    	width: 100%;
    	height: 39px;
    	padding: 8px 10px;
    	outline: none;
    	border: 2px solid #e5e5e5;
    	border-radius: 0;
    	background: #fff;
    	font: 13px/19px 'Open Sans', Helvetica, Arial, sans-serif;
    	color: #404040;
    	appearance: normal;
    	-moz-appearance: none;
    	-webkit-appearance: none;
    	transition: border-color 0.3s;
    	-o-transition: border-color 0.3s;
    	-ms-transition: border-color 0.3s;
    	-moz-transition: border-color 0.3s;
    	-webkit-transition: border-color 0.3s;
    }
    .sky-mega-menu form .textarea textarea {
    	height: auto;
    	resize: none;
    }
    .sky-mega-menu form .button {
    	float: right;
    	height: 39px;
    	overflow: hidden;
    	margin-left: 20px;
    	padding: 0 20px;
    	outline: none;
    	border: 0;
    	background-color: #cc3d3d;
    	font: 300 13px/39px 'Open Sans', Helvetica, Arial, sans-serif;
    	text-decoration: none;
    	color: #fff;
    	cursor: pointer;
    	opacity: 0.8;
    	transition: opacity 0.2s;
    	-o-transition: opacity 0.2s;
    	-ms-transition: opacity 0.2s;
    	-moz-transition: opacity 0.2s;
    	-webkit-transition: opacity 0.2s;
    }
    .sky-mega-menu form .fa-append {
    	position: absolute;
    	top: 5px;
    	right: 5px;
    	width: 29px;
    	height: 29px;
    	padding-left: 3px;
    	border-left: 1px solid #e5e5e5;
    	font-size: 15px;
    	line-height: 29px;
    	text-align: center;
    	color: #ccc;
    }
    .sky-mega-menu form .input .fa-append + input,
    .sky-mega-menu form .textarea .fa-append + textarea {
    	padding-right: 46px;
    }
    .sky-mega-menu form .row {
    	margin: 0 -15px;
    }
    .sky-mega-menu form .row:after {
    	content: '';
    	display: table;
    	clear: both;
    }
    .sky-mega-menu form .col {
    	float: left;
    	min-height: 1px;
    	padding-right: 15px;
    	padding-left: 15px;
    	box-sizing: border-box;
    	-moz-box-sizing: border-box;
    }
    .sky-mega-menu form .col-6 {
    	width: 50%;
    }
    .sky-mega-menu form .input:hover input,
    .sky-mega-menu form .textarea:hover textarea,
    .sky-mega-menu form .checkbox:hover i {
    	border-color: #8dc9e5;
    }
    .sky-mega-menu form .button:hover {
    	opacity: 1;
    }
    .sky-mega-menu form .input input:focus,
    .sky-mega-menu form .textarea textarea:focus,
    .sky-mega-menu form .checkbox input:focus + i {
    	border-color: #cc3d3d;
    }
    .sky-mega-menu .search {
    	border-left: 0;
    }
    .sky-mega-menu .search .input {
    	margin: 3px 3px 3px 3px;
    }
    .sky-mega-menu .search .input input {
    	width: 240px;
    	padding-right: 65px;
    }
    .sky-mega-menu .search .button {
    	position: absolute;
    	top: 0;
    	right: 0;
    	margin: 0;
    }
     
     
    /**/
    /* pad */
    /**/
    @media screen and (max-width: 1000px) {
    	.sky-mega-menu li a {
    		padding: 0 15px;
    	}
    	.sky-mega-menu li a > .fa-indicator {
    		margin-right: -5px;
    	}
     
    	.sky-mega-menu .grid-column2,
    	.sky-mega-menu .grid-container2 {
    		width: 117px;
    	}
    	.sky-mega-menu .grid-column3,
    	.sky-mega-menu .grid-container3 {
    		width: 176px;
    	}
    	.sky-mega-menu .grid-column4,
    	.sky-mega-menu .grid-container4 {
    		width: 235px;
    	}
    	.sky-mega-menu .grid-column5,
    	.sky-mega-menu .grid-container5 {
    		width: 294px;
    	}
    	.sky-mega-menu .grid-column6,
    	.sky-mega-menu .grid-container6 {
    		width: 353px;
    	}
    	.sky-mega-menu .grid-column7,
    	.sky-mega-menu .grid-container7 {
    		width: 412px;
    	}
    	.sky-mega-menu .grid-column8,
    	.sky-mega-menu .grid-container8 {
    		width: 471px;
    	}
    	.sky-mega-menu .grid-column9,
    	.sky-mega-menu .grid-container9 {
    		width: 530px;
    	}
    	.sky-mega-menu .grid-column10,
    	.sky-mega-menu .grid-container10 {
    		width: 589px;
    	}
    	.sky-mega-menu .grid-column11,
    	.sky-mega-menu .grid-container11 {
    		width: 648px;
    	}
    	.sky-mega-menu .grid-column12,
    	.sky-mega-menu .grid-container12 {
    		width: 707px;
    	}
    }
     
     
    /**/
    /* phone */
    /**/
    @media screen and (max-width: 767px) {
    	body {
        -webkit-text-size-adjust: none;
      }
    	.sky-mega-menu .grid-column {
    		float: none;
    		width: auto;
    		margin: 0;
    		border: 0;
    		border-top: 1px solid #d9d9d9;
    	}
    	.sky-mega-menu .grid-column:first-child {
    		border-top: 0;
    	}
      .sky-mega-menu form fieldset {
      	display: block;
      	padding: 15px 20px;
      }
    	.sky-mega-menu form section {
    		margin-bottom: 10px;
    	}
      .sky-mega-menu form .row {
      	margin: 0 -10px;
      }
      .sky-mega-menu form .col {
    		padding-right: 10px;
    		padding-left: 10px;
    	}
     
     
    	.sky-mega-menu-response-to-stack > li {
    		display: block;
    		float: none;
    		border: 0;
    		border-top: 1px solid #d9d9d9;
    	}
    	.sky-mega-menu-response-to-stack > li:first-child {
    		border-top: 0;
    	}
    	.sky-mega-menu-response-to-switcher > li {
    		display: none;
    		float: none;
    		border: 0;
    	}
    	.sky-mega-menu-response-to-switcher > .switcher {
    		display: block;
    	}
    	.sky-mega-menu-response-to-switcher:hover > li {
    		display: block;
    		border-top: 1px solid #d9d9d9;		
    	}
    	.sky-mega-menu-response-to-switcher:hover > .switcher {
    		display: none;	
    	}
    	.sky-mega-menu-response-to-stack li > div,
    	.sky-mega-menu-response-to-stack li > [class^="grid-container"],
    	.sky-mega-menu-response-to-switcher li > div,
    	.sky-mega-menu-response-to-switcher li > [class^="grid-container"] {
    		top: 100%;
    		bottom: auto;
    		width: auto;
    		margin: 8px 0 0 0;		
    		-o-transform-origin: 0 0;
    		-ms-transform-origin: 0 0;
    		-moz-transform-origin: 0 0;
    		-webkit-transform-origin: 0 0;
    	}
    	.sky-mega-menu-response-to-stack li > div:after,
    	.sky-mega-menu-response-to-switcher li > div:after {
    		top: auto;
    		right: auto;
    		bottom: 100%;
    		left: 0;
    		width: 100%;
    		height: 8px;
    	}
    	.sky-mega-menu-response-to-stack li > div:before,
    	.sky-mega-menu-response-to-switcher li > div:before {
    		display: none;
    	}
    	.sky-mega-menu-response-to-stack li a > .fa,
    	.sky-mega-menu-response-to-switcher li a > .fa {
    		margin: 0 15px 0 0;
    	}
    	.sky-mega-menu-response-to-stack li:hover > div,
    	.sky-mega-menu-response-to-stack li:hover > [class^="grid-container"],
    	.sky-mega-menu-response-to-switcher li:hover > div,
    	.sky-mega-menu-response-to-switcher li:hover > [class^="grid-container"] {
    		right: 0;
    		left: 51px;
    	}
    	.sky-mega-menu-response-to-stack li li > div,
    	.sky-mega-menu-response-to-switcher li li > div {
    		top: 100%;
    		width: auto;
    		margin: 8px 0 0 0;
    	}
    	.sky-mega-menu-response-to-stack li li > div:after,
    	.sky-mega-menu-response-to-switcher li li > div:after {
    		top: auto;
    		right: auto;
    		bottom: 100%;
    		left: 0;
    		width: 100%;
    		height: 8px;
    	}
    	.sky-mega-menu-response-to-stack li li:hover > div,
    	.sky-mega-menu-response-to-switcher li li:hover > div {
    		right: 0;
    		left: 51px;
    	}
    	.sky-mega-menu-response-to-stack .search .input input,
    	.sky-mega-menu-response-to-switcher .search .input input {
    		width: 100%;
    	}	
     
      .sky-mega-menu-response-to-icons li {
      	position: static;
      	font-size: 0;
    	}
    	.sky-mega-menu-response-to-icons li a {
    		padding: 0 10px;
    	}
    	.sky-mega-menu-response-to-icons li > div,
    	.sky-mega-menu-response-to-icons li > [class^="grid-container"] {
    		width: 100%;
    	}
    	.sky-mega-menu-response-to-icons li > div:before {
    		display: none;
    	}
    	.sky-mega-menu-response-to-icons li a > .fa {
    		margin: 0;
    	}	
    	.sky-mega-menu-response-to-icons li a > .fa-indicator {
    		position: static;
    		display: block;
    		float: right;
    		margin-left: 10px;
    		line-height: 45px;
    	}
    	.sky-mega-menu-response-to-icons li li {
    		position: relative;
    		font-size: 13px;
    	}
    	.sky-mega-menu-response-to-icons li li > div,
    	.sky-mega-menu-response-to-icons .right li > div {
    		top: 100%;
    		margin: 8px 0 0 0;
    	}
    	.sky-mega-menu-response-to-icons li li > div:after,
    	.sky-mega-menu-response-to-icons .right li > div:after {
    		top: auto;
    		right: auto;
    		bottom: 100%;
    		left: 0;
    		width: 100%;
    		height: 8px;
    	}
    	.sky-mega-menu-response-to-icons li li:hover > div,
    	.sky-mega-menu-response-to-icons .right li:hover > div {
    		right: 0;
    		left: 41px;
    		width: auto;
    	}
    	.sky-mega-menu-response-to-icons li li a > .fa {
    		margin-right: 10px;
    	}
    	.sky-mega-menu-response-to-icons li li a > .fa-indicator {
    		margin-right: 0px;
    	}
    	.sky-mega-menu-response-to-icons.sky-mega-menu-anim-flip li li > div {
    		top: 100%;
    		margin: 8px 0 0 0;
    		transform: rotateX(0deg);
    		-moz-transform: rotateX(0deg);
    		-webkit-transform: rotateX(0deg);
    	}
    	.sky-mega-menu-pos-bottom.sky-mega-menu-response-to-icons li li > div {
    		top: auto;
    		bottom: 100%;
    		margin: 0 0 8px 0;
    	}	
    	.sky-mega-menu-pos-bottom.sky-mega-menu-response-to-icons li li > div:after {
    		top: 100%;
    		bottom: auto;
    	}
    }
    "css/font-awesome.css"
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
    901
    902
    903
    904
    905
    906
    907
    908
    909
    910
    911
    912
    913
    914
    915
    916
    917
    918
    919
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    933
    934
    935
    936
    937
    938
    939
    940
    941
    942
    943
    944
    945
    946
    947
    948
    949
    950
    951
    952
    953
    954
    955
    956
    957
    958
    959
    960
    961
    962
    963
    964
    965
    966
    967
    968
    969
    970
    971
    972
    973
    974
    975
    976
    977
    978
    979
    980
    981
    982
    983
    984
    985
    986
    987
    988
    989
    990
    991
    992
    993
    994
    995
    996
    997
    998
    999
    1000
    1001
    1002
    1003
    1004
    1005
    1006
    1007
    1008
    1009
    1010
    1011
    1012
    1013
    1014
    1015
    1016
    1017
    1018
    1019
    1020
    1021
    1022
    1023
    1024
    1025
    1026
    1027
    1028
    1029
    1030
    1031
    1032
    1033
    1034
    1035
    1036
    1037
    1038
    1039
    1040
    1041
    1042
    1043
    1044
    1045
    1046
    1047
    1048
    1049
    1050
    1051
    1052
    1053
    1054
    1055
    1056
    1057
    1058
    1059
    1060
    1061
    1062
    1063
    1064
    1065
    1066
    1067
    1068
    1069
    1070
    1071
    1072
    1073
    1074
    1075
    1076
    1077
    1078
    1079
    1080
    1081
    1082
    1083
    1084
    1085
    1086
    1087
    1088
    1089
    1090
    1091
    1092
    1093
    1094
    1095
    1096
    1097
    1098
    1099
    1100
    1101
    1102
    1103
    1104
    1105
    1106
    1107
    1108
    1109
    1110
    1111
    1112
    1113
    1114
    1115
    1116
    1117
    1118
    1119
    1120
    1121
    1122
    1123
    1124
    1125
    1126
    1127
    1128
    1129
    1130
    1131
    1132
    1133
    1134
    1135
    1136
    1137
    1138
    1139
    1140
    1141
    1142
    1143
    1144
    1145
    1146
    1147
    1148
    1149
    1150
    1151
    1152
    1153
    1154
    1155
    1156
    1157
    1158
    1159
    1160
    1161
    1162
    1163
    1164
    1165
    1166
    1167
    1168
    1169
    1170
    1171
    1172
    1173
    1174
    1175
    1176
    1177
    1178
    1179
    1180
    1181
    1182
    1183
    1184
    1185
    1186
    1187
    1188
    1189
    1190
    1191
    1192
    1193
    1194
    1195
    1196
    1197
    1198
    1199
    1200
    1201
    1202
    1203
    1204
    1205
    1206
    1207
    1208
    1209
    1210
    1211
    1212
    1213
    1214
    1215
    1216
    1217
    1218
    1219
    1220
    1221
    1222
    1223
    1224
    1225
    1226
    1227
    1228
    1229
    1230
    1231
    1232
    1233
    1234
    1235
    1236
    1237
    1238
    1239
    1240
    1241
    1242
    1243
    1244
    1245
    1246
    1247
    1248
    1249
    1250
    1251
    1252
    1253
    1254
    1255
    1256
    1257
    1258
    1259
    1260
    1261
    1262
    1263
    1264
    1265
    1266
    1267
    1268
    1269
    1270
    1271
    1272
    1273
    1274
    1275
    1276
    1277
    1278
    1279
    1280
    1281
    1282
    1283
    1284
    1285
    1286
    1287
    1288
    1289
    1290
    1291
    1292
    1293
    1294
    1295
    1296
    1297
    1298
    1299
    1300
    1301
    1302
    1303
    1304
    1305
    1306
    1307
    1308
    1309
    1310
    1311
    1312
    1313
    1314
    1315
    1316
    1317
    1318
    1319
    1320
    1321
    1322
    1323
    1324
    1325
    1326
    1327
    1328
    1329
    1330
    1331
    1332
    1333
    1334
    1335
    1336
    1337
    1338
    /*!
     *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
     *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
     */
    /* FONT PATH
     * -------------------------- */
    @font-face {
      font-family: 'FontAwesome';
      src: url('../icons/fontawesome-webfont.eot?v=4.0.3');
      src: url('../icons/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'), url('../icons/fontawesome-webfont.woff?v=4.0.3') format('woff'), url('../icons/fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('../icons/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
      font-weight: normal;
      font-style: normal;
    }
    .fa {
      display: inline-block;
      font-family: FontAwesome;
      font-style: normal;
      font-weight: normal;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    /* makes the font 33% larger relative to the icon container */
    .fa-lg {
      font-size: 1.3333333333333333em;
      line-height: 0.75em;
      vertical-align: -15%;
    }
    .fa-2x {
      font-size: 2em;
    }
    .fa-3x {
      font-size: 3em;
    }
    .fa-4x {
      font-size: 4em;
    }
    .fa-5x {
      font-size: 5em;
    }
    .fa-fw {
      width: 1.2857142857142858em;
      text-align: center;
    }
    .fa-ul {
      padding-left: 0;
      margin-left: 2.142857142857143em;
      list-style-type: none;
    }
    .fa-ul > li {
      position: relative;
    }
    .fa-li {
      position: absolute;
      left: -2.142857142857143em;
      width: 2.142857142857143em;
      top: 0.14285714285714285em;
      text-align: center;
    }
    .fa-li.fa-lg {
      left: -1.8571428571428572em;
    }
    .fa-border {
      padding: .2em .25em .15em;
      border: solid 0.08em #eeeeee;
      border-radius: .1em;
    }
    .pull-right {
      float: right;
    }
    .pull-left {
      float: left;
    }
    .fa.pull-left {
      margin-right: .3em;
    }
    .fa.pull-right {
      margin-left: .3em;
    }
    .fa-spin {
      -webkit-animation: spin 2s infinite linear;
      -moz-animation: spin 2s infinite linear;
      -o-animation: spin 2s infinite linear;
      animation: spin 2s infinite linear;
    }
    @-moz-keyframes spin {
      0% {
        -moz-transform: rotate(0deg);
      }
      100% {
        -moz-transform: rotate(359deg);
      }
    }
    @-webkit-keyframes spin {
      0% {
        -webkit-transform: rotate(0deg);
      }
      100% {
        -webkit-transform: rotate(359deg);
      }
    }
    @-o-keyframes spin {
      0% {
        -o-transform: rotate(0deg);
      }
      100% {
        -o-transform: rotate(359deg);
      }
    }
    @-ms-keyframes spin {
      0% {
        -ms-transform: rotate(0deg);
      }
      100% {
        -ms-transform: rotate(359deg);
      }
    }
    @keyframes spin {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(359deg);
      }
    }
    .fa-rotate-90 {
      filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
      -webkit-transform: rotate(90deg);
      -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      -o-transform: rotate(90deg);
      transform: rotate(90deg);
    }
    .fa-rotate-180 {
      filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg);
    }
    .fa-rotate-270 {
      filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
      -webkit-transform: rotate(270deg);
      -moz-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
      -o-transform: rotate(270deg);
      transform: rotate(270deg);
    }
    .fa-flip-horizontal {
      filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
      -webkit-transform: scale(-1, 1);
      -moz-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
      -o-transform: scale(-1, 1);
      transform: scale(-1, 1);
    }
    .fa-flip-vertical {
      filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
      -webkit-transform: scale(1, -1);
      -moz-transform: scale(1, -1);
      -ms-transform: scale(1, -1);
      -o-transform: scale(1, -1);
      transform: scale(1, -1);
    }
    .fa-stack {
      position: relative;
      display: inline-block;
      width: 2em;
      height: 2em;
      line-height: 2em;
      vertical-align: middle;
    }
    .fa-stack-1x,
    .fa-stack-2x {
      position: absolute;
      left: 0;
      width: 100%;
      text-align: center;
    }
    .fa-stack-1x {
      line-height: inherit;
    }
    .fa-stack-2x {
      font-size: 2em;
    }
    .fa-inverse {
      color: #ffffff;
    }
    /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
       readers do not read off random characters that represent icons */
    .fa-glass:before {
      content: "\f000";
    }
    .fa-music:before {
      content: "\f001";
    }
    .fa-search:before {
      content: "\f002";
    }
    .fa-envelope-o:before {
      content: "\f003";
    }
    .fa-heart:before {
      content: "\f004";
    }
    .fa-star:before {
      content: "\f005";
    }
    .fa-star-o:before {
      content: "\f006";
    }
    .fa-user:before {
      content: "\f007";
    }
    .fa-film:before {
      content: "\f008";
    }
    .fa-th-large:before {
      content: "\f009";
    }
    .fa-th:before {
      content: "\f00a";
    }
    .fa-th-list:before {
      content: "\f00b";
    }
    .fa-check:before {
      content: "\f00c";
    }
    .fa-times:before {
      content: "\f00d";
    }
    .fa-search-plus:before {
      content: "\f00e";
    }
    .fa-search-minus:before {
      content: "\f010";
    }
    .fa-power-off:before {
      content: "\f011";
    }
    .fa-signal:before {
      content: "\f012";
    }
    .fa-gear:before,
    .fa-cog:before {
      content: "\f013";
    }
    .fa-trash-o:before {
      content: "\f014";
    }
    .fa-home:before {
      content: "\f015";
    }
    .fa-file-o:before {
      content: "\f016";
    }
    .fa-clock-o:before {
      content: "\f017";
    }
    .fa-road:before {
      content: "\f018";
    }
    .fa-download:before {
      content: "\f019";
    }
    .fa-arrow-circle-o-down:before {
      content: "\f01a";
    }
    .fa-arrow-circle-o-up:before {
      content: "\f01b";
    }
    .fa-inbox:before {
      content: "\f01c";
    }
    .fa-play-circle-o:before {
      content: "\f01d";
    }
    .fa-rotate-right:before,
    .fa-repeat:before {
      content: "\f01e";
    }
    .fa-refresh:before {
      content: "\f021";
    }
    .fa-list-alt:before {
      content: "\f022";
    }
    .fa-lock:before {
      content: "\f023";
    }
    .fa-flag:before {
      content: "\f024";
    }
    .fa-headphones:before {
      content: "\f025";
    }
    .fa-volume-off:before {
      content: "\f026";
    }
    .fa-volume-down:before {
      content: "\f027";
    }
    .fa-volume-up:before {
      content: "\f028";
    }
    .fa-qrcode:before {
      content: "\f029";
    }
    .fa-barcode:before {
      content: "\f02a";
    }
    .fa-tag:before {
      content: "\f02b";
    }
    .fa-tags:before {
      content: "\f02c";
    }
    .fa-book:before {
      content: "\f02d";
    }
    .fa-bookmark:before {
      content: "\f02e";
    }
    .fa-print:before {
      content: "\f02f";
    }
    .fa-camera:before {
      content: "\f030";
    }
    .fa-font:before {
      content: "\f031";
    }
    .fa-bold:before {
      content: "\f032";
    }
    .fa-italic:before {
      content: "\f033";
    }
    .fa-text-height:before {
      content: "\f034";
    }
    .fa-text-width:before {
      content: "\f035";
    }
    .fa-align-left:before {
      content: "\f036";
    }
    .fa-align-center:before {
      content: "\f037";
    }
    .fa-align-right:before {
      content: "\f038";
    }
    .fa-align-justify:before {
      content: "\f039";
    }
    .fa-list:before {
      content: "\f03a";
    }
    .fa-dedent:before,
    .fa-outdent:before {
      content: "\f03b";
    }
    .fa-indent:before {
      content: "\f03c";
    }
    .fa-video-camera:before {
      content: "\f03d";
    }
    .fa-picture-o:before {
      content: "\f03e";
    }
    .fa-pencil:before {
      content: "\f040";
    }
    .fa-map-marker:before {
      content: "\f041";
    }
    .fa-adjust:before {
      content: "\f042";
    }
    .fa-tint:before {
      content: "\f043";
    }
    .fa-edit:before,
    .fa-pencil-square-o:before {
      content: "\f044";
    }
    .fa-share-square-o:before {
      content: "\f045";
    }
    .fa-check-square-o:before {
      content: "\f046";
    }
    .fa-arrows:before {
      content: "\f047";
    }
    .fa-step-backward:before {
      content: "\f048";
    }
    .fa-fast-backward:before {
      content: "\f049";
    }
    .fa-backward:before {
      content: "\f04a";
    }
    .fa-play:before {
      content: "\f04b";
    }
    .fa-pause:before {
      content: "\f04c";
    }
    .fa-stop:before {
      content: "\f04d";
    }
    .fa-forward:before {
      content: "\f04e";
    }
    .fa-fast-forward:before {
      content: "\f050";
    }
    .fa-step-forward:before {
      content: "\f051";
    }
    .fa-eject:before {
      content: "\f052";
    }
    .fa-chevron-left:before {
      content: "\f053";
    }
    .fa-chevron-right:before {
      content: "\f054";
    }
    .fa-plus-circle:before {
      content: "\f055";
    }
    .fa-minus-circle:before {
      content: "\f056";
    }
    .fa-times-circle:before {
      content: "\f057";
    }
    .fa-check-circle:before {
      content: "\f058";
    }
    .fa-question-circle:before {
      content: "\f059";
    }
    .fa-info-circle:before {
      content: "\f05a";
    }
    .fa-crosshairs:before {
      content: "\f05b";
    }
    .fa-times-circle-o:before {
      content: "\f05c";
    }
    .fa-check-circle-o:before {
      content: "\f05d";
    }
    .fa-ban:before {
      content: "\f05e";
    }
    .fa-arrow-left:before {
      content: "\f060";
    }
    .fa-arrow-right:before {
      content: "\f061";
    }
    .fa-arrow-up:before {
      content: "\f062";
    }
    .fa-arrow-down:before {
      content: "\f063";
    }
    .fa-mail-forward:before,
    .fa-share:before {
      content: "\f064";
    }
    .fa-expand:before {
      content: "\f065";
    }
    .fa-compress:before {
      content: "\f066";
    }
    .fa-plus:before {
      content: "\f067";
    }
    .fa-minus:before {
      content: "\f068";
    }
    .fa-asterisk:before {
      content: "\f069";
    }
    .fa-exclamation-circle:before {
      content: "\f06a";
    }
    .fa-gift:before {
      content: "\f06b";
    }
    .fa-leaf:before {
      content: "\f06c";
    }
    .fa-fire:before {
      content: "\f06d";
    }
    .fa-eye:before {
      content: "\f06e";
    }
    .fa-eye-slash:before {
      content: "\f070";
    }
    .fa-warning:before,
    .fa-exclamation-triangle:before {
      content: "\f071";
    }
    .fa-plane:before {
      content: "\f072";
    }
    .fa-calendar:before {
      content: "\f073";
    }
    .fa-random:before {
      content: "\f074";
    }
    .fa-comment:before {
      content: "\f075";
    }
    .fa-magnet:before {
      content: "\f076";
    }
    .fa-chevron-up:before {
      content: "\f077";
    }
    .fa-chevron-down:before {
      content: "\f078";
    }
    .fa-retweet:before {
      content: "\f079";
    }
    .fa-shopping-cart:before {
      content: "\f07a";
    }
    .fa-folder:before {
      content: "\f07b";
    }
    .fa-folder-open:before {
      content: "\f07c";
    }
    .fa-arrows-v:before {
      content: "\f07d";
    }
    .fa-arrows-h:before {
      content: "\f07e";
    }
    .fa-bar-chart-o:before {
      content: "\f080";
    }
    .fa-twitter-square:before {
      content: "\f081";
    }
    .fa-facebook-square:before {
      content: "\f082";
    }
    .fa-camera-retro:before {
      content: "\f083";
    }
    .fa-key:before {
      content: "\f084";
    }
    .fa-gears:before,
    .fa-cogs:before {
      content: "\f085";
    }
    .fa-comments:before {
      content: "\f086";
    }
    .fa-thumbs-o-up:before {
      content: "\f087";
    }
    .fa-thumbs-o-down:before {
      content: "\f088";
    }
    .fa-star-half:before {
      content: "\f089";
    }
    .fa-heart-o:before {
      content: "\f08a";
    }
    .fa-sign-out:before {
      content: "\f08b";
    }
    .fa-linkedin-square:before {
      content: "\f08c";
    }
    .fa-thumb-tack:before {
      content: "\f08d";
    }
    .fa-external-link:before {
      content: "\f08e";
    }
    .fa-sign-in:before {
      content: "\f090";
    }
    .fa-trophy:before {
      content: "\f091";
    }
    .fa-github-square:before {
      content: "\f092";
    }
    .fa-upload:before {
      content: "\f093";
    }
    .fa-lemon-o:before {
      content: "\f094";
    }
    .fa-phone:before {
      content: "\f095";
    }
    .fa-square-o:before {
      content: "\f096";
    }
    .fa-bookmark-o:before {
      content: "\f097";
    }
    .fa-phone-square:before {
      content: "\f098";
    }
    .fa-twitter:before {
      content: "\f099";
    }
    .fa-facebook:before {
      content: "\f09a";
    }
    .fa-github:before {
      content: "\f09b";
    }
    .fa-unlock:before {
      content: "\f09c";
    }
    .fa-credit-card:before {
      content: "\f09d";
    }
    .fa-rss:before {
      content: "\f09e";
    }
    .fa-hdd-o:before {
      content: "\f0a0";
    }
    .fa-bullhorn:before {
      content: "\f0a1";
    }
    .fa-bell:before {
      content: "\f0f3";
    }
    .fa-certificate:before {
      content: "\f0a3";
    }
    .fa-hand-o-right:before {
      content: "\f0a4";
    }
    .fa-hand-o-left:before {
      content: "\f0a5";
    }
    .fa-hand-o-up:before {
      content: "\f0a6";
    }
    .fa-hand-o-down:before {
      content: "\f0a7";
    }
    .fa-arrow-circle-left:before {
      content: "\f0a8";
    }
    .fa-arrow-circle-right:before {
      content: "\f0a9";
    }
    .fa-arrow-circle-up:before {
      content: "\f0aa";
    }
    .fa-arrow-circle-down:before {
      content: "\f0ab";
    }
    .fa-globe:before {
      content: "\f0ac";
    }
    .fa-wrench:before {
      content: "\f0ad";
    }
    .fa-tasks:before {
      content: "\f0ae";
    }
    .fa-filter:before {
      content: "\f0b0";
    }
    .fa-briefcase:before {
      content: "\f0b1";
    }
    .fa-arrows-alt:before {
      content: "\f0b2";
    }
    .fa-group:before,
    .fa-users:before {
      content: "\f0c0";
    }
    .fa-chain:before,
    .fa-link:before {
      content: "\f0c1";
    }
    .fa-cloud:before {
      content: "\f0c2";
    }
    .fa-flask:before {
      content: "\f0c3";
    }
    .fa-cut:before,
    .fa-scissors:before {
      content: "\f0c4";
    }
    .fa-copy:before,
    .fa-files-o:before {
      content: "\f0c5";
    }
    .fa-paperclip:before {
      content: "\f0c6";
    }
    .fa-save:before,
    .fa-floppy-o:before {
      content: "\f0c7";
    }
    .fa-square:before {
      content: "\f0c8";
    }
    .fa-bars:before {
      content: "\f0c9";
    }
    .fa-list-ul:before {
      content: "\f0ca";
    }
    .fa-list-ol:before {
      content: "\f0cb";
    }
    .fa-strikethrough:before {
      content: "\f0cc";
    }
    .fa-underline:before {
      content: "\f0cd";
    }
    .fa-table:before {
      content: "\f0ce";
    }
    .fa-magic:before {
      content: "\f0d0";
    }
    .fa-truck:before {
      content: "\f0d1";
    }
    .fa-pinterest:before {
      content: "\f0d2";
    }
    .fa-pinterest-square:before {
      content: "\f0d3";
    }
    .fa-google-plus-square:before {
      content: "\f0d4";
    }
    .fa-google-plus:before {
      content: "\f0d5";
    }
    .fa-money:before {
      content: "\f0d6";
    }
    .fa-caret-down:before {
      content: "\f0d7";
    }
    .fa-caret-up:before {
      content: "\f0d8";
    }
    .fa-caret-left:before {
      content: "\f0d9";
    }
    .fa-caret-right:before {
      content: "\f0da";
    }
    .fa-columns:before {
      content: "\f0db";
    }
    .fa-unsorted:before,
    .fa-sort:before {
      content: "\f0dc";
    }
    .fa-sort-down:before,
    .fa-sort-asc:before {
      content: "\f0dd";
    }
    .fa-sort-up:before,
    .fa-sort-desc:before {
      content: "\f0de";
    }
    .fa-envelope:before {
      content: "\f0e0";
    }
    .fa-linkedin:before {
      content: "\f0e1";
    }
    .fa-rotate-left:before,
    .fa-undo:before {
      content: "\f0e2";
    }
    .fa-legal:before,
    .fa-gavel:before {
      content: "\f0e3";
    }
    .fa-dashboard:before,
    .fa-tachometer:before {
      content: "\f0e4";
    }
    .fa-comment-o:before {
      content: "\f0e5";
    }
    .fa-comments-o:before {
      content: "\f0e6";
    }
    .fa-flash:before,
    .fa-bolt:before {
      content: "\f0e7";
    }
    .fa-sitemap:before {
      content: "\f0e8";
    }
    .fa-umbrella:before {
      content: "\f0e9";
    }
    .fa-paste:before,
    .fa-clipboard:before {
      content: "\f0ea";
    }
    .fa-lightbulb-o:before {
      content: "\f0eb";
    }
    .fa-exchange:before {
      content: "\f0ec";
    }
    .fa-cloud-download:before {
      content: "\f0ed";
    }
    .fa-cloud-upload:before {
      content: "\f0ee";
    }
    .fa-user-md:before {
      content: "\f0f0";
    }
    .fa-stethoscope:before {
      content: "\f0f1";
    }
    .fa-suitcase:before {
      content: "\f0f2";
    }
    .fa-bell-o:before {
      content: "\f0a2";
    }
    .fa-coffee:before {
      content: "\f0f4";
    }
    .fa-cutlery:before {
      content: "\f0f5";
    }
    .fa-file-text-o:before {
      content: "\f0f6";
    }
    .fa-building-o:before {
      content: "\f0f7";
    }
    .fa-hospital-o:before {
      content: "\f0f8";
    }
    .fa-ambulance:before {
      content: "\f0f9";
    }
    .fa-medkit:before {
      content: "\f0fa";
    }
    .fa-fighter-jet:before {
      content: "\f0fb";
    }
    .fa-beer:before {
      content: "\f0fc";
    }
    .fa-h-square:before {
      content: "\f0fd";
    }
    .fa-plus-square:before {
      content: "\f0fe";
    }
    .fa-angle-double-left:before {
      content: "\f100";
    }
    .fa-angle-double-right:before {
      content: "\f101";
    }
    .fa-angle-double-up:before {
      content: "\f102";
    }
    .fa-angle-double-down:before {
      content: "\f103";
    }
    .fa-angle-left:before {
      content: "\f104";
    }
    .fa-angle-right:before {
      content: "\f105";
    }
    .fa-angle-up:before {
      content: "\f106";
    }
    .fa-angle-down:before {
      content: "\f107";
    }
    .fa-desktop:before {
      content: "\f108";
    }
    .fa-laptop:before {
      content: "\f109";
    }
    .fa-tablet:before {
      content: "\f10a";
    }
    .fa-mobile-phone:before,
    .fa-mobile:before {
      content: "\f10b";
    }
    .fa-circle-o:before {
      content: "\f10c";
    }
    .fa-quote-left:before {
      content: "\f10d";
    }
    .fa-quote-right:before {
      content: "\f10e";
    }
    .fa-spinner:before {
      content: "\f110";
    }
    .fa-circle:before {
      content: "\f111";
    }
    .fa-mail-reply:before,
    .fa-reply:before {
      content: "\f112";
    }
    .fa-github-alt:before {
      content: "\f113";
    }
    .fa-folder-o:before {
      content: "\f114";
    }
    .fa-folder-open-o:before {
      content: "\f115";
    }
    .fa-smile-o:before {
      content: "\f118";
    }
    .fa-frown-o:before {
      content: "\f119";
    }
    .fa-meh-o:before {
      content: "\f11a";
    }
    .fa-gamepad:before {
      content: "\f11b";
    }
    .fa-keyboard-o:before {
      content: "\f11c";
    }
    .fa-flag-o:before {
      content: "\f11d";
    }
    .fa-flag-checkered:before {
      content: "\f11e";
    }
    .fa-terminal:before {
      content: "\f120";
    }
    .fa-code:before {
      content: "\f121";
    }
    .fa-reply-all:before {
      content: "\f122";
    }
    .fa-mail-reply-all:before {
      content: "\f122";
    }
    .fa-star-half-empty:before,
    .fa-star-half-full:before,
    .fa-star-half-o:before {
      content: "\f123";
    }
    .fa-location-arrow:before {
      content: "\f124";
    }
    .fa-crop:before {
      content: "\f125";
    }
    .fa-code-fork:before {
      content: "\f126";
    }
    .fa-unlink:before,
    .fa-chain-broken:before {
      content: "\f127";
    }
    .fa-question:before {
      content: "\f128";
    }
    .fa-info:before {
      content: "\f129";
    }
    .fa-exclamation:before {
      content: "\f12a";
    }
    .fa-superscript:before {
      content: "\f12b";
    }
    .fa-subscript:before {
      content: "\f12c";
    }
    .fa-eraser:before {
      content: "\f12d";
    }
    .fa-puzzle-piece:before {
      content: "\f12e";
    }
    .fa-microphone:before {
      content: "\f130";
    }
    .fa-microphone-slash:before {
      content: "\f131";
    }
    .fa-shield:before {
      content: "\f132";
    }
    .fa-calendar-o:before {
      content: "\f133";
    }
    .fa-fire-extinguisher:before {
      content: "\f134";
    }
    .fa-rocket:before {
      content: "\f135";
    }
    .fa-maxcdn:before {
      content: "\f136";
    }
    .fa-chevron-circle-left:before {
      content: "\f137";
    }
    .fa-chevron-circle-right:before {
      content: "\f138";
    }
    .fa-chevron-circle-up:before {
      content: "\f139";
    }
    .fa-chevron-circle-down:before {
      content: "\f13a";
    }
    .fa-html5:before {
      content: "\f13b";
    }
    .fa-css3:before {
      content: "\f13c";
    }
    .fa-anchor:before {
      content: "\f13d";
    }
    .fa-unlock-alt:before {
      content: "\f13e";
    }
    .fa-bullseye:before {
      content: "\f140";
    }
    .fa-ellipsis-h:before {
      content: "\f141";
    }
    .fa-ellipsis-v:before {
      content: "\f142";
    }
    .fa-rss-square:before {
      content: "\f143";
    }
    .fa-play-circle:before {
      content: "\f144";
    }
    .fa-ticket:before {
      content: "\f145";
    }
    .fa-minus-square:before {
      content: "\f146";
    }
    .fa-minus-square-o:before {
      content: "\f147";
    }
    .fa-level-up:before {
      content: "\f148";
    }
    .fa-level-down:before {
      content: "\f149";
    }
    .fa-check-square:before {
      content: "\f14a";
    }
    .fa-pencil-square:before {
      content: "\f14b";
    }
    .fa-external-link-square:before {
      content: "\f14c";
    }
    .fa-share-square:before {
      content: "\f14d";
    }
    .fa-compass:before {
      content: "\f14e";
    }
    .fa-toggle-down:before,
    .fa-caret-square-o-down:before {
      content: "\f150";
    }
    .fa-toggle-up:before,
    .fa-caret-square-o-up:before {
      content: "\f151";
    }
    .fa-toggle-right:before,
    .fa-caret-square-o-right:before {
      content: "\f152";
    }
    .fa-euro:before,
    .fa-eur:before {
      content: "\f153";
    }
    .fa-gbp:before {
      content: "\f154";
    }
    .fa-dollar:before,
    .fa-usd:before {
      content: "\f155";
    }
    .fa-rupee:before,
    .fa-inr:before {
      content: "\f156";
    }
    .fa-cny:before,
    .fa-rmb:before,
    .fa-yen:before,
    .fa-jpy:before {
      content: "\f157";
    }
    .fa-ruble:before,
    .fa-rouble:before,
    .fa-rub:before {
      content: "\f158";
    }
    .fa-won:before,
    .fa-krw:before {
      content: "\f159";
    }
    .fa-bitcoin:before,
    .fa-btc:before {
      content: "\f15a";
    }
    .fa-file:before {
      content: "\f15b";
    }
    .fa-file-text:before {
      content: "\f15c";
    }
    .fa-sort-alpha-asc:before {
      content: "\f15d";
    }
    .fa-sort-alpha-desc:before {
      content: "\f15e";
    }
    .fa-sort-amount-asc:before {
      content: "\f160";
    }
    .fa-sort-amount-desc:before {
      content: "\f161";
    }
    .fa-sort-numeric-asc:before {
      content: "\f162";
    }
    .fa-sort-numeric-desc:before {
      content: "\f163";
    }
    .fa-thumbs-up:before {
      content: "\f164";
    }
    .fa-thumbs-down:before {
      content: "\f165";
    }
    .fa-youtube-square:before {
      content: "\f166";
    }
    .fa-youtube:before {
      content: "\f167";
    }
    .fa-xing:before {
      content: "\f168";
    }
    .fa-xing-square:before {
      content: "\f169";
    }
    .fa-youtube-play:before {
      content: "\f16a";
    }
    .fa-dropbox:before {
      content: "\f16b";
    }
    .fa-stack-overflow:before {
      content: "\f16c";
    }
    .fa-instagram:before {
      content: "\f16d";
    }
    .fa-flickr:before {
      content: "\f16e";
    }
    .fa-adn:before {
      content: "\f170";
    }
    .fa-bitbucket:before {
      content: "\f171";
    }
    .fa-bitbucket-square:before {
      content: "\f172";
    }
    .fa-tumblr:before {
      content: "\f173";
    }
    .fa-tumblr-square:before {
      content: "\f174";
    }
    .fa-long-arrow-down:before {
      content: "\f175";
    }
    .fa-long-arrow-up:before {
      content: "\f176";
    }
    .fa-long-arrow-left:before {
      content: "\f177";
    }
    .fa-long-arrow-right:before {
      content: "\f178";
    }
    .fa-apple:before {
      content: "\f179";
    }
    .fa-windows:before {
      content: "\f17a";
    }
    .fa-android:before {
      content: "\f17b";
    }
    .fa-linux:before {
      content: "\f17c";
    }
    .fa-dribbble:before {
      content: "\f17d";
    }
    .fa-skype:before {
      content: "\f17e";
    }
    .fa-foursquare:before {
      content: "\f180";
    }
    .fa-trello:before {
      content: "\f181";
    }
    .fa-female:before {
      content: "\f182";
    }
    .fa-male:before {
      content: "\f183";
    }
    .fa-gittip:before {
      content: "\f184";
    }
    .fa-sun-o:before {
      content: "\f185";
    }
    .fa-moon-o:before {
      content: "\f186";
    }
    .fa-archive:before {
      content: "\f187";
    }
    .fa-bug:before {
      content: "\f188";
    }
    .fa-vk:before {
      content: "\f189";
    }
    .fa-weibo:before {
      content: "\f18a";
    }
    .fa-renren:before {
      content: "\f18b";
    }
    .fa-pagelines:before {
      content: "\f18c";
    }
    .fa-stack-exchange:before {
      content: "\f18d";
    }
    .fa-arrow-circle-o-right:before {
      content: "\f18e";
    }
    .fa-arrow-circle-o-left:before {
      content: "\f190";
    }
    .fa-toggle-left:before,
    .fa-caret-square-o-left:before {
      content: "\f191";
    }
    .fa-dot-circle-o:before {
      content: "\f192";
    }
    .fa-wheelchair:before {
      content: "\f193";
    }
    .fa-vimeo-square:before {
      content: "\f194";
    }
    .fa-turkish-lira:before,
    .fa-try:before {
      content: "\f195";
    }
    .fa-plus-square-o:before {
      content: "\f196";
    }
    "css/demo.css"
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    html, body {
    	margin: 0;
    	padding: 0;
    	background-attachment: fixed;
    	background-position: 50% 50%;
    	background-size: cover;
    }
    a {
    	text-decoration: underline;
    }
    a:hover {
    	text-decoration: none;
    }
    .bg-red {
    	background-image: url(images/logo_crf.png);
    }
     
    .body {
    	max-width: 600px;
    	margin: 0 auto;
    	padding: 40px;
    	box-sizing: content-box;
    	-moz-box-sizing: content-box;
    }
    .body-s {
    	max-width: 400px;
    }
    .modal {
    	padding: 25px 30px;
    	background: rgba(255,255,255,0.9);
    	font: 13px/1.55 'Open Sans', Helvetica, Arial, sans-serif;
    	color: #666;
    }
    .modal a {
    	color: #2da5da;
    }
     
    @media screen and (max-width: 600px) {
    	.body {
    		padding: 20px;
    	}
    }
    "css/footer.css"
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    /* Le footer au bas de page */
    footer{
    	/*position:fixed; Cette position ne convient que lorsqu'on veut tjrs afficher la div*/
    	bottom:0;
    	left:0;
    	min-height:40px;
    	background: #CC3D3D;
    	box-shadow: -1px 0 10px #555; /*ombre*/
    	width:100%;
    	color: white;
    	text-align:center;
    	z-index:2; /*formulaire se met sous le footer */
    	POSITION: relative;
    }
    footer #footer {	
    	padding-top: 0;
     
     
    }

  20. #20
    Modérateur

    Avatar de NoSmoking
    Homme Profil pro
    Inscrit en
    Janvier 2011
    Messages
    16 939
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Isère (Rhône Alpes)

    Informations forums :
    Inscription : Janvier 2011
    Messages : 16 939
    Points : 44 112
    Points
    44 112
    Par défaut
    Pas été plus loin quand j'ai vu ton code HTML catastrophique, commence par y mettre de l'ordre.

    Outils : Markup Validation Service

+ Répondre à la discussion
Cette discussion est résolue.
Page 1 sur 2 12 DernièreDernière

Discussions similaires

  1. Pourquoi mon QInputDialog reste affiché ?
    Par katanaenmousse dans le forum Débuter
    Réponses: 10
    Dernier message: 15/08/2010, 21h34
  2. Réponses: 1
    Dernier message: 02/07/2010, 10h19
  3. Réponses: 3
    Dernier message: 30/04/2007, 15h57
  4. Réponses: 2
    Dernier message: 17/11/2006, 12h35
  5. pourquoi mon quickreport n'affiche rien ?
    Par bertrand_declerck dans le forum Bases de données
    Réponses: 8
    Dernier message: 31/07/2005, 01h59

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo