Subversion Repositories Sites.tela-botanica.org

Rev

Rev 815 | Rev 817 | 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 {
816 gduche 256
	font-family:arial;
801 gduche 257
	border:1px dotted #9ac342;
258
	padding:5px;
259
	text-align:left;}
260
.table_cadre caption {
261
	font-family:sans-serif;}
262
.table_cadre th[title]:after {
263
	content:" "url(/sites/commun/generique/images/icones/aide.png);}
264
/*+-----------------------------------------------------------------------------------------------------------------+*/
265
/* D2fintion des styles de l'applette syndication */
266
.contenu_RSS h3 {
267
	margin:0;
268
	font-size:12px;}
269
.contenu_RSS h4 {
270
	font-size:11px;
271
	font-weight:normal;}
272
#contenu h2:before, #zone_contenu_corps h2:before {
273
	content:"> ";}
274
#zone_contenu_corps .traitTela li {
275
	list-style:none;
276
	padding:10px 0 0 30px;
277
	background:url(/sites/commun/generique/images/traitTela.jpg) no-repeat 0 6px;
278
	color:#3a3633;
279
	font-family:arial;
280
	font-size:11px;
281
	font-weight:bold;}
282
.traitTela li a {
283
	color:#3a3633;
284
	font-family:arial;
285
	font-size:11px;
286
	font-weight:bold;}
287
/* Ombres */
288
.ombre2 {
289
	-moz-box-shadow:4px 4px 7px #aaa;
290
	-webkit-box-shadow:7px 7px 11px #aaa;
291
	box-shadow:7px 7px 11px #555;
292
	filter:progid:DXImageTransform.Microsoft.Shadow(color='#aaaaaa', Direction=135, Strength=4);/* pour ie8 */}
293
/*+-----------------------------------------------------------------------------------------------------------------+*/
294
/* Arrondis */
295
.arrondi7 {
296
	-moz-border-radius:7px;
297
	-webkit-border-radius:7px;
298
	border-radius:7px;}
299
.arrondi30 {
300
	-moz-border-radius:30px;
301
	-webkit-border-radius:30px;
302
	border-radius:30px;}
303
/*+-----------------------------------------------------------------------------------------------------------------+*/
304
/* Menu sup�rieur */
305
/* TODO :mettre les petits carr�s � la bonne place */
306
#zone-menu-haut {
307
	position:absolute;
308
	top:0;
309
	width:880px;
310
	height:12px;
311
	margin:8px auto 0 0;
312
	text-align:center;
313
	font-family:arial;
314
	font-size:12px;
315
	color:#3a3633;}
316
#zone-menu-haut ul {
317
	list-style-image:url(../images/petitCarre.jpg);}
318
#zone-menu-haut ul li {
319
	float:left;}
320
#zone-visiteur ul {
321
	padding:0;}
322
#zone-visiteur li {
323
	text-align:left;
324
	display:block;
325
	width:130px;
326
	padding-left:10px;
327
	background:url(../images/petitCarre.jpg) no-repeat left center;}
328
#zone-acces-rapide {
329
	float:right;}
330
#zone-menu-haut #seconnecter {
331
	margin:0;
332
	padding-left:10px;}
333
#zone-menu-haut #don {
334
	width:110px;
335
	margin:0;}
336
#zone-menu-haut #lettre {
337
	width:120px;
338
	margin:0;}
339
#zone-menu-haut #recherche, .drapeau{
340
list-style:none;}
341
#zone-menu-haut #recherche {
342
	width:185px;
343
	padding-left:5px;
344
	text-align:left;}
345
#zone-menu-haut #recherche fieldset {
346
	width:185px;
347
	padding:0;
348
	border-style:none;}
349
#zone-menu-haut #recherche input {
350
	height:13px;
351
	width:150px;
352
	font-size:12px;
353
	margin:-15px 0 0 -2px;}
354
#zone-menu-haut #recherche legend, #recherche label {
355
	display:none;}
356
#zone-menu-haut #recherche #more_ok {
357
	width:25px;
358
	height:20px;}
359
#zone-menu-haut .drapeau {
360
	width:15px;
361
	margin-left:10px;}
362
#zone-menu-haut a {
363
	font-family:arial;
364
	font-size:12px;}
365
#zone-menu-haut a:link, #zone-menu-haut a:visited, #zone-menu-haut a:active {
366
	color:#7b9c35;}
367
#zone-menu-haut a:hover, #zone-menu-haut a:focus {
368
	color:#fd8c13;}
369
/*+-----------------------------------------------------------------------------------------------------------------+*/
370
#zone-principale {
371
	width:960px;
372
	margin-left:auto;
373
	margin-right:auto}
374
/*+-----------------------------------------------------------------------------------------------------------------+*/
375
/* Logo Tela Botanica */
376
#zone-logo-tela {
377
	position:absolute;
378
 
379
	margin-top:3px;
380
	background:none;}
381
#zone-logo-tela img:hover {
382
  border:1px dotted white;
383
  width:144px;
384
  height:98px;}
385
#zone-logo-tela a:hover:after {
386
  font-size:12px;
387
  color:white;
388
  content:" "attr(title)" ";}
389
/*+-----------------------------------------------------------------------------------------------------------------+*/
390
.zone-haut {
391
	height:123px;
392
	width:885px;
393
	margin:32px 0 0 0;
394
	text-align:center;}
395
.zone-haut h2 {
396
	position:absolute;
397
	top:135px;
398
	margin:0 0 0 90px;
399
 
400
	font-size:16px;
401
	font-family:arial;
402
	text-transform:none;
403
	color:white;}
404
/*+-----------------------------------------------------------------------------------------------------------------+*/
405
.motsclefs {
406
	position:absolute;
407
	/* N�cessaire pour IE */
408
	width:0;
409
	font-family:Helveticaneue;
410
	letter-spacing:-1px;
411
	font-weight:lighter;}
412
.motsclefs h3 {
413
	position:absolute;
414
	left:200px;
415
	margin-top:17px;
416
	font-family:helveticaneue;
417
	font-size:60px;
418
	font-weight:lighter;
419
	color:#5c5950;}
420
.motsclefs h4 {
421
	margin-top:60px;
422
	margin-left:540px;
423
	text-align:left;
424
	font-family:helveticaneue;
425
	color:#f2f2f2;}
426
.motsclefs span {
427
	position:absolute;
428
	top:85px;
429
	font-weight:normal;
430
	text-transform:lowercase;}
431
/*+-----------------------------------------------------------------------------------------------------------------+*/
432
/** Menu de navigation entre univers **/
433
#zone-menu-navigation {
434
	width:900px;
435
	margin:10px 0 10px 15px;
436
	float:left;
437
	text-decoration:none;
438
	text-align:center;
439
	font-size:14px;
440
	font-family:arial;
441
	line-height:20px;}
442
#zone-menu-navigation a:link,#zone-menu-navigation a:visited,#zone-menu-navigation a:active {
443
	text-decoration:none;}
444
#zone-menu-navigation .menuHautActif a {
445
	color:#6C6865;
446
	width:20px;
447
	font-weight:bold;
448
	font-size:14px;
449
	text-transform:uppercase;
450
	padding-bottom:5px;
451
	border-bottom:4px solid grey;}
452
#zone-menu-navigation a {
453
	color:white;}
454
#zone-menu-navigation ul {
455
	padding:0;}
456
#zone-menu-navigation ul li {
457
	float:left;
458
	width:160px;
459
	height:20px;
460
	margin-right:15px;
461
	text-align:center;
462
	text-decoration:none;
463
	list-style-type:none;
464
	padding:0;
465
	zoom:1; /* pour ie8 */}
466
#zone-menu-navigation a:hover,#zone-menu-navigation a:focus {
467
	font-weight:bold;
468
	color:#6C6865;
469
	text-decoration:none;
470
	text-transform:uppercase;
471
	padding-bottom:5px;
472
	border-bottom:4px solid grey;
473
	-moz-border-radius:30px;
474
	-webkit-border-radius:30px;
475
	border-radius:30px;}
476
/*+-----------------------------------------------------------------------------------------------------------------+*/
477
/* Couleurs des diff�rents menus */
478
#menuAccueil {
479
	background:#fd8c13;}
480
#menuBotanique {
481
	background:#9ac243;}
482
#menuActualites {
483
	background:#c2c0ad;}
484
#menuReseau {
485
	background:#e16039;}
486
#menuProjets {
487
	background:#a89d80;}
488
/*+-----------------------------------------------------------------------------------------------------------------+*/
489
/* Menus */
490
#zone-menu-gauche {
491
	font-family:arial;
492
	font-size:12px;
493
	width:170px;
494
	margin-top:10px;
495
	border-left:1px solid #7b9c35;
496
	padding-left:2px;}
497
#zone-menu-gauche ul {
498
	padding:0;
499
	list-style:none;}
500
#zone-menu-gauche ul li {
501
	padding:0 0 5px 0;}
502
#zone-menu-gauche ul li a {
503
	margin:0;
504
	padding:2px 0 2px 14px;
505
	border-top:1px solid #7b9c35;
506
	border-bottom:1px solid #7b9c35;
507
	border-right:1px solid #7b9c35;
508
	-moz-border-radius:7px;
509
	-webkit-border-radius:7px;
510
	border-radius:7px;
511
	font-weight:bold;
512
	color:#7b9c35;
513
	display:block;
514
	background:url(../images/petitCarre.jpg) no-repeat 3px 7px;}
515
#zone-menu-gauche ul li ul {
516
	list-style:disc inside;
517
	color:#7b9c35;
518
	padding:0 0 0 15px;}
519
#zone-menu-gauche ul li ul li {
520
	padding:0;}
521
#zone-menu-gauche ul li ul li a {
522
	border:none;
523
	background:none;
524
	padding:0;
525
	display:inline;
526
	font-weight:normal;}
527
#zone-menu-gauche .menu_actif a {
528
	color:#FD8C13;}
529
#zone-menu-gauche .menu_inactif a {
530
	color:#7b9c35;
531
	font-weight:normal;}
532
#zone-menu-gauche ul.menu_deroulant_n1 > li > a {
533
	font-weight:bold;}
534
#zone-menu-gauche a:hover {
535
	color:#FD8C13;}
536
/*+-----------------------------------------------------------------------------------------------------------------+*/
537
#cheminDeFer {
538
	width:500px;
539
	margin-left:34px;
540
	margin-top:12px;
541
	margin-bottom:10px;}
542
/*+-----------------------------------------------------------------------------------------------------------------+*/
543
/** Zone menu connexion **/
544
#zone-menu-connexion {
545
	height:122px;
546
	width:178px;
547
	padding:25px 0 0 0;
548
	font-family:arial;
549
	text-align:right;
550
	font-size:11px;
551
	background:url(../images/carreorange.png) no-repeat 9px -9px;}
552
#zone-menu-connexion fieldset {
553
	text-align:left;
554
	width:165px;
555
	background:white;
556
	padding:28px 0 0 10px;
557
	border:solid 1px #99C242;
558
	text-decoration:none;
559
	-moz-border-radius:0 10px 10px 10px;
560
	-webkit-border-radius:0 10px 10px 10px;
561
	border-radius:0 10px 10px 10px;}
562
#zone-menu-connexion fieldset input {
563
	font-size:11px;}
564
#zone-menu-connexion fieldset p {
565
	text-align:left;}
566
#zone-menu-connexion h3 {
567
	position:absolute;
568
	width:162px;
569
	padding:5px 5px 5px 9px;
570
	margin:-29px 0 0 -10px;
571
	color:white;
572
	text-align:left;
573
	text-transform:uppercase;
574
	font-size:12px;
575
	background-color:#99C242;
576
	-moz-border-radius:0 10px 0 0;
577
	-webkit-border-radius:0 10px 0 0;
578
	border-radius:0 10px 0 0;}
579
#zone-menu-connexion fieldset label {
580
	position:relative;
581
	width:12em;
582
	display:block;
583
	margin:.1em 0;}
584
#zone-menu-connexion label input {
585
	position:absolute;
586
	left:100%;
587
	top:0;
588
	width:15px;}
589
#zone-menu-connexion #username,#zone-menu-connexion #password {
590
	width:80px;}
591
#zone-menu-connexion fieldset #connexion {
592
	border:solid 1px #8eb533;
593
	padding:0;}
594
#zone-menu-connexion #persistant,#zone-menu-connexion #persistant_label {
595
	float:left;
596
	margin-left:0;}
597
#zone-menu-connexion #persistant_label {
598
	padding-top:2px;}
599
#zone-menu-connexion #colonneDroite {
600
	padding:15px 0;}
601
/*+-----------------------------------------------------------------------------------------------------------------+*/
602
/** Menu lat�ral :Zone gauche **/
603
#zone-gauche {
604
	width:170px;
605
	float:left;
606
	margin-left:0;
607
	padding-bottom:100px;}
608
/*+-----------------------------------------------------------------------------------------------------------------+*/
609
/** Zone principale :zone droite **/
610
#zone-droite {
611
	width:730px;
612
	margin-left:20px;
613
	float:left;
614
	height:auto;
615
	overflow:hidden;}
616
#contenu {
617
	border:none;}
618
#zone_contenu_corps {
619
	border:none;
620
	width:690px}
621
#zone_contenu_corps li,#contenu li {
622
	list-style-image:url(/sites/commun/generique/images/graphisme/petit_carre.png);
623
	line-height:18px;}
624
#zone_contenu_corps li ul li,#contenu li ul li {
625
	list-style:none;
626
	background:url(../images/petitCarreContour.jpg) no-repeat 10px 6px;
627
	padding-left:25px;
628
	line-height:18px;}
629
#zone_contenu_corps form li,#contenu form li {
630
	background:none;}
631
#zone_contenu_corps .alpha,#contenu .alpha {
632
	background:none;
633
	padding-left:25px;
634
	list-style-type:upper-alpha;}
635
#zone_contenu_corps .listeSimple li,#contenu .listeSimple li {
636
	list-style:inherit;
637
	background:none;
638
	padding:0;}
639
#zone_contenu_corps .listeNumerique li,#contenu .listeNumerique li {
640
	list-style:upper-alpha inside;
641
	background:none;
642
	padding:0;}
643
#zone_contenu_corps ul li ul {
644
	margin-bottom:10px;}
645
.filetVert {
646
	width:300px;
647
	margin-left:0;
648
	margin-top:5px;
649
	padding:20px;
650
	border:1px solid #9ac342;
651
	-moz-border-radius:10px;
652
	float:left;}
653
.filetVert h1 {
654
	margin:0 0 10px 0;}
655
/*+-----------------------------------------------------------------------------------------------------------------+*/
656
/*Onglets*/
657
#zone_contenu_corps #BAZ_menu, #zone_contenu_corps .menu_classique_n3, .onglets {
658
	display:inline-block;
659
	padding:0;}
660
#zone_contenu_corps #BAZ_menu a, #zone_contenu_corps .menu_classique_n3 a, #zone_contenu_corps .onglets li a, #zone_contenu_corps .onglets li {
661
	list-style-image:none;
662
	padding:5px 3px 5px 3px;
663
	margin-top:2px;
664
	background-color:#C2C0AD;}
665
#zone_contenu_corps #BAZ_menu li, #zone_contenu_corps .menu_classique_n3 li, .onglets li {
666
	cursor:pointer;
667
	float:left;
668
	list-style:none;
669
	margin-right:5px;
670
	font-size:13px;
671
	text-transform:uppercase;
672
	letter-spacing:0;
673
	padding:5px 2px 5px 5px;
674
	margin:0 1px 0 0;
675
	background:none no-repeat 5px 9px #C2C0AD;
676
	color:#fd8c13;
677
	border:1px solid #c2c0ad;
678
	border-bottom:0px solid #c2c0ad;
679
	text-decoration:none;
680
	-moz-border-radius:10px 10px 0 0;
681
	-webkit-border-radius:10px 10px 0 0;
682
	border-radius:10px 10px 0 0;}
683
#zone_contenu_corps #BAZ_menu .menu_actif a, #zone_contenu_corps .menu_classique_n3 .menu_actif a, #zone_contenu_corps .onglets .menu_actif a {
684
	background:none;
685
	color:#FD8C13;
686
	font-weight:bold;}
687
#zone_contenu_corps #BAZ_menu .menu_actif, #zone_contenu_corps .menu_classique_n3 .menu_actif, #zone_contenu_corps .onglets .menu_actif {
688
	background:none;
689
	border:1px solid #C2C0AD;
690
	border-bottom:0 solid #c2c0ad;
691
	text-decoration:none;
692
	-moz-border-radius:10px 10px 0 0;
693
	-webkit-border-radius:10px 10px 0 0; /* pour Chrome */
694
	border-radius:10px 10px 0 0;}
695
#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 {
696
	color:#6C6865;}
697
#zone_contenu_corps #BAZ_menu .menu_actif h1,#zone_contenu_corps .menu_classique_n3 .menu_actif h1,.onglets .menu_actif h1 {
698
	color:#FD8C13;}
699
.cadreInvisible {
700
	float:left;
701
	margin-left:10px;
702
	margin-top:10px;}
703
.cadreInvisible h1 {
704
	margin:0 0 10px 0;}
705
.cadreRondOmbre {
706
	float:left;
707
	margin-bottom:10px;
708
	padding:20px;
709
	background-color:#fff;
710
	border:1px solid #fff;
711
	-moz-border-radius:10px;
712
	-webkit-border-radius:10px;
713
	border-radius:10px;
714
	-moz-box-shadow:2px 2px 9px #aaa;
715
	-webkit-box-shadow:7px 7px 11px #aaa;
716
	box-shadow:7px 7px 11px #555;
717
	filter:progid:DXImageTransform.Microsoft.Shadow(color='#aaaaaa', Direction=135, Strength=4 );/* pour ie8 */
718
	zoom:1;/* pour ie8 */}
719
.filetRouge {
720
	border:solid 1px red;}
721
#cartographieVolante {
722
	position:absolute;
723
	z-index:10;
724
	background:white;
725
	border:solid 1px #AAAAAA;
726
	padding:15px;
727
	margin:-300px 0 0 -300px;}
728
#cartographieVolante #masquerLaCarte {
729
	float:right;}
730
/*+-----------------------------------------------------------------------------------------------------------------+*/
731
/* Bandeau Projets */
732
#bandeauProjets {
733
	width:845px;
734
	margin:20px 0;
735
	border:dotted 1px #fd8c13;
736
	-moz-border-radius:10px;
737
	-webkit-border-radius:10px;
738
	border-radius:10px;
739
	float:left;
740
	padding-left:65px;}
741
#bandeauProjets ul {
742
	height:98px;
743
	padding:0px;
744
	list-style:none;
745
	font-family:arial;}
746
#bandeauProjets ul li {
747
	width:250px;
748
	margin-left:15px;
749
	border:double 1px orange;
750
	border-width:0 4px 0 0;
751
	display:inline;
752
	height:95px;
753
	float:left;}
754
#bandeauProjets ul li, #bandeauProjets ul li p {
755
	font-family:arial;
756
	font-size:10px;
757
	line-height:13px;}
758
#bandeauProjets ul li p {
759
	padding-right:2px;}
760
#bandeauProjets ul li a {
761
	color:#7B9C35;
762
	font-weight:bold;}
763
#bandeauProjets ul li h3 {
764
	padding:5px 0;
765
	margin:0;
766
	color:#fd8c13;}
767
#bandeauProjets ul li img {
768
	float:right;
769
	padding:10px;}
770
#bandeauProjets ul .bouton {
771
	width:20px;}
772
#boutonPrecedent,#boutonSuivant {
773
	position:absolute;}
774
#boutonPrecedent {
775
	margin-left:-66px;
776
	margin-top:-99px;
777
	height:100px;
778
	background:white;
779
	cursor:pointer;
780
	width:70px;
781
	border:dotted 1px #fd8c13;
782
	border-right-style:none;
783
	-moz-border-radius:10px 0 0 10px;
784
	-webkit-border-radius:10px 0 0 10px;
785
	border-radius:10px 0 0 10px;
786
	background:white url(../images/flecheGauche.jpg) no-repeat 5px 25px;}
787
#boutonSuivant {
788
	margin-left:799px;
789
	margin-top:-99px;
790
	width:30px;
791
	cursor:pointer;
792
	background:white url(../images/flecheDroite.jpg) no-repeat 15px 25px;
793
	padding:28px 8px 53px 8px;
794
	border:dotted 1px #fd8c13;
795
	border-left-style:none;
796
	-moz-border-radius:0 10px 10px 0;
797
	-webkit-border-radius:0 10px 10px 0;
798
	border-radius:0 10px 10px 0;}
799
/*+-----------------------------------------------------------------------------------------------------------------+*/
800
/** Zone-bas-page :footer **/
801
#zone-bas-page {
802
	width:960px;
803
	clear:both;}
804
#zone-bas-page div {
805
	width:900px;
806
	margin:20px 0 10px 0;
807
	text-align:center;}
808
#zone-bas-page div ul li {
809
	display:inline;
810
	margin-left:10px;
811
	padding:6px 0 0 20px;
812
	line-height:22px;
813
	text-align:center;
814
	font-size:12px;
815
	font-family:arial;
816
	text-decoration:none;
817
	list-style:none;}
818
#zone-bas-page #accueil {
819
	background:url(../images/accueil.png) no-repeat 0 2px;}
820
#zone-bas-page #faq {
821
	background:url(../images/faq.png) no-repeat 0 2px;}
822
#zone-bas-page #contact {
823
	background:url(../images/contact.png) no-repeat 0 2px;}
824
#zone-bas-page #plan {
825
	background:url(../images/plan.png) no-repeat 0 2px;}
826
#zone-bas-page #rss {
827
	background:url(../images/rss.png) no-repeat 0 2px;}
828
#zone-bas-page #telechargement {
829
	background:url(../images/telechargement.png) no-repeat 0 2px;}
830
#zone-bas-page #visite {
831
	background:url(../images/visite.png) no-repeat 0 2px;}
832
#zone-bas-page #mentions {
833
	background:url(../images/mentions.gif) no-repeat 0 2px;}
834
#zone-bas-page > div a:link, #zone-bas-page > div a:visited, #zone-bas-page > div a:active {
835
	font-weight:normal;
836
	color:#7b9c35;
837
	text-decoration:none;}
838
#zone-bas-page > div a:hover, #menupied a:focus {
839
	font-weight:normal;
840
	color:#fd8c13;
841
	text-decoration:none;}
842
/*+-----------------------------------------------------------------------------------------------------------------+*/
843
/** Contact Tela **/
844
#coordonees {
845
	width:905px;
846
	text-align:center;
847
	margin:auto;
848
	background:url(../../../commun/generique/images/petitCarre.jpg) no-repeat right;
849
	height:15px;}
850
#coordonees span {
851
	float:left;
852
	padding-left:15px;
853
	background:url(../../../commun/generique/images/petitCarre.jpg) no-repeat 5px 5px;
854
	font-family:arial;
855
	font-size:12px;
856
	font-weight:normal;
857
	font-style:normal;}
858
#coordonees a {
859
	font-family:arial;
860
	font-size:12px;
861
	text-align:justify;
862
	font-weight:normal;
863
	line-height:16px;
864
	list-style:none;}
865
#coordonees a:link, #coordonees a:visited, #coordonees a:active {
866
	color:#3a3633;}
867
#coordonees a:hover, #coordonees a:focus {
868
	color:#fd8c13;}
869
/*+-----------------------------------------------------------------------------------------------------------------+*/
870
/* Mise en page en colonne depuis www.1kbgrid.com */
871
/* = The 1Kb Grid = 12 columns, 60 pixels each, with 20 pixel gutter */
872
.grid_1 {
873
	width:60px;}
874
.grid_2 {
875
	width:140px;}
876
.grid_3 {
877
	width:220px;}
878
.grid_4 {
879
	width:300px;}
880
.grid_5 {
881
	width:380px;}
882
.grid_6 {
883
	width:460px;}
884
.grid_7 {
885
	width:540px;}
886
.grid_8 {
887
	width:620px;}
888
.grid_9 {
889
	width:700px;}
890
.grid_10 {
891
	width:780px;}
892
.grid_11 {
893
	width:860px;}
894
.grid_12 {
895
	width:940px;}
896
.column {
897
	margin:0 10px;
898
	overflow:hidden;
899
	float:left;
900
	display:inline;}
901
.row {
902
	width:960px;
903
	margin:0 auto;
904
	overflow:hidden;}
905
.row .row {
906
	margin:0 -10px;
907
	width:auto;
908
	display:inline-block;}