/**
 * Single Drop Down Menu - CSS Temp
 * March 24, 2009
 * Corey Hart @ http://www.codenothing.com
 */ 

.ddmenu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ddmenu > li {
	float: left;
}

.ddmenu > li > a {
	display: block;
	text-decoration: none;
}

.ddmenu > li > .ddmenu-hover {
	
}

.ddmenu > li ul {
	display: none;
	list-style: none;
	position: absolute;
	margin: -1px 0 0 0;
	z-index: 90;
	padding: 0;
}

.ddmenu > li ul a {
	display: block;
	width: 169px;
	padding: 2px;
	border-bottom: 2px solid #40bfd4;
	border-right: 2px solid #40bfd4;
	border-left: 2px solid #40bfd4;
	text-decoration: none;
	font-weight: bold;
	font-size: 8pt;
	color: #00516e;
	background-color: #bcecf2;
}

.ddmenu > li ul li a.first {
	border-top: 1px solid #545454;
}

.ddmenu > li ul a.ddchildhover {
	background-color: #f1f1f1;
}

/* Uncomment for use of css hover functionality */

.ddmenu > li ul a:hover {
	background-color: #e7f9fb;
}


.ddmenu #link1 { background: transparent url(../images/nav/nav-welcome.jpg) top left no-repeat; width: 132px; height: 40px; text-indent: -9999px;}
.ddmenu #link2 { background: transparent url(../images/nav/nav-whykorea.jpg) top left no-repeat; width: 126px; height: 40px; text-indent: -9999px;}
.ddmenu #link3 { background: transparent url(../images/nav/nav-types.jpg) top left no-repeat; width: 177px; height: 40px;  text-indent: -9999px;}
.ddmenu #link4 { background: transparent url(../images/nav/nav-apply.jpg) top left no-repeat; width: 97px; height: 40px;  text-indent: -9999px;}
.ddmenu #link5 { background: transparent url(../images/nav/nav-faqs.jpg) top left no-repeat; width: 98px; height: 40px;  text-indent: -9999px;}
.ddmenu #link6 { background: transparent url(../images/nav/nav-various.jpg) top left no-repeat; width: 120px; height: 40px;  text-indent: -9999px;}

.ddmenu #link1:hover { background: transparent url(../images/nav/nav-welcome2.jpg) top left no-repeat;}
.ddmenu #link2:hover { background: transparent url(../images/nav/nav-whykorea2.jpg) top left no-repeat;}
.ddmenu #link3:hover { background: transparent url(../images/nav/nav-types2.jpg) top left no-repeat;}
.ddmenu #link4:hover { background: transparent url(../images/nav/nav-apply2.jpg) top left no-repeat;}
.ddmenu #link5:hover { background: transparent url(../images/nav/nav-faqs2.jpg) top left no-repeat;}
.ddmenu #link6:hover { background: transparent url(../images/nav/nav-various2.jpg) top left no-repeat;}

