/* ---------------
 * Slidebars Theme
 *
 * ---------
 * CSS Index
 *
 * 001 - Box Model
 * 002 - Site
 * 003 - Slidebars
 * 004 - Slidebar Menus
 * 005 - Slidebar Widgets
 * 006 - Top Navigation Bar
 * 007 - Slidebar Controls
 *
 * ---------------
 * 001 - Box Model
 */

* {
	/* Highly recommended to avoid any width alterations in the Slidebars or Site, which may cause horizontal scrolling. */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* ----------
 * 002 - Site
 */

#sb-site {
}
#sb-site.subPage{
	background:#ebebeb;
}
/* ---------------
 * 003 - Slidebars
 */

.sb-slidebar {
	background-color: #fff; /* Background colour. */
	color: #555555; /* Text colour. */
}

.protectWrap{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.8);
    z-index: 9999;
}
.protectWrap .inner{
    position:absolute;
    right:0;
    top:0;
    width:10%;
    text-align: center;
}

.close-sidemenu{
    margin-top:5px;
    width:20px;
    height:20px;
    background:url(../img/common/ico-close-sidemenu.png) no-repeat;
    background-size:contain;
}
.sb-slidebar a {
	text-decoration: none;
}

/* --------------------
 * 004 - Slidebar Menus
 */



/* Main Menu */
.sb-menu { /* Apply to <ul> or <ol>. */
	padding: 0;
	margin: 0;
	list-style-type: none;
    font-family: "Arial", "NanumBarunGothicWeb";
}

.sb-menu>li {
	width: 100%;
	padding: 0;
	margin: 0;
	/*border-top: 1px solid rgba(255, 255, 255, 0.1); /* Will lighten any background colour you set. */
}

.sb-menu>li a .arrow{
    position: absolute;right:20px;top:50%;width:12px;height:19px;margin-top:-9px;background: url(../img/common/arrow_sbmenu.png) no-repeat center;background-size: 12px auto;
}
.sb-menu > li:first-child {
	border-top: none; /* Removes top border from first list item.. */
}

.sb-menu > li:last-child {
	border-bottom: none; /* Removed bottom border from last list item. */
}
.sb-menu>li .iconset{float:right;width:55%;}
.sb-menu>li .iconset li{width:50%;}
.sb-menu>li .iconset li span{color:#a0a0a0;}

.sb-menu li a {
	position:relative;
	width: 100%; /* Makes links full width. */
	color:#000;
	display: inline-block;
	padding: 1em; /* Creates an even padding the same size as your font. */
	border-bottom: 1px solid #ddd; /* Will darken any background colour you set. */
    font-size: 14px;
}

.sb-menu li a:hover {
	text-decoration: none;
	background-color: rgba(255, 255, 255, 0.05); /* Will lighten any background colour you set. */
}

.sb-menu li li a {
	color:#a1a1a1;
}
.sb-menu li a .num {
    position: absolute;
    right:20px;
    top:11px;
    background-color: #707070;
    color:#fff;
    border-radius: 30px;
    font-size:15px;
    min-width: 28px;
    text-align: center;
    padding: 5px 10px;
}
.sb-menu .ico {position: relative;top: 3px;display: inline-block;width:17px;height:17px;margin-right: 10px; background:no-repeat center;background-size:contain;}
.sb-menu .ico.i01 {background-image: url(../img/common/ico_sbmenu_01.png);}
.sb-menu .ico.i02 {background-image: url(../img/common/ico_sbmenu_02.png);}
.sb-menu .ico.i03 {background-image: url(../img/common/ico_sbmenu_03.png);}
.sb-menu .ico.i04 {background-image: url(../img/common/ico_sbmenu_04.png);}
.sb-menu .ico.i05 {background-image: url(../img/common/ico_sbmenu_05.png);}
.sb-menu .ico.i06 {background-image: url(../img/common/ico_sbmenu_06.png);}
.sb-menu .ico.i07 {background-image: url(../img/common/ico_sbmenu_07.png);}
.sb-menu .ico.i08 {background-image: url(../img/common/ico_sbmenu_08.png);}
.sb-menu .ico.i09 {background-image: url(../img/common/ico_sbmenu_09.png);}
.sb-menu .ico.i10 {background-image: url(../img/common/ico_sbmenu_10.png);}
.prd_list {}
.prd_list .status{display: inline-block;padding:4px 13px;background: #ebebeb;border:1px solid #d7d7d7;font-size: 10px;margin-top: 2px;}
.prd_list img {float:left;width:64px;margin-right:10px;}
.prd_list .prd_tit{font-size: 15px;margin-top:10px;}
.prd_list .prd_desc{font-size: 12px;color:#7d7d7d;}

/* Borders */
.sb-left .sb-menu li a:hover {
	
}

.sb-right .sb-menu li a {
	border-right: 3px solid transparent;
}

.sb-right .sb-menu li a:hover {
	border-right: 3px solid; /* Removes transparent colour, so border colour will be the same as link hover colour. */
}

/* Submenus */
.sb-submenu {
	display: none;
	padding: 0;
	margin: 0;
	list-style-type: none;
	background-color: rgba(255, 255, 255, 0.05); /* Submenu background colour. */
}
.sb-submenu li a{width:50%;border-left:1px solid #f0f0f0;}
/* Caret */
span.sb-caret {
	position:absolute;
	right:10px;
	top:16px;
	width: 0;
	height: 0;
	display: inline-block;
	margin: 0 5px;
	border: 5px solid transparent;
    color:#bdbdbd;
}

span.sb-caret { /* Caret Down */
	border-top: 5px solid;
	border-bottom: 0px solid transparent;
}

.sb-submenu-active > span.sb-caret { /* Caret Up */
	border-top: 0px solid transparent;
	border-bottom: 5px solid;
}

/* ----------------------
 * 005 - Slidebar Widgets
 */

.sb-widget {
	border-radius: 3px;
	border: 1px solid rgba(255, 255, 255, 0.1); /* Will lighten any background colour you set. */
	margin: 14px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25); /* Slight shadow. */
}

.sb-widget-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Will darken any background colour you set. */
	padding: 14px;
	background-color: #292929; /* Widget title background colour. */
}

.sb-widget-title {
	margin: 0; /* Removes browser default margins for heading tags. */ 
}

.sb-widget-content {
	border-top: 1px solid rgba(255, 255, 255, 0.1); /* Will lighten any background colour you set. */
	padding: 14px;
	background-color: #262626; /* Widget content background colour. */
}

/* ------------------------
 * 006 - Top Navigation Bar
 */

.sb-navbar {
	position:fixed;
	width: 100%;
	z-index: 10;
	background-color: #fff; /* Bar colour. */
	/*
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
	*/
}

html.sb-android .sb-navbar {
	position: absolute; /* Fix navbar to top for old versions of Android Browser. */
}

/* Navbar Menu Items */
.sb-navbar-menu {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.sb-navbar-menu-left {
	float: left;
}

.sb-navbar-menu-right{
	float: right;
}

.sb-navbar-menu li {
	padding: 0;
	margin: 0;
	display: block;
	float: left;
}

.sb-navbar-menu li a {
	display: inline-block;
	color: #f2f2f2; /* Navbar link colour */
	padding: 14px;
	text-decoration: none;
}

.sb-navbar-menu li a:hover {
	color: #f2f2f2; /* Navbar link hover colour */
	background-color: rgba(0, 0, 0, 0.05); /* Will lighten any background colour you set. */
}

/* -----------------------
 * 007 - Slidebar Controls
 */
 
.sb-toggle-left, .sb-toggle-right, .sb-open-left, .sb-open-right, .sb-close {
	cursor: pointer; /* Help desktop users with Slidebar controls. */
}

/* Navicons */
/* These are prefixed with .sb-navbar to avoid styling other Slidebar toggles you may be using. */
.sb-navbar .sb-toggle-left {
	/*width: 52px;
	float: left;
	padding: 14px;
	*/
}

.sb-navbar .sb-toggle-right {
	width: 52px;
	float: right;
	padding: 14px;
}

.navicon-line {
	width: 24px;
	height: 4px;
	border-radius: 1px;
	margin-bottom: 3px;
	background-color: #fff; /* Colour of navicon lines. */
}

/* Hover states to match navbar menu item hover. */
.sb-navbar .sb-toggle-left:hover {
	background-color: rgba(0, 0, 0, 0.05); /* Will lighten any background colour you set. */
}

.sb-navbar .sb-toggle-right:hover {
	background-color: rgba(0, 0, 0, 0.05); /* Will lighten any background colour you set. */
}

/* -------------------
 * 006 - Media Queries
 */

@media (max-width: 767px) {
	/* This is entirely optional, it hides the navbar menu items when device width is under 768px. */
	.sb-navbar-menu {
		display: none;
	}
}