/*生成博客目录的CSS*/
#uprightsideBar{
    font-size:12px;
    font-family:Arial, Helvetica, sans-serif;
    text-align:left;
    position:fixed;/*将div的位置固定到距离top:50px，right:0px的位置，这样div就会处在最右边的位置，距离顶部50px*/
    top:50px;
    left:0px;
    width: auto;
    height: auto; 
}
#sideBarTab{
    float:left;
    width: 30px;
    border: 2px solid #e5e5e5;
    border-right: none;
    text-align: center;
    background: red;
    font-size: 18px;
    padding: 4px;
    color: white;
}

#sideBarContents{
    float: left;
    overflow: auto;
    overflow-x: hidden;
    border: 1px solid #e5e5e5;
    border-right: none;
    background: #ffffff;
    padding: 10px;
}
#sideBarContents dl{
    margin:0;
    padding:0;
}

#sideBarContents dt{
    line-height: 2em;
    font-size: 16px;
}

#sideBarContents dd, dt {
    cursor: pointer;
}

#sideBarContents dd:hover, dt:hover {
    color:#A7995A;
}