.bmenu li{
	font-size:40px;
	display:block;
	line-height:66px;
	
}
.bmenu li a{
	white-space:nowrap;
	color:transparent;
	display:block;
	text-align:center;
	text-transform:uppercase;
	text-shadow:0px 0px 3px #fff;
	letter-spacing:1px;
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	-webkit-transform: scale(0.8); 
	transform:scale(0.8);
	-webkit-transition:all 0.4s linear;
	-moz-transition:all 0.4s linear;
	-o-transition: all 0.4s linear;
	-ms-transition: all 0.4s linear;
	transition: all 0.4s ease-in-out;/*if you remove this , we cannot 
	                                   see the transformations.*/

}

/*.bmenu li:first-child a{
	-webkit-border-radius: 15px 15px 0px 0px;
	-moz-border-radius: 15px 15px 0px 0px;
	border-radius: 15px 15px 0px 0px;
	
}
.bmenu li:last-child a{
	-webkit-border-radius: 0px 0px 15px 15px;
	-moz-border-radius: 0px 0px 15px 15px;
	border-radius: 0px 0px 15px 15px;
	
}
*/
.bmenu:hover li a{/*hover bmenu and li->a text-shadow effects applies */
	text-shadow: 0px 0px 10px #fff;
}

.bmenu li a:hover{
	text-shadow:none;
	color:#fff;
	background:rgba(200,200,200,0.2);
	/*OR
      background:rgba(129,6,29,0.4);
	*/
	/*-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	-webkit-transform:scale(1);
	transform:scale(1);*/
	padding-left:60px;/*makes content shift right*/
}