#socialMenu {
    left: -41px;
    position: fixed;
	z-index: 9999999;
	top: 80px;
}

#socialMenu li{
	list-style:none;
	height:39px;
	padding:2px;
	width:40px;
}

#socialMenu span{
	/* Container properties */
	width:0;
	left:38px;
	padding:0;
	position:absolute;
	overflow:hidden;

	/* Text properties */
	font-family:'Myriad Pro',Arial, Helvetica, sans-serif;
	font-size:18px;
	font-weight:bold;
	letter-spacing:0.6px;
	white-space:nowrap;
	line-height:39px;
	
	/* CSS3 Transition: */
	-webkit-transition: 0.25s;
	
	/* Future proofing (these do not work yet): */
	-moz-transition: 0.25s;
	transition: 0.25s;
}

#socialMenu a{
	background:url(../img/navigation.jpg) no-repeat;

	height:39px;
	width:38px;
	display:block;
	position:relative;
}

/* General hover styles */

#socialMenu a:hover span{ width:auto; padding:0 20px;overflow:visible; }
#socialMenu a:hover{
	text-decoration:none;
	
	/* CSS outer glow with the box-shadow property */
	-moz-box-shadow:0 0 5px #9ddff5;
	-webkit-box-shadow:0 0 5px #9ddff5;
	box-shadow:0 0 5px #9ddff5;
}

/* Green Button */

#socialMenu .home {	background-position:0 0;}
#socialMenu .home:hover {	background-position:0 -39px;}
#socialMenu .home span{
	background-color:#7da315;
	color:#3d4f0c;
	text-shadow:1px 1px 0 #99bf31;
}

/* Blue Button */

#socialMenu .about { background-position:-38px 0;}
#socialMenu .about:hover { background-position:-38px -39px;}
#socialMenu .about span{
	background-color:#1e8bb4;
	color:#223a44;
	text-shadow:1px 1px 0 #44a8d0;
}

/* Orange Button */

#socialMenu .services { background-position:-76px 0;}
#socialMenu .services:hover { background-position:-76px -39px;}
#socialMenu .services span{
	background-color:#c86c1f;
	color:#5a3517;
	text-shadow:1px 1px 0 #d28344;
}

/* Yellow Button */

#socialMenu .facebook { background-position:-114px 0;}
#socialMenu .facebook:hover{ background-position:-114px -39px;}
#socialMenu .facebook span{
	background-color:#4D68A2;
	color:#FFF;
	text-shadow:1px 1px 0 #6983B8;
}

/* Purple Button */

#socialMenu .contact { background-position:-152px 0;}
#socialMenu .contact:hover { background-position:-152px -39px;}
#socialMenu .contact span{
	background-color:#af1e83;
	color:#460f35;
	text-shadow:1px 1px 0 #d244a6;
}