1226031Sstas/* tabs styles, based on http://www.alistapart.com/articles/slidingdoors */
2226031Sstas
3226031SstasDIV.tabs
4226031Sstas{
5226031Sstas   float            : left;
6226031Sstas   width            : 100%;
7226031Sstas   background       : url("tab_b.gif") repeat-x bottom;
8226031Sstas   margin-bottom    : 4px;
9226031Sstas}
10226031Sstas
11226031SstasDIV.tabs UL
12226031Sstas{
13226031Sstas   margin           : 0px;
14226031Sstas   padding-left     : 10px;
15226031Sstas   list-style       : none;
16226031Sstas}
17226031Sstas
18226031SstasDIV.tabs LI, DIV.tabs FORM
19226031Sstas{
20226031Sstas   display          : inline;
21226031Sstas   margin           : 0px;
22226031Sstas   padding          : 0px;
23226031Sstas}
24226031Sstas
25226031SstasDIV.tabs FORM
26226031Sstas{
27226031Sstas   float            : right;
28226031Sstas}
29226031Sstas
30226031SstasDIV.tabs A
31226031Sstas{
32226031Sstas   float            : left;
33226031Sstas   background       : url("tab_r.gif") no-repeat right top;
34226031Sstas   border-bottom    : 1px solid #84B0C7;
35226031Sstas   font-size        : x-small;
36226031Sstas   font-weight      : bold;
37226031Sstas   text-decoration  : none;
38226031Sstas}
39226031Sstas
40226031SstasDIV.tabs A:hover
41226031Sstas{
42226031Sstas   background-position: 100% -150px;
43226031Sstas}
44226031Sstas
45226031SstasDIV.tabs A:link, DIV.tabs A:visited,
46226031SstasDIV.tabs A:active, DIV.tabs A:hover
47226031Sstas{
48226031Sstas       color: #1A419D;
49226031Sstas}
50226031Sstas
51226031SstasDIV.tabs SPAN
52226031Sstas{
53226031Sstas   float            : left;
54226031Sstas   display          : block;
55226031Sstas   background       : url("tab_l.gif") no-repeat left top;
56226031Sstas   padding          : 5px 9px;
57226031Sstas   white-space      : nowrap;
58226031Sstas}
59226031Sstas
60226031SstasDIV.tabs INPUT
61226031Sstas{
62226031Sstas   float            : right;
63226031Sstas   display          : inline;
64226031Sstas   font-size        : 1em;
65226031Sstas}
66226031Sstas
67226031SstasDIV.tabs TD
68226031Sstas{
69226031Sstas   font-size        : x-small;
70226031Sstas   font-weight      : bold;
71226031Sstas   text-decoration  : none;
72226031Sstas}
73226031Sstas
74226031Sstas
75226031Sstas
76226031Sstas/* Commented Backslash Hack hides rule from IE5-Mac \*/
77226031SstasDIV.tabs SPAN {float : none;}
78226031Sstas/* End IE5-Mac hack */
79226031Sstas
80226031SstasDIV.tabs A:hover SPAN
81226031Sstas{
82226031Sstas   background-position: 0% -150px;
83226031Sstas}
84226031Sstas
85226031SstasDIV.tabs LI.current A
86226031Sstas{
87226031Sstas   background-position: 100% -150px;
88226031Sstas   border-width     : 0px;
89226031Sstas}
90226031Sstas
91226031SstasDIV.tabs LI.current SPAN
92226031Sstas{
93226031Sstas   background-position: 0% -150px;
94226031Sstas   padding-bottom   : 6px;
95226031Sstas}
96226031Sstas
97226031SstasDIV.navpath
98226031Sstas{
99226031Sstas   background       : none;
100226031Sstas   border           : none;
101226031Sstas   border-bottom    : 1px solid #84B0C7;
102226031Sstas}
103