summaryrefslogtreecommitdiffstats
path: root/frontends/php/css.css
blob: b4372fe32ba3256e167abeb24cc491a0ca569beb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
body
{
        background-color:#e5e5e5;
        margin: 0px 0px 0px 0px;
        padding: 0px;
        color:black;
        font-family:verdana, arial, helvetica, sans-serif;
        font-size:10px;
	text-decoration: none;
       line-height:16px;
}

/**************** PAGE TABLE ****************/
/* header */
table.page_header
{
	background-color: #FFFFFF;
	border-color: #000000;
	border-width:0px;
	border-top-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	padding-right: 0px;
	padding-left: 0px;
	width: 100%;
}
table.page_header td.page_header_l
{
	vertical-align: middle;
	padding: 0px;
}
table.page_header td.page_header_r
{
	vertical-align: middle;
	text-align: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
}
/* footer */
table.page_footer
{
	color: #FFFFFF;
	background: #5C7099 url(images/gradients/table_head.gif) repeat-x top left;
	border-color: #000000;
	font-weight: bold; 
	border-width:0px;
	border-top-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	padding-right: 5px;
	padding-left: 5px;
	margin-top: 15px;
	width: 100%;
}
table.page_footer td.page_footer_l
{
        font-family:verdana, arial, helvetica, sans-serif;
        font-size:10px;
	height: 24px;
	text-align: center;
}
table.page_footer td.page_footer_r
{
        font-family:verdana, arial, helvetica, sans-serif;
        font-size:10px;
	height: 24px;
	text-align: right;
}
/********** FORM TABLE *************/
form {margin: 0px}

table.formtable {
	background-color: #FFFFFF;
	color: #000000;
	border: 0px solid #000000;
	width: 50%;
}
table.formtable td {
	padding-left: 5px;
	padding-right: 5px;
	color: #000000;
        font-family:verdana, arial, helvetica, sans-serif;
        font-size:10px;
	border-width: 1px;
	height: 24px;
}
table.formtable tr.form_odd_row td{
	text-decoration: none;
	background-color:#D8D8D8;
}
table.formtable tr.form_even_row td{
	text-decoration: none;
	background-color:#DFDFDF;
}
table.formtable td.form_row_first
{
	background: #5C7099 url(images/gradients/table_head2.gif) repeat-x top left;
	color: #FFFFFF;
        font-size:11px;
	font-weight: bold;
	border-top-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-color: #222255;
	text-align: left;
}
table.formtable td.form_row_last {
	color: #FFFFFF;
	background: #5C7099 url(images/gradients/table_head2.gif) repeat-x top left;
	border-top-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-color: #222255;
	text-align: right;
}
table.formtable td.form_row_l { /* left cell */
	border-left-style:	solid;
	border-top-style:	none;
	border-right-style:	none;
	border-bottom-style:	none;
	border-color:	#222255;
	text-align:	left;
	white-space:	nowrap;
	word-spacing:	nowrap;
	width:		50%;
}
table.formtable td.form_row_c { /* center cell */
	border-right-style: solid;
	border-left-style: solid;
	border-top-style: none;
	border-bottom-style: none;
	border-color: #222255;
	color: inherit;
	text-align: center;
}
table.formtable td.form_row_r { /* right cell */
	border-right-style: solid;
	border-top-style: none;
	border-left-style: none;
	border-bottom-style: none;
	border-color: #222255;
	text-align: left;
}

/************ HISTORY LOG TABLE ***********/
table.log_history_table {
/*	background-color: #AAAAAA; */
	color: #000000;
	width: 100%;
	border-width: 0px;
	border-style: solid;
	border-color: #0B198C; 
}
table.log_history_table td {
	white-space: nowrap;
	word-spacing: nowrap;
	font-family:verdana, arial, helvetica, sans-serif;
	font-size:8pt;
	text-decoration: none;
	border-width: 0px;
	border-style: solid;
	border-color: #0B198C;
}

/* table.log_history_table tr:hover td		{	background-color: #EEEEFE; } */

table.log_history_table tr.mark_as_red td	{	background-color: #FFBBBB; }
table.log_history_table tr.mark_as_green td	{	background-color: #BBFFBB; }
table.log_history_table tr.mark_as_blue td	{	background-color: #BBBBFF; }

table.log_history_table tr.header td {
	padding-right: 5px;
	padding-left: 5px;
	white-space: nowrap;
	word-spacing: nowrap;
	text-align: center;
	font-weight: bold; 
	background-color:#CCCCCC;
}
table.log_history_table td.message {
	text-align: center;
}

/************* CHART TABLE ***************/
table.chart
{
	width: 100%;
	background-color: #DDDDDD;
	text-align: center;
}

/************* SCREEN TABLE ***************/
table.screen_edit
{
	background-color: #FFFFFF;
	width: 100%;
	border: 1px outset #DDDDDD;
}

table.screen_edit td
{
	background-color: #FFFFFF;
	border: 1px inset #DDDDDD;
	text-align: center;
	vertical-align: middle;
}

table.screen_edit td.def_def {		text-align: center;	vertical-align: middle;		}
table.screen_edit td.def_top {		text-align: center;	vertical-align: top;		}
table.screen_edit td.def_mdl {		text-align: center;	vertical-align: middle;		}
table.screen_edit td.def_btm {		text-align: center;	vertical-align: bottom;		}

table.screen_edit td.left_top {		text-align: left;	vertical-align: top;		}
table.screen_edit td.left_mdl {		text-align: left;	vertical-align: middle;		}
table.screen_edit td.left_bttm {	text-align: left;	vertical-align: bottom;		}

table.screen_edit td.cntr_top {		text-align: center;	vertical-align: top;		}
table.screen_edit td.cntr_mdl {		text-align: center;	vertical-align: middle;		}
table.screen_edit td.cntr_bttm {	text-align: center;	vertical-align: bottom;		}

table.screen_edit td.right_top {	text-align: right;	vertical-align: top;		}
table.screen_edit td.right_mdl {	text-align: right;	vertical-align: middle;		}
table.screen_edit td.right_bttm {	text-align: right;	vertical-align: bottom;		}

table.screen_view
{
	background-color: #FFFFFF;
	width: 100%;
	border: 1px #DDDDDD;
}

table.screen_view td
{
	background-color: #FFFFFF;
	border: 1px #DDDDDD;
	text-align: center;
	vertical-align: middle;
}

table.screen_view iframe {
	border: 0px;
}

table.screen_view td.def_def {		text-align: center;	vertical-align: middle;		}
table.screen_view td.def_top {		text-align: center;	vertical-align: top;		}
table.screen_view td.def_mdl {		text-align: center;	vertical-align: middle;		}
table.screen_view td.def_btm {		text-align: center;	vertical-align: bottom;		}

table.screen_view td.left_top {		text-align: left;	vertical-align: top;		}
table.screen_view td.left_mdl {		text-align: left;	vertical-align: middle;		}
table.screen_view td.left_bttm {	text-align: left;	vertical-align: bottom;		}

table.screen_view td.cntr_top {		text-align: center;	vertical-align: top;		}
table.screen_view td.cntr_mdl {		text-align: center;	vertical-align: middle;		}
table.screen_view td.cntr_bttm {	text-align: center;	vertical-align: bottom;		}

table.screen_view td.right_top {	text-align: right;	vertical-align: top;		}
table.screen_view td.right_mdl {	text-align: right;	vertical-align: middle;		}
table.screen_view td.right_bttm {	text-align: right;	vertical-align: bottom;		}

/*************** Table Info **************/

table.tableinfo
{
	background-color: #AAAAAA;
	color: #000000;
	width: 100%;
	border-width: 0px;
	border-style: solid;
	border-color: #0B198C;
}
table.tableinfo td {
	font-family:verdana, arial, helvetica, sans-serif;
	font-size:8pt;
	text-decoration: none;
	border-width: 0px;
	border-style: solid;
	border-color: #0B198C;
	text-align: left;
}
table.tableinfo td.message {
	text-align: center;
}
table.tableinfo tr.header td {
	white-space: nowrap;
	word-spacing: nowrap;
	font-weight: bold; 
	background-color:#CCCCCC;
}
table.tableinfo tr.vertical_header td {
	padding: 0;
	padding-top: 5;
	padding-bottom: 5;
	margin: 0;
	white-space: nowrap;
	word-spacing: nowrap;
	font-weight: bold; 
	background-color:#CCCCCC;
	vertical-align:text-top;
/*	vertical-align:text-bottom; /**/
	text-align: center;
	width: 20px;
}
table.tableinfo tr.header td {
	white-space: nowrap;
	word-spacing: nowrap;
	font-weight: bold; 
	background-color:#CCCCCC;
}
table.tableinfo tr.footer td {
	color: #FFFFFF;
	background: #5C7099 url(images/gradients/table_head2.gif) repeat-x top left;
	background-color: #6d88ad;
	border-color: #000000;
	border-width:0px;
	border-top-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	vertical-align: middle;
	padding-right: 5px;
	padding-left: 5px;
}
table.tableinfo tr.odd_row td		{	background-color: #DDDDDD; }
table.tableinfo tr.odd_row:hover td 	{	background-color: #DDDDEE; }

table.tableinfo tr.even_row td		{	background-color: #EEEEEE; }
table.tableinfo tr.even_row:hover td 	{	background-color: #EEEEFE; }

table.tableinfo tr td.center		{vertical-align: middle; text-align: center; }

table.tableinfo tr td.disaster			{	background-color: #FF0000;	}
table.tableinfo tr td.disaster_blink1		{	background: #FF0000 url(images/gradients/blink1.gif) repeat top left;	}
table.tableinfo tr td.disaster_blink2 		{	background: #FF0000 url(images/gradients/blink2.gif) repeat top left;	}
table.tableinfo tr:hover td.disaster		{	background-color: #FA0000;	}
table.tableinfo tr:hover td.disaster_blink1	{	background: #FA0000 url(images/gradients/blink1.gif) repeat top left;	}
table.tableinfo tr:hover td.disaster_blink2 	{	background: #FA0000 url(images/gradients/blink2.gif) repeat top left;	}

table.tableinfo tr td.high		{	background-color: #FF8888;	}
table.tableinfo tr td.high_blink1	{	background: #FF8888 url(images/gradients/blink1.gif) repeat top left;	}
table.tableinfo tr td.high_blink2	{	background: #FF8888 url(images/gradients/blink2.gif) repeat top left;	}
table.tableinfo tr:hover td.high	{	background-color: #FA8388;	}
table.tableinfo tr:hover td.high_blink1	{	background: #FA8388 url(images/gradients/blink1.gif) repeat top left;	}
table.tableinfo tr:hover td.high_blink2	{	background: #FA8388 url(images/gradients/blink2.gif) repeat top left;	}

table.tableinfo tr td.average			{	background-color: #DDAAAA;	}
table.tableinfo tr td.average_blink1		{	background: #DDAAAA url(images/gradients/blink1.gif) repeat top left;	}
table.tableinfo tr td.average_blink2 		{	background: #DDAAAA url(images/gradients/blink2.gif) repeat top left;	}
table.tableinfo tr:hover td.average		{	background-color: #D8A5AA;	}
table.tableinfo tr:hover td.average_blink1	{	background: #D8A5AA url(images/gradients/blink1.gif) repeat top left;	}
table.tableinfo tr:hover td.average_blink2 	{	background: #D8A5AA url(images/gradients/blink2.gif) repeat top left;	}

table.tableinfo tr td.warning			{	background-color: #EFEFCC;	}
table.tableinfo tr td.warning_blink1		{	background: #EFEFCC url(images/gradients/blink1.gif) repeat top left;	}
table.tableinfo tr td.warning_blink2 		{	background: #EFEFCC url(images/gradients/blink2.gif) repeat top left;	}
table.tableinfo tr:hover td.warning		{	background-color: #EAEACC;	}
table.tableinfo tr:hover td.warning_blink1	{	background: #EAEACC url(images/gradients/blink1.gif) repeat top left;	}
table.tableinfo tr:hover td.warning_blink2 	{	background: #EAEACC url(images/gradients/blink2.gif) repeat top left;	}

table.tableinfo tr td.information		{	background-color: #CCE2CC;	}
table.tableinfo tr td.information_blink1	{	background: #CCE2CC url(images/gradients/blink1.gif) repeat top left;	}
table.tableinfo tr td.information_blink2 	{	background: #CCE2CC url(images/gradients/blink2.gif) repeat top left;	}
table.tableinfo tr:hover td.information		{	background-color: #C7DDCC;	}
table.tableinfo tr:hover td.information_blink1	{	background: #C7DDCC url(images/gradients/blink1.gif) repeat top left;	}
table.tableinfo tr:hover td.information_blink2 	{	background: #C7DDCC url(images/gradients/blink2.gif) repeat top left;	}

table.tableinfo tr td.unknown_trigger			{	background-color: #BCBCBC;	}
table.tableinfo tr td.unknown_trigger_blink1		{	background: #BCBCBC url(images/gradients/blink1.gif) repeat top left;	}
table.tableinfo tr td.unknown_trigger_blink2 		{	background: #BCBCBC url(images/gradients/blink2.gif) repeat top left;	}
table.tableinfo tr:hover td.unknown_trigger		{	background-color: #BCBCBC;	}
table.tableinfo tr:hover td.unknown_trigger_blink1	{	background: #BCBCBC url(images/gradients/blink1.gif) repeat top left;	}
table.tableinfo tr:hover td.unknown_trigger_blink2	{	background: #BCBCBC url(images/gradients/blink2.gif) repeat top left;	}

table.tableinfo tr td.normal			{	background-color: #AADDAA; }
table.tableinfo tr td.normal_blink1		{	background: #AADDAA url(images/gradients/blink1.gif) repeat top left;	}
table.tableinfo tr td.normal_blink2		{	background: #AADDAA url(images/gradients/blink2.gif) repeat top left;	}
table.tableinfo tr:hover td.normal		{	background-color: #AADDAA;	}
table.tableinfo tr:hover td.normal_blink1	{	background: #AADDAA url(images/gradients/blink1.gif) repeat top left;	}
table.tableinfo tr:hover td.normal_blink2	{	background: #AADDAA url(images/gradients/blink2.gif) repeat top left;	}

/****** HEADER *********/

table.header
{
	width: 100%;
	color: #FFFFFF;
	background: #5C7099 url(images/gradients/table_head2.gif) repeat-x top left;
	background-color: #6d88ad;
	border-color: #000000;
	border-width:0px;
	border-top-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	vertical-align: middle;
	padding-right: 5px;
	padding-left: 5px;
}
table.header td.header_l
{
        font-family:verdana, arial, helvetica, sans-serif;
        font-size:10px;
	text-align: left;
	height: 24px;
}
table.header td.header_r
{
        font-family:verdana, arial, helvetica, sans-serif;
        font-size:10px;
	text-align: right;
	height: 24px;
}

table.header a
{
	color: #FFFFFF; !important
}
/**************** Aknowledges ****************/

table.ack_msgs
{
	width: 70%;
	background-color: #EEEEEE;
	padding: 0px;
	border: 0px solid;
}
table.ack_msgs tr.title {
	height: 14px;
	vertical-align: center;
	color: #FFFFFF;
	background: #5C7099 url(images/gradients/table_head2.gif) repeat-x top left; 
}

table.ack_msgs td.user{
	padding-left: 10px;
	padding-right: 10px;
	text-align: left;
}
table.ack_msgs td.time{
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	width: 150px;
}
table.ack_msgs tr.msg{
	height: 25px;
	background-color: #F8F8F8;
}
table.ack_msgs tr.msg td{
	padding: 5px;
	text-align: left;
	vertical-align: top;
	border: 1px dotted black;
}

/**************** TABLE FOR RIGHT DISPLAYING *********/

.right_header {
	font-weight: bold; 
	text-align: center;
	border-top-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-color: #222255;
}

table.right_table{
	width: 100%;
	border-width: 0px;
        margin: 0px;
        padding: 0px;
}

table.right_table tr.header td
{
	font-weight: bold;
	text-align: left;
}

table.right_table td
{
        margin: 0px;
        padding: 0px;
	text-align: right;
	white-space: nowrap;
	word-spacing: nowrap;
}

table.right_table select
{
	width: 200px;
}

table.right_table td.read_write	select.biginput	{ color: #008800; }
table.right_table td.read_only	select.biginput	{ color: #CC8800; }
table.right_table td.deny 	select.biginput	{ color: #CC0000; }

/**************** GRAPH ****************/

table.graph
{
	width: 100%;
	text-align: center;
}

/**************** MAP ****************/

table.map
{
	background-color: #CCCCCC;
	width: 100%;
	text-align: center;
	border-width:0px;
	padding-top: 1px;
	padding-bottom: 5px;
}

/************* MENU ************/

table.menu
{
	height: 24;
	background-color: #FFFFFF;
	color: #000000;
	border: 0px solid #000000;
}

table.menu tr
{
        font-family:verdana, arial, helvetica, sans-serif;
        font-size:10px;
	background: #AAAAAA url(images/gradients/menu_not_active.gif) repeat-x top left;
	padding-right: 5px;
	padding-left: 5px;
}

table.menu td
{
	border-color: #AAAAAA;
	border-width:1px;
	border-top-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
}
table.menu td.active
{
	color: #FFFFFF;
	background: #5C7099 url(images/gradients/table_head.gif) repeat-x top left;
	border-width:0px;
}

/************* SUB MENU ************/

table.sub_menu
{
	height: 24;
	background-color: #FFFFFF;
	color: #000000;
	border: 0px solid #000000;
	width: 100%;
	margin-bottom: 15px;
}

table.sub_menu tr
{
	color: #FFFFFF;
        font-family:verdana, arial, helvetica, sans-serif;
        font-size:10px;
	background: #5C7099 url(images/gradients/table_head.gif) repeat-x top left;
	border-color: #000000;
	border-width:0px;
	border-top-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	padding-right: 5px;
	padding-left: 5px;
}

table.sub_menu tr td
{
	padding-top: 0px;
	padding-bottom: 0px;
}


/**************** FORM ELEMENTS ****************/
.biginput
{
	font-family: Verdana, Helvetica, Geneva;
	font-size: 10px;
	border: solid;
	border-width: 1px;
	border-color: gray;
	background-color: white;
	margin: 2px;
}
.biginput:focus	{	border-color: black;	}
.biginput:hover	{	border-color: black;	}

.button
{
	font-family: Verdana, Helvetica, Geneva;
	font-size: 10px;
	border: solid;
	border-width: 1px;
	border-color: gray;
	background: gray url(images/gradients/button.gif) repeat-x top left;
	margin: 2px;
/*	margin-right:5px; */
}
.button:hover	{	text-decoration: underline;	border-color: black;	}

/**************** TRIGGERS INFORMATION MODULE ****************/
table.triggers_info {
	width: 100%;
	background-color: #FFFFFF;
	border: 1px gray dotted;
}
table.triggers_info td {
	border: 0px;
	white-space: nowrap;
	word-spacing: nowrap;
	padding-left: 5px;
	padding-right: 5px;
	font-weight: bold;
	color: #191970;
	text-align: left;
	font-family: Verdana, Helvetica, Geneva;
	font-size: 11px;
}

table.triggers_info td.header {
	background: #5C7099 url(images/gradients/table_head2.gif) repeat-x top left;
	color: #FFFFFF;
}
table.triggers_info td 				{	background-color: #CCCCCC;	}
table.triggers_info tr td.disaster		{	background-color: #FF0000;	}
table.triggers_info tr td.high			{	background-color: #FF8888;	}
table.triggers_info tr td.average		{	background-color: #DDAAAA;	}
table.triggers_info tr td.warning		{	background-color: #EFEFCC;	}
table.triggers_info tr td.information		{	background-color: #CCE2CC;	}
table.triggers_info tr td.unknown_trigger	{	background-color: #BCBCBC;	}
table.triggers_info tr td.normal		{	background-color: #AADDAA; 	}

/**************** HOSTS INFORMATION MODULE ****************/
table.hosts_info {
	width: 100%;
	background-color: #FFFFFF;
	border: 1px gray dotted;
}
table.hosts_info td {
	border: 0px;
	white-space: nowrap;
	word-spacing: nowrap;
	padding-left: 5px;
	padding-right: 5px;
	font-weight: bold;
	color: #191970;
	text-align: left;
	font-family: Verdana, Helvetica, Geneva;
	font-size: 11px;
}

table.hosts_info td.header {
	background: #5C7099 url(images/gradients/table_head2.gif) repeat-x top left;
	color: #FFFFFF;
}

table.hosts_info td.avail
{
	background-color: #99F099;
}
table.hosts_info td.notav
{
	background-color: #F09999;
}
table.hosts_info td.uncn
{
	background-color: #CCCCCC;
}

/**************** SERVER INFORMATION MODULE ****************/
table.server_info {
	width: 100%;
	background-color: #EFEFEF;
	border: 1px gray dotted;
}
table.server_info td {
	border: 0px;
	padding-left: 5px;
	padding-right: 5px;
	font-weight: bold;
	text-align: left;
	font-family: Verdana, Helvetica, Geneva;
	font-size: 11px;
	background-color: #EFEFEF;
	white-space: nowrap;
	word-spacing: nowrap;
}

table.server_info td.header {
	background: #5C7099 url(images/gradients/table_head2.gif) repeat-x top left;
	color: #FFFFFF;
}
table.server_info tr.status td{
	white-space: nowrap;
	word-spacing: nowrap;
}

/**************** OTHERS ****************/

span.divider{	color: #000000;	font-family: Verdana, Arial, sans-serif; font-size: 10px; font-weight: normal;}

a.highlight { font-family: Verdana, Arial, sans-serif;	font-size:10px; 	font-weight: bold; }
a.highlight:link 	{ 	text-decoration: none;		color: #ffffff; }
a.highlight:visited 	{	text-decoration: none;		color: #ffffff; }
a.highlight:hover	{	text-decoration: underline;	color: #ffcc00; }

.footer { color:#CCCCCC; }

td,tr
{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:8pt;
	text-decoration: none;
}

td.center 		{	text-align: center;	}

A.enabled:link		{	color:#00AA00;	text-decoration: none; }
A.enabled:visited 	{	color:#00AA00;	text-decoration: none; }
A.enabled:hover 	{	color:#00AA00;	text-decoration: underline; }
A.enabled:active 	{	color:#00AA00;	text-decoration: underline;}

A.disabled:link		{	color:#AA0000;	text-decoration: none; }
A.disabled:visited 	{	color:#AA0000;	text-decoration: none; }
A.disabled:hover 	{	color:#AA0000;	text-decoration: underline; }
A.disabled:active 	{	color:#AA0000;	text-decoration: underline;}

A.uncnown:link		{	color:#AAAAAA;	text-decoration: none; }
A.uncnown:visited 	{	color:#AAAAAA;	text-decoration: none; }
A.uncnown:hover 	{	color:#AAAAAA;	text-decoration: underline; }
A.uncnown:active 	{	color:#AAAAAA;	text-decoration: underline;}

A.off:link	{	color:#00AA00;	text-decoration: none; }
A.off:visited 	{	color:#00AA00;	text-decoration: none; }
A.off:hover 	{	color:#00AA00;	text-decoration: underline; }
A.off:active 	{	color:#00AA00;	text-decoration: underline;}

A.on:link	{	color:#AA0000;	text-decoration: none; }
A.on:visited 	{	color:#AA0000;	text-decoration: none; }
A.on:hover 	{	color:#AA0000;	text-decoration: underline; }
A.on:active 	{	color:#AA0000;	text-decoration: underline;}

A.action:link		{	color:#3C3089;	text-decoration: none; }
A.action:visited 	{	color:#3C3089;	text-decoration: none; }
A.action:hover 		{	color:#3C3089;	text-decoration: underline; }
A.action:active 	{	color:#3C3089;	text-decoration: underline;}

.enabled		{	color: #00AA00;	}
.disabled	{	color: #AA0000;	}
.unknown	{	color: #AAAAAA;	}
.on		{	color: #AA0000;	}
.off		{	color: #00AA00;	}

.disaster	{	background-color: #FF0000;	}
.high		{	background-color: #FF8888;	}
.average	{	background-color: #DDAAAA;	}
.warning	{	background-color: #EFEFCC;	}
.information	{	background-color: #CCE2CC;	}
.unknown_trigger{	background-color: #BCBCBC;	}
.normal		{	background-color: #AADDAA;	}

a.small_font
{
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
}


A.footer
{
	color:#CCCCCC;
}

A 		{font-family:Verdana, Arial, Helvetica, sans-serif;font-size:8pt}
A:link 		{color:black; text-decoration: none; }
A:visited 	{color:black; text-decoration: none; }
A:hover 	{color:black; text-decoration: underline; }
A:active 	{color:black; text-decoration: underline;}

P 		{font-family:Verdana, Arial, Helvetica, sans-serif;font-size:8pt; }
P:link 		{color:black; text-decoration: underline; }
P:visited 	{color:black; text-decoration: none; }
P:hover 	{color:black; text-decoration: none;}
P:active 	{color:black; text-decoration: none;}

p.uppercase	{text-transform: uppercase}
p.margin	{margin-left: 10pt}
	
p.info
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	border: 1px dashed #000000;
	color:#000000;
	background-color: #FFFFFF;
}

p.error
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	border: 1px dashed #000000;
	color:#AA0000;
	background-color: #FFFFFF;
}
	
table.home
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
}
    
.img {	border-color:black;	border-width:1px;	}

img.top		{	vertical-align:text-top		}
img.bottom	{	vertical-align:text-bottom	}

ul
{
	margin-left: 0px;
	padding-left: 1em;
}

.vert
{
	width:1px;
	writing-mode: tb-rl;
}

.rarr
{
	font-size: 16px;
}

.bold {
	font-weight: bold;
}

.nowrap {
	white-space: nowrap;
	word-spacing: nowrap;
}

/**************** HINT BOX *****************/

#hint_box{
	top: 0;
	z-index: 100;
	position: absolute;
	background-color: lightyellow;
	padding: 2px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	line-height:15px;
	border: 1px solid black;
	border-left: none;
	border-top: none;
	visibility: hidden;
}