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 :

Différence entre IE7 et FF


Sujet :

CSS

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre régulier
    Profil pro
    Inscrit en
    Janvier 2007
    Messages
    11
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Janvier 2007
    Messages : 11
    Par défaut Différence entre IE7 et FF
    Bonjour à tous !
    Je viens de constater que j'avais une différence entre le résultat de ma page sur IE7 et FF
    je ne suis pas un as de la programmation, je débute tout juste et franchement.. je ne sais plus trop quoi faire.

    Vous pouvez visualiser ce problème sur la page http://www.finance-et-futur.com/dunes.html

    Voici le code de ma page..
    Quelqu'un peut-il jeter un coup d'oeil ? Merci d'avance !!
    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
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <meta name="robots" content="all">
    <meta name="language" content="fr">
    <meta name="author" content="Meyer">
    <meta name="revisit-after" content="30 days">
    <title>Finance et Futur : gestion de patrimoine, défiscalisation, courtage, immobilier</title>
    <script type="text/javascript">
    <!--
    window.onload=montre;
    function montre(id) {
    var d = document.getElementById(id);
    	for (var i = 1; i<=10; i++) {
    		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
    	}
    if (d) {d.style.display='block';}
    }
    //-->
    </script>
    <style type="text/css" media="screen">
    <!-- 
    @font-face {  
    	font-family: English; 
    	src: url(http://www.culture-foot.com/finance.et.futur/test/english.eot); 
    }
    body {
    margin: 0;
    padding: 0;
    background: white;
    font: 11px verdana, arial, sans-serif;
    }
    dl, dt, dd, ul, li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    }
    #menu {
    	position: absolute; /* placement du menu, à modifier selon vos besoins */
    	top: 170px;
    	left: 235px;
    	z-index:100;
    	width: 440px; /* correction pour Opera */
    	height: 9px;
    	visibility: visible;
    	overflow: visible;
    }
    #menu dl {
    float: left;
    width: 110px;
    }
    #menu dt {
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    border: 1px solid gray;
    margin: 1px;
    background-color: #002949;
    }
    #menu dd {
    display: none;
    border: 1px solid gray;
    }
    #menu li {
    text-align: center;
    background: #002949;
    }
    #menu li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    height: 10%;
    border: 0 none;
    }
    #menu dt a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    height: 800%;
    border: 0 none;
    }
    #menu li a:hover, #menu li a:focus, #menu dt a:hover, #menu dt a:focus {
    background: #8CC8D5;
    }
    #site {
    position: absolute;
    z-index: 1;
    top : 70px;
    left : 10px;
    color: #004080;
    background-color: #004080;
    padding: 5px;
    border: 1px solid gray; 
    }
    -->
    </style>
    <style type="text/css">
    <!--
    #Layer1 {
    	position:absolute;
    	left:10px;
    	top:10px;
    	width:1024px;
    	height:660px;
    	z-index:1;
    	background-color: #86C1CE;
    }
    #entete {
    	position:absolute;
    	left:0px;
    	top:0px;
    	width:1024px;
    	height:150px;
    	z-index:1;
    	border: thin none #004080;
    	background-color: #002949;
    }
    #immologic {
    	position:absolute;
    	left:30%;
    	top:75px;
    	width:45%;
    	height:50px;
    	z-index:3;
    }
    body {
    	background-color: #8CC8D5;
    	margin-left: 0%;
    	margin-right: 0%;
    }
    #Layer2 {
    	position:absolute;
    	width:45%;
    	height:50px;
    	z-index:4;
    	left: 30%;
    	top: 25px;
    }
    #Layer3 {
    	position:absolute;
    	width:10%;
    	height:100px;
    	z-index:5;
    	left: 20%;
    	top: 25px;
    }
    #Layer4 {
    	position:absolute;
    	width:106px;
    	height:1100px;
    	z-index:6;
    	left: 697px;
    	top: 150px;
    	background-color: #002949;
    }
    #Layer5 {
    	position:absolute;
    	width:430px;
    	height:1000px;
    	z-index:7;
    	left: 240px;
    	top: 150px;
    	background-color: #FFFFFF;
    	border: thin none #004080;
    }
    #Layer6 {
    	position:absolute;
    	width:25px;
    	height:1000px;
    	z-index:8;
    	left: 215px;
    	top: 150px;
    	background-color: #FFFFFF;
    }
    #Layer7 {
    	position:absolute;
    	width:25px;
    	height:1000px;
    	z-index:9;
    	left: 670px;
    	top: 150px;
    	background-color: #FFFFFF;
    }
    #Layer8 {
    	position:absolute;
    	width:45%;
    	height:50px;
    	z-index:10;
    	left: 20%;
    	top: 800px;
    	background-color: #002949;
    }
    #Layer9 {
    	position:absolute;
    	width:1px;
    	height:700px;
    	z-index:11;
    	left: 214px;
    	top: 150px;
    	background-color: #536BA6;
    }
    #Layer10 {
    	position:absolute;
    	width:1px;
    	height:650px;
    	z-index:12;
    	left: 52%;
    	top: 150px;
    	background-color: #536BA6;
    }
    #Layer11 {
    	position:absolute;
    	width:100%;
    	height:1px;
    	z-index:13;
    	left: 0;
    	top: 750px;
    	background-color: #536BA6;
    }
    #Layer12 {
    	position:absolute;
    	width:1px;
    	height:700px;
    	z-index:14;
    	left: 803px;
    	top: 150px;
    	background-color: #536BA6;
    }
    #Layer13 {
    	position:absolute;
    	width:100%;
    	height:1px;
    	z-index:15;
    	left: 0px;
    	top: 25px;
    	background-color: #536BA6;
    }
    #Layer14 {
    	position:absolute;
    	width:100%;
    	height:1px;
    	z-index:16;
    	left: 0;
    	top: 125px;
    	background-color: #536BA6;
    }
    #Layer15 {
    	position:absolute;
    	width:1px;
    	height:150px;
    	z-index:17;
    	top: 0px;
    	background-color: #536BA6;
    	left: 30%;
    }
    #Layer16 {
    	position:absolute;
    	width:100%;
    	height:1px;
    	z-index:18;
    	left: 0px;
    	top: 150px;
    	background-color: #536BA6;
    }
    #Layer17 {
    	position:absolute;
    	width:20%;
    	height:1px;
    	z-index:19;
    	left: 0px;
    	top: 200px;
    	background-color: #536BA6;
    }
    #Layer18 {
    	position:absolute;
    	width:1px;
    	height:650px;
    	z-index:20;
    	left: 696px;
    	top: 150px;
    	background-color: #536BA6;
    	visibility: visible;
    	overflow: visible;
    }
    #Layer19 {
    	position:absolute;
    	width:35%;
    	height:1px;
    	z-index:21;
    	left: 65%;
    	top: 200px;
    	background-color: #536BA6;
    }
    #Layer20 {
    	position:absolute;
    	width:100%;
    	height:1px;
    	z-index:22;
    	left: 0;
    	top: 800px;
    	background-color: #536BA6;
    }
    #Layer21 {
    	position:absolute;
    	width:1px;
    	height:25px;
    	z-index:23;
    	left: 65%;
    	top: 0;
    	background-color: #536BA6;
    }
    #Layer22 {
    	position:absolute;
    	width:11%;
    	height:150px;
    	z-index:101;
    	left: 53%;
    	top: 270px;
    	border-top-width: thin;
    	border-right-width: thin;
    	border-bottom-width: thin;
    	border-left-width: thin;
    }
    #Layer23 {
    	position:absolute;
    	width:110px;
    	height:150px;
    	z-index:102;
    	left: 53%;
    	top: 420;
    	background-image: url(images/reunion/quartier.jpg);
    }
    #Layer24 {
    	position:absolute;
    	width:80px;
    	height:150px;
    	z-index:102;
    	top: 270px;
    	left: 709px;
    }
    .Style12 {
    	color: #FFCC33;
    	font-weight: bold;
    }
    #Layer25 {
    	position:absolute;
    	width:2%;
    	height:154px;
    	z-index:103;
    	left: 534px;
    	top: 270px;
    }
    .Style18 {
    	color: #002949;
    	font-weight: bold;
    	font-size: 10px;
    }
    .Style25 {font-size: 10px}
    #Layer26 {
    	position:absolute;
    	width:1024px;
    	height:100px;
    	z-index:103;
    	left: 0px;
    	top: 750px;
    	background-image: url(img/feet.jpg);
    }
    #Layer27 {
    	position:absolute;
    	width:585px;
    	height:50px;
    	z-index:103;
    	left: 215px;
    	top: 1200px;
    	background-color: #002949;
    	overflow: hidden;
    }
    #Layer28 {
    	position:absolute;
    	width:1px;
    	height:700px;
    	z-index:104;
    	left: 215px;
    	top: 0px;
    	background-color: #004080;
    }
    #Layer29 {
    	position:absolute;
    	width:1px;
    	height:850px;
    	z-index:105;
    	left: 696px;
    	top: 0px;
    	background-color: #8CC8D5;
    }
    #Layer30 {
    	position:absolute;
    	width:200px;
    	height:115px;
    	z-index:106;
    	left: 940px;
    	top: 96px;
    }
    #Layer31 {
    	position:absolute;
    	width:200px;
    	height:20px;
    	z-index:106;
    	top: 1215px;
    	left: 355px;
    }
    .Style26 {color: #FF0000}
    .Style27 {color: #8CC8D5}
    #Layer32 {
    	position:absolute;
    	width:1024px;
    	height:150px;
    	z-index:107;
    	left: 0px;
    	top: 0px;
    	background-color: #002949;
    }
    #Layer33 {
    	position:absolute;
    	width:1px;
    	height:1000px;
    	z-index:108;
    	left: 215px;
    	top: 150px;
    	background-color: #8CC8D5;
    	visibility: visible;
    }
    #Layer34 {
    	position:absolute;
    	width:1px;
    	height:50px;
    	z-index:109;
    	left: 696px;
    	top: 1200px;
    	background-color: #8CC8D5;
    }
    .Style30 {font-size: 10px; color: #002949; }
    #Layer35 {
    	position:absolute;
    	width:200px;
    	height:115px;
    	z-index:110;
    }
    .Style31 {color: #FFCC33; font-weight: bold; font-size: 9px; }
    .Style32 {font-size: 9px}
    .Style33 {color: #002949; font-weight: bold;}
    -->
    </style>
    </head>
     
    <body>
    <div id="Layer32"><img src="img/header2.jpg" width="1024" height="151" /></div>
    <p align="center">&nbsp;</p>
    <div id="Layer4">
      <p>&nbsp;</p>
      <p>&nbsp;</p>
      <p>&nbsp;</p>
      <p>&nbsp;</p>
    </div>
    <div id="Layer5">
      <p>&nbsp;</p>
      <p>&nbsp;</p>
      <p>&nbsp;</p>
      <p align="center" class="Style18"><u>LES DUNES DE L'OCEAN </u></p>
      <p align="center" class="Style33">&nbsp;</p>
      <p align="center" class="Style33"><img src="img/operations/avatar dunes ocean.jpg" alt="Dunes" width="200" height="150" /></p>
      <p align="center" class="Style18">&nbsp;</p>
      <p class="Style30"><strong><u>SITUATION</u></strong></p>
      <p align="justify" class="Style30">La r&eacute;sidence &laquo;&nbsp;les Dunes de l&rsquo;Oc&eacute;an&nbsp;&raquo; est un  ensemble immobilier de grand standing compos&eacute; de 37 appartements&nbsp; sur trois immeubles. Sa situation dans le  quartier de Bellepierre au dessus du centre ville de Saint-Denis lui conf&egrave;re  une vue dominante exceptionnelle sur la mer et la ville.</p>
      <p align="justify" class="Style30"><strong><u>IMMOBILIER</u></strong></p>
      <p align="justify" class="Style30">Les 37 appartements (du T1 au T3) sont tous dot&eacute;s de  varangue ou terrasse et de parking sous-sol avec une vue panoramique sur la  mer.<br />
        La situation exceptionnelle associ&eacute;e &agrave; une r&eacute;alisation de  grande qualit&eacute; permet d&rsquo;&ecirc;tre tr&egrave;s optimiste quant &agrave; la location et la revente  future.</p>
      <p align="justify" class="Style30"><strong><u>PRIX &ndash; LIVRAISON</u></strong></p>
      <p align="justify" class="Style30">Le prix moyen est de 3900 &euro;/m&sup2; (par rapport &agrave; la surface  utile plus pond&eacute;ration des terrasses) pour une livraison en D.A.T. 2007 avec  remise des cl&eacute;s 3&egrave;me trimestre 2007.</p>
      <p align="justify" class="Style30"><strong><u>REALISATEUR </u></strong></p>
      <div align="justify" class="Style30">
        <p>Promoteur  SCCV Les Dunes de l&rsquo;Oc&eacute;an &agrave; Ste Clotilde filiale de SHEPHERD IMMOBILIER</p>
        <p>Architecte&nbsp;:  Carole PAYET</p>
        <p>Gestionnaire&nbsp;:  Outre Mer Immobilier &agrave; Ste Clotilde filiale de SHEPHERD IMMOBILIER</p>
        <p>Notaire&nbsp;:  Me WELMANT &agrave; St Andr&eacute;</p>
        <p>Commercialisation&nbsp;:  IMMOLOGIC&nbsp; &agrave; Saint-Jean Groupe FINANCE ET  FUTUR SAS</p>
      </div>
      <p align="justify" class="Style30"><strong><u>FISCALITE</u></strong></p>
      <p align="justify" class="Style30">Le projet &laquo;&nbsp;les Dunes de l&rsquo;Oc&eacute;an&nbsp;&raquo; s&rsquo;inscrit dans  le cadre fiscal &laquo;&nbsp;loi Girardin&nbsp;&raquo; applicable d&egrave;s 2007 l&rsquo;investisseur  pourra choisir entre&nbsp;: </p>
      <p align="justify" class="Style30">Secteur  interm&eacute;diaire&nbsp;: r&eacute;duction d&rsquo;imp&ocirc;t de 50% de 2024 &euro; par m&sup2; de surface utile  soit 1012 &euro;/m&sup2; de surface utile r&eacute;partie sur 5 ans (soit 202,40&euro; /m&sup2; S.U./an).  Ceci avec des contraintes de loyers et de ressources locataire plafonn&eacute;es (voir  fiche fiscalit&eacute;).</p>
      <p align="justify" class="Style30">Secteur libre&nbsp;: r&eacute;duction d&rsquo;imp&ocirc;t de 40% de 2024 par m&sup2; de surface  utile soit 809,60 &euro;/m&sup2; de surface utile r&eacute;partie sur 5 ans (soit 161,92 &euro; /m&sup2;  S.U./ an) sans contraintes de plafonnement (voir fiche fiscalit&eacute;). </p>
      <p align="justify" class="Style30">&nbsp;</p>
      <p align="justify" class="Style18"><a href="formulaire.html" class="Style33"><u>Si vous voulez en savoir plus concernant ce programme utilisez le formulaire de contact que vous pouvez trouver ici ! </u></a></p>
      <p align="justify" class="Style18">&nbsp;</p>
      <div align="center"><span class="Style25"><a href="operations.html" class="Style33">RETOUR</a></span></div>
      <p align="center" class="Style18">&nbsp;</p>
      <p align="center" class="Style18">&nbsp;</p>
      <div align="justify" class="Style25"></div>
      <p align="center" class="Style18">&nbsp;</p>
      <p class="Style25">&nbsp;</p>
      <p>&nbsp;</p>
    </div>
    <div id="Layer6"></div>
    <div id="Layer7"></div>
    <div id="Layer27"></div>
    <div id="menu">
    	<dl>
     
    		<dt onmouseover="javascript:montre('smenu1');"><a href="" title="Retour à l'accueil" class="Style30">Présentation</a></dt>
     
    		<dd id="smenu1" onmouseover="javascript:montre('smenu1');" onmouseout="javascript:montre('');">
    			<ul>
    				<li><a href="index.html">Accueil</a></li>
    				<li><a href="realisations.html">Les réalisations</a></li>
    				<li><a href="placements.html">Les placements financiers</a></li>
    				<li><a href="defiscalisation.html">La défiscalisation</a></li>
    		  	</ul>
    	</dl>
     
    	<dl>			
    		<dt onmouseover="javascript:montre('smenu2');"><a href="" title="Opérations" class="Style17 Style25">Nos opérations</a></dt>
     
    		<dd id="smenu2" onmouseover="javascript:montre('smenu2');" onmouseout="javascript:montre('');">
    			<ul>
    				<li><a href="operations.html">Outre-mer</a></li>
    				<li><a href="toulouse.html">Toulouse</a></li>
    				<li><a href="biarritz.html">Biarritz</a></li>
    		  	</ul>
    		</dd>
    	</dl>	
     
    	<dl>	
    		<dt onmouseover="javascript:montre('smenu3');"><a href="" title="Contact" class="Style30">Contactez-nous</a></dt>
     
    		<dd id="smenu3" onmouseover="javascript:montre('smenu3');" onmouseout="javascript:montre('');">
    			<ul>
    				<li><a href="formulaire.html">Formulaire</a></li>
    				<li><a href="coordonnees.html">Coordonnées</a></li>
    			</ul>
    	  </dd>
    	</dl>
     
    	<dl>	
    		<dt onmouseover="javascript:montre('smenu4');"><a href="" title="Espace Privé" class="Style30">Partenaires</a></dt>
    			<dd id="smenu4" onmouseover="javascript:montre('smenu4');" onmouseout="javascript:montre('');">
    			<ul>
    				<li><a href="/private/index.html">Accès partenaires</a></li>
    			</ul>
    			</dd>
    	</dl>
    </div>
    <p>&nbsp;</p>
    <div id="Layer24">
      <p align="center" class="Style12"><a href="operations.html" class="Style12"><img src="img/operations/dunes.jpg" width="60" height="45" /></a></p>
      <p align="center" class="Style12"><a href="operations.html" class="Style31">Découvrez nos dernières opérations dans le cadre de la loi Girardin !</a></p>
    </div>
    <div class="Style26" id="Layer31">
      <div align="center"><span class="Style32"><a href="map.html" class="Style27">Plan du site</a> <span class="Style27">-</span></span> <span class="Style32"><a href="mentions.html" class="Style27">Mentions l&eacute;gales</a> </span></div>
    </div>
    <div id="Layer33"></div>
    <div id="Layer34"></div>
    </body>
    </html>

  2. #2
    Membre éclairé Avatar de mussara
    Inscrit en
    Novembre 2004
    Messages
    442
    Détails du profil
    Informations personnelles :
    Âge : 57

    Informations forums :
    Inscription : Novembre 2004
    Messages : 442
    Par défaut
    quelle est la différence à voir? car sous FF 2.0.1 et sous IE7 je n'en vois pas!!!

Discussions similaires

  1. Différence entre un "bidouilleur" et un Pro ?
    Par christ_mallet dans le forum Débats sur le développement - Le Best Of
    Réponses: 290
    Dernier message: 28/11/2011, 10h53
  2. Différence de juxtaposition/superposition entre IE7 et FF
    Par Invité dans le forum Mise en page CSS
    Réponses: 6
    Dernier message: 02/04/2008, 01h24
  3. Différence entre TCP, UDP, ICMP
    Par GliGli dans le forum Développement
    Réponses: 1
    Dernier message: 13/09/2002, 08h25
  4. Différences entre jmp, jz, jnz, etc
    Par christbilale dans le forum Assembleur
    Réponses: 3
    Dernier message: 05/07/2002, 15h09
  5. Réponses: 3
    Dernier message: 07/05/2002, 16h06

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