/**************************************************/
/*** BACK TO TOP BUTTON ***/
.back_to_top_button{

	position:fixed; 
	bottom:100px; 
	right:0px; 
	cursor:pointer;
	padding:20px 10px 5px 10px;
	font-size: 0.9em;
	color:white;
	font-weight:normal;
	background-color:rgb(33, 100, 155);

	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	-moz-border-radius-topleft: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-top-left-radius: 3px;	

	background-image:url(../images/icon_back_to_top.png);
	background-repeat: no-repeat;
	background-position: center 5px;	
}