/*
* @By Vi Quang Hoa
* @Mobile 0983.50.99.56
* @Email vyquanghoa@gmail.com
* @Website http://viquanghoa.com
* @Yahoo vyquanghoa
* @Skype vyquanghoa
* @Facebook https://www.facebook.com/vyquanghoa
* @Created on Oct 22, 2014, 2:45:40 PM
*/
.left_vSidebar{
    position: fixed;
    left: 0;
    bottom: 30%;
	z-index:2000;
}
.left_vSidebar ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.left_vSidebar li{
    margin-bottom: 1px;
    height: 50px;
}
.left_vSidebar li a{
    display: block;
    position: relative;
}
.left_vSidebar li .icon{
    display: block;
    width: 50px;
    height: 50px;
    background: #a11514;
    overflow: hidden;
}
.left_vSidebar li .txt{
    display: none;
    position: absolute;
    left: 50px;
    height: 50px;
    line-height: 50px;
    top: 0;
    white-space: nowrap;
    color: #fff;
    border-left: 4px solid #a11514;
    padding: 0 20px;
    font-size: 14px;
    -moz-border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    border-radius: 0 5px 5px 0;
    background: #a11514;
}
.left_vSidebar li:hover .txt{
    width: auto;
    padding: 0 20px;
    border-right: 1px solid #117b5c;
}
.left_vSidebar li:hover .icon{
    background: #CA3231;
}
.left_vSidebar li:hover .icon:before{
    border-left: 1px solid #225909;
    content: '';
    position: absolute;
    height: 100%;
    width: 0;
    left: 0;
    top: 0
}