/* Sticky Button - Portfolio */

.btn00 {
	padding: 8px 10px;
	display: block;
	background-color: #818181;
	width: 100%;
	text-decoration: none;
	color: #fff;
	font-size: 15px;
	position: fixed;
	top: 0;
	left: 0;
	font-family: Arial, Helvetica, sans-serif;
	z-index:999;
	-webkit-transition: background 0.2s linear;
	-moz-transition: background 0.2s linear;
	-o-transition: background 0.2s linear;
	transition: background 0.2s linear;
	-webkit-box-shadow: 0px 0px 12px #000;
	-moz-box-shadow: 0px 0px 12px #000;
	-o-box-shadow: 0px 0px 12px #000;
	box-shadow: 0px 0px 12px #000;
}
.btn00:hover {
	background-color: #3f4453;
}

/* Sticky Button - Portfolio */