.social-slide {
	/* Controls image height visibility */
	height: 32px;
	/* Controls image width visibility */
	width: 32px;
	/* Hides bottom half of the image */
	overflow: hidden;
	margin: 5px;
	float: right;
}
/*
.social-slide:hover {
	box-shadow: 0px 0px 2px 1px rgba(0,0,0,0.8);
}*/

.social-slide img {
	position: absolute;
	top: 0px;
	/* Controls overall image height */
	height: 64px;
	/* Controls overall image width */
	width: 32px;
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	-o-transition: all ease 0.3s;
	-ms-transition: all ease 0.3s;
	transition: all ease 0.3s;
}

.social-slide img:hover {
	/* Set to negative desired image height. The rest is hidden by "overflow: hidden;" in ".social-slide" */
	top: -32px;
}

.social-slide-image {
	position: relative;
	/* Controls image height window */
	height: 64px;
	/* Controls image width window */
	width: 32px;
}

#social-icons-container {
	text-align: right;
}

#social-icons-container ul {
	list-style-type: none;
	display:inline-block;
	text-align: left;
}

#social-icons-container li {
	float:left;
}