.menu,
.menu ul,
.menu li,
.menu a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

/* Menu 타이틀바세팅*/
.menu {
	height: 45px;
	width: 100%;
	padding-left:50px;
	padding-top:0px;
	border:0px solid #ccc;
  //text-align:center;
    <?
    $grdstr="linear-gradient(top,#999 30%,#999 100%)";
    ?>
	//background: #999;
	//background: -webkit-linear-gradient(top,#2C5915 30%,#469122 100%);
	//background: -webkit-linear-gradient(top,#000 30%,#666 100%);
	//background: -moz-linear-gradient(top,#000 30%,#666 100%);
	//background: -o-linear-gradient(top,#000 30%,#666 100%);
	//background: -ms-linear-gradient(top,#000 30%,#666 100%);
	//background: linear-gradient(180deg,#006699 80%,#005A86 20%);
	background: rgba(255,255,255,0);


	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	//border-radius: 5px 5px 5px 5px;
	//box-shadow:2px 3px 3px 0px #999;
}

.menu li {
	position: relative;
	list-style: none;
	float: left;
	display: block;
	height: 40px;
	width:120px;
	mpadding-left:10px;
	font-size:16px;

}

/* Links 헤드타이틀 */

.menu li a {
	display: block;
	padding: 0 14px;
	margin: 6px 0;
	line-height: 28px;
	text-decoration: none;
	width:175px;
	border-left: 0px solid #393942;
	border-right: 0px solid #fff;

	font-family: myfont3;
	font-weight: bold;
  font-size:16px;
	color: #000;
  //text-shadow: 1px 1px 1px rgba(0,0,0,.6);

	-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: red;font-size:17px;font-weight:normal;font-weight:bold;transition:all 0.7s;}//탑메뉴하버

/* Sub Menu */

.menu ul {
	position: absolute;
	top: 40px;
	left: 0px; /*서브좌위치*/

	opacity: 0;

	background:;/*서브백그라운드*/
  border:0px solid #ccc;
/*서브보더*/
	-webkit-border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;

	-webkit-transition:all 0.7s;
	-moz-transition:all 0.7s;
	-o-transition:all 0.7s;
  -ms-transition:all 0.7s;
	//transition: opacity 0s ease-inout .6s;
	transition:all 0.7s;
}

.menu li:hover > ul { opacity: 1; }

.menu ul li {
  color:#fff;
	height: 0;
	overflow: hidden;
	padding: 0;
  width:175px;
  opacity:1;

	-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 {
  width:175px;
	height: 36px;
	overflow: visible;
	padding: 0;


}

.menu ul li a {
	width: 160px;
	padding: 2px 2px 2px 10px;
	margin: 0;
	border: 1px solid #fff;
  font-size:14px;
  color:#000;
}
.menu ul li a:hover {
	background:red; /*서브하버백그라운드*/
	border-bottom:1px solid #fff;
	font-weight:bold;
}

.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; }
