﻿
#navigationMenu li{
	list-style:none;
	height:44px;
    margin: 10px 0;
    width:45px;
}

#navigationMenu span{
	/* Container properties */
	width:0;
	right:45px;
	padding:0;
	position:absolute;
	overflow:hidden;
    top: 0;
    /* Text properties */
	font-size:15px;
	font-weight:400;
	letter-spacing:0.6px;
	white-space:nowrap;
	line-height:44px;
	
	/* CSS3 Transition: */
	-webkit-transition: 0.25s;
	
	/* Future proofing (these do not work yet): */
	-moz-transition: 0.25s;
	transition: 0.25s;
}

#navigationMenu a img
{
    margin: 0 5px;	
    height:44px;
	width:45px;

}

#navigationMenu a{

	height:44px;
	width:45px;
	display:block;
	position:relative;
	text-align:center;
}
#navigationMenu a i{

    color:#FFFFFF;
    font-size:18px;    
    margin-top: 10px;
}

/* General hover styles */

#navigationMenu a:hover span{ width:150px; padding:0 20px;overflow:visible; text-transform:capitalize; }
#navigationMenu a:hover{
	text-decoration:none;
	
}


#navigationMenu .icons{}
#navigationMenu .icons:hover { background-color:#d9d9d9;border-radius: 0px 40px 40px 0px;}
#navigationMenu .icons span{
	background-color:#d9d9d9;
	color:#000000;
	border-radius:40px 0px 0px 40px;
}



/* The styles below are only needed for the demo page */

#main {
    position: fixed;
    width: 45px;
    z-index: 999;
    top: 0;
    bottom: 0;
    height: 225px;
    margin: auto;
    right: 45px;
}









