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

Mise en page CSS Discussion :

Menu header non complet à l'affichage sous Chrome


Sujet :

CSS

  1. #1
    Membre à l'essai
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Mai 2010
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2010
    Messages : 32
    Points : 21
    Points
    21
    Par défaut Menu header non complet à l'affichage sous Chrome
    Bonjour tous le monde,

    Je rencontre un problème étrange.

    J'ai réalisé un site responsive, ayant comme particularité, tout sur une même page (comme une grande liste smile avec un menu flottant en haut de page, l'affichage de ce menu ce fait à merveille sous IE et Firefox:
    Nom : 48806-firefox.jpg
Affichages : 77
Taille : 2,9 Ko
    Mais sous chrome le bandeau s'affiche comme suit,
    Nom : 48806-chrome.jpg
Affichages : 86
Taille : 2,7 Ko
    Autres choses, ce bandeau apparait comme cela quand je clic sur un bouton de ce même bandeau, ce bouton m'emmène à une <section> du site.Et à ce moment là le bandeau ne s'affiche pas correctement, il faut que je passe la souris dessus pour afficher ce bandeau.

    J'ai cherché, et rechercher sans solution à mon problème.

    J'espère qu'une âme charitable m'aidera

    En vous remerciant d'avance.

    Bonne journée à toutes et à tous.

  2. #2
    Rédacteur

    Avatar de Bovino
    Homme Profil pro
    Développeur Web
    Inscrit en
    Juin 2008
    Messages
    23 647
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 54
    Localisation : France, Gironde (Aquitaine)

    Informations professionnelles :
    Activité : Développeur Web
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Juin 2008
    Messages : 23 647
    Points : 91 220
    Points
    91 220
    Billets dans le blog
    20
    Par défaut
    Attends, je cherche dans ton code.

  3. #3
    Membre à l'essai
    Homme Profil pro
    Développeur .NET
    Inscrit en
    Mai 2010
    Messages
    32
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Développeur .NET
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Mai 2010
    Messages : 32
    Points : 21
    Points
    21
    Par défaut
    Désolé je donne le code:
    Le 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
    /*
     * Responsive HTML5/CSS3 template
     * http://webcodebuilder.com/examples/responsive-html5css3-template/index.html
     *
     * Copyright 2012, WebCodeBuilder
     * Free to use under the MIT license.
     * http://www.opensource.org/licenses/mit-license.php
     */
    @media all{
    	body{
    		font:14px Arial, Helvetica, sans-serif;
    		margin:0;
    		background:#FFFFFF;
    		width:100%;
    		color:#444444;
    	}
    	a{
    		color:#466087;
    		text-decoration:underline;
    	}
    	a:hover { text-decoration:none;}
    	section, header,footer,nav,footer1 { display:block;}
    	img{
    		border:0;
    		vertical-align:top;
    		max-width:100%;
    	}
    	form,
    	fieldset{
    		border:0;
    		padding:0;
    		margin:0;
    	}
    	h1{
    		font:4.285em/1.067em 'PT Sans', Arial, Helvetica, sans-serif; /*60px/64px*/
    		margin:0 0 0.016em;
    		text-align:center;
    		color:#000;
    		text-shadow:0px 1px 1px rgba(255,255,255,0.5);
    	}
    	h2 {
    		font:1.714em/1.125em Arial, Helvetica, sans-serif; /*24px/27px*/
    		color:#fff;
    		text-align:center;
    		margin:0 0 0.417em;
    		text-shadow:0px 1px 1px rgba(255,255,255,0.5);
    	}
    	h3 {
    		font:1.285em/1.167em 'Nunito', Arial, Helvetica, sans-serif; /*18px/21px*/
    		margin:0 0 0.55em;
    		text-align:center;
    	}
    	.subHeading{
    		display:block;
    		font:2.357em/1.151em 'PT Sans', Arial, Helvetica, sans-serif; /*33px/38px*/
    		margin:0 0 1em;
    		text-align:center;
    		color:#7a7a7a;
    		text-shadow:0px 1px 1px rgba(255,255,255,0.5);
    	}
    	ul {
    		padding:0;
    		margin:0;
    		list-style:none;
    	}
    	section ul,
    	article ul{
    		margin:0 0 0.5em;
    	}
    	section li,
    	article li{
    		padding:0 0 0.5em 1.5em;
    		background:url(data:image/gif;base64,R0lGODlhBQAEALMKAKqqqoSEhGdnZ2FhYaioqE5OTpycnH9/f6CgoERERP///wAAAAAAAAAAAAAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4wLWMwNjEgNjQuMTQwOTQ5LCAyMDEwLzEyLzA3LTEwOjU3OjAxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1LjEgV2luZG93cyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFENDlGQjhEOEExMUUxQTg2MEI5NEQzNjZDMEM0OSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFENDlGQzhEOEExMUUxQTg2MEI5NEQzNjZDMEM0OSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkFBMUQ0OUY5OEQ4QTExRTFBODYwQjk0RDM2NkMwQzQ5IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkFBMUQ0OUZBOEQ4QTExRTFBODYwQjk0RDM2NkMwQzQ5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEAQAACgAsAAAAAAUABAAABA1QhXIUSBgRnIwSyaBEADs=) no-repeat 5px 0.5em;
    	}
    	.grey li,
    	.grey article li{background-image: url(data:image/gif;base64,R0lGODlhBQAEALMKAOjq7Pf4+c3Q1bK3v7C2vri9xOTm6NHV2bu/xv///////wAAAAAAAAAAAAAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4wLWMwNjEgNjQuMTQwOTQ5LCAyMDEwLzEyLzA3LTEwOjU3OjAxICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1LjEgV2luZG93cyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxQzkyMEI5NThEOEUxMUUxODRBMkFBNDBDMzA3OEE5RiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxQzkyMEI5NjhEOEUxMUUxODRBMkFBNDBDMzA3OEE5RiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjFDOTIwQjkzOEQ4RTExRTE4NEEyQUE0MEMzMDc4QTlGIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjFDOTIwQjk0OEQ4RTExRTE4NEEyQUE0MEMzMDc4QTlGIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Af/+/fz7+vn49/b19PPy8fDv7u3s6+rp6Ofm5eTj4uHg397d3Nva2djX1tXU09LR0M/OzczLysnIx8bFxMPCwcC/vr28u7q5uLe2tbSzsrGwr66trKuqqainpqWko6KhoJ+enZybmpmYl5aVlJOSkZCPjo2Mi4qJiIeGhYSDgoGAf359fHt6eXh3dnV0c3JxcG9ubWxramloZ2ZlZGNiYWBfXl1cW1pZWFdWVVRTUlFQT05NTEtKSUhHRkVEQ0JBQD8+PTw7Ojk4NzY1NDMyMTAvLi0sKyopKCcmJSQjIiEgHx4dHBsaGRgXFhUUExIREA8ODQwLCgkIBwYFBAMCAQAAIfkEAQAACgAsAAAAAAUABAAABA1QiXAUSbgMnJAyCaBEADs=);}
    	p {margin:0 0 1em;}
    	blockquote {
    		margin:0 0 1em;
    		background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAPCAYAAAD6Ud/mAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYxIDY0LjE0MDk0OSwgMjAxMC8xMi8wNy0xMDo1NzowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNS4xIFdpbmRvd3MiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjZERkIxNTE4RDcyMTFFMTlGMjFGRDNGOTMwN0RFRUYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjZERkIxNTI4RDcyMTFFMTlGMjFGRDNGOTMwN0RFRUYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGNkRGQjE0RjhENzIxMUUxOUYyMUZEM0Y5MzA3REVFRiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGNkRGQjE1MDhENzIxMUUxOUYyMUZEM0Y5MzA3REVFRiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrtCTg8AAADjSURBVHjarJQBDcMgEEUZqQEsYGGVgIVOQidhFmaBWUDCKmFIWC1UQscld8mFMBi3XvKTEuDecffTk/deVcImuaSQtClZnEG6svlMeifdhZAJ77+g2KFwYMbkBteLAAL3b2wdh0IV1Et4xUUA4pCIOVYOMhlkhAOdEJdBRtrQWSXUrqsAogrdUDnI4GwUAoJw+Ba/Q16oZgageAhtPNVyaNZb9YfLOGjD+TRB4PsdNXeYgJtqZ7IEspUE8UfQtxwbzeookGnd1/i7KcXS+T+r5tAHvKb2opWDXOtQpxmKxX4EGADGDjXSDl7KfgAAAABJRU5ErkJggg==) no-repeat;
    		font-size:1.143em;
    		line-height:1.25em;
    		font-style:italic;
    		color:#444;
    	}
    	q {
    		quotes:none;
    		display:block;
    		padding:1.5em 1em 0 40px;
    	}
    	q:before { content:"";}
    	q:after { content:"";}
    	cite {
    		display:block;
    		text-align:right;
    	}
    	dl{ margin:0 0 10px;}
    	dt {font-weight:bold;}
    	dd { margin:0 0 10px 20px;}
    	form,
    	fieldset {
    		padding:0;
    		margin:0;
    		border:0;
    	}
    	.center {
    		max-width:960px;
    		width:100%;
    		margin:0 auto;
    	}
    	.hidden{display:none;}
    	.box-main:after,
    	.center:after {
    		content:"";
    		clear:both;
    		display:block;
    	}
    	.right { float:right;} 
    	.left { float:left;}
    	.alignLeft{
    		float:left;
    		margin-right:1em;
    	}
    	.alignRight{
    		float:right;
    		margin-left:1em;
    	}
    	.fullWidth{width:100%;}
    	.fullWidth img{width:100%;}
    	.row{
    		width:100%;
    		background:#ffffff;
    		padding:2.857em 0;
    	}
    	.row:after{
    		content:"";
    		display:block;
    		clear:both;
    	}
    	.grey{
    		background:#7e8794;
    		color:#fff;
    		border-bottom:1px solid #f6f6f6;
    		border-top:1px solid #f6f6f6;
     
    		-moz-box-shadow:   	inset 0 6px 6px -6px rgba(0,0,0,0.75),
    							inset 0 -6px 6px -6px rgba(0,0,0,0.75);
    		-webkit-box-shadow: inset 0 6px 6px -6px rgba(0,0,0,0.75),
    							inset 0 -6px 6px -6px rgba(0,0,0,0.75);
    		box-shadow:         inset 0 6px 6px -6px rgba(0,0,0,0.75),
    							inset 0 -6px 6px -6px rgba(0,0,0,0.75);
    	}
    	.grey h1{
    		color:#fff;
    		text-shadow:0 1px 2px rgba(0,0,0,0.5);
    	}
    	.grey h2{
    		text-shadow:0 1px 2px rgba(0,0,0,0.5);
    	}
    	.grey .subHeading{
    		color:#d9e7fb;
    		text-shadow:0 1px 1px rgba(0,0,0,0.5);
    	}
    	.grey a{color:#fff;}
    	.btn{
    		position:relative;
    		display:inline-block;
    		padding:0.278em;
    		font:1.714em/2.375em Arial, Helvetica, sans-serif;
    		border:1px solid #d6d6d6;
    		background:#dedede;
    		text-decoration:none;
    		font-weight:bold;
    		cursor:pointer;
    		width:auto;
    		margin:0 -2px;
    		overflow:visible;
     
    		-webkit-border-radius: 1.67em;
    		-moz-border-radius: 1.67em;
    		border-radius: 1.67em;
     
    		-webkit-transition: background 0.5s ease;
    		-moz-transition: background 0.5s ease;
    		-o-transition: background 0.5s ease;
    		transition: background 0.5s ease;
    	}
    	* +html .btn{margin:0;}
    	.btn span{
    		color:#fff;
    		padding:0 1.25em;
    		display:block;
    		text-shadow: 0px 0 rgba(0,0,0,0.31), 0 1px rgba(0,0,0,0.5), 0px 0 rgba(0,0,0,0.5), 0 0px rgba(0,0,0,0.5);
     
    		-moz-box-shadow:   	inset 0 0px 3px rgba(255,255,255,255.75);
    		-webkit-box-shadow: inset 0 0px 3px rgba(255,255,255,0.75);
    		box-shadow:         inset 0 0px 3px rgba(255,255,255,0.75);
     
    		-webkit-border-radius: 1.25em;
    		-moz-border-radius: 1.25em;
    		border-radius: 1.25em;
    	}
    	.btnSmall{
    		padding:0.278em;
    		text-decoration:none;
    		font-size:1.214em;
    		line-height:2.35em;
    		background:#798493;
    		font-weight:bold;
    		border:1px solid #505a68;
     
    		-webkit-border-radius: 1.47em;
    		-moz-border-radius: 1.47em;
    		border-radius: 1.47em;
     
    		-webkit-transition: background 0.5s ease;
    		-moz-transition: background 0.5s ease;
    		-o-transition: background 0.5s ease;
    		transition: background 0.5s ease; 
     
    		-moz-box-shadow:   	0 1px 1px rgba(255,255,255,0.36);
    		-webkit-box-shadow: 0 1px 1px rgba(255,255,255,0.36);
    		box-shadow:         0 1px 1px rgba(255,255,255,0.36);
    	}
    	.btnSmall span{
    		color:#fff;
    		text-decoration:none;
    		padding:0 1.47em;
    		display:block;
    		text-shadow: 0px 0 rgba(0,0,0,0.31), 0 1px rgba(0,0,0,0.5), 0px 0 rgba(0,0,0,0.5), 0 0px rgba(0,0,0,0.5);
     
    		border:1px solid #566270;
    		background:#606a78;
     
    		background-image: linear-gradient(bottom, rgb(98,119,149) 0%, rgb(160,188,226) 100%);
    		background-image: -o-linear-gradient(bottom, rgb(98,119,149) 0%, rgb(160,188,226) 100%);
    		background-image: -moz-linear-gradient(bottom, rgb(98,119,149) 0%, rgb(160,188,226) 100%);
    		background-image: -webkit-linear-gradient(bottom, rgb(98,119,149) 0%, rgb(160,188,226) 100%);
    		background-image: -ms-linear-gradient(bottom, rgb(98,119,149) 0%, rgb(160,188,226) 100%);
     
    		background-image: -webkit-gradient(
    			linear,
    			left bottom,
    			left top,
    			color-stop(0, rgb(98,119,149)),
    			color-stop(1, rgb(160,188,226))
    		);
     
    		-moz-box-shadow:   	inset 0 2px 2px -2px rgba(255,255,255,255.75),
    							inset 0 0 0 #fff;
    		-webkit-box-shadow: inset 0 2px 2px -2px rgba(255,255,255,0.75),
    							inset 0 0 0 #fff;
    		box-shadow:         inset 0 2px 2px -2px rgba(255,255,255,0.75),
    							inset 0 0 0 #fff;
     
    		-webkit-border-radius: 1.25em;
    		-moz-border-radius: 1.25em;
    		border-radius: 1.25em;
    	}
    	.btn:hover {
    		background:#1b4648;
    		background:rgba(0,0,0,0.2);
    	}
    	.btnSmall:hover {
    		background:none;
    	}
    	.btnSmall:hover span{
    		background-image: linear-gradient(bottom, rgb(109,131,164) 0%, rgb(169,199,241) 100%);
    		background-image: -o-linear-gradient(bottom, rgb(109,131,164) 0%, rgb(169,199,241) 100%);
    		background-image: -moz-linear-gradient(bottom, rgb(109,131,164) 0%, rgb(169,199,241) 100%);
    		background-image: -webkit-linear-gradient(bottom, rgb(109,131,164) 0%, rgb(169,199,241) 100%);
    		background-image: -ms-linear-gradient(bottom, rgb(109,131,164) 0%, rgb(169,199,241) 100%);
     
    		background-image: -webkit-gradient(
    			linear,
    			left bottom,
    			left top,
    			color-stop(0, rgb(109,131,164)),
    			color-stop(1, rgb(169,199,241))
    		);
    	}
    	.btn:active{
    		top:1px;
    	}
    	.btn:hover span,
    	.btn:active span{
    		color:#fff;
    	}
    	.btnGreen span{
    		border:1px solid #5e9048;
    		background:#75cf44;
     
    		background-image: linear-gradient(bottom, rgb(80,153,46) 0%, rgb(117,207,68) 100%);
    		background-image: -o-linear-gradient(bottom, rgb(80,153,46) 0%, rgb(117,207,68) 100%);
    		background-image: -moz-linear-gradient(bottom, rgb(80,153,46) 0%, rgb(117,207,68) 100%);
    		background-image: -webkit-linear-gradient(bottom, rgb(80,153,46) 0%, rgb(117,207,68) 100%);
    		background-image: -ms-linear-gradient(bottom, rgb(80,153,46) 0%, rgb(117,207,68) 100%);
     
    		background-image: -webkit-gradient(
    			linear,
    			left bottom,
    			left top,
    			color-stop(0, rgb(80,153,46)),
    			color-stop(1, rgb(117,207,68))
    		);
    	}
    	.btnBlue span{
    		background:#52b3d3;
    		border:1px solid #67a2b4;
    		color:#fff;
     
    		background-image: linear-gradient(bottom, rgb(66,153,179) 0%, rgb(82,179,211) 100%);
    		background-image: -o-linear-gradient(bottom, rgb(66,153,179) 0%, rgb(82,179,211) 100%);
    		background-image: -moz-linear-gradient(bottom, rgb(66,153,179) 0%, rgb(82,179,211) 100%);
    		background-image: -webkit-linear-gradient(bottom, rgb(66,153,179) 0%, rgb(82,179,211) 100%);
    		background-image: -ms-linear-gradient(bottom, rgb(66,153,179) 0%, rgb(82,179,211) 100%);
     
    		background-image: -webkit-gradient(
    			linear,
    			left bottom,
    			left top,
    			color-stop(0, rgb(66,153,179)),
    			color-stop(1, rgb(82,179,211))
    		);
    	}
    	.formRow{
    		width:100%;
    		margin:0 0 1.5em;
    	}
    	.formRow:after{
    		content:"";
    		display:block;
    		clear:both;
    	}
    	.textField{
    		width:100%;
    		overflow:hidden;
    		border:1px solid #505a68;
    		background:#798493;
    		font-weight:bold;
    		padding:0.5em;
     
    		-webkit-border-radius: 2em;
    		-moz-border-radius: 2em;
    		border-radius: 2em;
     
    		-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    		-moz-box-sizing: border-box;    /* Firefox, other Gecko */
    		box-sizing: border-box; 
     
    		-moz-box-shadow:   	0 1px 1px rgba(255,255,255,0.36);
    		-webkit-box-shadow: 0 1px 1px rgba(255,255,255,0.36);
    		box-shadow:         0 1px 1px rgba(255,255,255,0.36);
    	}
    	input,
    	textarea{
    		display:block;
    		background:#fff;
    		font:1em/1.214em Arial, Helvetica, sans-serif;  /*14px/17px*/
    		color:#444;
    		width:100%;
    		padding:0.75em 1.5em;
    		border:1px solid #505762;
    		margin:0;
     
    		resize:none;
     
    		-moz-box-shadow:   	inset 0 0px 3px rgba(0,0,0,0.75);
    		-webkit-box-shadow: inset 0 0px 3px rgba(0,0,0,0.75);
    		box-shadow:         inset 0 0px 3px rgba(0,0,0,0.75);
     
    		-webkit-border-radius: 1.5em;
    		-moz-border-radius: 1.5em;
    		border-radius: 1.5em;
     
    		-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    		-moz-box-sizing: border-box;    /* Firefox, other Gecko */
    		box-sizing: border-box;         /* Opera/IE 8+ */
    	}
    	textarea {
    		overflow:auto;
    		height:10.812em;
    	}
    	* +html input,
    	* +html textarea,
    	* +html .textField{
    		width:99%;
    		padding:0;
    	}
    	::-webkit-input-placeholder {
    		color:    #444;
    	}
    	:-moz-placeholder {
    		color:    #444;
    	}
    	.columns{width:100%	}
    	.columns:after{
    		content:"";
    		display:block;
    		clear:both;
    	}
    	.columns > div,
    	.columns > article{
    		float:left;
    		vertical-align:top;
    	}
    	.columns h2{text-align:left;}
    	.half{
    		width:48.0%;
    		margin:1.3%;
    	}
    	.oneThird{
    		width:32%;
    		margin:1%;
    	}
    	.columns > div:first-child,
    	.columns > article:first-child{margin-left:0;}
    	.oneThird +.oneThird +.oneThird,
    	.threeForth + .oneForth,
    	.oneForth + .half,
    	.half + .half,
    	.half + .oneForth + .oneForth,
    	.last{
    		float:right;
    		margin-right:0;
    	}
    	.oneForth{width:25%;}
    	.threeForth{width:74.5%;}
    	.buttons{
    		width:100%;
    		overflow:hidden;
    		text-align:center;
    		margin:2.5em 0 0
    	}
    	.buttons > span{
    		background:url(../img/sep-vert.gif) no-repeat 50% 50%;
    		display:inline-block;
    		font-size:1.714em;
    		line-height:1.125em;
    		padding:1em 0.75em;
    		margin:0 -1px 0 -2px;
    		background:#;
    	}
    	* +html .buttons > span{margin:0 20px;}
    	.buttons > span em{
    		font-style:normal;
    		display:block;
    		background:#eaeaea;
    	}
    	.imgHolder{
    		display:inline-block;
    		padding:1px;
    		background:#fff;
    		border:6px solid #cecece;
    		margin-bottom:1em;
    		max-width:100%;
    		overflow:hidden;
     
    		-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    		-moz-box-sizing: border-box;    /* Firefox, other Gecko */
    		box-sizing: border-box;         /* Opera/IE 8+ */
    	}
    	* +html .imgHolder{
    		max-width:93.5%;
    		border-width:3%;
    		padding:0;
    	}
    	.imgHolder img{display:block;}
    	.grey .imgHolder{
    		border-color:#646e7d;
    	}
    	/*main styles*/
    	#pagewidth {width:100%;}
    	#header{
    		position: fixed;
    		z-index:100;
    		left: 0;
    		top: 0;
    		height:49px;
    		width:100%;
    		overflow:hidden;
    		padding:1.143em 0;
    		/*Bandeau du haut*/
    		background-color:#4c678d;
    		background:-moz-linear-gradient(top, #8baadc 0%, #4c678d 100%);
    		background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#8baadc), color-stop(100%,#4c678d));
    		background:-webkit-linear-gradient(top, #8baadc 0%,#4c678d 100%);
    		background:-o-linear-gradient(top, #8baadc 0%,#4c678d 100%);
    		background:-ms-linear-gradient(top, #8baadc 0%,#4c678d 100%);
    		background:linear-gradient(top bottom, #8baadc 0%,#4c678d 100%);
    		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8baadc', endColorstr='#4c678d',GradientType=0 );
    		border-bottom:1px solid #6b87b0;
    		box-shadow:0 1px 0 #3d5475;		
    	}
    	#content{padding:82px 0 0;}
    	#mainNav{text-align:center;}
    	#mainNav li{
    		display:inline-block;
    		margin:0 7px;
    	}
    	#mainNav a{
    		color:#fff;
    		position:relative;
    		display:inline-block;
    		padding:0.110em;
    		text-decoration:none;
    		font-size:1.214em;
    		line-height:2.35em;
    		background:#2d3239;
    		font-weight:bold;
     
    		-moz-box-shadow:   	inset 0 0px 3px rgba(0,0,0,0.75);
    		-webkit-box-shadow: inset 0 0px 3px rgba(0,0,0,0.75);
    		box-shadow:         inset 0 0px 3px rgba(0,0,0,0.75);
     
    		-webkit-border-radius: 1.47em;
    		-moz-border-radius: 1.47em;
    		border-radius: 1.47em;
    	}
    	/*Bouton bandeau haut*/
    	#mainNav a span{
    		color:#fff;
    		text-decoration:none;
    		padding:0 1.25em;
    		display:block;
    		text-shadow: 0px 0 rgba(0,0,0,0.31), 0 1px rgba(0,0,0,0.5), 0px 0 rgba(0,0,0,0.5), 0 0px rgba(0,0,0,0.5);
     
    		border:1px solid #202329;
    		background:#606a78;
     
    		background-image: linear-gradient(bottom, #8ADD6D 0%, #60B044 100%);
    		background-image: -o-linear-gradient(bottom,#8ADD6D 0%, #60B044 100%);
    		background-image: -moz-linear-gradient(bottom, #8ADD6D 0%, #60B044 100%);
    		background-image: -webkit-linear-gradient(bottom, #8ADD6D 0%, #60B044 100%);
    		background-image: -ms-linear-gradient(bottom, #8ADD6D 0%, #60B044 100%);
     
    		background-image: -webkit-gradient(
    			linear,
    			left bottom,
    			left top,#8ADD6D 0%, #60B044 100%	);
     
    		-moz-box-shadow:   	inset 0 2px 2px -2px rgba(255,255,255,255.75),
    							inset 0 0 0 #fff;
    		-webkit-box-shadow: inset 0 2px 2px -2px rgba(255,255,255,0.75),
    							inset 0 0 0 #fff;
    		box-shadow:         inset 0 2px 2px -2px rgba(255,255,255,0.75),
    							inset 0 0 0 #fff;
     
    		-webkit-border-radius: 1.25em;
    		-moz-border-radius: 1.25em;
    		border-radius: 1.25em;
    	}
    	#mainNav a:active{
    		top:1px;
    	}
    	/*Bouton bandeau haut Quand actif*/
    	#mainNav a:hover span ,
    	#mainNav li.active span {
    		background-image: linear-gradient(bottom,  #8ADD6D 0%, #60B044 100%);
    		background-image: -o-linear-gradient(bottom,#8ADD6D 0%, #60B044 100%);
    		background-image: -moz-linear-gradient(bottom, #8ADD6D 0%, #60B044 100%);
    		background-image: -webkit-linear-gradient(bottom,  #8ADD6D 0%, #60B044 100%);
    		background-image: -ms-linear-gradient(bottom, #8ADD6D 0%, #60B044 100%);
     
    		background-image: -webkit-gradient(
    			linear,
    			left bottom,
    			left top,
    			color-stop(0, #8ADD6D 0%),
    			color-stop(1, #60B044 100%)
    		)
    	}
    	.gallery{
    		background:url(../img/sep-hor.gif) no-repeat 50% 0;
    		padding:2px 0;
    		position:relative;
    		margin:0 auto;
    		width:81.25%;
    		position:relative;
    	}
    	.gallery:after{
    		content:"";
    		position:absolute;
    		bottom:0;
    		left:0;
    		background:url(../img/sep-hor.gif) no-repeat 50% 0;
    		width:100%;
    		height:2px;
    	}
    	.news > div{
    		border:1px solid #505a68;
    		position:relative;
    		padding:0 0 50px;
    		margin:0 0 30px;
    		height:1%;
    	}
    	.news > div:after{
    		content:"";
    		display:block;
    		clear:both;
    	}
    	.news h3{
    		font-size:1.714em;
    		line-height:2.583em;
    		text-align:center;
    		margin:0 0 0.83em;
    		border-top:1px solid #909eb2;
    		border-bottom:1px solid #545b65;
    		background:#5d6a7c;
     
    		background-image: linear-gradient(bottom, rgb(93,106,124) 0%, rgb(126,137,153) 100%);
    		background-image: -o-linear-gradient(bottom, rgb(93,106,124) 0%, rgb(126,137,153) 100%);
    		background-image: -moz-linear-gradient(bottom, rgb(93,106,124) 0%, rgb(126,137,153) 100%);
    		background-image: -webkit-linear-gradient(bottom, rgb(93,106,124) 0%, rgb(126,137,153) 100%);
    		background-image: -ms-linear-gradient(bottom, rgb(93,106,124) 0%, rgb(126,137,153) 100%);
     
    		background-image: -webkit-gradient(
    			linear,
    			left bottom,
    			left top,
    			color-stop(0, rgb(93,106,124)),
    			color-stop(1, rgb(126,137,153))
    		);
    	}
    	.news h3 a{
    		display:block;
    		text-decoration:none;
    		text-shadow:0 1px 2px rgba(0,0,0,0.5);
    	}
    	.news .content{
    		width:83%;
    		overflow:hidden;
    		margin:0 auto;
    	}
    	.news .readMore{
    		position:absolute;
    		top:100%;
    		margin:-2.143em 0 0;
    		width:100%;
    		text-align:center;
    	}
    	.slides{
    		list-style:none;
    		overflow:hidden;
    		padding:0;
    		width:100%;
    	}
    	.slides li{
    		padding:0;
    		display: none;
    		position:relative;
    		background:url(../img/sep-vert.gif) no-repeat 50% 50%;
    	}
    	* +html .slides li{
    		display:inline;
    		zoom:1;
    		margin:0;
    	}
    	.slides blockquote{
    		float:right;
    		width:48%;
    		margin:2.5em 0 0;
    	}
    	.slides blockquote:first-child{float:left;}
    	#map{
    		border:1px solid #535d6b;
    		padding:0.428em;
    		background:#798493;
    		margin:0 0 1em;
    	}
    	#map .imgHolder{
    		height:1%;
    		overflow:hidden;
    		background:#fff;
    		padding:1px;
    		border:0;
    		margin:0;
    		display:block;
    	}
    	#map .imgHolder img{
    		width:100%;
    	}
    	.form{width:92%;}
    	#testimonials{
    		margin-top:-2.857em;
    	}
    	#testimonials .row{
    		padding:0;
    		background:url(../img/sep-hor.gif) no-repeat 50% 1.5em;
    	}
    	#testimonials .row:first-child{
    		background:none;
    	}
    	#testimonials{background:none;}
    	#testimonials:after{display:none;}
    	/*Bandeau du bas*/
    	#footer{
    		background: linear-gradient(to bottom, #8BAADC 0%, #4C678D 100%) repeat scroll 0 0 transparent;
    		background: -o-linear-gradient(bottom,#8BAADC 0%, #4C678D 100%);
    		background: -moz-linear-gradient(bottom, #8BAADC 0%, #4C678D 100%);
    		background: -webkit-linear-gradient(bottom,  #8BAADC 0%, #4C678D 100%);
    		background: -ms-linear-gradient(bottom, #8BAADC 0%, #4C678D 100%);
    		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8baadc', endColorstr='#4c678d',GradientType=0 );
    		background: -webkit-gradient(
    			linear,
    			left bottom,
    			left top,
    			color-stop(0, #8BAADC 0%),
    			color-stop(1, #4C678D 100%)
    		)
       		border-bottom: 1px solid #6B87B0;
        		box-shadow: 0 1px 0 #3D5475;
    		width:100%;
    		overflow:hidden;
    		padding:14px 0;
    		color:#fff;
    		line-height:16px;
     
    	}
     
     
    	#footer1{
    		background: linear-gradient(to bottom, #8BAADC 0%, #4C678D 100%) repeat scroll 0 0 transparent;
    		background: -o-linear-gradient(bottom,#8BAADC 0%, #4C678D 100%);
    		background: -moz-linear-gradient(bottom, #8BAADC 0%, #4C678D 100%);
    		background: -webkit-linear-gradient(bottom,  #8BAADC 0%, #4C678D 100%);
    		background: -ms-linear-gradient(bottom, #8BAADC 0%, #4C678D 100%);
    		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8baadc', endColorstr='#4c678d',GradientType=0 );
    		background: -webkit-gradient(
    			linear,
    			left bottom,
    			left top,
    			color-stop(0, #8BAADC 0%),
    			color-stop(1, #4C678D 100%)
    		)
       		border-bottom: 1px solid #6B87B0;
        		box-shadow: 0 1px 0 #3D5475;
    		width:100%;
    		overflow:hidden;
    		padding:5px 0;
    		color:#fff;
    		line-height:16px;
     
    		position: absolute;
    		bottom: 0px;
     
    	}
     
    	#footer a{
    		color:#fff;
    	}
    	#footer .copy{float:right;}
    }
    	#footer1 a{
    		color:#fff;
    	}
    	#footer1 .copy{float:right;}
    }
     
    @media all and (max-width: 1024px){
     
     
    }
    @media all and (max-width: 960px){
    	.center{
    		padding:0 10px;
    		width:auto;
    	}
    	.buttons{font-size:11px;}
    	#header{
    		padding:2px 0 0;
    		height:40;
    		overflow:hidden;
    		position:static;
    	}
    	#content{padding:0;}
    }
    @media all and (max-width: 780px){
    	body{font-size:13px;}
    	.buttons{font-size:9px;}
    	h1{font-size:3.5em;}
    	.subHeading{font-size:2em;}
    	.news h3{font-size:1.3em;}
    }
    @media all and (max-width: 504px){
    	body{font-size:12px;}
    	.columns > div,
    	.columns > article{
    		float:none;
    		margin:0;
    		width:100%;
    	}
    	.buttons{font-size:7px;}
    	#testimonials li,
    	#testimonials .row{
    		background:none;
    	}
    	#testimonials blockquote{
    		float:none;
    		width:100%;
    		position:relative;
    	}
    	#testimonials blockquote:after{
    		background:url(../img/sep-hor.gif) no-repeat 50% 0;
    		content:"";
    		position:absolute;
    		left:0;
    		top:-18px;
    		width:100%;
    		height:2px;
    	}
    	#testimonials .row:first-child blockquote:first-child:after{display:none;}
    	.flex-direction-nav{display:none;}
    	h1{font-size:3em;}
    	.subHeading{font-size:1.75em;}
    }
    @media all and (max-width: 320px){
    	.buttons > span{display:none;}
    	.buttons .btn{margin-top:0.5em;}
    	.buttons{margin-top:2em;}
    	h1{font-size:2.5em;}
    	.subHeading{font-size:1.5em;}
    	.news h3{font-size:1.25em;}
    }
    @media all
    	and (min-device-width: 768px)
    	and (max-device-width: 1024px){
    	#header{
    		padding:2px 0 0;
    		/*probleme de bandeau height:1;*/
     
    	overflow:hidden;
    		position:fixed;
    	}
    	#content{padding:0;}
     
    }
    .column {
    	background: #7E8794;
    }
     
    input[type='text'],
    select,
    textarea {
    	width: 100%;
    }
     
    input[type='text'],
    textarea {
    	box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }
     
     
    /* #Page Styles
    ================================================== */
     
    /* #Media Queries
    ================================================== */
     
    	/* Smaller than standard 960 (devices and browsers) */
    	@media only screen and (max-width: 959px) {}
     
    	/* Tablet Portrait size to standard 960 (devices and browsers) */
    	@media only screen and (min-width: 768px) and (max-width: 959px) {}
     
    	/* All Mobile Sizes (devices and browser) */
    	@media only screen and (max-width: 767px) {}
     
    	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
    	@media only screen and (min-width: 480px) and (max-width: 767px) {}
     
    	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
    	@media only screen and (max-width: 479px) {}
     
     
    /* #Font-Face
    ================================================== */
    /* 	This is the proper syntax for an @font-face file
    		Just create a "fonts" folder at the root,
    		copy your FontName into code below and remove
    		comment brackets */
     
    /*	@font-face {
    	    font-family: 'FontName';
    	    src: url('../fonts/FontName.eot');
    	    src: url('../fonts/FontName.eot?iefix') format('eot'),
    	         url('../fonts/FontName.woff') format('woff'),
    	         url('../fonts/FontName.ttf') format('truetype'),
    	         url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
    	    font-weight: normal;
    	    font-style: normal; }
    */
    Le html
    Code html : 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
    <!DOCTYPE html>
    <html>
    <head>
    	<title>Team LP</title>
    	<meta charset="utf-8" />
    	<meta name = "viewport" content = "width=device-width, maximum-scale = 1, minimum-scale=1" />
     
    	<link rel="stylesheet" type="text/css" href="css/default.css" media="all" />
    	<link rel="stylesheet" href="css/flexslider.css" type="text/css" />
    	<link rel="stylesheet" href="css/tab.css" type="text/css" />	
    	<link rel="stylesheet" href="css/fixed-navigation.css" type="text/css" />
    	<link href='http://fonts.googleapis.com/css?family=PT+Sans' rel='stylesheet' type='text/css' />
    	<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    	<script src="js/jquery.flexslider.js"></script>
    	<script src="js/default.js"></script>
    	<script type="text/javascript"
    	    src="https://maps.google.com/maps/api/js?sensor=false">
    	</script>
     
    	<script src="js/graph/highcharts.js" type="text/javascript"></script>
    	<script src="js/graph/exporting.js" type="text/javascript"></script>
     
     
    	<link href="css/footable-0.1.css" rel="stylesheet" type="text/css" />
           <script src="js/footable/data-generator.js" type="text/javascript"></script>
           <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type="text/javascript"></script>
      	<script src="js/footable/footable-0.1.js" type="text/javascript"></script>
     	<script type="text/javascript">
                    $(function() {
                            $('table').footable();
                    });
           </script>
     
    	<script type="text/javascript">
              function initialize() {
                var latlng = new google.maps.LatLng(-34.397, 150.644);
                var myOptions = {
                  zoom: 8,
                  center: latlng,
                  mapTypeId: google.maps.MapTypeId.ROADMAP
                };
                var map = new google.maps.Map(document.getElementById("map_canvas"),
                    myOptions);
              }
              function changeDesc(titre)
        {
            
                    var elem = titre.split(';');
                    document.getElementById('id').value=elem[0];
                    document.getElementById('nom').value=elem[1];
                    document.getElementById('prenom').value=elem[2];
                    document.getElementById('naissance').value=elem[3];
                    document.getElementById('privilege').value=elem[4];
                    document.getElementById('login').value=elem[5];
                    //document.getElementById('mdp').value=elem[6];
                    document.getElementById('compte').value=elem[0];
            }
                    
    </script>
     
     
    </head>
    <body onload="initialize()">
    	<header id="header">
    			<div class="center">
    				<nav id="mainNav">
    					<ul>
    					<li><a href="#administration"><span>Administration</span></a></li>
    <li><span>Deconnexion</span></a></li>
     
    					</ul>
    				</nav>
    			</div>
    		</header>
     
    	<div id="pagewidth">
     
    		<div id="content">
    </div></div></body></html>

Discussions similaires

  1. Cookie non pris en compte sous Chrome
    Par Pifon dans le forum Général JavaScript
    Réponses: 7
    Dernier message: 13/12/2014, 19h07
  2. L'affichage sous chrome et firefox ne correspond pas
    Par diengkals dans le forum Mise en page CSS
    Réponses: 2
    Dernier message: 14/08/2012, 14h27
  3. Problème d'affichage sous Chrome
    Par emy748306 dans le forum Balisage (X)HTML et validation W3C
    Réponses: 2
    Dernier message: 01/07/2010, 12h50
  4. Affichage sous Chrome et Safari
    Par Digilougm dans le forum Général JavaScript
    Réponses: 4
    Dernier message: 27/04/2010, 19h18
  5. Affichage sous Chrome
    Par bielle64 dans le forum Balisage (X)HTML et validation W3C
    Réponses: 6
    Dernier message: 03/12/2009, 12h01

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