/********************** side ***********************/
.side {
    width: 200px;
    float: left;
    /*
    -moz-box-shadow: 0px 4px 12px rgba(0%,0%,0%,0.5);
    -webkit-box-shadow: 0px 4px 12px rgba(0%,0%,0%,0.5);
    box-shadow: 0px 4px 12px rgba(0%,0%,0%,0.5);*/
    background: #FFF;
}
.has-side .content {
    width: calc(100% - 200px);
    float: right;
}
.side-title {
    color: #FFF;
    font-family: '微軟正黑體';
    font-weight: bold;
    font-size: 18px;
    padding: 39px 56px;
    background: url(../images/about/navside.jpg)center center no-repeat;
    background-size: contain;
}
.side-nav {
    position: relative;
    font-size: 15px;
}
.side-nav li a {
    display: block;
    margin-bottom: 2px;
}
.side-nav > li > a {
    color: #fff;
    position: relative;
    padding: 8px 25px;
    text-align: center;
    line-height: 24px;
    color: #333333;
    font-size: 16px;
    font-family: '微軟正黑體';
    /***漸層***/
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,eeeeee+100 */
background: #ffffff; /* Old browsers */
background: -moz-linear-gradient(top,  #ffffff 0%, #eeeeee 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #ffffff 0%,#eeeeee 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #ffffff 0%,#eeeeee 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */

    /*****/
    
}
.side-nav > li > a:hover {
    color: #84060C;
}
.side-nav > li > a:before {
    content: " ";
    background: url(../images/side_accodion.png) no-repeat;
    display: inline-block;
    vertical-align: text-bottom;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 4px;
}
.side-nav > li.active > a:before {
    background-position: 0 100%;
}
.side-nav ul {
    display: none;
}
.side-nav ul li a {
    color: #FF722E;
    border: 1px solid #FF722E;
    padding: 8px 10px 8px 36px;
}
.side-nav ul li a:hover,
.side-nav ul li.active > a {
    background-color: #FFF5D9;
}
.toggle-side {
    display: none;
}
