tabs.css revision 303975
1255592Sdes/* tabs styles, based on http://www.alistapart.com/articles/slidingdoors */
2255592Sdes
3255592SdesDIV.tabs
4255592Sdes{
5255592Sdes   float            : left;
6255592Sdes   width            : 100%;
7255592Sdes   background       : url("tab_b.gif") repeat-x bottom;
8255592Sdes   margin-bottom    : 4px;
9255592Sdes}
10255592Sdes
11255592SdesDIV.tabs UL
12255592Sdes{
13255592Sdes   margin           : 0px;
14255592Sdes   padding-left     : 10px;
15255592Sdes   list-style       : none;
16255592Sdes}
17255592Sdes
18255592SdesDIV.tabs LI, DIV.tabs FORM
19255592Sdes{
20255592Sdes   display          : inline;
21255592Sdes   margin           : 0px;
22255592Sdes   padding          : 0px;
23255592Sdes}
24255592Sdes
25266179SdesDIV.tabs FORM
26266179Sdes{
27266179Sdes   float            : right;
28266179Sdes}
29266179Sdes
30266179SdesDIV.tabs A
31266179Sdes{
32266179Sdes   float            : left;
33266179Sdes   background       : url("tab_r.gif") no-repeat right top;
34266179Sdes   border-bottom    : 1px solid #84B0C7;
35255592Sdes   font-size        : x-small;
36255592Sdes   font-weight      : bold;
37255592Sdes   text-decoration  : none;
38255592Sdes}
39282089Sdes
40255592SdesDIV.tabs A:hover
41255592Sdes{
42255592Sdes   background-position: 100% -150px;
43255592Sdes}
44255592Sdes
45255592SdesDIV.tabs A:link, DIV.tabs A:visited,
46255592SdesDIV.tabs A:active, DIV.tabs A:hover
47255592Sdes{
48255592Sdes       color: #1A419D;
49287917Sdes}
50255592Sdes
51255592SdesDIV.tabs SPAN
52255592Sdes{
53255592Sdes   float            : left;
54255592Sdes   display          : block;
55255592Sdes   background       : url("tab_l.gif") no-repeat left top;
56255592Sdes   padding          : 5px 9px;
57255592Sdes   white-space      : nowrap;
58255592Sdes}
59255592Sdes
60255595SdesDIV.tabs INPUT
61255595Sdes{
62255592Sdes   float            : right;
63255592Sdes   display          : inline;
64255592Sdes   font-size        : 1em;
65255592Sdes}
66255592Sdes
67255592SdesDIV.tabs TD
68255592Sdes{
69255592Sdes   font-size        : x-small;
70255592Sdes   font-weight      : bold;
71255592Sdes   text-decoration  : none;
72255592Sdes}
73255592Sdes
74255592Sdes
75255592Sdes
76255592Sdes/* Commented Backslash Hack hides rule from IE5-Mac \*/
77255592SdesDIV.tabs SPAN {float : none;}
78255592Sdes/* End IE5-Mac hack */
79255592Sdes
80255592SdesDIV.tabs A:hover SPAN
81255592Sdes{
82255592Sdes   background-position: 0% -150px;
83255592Sdes}
84255592Sdes
85255592SdesDIV.tabs LI.current A
86255592Sdes{
87255592Sdes   background-position: 100% -150px;
88255592Sdes   border-width     : 0px;
89255592Sdes}
90255592Sdes
91255592SdesDIV.tabs LI.current SPAN
92255592Sdes{
93255592Sdes   background-position: 0% -150px;
94255592Sdes   padding-bottom   : 6px;
95255592Sdes}
96255592Sdes
97255592SdesDIV.navpath
98255592Sdes{
99255592Sdes   background       : none;
100255592Sdes   border           : none;
101255592Sdes   border-bottom    : 1px solid #84B0C7;
102255592Sdes}
103255592Sdes