@charset "utf-8";
/* CSS Document */

nav #menu {
 	list-style: none;
 	list-style-image: none;
}

nav #menu li {
	-moz-box-shadow:1px 1px 20px #fff;
    -webkit-box-shadow:1px 1px 20px #fff;
    box-shadow:-1px -1px 25px #fff;
	
	/*border: 60px groove rgba(255,255,255,0.0);*/
	
	-webkit-transition:0.3s ease;
	-moz-transition:0.3s ease;
	-ms-transition:0.3s ease;
	-o-transition:0.3s ease;
	transition:0.3s ease;
}



nav #menu li:hover {
	-moz-box-shadow:1px 1px 20px rgba(255,255,255,0.0);
    -webkit-box-shadow:1px 1px 20px rgba(255,255,255,0.0);
    box-shadow:1px 1px 20px rgba(255,255,255,0.0);
	cursor:pointer;
 /*border: 1px inset rgba(0,0,0,0.0);*/
}



