blob: d76d632ed016ad52bf4eaafc99ad85569df0cba3 (
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
|
/*
Navigation Style Sheet for the W3C Markup Validation Service.
Copyright 2000-2004 W3C (MIT, INRIA, Keio). All Rights Reserved.
See http://www.w3.org/Consortium/Legal/ipr-notice.html#Copyright
$Id: navbar.css,v 1.11 2005-01-04 08:37:53 ot Exp $
*/
#menu {
background-color: #053188;
background-image:url(images/bg2.gif);
width: 780px;
margin: 0;
padding: 0;
margin-left: 72px;
padding-top:8px;
vertical-align: bottom;
font-size: 10px;
height: 20px;
list-style-type: none;
border-left: 1px solid #053188;
border-right: 1px solid #053188;
}
#menu li {
display: inline;
}
#menu li a {
height: 20px;
padding-right: 20px;
padding-left: 25px;
color: white;
}
/* Jump Bar - results page*/
.jumpbar {
background-color: white;
float: right;
width: 8em;
margin-right: -15px;
text-align: left;
text-decoration: none;
padding: 1ex;
border-left: 1px solid black;
border-bottom: 1px solid black;
margin-top: -15px;
font-size: 10px;
font-weight: bold;
}
.jumpbar ul {
padding: 0;
margin: 0;
}
.jumpbar li {
list-style-type: none;
text-align: right;
}
div.jumpbar li a {
height: 20px;
padding-right: 20px;
padding-left: 25px;
}
div.jumpbar li a:hover {
text-decoration: underline;
}
.jumpbar li a:link, .jumpbar li a:visited {
text-decoration: none;
text-align: right;
display: block;
width: 8em;
padding: 2px 0px;
margin: 0;
font-size: smaller;
border-top: dotted 1px #053188;
}
.jumpbar li a#selected:link, .jumpbar li a#selected:visited {
text-decoration: underline;
background-color: #fff;
color: #053188;
border-right: solid 1px #ddd;
border-bottom: solid 1px #fff;
}
|