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
|
#header {
// width: 820px;
position: relative;
height: 182px;
#background: #000011 url(linhes_header.png) no-repeat center top;
background: #ebb81c url(linhes_header.png) no-repeat center bottom ;
padding: 0;
padding-top: 1px;
font-size: 14px;
color: #FFF;
}
#header h1#logo-text {
// position: absolute;
margin: 0; padding: 0;
font: bolder 3.3em 'Trebuchet MS', Arial, Sans-serif;
letter-spacing: -2px;
color: #FFFFFF;
text-transform: none;
text-align: center;
/* change the values of top and left to adjust the position of the logo*/
top: 0px; left: 150px;
}
#content
{
color: #FFFFFF;
text-transform: none;
text-align: center;
}
#navcontainer
{
width: 100%;
float: left;
background-color:#0072bc;
}
#navcontainer ul { padding: 0; }
#navcontainer ul li { display: inline; }
#navcontainer ul
{
margin: 0;
padding: 0 0 0 7%;
color: #FFFFFF;
font-family: tahoma, verdana, geneva, arial, helvetica, sans-serif;
//font-size: .65em;
letter-spacing: 2px;
font-weight: bold;
float: right;
//background:#ebb81c;
background-color: #0072bc;
}
#navcontainer ul li a
{
padding: 0.2em 12px;// background-color: #ebb81c;
background-color: #0072bc;
color: #FFFFFF;
text-decoration: none;
float: left;
//border-right: 1px solid #94B473;
border-top-right-radius: 15px;
-moz-border-top-right-radius: 15px;
border-top-left-radius: 15px;
-moz-border-top-left-radius: 15px;
}
#navcontainer a:active
{
background-color: #ECECEC;
color: #333;
border-top-right-radius: 25px;
-moz-border-top-right-radius: 25px;
border-top-left-radius: 25px;
-moz-border-top-left-radius: 22px;
}
#navcontainer ul li a:hover
{
background-color: #ECECEC;
color: #333;
}
#navlist li a:hover, #navlist li a:active li:active
{
color: #FFFFFF;
text-decoration: none;
background:black;
text-align: right;
font-family: tahoma, verdana, geneva, arial, helvetica, sans-serif;
}
|