Subversion Repositories Sites.tela-botanica.org

Rev

Rev 814 | Rev 816 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
801 gduche 1
/* STYLE COMMUN */ /* D�finition des polices exotiques */
2
	/* Helveticaneue est utilis�e pour les grands textes d�coratifs (ex:mots cl�s).
3
   Pour windows, elle est remplac�e par la police Helveticaneue2 */
4
@font-face {
5
	font-family:Helveticaneue;
6
	src:url('/commun/polices/helvetica_light.ttf');}
7
@font-face {
8
	font-family:Helveticaneue2;
9
	src:url('/commun/polices/helvetica_light.eot');}
10
/*+-----------------------------------------------------------------------------------------------------------------+*/
11
/* Red�finition des styles par d�faut des balises */
12
body {
13
	margin:0;
14
	padding:0;
15
	font-family:arial;
16
	font-weight:normal;
17
	font-size:12px;
18
	color:black;}
19
img, form, td, div, a, h1, h2 {
20
	padding:0;
21
	border:0;
22
	text-decoration:none;}
23
ul, form, li, td, div, a {
24
	margin:0;}
25
h1, h2, h3, h4 {
26
	font-weight:bold;
27
	letter-spacing:0;}
28
h1 {
29
	padding:0 0 0 25px;
30
	margin:20px 0 10px 0;
31
	font-size:15px;
32
	text-transform:uppercase;
33
	color:#fd8c13;}
34
h2 {
35
	margin:20px 0 12px 0;
36
	font-size:13px;
37
	text-transform:uppercase;
38
	color:#FD8C13;}
39
h3 {
40
	margin:20px 0 12px;
41
	font-size:14px;
42
	color:#6C6865;}
43
h4 {
44
	margin:2px 2px 2px 0;
45
	font-size:11px;
46
	font-weight:normal;
47
	color:#6C6865;}
48
p {
49
	font-size:12px;
50
	line-height:18px;
51
	text-align:justify;}
52
strong, b {
53
	font-weight:bold;
54
	color:#222222;}
55
hr {
56
	border:0;
57
	border-bottom:1px dotted #C2C0AD;}
58
/* Pr�sentation des listes de d�finitions */
59
dl {
60
	width:100%;}
61
dt {
62
	float:left;
63
	font-weight:bold;
64
	text-align:top left;
65
	margin-right:0.3em;}
66
dd {
67
	width:auto;
68
	margin:0.5em 0;}
69
/*+-----------------------------------------------------------------------------------------------------------------+*/
70
/* Liens */
71
a {
72
	color:#7B9C35;
73
	border-bottom:1px solid transparent;}/* �vite l'effet de d�calage. */
74
a:hover {
75
	color:#FD8C13;
76
	border-bottom:1px dotted #7B9C35;}
77
a.lien-ext:after {
78
	content:" "url(/sites/commun/generique/images/icones/fleche_externe.png);}
79
a.pdf:before {
80
	content:url(/sites/commun/generique/icones/fichier_pdf.png)" ";}
81
a[href ^="mailto:"]:after  {/* CSS3 : ajout d'un espace entre href et ^ pour konqueror */
82
	content:" "url(/sites/commun/generique/images/icones/mail.png);}
83
/*+-----------------------------------------------------------------------------------------------------------------+*/
84
/* Classes & couleurs */
85
.icone-erable {
86
	display:inline-block;
87
	line-height:30px;
88
	padding-left:30px;
89
	background:url("/sites/commun/generique/images/graphisme/icone_erable_blanc_vert.png") no-repeat scroll 0 center transparent;}
90
.nodisplay {
91
	display:none;}
92
.hidden {
93
	visibility:hidden;}
94
.spacer125 {
95
	width:125px;
96
	float:left;}
97
.cadreRondVert h1 {
98
	margin:0 0 10px 0;}
99
.cadreRondVert {
100
	width:685px;
101
	float:left;
102
	margin-bottom:20px;
103
	background-color:#eaedcd;
104
	-moz-border-radius:10px;
105
	-webkit-border-radius:10px;
106
	border-radius:10px;
107
	-moz-box-shadow:2px 2px 5px #aaa;
108
	-webkit-box-shadow:7px 7px 11px #aaa;
109
	box-shadow:7px 7px 11px #555;
110
	filter:progid:DXImageTransform.Microsoft.Shadow(color='#aaaaaa', Direction=135, Strength=4);/* pour ie8 */
111
	zoom:1;/* pour ie8 */
112
	padding:8px;}
113
.cadreRondGris h1 {
114
	margin:0 0 10px 0;}
115
.cadreRondGris h3 {
116
	margin:0;}
117
.cadreRondGris {
118
	width:685px;
119
	float:left;
120
	margin-top:20px;
121
	background-color:#e5e4d4;
122
	-moz-border-radius:10px;
123
	-webkit-border-radius:10px;
124
	border-radius:10px;
125
	-moz-box-shadow:2px 2px 5px #aaa;
126
	-webkit-box-shadow:7px 7px 11px #aaa;
127
	box-shadow:7px 7px 11px #555;
128
	filter:progid:DXImageTransform.Microsoft.Shadow(color='#aaaaaa', Direction=135, Strength=4);/* pour ie8 */
129
	zoom:1;/* pour ie8 */
130
	padding:8px;}
131
.floatLeft {
132
	float:left;}
133
.notext {
134
	display:none;
135
	left:-5000px;
136
	top:-5000px;
137
	text-indent:-5000px;}
138
.petitcarre {
139
	padding-left:15px;
140
	background:url(../images/petitCarre.jpg) no-repeat 5px 4px;}
141
.troiscarre {
142
	padding-left:30px;
143
	background:url(../images/troisCarre.png) no-repeat 5px 5px;}
144
#contenu .puceFleche, #zone_contenu_corps .puceFleche, .puceFleche {
145
	padding:10px 0 0 30px;
146
	background:url(/sites/commun/generique/images/traitTela.jpg) no-repeat 0 6px;}
814 gduche 147
 
801 gduche 148
.champs {
149
	font-family:arial;
150
	font-size:11px;
151
	background-color:#fff;
152
	border:dotted 1px #7b9c35;
153
	color:#3a3633;
154
	margin-bottom:7px;}
155
.champs2 {
156
	font-family:arial;
157
	font-size:11px;
158
	color:#3a3633;}
159
.ok {
160
	font-family:arial;
161
	font-size:11px;
162
	font-weight:bold;
163
	background-color:#fff;
164
	border:dotted 1px #7b9c35;
165
	color:#fd8c13;
166
	margin-left:242px;
167
	font-variant:small-caps;}
168
.clear,.nettoyage {
169
	clear:both;}
170
/* Cadre rond gris :mise en page */
171
.cadreRondGris .colonneGauche,.cadreRondVert .colonneGauche {
172
	width:320px;
173
	padding:20px;
174
	border-right:1px dotted #959486;
175
	float:left;}
176
.cadreRondGris .colonneDroite,.cadreRondVert .colonneDroite {
177
	width:284px;
178
	float:left;
179
	padding:18px;}
180
/* Taille des cadres */
815 gduche 181
.demi {
182
	width:50%;
183
	}
184
 
185
.tiers {
186
	width:33%
187
	}
188
 
189
.deux-tiers {
190
	width:66%;
191
	}
192
 
801 gduche 193
.plein {
194
	width:620px;}
195
/* Typographies */
196
.orange {
197
	color:#fd8c13;
198
	font-family:arial;}
199
p.orange {
200
	line-height:12px;}
201
.blanc {
202
	color:#fff;}
203
p.blanc {
204
	font-size:11px;
205
	line-height:12px;}
206
.vertpetit {
207
	color:#7b9c35;
208
	font-family:arial;
209
	font-size:11px;
210
	font-weight:bold;}
211
.grispetit {
212
	color:#3a3633;
213
	font-family:arial;
214
	font-size:11px;
215
	font-weight:bold;}
216
.gris {
217
	color:#3a3633;
218
	font-family:arial;
219
	font-size:12px;}
220
.overflow-hidden {
221
	overflow:hidden;}
222
#contenu a {
223
	color:#7B9C35;}
224
#zone_contenu_corps h2 a, #zone_contenu_corps h1 a, #contenu h2 a, #contenu h1 a {
225
	color:#FD8C13;}
226
.boutonJaune {
227
	background:url(/sites/commun/generique/images/telaBlancJaune.png) no-repeat #ECCB12;
228
	padding:4px 10px 4px 30px;
229
	-moz-border-radius:10px;
230
	-webkit-border-radius:10px;
231
	border-radius:10px;
232
	color:#6C6865;
233
	font-family:helveticaneue;
234
	font-size:15px;}
235
#zone_contenu_corps h1, #contenu h1 {
236
	background:url(../images/troisCarre.png) no-repeat 0 5px;}
237
.ajout_2point dt:after {
238
	content:" :";}
239
/*+-----------------------------------------------------------------------------------------------------------------+*/
240
/* Tableau :encadr� */
241
.table_cadre {
242
	border:1px solid #9ac342;
243
	border-collapse:collapse;}
244
.table_cadre thead, .table_cadre tfoot {
245
	background-color:#EEE;
246
	border:1px solid #9ac342;}
247
.table_cadre tbody {
248
	background-color:#FFF;
249
	border:1px solid #9ac342;}
250
.table_cadre th {
251
	font-family:monospace;
252
	border:1px dotted #9ac342;
253
	padding:5px;
254
	background-color:#EEE;}
255
.table_cadre td {
256
	font-family:sans-serif;
257
	font-size:80%;
258
	border:1px dotted #9ac342;
259
	padding:5px;
260
	text-align:left;}
261
.table_cadre caption {
262
	font-family:sans-serif;}
263
.table_cadre th[title]:after {
264
	content:" "url(/sites/commun/generique/images/icones/aide.png);}
265
/*+-----------------------------------------------------------------------------------------------------------------+*/
266
/* D2fintion des styles de l'applette syndication */
267
.contenu_RSS h3 {
268
	margin:0;
269
	font-size:12px;}
270
.contenu_RSS h4 {
271
	font-size:11px;
272
	font-weight:normal;}
273
#contenu h2:before, #zone_contenu_corps h2:before {
274
	content:"> ";}
275
#zone_contenu_corps .traitTela li {
276
	list-style:none;
277
	padding:10px 0 0 30px;
278
	background:url(/sites/commun/generique/images/traitTela.jpg) no-repeat 0 6px;
279
	color:#3a3633;
280
	font-family:arial;
281
	font-size:11px;
282
	font-weight:bold;}
283
.traitTela li a {
284
	color:#3a3633;
285
	font-family:arial;
286
	font-size:11px;
287
	font-weight:bold;}
288
/* Ombres */
289
.ombre2 {
290
	-moz-box-shadow:4px 4px 7px #aaa;
291
	-webkit-box-shadow:7px 7px 11px #aaa;
292
	box-shadow:7px 7px 11px #555;
293
	filter:progid:DXImageTransform.Microsoft.Shadow(color='#aaaaaa', Direction=135, Strength=4);/* pour ie8 */}
294
/*+-----------------------------------------------------------------------------------------------------------------+*/
295
/* Arrondis */
296
.arrondi7 {
297
	-moz-border-radius:7px;
298
	-webkit-border-radius:7px;
299
	border-radius:7px;}
300
.arrondi30 {
301
	-moz-border-radius:30px;
302
	-webkit-border-radius:30px;
303
	border-radius:30px;}
304
/*+-----------------------------------------------------------------------------------------------------------------+*/
305
/* Menu sup�rieur */
306
/* TODO :mettre les petits carr�s � la bonne place */
307
#zone-menu-haut {
308
	position:absolute;
309
	top:0;
310
	width:880px;
311
	height:12px;
312
	margin:8px auto 0 0;
313
	text-align:center;
314
	font-family:arial;
315
	font-size:12px;
316
	color:#3a3633;}
317
#zone-menu-haut ul {
318
	list-style-image:url(../images/petitCarre.jpg);}
319
#zone-menu-haut ul li {
320
	float:left;}
321
#zone-visiteur ul {
322
	padding:0;}
323
#zone-visiteur li {
324
	text-align:left;
325
	display:block;
326
	width:130px;
327
	padding-left:10px;
328
	background:url(../images/petitCarre.jpg) no-repeat left center;}
329
#zone-acces-rapide {
330
	float:right;}
331
#zone-menu-haut #seconnecter {
332
	margin:0;
333
	padding-left:10px;}
334
#zone-menu-haut #don {
335
	width:110px;
336
	margin:0;}
337
#zone-menu-haut #lettre {
338
	width:120px;
339
	margin:0;}
340
#zone-menu-haut #recherche, .drapeau{
341
list-style:none;}
342
#zone-menu-haut #recherche {
343
	width:185px;
344
	padding-left:5px;
345
	text-align:left;}
346
#zone-menu-haut #recherche fieldset {
347
	width:185px;
348
	padding:0;
349
	border-style:none;}
350
#zone-menu-haut #recherche input {
351
	height:13px;
352
	width:150px;
353
	font-size:12px;
354
	margin:-15px 0 0 -2px;}
355
#zone-menu-haut #recherche legend, #recherche label {
356
	display:none;}
357
#zone-menu-haut #recherche #more_ok {
358
	width:25px;
359
	height:20px;}
360
#zone-menu-haut .drapeau {
361
	width:15px;
362
	margin-left:10px;}
363
#zone-menu-haut a {
364
	font-family:arial;
365
	font-size:12px;}
366
#zone-menu-haut a:link, #zone-menu-haut a:visited, #zone-menu-haut a:active {
367
	color:#7b9c35;}
368
#zone-menu-haut a:hover, #zone-menu-haut a:focus {
369
	color:#fd8c13;}
370
/*+-----------------------------------------------------------------------------------------------------------------+*/
371
#zone-principale {
372
	width:960px;
373
	margin-left:auto;
374
	margin-right:auto}
375
/*+-----------------------------------------------------------------------------------------------------------------+*/
376
/* Logo Tela Botanica */
377
#zone-logo-tela {
378
	position:absolute;
379
 
380
	margin-top:3px;
381
	background:none;}
382
#zone-logo-tela img:hover {
383
  border:1px dotted white;
384
  width:144px;
385
  height:98px;}
386
#zone-logo-tela a:hover:after {
387
  font-size:12px;
388
  color:white;
389
  content:" "attr(title)" ";}
390
/*+-----------------------------------------------------------------------------------------------------------------+*/
391
.zone-haut {
392
	height:123px;
393
	width:885px;
394
	margin:32px 0 0 0;
395
	text-align:center;}
396
.zone-haut h2 {
397
	position:absolute;
398
	top:135px;
399
	margin:0 0 0 90px;
400
 
401
	font-size:16px;
402
	font-family:arial;
403
	text-transform:none;
404
	color:white;}
405
/*+-----------------------------------------------------------------------------------------------------------------+*/
406
.motsclefs {
407
	position:absolute;
408
	/* N�cessaire pour IE */
409
	width:0;
410
	font-family:Helveticaneue;
411
	letter-spacing:-1px;
412
	font-weight:lighter;}
413
.motsclefs h3 {
414
	position:absolute;
415
	left:200px;
416
	margin-top:17px;
417
	font-family:helveticaneue;
418
	font-size:60px;
419
	font-weight:lighter;
420
	color:#5c5950;}
421
.motsclefs h4 {
422
	margin-top:60px;
423
	margin-left:540px;
424
	text-align:left;
425
	font-family:helveticaneue;
426
	color:#f2f2f2;}
427
.motsclefs span {
428
	position:absolute;
429
	top:85px;
430
	font-weight:normal;
431
	text-transform:lowercase;}
432
/*+-----------------------------------------------------------------------------------------------------------------+*/
433
/** Menu de navigation entre univers **/
434
#zone-menu-navigation {
435
	width:900px;
436
	margin:10px 0 10px 15px;
437
	float:left;
438
	text-decoration:none;
439
	text-align:center;
440
	font-size:14px;
441
	font-family:arial;
442
	line-height:20px;}
443
#zone-menu-navigation a:link,#zone-menu-navigation a:visited,#zone-menu-navigation a:active {
444
	text-decoration:none;}
445
#zone-menu-navigation .menuHautActif a {
446
	color:#6C6865;
447
	width:20px;
448
	font-weight:bold;
449
	font-size:14px;
450
	text-transform:uppercase;
451
	padding-bottom:5px;
452
	border-bottom:4px solid grey;}
453
#zone-menu-navigation a {
454
	color:white;}
455
#zone-menu-navigation ul {
456
	padding:0;}
457
#zone-menu-navigation ul li {
458
	float:left;
459
	width:160px;
460
	height:20px;
461
	margin-right:15px;
462
	text-align:center;
463
	text-decoration:none;
464
	list-style-type:none;
465
	padding:0;
466
	zoom:1; /* pour ie8 */}
467
#zone-menu-navigation a:hover,#zone-menu-navigation a:focus {
468
	font-weight:bold;
469
	color:#6C6865;
470
	text-decoration:none;
471
	text-transform:uppercase;
472
	padding-bottom:5px;
473
	border-bottom:4px solid grey;
474
	-moz-border-radius:30px;
475
	-webkit-border-radius:30px;
476
	border-radius:30px;}
477
/*+-----------------------------------------------------------------------------------------------------------------+*/
478
/* Couleurs des diff�rents menus */
479
#menuAccueil {
480
	background:#fd8c13;}
481
#menuBotanique {
482
	background:#9ac243;}
483
#menuActualites {
484
	background:#c2c0ad;}
485
#menuReseau {
486
	background:#e16039;}
487
#menuProjets {
488
	background:#a89d80;}
489
/*+-----------------------------------------------------------------------------------------------------------------+*/
490
/* Menus */
491
#zone-menu-gauche {
492
	font-family:arial;
493
	font-size:12px;
494
	width:170px;
495
	margin-top:10px;
496
	border-left:1px solid #7b9c35;
497
	padding-left:2px;}
498
#zone-menu-gauche ul {
499
	padding:0;
500
	list-style:none;}
501
#zone-menu-gauche ul li {
502
	padding:0 0 5px 0;}
503
#zone-menu-gauche ul li a {
504
	margin:0;
505
	padding:2px 0 2px 14px;
506
	border-top:1px solid #7b9c35;
507
	border-bottom:1px solid #7b9c35;
508
	border-right:1px solid #7b9c35;
509
	-moz-border-radius:7px;
510
	-webkit-border-radius:7px;
511
	border-radius:7px;
512
	font-weight:bold;
513
	color:#7b9c35;
514
	display:block;
515
	background:url(../images/petitCarre.jpg) no-repeat 3px 7px;}
516
#zone-menu-gauche ul li ul {
517
	list-style:disc inside;
518
	color:#7b9c35;
519
	padding:0 0 0 15px;}
520
#zone-menu-gauche ul li ul li {
521
	padding:0;}
522
#zone-menu-gauche ul li ul li a {
523
	border:none;
524
	background:none;
525
	padding:0;
526
	display:inline;
527
	font-weight:normal;}
528
#zone-menu-gauche .menu_actif a {
529
	color:#FD8C13;}
530
#zone-menu-gauche .menu_inactif a {
531
	color:#7b9c35;
532
	font-weight:normal;}
533
#zone-menu-gauche ul.menu_deroulant_n1 > li > a {
534
	font-weight:bold;}
535
#zone-menu-gauche a:hover {
536
	color:#FD8C13;}
537
/*+-----------------------------------------------------------------------------------------------------------------+*/
538
#cheminDeFer {
539
	width:500px;
540
	margin-left:34px;
541
	margin-top:12px;
542
	margin-bottom:10px;}
543
/*+-----------------------------------------------------------------------------------------------------------------+*/
544
/** Zone menu connexion **/
545
#zone-menu-connexion {
546
	height:122px;
547
	width:178px;
548
	padding:25px 0 0 0;
549
	font-family:arial;
550
	text-align:right;
551
	font-size:11px;
552
	background:url(../images/carreorange.png) no-repeat 9px -9px;}
553
#zone-menu-connexion fieldset {
554
	text-align:left;
555
	width:165px;
556
	background:white;
557
	padding:28px 0 0 10px;
558
	border:solid 1px #99C242;
559
	text-decoration:none;
560
	-moz-border-radius:0 10px 10px 10px;
561
	-webkit-border-radius:0 10px 10px 10px;
562
	border-radius:0 10px 10px 10px;}
563
#zone-menu-connexion fieldset input {
564
	font-size:11px;}
565
#zone-menu-connexion fieldset p {
566
	text-align:left;}
567
#zone-menu-connexion h3 {
568
	position:absolute;
569
	width:162px;
570
	padding:5px 5px 5px 9px;
571
	margin:-29px 0 0 -10px;
572
	color:white;
573
	text-align:left;
574
	text-transform:uppercase;
575
	font-size:12px;
576
	background-color:#99C242;
577
	-moz-border-radius:0 10px 0 0;
578
	-webkit-border-radius:0 10px 0 0;
579
	border-radius:0 10px 0 0;}
580
#zone-menu-connexion fieldset label {
581
	position:relative;
582
	width:12em;
583
	display:block;
584
	margin:.1em 0;}
585
#zone-menu-connexion label input {
586
	position:absolute;
587
	left:100%;
588
	top:0;
589
	width:15px;}
590
#zone-menu-connexion #username,#zone-menu-connexion #password {
591
	width:80px;}
592
#zone-menu-connexion fieldset #connexion {
593
	border:solid 1px #8eb533;
594
	padding:0;}
595
#zone-menu-connexion #persistant,#zone-menu-connexion #persistant_label {
596
	float:left;
597
	margin-left:0;}
598
#zone-menu-connexion #persistant_label {
599
	padding-top:2px;}
600
#zone-menu-connexion #colonneDroite {
601
	padding:15px 0;}
602
/*+-----------------------------------------------------------------------------------------------------------------+*/
603
/** Menu lat�ral :Zone gauche **/
604
#zone-gauche {
605
	width:170px;
606
	float:left;
607
	margin-left:0;
608
	padding-bottom:100px;}
609
/*+-----------------------------------------------------------------------------------------------------------------+*/
610
/** Zone principale :zone droite **/
611
#zone-droite {
612
	width:730px;
613
	margin-left:20px;
614
	float:left;
615
	height:auto;
616
	overflow:hidden;}
617
#contenu {
618
	border:none;}
619
#zone_contenu_corps {
620
	border:none;
621
	width:690px}
622
#zone_contenu_corps li,#contenu li {
623
	list-style-image:url(/sites/commun/generique/images/graphisme/petit_carre.png);
624
	line-height:18px;}
625
#zone_contenu_corps li ul li,#contenu li ul li {
626
	list-style:none;
627
	background:url(../images/petitCarreContour.jpg) no-repeat 10px 6px;
628
	padding-left:25px;
629
	line-height:18px;}
630
#zone_contenu_corps form li,#contenu form li {
631
	background:none;}
632
#zone_contenu_corps .alpha,#contenu .alpha {
633
	background:none;
634
	padding-left:25px;
635
	list-style-type:upper-alpha;}
636
#zone_contenu_corps .listeSimple li,#contenu .listeSimple li {
637
	list-style:inherit;
638
	background:none;
639
	padding:0;}
640
#zone_contenu_corps .listeNumerique li,#contenu .listeNumerique li {
641
	list-style:upper-alpha inside;
642
	background:none;
643
	padding:0;}
644
#zone_contenu_corps ul li ul {
645
	margin-bottom:10px;}
646
.filetVert {
647
	width:300px;
648
	margin-left:0;
649
	margin-top:5px;
650
	padding:20px;
651
	border:1px solid #9ac342;
652
	-moz-border-radius:10px;
653
	float:left;}
654
.filetVert h1 {
655
	margin:0 0 10px 0;}
656
/*+-----------------------------------------------------------------------------------------------------------------+*/
657
/*Onglets*/
658
#zone_contenu_corps #BAZ_menu, #zone_contenu_corps .menu_classique_n3, .onglets {
659
	display:inline-block;
660
	padding:0;}
661
#zone_contenu_corps #BAZ_menu a, #zone_contenu_corps .menu_classique_n3 a, #zone_contenu_corps .onglets li a, #zone_contenu_corps .onglets li {
662
	list-style-image:none;
663
	padding:5px 3px 5px 3px;
664
	margin-top:2px;
665
	background-color:#C2C0AD;}
666
#zone_contenu_corps #BAZ_menu li, #zone_contenu_corps .menu_classique_n3 li, .onglets li {
667
	cursor:pointer;
668
	float:left;
669
	list-style:none;
670
	margin-right:5px;
671
	font-size:13px;
672
	text-transform:uppercase;
673
	letter-spacing:0;
674
	padding:5px 2px 5px 5px;
675
	margin:0 1px 0 0;
676
	background:none no-repeat 5px 9px #C2C0AD;
677
	color:#fd8c13;
678
	border:1px solid #c2c0ad;
679
	border-bottom:0px solid #c2c0ad;
680
	text-decoration:none;
681
	-moz-border-radius:10px 10px 0 0;
682
	-webkit-border-radius:10px 10px 0 0;
683
	border-radius:10px 10px 0 0;}
684
#zone_contenu_corps #BAZ_menu .menu_actif a, #zone_contenu_corps .menu_classique_n3 .menu_actif a, #zone_contenu_corps .onglets .menu_actif a {
685
	background:none;
686
	color:#FD8C13;
687
	font-weight:bold;}
688
#zone_contenu_corps #BAZ_menu .menu_actif, #zone_contenu_corps .menu_classique_n3 .menu_actif, #zone_contenu_corps .onglets .menu_actif {
689
	background:none;
690
	border:1px solid #C2C0AD;
691
	border-bottom:0 solid #c2c0ad;
692
	text-decoration:none;
693
	-moz-border-radius:10px 10px 0 0;
694
	-webkit-border-radius:10px 10px 0 0; /* pour Chrome */
695
	border-radius:10px 10px 0 0;}
696
#zone_contenu_corps #BAZ_menu .menu_inactif a,#zone_contenu_corps .menu_classique_n3 .menu_inactif a,#zone_contenu_corps .menu_classique_n3 h1,#zone_contenu_corps .onglets .menu_inactif a,#zone_contenu_corps .onglets h1 {
697
	color:#6C6865;}
698
#zone_contenu_corps #BAZ_menu .menu_actif h1,#zone_contenu_corps .menu_classique_n3 .menu_actif h1,.onglets .menu_actif h1 {
699
	color:#FD8C13;}
700
.cadreInvisible {
701
	float:left;
702
	margin-left:10px;
703
	margin-top:10px;}
704
.cadreInvisible h1 {
705
	margin:0 0 10px 0;}
706
.cadreRondOmbre {
707
	float:left;
708
	margin-bottom:10px;
709
	padding:20px;
710
	background-color:#fff;
711
	border:1px solid #fff;
712
	-moz-border-radius:10px;
713
	-webkit-border-radius:10px;
714
	border-radius:10px;
715
	-moz-box-shadow:2px 2px 9px #aaa;
716
	-webkit-box-shadow:7px 7px 11px #aaa;
717
	box-shadow:7px 7px 11px #555;
718
	filter:progid:DXImageTransform.Microsoft.Shadow(color='#aaaaaa', Direction=135, Strength=4 );/* pour ie8 */
719
	zoom:1;/* pour ie8 */}
720
.filetRouge {
721
	border:solid 1px red;}
722
#cartographieVolante {
723
	position:absolute;
724
	z-index:10;
725
	background:white;
726
	border:solid 1px #AAAAAA;
727
	padding:15px;
728
	margin:-300px 0 0 -300px;}
729
#cartographieVolante #masquerLaCarte {
730
	float:right;}
731
/*+-----------------------------------------------------------------------------------------------------------------+*/
732
/* Bandeau Projets */
733
#bandeauProjets {
734
	width:845px;
735
	margin:20px 0;
736
	border:dotted 1px #fd8c13;
737
	-moz-border-radius:10px;
738
	-webkit-border-radius:10px;
739
	border-radius:10px;
740
	float:left;
741
	padding-left:65px;}
742
#bandeauProjets ul {
743
	height:98px;
744
	padding:0px;
745
	list-style:none;
746
	font-family:arial;}
747
#bandeauProjets ul li {
748
	width:250px;
749
	margin-left:15px;
750
	border:double 1px orange;
751
	border-width:0 4px 0 0;
752
	display:inline;
753
	height:95px;
754
	float:left;}
755
#bandeauProjets ul li, #bandeauProjets ul li p {
756
	font-family:arial;
757
	font-size:10px;
758
	line-height:13px;}
759
#bandeauProjets ul li p {
760
	padding-right:2px;}
761
#bandeauProjets ul li a {
762
	color:#7B9C35;
763
	font-weight:bold;}
764
#bandeauProjets ul li h3 {
765
	padding:5px 0;
766
	margin:0;
767
	color:#fd8c13;}
768
#bandeauProjets ul li img {
769
	float:right;
770
	padding:10px;}
771
#bandeauProjets ul .bouton {
772
	width:20px;}
773
#boutonPrecedent,#boutonSuivant {
774
	position:absolute;}
775
#boutonPrecedent {
776
	margin-left:-66px;
777
	margin-top:-99px;
778
	height:100px;
779
	background:white;
780
	cursor:pointer;
781
	width:70px;
782
	border:dotted 1px #fd8c13;
783
	border-right-style:none;
784
	-moz-border-radius:10px 0 0 10px;
785
	-webkit-border-radius:10px 0 0 10px;
786
	border-radius:10px 0 0 10px;
787
	background:white url(../images/flecheGauche.jpg) no-repeat 5px 25px;}
788
#boutonSuivant {
789
	margin-left:799px;
790
	margin-top:-99px;
791
	width:30px;
792
	cursor:pointer;
793
	background:white url(../images/flecheDroite.jpg) no-repeat 15px 25px;
794
	padding:28px 8px 53px 8px;
795
	border:dotted 1px #fd8c13;
796
	border-left-style:none;
797
	-moz-border-radius:0 10px 10px 0;
798
	-webkit-border-radius:0 10px 10px 0;
799
	border-radius:0 10px 10px 0;}
800
/*+-----------------------------------------------------------------------------------------------------------------+*/
801
/** Zone-bas-page :footer **/
802
#zone-bas-page {
803
	width:960px;
804
	clear:both;}
805
#zone-bas-page div {
806
	width:900px;
807
	margin:20px 0 10px 0;
808
	text-align:center;}
809
#zone-bas-page div ul li {
810
	display:inline;
811
	margin-left:10px;
812
	padding:6px 0 0 20px;
813
	line-height:22px;
814
	text-align:center;
815
	font-size:12px;
816
	font-family:arial;
817
	text-decoration:none;
818
	list-style:none;}
819
#zone-bas-page #accueil {
820
	background:url(../images/accueil.png) no-repeat 0 2px;}
821
#zone-bas-page #faq {
822
	background:url(../images/faq.png) no-repeat 0 2px;}
823
#zone-bas-page #contact {
824
	background:url(../images/contact.png) no-repeat 0 2px;}
825
#zone-bas-page #plan {
826
	background:url(../images/plan.png) no-repeat 0 2px;}
827
#zone-bas-page #rss {
828
	background:url(../images/rss.png) no-repeat 0 2px;}
829
#zone-bas-page #telechargement {
830
	background:url(../images/telechargement.png) no-repeat 0 2px;}
831
#zone-bas-page #visite {
832
	background:url(../images/visite.png) no-repeat 0 2px;}
833
#zone-bas-page #mentions {
834
	background:url(../images/mentions.gif) no-repeat 0 2px;}
835
#zone-bas-page > div a:link, #zone-bas-page > div a:visited, #zone-bas-page > div a:active {
836
	font-weight:normal;
837
	color:#7b9c35;
838
	text-decoration:none;}
839
#zone-bas-page > div a:hover, #menupied a:focus {
840
	font-weight:normal;
841
	color:#fd8c13;
842
	text-decoration:none;}
843
/*+-----------------------------------------------------------------------------------------------------------------+*/
844
/** Contact Tela **/
845
#coordonees {
846
	width:905px;
847
	text-align:center;
848
	margin:auto;
849
	background:url(../../../commun/generique/images/petitCarre.jpg) no-repeat right;
850
	height:15px;}
851
#coordonees span {
852
	float:left;
853
	padding-left:15px;
854
	background:url(../../../commun/generique/images/petitCarre.jpg) no-repeat 5px 5px;
855
	font-family:arial;
856
	font-size:12px;
857
	font-weight:normal;
858
	font-style:normal;}
859
#coordonees a {
860
	font-family:arial;
861
	font-size:12px;
862
	text-align:justify;
863
	font-weight:normal;
864
	line-height:16px;
865
	list-style:none;}
866
#coordonees a:link, #coordonees a:visited, #coordonees a:active {
867
	color:#3a3633;}
868
#coordonees a:hover, #coordonees a:focus {
869
	color:#fd8c13;}
870
/*+-----------------------------------------------------------------------------------------------------------------+*/
871
/* Mise en page en colonne depuis www.1kbgrid.com */
872
/* = The 1Kb Grid = 12 columns, 60 pixels each, with 20 pixel gutter */
873
.grid_1 {
874
	width:60px;}
875
.grid_2 {
876
	width:140px;}
877
.grid_3 {
878
	width:220px;}
879
.grid_4 {
880
	width:300px;}
881
.grid_5 {
882
	width:380px;}
883
.grid_6 {
884
	width:460px;}
885
.grid_7 {
886
	width:540px;}
887
.grid_8 {
888
	width:620px;}
889
.grid_9 {
890
	width:700px;}
891
.grid_10 {
892
	width:780px;}
893
.grid_11 {
894
	width:860px;}
895
.grid_12 {
896
	width:940px;}
897
.column {
898
	margin:0 10px;
899
	overflow:hidden;
900
	float:left;
901
	display:inline;}
902
.row {
903
	width:960px;
904
	margin:0 auto;
905
	overflow:hidden;}
906
.row .row {
907
	margin:0 -10px;
908
	width:auto;
909
	display:inline-block;}