
		div.submenu-container {
			position: absolute;
			width: 222px;
			margin: 25px 58px;
		/*	bottom: 20px;
			margin-left: 58px; */
		}
		ul.submenu {
			position: relative;
			list-style: none;
			margin-top: 30px;
			width: 222px;
			opacity: 1;
			z-index: 5;
		}

		@-moz-keyframes expand {  
			0% {
				width: 5px;
				padding-left: 0px;
			}
			100% {
				width: 148;
				padding-left: 20px;
			}
		}

		@-moz-keyframes expand-bounce {
			0% {
				width: 5px;
				padding-left: 0px;
			}
			50% {
				width: 148;
			}
			70% {
				width: 125.8;
			}
			80% {
				width: 148;
			}
			90% {
				width: 140.6;
			}
			100% {
				width: 148;
				padding-left: 20px;
			}
		}

		@-webkit-keyframes expand {  
			0% {
				width: 5px;
				padding-left: 0px;
			}
			100% {
				width: 148;
				padding-left: 20px;
			}
		}

		@-webkit-keyframes expand-bounce {  
			0% {
				width: 5px;
				padding-left: 0px;
			}
			50% {
				width: 148;
			}
			70% {
				width: 125.8;
			}
			80% {
				width: 148;
			}
			90% {
				width: 140.6;
			}
			100% {
				width: 148;
				padding-left: 20px;
			}
		}

		@-moz-keyframes shrink {
			
			0% {
				width: 148;
				padding-left: 20px;
			}
			100% {
				width: 5px;
				padding-left: 0px;
			}
		}

		@-moz-keyframes shrink-bounce {
			
			0% {
				width: 148;
				padding-left: 20px;
			}
			50% {
				width: 5px;
			}
			70% {
				width: 35px;
			}
			80% {
				width: 5px;
			}
			90% {
				width: 15px;
			}
			100% {
				width: 5px;
				padding-left: 0px;
			}
		}

		@-webkit-keyframes shrink {
			
			0% {
				width: 148;
				padding-left: 20px;
			}
			100% {
				width: 5px;
				padding-left: 0px;
			}
		}

		@-webkit-keyframes shrink-bounce {
			
			0% {
				width: 148;
				padding-left: 20px;
			}
			50% {
				width: 5px;
			}
			70% {
				width: 35px;
			}
			80% {
				width: 5px;
			}
			90% {
				width: 15px;
			}
			100% {
				width: 5px;
				padding-left: 0px;
			}
		}

		ul.submenu li {
			width: 5px;
			height: 30px;
			line-height: 20px;
			padding: 0px 0px 0px 0px;
			margin-top: 3px;
			background: transparent;
			width: 5px;
			opacity: .95;
		}
		ul.submenu.tight li {
			margin-top: 0 !important;
		}
		ul.submenu li {
			-moz-animation-name: shrink;
			-moz-animation-duration: 0.5s;
			-moz-animation-timing-function: ease-in-out;
			-webkit-animation-name: shrink;
			-webkit-animation-duration: 0.5s;
			-webkit-animation-timing-function: ease-in-out;
		}
		ul.submenu.bounce li {
			-moz-animation-name: shrink-bounce;
			-moz-animation-duration: 0.5s;
			-moz-animation-timing-function: ease-in-out;
			-webkit-animation-name: shrink-bounce;
			-webkit-animation-duration: 0.5s;
			-webkit-animation-timing-function: ease-in-out;
		}
		ul.submenu li:hover {
			width: 148;
			padding-left: 20px;
			-moz-animation-name: expand;
			-moz-animation-duration: 0.5s;
			-moz-animation-timing-function: ease-in-out;
			-webkit-animation-name: expand;
			-webkit-animation-duration: 0.5s;
			-webkit-animation-timing-function: ease-in-out;
		}
		ul.submenu.bounce li:hover {
			-moz-animation-name: expand-bounce;
			-moz-animation-duration: 0.5s;
			-moz-animation-timing-function: ease-in-out;
			-webkit-animation-name: expand-bounce;
			-webkit-animation-duration: 0.5s;
			-webkit-animation-timing-function: ease-in-out;
		}

		ul.submenu a {
			width: 148;
			text-decoration: none;
			font-size: 14px;
			line-height: 24px;
			color: #FFF;
			text-shadow: 0px 0px 3px #333;
			font-weight: bold;
			position: absolute;
			padding: 3px 0px;
			padding-left: 20px;
		}

		/* RESPONSIVE */
		@media screen and (max-width: 1140px) { 
			ul.submenu a {
				font-size: 13px;
			}
		}
		@media screen and (max-width: 960px) { 
			ul.submenu a {
				font-size: 12px;
			}
		}
		@media screen and (max-width: 720px) { 
			ul.submenu a {
				font-size: 11px;
			}
		}
	