/*生成博客目录的CSS*/
 #sideBar{
      font-size:12px;
      font-family:Arial, Helvetica, sans-serif;
      text-align:left;
      position:fixed;/*将div的位置固定到距离top:50px，right:0px的位置，这样div就会处在最右边的位置，距离顶部50px*/
      top:50px;
      right:0px;
      width: auto;
      height: auto; 
 }
 #sideBarTab{
     float:left;
     width:30px; 
     border:1px solid #e5e5e5;
     border-right:none;
     text-align:center;
     background:#ffffff;
 }
20 
21 #sideBarContents{
22     float:left;
23     overflow:auto; 
24     overflow-x:hidden;!important;
25     width:200px;
26     min-height:108px;
27     max-height:460px;
28     border:1px solid #e5e5e5;
29     border-right:none; 
30     background:#ffffff;
31 }
32 #sideBarContents dl{
33     margin:0;
34     padding:0;
35 }
36 
37 #sideBarContents dt{
38     margin-top:5px;
39     margin-left:5px;
40 }
41 
42 #sideBarContents dd, dt {
43     cursor: pointer;
44 }
45 
46 #sideBarContents dd:hover, dt:hover {
47     color:#A7995A;
48 }