﻿/*...... sidebar CSS ........*/
.sidebar
{
    width: 300px;
    float: left;
}

.sidebarContainer /*container for each sidebar modules*/
{
    width: 300px;
    clear: both;
    margin: 0px;
    padding: 0px;
    height: auto;
    overflow: hidden;
}

.sidebarContainer .koukoku /*sidebar koukoku space */
{
    width: 300px;
    position: relative;
    height: auto;
}

.table
{
    width: 300px;
    border: 1px solid #c6c6c6;
    border-top: 0;
    line-height: 20px;
    font-size: 14px;
    background: #ffffff;
}
.table .show
{
    width: 275px;
    text-align: left;
    padding-left: 5px;
}
.table .date
{
    width: 30px;
    text-align: right;
    font-weight: bold;
    font-size: 13px;
}

/*sidebarLists are general code for all list content in the sidebar, such as movie lists */

.sidebarList
{
    width: 300px;
    background: #d0be99;
}

.sidebarList h1 /*the header of the list*/
{
    width: 290px;
    height: 33px;
    font-size: 16px;
    color: #FFF;
    margin-top: 0px;
    line-height: 32px;
    padding-left: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-family:Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
	background: url(../images/interface/Sidebar/sidebarboxTitle_bg.png) repeat-x scroll left top transparent;
	text-align:center;
    /*
	-moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    -khtml-border-radius: 8px;
    text-shadow: 0 1px #000, 1px 0 #000
	*/
}

.sidebarList li
{
    list-style: none;
	font-size:13px;
}

.sidebarList li a
{
    width: 275px;
    color: #4d483e;
    padding: 6px 15px 6px 10px;
    display: inline-block;
    /*text-shadow: 0 -1px 1px rgba(0,0,0,0.25);*/
	font-weight:bold;
}

.sidebarList li a:link, .sidebarList li a:visited
{
    color: #4d483e;
	font-weight:bold;
}

.sidebarList li a:hover
{
    color: #4793dd;
	font-weight:bold;
    text-decoration: none;
 

}

.sidebarList li:last-child a:link, .sidebarList li:last-child a:visited
{
    -moz-border-radius-bottomright: 8px;
    -webkit-border-bottom-right-radius: 8px;
    border-bottom-right-radius: 8px;
    -khtml-border-radius-bottomright: 8px;
    -moz-border-radius-bottomleft: 8px;
    -webkit-border-bottom-left-radius: 8px;
    border-bottom-left-radius: 8px;
    -khtml-border-radius-bottomleft: 8px;
}

.sidebarList li:last-child a:hover
{
    -moz-border-radius-bottomright: 8px;
    -webkit-border-bottom-right-radius: 8px;
    border-bottom-right-radius: 8px;
    -khtml-border-radius-bottomright: 8px;
    -moz-border-radius-bottomleft: 8px;
    -webkit-border-bottom-left-radius: 8px;
    border-bottom-left-radius: 8px;
    -khtml-border-radius-bottomleft: 8px;
}


