/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;}
html, body {
  width:100%;
  height:100%;}
html {
  width: 100%;
  height:100%;}
body {
  width: 100%;
  height:100%;}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-weight: normal; }

ol, ul {
  list-style: none; }

blockquote {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

del {
  text-decoration: line-through; }

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0; }

a img {
  border: none; }


/* Global
-------------------------------------------------------------- */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
html {
  position: relative;
  min-height: 100%}
body {
  color: #444a57;
  width: 100%;
  font-family: "Roboto", "맑은 고딕", sans-serif;
  background: transparent url(../images/dev-bg.png) repeat-y scroll center center;
  margin:0 0 36px;}
a {
  text-decoration: none;
  color:inherit;}
#docs {
  background: transparent url(../images/docs-bg.png) repeat-y scroll center center;}
#index, #terms {
  background: #fff;}
/* Korean */


@font-face {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 300;
    src: local('Noto Sans Light'), local('Noto Sans Light'), local('Noto Sans Light');
    src: url(../fonts/NotoSans-Light.eot);
    src: url(../fonts/NotoSans-Light.eot?#iefix) format('embedded-opentype'),
    url(../fonts/NotoSans-Light.woff) format('woff'),
    url(../fonts/NotoSans-Light.otf) format('truetype');}

@font-face {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: local('Noto Sans Regular'), local('Noto Sans Regular'), local('Noto Sans Regular');
    src: url(../fonts/NotoSans-Regular.eot);
    src: url(../fonts/NotoSans-Regular.eot?#iefix) format('embedded-opentype'),
    url(../fonts/NotoSans-Regular.woff) format('woff'),
    url(../fonts/NotoSans-Regular.otf) format('truetype');}

@font-face {
    font-family: 'Noto Sans';
    font-style: bold;
    font-weight: 700;
    src: local('Noto Sans Bold'), local('Noto Sans Bold'), local('Noto Sans Bold');
    src: url(../fonts/NotoSans-Bold.eot);
    src: url(../fonts/NotoSans-Bold.eot?#iefix) format('embedded-opentype'),
    url(../fonts/NotoSans-Bold.woff) format('woff'),
    url(../fonts/NotoSans-Bold.otf) format('truetype');}

.noto {
  font-family: 'Noto Sans';
  font-weight: 400;
  letter-spacing: -0.8px;}

.noto300 {
  font-family: 'Noto Sans';
  font-weight: 300;
  letter-spacing: -0.8px;}

.noto700 {
  font-family: 'Noto Sans';
  font-weight: 700;}


/* auto counting
-------------------------------------------------------------- */

body {
counter-reset : h2;}
h2 {
counter-reset : h3;}
h3 {
counter-reset : h4;}
h4 {
counter-reset : h5;}
h5 {
counter-reset : h6;}

.article h2:before {
content : counter(h2,decimal) ". ";
counter-increment : h2;}

.article h3:before {
content : counter(h2,decimal) "." counter(h3,decimal) ". ";
counter-increment : h3;}

.article h4:before {
content : counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal) ". ";
counter-increment : h4;}

.article h5:before {
content : counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal) "." counter(h5,decimal) ". ";
counter-increment : h5;}

.article h6:before {
content : counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal) "." counter(h5,decimal) "." counter(h6,decimal) ". ";
counter-increment : h6;}

h2.nocount:before, h3.nocount:before, h4.nocount:before, h5.nocount:before, h6.nocount:before {
content : "";
counter-increment : none;}


#terms h2:before, #terms h3:before, #terms h4:before, #terms h5:before, #terms h6:before {
content : "";
counter-increment : none;}

  /* wrap & float
-------------------------------------------------------------- */

.wrap {
	width:960px;
	margin:0 auto;}

.left {
	float: left;
	display:inline-block;
	overflow: hidden;}
.right {
	float: right;
	display:inline-block;
	overflow: hidden;}


  /* layout
-------------------------------------------------------------- */

#header {
  width: 100%;
  overflow: hidden;
  height:inherit;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 70px;
  background-color: #fff;
  box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.4);}

  #header .wrap {
 	height:70px;}
  #header .devlogo {
  	height:70px;
  	float:left;}
  	.devlogo img {
      margin-top:20px;}
  #header .nav {
  	float: left;
    overflow: hidden;
    display: inline-block;
    margin-left:40px;}
    #header .nav a {
      font-size:15px;
      line-height: 70px;
      height:70px;
      margin-right:20px;
      display: inline-block;
      border-bottom:4px solid transparent;}
      #header .nav a:hover {
        border-bottom: 4px solid #ccc}
      #header .nav a.selected {
        color:#0071bc;
        border-bottom:4px solid #0071bc;}

  #header .account {
  	height:70px;
  	float: left;}
    .account a {
      line-height: 70px;
      font-size:13px;}
      .account a:hover {
      text-decoration: underline;}
  #header .prologo {
  	float: left;
    overflow: hidden;
    margin-left:20px;}
    .prologo img {
      margin-top:14px;}

#main {
  width: 100%;
  min-height: 100% !important;
  position: relative;
  margin-top:-36px;
  z-index: 10;
  height: inherit;
  display: block;
  padding-top:140px;}

  #main .nav {
  	width:20% !important;
  	display: inline-block;
  	float: left;}
    #main .nav ol, #main .nav ul, #main .nav li {
      list-style: none !important;
      margin: 0;
      padding: 0;}
  #main .content {
      width:76% !important;
      margin-left:4%;
      float: left;
      padding-bottom:36px;}


/*#docs #main, #index #main, #terms #main {
   overflow: auto;}*/
  #docs #main .wrap {
    width: 840px !important;}
  #docs .content {
    width: 100% !important;
    margin-left: 0 !important;
    position: relative !important;}

  #index #main {
    padding-top:100px;}
  #terms #main {
    padding-top:140px;}

  #index #main .wrap {
    width: 960px !important}
    #index .content, #terms .content {
      width: 100% !important;
      margin-left: 0 !important;
      position: relative !important;}
    #index .content {
      text-align: center;}
  #terms #main .wrap {
      width: 940px !important}




/* Developers index */

.index_main {
  background:linear-gradient(45deg, #20409A 0, #0075BC 60%) !important;
  background:-webkit-linear-gradient(45deg, #20409A 0, #0075BC 60%) !important;
  background:-ms-linear-gradient(45deg, #20409A 0, #0075BC 60%) !important;
  width: 100%;
  height:240px;
  margin-bottom:20px;}

  .index_main .wrap {
    height:270px;
    background: url(../images/index_bg.png) no-repeat 92% 100%;}

  .index_main p {
      padding-top:68px;
      padding-left:38px;
      font-size:21px;
      color:#fff;
      line-height: 1.4;}
   .index_main img {
      margin-left:32px;
      margin-top:-6px;
      width: 150px;}
    .index_main p strong {
      text-transform: uppercase;
      font-size: 22px;
      font-family: 'Roboto Slab';
      text-shadow: 0px 2px #000;}
    #index p.h1 {
      font-size:42px;
      display: block;
      font-weight: 100;
      text-align: center;
      line-height: inherit;
      margin: 20px 0}
    #index p.h5 {
      text-align: center;
      font-size:14px;
      margin-top:-10px;
      margin-bottom: 30px}
    #index p.h2 {
      font-size:34px;
      display: block;
      font-weight: 400;
      text-align: center;
      color:#0071bc;
      line-height: inherit;
      margin: 50px 0 20px 0}

#index ul, #index li {
  list-style: none !important}
  .index_list {
    overflow: hidden;
    width: 960px;
    margin: 0 auto;
    padding-bottom:30px;}
  .index_list ul {
    padding: 0;
    margin: 0;}
  .index_list ul li {
    margin: 0;
    width: 160px;
    padding:0 6px;
    text-align: center;
    float: left;
    line-height: inherit;}
    .index_list ul li img {
      width:110px;}
    .index_list ul li p {
      font-weight: 700;
      font-size: 17px;
      line-height: 1.1;
      padding-top:6px;}
    .index_list ul li span {
      font-size: 13px;
      padding:0 10px;
      display: block;
      line-height: 1.2;
      color: #707070;
      margin-top:-5px;
      letter-spacing: -0.02em;}
    .index_list ul li a {
      display: inline-block;
      margin-top: 10px;
      font-size: 12px;
      color:#29abe2;
      border-bottom: 1px solid #fff}
      .index_list ul li a:hover {
        border-bottom: 1px solid #29abe2}

  #index .start {
    color:#0071bc;
    border:1px solid #0071bc;
    padding:8px 45px;
    font-weight: 700;
    border-radius: 80px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;}
    #index .start:hover {
      background-color: #0071bc;
      color:#fff;}



#footer {
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 36px;}
  #footer .nav a {
  	font-size:12px;
  	line-height: 36px;
  	padding:0 4px;
  	margin-right:3px;}
    #footer .nav a:hover {
      text-decoration: underline;    }
    .aside span {
  	display: inline-block;
  	font-size:12px;
  	line-height: 36px;
  	color:#bbb;}

.quicklink {
  width:200px;
  padding:15px;
  float: right;
  margin-left:20px;
  margin-bottom:20px;
  border:1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;}

  .quicklink ol {
    counter-reset: item;
    margin: 0 !important }
    .quicklink ol li {
      display: block;
      color:#00aae6 !important;
      font-size:13px !important;
      line-height:1.8 !important;
      list-style: decimal !important;}
      .quicklink ol li:before {
        content: counters(item, ".") "." " "; counter-increment: item }
    .quicklink ol ol {
      margin-left:15px !important;}

  .quicklink h6 {
    font-size:16px;
    font-weight: 600;
    margin-bottom:8px;}

  .quicklink a {
    color:#00aae6;}

.anchor{
  display: block;
  height: 70px; /*same height as header*/
  margin-top: -70px; /*same height as header*/
  visibility: hidden;}

/* paragraph styles
-------------------------------------------------------------- */
h1, h2 {
  font-family: "Roboto Slab", sans-serif;}

h1 {
  font-size:42px;
  font-weight: 700;
  margin-bottom:20px;}
  #docs h1 {
      color: #29398b;}
h2 {
  font-size:32px;
  font-weight:700;
  line-height: 1.5;
  margin-top:32px;
  margin-bottom:15px;}

h3 {
  font-size:26px;
  line-height: 1.5;
  margin-top:18px;
  margin-bottom: 4px}

h4 {
  font-size:18px;
  line-height: 1.5;
  margin:12px 0;}

p {
  font-size: 14px;
  line-height: 22px;
  font-weight:400;
  letter-spacing: -0.02em;
  margin-bottom: 10px}

p>a {
  color:#00aae6;
  cursor: pointer;}

span.tag {
  color:#0071bc;
  border:1px solid #bbb;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding:0 4px;
  margin:0 3px;
  font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;}

span.code {
  font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;}

p.tip, p.note, p.info, p.warning {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  padding:10px 20px;
  display: inline-block;
  margin-bottom: 10px}
  p.tip strong, p.note strong, p.info strong, p.warning strong {
    display: block;
    line-height: 1.6;
    font-weight: 700;
    font-size:17px;}
  p.tip {
    border:1px solid #1d8e35;
    background: url(../images/tip-box.png) no-repeat 0px 0px;}
    p.tip strong {
      color:#1d8e35;}
  p.info {
    border:1px solid #0071bc;
    background: url(../images/info-box.png) no-repeat 0px 0px;}
    p.info strong {
      color:#0071bc;}
  p.note {
    border:1px solid #edbb3e;
    background: url(../images/note-box.png) no-repeat 0px 0px;
    background-color: #fffdf6;}
    p.note strong {
      color:#333;}
  p.warning {
    border:1px solid #cf4336;
    background: url(../images/warning-box.png) no-repeat 0px 0px;
    background-color: #fff8f7;}
    p.warning strong {
      color:#cf4336;}

.italic {
  color:#999;
  font-size:14px;
  font-style: italic;
  display: block;
  margin-top:-25px;
  margin-bottom:30px;}

.nav > h4 {
  font-family: 'Roboto', sans-serif;
  border: 1px solid #0071bc;
  padding:8px 12px;
  text-align: center;
  color:#0071bc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  line-height: 1;
  display: inline-block;
  font-size: 16px;
  width: 180px;}

ol {
  margin-left:30px;
  margin-bottom: 10px;}

ol li {
  list-style: decimal;
  font-size: 14px;
  line-height: 1.6;}

ul {
  margin-left: 10px;
  margin-bottom: 10px;
  padding-left: 10px;}

ul li {
  font-size: 14px;
  line-height: 1.6;
  list-style: disc !important;}

.first-letter::first-letter {
  font-size:360%;
  font-weight: 700;
  float: left;
  margin:12px 6px 4px 0;
  color:#6a6a6a;}




/* Articles
-------------------------------------------------------------- */

.article {
  margin-top:40px;}

.movepage {
  color:#0071bc;
  font-size: 13px;
  padding:4px 10px;
  margin:2px 3px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  border: 1px solid #0071bc}
  .movepage:after {content: '\25b6'; padding-left:5px;}
  .movepage:hover {
    background-color: #0071bc;
    color: #fff}
.download {
  color:#0099cc;
  font-size: 13px;
  padding:2px 12px;
  margin:2px;
  display: inline-block;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
  border: 1px solid #0099cc}
  .download:after {content: '\25bc'; padding-left:5px;}
  .download:hover {
    background-color: #0099cc;
    color: #fff}

table {
  width: 100%;
  word-break:break-all;
  margin:20px 0;}
th, td{
  border:1px solid #e5e5e5;
  font-size:14px;
  text-align: left;
  padding:6px 10px;}
  th {
  background: #f2f6fa}

td .tag {
  border:none;
  color:#444a57;
  padding:0;
  margin: 0;}

table caption, figure figcaption {
  caption-side: top;
  font-size:13px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 5px;
  color:#333;}

.license td {
  font-size:13px;
  color: #000;}

.box {
  width: 100%;
  display: inline-block;
  overflow: hidden;
  border:1px solid #ccc;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding:10px;
  margin:10px 0;}
  .box p {
    margin:0;}
  .box .code {
    font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;}
  .fig-left {
    float: left;
    margin:0px 20px 10px 0px}
  .fig-right {
    float: right;
    margin:0px 0px 10px 20px}
  .fig-center {
    text-align: center;}
    .fig-center figcaption {
      text-align: center;}
  .fig-center-full {
    margin: 10px 0;}
  .fig-center-full img {
    width: 100%;}

  .clear {
    clear: both !important;}

span.tip, span.info, span.warning, span.note {
  padding-left: 20px;
  font-size: 14px;
  margin-right: 10px;
  margin-bottom: 10px;}
span.tip {
  background: url(../images/tip.png) no-repeat 0% 0%;}
span.info {
  background: url(../images/info.png) no-repeat 0% 0%;}
span.note {
background: url(../images/note.png) no-repeat 0% 0%;}
span.warning {
  background: url(../images/warning.png) no-repeat 0% 0%;}

.docs-item {
  width: 270px;
  margin-left:15px;
  float: left;}
  .docs-item:first-child {
    margin-left: 0;}
  .docs-item h2 {
    font-size: 24px;
    margin-bottom: 10px;
    counter-reset: none;
    border-bottom: none;
    color:#444a57;}
    .docs-item h2:before {
      content : none;
      counter-increment : none;}
  .docs-item a {
    margin-left: 10px;
    font-size: 14px;
    line-height:2;
    vertical-align: middle;
    display: block;
    color:#444a57;}
     .docs-item a:hover {
      text-decoration: underline;
     }
      .docs-item a:before {
        content:  url(../images/icon-doc.png);
        margin-right: 6px;}

.partnerforum-item {
  width: 220px;
  margin-left:15px;
  float: left;}
  .partnerforum-item:first-child {
    margin-left: 0;}
  .partnerforum-item h2 {
    font-size: 24px;
    margin-bottom: 10px;
    counter-reset: none;
    border-bottom: none;
    color:#444a57;}
    .partnerforum-item h2:before {
      content : none;
      counter-increment : none;}
  .partnerforum-item a {
    margin-left: 10px;
    font-size: 14px;
    line-height:2;
    vertical-align: middle;
    display: block;
    color:#444a57;}
     .partnerforum-item a:hover {
      text-decoration: underline;
     }
      .partnerforum-item a:before {
        content:  url(../images/icon-doc.png);
        margin-right: 6px;}
        
/* sliding menu
-------------------------------------------------------------- */
#slide{
  width: 0px;
  overflow: hidden;
  position: absolute;
  margin-left:-80px;
  background: rgba(68,74,87,0.925);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  float: left;
  z-index: 10;}
  #slide ul, #slide li {
    list-style: none !important;}
#slide-nav{
  width: 220px;
  height: auto;
  display: block;
  margin: 0 ;
  padding-top: 12px;}
.slide-tab{
  width: 220px;
  display: block;}
.slide-tab a{
  color: #fff;
  line-height: 2;
  font-size: 14px;
  padding:0 20px;}
  .slide-tab a.current {;
    color:#4dd1ff;}
.slide-tab a:hover{
  text-decoration: underline;}
  .slide-tab ul li a {
    font-size: 13px;}
.menu-icon{
  width: 45px;
  padding:13px 0 0 12px;
  height:45px;
  overflow: hidden;
  position: absolute;
  margin-left: -80px;
  background-color: #444a57;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  border-radius: 45px;
  z-index: 10;
  cursor: pointer;}
.menu-icon:hover {
  background-color: #000;}
.menu-icon div {
  width: 22px;
  height: 3px;
  background: #fff;
  margin-bottom: 5px;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  -ms-transition: all 0.35s;
  transition: all 0.35s;}
.on {
  background-color: transparent;}
.on .line_one {transform: rotate(45deg) translate(5px, 6px);}
.on .line_two {opacity: 0;}
.on .line_three {transform: rotate(-45deg) translate(5px, -6px);}
.on:hover, .on:active {
  background-color: transparent;}

/* Accordion menu
-------------------------------------------------------------- */
.cd-accordion-menu {
  width:180px !important;
  border:1px solid transparent}
.cd-accordion-menu ul {
  /* by default hide all sub menus */
  display: none;}
.cd-accordion-menu li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;}
  .cd-accordion-menu li:before { display: none;}

.cd-accordion-menu input[type=checkbox] {
  /* hide native checkbox */
  position: absolute;
  opacity: 0;}
.cd-accordion-menu label, .cd-accordion-menu a {
  position: relative;
  display: block;
  padding: 8px 0px;
  font-size:15px;
  font-weight: 700;}
.no-touch .cd-accordion-menu label:hover, .no-touch .cd-accordion-menu a:hover {
   /* 1depth hover */
   text-decoration: underline;}
.cd-accordion-menu label::before, .cd-accordion-menu label::after, .cd-accordion-menu a::after {
  /* icons */
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);}
.cd-accordion-menu label {
  cursor: pointer;}
.cd-accordion-menu label::before{
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;}
.cd-accordion-menu label::before {
  /* arrow icon */
  right: 10px;
  background-position: 0 0}

.cd-accordion-menu input[type=checkbox]:checked + label::before {
  /* rotate arrow */
  background-image: url(../images/arrow2.png);}

.cd-accordion-menu input[type=checkbox]:checked + label + ul,
.cd-accordion-menu input[type=checkbox]:checked + label:nth-of-type(n) + ul {
  /* use label:nth-of-type(n) to fix a bug on safari (<= 8.0.8) with multiple adjacent-sibling selectors*/
  /* show children when item is checked */
  display: block;}
.cd-accordion-menu ul label,
.cd-accordion-menu ul a {
  padding-left:10px;
  font-size:15px;
  font-weight: 400;}
.no-touch .cd-accordion-menu ul label:hover, .no-touch
.cd-accordion-menu ul a:hover {
  text-decoration: underline;}
.cd-accordion-menu > li:last-of-type > label,
.cd-accordion-menu > li:last-of-type > a,
.cd-accordion-menu > li > ul > li:last-of-type label,
.cd-accordion-menu > li > ul > li:last-of-type a {
  box-shadow: none;}

.cd-accordion-menu ul ul {
  margin-top:2px;
  margin-bottom: 8px;
  background-image:url(../images/3depth-bg.png);
  background-repeat: repeat-y;
  background-position: 10% 0;}

.cd-accordion-menu ul ul label,
.cd-accordion-menu ul ul a {
  padding: 4px 0 4px 30px;
  font-size:14px;
  font-weight: 400;}

.cd-accordion-menu ul ul ul label,
.cd-accordion-menu ul ul ul a {
  padding-left: 45px;}

.cd-accordion-menu ul a.current {
  color:#0071bc;
  font-weight: 700;} /* 2depth current page */

.cd-accordion-menu ul ul a.current {
  background-image: url(../images/current.png) !important;
  background-repeat: no-repeat  !important;
  background-position: 10% 50%  !important;
  color:#0071bc  !important;}  /* 3depth current page */

.hidden {
  display: none}



/* table header (with right button) */

.table-header {
  display: block;
  margin-top: 20px;
  margin-bottom:-10px;
  overflow: hidden;}
  .table-header p {
    font-size:22px;
    letter-spacing: -1px;
    font-weight: 700;
    float: left;
    vertical-align: middle;}
  .table-header button {
    float: right;
    cursor: pointer;
    border:none;
    background: #fff;
    border:2px solid #0071bc;
    padding:4px 20px;
    color:#0071bc;
    font-size:14px;
    font-weight: 700;
    border-radius: 80px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;}
    .table-header button:hover {
    background: #f2f6fa}
    .table-header button:active {
    background: #0071bc;
    color:#fff;}




/* form */

.form table {
  width: auto;}
.form table tr, .form table td, .form table th {
  border:none;
  background: none;}

.form input, .form select{
  border:none;
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  font-family: "Roboto", "맑은 고딕", sans-serif;
  font-weight: 400;
  border: 1px solid #dbdbdb;}
.form input {
    width : 100%;
    background: url('../images/edit.png') no-repeat 97% 50%;
    padding-right:30px;}
.form select {
  width: 100%;
  background: url('../images/dropdown.png') no-repeat right center;
  -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';}
.form  select::-ms-expand {
  display: none;}
.form span {
  font-size: 12px;}

.form table button {
    float: right;
    cursor: pointer;
    border:none;
    font-weight: 700;
    background: #0071bc;
    padding:5px 24px;
    color:#fff;
    font-size:16px;
    border-radius: 80px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;}
    .form table button:hover {
    opacity: 0.9;}
    .form table button:active {
    background: #195299}

.form a.cancel {
  float: left;
  font-size: 13px;
  display: inline-block;
  text-decoration: underline;
  padding:6px 0;}

/* wideform */

.wideform table {
  width: 100%;}
.wideform table tr, .wideform table td, .wideform table th {
  border:none;
  vertical-align: middle;
  background: none;}

.wideform input, .wideform select{
  border:none;
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  font-family: "Roboto", "맑은 고딕", sans-serif;
  font-weight: 400;
  border: 1px solid #dbdbdb;}
.wideform input {
    width : 100%;
    background: url('../images/edit.png') no-repeat 97% 50%;
    padding-right:30px;}
.wideform textarea {
    width : 100%;
    height : 500px;
    background: url('../images/edit.png') no-repeat 97% 50%;
    padding-right:30px;}
.wideform select {
  width: 100%;
  background: url('../images/dropdown.png') no-repeat right center;
  -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';}
.wideform  select::-ms-expand {
  display: none;}
.wideform span {
  font-size: 12px;}

.wideform table button {
    float: right;
    cursor: pointer;
    border:none;
    font-weight: 700;
    background: #0071bc;
    padding:5px 24px;
    color:#fff;
    font-size:16px;
    border-radius: 80px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;}
    .form table button:hover {
    opacity: 0.9;}
    .form table button:active {
    background: #195299}

.wideform a.cancel {
  float: left;
  font-size: 13px;
  display: inline-block;
  text-decoration: underline;
  padding:6px 0;}
  
/* forum */

.forum table {
  width: 100%;}
.forum table tr, .forum table td, .forum table th {
  border:none;
  padding: 0 !important;
  vertical-align: middle;
  background: none;}

.forum input, .forum select{
  border:none;
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  font-family: "Roboto", "맑은 고딕", sans-serif;
  font-weight: 400;
  border: 1px solid #dbdbdb;}
.forum input {
    width : 100%;
    background: url('../images/edit.png') no-repeat 97% 50%;
    padding-right:30px;}
    
.forum textarea {
    width : 100%;
    height : 200px;
    background: url('../images/edit.png') no-repeat 97% 50%;
    padding-right:30px;}

.forum table button {
    float: right;
    cursor: pointer;
    border:none;
    font-weight: 700;
    background: #0071bc;
    padding:5px 24px;
    color:#fff;
    font-size:16px;
    border-radius: 80px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -ms-border-radius: 80px;}
    .form table button:hover {
    opacity: 0.9;}
    .form table button:active {
    background: #195299}
  
/* message */

.msg {
  width: 100%;
  margin-top:20px;
  text-align: center;}
.msg p {
  font-size: 16px;
  margin:20px 0;}

.msg button {
  cursor: pointer;
  border:none;
  font-weight: 700;
  background: #0071bc;
  padding:5px 24px;
  color:#fff;
  font-size:16px;
  border-radius: 80px;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  -ms-border-radius: 80px;}
  .msg button:hover {
  opacity: 0.9;}
  .msg button:active {
  background: #195299}


table.example td {
  padding: 0 !important;
  border-radius:4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;}
  table.example pre {
    background: #f2fafe;
    color:#1d3056;
    padding:20px 20px 6px 20px;
    font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;}


.divider {
  box-shadow: 0px 3px 4px rgba(0,0,0,0.1);
  padding:2px 26px 20px 26px;
  margin-top:10px;
  margin-bottom:60px;
  border-top:2px solid #0071bc;}

strong.st {
  display: inline-block;
  margin-top:20px;
  font-size:18px;}

th.code {
  font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;}

.article h2:first-child {
  margin-top:0px !important;}

td.center {
  text-align: center;}


/* terms */
#terms h1 {
  font-size: 24px;
  display: inline-block;
  line-height: 24px;}

#terms select {
  float: right;
  width: 120px;
  height: 24px;
  margin:0;}

#terms .clear {
  border-bottom: 1px solid #bbb;}

#terms .article {
  margin-top:15px;}
#terms .article p, #terms .article li {
  letter-spacing: -0.02em;
  font-size: 13px;}

.mt30 {margin-top:30px;}
.case {margin-bottom:60px; padding-bottom:30px;border-bottom:1px dotted #bbb;}