/*

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

*/

/* Reset */
.menu,
.menu ul,
.menu li,
.menu a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

/* Menu */
.menu {	
	height: 60px;
	width: 800px;

}

.menu li {
	position: relative;
	list-style: none;
	float: left;
	display: block;
	height: 60px;
	width: 85px;
}

/* Links */

.menu li a {
	display: block;
	padding-top: 10px;
	margin: 0px 0;
	line-height: 12px;
	text-decoration: none;
	text-align:center;
//	border-left: 1px solid #afafaf;
//	border-right: 1px solid #4f5058;

	font-family: Malgun gothic, Helvetica, Arial, sans-serif;
//	font-weight: bold;
	font-size: 15px;

	color: #000000;
}

.menu li:first-child a { border-left: none; }
.menu li:last-child a{ border-right: none; }

.menu li:hover > a { color: #275ffe; font-weight: bold;}

/* Sub Menu */

.menu ul {
	position: absolute;
	top: 40px;
	left: 0;
	background: #ffffff;
	filter:alpha(opacity=10);
	opacity:0.5;

	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;

	-webkit-transition: opacity .25s ease .1s;
	-moz-transition: opacity .25s ease .1s;
	-o-transition: opacity .25s ease .1s;
	-ms-transition: opacity .25s ease .1s;
	transition: opacity .25s ease .1s;
}

.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: 40px;
	overflow: visible;
	padding: 0;
}

.menu ul li a {
	width: 85px;
	padding: 4px 0 10px 0;
	margin: 0;
	line-height: 20px;
    font-size:9pt;
	color:#000000;
	border: none;
	border-bottom: 1px solid #eeeeee;
	text-align:center;
}

.menu ul li:last-child a { border: none; }

/* Icons 

.menu a.documents { background: url(../img/docs.png) no-repeat 6px center; }
.menu a.messages { background: url(../img/bubble.png) no-repeat 6px center; }
.menu a.signout { background: url(../img/arrow.png) no-repeat 6px center; }
*/