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.
881.
882.
883.
884.
885.
886.
887.
888.
889.
890.
891.
892.
893.
894.
895.
896.
897.
898.
899.
900.
901.
902.
903.
904.
905.
906.
907.
908.
909.
910.
911.
912.
913.
914.
915.
916.
917.
918.
919.
920.
921.
922.
923.
924.
925.
926.
927.
928.
929.
930.
931.
932.
933.
934.
935.
936.
937.
938.
939.
940.
941.
942.
943.
944.
945.
946.
947.
948.
949.
950.
951.
952.
953.
954.
955.
956.
957.
958.
959.
960.
961.
962.
963.
964.
965.
966.
967.
968.
969.
970.
971.
972.
973.
974.
975.
976.
977.
978.
979.
980.
981.
982.
983.
984.
985.
986.
987.
988.
989.
990.
991.
992.
993.
994.
995.
996.
997.
998.
999.
1000.
1001.
1002.
1003.
1004.
1005.
1006.
1007.
1008.
1009.
1010.
1011.
1012.
1013.
1014.
1015.
1016.
1017.
1018.
1019.
1020.
1021.
1022.
1023.
1024.
1025.
1026.
1027.
1028.
1029.
1030.
1031.
1032.
1033.
1034.
1035.
1036.
1037.
1038.
1039.
1040.
1041.
1042.
1043.
1044.
1045.
1046.
1047.
1048.
1049.
1050.
1051.
1052.
1053.
1054.
1055.
1056.
1057.
1058.
1059.
1060.
1061.
1062.
1063.
1064.
1065.
1066.
1067.
1068.
1069.
1070.
1071.
1072.
1073.
1074.
1075.
1076.
1077.
1078.
1079.
1080.
1081.
1082.
1083.
1084.
1085.
1086.
1087.
1088.
1089.
1090.
1091.
1092.
1093.
1094.
1095.
1096.
1097.
1098.
1099.
1100.
1101.
1102.
1103.
1104.
1105.
1106.
1107.
1108.
1109.
1110.
1111.
1112.
1113.
1114.
1115.
1116.
1117.
1118.
1119.
1120.
1121.
1122.
1123.
1124.
1125.
1126.
1127.
1128.
1129.
1130.
1131.
1132.
1133.
1134.
1135.
1136. | html {
height: 100%;
margin-bottom: 0px;
}
form {
margin: 0;
padding: 0;
}
img,table {
border: none;
}
body {
font-family: Arial, Tahoma, Verdana, sans-serif;
line-height: 1.3em;
margin: 0;
padding: 0;
font-size: 11px;
color: #666;
background: #fff;
}
body.contentpane {
background: #FEFEFE;
}
p {
margin-top: 0;
margin-bottom: 5px;
text-align: justify;
}
a:link, a:visited {
text-decoration: underline;
font-weight: 400;
color: #999;
outline: none;
}
a:hover {
text-decoration: none;
font-weight: 400;
}
input {
color: #ccc;
padding: 2px;
outline: none;
margin: 0;
}
input:focus {
outline: none;
}
button {
color: #fff;
font-size: 11px;
border: none;
background: #696969;
cursor: pointer;
}
.inputbox {
border: none;
color: #fff;
padding: 2px;
background: #333;
}
.inputbox:hover {
background: #444;
}
#modlgn_remember.inputbox {
background: none;
border: none;
width: auto;
}
input.button, .validate {
color: #888;
font-size: 11px;
cursor: pointer;
font-weight: 400;
border: none;
background: #333;
}
input.button:hover, .validate:hover {
cursor: pointer;
background: #444;
}
#search {
float: right;
width: 228px;
height: 24px;
margin: 12px 0 0;
}
#search .search .inputbox {
float: left;
background: url(../images/search.png) repeat-x top left;
border: 1px solid #e23a91;
color: #fff;
font-size: 11px;
line-height: 14px;
width: 150px;
height: 16px;
padding: 4px 4px 2px 4px;
margin: 0 5px 0 0;
}
#search .search input.button {
float: left;
border: 1px solid #e23a91;
color: #fff;
cursor: pointer;
background: #ff81c2 url(../images/search.png) repeat-x center left;
font-size: 11px;
font-family:Tahoma,Arial,sans-serif;
width: 60px;
height: 24px;
padding: 1px 2px 3px 2px;
}
#search input.button:hover {
color: #dd2484;
}
/*****************************************/
/*** Template specific layout elements ***/
/*****************************************/
#page_bg {
background: #000 url(../images/bg.png) repeat-x center top;
}
#top {
background: transparent url(../images/top_bg.png) no-repeat top left;
height: 50px;
width: 920px;
margin: 0 auto;
}
#top h1 {
float: left;
margin: 0;
padding: 10px 0 0;
width: 400px;
}
#top h1 a, #top h1 a:link, #top h1 a:hover {
font-size: 26px;
line-height: normal;
color: #fff;
text-decoration: none;
outline: none;
}
#wrapper {
position: relative;
width: 980px;
margin: 0 auto;
background: url(../images/content_middle.png) repeat-y top center;
}
#holder1 {
background: url(../images/content_top.png) no-repeat top center;
width: 918px;
margin: 0 auto;
}
#holder2 {
width: 916px;
margin: 0 auto;
padding: 10px 0;
}
#pillmenu {
height: 42px;
background: url(../images/topmenu.png) no-repeat top left;
width: 920px;
margin: 0 auto;
}
#pillmenu ul {
margin: 0;
padding: 1px;
list-style: none;
height: 40px;
width: 918px;
overflow: hidden;
}
#pillmenu li {
float: left;
display: inline;
height: 39px;
background: url(../images/topmenu_li.png) no-repeat bottom right;
padding: 0 2px 0 0;
}
#pillmenu li a {
float: left;
font-size: 12px;
line-height: 26px;
color: #fff;
text-decoration: none;
font-weight: 700;
height: 39px;
line-height: 39px;
padding: 0 14px;
}
#pillmenu li a:hover {
background: url(../images/topmenu_a_hover.png) repeat-x bottom left;
}
#pillmenu li a#active_menu-nav {
background: url(../images/topmenu_a_hover.png) repeat-x bottom left;
}
#header {
height: 246px;
border: 1px solid #7c2853;
width: 916px;
margin: 0 auto 10px auto;
background: #000;
padding: 1px;
}
#inner_header {
background: #333;
padding: 1px;
height: 244px;
width: 914px;
}
#inner_header2 {
background: #000 url(../images/headerimg.jpg) no-repeat center left;
height: 244px;
width: 914px;
position: relative;
}
.blick {
position: absolute;
top: 122px;
left: -38px;
background: url(../images/blick.png) no-repeat top left;
width: 274px;
height: 218px;
}
#rightpart {
float: right;
width: 500px;
padding: 10px;
height: 220px;
overflow: hidden;
}
#latest {
float: right;
width: 500px;
}
#latest div div div {
width: auto;
}
#latest ul {
text-align: left;
margin: 0;
padding: 4px 10px;
list-style: none;
}
#latest ul li a {
text-decoration: none;
color: #666;
background: url(../images/menu_row.gif) no-repeat center left;
padding: 0 0 0 10px;
height: 16px;
line-height: 16px;
}
#latest ul li a:hover {
color: #999;
text-decoration: underline;
}
#latest h3, #newsflash h3 {
background: url(../images/header_h3.png) repeat-x top left;
height: 23px;
line-height: 21px;
font-weight: 400;
color: #fff;
font-family: Tahoma, Arial, sans-serif;
font-size: 14px;
padding: 0 10px;
}
#newsflash {
float: right;
width: 500px;
}
#newsflash div div div {
width: auto;
}
#newsflash div div div div table.contentpaneopen {
margin: 4px 8px;
text-align: left;
line-height: normal;
}
#newsflash div div div div table.contentpaneopen a {
color: #666;
}
#leftcolumn ,#rightcolumn {
float: left;
width: 188px;
padding: 0 0 10px 0;
}
div#maincolumn {
float: left;
width: 520px;
padding: 0 10px;
}
div#maincolumn_full {
float: left;
width: 708px;
padding: 0 10px;
}
div.nopad {
overflow: hidden;
padding: 0;
}
div.nopad ul {
clear: both;
}
td.middle_pad {
width: 20px;
}
#banner_l {
text-align: left;
padding: 0 0 0 24px;
}
#footer {
background: url(../images/footer.png) no-repeat top center;
width: 980px;
height: 106px;
text-align: center;
font-size: 11px;
padding: 80px 0 0 0;
}
#footer a {
color: #dd2484;
font-size: 11px;
text-decoration: none;
}
#footer a:hover {
text-decoration: underline;
}
a.footer123:link, a.footer123:visited {
color: #fefefe;
font-family: Tahoma, Arial, sans-serif;
text-decoration: none;
}
a.footer123:hover {
color: #fefefe;
font-family: Tahoma, Arial, sans-serif;
text-decoration: none;
}
#f123 {
text-align: right;
width: 100%;
margin: 0 auto;
font-family: Tahoma, Arial, sans-serif;
}
.f123 {
text-align: right;
font-family: Tahoma, Arial, sans-serif;
text-decoration: none;
}
.f123_bg {
background:url(../images/123_bg.png);
width:134px;
height:30px;
text-align:center;
padding: 0 3px;
}
.f123_1 {
display: block;
font-size: 10px;
font-family: Tahoma, Arial, sans-serif;
color: #666;
text-align: left;
padding: 0 0 2px 4px;
}
a.link_123:link, a.link_123:visited {
font-size: 15px;
font-family: Tahoma, Verdana,Arial,Helvetica,sans-serif;
color: #797979;
text-decoration:none;
font-weight: 700;
}
a.link_123:hover {
font-size: 15px;
font-family: Tahoma, Verdana,Arial,Helvetica,sans-serif;
color: #797979;
text-decoration:none;
font-weight: 700;
}
/*****************************************/
/*** Joomla! specific content elements ***/
/*****************************************/
div.offline {
background: #fffebb;
width: 100%;
position: absolute;
top: 0;
left: 0;
font-size: 1.2em;
padding: 5px;
}
/* headers */
div.componentheading {
height: 22px;
padding: 10px 0 0 4px;
color: #999;
}
table.blog {
}
h1 {
padding: 0;
font-family: Tahoma, Arial, sans-serif;
font-size: 1.3em;
font-weight: 700;
vertical-align: bottom;
color: #fff;
text-align: left;
width: 100%;
}
h2, .contentheading {
padding: 0;
font-family: Tahoma, Verdana, Arial, sans-serif;
font-size: 11px;
vertical-align: middle;
color: #ffffff;
text-align: left;
font-weight: 700;
}
h2, a.contentheading {
background: none;
border: none;
}
table.contentpaneopen h3 {
margin-top: 25px;
}
h4 {
font-family: Tahoma, Arial, sans-serif;
color: #ffffff;
}
h3, .componentheading, table.moduletable th, legend {
margin: 0;
font-family: Tahoma, Arial, sans-serif;
font-size: 14px;
text-align: left;
color: #ffffff;
padding: 0;
}
/* small text */
.small {
font-size: 10px;
color: #999;
font-weight: 700;
text-align: left;
}
.modifydate {
height: 20px;
vertical-align: bottom;
font-size: 10px;
color: #444;
text-align: right;
}
.createdate {
vertical-align: top;
font-size: 11px;
color: #999;
padding-bottom: 8px;
}
a.readon {
float: right;
background: url(../images/readon.png) no-repeat center left;
line-height: normal;
font-size: 11px;
padding: 0 0 0 14px;
color: #7c7c7c;
text-transform: lowercase;
text-decoration: none;
}
a.readon:hover {
text-decoration: underline;
}
/* form validation */
.invalid { border-color: #ff0000; }
label.invalid { color: #ff0000; }
/** overlib **/
.ol-foreground {
background-color: #f1f1f1;
color: #333;
}
.ol-background {
background-color: #f1f1f1;
color: #333;
}
.ol-textfont {
font-family: Tahoma, Arial, sans-serif;
font-size: 10px;
}
.ol-captionfont {
font-family: Tahoma, Arial, sans-serif;
font-size: 12px;
color: #f6f6f6;
font-weight: 700;
}
.ol-captionfont a {
background-color: #f1f1f1;
color: #333;
text-decoration: none;
font-size: 12px;
}
.ol-closefont {}
/* menu links */
a.mainlevel:link, a.mainlevel:visited {
padding-left: 5px;
}
a.mainlevel:hover {
}
/* spacers */
span.article_separator {
display: block;
height: 20px;
}
.article_column {
}
.column_separator {
}
td.buttonheading {
text-align: right;
width: 0;
}
.clr {
clear: both;
}
table.blog span.article_separator {
display: block;
height: 20px;
}
/* table of contents */
table.contenttoc {
margin: 5px;
padding: 5px;
background: none;
}
table.contenttoc td {
padding: 0 5px;
}
/* content tables */
td.sectiontableheader {
color: #999;
font-weight: 700;
padding: 4px;
}
tr.sectiontableentry1 td {
padding: 4px;
background: #111;
}
tr.sectiontableentry0 td,
tr.sectiontableentry2 td {
padding: 4px;
}
td.sectiontableentry0,
td.sectiontableentry1,
td.sectiontableentry2 {
padding: 3px;
color: #8e8e8e;
font-size: 11px;
}
/* content styles */
.contentpaneopen, table.contentpane {
margin: 0;
padding: 0;
}
table.contentpane td{
text-align: left;
}
table.contentpane td.contentdescription {
width: 100%;
}
table.contentpane {
text-align: left;
float: left;
width: 100%;
margin: 8px;
}
table.contentpane ul li a .category {
color: #FF8800;
}
table.contentpane ul li {
color: #666;
}
table.contentpaneopen {
margin: 0 4px;
border-collapse: collapse;
}
table.contentpaneopen li {
margin-bottom: 5px;
}
table.contentpaneopen fieldset {
border: 0;
border-top: 1px solid #669933;
}
table.contentpaneopen h3 {
margin-top: 25px;
}
table.contentpaneopen h4 {
font-family: Tahoma, Arial, sans-serif;
color: #669933;
}
.highlight {
background-color: #fffebb;
}
/* module control elements */
table.user1user2 div.moduletable {
margin-bottom: 0px;
}
div.moduletable, div.module {
margin-bottom: 25px;
}
div.module_menu, div.module {
margin: 0;
padding: 0;
}
div.module_menu div, div.module, div.module_text div {
}
div.module_menu div div, div.module div div, div.module_text div div {
margin: 0 0 10px 0;
}
div.module_menu div div div, div.module div div div, div.module_text div div div {
width: 188px;
margin: 0;
text-align: center;
}
div.module div div div div {
width: 160px;
}
div.module_menu div div div div, div.module div div div div, div.module_text div div div div {
background: none;
}
div.module_text div div div div {
text-align: left;
}
div.module_text div div div div.bannergroup_text {
padding: 10px;
width: 160px;
}
div.module_text div div div div.bannergroup_text div {
width: auto;
padding: 0 0 4px;
}
div.module div div div form {
width: 160px;
margin: 0 auto;
text-align: center;
}
div.module_menu ul {
list-style: none;
padding: 0;
}
div.module_menu ul li{
margin: 0;
padding: 0;
}
div.module_menu ul li a:link, div.module_menu ul li a:visited {
font-weight: 700;
background: transparent url(../images/blue/bullet2.jpg) top left no-repeat;
padding: 2px 0;
line-height: 24px;
}
#leftcolumn div.module table ,#rightcolumn div.module table {
}
#leftcolumn div.module table td ,#rightcolumn div.module table td {
padding: 0 0 6px;
vertical-align: middle;
}
#leftcolumn div.module table.poll {
}
#leftcolumn div.module table.poll td {
text-align: left;
}
/* LEFT COL H3 */
#leftcolumn h3, #rightcolumn h3 {
background: url(../images/h3_l.png) top left no-repeat;
width: 164px;
height: 36px;
line-height: 35px;
padding: 0 14px 0 10px;
color: #fff;
font-size: 11px;
text-align: right;
font-weight: 400;
}
#rightcolumn h3 {
background: url(../images/h3_r.png) top left no-repeat;
text-align: left;
padding: 0 10px 0 14px;
}
#leftcolumn .moduletable_menu, #leftcolumn .moduletable, #leftcolumn .moduletable_text, #leftcolumn .c,
#rightcolumn .moduletable_menu, #rightcolumn .moduletable, #rightcolumn .moduletable_text, #rightcolumn .c {
margin: 0 0 16px 0;
padding: 0 0 8px 0;
}
#leftcolumn ul.menu, #rightcolumn ul.menu {
width: 170px;
margin: 0 auto;
list-style: none;
text-align: left;
}
#leftcolumn ul.menu li, #rightcolumn ul.menu li {
margin: 0;
padding: 0;
}
#leftcolumn ul.menu li:hover, #rightcolumn ul.menu li:hover {
}
#leftcolumn ul.menu li ul li, #rightcolumn ul.menu li ul li{
border-bottom: none;
}
/*LEFT COL LINK*/
#leftcolumn ul.menu li a, #leftcolumn ul.menu li a:link,
#rightcolumn ul.menu li a, #rightcolumn ul.menu li a:link {
font-weight: 400;
font-size: 11px;
line-height: 18px;
height: 18px;
padding: 0 0 0 10px;
text-decoration: none;
color: #fff;
background: url(../images/menu_row.gif) center left no-repeat;
}
#leftcolumn ul.menu li a:hover, #rightcolumn ul.menu li a:hover {
color: #db2282;
text-decoration: underline;
}
/*LEFT COL CURRENT LINK*/
#leftcolumn ul.menu li#current a, #leftcolumn ul.menu li#current a:link,
#rightcolumn ul.menu li#current a, #rightcolumn ul.menu li#current a:link {
padding: 0 0 0 10px;
color: #db2282;
text-decoration: underline;
background: url(../images/menu_row.gif) center left no-repeat;
}
#leftcolumn ul.menu li#current a:hover, #rightcolumn ul.menu li#current a:hover {
}
/*LEFT COL SUB LINK*/
#leftcolumn ul.menu li#current ul li a, #leftcolumn ul.menu li#current ul li a:link {
font-weight: 400;
font-size: 11px;
line-height: 18px;
height: 18px;
padding: 0 0 0 20px;
text-decoration: none;
color: #fff;
background: url(../images/submenu_row.gif) center left no-repeat;
}
#leftcolumn ul.menu li ul li#current a, #leftcolumn ul.menu li ul li#current a:link, #leftcolumn ul.menu li ul li#current a:visited, #leftcolumn ul.menu li ul li#current a:hover {
padding: 0 0 0 20px;
color: #db2282;
text-decoration: underline;
background: url(../images/submenu_row.gif) center left no-repeat;
}
#leftcolumn ul.menu li.parent ul li a {
font-size: 11px;
font-weight: 400;
line-height: 18px;
height: 18px;
padding: 0 0 0 20px;
color: #d4504a;
background: url(../images/submenu_row.gif) center left no-repeat;
text-decoration: none;
}
#leftcolumn ul.menu li.parent ul li a:hover {
color: #db2282;
text-decoration: underline;
}
/*SUBMENU POSITION*/
#leftcolumn ul.menu li#current ul {
margin: 0;
padding: 0;
}
#leftcolumn ul.menu li#current ul li {
margin: 0;
padding: 0;
}
/*CURRENT SUBMENU POSITION*/
#leftcolumn ul.menu li ul {
margin: 0;
padding: 0;
}
#leftcolumn ul.menu li#current ul li a:hover {
color: #db2282;
text-decoration: underline;
}
#leftcolumn ul.menu li ul, #rightcolumn ul.menu li ul {
list-style: none;
}
/* forms */
#leftcolumn .moduletable ul, #rightcolumn .moduletable ul {
margin: 6px 0;
padding: 0;
list-style: none;
}
#leftcolumn .moduletable ul li, #rightcolumn .moduletable ul li {
margin: 0;
padding: 0 2px;
}
table.adminform textarea {
width: 540px;
height: 400px;
font-size: 1em;
color: #000099;
}
form#form-login fieldset {
border: 0 none;
margin-top: 0;
padding: 0;
text-align: left;
}
form#form-login ul {
padding: 0;
list-style-position: inside;
text-align: left;
width: 160px;
margin: 10px auto 15px;
}
form#form-login ul li {
padding: 0;
}
form#form-login ul li a {
text-align: left;
padding: 0;
font-size: 10px;
color: #8e8e8e;
text-decoration: none;
}
form#form-login ul li a:hover {
text-decoration: underline;
}
/* thumbnails */
div.mosimage { margin: 5px; }
div.mosimage_caption { font-size: .90em; color: #333; }
div.caption { padding: 0 10px 0 10px; }
div.caption img { border: 1px solid #CCC; }
div.caption p { font-size: .90em; color: #333; text-align: center; }
/* Parameter Table */
table.paramlist {
margin-top: 5px;
}
table.paramlist td.paramlist_key {
width: 128px;
text-align: left;
height: 30px;
}
table.paramlist td.paramlist_value {
}
div.message {
font-family: Tahoma, Arial, sans-serif;
font-weight: 700;
font-size : 14px;
color : #c30;
text-align: center;
width: auto;
background-color: #f9f9f9;
border: solid 1px #d5d5d5;
margin: 3px 0px 10px;
padding: 3px 20px;
}
/* Banners module */
/* Default skyscraper style */
.bannergroup {
}
.banneritem {
}
/* Text advert style */
.banneritem_text {
padding: 4px;
font-size: 11px;
}
.bannerfooter_text {
padding: 4px;
font-size: 11px;
text-align: right;
}
/* System Messages */
/* see system general.css */
.pagination span { padding: 2px; }
.pagination a { padding: 2px; }
/* Polls */
.pollstableborder td {
text-align: left;
}
/* Frontend Editing*/
fieldset {
border: 1px solid #ccc;
margin-top: 15px;
padding: 4px;
}
legend {
margin: 0;
padding: 0 10px;
}
td.key {
border-bottom:1px solid #eee;
color: #333;
}
/* Tooltips */
.tool-tip {
float: left;
background: #ffc;
border: 1px solid #D4D5AA;
padding: 5px;
max-width: 200px;
}
.tool-title {
padding: 0;
margin: 0;
font-size: 100%;
font-weight: 700;
margin-top: -15px;
padding-top: 15px;
padding-bottom: 5px;
background: url(../../system/images/selector-arrow.png) no-repeat;
}
.tool-text {
font-size: 100%;
margin: 0;
}
/* System Standard Messages */
#system-message dd.message ul {
padding: 0;
margin: 0;
background: none;
border: none;
}
/* System Error Messages */
#system-message dd.error ul {
color: #c00;
background: none;
border: none;
padding: 0;
margin: 0;
}
/* System Notice Messages */
#system-message dd.notice ul {
color: #c00;
background: none;
border: none;
padding: 0;
margin: 0;
}
#system-message dd {
text-indent: 0;
}
#system-message dd ul {
list-style-type: none;
color: #c00;
background: none;
border: none;
}
#system-message {
margin-top: 5px;
} |