/** STYLE BUTTON CSS **/

.linkSearch{
	display: block;
	width: auto;
	height: 31px;
	position: fixed;
	left: -100px;
	top: 250px;
	z-index: 1000;
	padding: 60px 10px 10px 10px;
	font: normal 22px/22px 'GothamMedium', arial, verdana, 'sans-serif';
	text-align: center;
	color: #fff !important;
	background-color: #204780;
	
	transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	
	transition-property: left;
	transition-duration: 1s;
	transition-timing-function: easy;
}

.linkSearch:hover{left: -85px}
