﻿@charset "utf-8";

@import url(https://fonts.googleapis.com/earlyaccess/nanumgothic.css);
/* CSS Document */
.jqueryslidemenu {
	font-family: "Nanum Gothic", sans-serif;
	font-size: 12px;
	font-weight: bold;
	background: #333;
	width: 100%;
}

.jqueryslidemenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/*Top level list items*/
.jqueryslidemenu .toplevel {
	position: relative;
	float: left;
	background: #333; /*background of tabs (default state)*/
	color: white;
	padding: 8px 10px;
	border-right: 1px solid #778;
	cursor: pointer;
}

.jqueryslidemenu .toplevel a {
	font-family: "Nanum Gothic", sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: white;
}

.jqueryslidemenu .toplevel:hover {
	background: black; /*tab link background during hover state*/
}

/*1st sub level menu*/
.jqueryslidemenu .toplevel ul {
	position: absolute;
	left: 0;
	display: none;
	/*	visibility: hidden;*/
	width: 160px;
	box-shadow: 1px 1px 3px rgba(245, 245, 245, 0.3);
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jqueryslidemenu .sublevel {
	display: list-item;
	float: none;
	width: 150px;
}

/* Sub level menu links style */
.jqueryslidemenu .sublevel a {
	font-family: "Nanum Gothic", sans-serif;
	font-size: 12px;
	display: block;
	width: 100%;
	padding: 5px;
	margin: 0;
	border-top-width: 0;
	border-bottom: 1px solid gray;
	border-right: 1px solid gray;
	color: white;
	background: #333;
	padding: 5px;
	width: 100%;
}

.jqueryslidemenu .sublevel a:hover { /*sub menus hover style*/
	background: #eff9ff;
	background: black;
}

/* ######### CSS classes applied to down and right arrow images  ######### */
.downarrowclass {
	position: absolute;
	top: 12px;
	right: 7px;
}

.rightarrowclass {
	position: absolute;
	top: 6px;
	right: 5px;
}