.dropdown,
.dropdown li,
.dropdown a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

/* Menu */
.dropdown {	
	height:auto;
	width: auto;

	/*background: #4c4e5a;
	background: -webkit-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -moz-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -o-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: -ms-linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	background: linear-gradient(top, #4c4e5a 0%,#2c2d33 100%);
	*/

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.dropdown li {
	position: relative;
	list-style:disc !important;
	float: left;
	display: block;
}

/* Links */
.dropdown li ul li a {
	display: block;
	padding:10px 15px 10px 15px;
	margin: 0 0 1px 0;
	text-decoration: none;
	font-family: 'kittithada_roman_55_pregular' , 'kittithada_roman_55_pregularSVG';
	text-transform:none;
	font-size: 18px;
	line-height: 22px;
	text-transform:uppercase;
	color: #484848;
	-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;
}

.dropdown li:first-child a { border-left: none; }
.dropdown li:last-child a{ border-right: none; }

.dropdown li ul li a:hover { color: #fff;
	background: #3c60be;
	background: -webkit-linear-gradient(bottom, #3c60be 0%,#1d3b95 100%);
	background: -moz-linear-gradient(bottom, #3c60be 0%,#1d3b95 100%);
	background: -o-linear-gradient(bottom, #3c60be 0%,#1d3b95 100%);
	background: -ms-linear-gradient(bottom, #3c60be 0%,#1d3b95 100%);
	background: linear-gradient(bottom, #3c60be 0%,#1d3b95 100%); }


/* Sub Menu */

.dropdown ul.about {
	margin:0; padding:0;
	position: absolute;
	width:300px;
	z-index:99999;
	top:43px;
	left:-60%;
	opacity: 0;
	background:#f0f0f0;
		
	-webkit-border-radius:0;
	-moz-border-radius:0;
	border-radius:0;

	-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;
}
.dropdown ul.about li { width:100%; }
.dropdown li:hover > ul { opacity: 1; }
.dropdown ul li {
	height: 0;
	overflow: hidden;
	padding: 0;
	-webkit-transition: height .50s ease .1s;
	-moz-transition: height .50s ease .1s;
	-o-transition: height .50s ease .1s;
	-ms-transition: height .50s ease .1s;
	transition: height .50s ease .1s;
}

.dropdown li:hover > ul li {
	height: 40px;
	overflow: visible;
	padding: 0; 
	}

.dropdown ul li a {
	padding:0;
	margin: 0;
	text-align:left;
}

.dropdown ul li:last-child a { border: none; }