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
|
* {
margin: 0;
padding: 0;
}
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 0.7em;
color: #000;
background: #ededed url(../../images/interface/menu_body.gif) top left repeat-y;
}
img {
border: 0;
}
ul {
list-style-type: none;
}
#menu {
width: 199px;
}
#menu h2 {
position: relative;
padding: 0 5px;
height: 26px;
color: #ef9f1b;
background: #ededed url(../../images/interface/bar.gif) top left repeat-x;
border-bottom: 1px solid #fff;
line-height: 26px;
font-size: 1em;
}
#menu h2 img {
position: absolute;
top: 9px;
right: 8px;
}
#menu ul li {
padding: 0 10px;
height: 26px;
line-height: 26px;
border-bottom: 1px solid #fff;
}
#menu ul li a {
padding-left: 12px;
background: url(../../images/interface/menu_li1.gif) 0 0.35em no-repeat;
}
#menu ul li a:link, #menu ul li a:active, #menu ul li a:visited {
color: #6e7475;
text-decoration: none;
}
#menu ul li a:hover {
background: url(../../images/interface/menu_li2.gif) 0 0.35em no-repeat;
color: #000;
}
#menu ul li.menuli_style1 {
background-color: #ededed;
}
#menu ul li.menuli_style2 {
background-color: #e9e9e9;
}
#menu a.flag {
padding-left: 12px;
background: url(../../images/interface/menu_blank.gif) 0 0.35em no-repeat;
}
#menu div.flag {
padding: 0 10px;
height: 26px;
line-height: 26px;
border-bottom: 1px solid #fff;
color: #6e7475;
}
|