﻿/** 메뉴 **/
.MenuStyle{
	/* TR 스타일 */
	background-color:#4477a1;
	cursor:pointer;
	width:120px;
	height:20px;
	/* 텍스트 스타일 */
	font-weight:bold;
	font-size:9pt;
	font-family:"돋움";
	color:white;
	text-align:center;
	padding-top:5px;
	border:1px solid white;
    border-radius:5px 5px 5px 5px;

    background: #4477a1;
    background: -webkit-gradient(linear, left top, left bottom, from(#81a8cb), to(#4477a1) );
    background: -moz-linear-gradient(-90deg, #81a8cb, #4477a1);
    filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#81a8cb', endColorstr='#4477a1');

}
.MenuStyle:hover
{
	color:#b7e5ad;
    background: #81a8cb;
    background: -webkit-gradient(linear, left top, left bottom, from(#4477a1), to(#81a8cb) );
    background: -moz-linear-gradient(-90deg, #4477a1, #81a8cb);
    filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4477a1', endColorstr='#81a8cb');            
}
.MenuStyle:active
{
    background: #4477a1;
}


.SubMenuStyle{
	/* TR 스타일 */
	/*background-color:#C2D4E8;*/
	cursor:pointer;
	width:105px;
	height:20px;
	margin-left:3px;
	/* 텍스트 스타일 */
	font-weight:bold;
	font-size:9pt;
	font-family:"돋움";
	color:#000000;
	text-align:left;
	padding-top:5px;
	padding-left:10px;
	border:1px solid white;
	border-left:1px solid white;
	border-right:1px solid white;
    border-radius:5px 5px 5px 5px;

    background: #A2B598;
    background: -webkit-gradient(linear, left top, left bottom, from(#BDD1B4), to(#A2B598) );
    background:-moz-linear-gradient(-90deg, #BDD1B4, #A2B598);
    filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#BDD1B4', EndColorStr='#A2B598');
}

.SubMenuStyle:hover
{
    color:#FFFFFF;
    background: #BDD1B4;
    background: -webkit-gradient(linear, left top, left bottom, from(#A2B598), to(#BDD1B4) );
    background: -moz-linear-gradient(-90deg, #A2B598, #BDD1B4);
    filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#A2B598', EndColorStr='#BDD1B4');

}
.SubMenuStyle:active
{
    background: #428739;
}

