blob: 339e03b7a4bf938a072472fa00d8df6e0b7932a0 (
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
|
/*
Navigation Style Sheet for the W3C Markup Validation Service.
Copyright 2000-2005 W3C (MIT, INRIA, Keio). All Rights Reserved.
See http://www.w3.org/Consortium/Legal/ipr-notice.html#Copyright
$Id: navbar.css,v 1.14 2005-01-25 21:35:49 ot Exp $
*/
#menu {
background-color: #053188;
background-image:url(images/bg2.gif);
margin: 0;
padding: 0;
margin-left: 42px;
padding-top:8px;
padding-bottom: 8px;
line-height: 140%;
vertical-align: bottom;
font-size: 0.9em;
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: 0;
text-align: left;
text-decoration: none;
padding: 1ex;
border-left: 1px solid black;
border-bottom: 1px solid black;
margin-top: -15px;
font-size: 0.9em;
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;
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;
}
|