Subversion Repositories Sites.obs-saisons.fr

Rev

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

Rev Author Line No. Line
93 aurelien 1
/* $Id: style.css,v 1.38.2.4 2009/09/14 13:10:47 goba Exp $ */
2
 
3
/**
4
 * ODS, for Drupal 6.x
5
 *
6
 * If you use a customized color scheme, you must regenerate it after
7
 * modifying this file.
8
 */
9
 
10
/**
11
 * Generic elements
12
 */
13
body {
14
  margin: 0;
94 aurelien 15
  margin-top: 0px;
93 aurelien 16
  padding: 0;
17
  background: transparent;
120 aurelien 18
  font: 11px/170% Verdana, sans-serif;
93 aurelien 19
  color: #494949;
94 aurelien 20
  background-color: #C6B895;
93 aurelien 21
}
22
 
23
input {
24
  font: 12px/100% Verdana, sans-serif;
25
  color: #494949;
26
}
27
 
28
textarea, select {
29
  font: 12px/160% Verdana, sans-serif;
30
  color: #494949;
31
}
32
 
33
h1, h2, h3, h4, h5, h6 {
34
  margin: 0;
35
  padding: 0;
36
  font-weight: normal;
37
  font-family: Helvetica, Arial, sans-serif;
38
}
39
 
40
h1 {
41
  font-size: 170%;
42
}
43
 
44
h2 {
45
  font-size: 160%;
46
  line-height: 130%;
47
}
48
 
49
h3 {
50
  font-size: 140%;
51
}
52
 
53
h4 {
54
  font-size: 130%;
55
}
56
 
57
h5 {
58
  font-size: 120%;
59
}
60
 
61
h6 {
62
  font-size: 110%;
63
}
64
 
65
ul, quote, code, fieldset {
66
  margin: .5em 0;
67
}
68
 
69
p {
70
  margin: 0.6em 0 1.2em;
71
  padding: 0;
72
}
73
 
74
a:link, a:visited {
75
  color: #027AC6;
76
  text-decoration: none;
77
}
78
 
79
a:hover {
80
  color: #0062A0;
81
  text-decoration: underline;
82
}
83
 
84
a:active, a.active {
85
  color: #5895be;
86
}
87
 
88
hr {
89
  margin: 0;
90
  padding: 0;
91
  border: none;
92
  height: 1px;
93
  background: #5294c1;
94
}
95
 
96
ul {
97
  margin: 0.5em 0 1em;
98
  padding: 0;
99
}
100
 
101
ol {
102
  margin: 0.75em 0 1.25em;
103
  padding: 0;
104
}
105
 
106
ol li, ul li {
107
  margin: 0.4em 0 0.4em .5em; /* LTR */
108
}
109
 
110
ul.menu, .item-list ul {
111
  margin: 0.35em 0 0 -0.5em; /* LTR */
112
  padding: 0;
113
}
114
 
115
ul.menu ul, .item-list ul ul {
116
  margin-left: 0em; /* LTR */
117
}
118
 
119
ol li, ul li, ul.menu li, .item-list ul li, li.leaf {
120
  margin: 0.15em 0 0.15em .5em; /* LTR */
121
}
122
 
123
ul li, ul.menu li, .item-list ul li, li.leaf {
124
  padding: 0 0 .2em 1.5em;
125
  list-style-type: none;
126
  list-style-image: none;
127
  /**background: transparent url(images/menu-leaf.gif) no-repeat 1px .35em; /* LTR */
128
}
129
 
130
ol li {
131
  padding: 0 0 .3em;
132
  margin-left: 2em; /* LTR */
133
}
134
 
135
ul li.expanded {
136
  /**background: transparent url(images/menu-expanded.gif) no-repeat 1px .35em; /* LTR */
137
}
138
 
139
ul li.collapsed {
140
  /**background: transparent url(images/menu-collapsed.gif) no-repeat 0px .35em; /* LTR */
141
}
142
 
143
ul li.leaf a, ul li.expanded a, ul li.collapsed a {
144
  display: block;
145
}
146
 
147
ul.inline li {
148
  background: none;
149
  margin: 0;
150
  padding: 0 1em 0 0; /* LTR */
151
}
152
 
153
ol.task-list {
154
  margin-left: 0; /* LTR */
155
  list-style-type: none;
156
  list-style-image: none;
157
}
158
ol.task-list li {
159
  padding: 0.5em 1em 0.5em 2em; /* LTR */
160
}
161
ol.task-list li.active {
162
  /**background: transparent url(images/task-list.png) no-repeat 3px 50%; /* LTR */
163
}
164
ol.task-list li.done {
165
  color: #393;
166
  /**background: transparent url(../../misc/watchdog-ok.png) no-repeat 0px 50%; /* LTR */
167
}
168
ol.task-list li.active {
169
  margin-right: 1em; /* LTR */
170
}
171
 
172
fieldset ul.clear-block li {
173
  margin: 0;
174
  padding: 0;
175
  background-image: none;
176
}
177
 
178
dl {
179
  margin: 0.5em 0 1em 1.5em; /* LTR */
180
}
181
 
182
dl dt {
183
}
184
 
185
dl dd {
186
  margin: 0 0 .5em 1.5em; /* LTR */
187
}
188
 
189
img, a img {
190
  border: none;
191
}
192
 
193
table {
194
  margin: 1em 0;
195
  width: 500px;
196
}
197
 
198
thead th {
199
  border-bottom: 2px solid #d3e7f4;
200
  color: #494949;
201
  font-weight: bold;
202
}
203
 
204
th a:link, th a:visited {
205
  color: #6f9dbd;
206
}
207
 
208
td, th {
209
  padding: .3em .5em;
210
}
211
 
212
tr.even, tr.odd, tbody th {
213
  border: solid #d3e7f4;
214
  border-width: 1px 0;
215
}
216
 
217
tr.odd, tr.info {
218
  background-color: #edf5fa;
219
}
220
 
221
tr.even {
222
  background-color: #fff;
223
}
224
 
225
tr.drag {
226
  background-color: #fffff0;
227
}
228
 
229
tr.drag-previous {
230
  background-color: #ffd;
231
}
232
 
233
tr.odd td.active {
234
  background-color: #ddecf5;
235
}
236
 
237
tr.even td.active {
238
  background-color: #e6f1f7;
239
}
240
 
241
td.region, td.module, td.container, td.category {
242
  border-top: 1.5em solid #fff;
243
  border-bottom: 1px solid #b4d7f0;
244
  background-color: #d4e7f3;
245
  color: #455067;
246
  font-weight: bold;
247
}
248
 
249
tr:first-child td.region, tr:first-child td.module, tr:first-child td.container, tr:first-child td.category {
250
  border-top-width: 0;
251
}
252
 
253
span.form-required {
254
  color: #ffae00;
255
}
256
 
257
span.submitted, .description {
258
  font-size: 0.92em;
259
  color: #898989;
260
}
261
 
262
.description {
263
  line-height: 150%;
264
  margin-bottom: 0.75em;
265
  color: #898989;
266
}
267
 
268
.messages, .preview {
269
  margin: .75em 0 .75em;
270
  padding: .5em 1em;
271
}
272
 
273
.messages ul {
274
  margin: 0;
275
}
276
 
277
.form-checkboxes, .form-radios, .form-checkboxes .form-item, .form-radios .form-item {
278
  margin: 0.25em 0;
279
}
280
 
281
#center form {
282
  margin-bottom: 2em;
283
}
284
 
285
.form-button, .form-submit {
286
  margin: 2em 0.5em 1em 0; /* LTR */
287
}
288
 
109 aurelien 289
.form-submit#edit-submit {
290
	margin-bottom: -7px;
291
}
292
 
93 aurelien 293
#dblog-form-overview .form-submit,
294
.confirmation .form-submit,
295
.search-form .form-submit,
296
.poll .form-submit,
297
fieldset .form-button, fieldset .form-submit,
298
.sidebar .form-button, .sidebar .form-submit,
299
table .form-button, table .form-submit {
300
  margin: 0;
301
}
302
 
303
.box {
304
  margin-bottom: 2.5em;
305
}
306
 
307
/**
308
 * Layout
309
 */
310
#header-region {
311
  min-height: 1em;
312
  /**background: #d2e6f3 url(images/bg-navigation.png) repeat-x 50% 100%; **/
313
}
314
 
94 aurelien 315
@font-face {
109 aurelien 316
	/* Fonte pour le titre en haut à gauche */
94 aurelien 317
	font-family: "BorisBlackBloxx";
318
	src: url("font/BorisBlackBloxx.ttf") format("truetype");
319
}
320
 
321
.titre_site {
322
	font-family: BorisBlackBloxx, Cursive;
323
	font-size: 14px;
109 aurelien 324
	margin-left: auto;
325
    margin-right: auto;
120 aurelien 326
    padding-left: 0px;
109 aurelien 327
    padding-top: 5px;
328
    padding-bottom: 10px;
329
    width: 955px;
94 aurelien 330
}
331
 
332
.titre_site #observatoire {
333
	color: #0396A6;
334
	font-size: 30px;
335
}
336
 
337
.titre_site #des {
338
	color: #0396A6;
339
	font-size: 20px
340
}
341
 
342
.titre_site #saisons {
343
	color: #FF7F00;
344
	text-transform: uppercase;
345
	font-size: 40px
346
}
347
 
93 aurelien 348
#header-region .block {
349
  display: block;
350
  margin: 0 1em;
351
}
352
 
353
#header-region .block-region {
354
  display: block;
355
  margin: 0 0.5em 1em;
356
  padding: 0.5em;
357
  position: relative;
358
  top: 0.5em;
359
}
360
 
361
#header-region * {
362
  display: inline;
363
  line-height: 1.5em;
364
  margin-top: 0;
365
  margin-bottom: 0;
366
}
367
 
368
/* Prevent the previous directive from showing the content of script elements in Mozilla browsers. */
369
#header-region script {
370
  display: none;
371
}
372
 
373
#header-region p, #header-region img {
374
  margin-top: 0.5em;
375
}
376
 
377
#header-region h2 {
378
  margin: 0 1em 0 0; /* LTR */
379
}
380
 
381
#header-region h3, #header-region label, #header-region li {
382
  margin: 0 1em;
383
  padding: 0;
384
  background: none;
385
}
386
 
387
#wrapper {
388
 /** background: #edf5fa url(images/body.png) repeat-x 50% 0; **/
389
}
390
 
391
#wrapper {
392
	width: 955px;
393
	margin-left:auto;
394
	margin-right:auto;
395
	background-color: #FFFFFF;
109 aurelien 396
	-moz-box-shadow: 3px 0px 0 #aaa;
397
	-webkit-box-shadow: 3px 0px 0 #aaa;
398
	box-shadow: 3px 0px 0 #aaa;
93 aurelien 399
}
400
 
401
#wrapper #container {
402
  margin: 0 auto;
403
  padding: 0 20px;
404
}
405
 
406
#wrapper #container {
407
  height: 80px;
408
}
409
 
410
#wrapper #container #header #logo-floater {
411
  position: absolute;
412
}
413
 
414
#wrapper #container #header h1, #wrapper #container #header h1 a:link, #wrapper #container #header h1 a:visited {
415
  line-height: 120px;
416
  position: relative;
417
  z-index: 2;
418
  white-space: nowrap;
419
}
420
 
421
#wrapper #container #header h1 span {
422
  font-weight: bold;
423
}
424
 
425
#wrapper #container #header h1 img {
426
  padding-top: 14px;
427
  padding-right: 20px; /* LTR */
428
  float: left; /* LTR */
429
}
430
 
431
#logo-floater {
432
	padding-left: 20px;
433
	padding-top: 10px;
434
}
435
 
436
/* We must define 100% width to avoid the body being too narrow for near-empty pages */
437
#wrapper #container {
438
  float: left;
439
  width: 100%;
440
  background-color: #FFFFFF;
441
}
442
 
443
#center {
122 aurelien 444
	width: 555px;
93 aurelien 445
	min-height: 650px;
446
	background-color: #FFFFFF;
447
	height: auto;
448
	float: left;
449
}
450
 
122 aurelien 451
#center h2 {
452
    background: url("images/puce_titre_2.png") no-repeat scroll 13px 0 transparent;
453
    color: #4F3F1B;
454
    font-weight: bold;
124 aurelien 455
    padding: 0 0 10px 42px;
122 aurelien 456
    width: 100%;
457
}
458
 
459
#center h3 {
124 aurelien 460
	color: #9AC343;
122 aurelien 461
	font-weight: bold;
124 aurelien 462
	padding: 10px 0 0 0;
122 aurelien 463
}
464
 
465
#center h4 {
466
	color: #ACC700;
467
	font-weight: bold;
468
}
469
 
470
#center li {
471
	 margin-left: 20px;
472
	 padding: 0 0 0 0;
473
	 list-style-type: disc;
474
}
475
 
476
#center li.num {
477
	 list-style-type: decimal;
124 aurelien 478
	 margin-left: 20px;
122 aurelien 479
}
480
 
481
.placement_image {
482
	display: inline;
483
    float: left;
484
}
485
 
93 aurelien 486
#left {
120 aurelien 487
	width: 190px;
93 aurelien 488
	padding:5px;
109 aurelien 489
	padding-left: 0px;
93 aurelien 490
	float: left;
123 aurelien 491
	min-height: 650px;
93 aurelien 492
	background-color: #FFFFFF;
493
}
494
 
109 aurelien 495
#sidebar-left > div > div > div > ul.menu > li {
496
	padding-left:20px;
497
}
498
 
119 aurelien 499
#sidebar-left > div > div > div > ul.menu > li > a.active-trail {
500
    color: #FFFFFF;
501
    font-weight: bold;
502
    padding-left: 5px;
503
    -moz-border-radius: 0.9em 0.9em 0.9em 0.9em;
504
}
505
 
506
#sidebar-left a.active-trail {
507
	color: #800000;
508
	text-decoration: underline;
509
}
510
 
93 aurelien 511
#sidebar-left {
109 aurelien 512
	-webkit-border-radius-topright: 20px 20px;
513
	-webkit-border-radius-bottomright: 20px 20px;
514
	-moz-border-radius-topright: 20px 20px;
120 aurelien 515
	-moz-border-radius-bottomright: 0px 0px;
109 aurelien 516
	border-top-right-radius: 20px 20px;
517
	border-bottom-right-radius: 20px 20px;
120 aurelien 518
	background-color: #0396A6;
109 aurelien 519
	position:absolute;
520
	width: inherit;
93 aurelien 521
}
522
 
523
#sidebar-left > div > h2 {
524
	display: none;
525
}
526
 
527
#sidebar-left a {
528
	color: #FFFFFF;
529
	font-weight: bold;
109 aurelien 530
	padding-left: 5px;
93 aurelien 531
}
532
 
533
.content > div > ul > li {
534
	background: transparent url(images/puce_menu_niveau_1_triangle.png) no-repeat 3px 0.55em;
535
}
536
 
537
ul.menu > li {
538
	padding-top:5px;
109 aurelien 539
	padding-left:5px;
93 aurelien 540
}
541
 
109 aurelien 542
.menu_recourbe {
543
 
544
	-moz-border-radius-bottomleft: 901px 158px;
545
	-moz-border-radius-bottomright: 300px 24px;
546
    border-bottom-left-radius: 901px 158px;
547
    border-bottom-right-radius: 300px 24px;
548
 
549
	background-color: #FFFFFF;
550
	width:inherit;
551
	height: 30px;
552
	position: absolute;
553
	z-index: 50;
554
}
555
 
93 aurelien 556
#right {
120 aurelien 557
	width: 200px;
93 aurelien 558
	float: right;
559
	background-color: #FFFFFF;
560
}
561
 
109 aurelien 562
#right h2 {
563
	display: none;
564
}
565
 
566
.titre_bloc {
567
	color: #FFFFFF;
568
	font-weight: bold;
569
	background-color: #5F8DBF;
570
	-webkit-border-radius-topleft: 20px 20px;
571
	-moz-border-radius-topleft: 20px 20px;
572
	border-top-left-radius: 20px 20px;
573
}
574
 
575
.info_utilisateur, .formulaire_identification_ods {
576
 
577
	-webkit-border-radius-topleft: 20px 20px;
578
	-webkit-border-radius-bottomleft: 20px 20px;
579
	-moz-border-radius-topleft: 20px 20px;
580
	-moz-border-radius-bottomleft: 20px 20px;
581
	border-top-left-radius: 20px 20px;
582
	border-bottom-left-radius: 20px 20px;
583
	border: solid 1px;
584
	background-color: #F4F2EB;
585
    text-align: center;
120 aurelien 586
    border-color: #D1C6A8;
109 aurelien 587
}
588
 
589
.info_utilisateur a {
119 aurelien 590
	padding: 10px 10px 10px 25px;
109 aurelien 591
}
592
 
119 aurelien 593
#lien_mes_obs {
594
	background: url("images/mes_obs.png") no-repeat scroll 5px 0.75em transparent;
595
}
596
 
597
#lien_admin {
598
	background: transparent url(images/admin.png) no-repeat 1px 0.7em;
599
}
600
 
601
#lien_mon_profil {
602
	background: transparent url(images/mon_profil.png) no-repeat 1px 0.7em;
603
}
604
 
605
#lien_deconnexion {
606
	background: transparent url(images/deconnexion.png) no-repeat 1px 0.7em;
607
}
608
 
109 aurelien 609
.nb_inscrits {
610
	background: transparent url(images/puce-inscrits.png) no-repeat;
611
	padding: 5px;
612
	padding-left: 30px;
613
	text-align: right;
614
	font-size: 1.2em;
615
}
616
 
124 aurelien 617
 
618
/** Bloc de description en haut de la page d'accueil **/
135 aurelien 619
#node-2 {
620
	visibility: hidden;
164 aurelien 621
	height: 0px;
622
	padding-bottom : 0px;
623
	padding-top : 0px;
135 aurelien 624
}
625
 
124 aurelien 626
#block-block-6 {
125 aurelien 627
	border: 2px dashed #D2C7AA;
124 aurelien 628
	text-align: center;
629
	margin-left: 0.6em;
630
}
631
 
632
#block-block-6 h2 {
633
	padding: 0 0 0 0;
634
	background: none;
635
	font-weight: bold;
636
}
637
 
638
#block-block-6 p {
143 vio 639
	color : #546F83;
142 vio 640
	font-weight: normal;
124 aurelien 641
	margin: 0;
642
}
643
 
644
/** Bloc des dernières new ods en page d'accueil **/
645
 
646
.views-row {
647
    clear: both;
648
    padding-top: 20px;
649
}
650
 
651
.views-row .views-field-field-image-fid {
652
	display: inline;
653
	float: left;
125 aurelien 654
	padding-top: 8px;
124 aurelien 655
}
656
 
125 aurelien 657
.views-row .views-field-title {
124 aurelien 658
	display: inline;
659
	float: left;
660
	padding-left: 10px;
661
	padding-right: 10px;
125 aurelien 662
	font-size: 1.2em;
124 aurelien 663
}
664
 
125 aurelien 665
.views-row .views-field-title a {
143 vio 666
	color: #9AC343;
125 aurelien 667
}
668
 
124 aurelien 669
.views-row .views-field-teaser {
670
	display: inline;
671
	float: right;
672
	width: 420px;
673
}
674
 
675
.derniers_articles .views-row .views-field-teaser {
676
	width: 445px;
677
}
678
 
141 aurelien 679
#dernieres_obs li a {
680
	color: #7D9F31;
681
}
682
 
124 aurelien 683
.lire_toutes_actus {
684
	text-align: right;
685
	float: right;
190 aurelien 686
	padding-bottom: 15px;
124 aurelien 687
}
688
 
689
.separation_invisible {
690
	visibility: hidden;
691
	clear: both;
692
}
693
 
125 aurelien 694
/** Styles des onglets des dernières actualités **/
695
#onglets  {
696
	margin-right: auto;
697
	position: relative;
698
	bottom: -2px;
699
	z-index: 1;
700
	clear:left;
701
}
702
 
703
.conteneur_onglets {
704
	overflow: hidden;
705
	float: left;
706
	background: #D1C6AB;
707
	position: relative;
708
	width:565px;
709
}
710
 
711
.contenu_onglet {
712
	padding: 20px;
144 vio 713
	font-size: 1em;
125 aurelien 714
}
715
 
716
ul.liste_onglets {
717
	margin: 0;
718
	padding: 0;
719
	float: left;
720
	list-style: none;
721
	height: 32px; /*--Set height of tabs--*/
722
}
723
 
724
#onglets ul.liste_onglets li {
725
	float: left;
726
	margin: 0;
727
	padding: 0;
728
	height: 31px; /*--Subtract 1px from the height of the unordered list--*/
729
	line-height: 31px; /*--Vertically aligns the text within the tab--*/
730
	border-left: none;
731
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
732
	margin-right: 3px;
733
	overflow: hidden;
734
	position: relative;
735
	background: #DFDBD1;
736
	list-style-type: none;
737
	-webkit-border-radius-topleft: 10px 10px;
738
	-webkit-border-radius-topright: 10px 10px;
739
	-moz-border-radius-topleft: 10px 10px;
740
	-moz-border-radius-topright: 10px 10px;
741
	border-top-left-radius: 10px 10px;
742
	border-top-right-radius: 10px 10px;
743
}
744
 
745
#onglets ul.liste_onglets li.active {
746
	background: #D1C6AB;
747
}
748
 
749
#onglets ul.liste_onglets li a {
750
	text-decoration: none;
144 vio 751
	color: #546F83;
125 aurelien 752
	display: block;
143 vio 753
	font-size: 1.1em;
144 vio 754
	padding-left: 7px;
755
	padding-right: 7px;
125 aurelien 756
	outline: none;
757
}
758
 
759
 
93 aurelien 760
/* We ensure the sidebars are still clickable using z-index */
761
#wrapper #container .sidebar {
762
  margin: 60px 0 5em;
763
  width: 210px;
764
  float: left;
765
  z-index: 2;
766
  position: relative;
767
  background-color: #FFFFFF;
768
}
769
 
770
#wrapper #container .sidebar .block {
771
  margin: 0 0 1.5em 0;
772
}
773
 
774
#sidebar-left .block {
109 aurelien 775
  padding: 25px 15px 0 0px;
93 aurelien 776
}
777
 
778
#sidebar-right .block {
779
  padding: 0 0px 0 15px;
780
}
781
 
782
.block .content {
783
  margin: 0.5em 0;
784
}
785
 
786
#sidebar-left .block-region {
787
  margin: 0 15px 0 0px; /* LTR */
788
}
789
 
790
#sidebar-right .block-region {
791
  margin: 0 0px 0 15px; /* LTR */
792
}
793
 
794
.block-region {
795
  padding: 1em;
796
  background: transparent;
797
  border: 2px dashed #b4d7f0;
798
  text-align: center;
799
  font-size: 1.3em;
800
}
801
 
135 aurelien 802
/** Style général applicable à toute les pages **/
184 aurelien 803
.cadre_information {
804
    background: url("images/information.png") no-repeat scroll 5px 12px #DFDBD1;
805
    border: 1px solid #DFDBD1;
806
    padding: 10px 10px 10px 30px;
135 aurelien 807
}
808
 
156 vio 809
.bouton {
154 vio 810
	-moz-border-radius: 5px 5px 5px 5px;
811
	-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
812
	color: #FFFFFF !important;
813
	cursor: pointer;
814
	display: inline-block;
815
	font-weight: bold;
816
	overflow: visible;
817
	position: relative;
818
	text-decoration: none !important;
819
	width: auto;
820
}
821
 
156 vio 822
.bouton.orange, .bouton.orange:hover {
157 vio 823
	background-color: #FF7F00;
824
	border: 1px solid #FF6600;
154 vio 825
}
826
 
158 vio 827
.bouton.vert, .bouton.vert:hover {
828
	background-color: #9AC343;
159 vio 829
	border: 1px solid #7bb401;
158 vio 830
}
831
 
156 vio 832
.bouton.medium {
155 vio 833
	font-size: 12px;
834
	padding: 6px 14px;
835
}
836
 
156 vio 837
.bouton a {
838
	color: #FFFFFF;
839
}
840
 
841
.bouton a:hover {
158 vio 842
	color: #333333;
156 vio 843
}
844
 
93 aurelien 845
/* Now we add the backgrounds for the main content shading */
846
#wrapper #container #center #squeeze {
847
 /** background: #fff url(images/bg-content.png) repeat-x 50% 0;**/
848
  position: relative;
849
}
850
 
851
#wrapper #container #center .right-corner {
852
 /**  background: transparent url(images/bg-content-right.png) no-repeat 100% 0; **/
853
  position: relative;
854
  left: 10px;
855
}
856
 
857
#wrapper #container #center .right-corner .left-corner {
858
  padding: 60px 25px 5em 35px;
859
 /**  background: transparent url(images/bg-content-left.png) no-repeat 0 0; **/
860
  margin-left: -10px;
861
  position: relative;
862
  left: -10px;
863
  min-height: 400px;
864
}
865
 
866
#wrapper #container #footer {
867
  float: none;
868
  clear: both;
869
  text-align: center;
870
  margin: 4em 0 -3em;
871
  color: #898989;
872
}
873
 
874
#wrapper #container .breadcrumb {
875
  position: absolute;
876
  top: 15px;
877
  left: 35px; /* LTR */
878
  z-index: 3;
879
}
880
 
881
/**
882
 * Header
883
 */
884
#wrapper #container #header h1, #wrapper #container #header h1 a:link, #wrapper #container #header h1 a:visited {
885
  color: #fff;
886
  font-weight: normal;
887
  text-shadow: #1659ac 0px 1px 3px;
888
  font-size: 1.5em;
889
}
890
 
891
#header {
892
	height: 180px;
893
	background-color: #FFFFFF;
894
	width: 955px;
895
}
896
 
897
.printemps {
898
	background: transparent url(images/bandeaux/bandeau-printemps.png) no-repeat 50% 0;
899
}
900
 
901
.ete {
902
	background: transparent url(images/bandeaux/bandeau-ete.png) no-repeat 50% 0;
903
}
904
 
905
.automne {
906
	background: transparent url(images/bandeaux/bandeau-automne.png) no-repeat 50% 0;
907
}
908
 
909
.hiver {
910
	background: transparent url(images/bandeaux/bandeau-hiver.png) no-repeat 50% 0;
911
}
912
 
913
#wrapper #container #header h1 a:hover {
914
  text-decoration: none;
915
}
916
 
917
#wrapper #container .breadcrumb {
918
  font-size: 0.92em;
919
}
920
 
921
#wrapper #container .breadcrumb, #wrapper #container .breadcrumb a {
922
  color: #529ad6;
923
}
924
 
925
#mission {
926
  padding: 1em;
927
  background-color: #fff;
928
  border: 1px solid #e0e5fb;
929
  margin-bottom: 2em;
930
}
931
 
932
#footer {
933
	height: 120px;
934
	background: transparent url(images/bandeaux/bandeau-bas.png) no-repeat 50% 0;
935
	clear:both;
936
	width:955px;
937
	margin-left:auto;
938
	margin-right: auto;
939
	background-color: #FFFFFF;
109 aurelien 940
	text-align: center;
941
	vertical-align: bottom;
93 aurelien 942
}
943
 
109 aurelien 944
.liens_bas_page {
190 aurelien 945
	padding-top: 75px;
109 aurelien 946
	color: #FF7F00;
947
	font-weight: bold;
948
}
949
 
950
.liens_bas_page a {
951
	color: #FF7F00;
153 vio 952
	margin-left: 10px;
953
	padding : 4px 0 0 20px;
109 aurelien 954
	font-size: 1.1em;
955
}
956
 
149 vio 957
#lien_aide {
151 vio 958
	background : url("images/faq.png") no-repeat scroll 0 2px transparent
149 vio 959
}
960
 
961
#lien_rss {
151 vio 962
	background : url("images/rss.png") no-repeat scroll 0 2px transparent
149 vio 963
}
964
 
965
#lien_contact {
151 vio 966
	background : url("images/contact.png") no-repeat scroll 0 2px transparent
149 vio 967
}
968
 
190 aurelien 969
#lien_CMS {
970
	background : url("images/logo_drupal.jpg") no-repeat scroll 0 2px transparent
971
}
972
 
93 aurelien 973
/**
974
 * Primary navigation
975
 */
976
ul.primary-links {
977
  margin: 0;
94 aurelien 978
  margin: -25px 0 0;
93 aurelien 979
  padding: 0;
980
  float: right; /* LTR */
981
  position: relative;
982
  z-index: 4;
109 aurelien 983
  height: 25px;
93 aurelien 984
}
985
 
109 aurelien 986
ul.primary-links li {
93 aurelien 987
  padding: 0;
94 aurelien 988
  height: 25px;
109 aurelien 989
  margin-left: 2px;
93 aurelien 990
  float: left; /* LTR */
991
  background-image: none;
992
  -moz-border-radius-topright: 1em;
993
  -moz-border-radius-topleft: 1em;
109 aurelien 994
  border-top-right-radius: 1em;
995
  border-top-left-radius: 1em;
93 aurelien 996
}
997
 
109 aurelien 998
ul.primary-links li.lien_primaire {
999
	margin-left: 3px;
1000
	margin-top: 0px;
1001
	margin-bottom: 0px;
1002
	margin-right: 0px;
1003
	-moz-box-shadow: 3px 0px 0 #aaa;
1004
	-webkit-box-shadow: 3px 0px 0 #aaa;
1005
	box-shadow: 3px 0px 0 #aaa;
1006
}
1007
 
1008
 
1009
li#lien_primaire_1 {
94 aurelien 1010
	width: 20px;
93 aurelien 1011
	background-color : #6C9ED8;
1012
}
1013
 
109 aurelien 1014
li#lien_primaire_1 a img {
94 aurelien 1015
	padding-top: 2px;
1016
}
1017
 
109 aurelien 1018
li#lien_primaire_2 {
120 aurelien 1019
	background-color : #BF3600;
93 aurelien 1020
}
1021
 
109 aurelien 1022
li#lien_primaire_3 {
93 aurelien 1023
	background-color : #9AC343;
1024
}
1025
 
109 aurelien 1026
li#lien_primaire_4 {
93 aurelien 1027
	background-color : #EF7B1D;
1028
}
1029
 
1030
ul.primary-links li a, ul.primary-links li a:link, ul.primary-links li a:visited {
1031
  display: block;
1032
  margin: 0 1em;
1033
  font-weight: bold;
1034
  color: #FFFFFF;
94 aurelien 1035
  padding-top: 2px;
93 aurelien 1036
}
1037
 
1038
ul.primary-links li a:hover, ul.primary-links li a.active {
1039
  color: #fff;
1040
}
1041
 
1042
ul.primary-links li.active-trail {
94 aurelien 1043
	height:35px;
109 aurelien 1044
	margin-top:-10px;
93 aurelien 1045
}
1046
 
1047
ul.primary-links li.active-trail a {
1048
	padding-top: 5px;
1049
}
1050
 
1051
/**
1052
 * Secondary navigation
1053
 */
1054
ul.secondary-links {
1055
  margin: 0;
1056
  padding: 18px 0 0;
1057
  float: right; /* LTR */
1058
  clear: right; /* LTR */
1059
  position: relative;
1060
  z-index: 4;
1061
}
1062
 
1063
ul.secondary-links li {
1064
  margin: 0;
1065
  padding: 0;
1066
  float: left; /* LTR */
1067
  background-image: none;
1068
}
1069
 
1070
ul.secondary-links li a, ul.secondary-links li a:link, ul.secondary-links li a:visited {
1071
  display: block;
1072
  margin: 0 1em;
1073
  padding: .75em 0 0;
1074
  color: #cde3f1;
1075
  background: transparent;
1076
}
1077
 
1078
ul.secondary-links li a:hover, ul.secondary-links li a.active {
1079
  color: #cde3f1;
1080
  background: transparent;
1081
}
1082
 
1083
/**
1084
 * Local tasks
1085
 */
1086
ul.primary, ul.primary li, ul.secondary, ul.secondary li {
1087
  border: 0;
1088
  background: none;
1089
  margin: 0;
1090
  padding: 0;
1091
}
1092
 
1093
#tabs-wrapper {
1094
  border-bottom: 1px solid #e9eff3;
1095
  position: relative;
1096
}
1097
ul.primary {
1098
  padding: 0.5em 0 10px;
1099
  float: left; /* LTR */
1100
}
1101
ul.secondary {
1102
  clear: both;
1103
  text-align: left; /* LTR */
1104
  border-bottom: 1px solid #e9eff3;
1105
  margin: -0.2em -26px 1em;
1106
  padding: 0 26px 0.6em;
1107
}
1108
h2.with-tabs {
1109
  float: left; /* LTR */
1110
  margin: 0 2em 0 0; /* LTR */
1111
  padding: 0;
1112
}
1113
 
1114
ul.primary li a, ul.primary li.active a, ul.primary li a:hover, ul.primary li a:visited,
1115
ul.secondary li a, ul.secondary li.active a, ul.secondary li a:hover, ul.secondary li a:visited {
1116
  border: 0;
1117
  background: transparent;
1118
  padding: 4px 1em;
1119
  margin: 0 0 0 1px; /* LTR */
1120
  height: auto;
1121
  text-decoration: none;
1122
  position: relative;
1123
  top: -1px;
1124
  display: inline-block;
1125
}
1126
ul.primary li.active a, ul.primary li.active a:link, ul.primary li.active a:visited, ul.primary li a:hover,
1127
ul.secondary li.active a, ul.secondary li.active a:link, ul.secondary li.active a:visited, ul.secondary li a:hover {
1128
  background: url(images/bg-tab.png) repeat-x 0 50%;
1129
  color: #fff;
1130
}
1131
ul.primary li.active a,
1132
ul.secondary li.active a {
1133
  font-weight: bold;
1134
}
1135
 
1136
/**
1137
 * Nodes & comments
1138
 */
1139
.node {
1140
  border-bottom: 1px solid #e9eff3;
1141
  margin: 0 0px 1.5em;
120 aurelien 1142
  padding: 1.5em 13px;
93 aurelien 1143
}
1144
 
1145
ul.links li, ul.inline li {
1146
  margin-left: 0;
1147
  margin-right: 0;
1148
  padding-left: 0; /* LTR */
1149
  padding-right: 1em; /* LTR */
1150
  background-image: none;
1151
}
1152
 
1153
.node .links, .comment .links {
1154
  text-align: left; /* LTR */
1155
}
1156
 
1157
.node .links ul.links li, .comment .links ul.links li {}
1158
.terms ul.links li {
1159
  margin-left: 0;
1160
  margin-right: 0;
1161
  padding-right: 0;
1162
  padding-left: 1em;
1163
}
1164
 
1165
.picture, .comment .submitted {
1166
  float: right; /* LTR */
1167
  clear: right; /* LTR */
1168
  padding-left: 1em; /* LTR */
1169
}
1170
 
1171
.new {
1172
  color: #ffae00;
1173
  font-size: 0.92em;
1174
  font-weight: bold;
1175
  float: right; /* LTR */
1176
}
1177
 
1178
.terms {
1179
  float: right; /* LTR */
1180
}
1181
 
1182
.preview .node, .preview .comment, .sticky {
1183
  margin: 0;
1184
  padding: 0.5em 0;
1185
  border: 0;
1186
  background: 0;
1187
}
1188
 
1189
.sticky {
1190
  padding: 1em;
1191
  background-color: #fff;
1192
  border: 1px solid #e0e5fb;
1193
  margin-bottom: 2em;
1194
}
1195
 
1196
#comments {
1197
  position: relative;
1198
  top: -1px;
1199
  border-bottom: 1px solid #e9eff3;
1200
  margin: -1.5em -25px 0;
1201
  padding: 0 25px;
1202
}
1203
 
1204
#comments h2.comments {
1205
  margin: 0 -25px;
1206
  padding: .5em 25px;
1207
  background: #fff url(images/gradient-inner.png) repeat-x 0 0;
1208
}
1209
 
1210
.comment {
1211
  margin: 0 -25px;
1212
  padding: 1.5em 25px 1.5em;
1213
  border-top: 1px solid #e9eff3;
1214
}
1215
 
1216
.indented {
1217
  margin-left: 25px; /* LTR */
1218
}
1219
 
1220
.comment h3 a.active {
1221
  color: #494949;
1222
}
1223
 
1224
.node .content, .comment .content {
1225
  margin: 0.6em 0;
1226
}
1227
 
1228
/**
1229
 * Aggregator.module
1230
 */
1231
#aggregator {
1232
  margin-top: 1em;
1233
}
1234
#aggregator .feed-item-title {
1235
  font-size: 160%;
1236
  line-height: 130%;
1237
}
1238
#aggregator .feed-item {
1239
  border-bottom: 1px solid #e9eff3;
1240
  margin: -1.5em -31px 1.75em;
1241
  padding: 1.5em 31px;
1242
}
1243
#aggregator .feed-item-categories {
1244
  font-size: 0.92em;
1245
}
1246
#aggregator .feed-item-meta {
1247
  font-size: 0.92em;
1248
  color: #898989;
1249
}
1250
 
1251
/**
1252
 * Color.module
1253
 */
1254
#palette .form-item {
1255
  border: 1px solid #fff;
1256
}
1257
#palette .item-selected {
1258
  background: #fff url(images/gradient-inner.png) repeat-x 0 0;
1259
  border: 1px solid #d9eaf5;
1260
}
1261
 
1262
/**
1263
 * Menu.module
1264
 */
1265
tr.menu-disabled {
1266
  opacity: 0.5;
1267
}
1268
tr.odd td.menu-disabled {
1269
  background-color: #edf5fa;
1270
}
1271
tr.even td.menu-disabled {
1272
  background-color: #fff;
1273
}
1274
 
1275
/**
1276
 * Poll.module
1277
 */
1278
.poll .bar {
1279
  background: #fff url(images/bg-bar-white.png) repeat-x 0 0;
1280
  border: solid #f0f0f0;
1281
  border-width: 0 1px 1px;
1282
}
1283
 
1284
.poll .bar .foreground {
1285
  background: #71a7cc url(images/bg-bar.png) repeat-x 0 100%;
1286
}
1287
 
1288
.poll .percent {
1289
  font-size: .9em;
1290
}
1291
 
1292
/**
1293
 * Autocomplete.
1294
 */
1295
#autocomplete li {
1296
  cursor: default;
1297
  padding: 2px;
1298
  margin: 0;
1299
}
1300
 
1301
/**
1302
 * Collapsible fieldsets
1303
 */
1304
fieldset {
1305
  margin: 1em 0;
1306
  padding: 1em;
1307
  border: 1px solid #d9eaf5;
1308
  background: #fff url(images/gradient-inner.png) repeat-x 0 0;
1309
}
1310
 
1311
/* Targets IE 7. Fixes background image in field sets. */
1312
*:first-child+html fieldset {
1313
  padding: 0 1em 1em;
1314
  background-position: 0 .75em;
1315
  background-color: transparent;
1316
}
1317
 
1318
*:first-child+html fieldset > .description, *:first-child+html fieldset .fieldset-wrapper .description {
1319
  padding-top: 1em;
1320
}
1321
 
1322
fieldset legend {
1323
  /* Fix disappearing legend in FFox */
1324
  display: block;
1325
}
1326
 
1327
*:first-child+html fieldset legend, *:first-child+html fieldset.collapsed legend {
1328
  display: inline;
1329
}
1330
 
1331
html.js fieldset.collapsed {
1332
  background: transparent;
1333
  padding-top: 0;
1334
  padding-bottom: .6em;
1335
}
1336
 
1337
html.js fieldset.collapsible legend a {
1338
  padding-left: 2em; /* LTR */
1339
  background: url(images/menu-expanded.gif) no-repeat 0% 50%; /* LTR */
1340
}
1341
 
1342
html.js fieldset.collapsed legend a {
1343
  background: url(images/menu-collapsed.gif) no-repeat 0% 50%; /* LTR */
1344
}
1345
 
1346
/**
1347
 * Syndication icons and block
1348
 */
1349
#block-node-0 h2 {
1350
  float: left; /* LTR */
1351
  padding-right: 20px; /* LTR */
1352
}
1353
 
1354
#block-node-0 img, .feed-icon {
1355
  float: right; /* LTR */
1356
  padding-top: 4px;
1357
}
1358
 
1359
#block-node-0 .content {
1360
  clear: right; /* LTR */
1361
}
1362
 
1363
/**
1364
 * Login Block
1365
 */
1366
#user-login-form {
1367
  text-align: center;
1368
}
1369
#user-login-form ul {
1370
  text-align: left; /* LTR */
1371
}
1372
 
1373
/**
1374
 * User profiles.
1375
 */
1376
.profile {
1377
  margin-top: 1.5em;
1378
}
1379
.profile h3 {
1380
  border-bottom: 0;
1381
  margin-bottom: 1em;
1382
}
1383
.profile dl {
1384
  margin: 0;
1385
}
164 aurelien 1386
 
93 aurelien 1387
.profile dt {
1388
  font-weight: normal;
1389
  color: #898989;
1390
  font-size: 0.92em;
1391
  line-height: 1.3em;
1392
  margin-top: 1.4em;
1393
  margin-bottom: 0.45em;
1394
}
1395
.profile dd {
1396
  margin-bottom: 1.6em;
1397
}
1398
 
164 aurelien 1399
form fieldset {
1400
	margin-top: 35px;
1401
}
1402
 
93 aurelien 1403
/**
1404
 * Admin Styles
1405
 */
1406
div.admin-panel,
1407
div.admin-panel .description,
1408
div.admin-panel .body,
1409
div.admin,
1410
div.admin .left,
1411
div.admin .right,
1412
div.admin .expert-link,
1413
div.item-list,
1414
.menu {
1415
  margin: 0;
1416
  padding: 0;
1417
}
1418
 
1419
div.admin .left {
1420
  float: left; /* LTR */
1421
  width: 48%;
1422
}
1423
div.admin .right {
1424
  float: right; /* LTR */
1425
  width: 48%;
1426
}
1427
 
1428
div.admin-panel {
1429
  background: #fff url(images/gradient-inner.png) repeat-x 0 0;
1430
  padding: 1em 1em 1.5em;
1431
}
1432
div.admin-panel .description {
1433
  margin-bottom: 1.5em;
1434
}
1435
div.admin-panel dl {
1436
  margin: 0;
1437
}
1438
div.admin-panel dd {
1439
  color: #898989;
1440
  font-size: 0.92em;
1441
  line-height: 1.3em;
1442
  margin-top: -.2em;
1443
  margin-bottom: .65em;
1444
}
1445
 
1446
table.system-status-report th {
1447
  border-color: #d3e7f4;
1448
}
1449
 
1450
#autocomplete li.selected, tr.selected td, tr.selected td.active {
1451
  background: #027ac6;
1452
  color: #fff;
1453
}
1454
 
1455
tr.selected td a:link, tr.selected td a:visited, tr.selected td a:active {
1456
  color: #d3e7f4;
1457
}
1458
 
1459
tr.taxonomy-term-preview {
1460
  opacity: 0.5;
1461
}
1462
 
1463
tr.taxonomy-term-divider-top {
1464
  border-bottom: none;
1465
}
1466
 
1467
tr.taxonomy-term-divider-bottom {
1468
  border-top: 1px dotted #CCC;
1469
}
1470
 
1471
/**
1472
 * CSS support
1473
 */
1474
 
1475
/*******************************************************************
1476
 * Color Module: Don't touch                                       *
1477
 *******************************************************************/
1478
 
1479
/**
1480
 * Generic elements.
1481
 */
1482
.messages {
1483
  background-color: #fff;
1484
  border: 1px solid #b8d3e5;
1485
}
1486
 
1487
.preview {
1488
  background-color: #fcfce8;
1489
  border: 1px solid #e5e58f;
1490
}
1491
 
1492
div.status {
1493
  color: #33a333;
1494
  border-color: #c7f2c8;
1495
}
1496
 
1497
div.error, tr.error {
1498
  color: #a30000;
1499
  background-color: #FFCCCC;
1500
}
1501
 
1502
.form-item input.error, .form-item textarea.error {
1503
  border: 1px solid #c52020;
1504
  color: #363636;
1505
}
1506
 
1507
/**
1508
 * dblog.module
1509
 */
1510
tr.dblog-user {
1511
  background-color: #fcf9e5;
1512
}
1513
 
1514
tr.dblog-user td.active {
1515
  background-color: #fbf5cf;
1516
}
1517
 
1518
tr.dblog-content {
1519
  background-color: #fefefe;
1520
}
1521
 
1522
tr.dblog-content td.active {
1523
  background-color: #f5f5f5;
1524
}
1525
 
1526
tr.dblog-warning {
1527
  background-color: #fdf5e6;
1528
}
1529
 
1530
tr.dblog-warning td.active {
1531
  background-color: #fdf2de;
1532
}
1533
 
1534
tr.dblog-error {
1535
  background-color: #fbe4e4;
1536
}
1537
 
1538
tr.dblog-error td.active {
1539
  background-color: #fbdbdb;
1540
}
1541
tr.dblog-page-not-found, tr.dblog-access-denied {
1542
  background: #d7ffd7;
1543
}
1544
tr.dblog-page-not-found td.active, tr.dblog-access-denied td.active {
1545
  background: #c7eec7;
1546
}
1547
 
1548
/**
1549
 * Status report colors.
1550
 */
1551
table.system-status-report tr.error, table.system-status-report tr.error th {
1552
  background-color: #fcc;
1553
  border-color: #ebb;
1554
  color: #200;
1555
}
1556
table.system-status-report tr.warning, table.system-status-report tr.warning th {
1557
  background-color: #ffd;
1558
  border-color: #eeb;
1559
}
1560
table.system-status-report tr.ok, table.system-status-report tr.ok th {
1561
  background-color: #dfd;
1562
  border-color: #beb;
1563
}