/*

HOW TO CREATE A CSS3 DROPDOWN MENU [TUTORIAL]

"How to create a CSS3 Dropdown Menu [Tutorial]" was specially made for DesignModo by our friend Valeriu Timbuc.

Links:
http://vtimbuc.net/
https://twitter.com/vtimbuc
http://designmodo.com
http://vladimirkudinov.com
        filter:alpha(opacity=0); opacity:0; -moz-opacity:0;

*/

/* Reset */
.menu,
.menu ul,
.menu li,
.menu a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

/* Menu */
.menu {	
	z-index:200;
	height: 50px;
	width: 1024px;

}

.menu li {
	position: relative;
	list-style: none;
	float: left;
	display: block;
	height: 50px;
}

/* Links */

.menu li a {
	display: block;
	padding: 0 28px;
	margin: 10px 0;
	line-height: 28px;
	text-decoration: none;
	
	border-left: 1px solid rgb(220,78,36);
	border-right: 1px solid rgb(220,78,36);

	font-family: Helvetica, ¸¼Àº °íµñ; µ¸¿ò;
	font-weight: bold;
	font-size: 17px;

	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,.3);

	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}

.menu li:first-child a { border-left: none; }
.menu li:last-child a{ border-right: none; }
.menu li:hover > a { color: #8fde62; }

/* Sub Menu */

.menu ul {
	position: absolute ;
	z-index:200;
	top: 48px;
	left: 0;
	opacity: 0;
	width: 190px;
	background-image:url('../builder/smenubg.png'); 
	overflow: hidden;
	
}

.menu li:hover > ul { opacity: 1; }

.menu ul li {
	height: 0;
	overflow: hidden;
	padding: 0;

	-webkit-transition: height .25s ease .1s;
	-moz-transition: height .25s ease .1s;
	-o-transition: height .25s ease .1s;
	-ms-transition: height .25s ease .1s;
	transition: height .25s ease .1s;
}

.menu li:hover > ul li {
	height: 36px;
	overflow: hidden;
	padding: 0;
}

.menu ul li a {
	width: 150px;
	padding: 4px 0 4px 40px;
	margin: 0;
	border: none;
	overflow: hidden;
	
}

.menu ul li:last-child a { border: none; }

