@charset "utf-8";

/* reset */	

html, body, h1, h2, h3, h4, h5, h6, div, ul, ol, li, dt, dd, dl, area, a, caption, fieldset, table, thead, tbody, tfoot, th, td {  /*p, span 을 뺌. lsh*/
	margin: 0px;
	padding: 0px;
	border: none;
	list-style: none;
	font-size: 12px;
	font-family: dotum;
}

form, input, textarea, label {
	margin: 0px;
	padding: 0px;
	font-size: 11px;
	font-family: dotum;
	list-style: none;
	vertical-align: middle;
}

select {
	font-size: 12px;
}


article,aside,dialog,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

/* align */
.a_left {
	text-align: left !important;
}

.a_right {
	text-align: right !important;
}

.a_center {
	text-align: center !important;
}

.a_top {
	vertical-align: top !important;
}

.a_middle {
	vertical-align: middle !important;
}

.a_bottom {
	vertical-align: bottom !important;
}

/* font */
a:link {
	color: #333;
	text-decoration: none;
}

a:visited {
	color: #333;
	text-decoration: none;
}

a:hover {
	color: #666;
	text-decoration: none;
}

a:active {
	color: #333;
	text-decoration: none;
}

/* float */
.f_left {
	float: left !important;
}

.f_right {
	float: right !important;
}

.c_both {
	clear: both !important;
}

.c_left {
	clear: left !important;
}

.c_right {
	clear: right !important;
}

/* clear-fix */
.c_fix {
	overflow: hidden !important;
	clear: both !important;
	height: 0px !important;
	margin: 0px !important;
	padding: 0px !important;
}

/* show and hide */
.show {
	display: inherit;
}

.hide {
	display: none;
}

/* form */
input[type=password] {
	height: 11px;
	margin: 2px;
	padding: 4px 3px 2px 3px;
	border: 1px solid #ccc;
	line-height: 11px;
	color: #7e7e7e;
	ime-mode: active;
}

input[type=text] {
	height: 11px;
	margin: 2px;
	padding: 4px 3px 2px 3px;
	border: 1px solid #ccc;
	line-height: 11px;
	color: #7e7e7e;
	ime-mode: active;
}

input[type=chekcbox] {
	margin: 3px 0 0 0;
}

input[type=image] {
	margin: 0 0 0 5px;
}

input[type=file] {
	padding: 4px 3px 2px 3px;
	margin: 2px;
}

select {
	margin: 2px;
	padding: 1px;
	border: 1px solid #ccc;
	line-height: 19px;
	color: #7e7e7e;
}

select option {
	margin-right: 7px;
	color: #7e7e7e;
}

select[size] {
	overflow: auto;
}

textarea {
	overflow: auto;
	height: auto;
	margin: 2px;
	padding: 1px;
	border: 1px solid #ccc;
	line-height: 19px;
	color: #7e7e7e;
}

span.field {
	display: inline-block;
	padding: 2px;
	vertical-align: middle;
	color: #7e7e7e;
	*display: inline;
	*zoom: 1;
}

span.button {
	display: inline-block;
	vertical-align: middle;
	color: #7e7e7e;
	*display: inline;
	*zoom: 1;
	padding-left: 5px;
}

span.button input[type=image] {
	margin: 0px;
}

span.text {
	display: inline-block;
	height: 12px;
	padding: 6px 3px 6px 3px;
	line-height: 11px;
	vertical-align: middle;
	color: #4f4f4f;
	*display: inline;
	*zoom: 1;
}

span.text2 {
 display: inline-block;
 height: auto;
 padding: 6px 3px 6px 3px;
 line-height: 16px;
 vertical-align: middle;
 color: #4f4f4f;
 *display: inline;
 *zoom: 1;
}

th span.text {
	display: inline-block;
	height: 12px;
	padding: 4px 3px 3px 3px;
	line-height: 12px;
	vertical-align: middle;
	font-size: 12px;
	color: #4f4f4f;
	*display: inline;
	*zoom: 1;
	vertical-align: middle;
}

span.disabled {
	display: inline-block;
	width: 150px;
	height: 11px;
	padding: 3px 3px 3px 3px;
	border: 1px solid #ccc;
	line-height: 11px;
	vertical-align: middle;
	font-size: 12px;
	color: #7e7e7e;
	background: #fcfcfc;
	*display: inline;
	*zoom: 1;
}

span.required {
	color: #f00;
}

input,select,textarea {
	vertical-align: middle;
}

input.checkbox {
	margin: 0;
}

input.single-line {
	height: 11px;
	margin: 0;
	padding: 4px 3px 2px 3px;
	border: 1px solid #ccc;
	line-height: 11px;
	/* color: #7e7e7e;    김석환 수정 2011.06.24 */
	color: #000000;
}

textarea.multi-line {
	margin: 0;
	padding: 3px;
	border: 1px solid #ccc;
	/* color: #7e7e7e;    김석환 수정 2011.06.24 */
	color: #000000;
}

select.single-select {
	height: 19px;
	margin: 0;
	padding: 1px;
	border: 1px solid #ccc;
	line-height: 19px;
	/* color: #7e7e7e;    김석환 수정 2011.06.24 */
	color: #000000;
}

select.single-select option {
	margin-right: 7px;
	/* color: #7e7e7e;    김석환 수정 2011.06.24 */
	color: #000000;
}

select.multi-select {
	height: auto;
	overflow: auto;
	margin: 0;
	padding: 2px;
	border: 1px solid #ccc;
	line-height: 15px;
	/* color: #7e7e7e;    김석환 수정 2011.06.24 */
	color: #000000;
}

img.ui-datepicker-trigger {
	margin-left: 5px;
	vertical-align: middle;
	cursor: pointer;
}



/* table */
/* query-table */
table.query-table {
	width: 100%;
}

table.query-table,.query,.query
{
	border-spacing: 0px;
	background: transparent;
}

table.query-table th {
	border: 0px solid #ccc;
	border-spacing: 0px;
	text-align: left;
	background: #EEEFF6;
}

table.query-table th span.text {
	overflow: visible;
	font-size: 12px;
	font-weight: normal;
	color: #4f4f4f;
	white-space: nowrap;
}

table.query-table td {
	border: 0px solid #ccc;
	padding: 5px 10px 5px 5px;
	border-spacing: 0px;
	background: transparent;
}

table.query-table td.action {
	padding-right: 0;
	text-align: right;
}

/* editor-table */
table.editor-table {
	width: 100%;
	border-top: 1px solid #919191;
	border-left: 1px solid #919191;
	border-spacing: 0px;
}

table.editor-table th {
	overflow: visible;
	padding: 2px;
	border-right: 1px solid #919191;
	border-bottom: 1px solid #919191;
	border-spacing: 0px;
	line-height: 16px;
	vertical-align: middle;
	text-align: left;
	font-size: 12px;
	font-weight: bold;
	color: #4f4f4f;
	word-break: break-all;
	/* background: #f8f8f8;  김석환 수정 2011.06.24 선색 e6e6e6 -> 919191  */ 
	background: #EEEFF6;
}

table.editor-table thead th {
	min-height: 26px;
	text-align: center;
}

table.editor-table td {
	overflow: visible;
	padding: 2px;
	border-right: 1px solid #919191;
	border-bottom: 1px solid #919191;
	border-spacing: 0px;
	line-height: normal;   /*16px;  20120726 변경함. lsh  */ 
	vertical-align: middle;
	font-size: 12px;
	color: #4f4f4f;
	word-break: break-all;
}

#cnView, #divView { /* 20120726 추가 함. lsh  */ 
	line-height: normal;
	 font-family: 굴림; 
	 font-size: 10pt;
	margin-bottom: 5px;
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 5px;
}

#cnView p ,#divView p { /* 20120726 추가 함. lsh  */ 
	margin-bottom: 2px;
	margin-top: 2px;
}

/* layout */
/* wrap */
html {
	width: 100%;
	height: 100%;
}

body {
	width: 100%;
	height: 100%;
}

#stage {
	width: 790px;
/*	height: 100%; */
	margin: 0 0 0 0;
}

/* header */
#header {
	padding: 0px 10px 0px 10px;
}

#header h1.title {
	padding: 7px 0px 5px 11px;
	border-bottom: 2px solid #3c82cd;
	font-size: 14px;
	font-weight: bold;
	color: #3e3e3e;
	background: url("/images/core/icon/icon-title.gif") 0px 10px no-repeat;
}

/* quick navigation */
#header ul.quick-nav {
	height: 24px;
	margin-bottom: 20px;
	border-bottom: 1px solid #d9d9d9;
}

#header ul.quick-nav li {
	float: left;
	padding: 6px 7px 8px 11px;
	font-size: 11px;
	color: #979797;
	background: url("/images/core/icon/quick-nav-background.gif") 0px 10px no-repeat;
}

#header ul.quick-nav li.root {
	padding-left: 13px;
	background: url("/images/core/icon/quick-nav-root-background.gif") 0px 8px no-repeat;
}

#header ul.quick-nav li.selected {
	color: #4f4f4f;
}

/* query form */
.query {
	margin-bottom: 15px;
	padding: 8px 14px 7px 14px;
	border: 1px solid #D9D9D9;
}

.query div.action {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #d9d9d9;
	text-align: right;
}



/* container */
#container {
	clear: both;
	padding: 0px 10px 0px 10px;
}

/* contents package - default */
.ui-section {
	clear: both;
}

.ui-section .ui-section-header {
	clear: both;
	height: 30px;
	margin-bottom: 10px;
	background: url("/images/core/ui/dot-6190c5.gif") 0px 29px repeat-x;
}

.ui-section .ui-section-header .title {
	float: left;
	height: 29px;
	display: inline-block;
	min-width: 100px;
	padding: 0px 6px;
	border: 1px solid #6190c5;
	border-bottom: none;
	line-height: 29px;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
	white-space: nowrap;
	background: #fff;
	_width: 100px;
	*display: inline;
	*zoom: 1;
}

.ui-section .ui-section-header .action {
	float: right;
}

.ui-section .ui-section-header .action li {
	float: left;
	padding-left: 5px;
	white-space: nowrap;
}

.ui-section .ui-section-content {
	
}

.infomation {
	height: 21px;
	margin-bottom: 10px;
	padding: 1px 14px 0px 14px;
	border: 1px solid #ebebeb;
	background: #fcfcfc;
}

.infomation li {
	float: left;
	line-height: 21px;
	font-size: 11px;
	color: #7e7e7e;
}

.infomation li.notify {
	float: right;
	padding-left: 7px;
	background: url("/images/core/icon/icon-notify.gif") 0px 9px no-repeat;
}


.ui-section .ui-section-footer {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px dotted #d9d9d9;
	text-align: center;
}

/* contents package - snb type */
.ui-section .ui-section-side {
	float: left;
	width: 180px;
	border: 1px solid #d9d9d9;
	line-height: 15px;
	font-size: 11px;
}

.ui-section .ui-section-side-content {
	float: right;
	width: 568px;
}

/* contents package - half and half type */
.half {
	clear: none;
	width: 375px;
}

/* contents package - exchanger */
.exchange {
	clear: none;
	width: 320px;
}

.operator {
	clear: none;
	width: 129px;
	text-align: center;
}

.operator .ui-section-content {
	margin-top: 110px;
}

/* footer */
#footer {
	clear: both;
	padding: 0px 10px 0px 10px;
}

/* disable */
.disable {
	opacity: 0.4 !important;
	filter:alpha(opacity=40) !important;
	cursor: default !important;
}



/* 2011.05.17 */
.query table.query-table td {
	border-top:1px solid #919191; /* 보더색상    #c7c8e5*/
	/* border-left:1px solid #c7c8e5; 석환 변경 */
	border-left:0px solid #c7c8e5;
	border-right:0px solid #c7c8e5;	 /* 석환 추가 */
	/*padding: 5px 10px 5px 5px;  기존 */
	padding: 3px;  /* 수정*/
}
.query table.query-table {
	width: 100%;
	border-bottom:1px solid #919191;    /*6190c5(파란색)  회색(919191)     원본 c7c8e5  */
	border-right:1px solid #919191;	
}
.query table.query-table th {
	font-weight:bold;		
	background:#eeeff6; /* 배경색 F8F8F8 */
	border-top:1px solid #919191;
	border-left:1px solid #919191;
	/* padding: 5px 10px 5px 5px; 기존 */
	padding: 3px;  /* 수정*/
}
.query table.query-table th span {
	font-weight:bold;	
}
/* query form */
.query {
	padding:0;
	border:none;
}

.query div.action {
	padding-top: 0;
	border-top: none;
	text-align: right;
}
.query span.button {
	padding-left: 0;
}
