#neutrone{}
@charset "utf-8";
/* CSS Document */
* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#social{
	position: fixed;
	top: 65px;
	right: 10px;
	padding: 0;
	background: transparent;
	width: 60px;
	height: auto;
	z-index: 10;
	transition-property: border;
	transition-duration: 0.3s;
}
@media screen and (max-width: 440px)  {
	#social{top:unset; right: unset; left: 50%; bottom:65px; width: 320px; margin-left: -160px;}
}
#social div{
	margin: 10px auto;
	text-align: center;
	height: 60px;
}
@media screen and (max-width: 440px)  {
	#social div{display: inline-block; margin: 10px 5px;}
}
#social div img{
	width: 50px;
	margin: 5px auto;
	filter: drop-shadow(-6px 6px 6px #777);
	transition-property: width, margin;
	transition-duration: 0.3s;
}
#social div img:hover{
	margin: 0px auto;
	position: relative;
	width: 60px;
	z-index: 12;
}