#BackToTop {
	float: left;
	display:none;
    color: #eee;
    margin: 0 5px;
    padding: 2px;
    text-decoration: none;
    
    font:  30px  Arial, Helvetica;
	position:fixed;
	bottom:0px;
	right:10px;
	z-index:1000;
    
	
	
	/*********************/
	/** CSS3 properties **/
	/*********************/
	/** Background gradient **/
	background-color: #333;

	
	/** box Radius **/
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
	
	/** Text Shadow **/
    text-shadow: 0 -1px 0 rgba(0,0,0,.8);
	
	/** Box shadow **/
   -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3), 0 3px 0 rgba(0, 0, 0, 0.7), 0 2px 2px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3), 0 3px 0 rgba(0, 0, 0, 0.7), 0 2px 2px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3), 0 1px 0 rgba(0, 0, 0, 0.7), 0 2px 2px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
}

#BackToTop span
{
    /*border: 1px dashed #c7c7c7;*/
    display: block;
    padding: 4px 10px;
    cursor: pointer;
	
	/*********************/
	/** CSS3 properties **/
	/*********************/
	/** Background gradient **/
    background-color: #333   background-image: -moz-linear-gradient(#4c4a4a, #333);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#4c4a4a), to(#333));
    background-image: -webkit-linear-gradient(#4c4a4a, #333);
    background-image: -o-linear-gradient(#4c4a4a, #333);
    background-image: -ms-linear-gradient(#4c4a4a, #333);
    background-image: linear-gradient(#4c4a4a, #333);
 
}