@charset "utf-8";
/****************************************/
/*	Name: Geniezip
/*	PART: LAYOUT STYLE
/*	Version: 1.0
/*	Author: 
/****************************************/
@import url(base.css?version=1.0);
@import url(layout.css?version=20230828);
@import url(layer_popup.css?version=1.0);
/*** 이미지 효과 ***/
.img_opacity {opacity: 0.6; filter: alpha(opacity=60);} 
.img_opacity:hover {opacity: 1; filter: alpha(opacity=100); color:#ffae00; }
.heart {opacity: 1; filter: alpha(opacity=100);} 
.heart:hover {opacity: 0.6; filter: alpha(opacity=60); color:#d30707; }
img.deep:hover {   
   border-bottom: 2px solid #ffae00;
   background-color: #fff;
   padding: 1px;
}
img.quick_deep:hover {

 /*  border-bottom: 1px solid #ffae00;*/
}

/*B&W*/
.bw {
  -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;
}
 
.bw:hover {
  -webkit-filter: grayscale(100%);
}

/*** 기본 버튼 ***/

/* button 
---------------------------------------------- */
.GZbutton {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 0 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font-family:helvetica, arial, verdana, tahoma, 'NanumGothic', '나눔고딕', Malgun Gothic, '맑은고딕', Apple Gothic, Dotum, '돋움', sans-serif;
	padding: .5em 2em .55em;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.GZbutton:hover {
	text-decoration: none;
}
.GZbutton:active {
	position: relative;
	top: 1px;
}
.GZbutton_square {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 2px 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font-family:helvetica, arial, verdana, tahoma, 'NanumGothic', '나눔고딕', Malgun Gothic, '맑은고딕', Apple Gothic, Dotum, '돋움', sans-serif;
	padding: 20px;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.bigrounded {
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
}
.big {
	font-size: 20px;
	font-weight:bold;
	padding: .8em 3em .70em;
}
.medium {
	font-size: 12px;
	padding: .4em 1.5em .42em;
}
.small {
	font-size: 11px;
	padding: .2em 1em .275em;
}

/* color styles 
---------------------------------------------- */

/* black */
.black {
	color: #d7d7d7;
	border: solid 1px #333;
	background: #333;
	background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#000));
	background: -moz-linear-gradient(top,  #666,  #000);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#000000');
}
.black:hover {
	background: #000;
	background: -webkit-gradient(linear, left top, left bottom, from(#444), to(#000));
	background: -moz-linear-gradient(top,  #444,  #000);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#444444', endColorstr='#000000');
}
.black:active {
	color: #666;
	background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#444));
	background: -moz-linear-gradient(top,  #000,  #444);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#666666');
}

/* gray */
.gray {
	color: #e9e9e9;
	border: solid 1px #555;
	background: #6e6e6e;
	background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#575757));
	background: -moz-linear-gradient(top,  #888,  #575757);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#575757');
}
.gray:hover {
	background: #aaaaaa;
	background: -webkit-gradient(linear, left top, left bottom, from(#757575), to(#4b4b4b));
	background: -moz-linear-gradient(top,  #757575,  #4b4b4b);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#757575', endColorstr='#4b4b4b');
}
.gray:active {
	color: #afafaf;
	background: -webkit-gradient(linear, left top, left bottom, from(#575757), to(#888));
	background: -moz-linear-gradient(top,  #575757,  #888);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#575757', endColorstr='#888888');
}

/* white */
.white {
	color: #606060;
	border: solid 1px #b7b7b7;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
	background: -moz-linear-gradient(top,  #fff,  #ededed);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}
.white:hover {
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
	background: -moz-linear-gradient(top,  #fff,  #dcdcdc);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}
.white:active {
	color: #999;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
	background: -moz-linear-gradient(top,  #ededed,  #fff);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
}

/* orange */
.orange {
	color: #fef4e9;
	border: solid 1px #da7c0c;
	background: #f78d1d;
	background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
	background: -moz-linear-gradient(top,  #faa51a,  #f47a20);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}
.orange:hover {
	background: #f47c20;
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
	background: -moz-linear-gradient(top,  #f88e11,  #f06015);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
}
.orange:active {
	color: #fcd3a5;
	background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
	background: -moz-linear-gradient(top,  #f47a20,  #faa51a);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
}
/* red */
.red {
	color: #fff;
	border: solid 1px #980c10;
	background: #d81b21;
	background: -webkit-gradient(linear, left top, left bottom, from(#ed1c24), to(#aa1317));
	background: -moz-linear-gradient(top,  #ed1c24,  #aa1317);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed1c24', endColorstr='#aa1317');
}
.red:hover {
	background: #b61318;
	background: -webkit-gradient(linear, left top, left bottom, from(#c9151b), to(#a11115));
	background: -moz-linear-gradient(top,  #c9151b,  #a11115);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#c9151b', endColorstr='#a11115');
}
.red:active {
	color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#aa1317), to(#ed1c24));
	background: -moz-linear-gradient(top,  #aa1317,  #ed1c24);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#aa1317', endColorstr='#ed1c24');
}
/* blue */
.blue {
	color: #d9eef7;
	border: solid 1px #0076a3;
	background: #0095cd;
	background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
	background: -moz-linear-gradient(top,  #00adee,  #0078a5);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
}
.blue:hover {
	background: #007ead;
	background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
	background: -moz-linear-gradient(top,  #0095cc,  #00678e);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
}
.blue:active {
	color: #80bed6;
	background: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
	background: -moz-linear-gradient(top,  #0078a5,  #00adee);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0078a5', endColorstr='#00adee');
}
/* rosy */
.rosy {
	color: #fae7e9;
	border: solid 1px #b73948;
	background: #da5867;
	background: -webkit-gradient(linear, left top, left bottom, from(#f16c7c), to(#bf404f));
	background: -moz-linear-gradient(top,  #f16c7c,  #bf404f);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f16c7c', endColorstr='#bf404f');
}
.rosy:hover {
	background: #ba4b58;
	background: -webkit-gradient(linear, left top, left bottom, from(#cf5d6a), to(#a53845));
	background: -moz-linear-gradient(top,  #cf5d6a,  #a53845);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#cf5d6a', endColorstr='#a53845');
}
.rosy:active {
	color: #dca4ab;
	background: -webkit-gradient(linear, left top, left bottom, from(#bf404f), to(#f16c7c));
	background: -moz-linear-gradient(top,  #bf404f,  #f16c7c);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#bf404f', endColorstr='#f16c7c');
}

/* green */
.green {
	color: #e8f0de;
	border: solid 1px #538312;
	background: #64991e;
	background: -webkit-gradient(linear, left top, left bottom, from(#7db72f), to(#4e7d0e));
	background: -moz-linear-gradient(top,  #7db72f,  #4e7d0e);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#7db72f', endColorstr='#4e7d0e');
}
.green:hover {
	background: #538018;
	background: -webkit-gradient(linear, left top, left bottom, from(#6b9d28), to(#436b0c));
	background: -moz-linear-gradient(top,  #6b9d28,  #436b0c);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#6b9d28', endColorstr='#436b0c');
}

.green:active {
	color: #a9c08c;
	background: -webkit-gradient(linear, left top, left bottom, from(#4e7d0e), to(#7db72f));
	background: -moz-linear-gradient(top,  #4e7d0e,  #7db72f);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e7d0e', endColorstr='#7db72f');
}

/* pink */
.pink {
	color: #feeef5;
	border: solid 1px #d2729e;
	background: #f895c2;
	background: -webkit-gradient(linear, left top, left bottom, from(#feb1d3), to(#f171ab));
	background: -moz-linear-gradient(top,  #feb1d3,  #f171ab);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#feb1d3', endColorstr='#f171ab');
}
.pink:hover {
	background: #d57ea5;
	background: -webkit-gradient(linear, left top, left bottom, from(#f4aacb), to(#e86ca4));
	background: -moz-linear-gradient(top,  #f4aacb,  #e86ca4);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4aacb', endColorstr='#e86ca4');
}
.pink:active {
	color: #f3c3d9;
	background: -webkit-gradient(linear, left top, left bottom, from(#f171ab), to(#feb1d3));
	background: -moz-linear-gradient(top,  #f171ab,  #feb1d3);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f171ab', endColorstr='#feb1d3');
}
/*툴팁*/
a.tooltip {outline:none; }
a.tooltip strong {line-height:30px;}
a.tooltip:hover {text-decoration:none;} 
a.tooltip span {
    z-index:10;display:none; padding:14px 20px;
    margin-top:-70px; margin-left:-150px;
    width:450px; line-height:16px;
}
a.tooltip:hover span{
    display:inline; position:absolute; color:#111;
    border:1px solid #DCA; background:#fffAF0;}
.callout {z-index:20;position:absolute;top:45px;border:0;left:-12px;}

a.tooltip .span_right{
    z-index:10;display:none; padding:14px 20px;
    margin-top:-70px; margin-left:-540px;
    width:450px; line-height:16px;
}
a.tooltip:hover .span_right{
    display:inline; position:absolute; color:#111;
    border:1px solid #DCA; background:#fffAF0;}
.calloutR { text-align:right; z-index:20;position:absolute;top:45px;border:0;right:-12px;}    
/*CSS3 extras*/
a.tooltip span, .span_right
{
    border-radius:4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
        
    -moz-box-shadow: 5px 5px 8px #CCC;
    -webkit-box-shadow: 5px 5px 8px #CCC;
    box-shadow: 5px 5px 8px #CCC;
}
/*해외주소 테이블 스타일*/
.table_add { float:left; position: absolute; width:100%; border:1px solid #ddd; margin:0 auto;  border-spacing:0; }
.table_add span{display:block;}
.table_add tr { border-bottom:1px solid #ddd; padding:4px;}
.table_add th {padding:10px; width:15%; height:20px; border-right:1px solid #ddd; background:#f2f1f1;}
.table_add td {padding:10px; width:75%; height:20px; color:#624444;}

.table_add90 { float:left; position: relative; width:94%; border:1px solid #ddd; margin:0 auto;  border-spacing:0; }
.table_add90 span{display:block;}
.table_add90 tr { border-bottom:1px solid #ddd; padding:4px;}
.table_add90 th {padding:4px; width:40%; height:20px; border-right:1px solid #ddd; background:#f2f1f1;}
.table_add90 td {padding:4px; width:60%; height:20px; color:#624444;}

/*스페인용*/
.table_add90s { float:left; position: relative; width:94%; border:1px solid #ddd; margin:0 auto;  border-spacing:0; }
.table_add90s span{display:block;}
.table_add90s tr { border-bottom:1px solid #ddd; padding:4px;}
.table_add90s th {padding:4px; width:20%; height:20px; border-right:1px solid #ddd; background:#f2f1f1;}
.table_add90s td {padding:4px; width:60%; height:20px; color:#624444;}

/*아이디 비번 찾기 테이블 스타일*/
.table_fineid { position: absolute; width:100%; border:1px solid #ddd; margin:0 auto;  border-spacing:0; }
.table_fineid table { }
.table_fineid tr { border-bottom:1px solid #ddd; padding:4px;}
.table_fineid th {padding:10px; width:15%; border-right:1px solid #ddd; background:#f2f1f1; line-height:160%;}
.table_fineid td {padding:10px; width:75%; color:#624444;}
.table_fineid td li{padding:5px;}
/*** 페이지 넘버 화면 ***/
#list_number { 				
				position: relative; width:1024px; height:50px; margin:0 auto; padding-top:25px;	
				background-color:#FFFFFF;
				}
/*** 슬라이드 dot ***/
.paging_dot {
	width:100%;
	left:0px;
	padding-bottom: 10px;
	text-align:center;
}
.paging_dot .btn_page {zoom: 1;/*text-align:center;*/margin:3px;*text-indent:0 !important;*font-size:0px !important;*line-height:0% !important;/*display:inline-block; *display:inline;*/ *zoom:1; background:url(/images/but_icon.png) 0 0 no-repeat; width:11px; height:11px;}
.paging_dot .on  {text-align:center;background-position:0 -12px;} 
.GZ_tex2 { text-align:center; padding:10px; display:block; }
.GZ_tex3 { text-align:left; color:#CC0000; padding:10px 20px;}
.GZ_orange {color:#b97525;}
.GZ_gray {color:#464646;}
/* Starter CSS for Flyout Menu */
#GZcssmenu, #GZcssmenu ul, #GZcssmenu li, #GZcssmenu a {
			list-style: none;
			margin: 0;
			padding: 0;
			font-size:14px;
			font-family:helvetica, arial, verdana, tahoma, 'NanumGothic', '나눔고딕', Malgun Gothic, '맑은고딕', Apple Gothic, Dotum, '돋움', sans-serif;
			text-shadow: 0 1px 1px rgba(0,0,0,.3);
			-webkit-border-radius: .5em; 
			-moz-border-radius: .5em;
			}
#GZcssmenu {
  width: auto;
}
#GZcssmenu ul {
  zoom: 1;
  background: #f78d1d top left repeat;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #da7c0c;
  -moz-box-shadow: 0 3px 3px rgba(150, 150, 150, 0.3);
  -webkit-box-shadow: 0 3px 3px rgba(150, 150, 150, 0.3);
  box-shadow: 0 3px 3px rgba(150, 150, 150, 0.3);
}
#GZcssmenu ul:before {
  content: '';
  display: block;
}
#GZcssmenu ul:after {
  content: '';
  display: table;
  clear: both;
}
#GZcssmenu a,
#GZcssmenu a:link,
#GZcssmenu a:visited {
  padding: 20px 25px;
  display: block;
  text-decoration: none;
  color: #ffffff;
  /*text-shadow: 0 -1px 1px #b87d28;*/
  border-right: 1px solid #da7c0c;
}
#GZcssmenu a:hover {
  color: #fff;
/*  text-shadow: 0 1px 1px #bdcd9c;*/
}
#GZcssmenu li {
  float: left;
  border-right: 1px solid #ffb400;
}
#GZcssmenu li:hover {
  background: #f47c20 top left repeat;
}
#GZcssmenu li:first-child {
  border-left: none;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
} 

.dp_photo { border:1px solid #bebebe;}

.line2_orange_bottom{ border-bottom:2px solid #f47a20;}

.list_number { width:100%; text-align:center; height:25px; padding-top:15px; }
.list_number a:hover{ color:#CC3300;}

/*2019_09_25 수정 시작 */
#group_but_layer { width:200px; height:30px; padding-top:10px;
                  position: fixed;
                  right: 50%;
                  bottom:0px;
                  background:#e7273a;
                  margin-right: -100px;
                  text-align:center;
                  z-index:50;
                  -webkit-border-radius: 8px 8px 0 0px;
                  -moz-border-radius: 8px 8px 0 0px;
                  border-radius: 8px 8px 0px 0px;   
                  -moz-box-shadow: 8px 3px 3px rgba(100, 100, 100, 0.6);
                  -webkit-box-shadow: 8px 3px 3px rgba(100, 100, 100, 0.6);
                  box-shadow: 8px 3px 3px rgba(100, 100, 100, 0.6);                           
                  }
#group_but_layer a{font-size:14px; color:#fff;} 
#group_but_layer a>h3{font-weight: normal;}           
#group_but_layer:hover { background:#cf1023}
/*2019_09_25 수정 끝 */			  


/******* 메시지 게시판 *********************/
.boardTable1_Wrap {width:960px;margin:15px 0 20px 0;}
.boardTable1_Wrap table { border-bottom:2px solid #ababab; border-top:2px solid #ababab; margin-top:-1px;}
.boardTable1_Wrap table th {padding:2px;margin:0px;height:32px;text-align:center;}
.boardTable1_Wrap table .th_bg { background:#cacaca; color:#fff;}
.boardTable1_Wrap table td {padding:8px; margin:0px 4px; border-top:1px solid #ddd; vertical-align:middle; text-align:center;}
.boardTable1_Wrap table p { line-height:180%;}
.boardTable1_Wrap table .chk {vertical-align:middle;text-align:center;}/* 체크박스 */
.boardTable1_Wrap table .borderWrap {border-left:1px solid #ececec;border-right:1px solid #ececec;}
.boardTable1_Wrap table td.Prd_NoneWrap {padding:36px 0 40px 0;margin:0;text-align:center;}
.boardTable1_Wrap th .Txt_10 span {display:none;}

.boardTable1_viewWrap {width:960px;margin:15px 0 20px 0;}
.boardTable1_viewWrap table { border-bottom:2px solid #ababab; border-top:2px solid #ababab; margin-top:-1px;}
.boardTable1_viewWrap table th {padding:2px;margin:0px; height:32px;}
.boardTable1_viewWrap table .th_bg { background:#898989; color:#fff;text-align:center;}
.boardTable1_viewWrap table td {padding:8px; margin:0px 4px; border-top:1px solid #ddd; vertical-align:middle;}
.boardTable1_viewWrap table p { line-height:180%;}
.boardTable1_viewWrap table .chk {vertical-align:middle;text-align:center;}/* 체크박스 */
.boardTable1_viewWrap table .borderWrap {border-left:1px solid #ececec;border-right:1px solid #ececec;}
.boardTable1_viewWrap table td.Prd_NoneWrap {padding:36px 0 40px 0;margin:0;text-align:center;}
.boardTable1_viewWrap th .Txt_10 span {display:none;}


.ro_960 { position:relative; width:940px; height:30px;
		  padding:10px; margin:0 auto;
		  border:1px dotted #727272;
		-webkit-border-radius: 8px 8px 8px 8px;
		-moz-border-radius: 8px 8px 8px 8px;
		border-radius: 8px 8px 8px 8px;	
			}
/******* 메시지 게시판 *********************/


/** tabbar 시작 **/

 #tabbar {
   position:relative; margin:0 auto; width:900px; margin-top:20px;
 } 

 #tabbar #GZtabmenu {
  height:44px;
  border-bottom:2px solid #fd7700;
  width:880px;	
  padding-left:20px;
 } 

 #tabbar #GZtabmenu ul {
  list-style:none;
  margin:0;
  padding:0; 
 } 
 
  #tabbar #GZtabmenu li {
float:left;
 } 

 #tabbar #GZtabmenu ul li a { 
	text-decoration:none;
	float:left;
	margin-right:4px;
	line-height:23px;
	color:#fff;
	background: #ffd256;
	font-size:14px;
	border:1px solid #fd7700;
	border-bottom:none;
	padding:10px 15px;
	width:110px;
	text-align:center;
	display:block;
 } 

 #tabbar #GZtabmenu ul li a:hover {
  background:#FFFFFF;
  color:#fd9b00;
  border-bottom:2px solid #FFF; 
 } 
 
  #tabbar #GZtabmenu ul li a.onlink {
  background:#FFFFFF;
  color:#735930;
  border-bottom:2px solid #FFF; 
 } 
 #GZtabmenu ul li a .onlink:hover {
  background:#FFF;
  color:#69F;
 }
/** tabbar 끝 **/
/* 백그라운드 orange gradient */
background: #ffd256;/* Old browsers */
background: -moz-linear-gradient(top,  #ffd256 0%, #fc9300 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffd256), color-stop(100%,#fc9300)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #ffd256 0%,#fc9300 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #ffd256 0%,#fc9300 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #ffd256 0%,#fc9300 100%); /* IE10+ */
background: linear-gradient(to bottom,  #ffd256 0%,#fc9300 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffd256', endColorstr='#fc9300',GradientType=0 ); /* IE6-8 */
/* 백그라운드 orange gradient */
/** table 660 시작 **/
.table660_basic { position:relative; margin:0 auto; width:90%; display:block;}
.table660_basic table { margin-top:10px;}
.table660_basic table th {padding:2px; margin:0px; height:32px; text-align:center;}
.table660_basic table .th_bg { background:#ff7e00; color:#fff;}
.table660_basic table td {padding:8px; margin:0px 4px; vertical-align:middle; text-align:center;}
.table660_basic table p { line-height:180%;}
.table660_basic table .chk {vertical-align:middle;text-align:center;}/* 체크박스 */
.table660_basic table .borderWrap {border-right:1px solid #7f498c;}
.table660_basic table td.Prd_NoneWrap {padding:36px 0 40px 0;margin:0;text-align:center;}
.table660_basic th .Txt_10 span {display:none;}
/** table 900 시작 **/
.table900_basic { position:relative; margin:0 auto; width:960px; display:block;}
.table900_basic table { margin-top:10px;}
.table900_basic table th {padding:2px; margin:0px; height:32px; text-align:center;}
.table900_basic table .th_bg { background:#c9c9c9; color:#fff;}
.table900_basic table td {padding:8px; margin:0px 4px; vertical-align:middle; text-align:center;}
.table900_basic table p { line-height:180%;}
.table900_basic table .chk {vertical-align:middle;text-align:center;}/* 체크박스 */
.table900_basic table .borderWrap {border-right:1px solid #7f498c;}
.table900_basic table td.Prd_NoneWrap {padding:36px 0 40px 0;margin:0;text-align:center;}
.table900_basic th .Txt_10 span {display:none;}
/** 라운드 테이블 **/
.round_960 { position:relative; width:960px; height:auto; min-height:50px;
		  padding:8px; margin:0 auto; display:inline-block;
		  border:1px dotted #727272; text-align:center;
		-webkit-border-radius: 8px 8px 8px 8px;
		-moz-border-radius: 8px 8px 8px 8px;
		border-radius: 8px 8px 8px 8px;	
			}
.round_960 p {color:#CC3300; padding:4px;}	
#blanket {
background-color:#111;
opacity: 0.65;
filter:alpha(opacity=65);
position:absolute;
z-index: 9001;
top:0px;
left:0px;
width:100%;
}
.pop_alert {
position: absolute;
width: 250px;
height: auto;
padding: 10px;
border: 1px solid #a4a4a4;
background: #f9f7e2;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
z-index: 9002;
}
/*	보이기/숨기기 	*/
.hide{display:none; !important;}
.view{display:block;!important;}

/*20200420 S*/
.NH_card input{float: left; margin:2px 5px 0 0;}
.NH_card_tit{display:inline-block; color:#916d87;}
/*20200420 E*/