/**
 * @package 	JF Side Buttons
 * @author		JoomForest.com
 * @email		support@joomforest.com
 * @website		http://www.joomforest.com
 * @copyright	Copyright (C) 2011-2016 JoomForest.com, All rights reserved.
 * @license		JoomForest.com Proprietary Use License - http://www.joomforest.com/licenses
**/

.sticky-container{
    padding:0px;
    margin:0px;
    position:fixed;
    right:-250px;
    top:230px;
    width:330px;
    z-index: 1100;
}
.sticky li{
    list-style-type:none;
   border-radius:6px;
    background: rgb(255,255,255); 
background: -moz-linear-gradient(top, rgba(255,255,255,1) 1%, rgba(238,238,238,1) 100%); 
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 1%,rgba(238,238,238,1) 100%); 
background: linear-gradient(to bottom, rgba(255,255,255,1) 1%,rgba(238,238,238,1) 100%);
    

    padding:0px;
    margin:0px 0px 1px 0px;
    -webkit-transition:all 0.25s ease-in-out;
    -moz-transition:all 0.25s ease-in-out;
    -o-transition:all 0.25s ease-in-out;
    transition:all 0.25s ease-in-out;
    cursor:pointer;
}
.sticky li:hover{
    margin-left:-180px;
}
.sticky li img{
    float:left;
    margin:5px 4px;
    margin-right:5px;
}
.sticky li p{
    padding-top:0px;
    margin:0px;
    line-height:60px;
    font-size:14px;
}
.sticky li p a{
    text-decoration:none;
    color:#0E386A;
}
.sticky li p a:hover{
    text-decoration:underline;
}



