@import url("http://fonts.googleapis.com/earlyaccess/notosanskr.css");
/*------------------------------------------------
* default definition
------------------------------------------------*/
html,
body {
  height: 100%;
}
html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
form,
legend,
fieldset,
p,
button,
img,
table,
tr,
td,
th {
  margin: 0;
  padding: 0;
  border: none;
}
html,
body,
th,
td,
input {
  color: #fff;
  font-family: "Noto Sans KR", sans-serif;
  font-size: 9pt;
  font-weight: normal;
}

hr,
legend {
  display: none;
}
li {
  list-style: none;
}
table {
  border-collapse: collapse;
}

/*------------------------------------------------
* Form
/*------------------------------------------------*/
input,
textarea {
  border: 1px solid;
  border-color: #a6a6a6 #d8d8d8 #d8d8d8 #a6a6a6;
  font-size: 9pt;
  background: #fff;
}

input[type="text"] {
}
input[type="text"]:hover {
  background: #f4f4f4;
}
input[type="password"] {
}
input[type="password"]:hover {
  background: #f4f4f4;
}
input[type="file"] {
  width: 500px;
  height: 22px;
}
input[type="image"] {
  border: none;
}
input[type="radio"] {
  border: none;
  background: transparent;
}
input[type="checkbox"] {
  border: none;
  background: transparent;
}
input[type="submit"] {
  border: 1px solid #ccc;
  background: transparent;
}
textarea {
  width: 500px;
  height: 150px;
}

select {
  font-size: 9pt;
}

.w50 {
  width: 50px;
}
.w150 {
  width: 150px;
}
.w200 {
  width: 200px;
}
.w300 {
  width: 300px;
}
.w500 {
  width: 500px;
}
.w600 {
  width: 600px;
}

.h50 {
  height: 50px;
}
.h100 {
  height: 100px;
}
.h200 {
  height: 200px;
}
.h300 {
  height: 300px;
}
.h400 {
  height: 400px;
}
.h500 {
  height: 500px;
}

.float {
  *zoom: 1;
}
.float:after {
  content: "";
  clear: both;
  display: block;
}

.floatL {
  float: left;
}
.floatR {
  float: right;
}

.hidden {
  display: none;
}

/*------------------------------------------------
* Link
/*------------------------------------------------*/
a:link {
  color: #fff;
  text-decoration: none;
}
a:visited {
  color: #fff;
  text-decoration: none;
}
a:hover {
  color: #fff;
  text-decoration: none;
}
a:active {
  color: #fff;
  text-decoration: none;
}

/*------------------------------------------------
* Outline
/*------------------------------------------------*/
body {
  background: #fffff;
}
#subLayer,
#footer {
  width: 1000px;
  margin: 0px auto;
  clear: both;
}

/*------------------------------------------------
* spafzine
/*------------------------------------------------*/
.mmov {
  position: absolute;
  width: 620px;
  height: 380px;
  left: 0;
  top: 550px;
  z-index: 50;
}

/*------------------------------------------------
* Header
/*------------------------------------------------*/
.header {
  height: 181px;
  text-align: center;
  background: url("/2018/research/img/sub_bg.jpg") no-repeat center;
  background-size: 100% 100%;
}
.header h1 {
  position: absolute;
  width: 1000px;
  left: 50%;
  top: 50px;
  margin-left: -500px;
  height: 76px;
  background: url("/2018/research/img/sub_top.png") no-repeat;
}
.header h1 a {
  display: block;
  width: 100%;
  height: 100%;
}
.header h1 span {
  display: none;
}

.gnb {
  position: relative;
  width: 100%;
  height: 60px;
  text-align: center;
  background-color: #fff;
}
.gnb ul {
  position: relative;
  font-size: 16px;
  color: #8b8b8b;
  font-weight: 500;
  top: 15px;
  width: 1000px;
  left: 50%;
  margin-left: -420px;
}
.gnb ul li {
  float: left;
  padding-right: 30px;
}
.gnb ul li a:link {
  color: #333;
  background: white;
  -o-transition: color 0.5s ease-out, background 1s ease-in;
  -ms-transition: color 0.5s ease-out, background 1s ease-in;
  -moz-transition: color 0.5s ease-out, background 1s ease-in;
  -webkit-transition: color 0.5s ease-out, background 1s ease-in;
  /* ...and now override with proper CSS property */
  transition: color 0.5s ease-out, background 1s ease-in;
}
.gnb ul li a:visited {
  color: #333;
  text-decoration: none;
}
.gnb ul li a:hover {
  color: red;
}
.gnb ul li a:active {
  color: #333;
  text-decoration: none;
}

.timer {
  height: 160px;
  text-align: center;
  background: url("/2018/research/img/timer_bg.jpg") no-repeat center;
  background-size: 100% 100%;
  padding-top: 20px;
}
.timer_txt {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -1px;
  text-shadow: 2px 2px 2px black;
}
#note {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  margin-top: -20px;
}

#sbt_navi {
  position: relative;
  width: 100%;
  top: 10px;
  margin-bottom: 20px;
  color: #959595;
}
#sbt_navi ul {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  top: 15px;
  width: 300px;
  left: 50%;
  margin-left: -140px;
  border: 1px solid #fff;
}
#sbt_navi ul li {
  float: left;
  padding-right: 30px;
}
#sbt_navi ul li a span {
  color: #9f7b26;
  font-weight: 600;
}
#sbt_navi ul li a:link {
  color: #959595;
  background: white;
  -o-transition: color 0.5s ease-out, background 1s ease-in;
  -ms-transition: color 0.5s ease-out, background 1s ease-in;
  -moz-transition: color 0.5s ease-out, background 1s ease-in;
  -webkit-transition: color 0.5s ease-out, background 1s ease-in;
  /* ...and now override with proper CSS property */
  transition: color 0.5s ease-out, background 1s ease-in;
}
#sbt_navi ul li a:visited {
  color: #959595;
  text-decoration: none;
}
#sbt_navi ul li a:hover {
  color: red;
}
#sbt_navi ul li a:active {
  color: #959595;
  text-decoration: none;
}

#sbt_navi3 {
  position: relative;
  width: 100%;
  top: 10px;
  margin-bottom: 20px;
  color: #959595;
}
#sbt_navi3 ul {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  top: 15px;
  width: 480px;
  left: 50%;
  margin-left: -150px;
  border: 1px solid #fff;
}
#sbt_navi3 ul li {
  float: left;
  padding-right: 30px;
}
#sbt_navi3 ul li a span {
  color: #9f7b26;
  font-weight: 600;
}
#sbt_navi3 ul li a:link {
  color: #959595;
  background: white;
  -o-transition: color 0.5s ease-out, background 1s ease-in;
  -ms-transition: color 0.5s ease-out, background 1s ease-in;
  -moz-transition: color 0.5s ease-out, background 1s ease-in;
  -webkit-transition: color 0.5s ease-out, background 1s ease-in;
  /* ...and now override with proper CSS property */
  transition: color 0.5s ease-out, background 1s ease-in;
}
#sbt_navi3 ul li a:visited {
  color: #959595;
  text-decoration: none;
}
#sbt_navi3 ul li a:hover {
  color: red;
}
#sbt_navi3 ul li a:active {
  color: #959595;
  text-decoration: none;
}

#sbt {
  position: relative;
  width: 100%;
  top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

.cont {
  position: relative;
  width: 100%;
  top: 50px;
  left: 50%;
  margin-left: -500px;
}
.map {
  position: relative;
  width: 1000px;
  text-align: center;
}
.ptit_sub {
  font-size: 16px;
  padding-bottom: 20px;
  font-weight: 600;
}
.cont_text {
  padding-bottom: 20px;
}

.winners td {
  padding-bottom: 30px;
  padding-left: 15px;
}

/*------------------------------------------------
* layerPopup
/*------------------------------------------------*/
#pop1 {
  display: none;
  position: absolute;
  left: 0px;
  top: 30px;
  width: 800px;
  left: 50%;
  margin-left: -400px;
  height: 500px;
  z-index: 99999;
}
#pop2 {
  display: none;
  position: absolute;
  left: 0px;
  top: 30px;
  width: 800px;
  left: 50%;
  margin-left: -400px;
  height: 500px;
  z-index: 99999;
}

#mask {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9000;
  background-color: #000;
  display: none;
}

/* footer */
.footer {
  position: relative;
  width: 1000px;
  left: 50%;
  margin-left: -500px;
  margin-top: 100px;
  padding-bottom: 100px;
}
.footer h1 {
  text-indent: -9999px;
  width: 131px;
  height: 40px;
  background-image: url("/2018/research/img/icon_bg.png");
  background-position: -71px -71px;
  float: left;
}
.footer .r_cont {
  float: right;
}
.footer .r_cont:after {
  content: "";
  display: block;
  clear: both;
}

.footer .address {
  float: left;
  padding: 10px 10px 0 0;
}
.footer .link {
  float: left;
}
.footer .link:after {
  content: "";
  display: block;
  clear: both;
}
.footer .link li {
  float: left;
  width: 30px;
  height: 30px;
  background-image: url("/2018/research/img/icon_bg.png");
  margin-left: 5px;
}
.footer .link li a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}
.footer .link .link_1 {
  background-position: -71px -142px;
}
.footer .link .link_2 {
  background-position: -142px -142px;
}
.footer .link .link_3 {
  background-position: -213px -142px;
}

/*  ÀüÃ¼°Ô½ÃÆÇ ºÎºÐ */
.txt_sml {
  font-style: normal;
  text-decoration: none;
  font-size: 8pt;
  font-family: "Noto Sans KR";
}
a.txt_sml:active {
  font-style: normal;
  text-decoration: none;
  font-size: 8pt;
  font-family: "Noto Sans KR";
}
a.txt_sml:visited {
  font-style: normal;
  text-decoration: none;
  font-size: 8pt;
  font-family: "Noto Sans KR";
}
a.txt_sml:link {
  font-style: normal;
  text-decoration: none;
  font-size: 8pt;
  font-family: "Noto Sans KR";
}
a.txt_sml:hover {
  font-style: normal;
  text-decoration: none;
  font-size: 8pt;
  font-family: "Noto Sans KR";
}

.fb-like {
  z-index: 20;
}
.tbl_num {
  font-family: "Tahoma";
  font-size: 10px;
  font-weight: none;
  padding: 6px 0 5px 0;
  border-bottom: 1px #86afb3 solid;
}
.tbl_lst {
  padding: 16px 0 16px 0;
  border-bottom: 1px #86afb3 solid;
  font-size: 11pt;
  word-break: break-all;
  text-align: center;
}

.vew_top {
  border-top: 2px #cf0e37 solid;
}

.vew_cnt {
  font-size: 9pt;
  color: #86afb3;
}

.vew_lst2 {
  border-bottom: 1px #86afb3 solid;
  padding: 6px 0 5px 0;
}

.vew_line {
  border-bottom: 1px #86afb3 solid;
}

.txt_rome {
  font-family: "Courier New";
}

.vew_tit {
  border-bottom: 1px #efadbb solid;
  padding: 15px 0 15px 0;
}

.vew_tit2 {
  border-bottom: 1px #efadbb solid;
  font-weight: bold;
  padding: 7px 0 3px 0;
}

.vew_num {
  border-bottom: 1px #efadbb solid;
  font-family: "Tahoma";
  font-size: 10px;
  font-weight: bold;
  padding: 6px 0 4px 0;
}

.wrt_line {
  border-bottom: 1px #86afb3 solid;
  padding: 5px 0 4px 0;
}

.wrt_line2 {
  border-bottom: 1px #efadbb solid;
  padding: 5px 0 4px 0;
}

.wrt_line3 {
  padding: 5px 0 4px 0;
}

.cmt_1 {
  font-size: 8pt;
  line-height: 12pt;
  padding: 7px 0 3px 0;
  border-bottom: 1px #efadbb solid;
}

.cmt_2 {
  font-family: "Tahoma";
  font-size: 10px;
  line-height: 12pt;
  padding: 7px 0 3px 0;
  border-bottom: 1px #efadbb solid;
}

.bdTable {
  table-layout: fixed;
}

.bd_num * {
  vertical-align: middle;
}

a.txt_msml {
  color: #fff;
}
a.txt_msmc {
  color: #a1a1a1;
  font-size: 11px;
  line-height: 17px;
}

div.tk_list {
  border-bottom: 1px #b7b7b7 solid;
  padding: 0 0 8px 0;
  overflow: auto;
}
div.tk_list p {
  float: left;
  padding-right: 10px;
  color: #d40e38;
}
p.tk_list_11 {
  padding-top: 2px;
}

#footer {
  position: relative;
}
.spaf_list {
  position: absolute;
  width: 103px;
  height: 24px;
  right: 0;
  top: 80px;
  z-index: 900;
}
.spaf_list p {
  cursor: pointer;
}
.spaf_list ul {
  position: absolute;
  width: 103px;
  left: 0;
  bottom: 24px;
  background: #fff;
  display: none;
}
.spaf_list ul li {
  height: 24px;
  line-height: 0;
  font-size: 1px;
}
.spaf_list ul li:hover {
  background: #86afb3;
}
.spaf_list ul li a {
  display: block;
  width: 100%;
  height: 24px;
}
.spaf_list ul li a span {
  display: block;
  padding: 8px 0 0 20px;
}

/*
border:1px solid red;
border:1px solid blue;
*/
