@charset "utf-8";
/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */
/* Import Sass mixins, variables, Compass modules, etc. */
/* HTML element (SMACSS base) rules */
/**
 * @file
 * Normalize.css is intended to be used as an alternative to CSS resets.
 *
 * This file is a slight fork of these original sources:
 * - normalize.css v2.1.2 | MIT License | git.io/normalize
 * - normalize.scss v2.1.2 | MIT/GPLv2 License | bit.ly/normalize-with-compass
 *
 * It's suggested that you read the normalize.scss file and customise it to meet
 * your needs, rather then including the file in your project and overriding the
 * defaults later in your CSS.
 * @see http://nicolasgallagher.com/about-normalize-css/
 *
 * Also: @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 *       @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/* color */
/**
 * HTML5 display definitions
 */
/* Correct `block` display not defined in IE 8/9. */
/* line 51, ../sass/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/* Correct `inline-block` display not defined in IE 8/9. */
/* line 58, ../sass/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 70, ../sass/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* Address styling not present in IE 8/9. */
/* line 76, ../sass/_normalize.scss */
[hidden] {
  display: none;
}

/**
 * Base
 *
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
 *
 * Since we're using Sass, you'll need to declare your font faces here, then you
 * can add them to the font variables in the _init.scss partial.
 */
@font-face {
  font-family: 'Nanum Gothic';
  src: url("/sites/all/themes/kubs/fonts/NanumGothic.eot");
  src: url("/sites/all/themes/kubs/fonts/NanumGothic.eot?iefix") format("eot"), url("/sites/all/themes/kubs/fonts/NanumGothic.woff") format("woff"), url("/sites/all/themes/kubs/fonts/NanumGothic.svg#webfontOkOndcij") format("svg");
}

@font-face {
  font-family: 'Nanum Gothic Bold';
  src: url("/sites/all/themes/kubs/fonts/NanumGothicBold.eot");
  src: url("/sites/all/themes/kubs/fonts/NanumGothicBold.eot?iefix") format("eot"), url("/sites/all/themes/kubs/fonts/NanumGothicBold.woff") format("woff"), url("/sites/all/themes/kubs/fonts/NanumGothicBold.svg#webfontOkOndcij") format("svg");
}

@font-face {
  font-family: 'Nanum Barun Gothic';
  src: url("/sites/all/themes/kubs/fonts/NanumBarunGothic.eot");
  src: url("/sites/all/themes/kubs/fonts/NanumBarunGothic.eot?iefix") format("eot"), url("/sites/all/themes/kubs/fonts/NanumBarunGothic.woff") format("woff"), url("/sites/all/themes/kubs/fonts/NanumBarunGothic.svg#webfontOkOndcij") format("svg");
}

@font-face {
  font-family: 'Nanum Barun Gothic Bold';
  src: url("/sites/all/themes/kubs/fonts/NanumBarunGothicBold.eot");
  src: url("/sites/all/themes/kubs/fonts/NanumBarunGothicBold.eot?iefix") format("eot"), url("/sites/all/themes/kubs/fonts/NanumBarunGothicBold.woff") format("woff"), url("/sites/all/themes/kubs/fonts/NanumBarunGothicBold.svg#webfontOkOndcij") format("svg");
}

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 */
/* line 152, ../sass/_normalize.scss */
html {
  font-family: "Nanum Gothic", Verdana;
  /* 1 */
  font-size: 15px;
  line-height: 23px;
  color: #666;
  background-color: white;
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Remove default margin. */
/* line 171, ../sass/_normalize.scss */
body {
  margin: 0 !important;
  padding: 0 !important;
}

/* line 179, ../sass/_normalize.scss */
a:focus,
a:active,
a:hover {
  outline: 0;
}

/**
 * Typography
 *
 * To achieve a pleasant vertical rhythm, we use Compass' Vertical Rhythm mixins
 * so that the line height of our base font becomes the basic unit of vertical
 * measurement. We use multiples of that unit to set the top and bottom margins
 * for our block level elements and to set the line heights of any fonts.
 * For more information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
/* Set 1 unit of vertical rhythm on the top and bottom margin. */
/* line 198, ../sass/_normalize.scss */
blockquote {
  /* Also indent the quote on both sides. */
  margin: 1.5em 30px;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 207, ../sass/_normalize.scss */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  /* @include adjust-font-size-to( $h1-font-size );
     @include leader(1, $h1-font-size);
     @include trailer(1, $h1-font-size);*/
}

/* line 214, ../sass/_normalize.scss */
h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 219, ../sass/_normalize.scss */
h3 {
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}

/* line 224, ../sass/_normalize.scss */
h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

/* line 229, ../sass/_normalize.scss */
h5 {
  font-size: 0.83em;
  line-height: 1.80723em;
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}

/* line 234, ../sass/_normalize.scss */
h6 {
  font-size: 0.67em;
  line-height: 2.23881em;
  margin-top: 2.23881em;
  margin-bottom: 2.23881em;
}

/* Address styling not present in IE 8/9, Safari 5, and Chrome. */
/* line 241, ../sass/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */
/* line 247, ../sass/_normalize.scss */
b,
strong {
  font-family: "Nanum Gothic Bold", Verdana;
}

/* line 253, ../sass/_normalize.scss */
.front b,
.front strong {
  font-weight: normal;
}

/* Address styling not present in Safari 5 and Chrome. */
/* line 259, ../sass/_normalize.scss */
dfn {
  font-style: italic;
}

/* Address differences between Firefox and other browsers. */
/* line 264, ../sass/_normalize.scss */
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  border: 1px solid #666;
  padding-bottom: -1px;
  margin: 1.5em 0;
}

/* Address styling not present in IE 8/9. */
/* line 273, ../sass/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* Correct font family set oddly in Safari 5 and Chrome. */
/* line 284, ../sass/_normalize.scss */
code,
kbd,
pre,
samp,
tt,
var {
  font-family: "Courier New", "DejaVu Sans Mono", monospace, sans-serif;
  font-size: 1em;
  line-height: 1.5em;
}

/* Improve readability of pre-formatted text in all browsers. */
/* line 293, ../sass/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/* Set consistent quote types. */
/* line 305, ../sass/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/* Address inconsistent and variable font size in all browsers. */
/* line 310, ../sass/_normalize.scss */
small {
  font-size: 80%;
}

/* Prevent `sub` and `sup` affecting `line-height` in all browsers. */
/* line 316, ../sass/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 322, ../sass/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 325, ../sass/_normalize.scss */
sub {
  bottom: -0.25em;
}

/**
 * Lists
 */
/* line 334, ../sass/_normalize.scss */
dl,
menu,
ol {
  /* Address margins set differently in IE 6/7. */
  margin: 1.5em 0;
}

/* line 341, ../sass/_normalize.scss */
ol ol,
ol ul,
ul ol,
ul ul {
  /* Turn off margins on nested lists. */
  margin: 0;
}

/* line 346, ../sass/_normalize.scss */
dd {
  margin: 0 0 0 30px;
  /* LTR */
}

/* Address paddings set differently in IE 6/7. */
/* line 352, ../sass/_normalize.scss */
ol,
ul {
  /* padding: 0 0 0 $indent-amount;  LTR */
  padding: 0 0 0 20px;
}

/**
 * Embedded content and figures
 *
 * @todo Look into adding responsive embedded video.
 */
/* line 371, ../sass/_normalize.scss */
img {
  /* Remove border when inside `a` element in IE 8/9. */
  border: 0;
  /* Suppress the space beneath the baseline */
  /* vertical-align: bottom; */
  /* Responsive images */
  max-width: 100%;
  height: auto;
  /* Correct IE 8 not scaling image height when resized. */
  width: auto;
}

/* Correct overflow displayed oddly in IE 9. */
/* line 392, ../sass/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Address margin not present in IE 8/9 and Safari 5. */
/* line 397, ../sass/_normalize.scss */
figure {
  margin: 0;
}

/**
 * Forms
 */
/* Define consistent border, margin, and padding. 
fieldset {
  margin: 0 2px;
  Apply borders and padding that keep the vertical rhythm. 
  border-color: #c0c0c0;
  @include apply-side-rhythm-border(top,    $width: 1px, $lines: 0.35);
  @include apply-side-rhythm-border(bottom, $width: 1px, $lines: 0.65);
  @include apply-side-rhythm-border(left,   $width: 1px, $lines: 0.65);
  @include apply-side-rhythm-border(right,  $width: 1px, $lines: 0.65);
}*/
/* line 422, ../sass/_normalize.scss */
fieldset {
  margin: 10px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border: 2px solid #c0c0c0;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
/* line 435, ../sass/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 * 4. Improve appearance and consistency with IE 6/7.
 * 5. Keep form elements constrained in their containers.
 */
/* line 453, ../sass/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
  max-width: 100%;
  /* 5 */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 5 */
  display: inline-block;
}

/* line 465, ../sass/_normalize.scss */
select {
  height: 28px;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 473, ../sass/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 *   ws
 */
/* line 484, ../sass/_normalize.scss */
#kubs-button,
.kubs-button button,
.kubs-button input,
input[type="button"],
input[type="submit"] {
  background: #e3d7c4;
  border: none;
  padding: 10px 20px;
  color: #790018;
  margin-right: 10px;
  margin-top: 10px;
  font-family: "Nanum Gothic Bold", Verdana;
}

/* line 496, ../sass/_normalize.scss */
#kubs-button,
.button,
.kubs-button button:hover,
.kubs-button input:hover {
  opacity: 0.7;
}

/* line 499, ../sass/_normalize.scss */
.button {
  margin-top: 40px;
  float: right;
}
/* line 500, ../sass/_normalize.scss */
.button input[type="button"] {
  margin-right: 0px;
}

@media (min-width: 651px) and (max-width: 1152px) {
  /* line 511, ../sass/_normalize.scss */

  #kubs-button,
  .kubs-button button,
  .kubs-button input,
  input[type="button"],
  input[type="submit"] {
    margin-left: 10px;
  }

  /* line 514, ../sass/_normalize.scss */
  .button {
    margin-right: 10px;
  }
}
@media all and (max-width: 650px) {
  /* line 519, ../sass/_normalize.scss */
  #kubs-button, .kubs-button button, .kubs-button input {
    width: 100%;
  }

  /* line 522, ../sass/_normalize.scss */
  .button {
    margin: 20px 10px 0 0;
  }
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 534, ../sass/_normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
/* line 550, ../sass/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 563, ../sass/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
/* line 574, ../sass/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 588, ../sass/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 598, ../sass/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Remove inner padding and border in Firefox 4+. */
/* line 604, ../sass/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 613, ../sass/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* Drupal-style form labels. */
/* line 619, ../sass/_normalize.scss */
label {
  display: inline-block;
  font-family: "Nanum Gothic Bold", Verdana;
}

/**
 * Tables
 */
/* line 627, ../sass/_normalize.scss */
.footable {
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  width: 100%;
  margin: 15px 0;
}
/* line 632, ../sass/_normalize.scss */
.footable td {
  padding: 5px 10px;
  border-bottom: 1px solid #ddd;
}
/* line 636, ../sass/_normalize.scss */
.footable th {
  background: #eee;
  font-size: 13px;
  line-height: 15px;
  color: #666666;
  padding: 9px 0;
}
/* line 642, ../sass/_normalize.scss */
.footable td:last-child {
  border-right: none;
}

/* line 647, ../sass/_normalize.scss */
table {
  /* Remove most spacing between table cells. */
  border-spacing: 0;
  /* Prevent cramped-looking tables */
  /* width: 100%; */
  /* Add vertical rhythm margins. */
  /* @include leader(1);
   @include trailer(1);*/
}

/* GS ITM custom font */
/**  
 *  View
 */
/* exposed */
/* line 665, ../sass/_normalize.scss */
.views-exposed-form {
  background: #f4f4f4;
  padding: 10px 5px;
  margin-top: 15px;
  position: relative;
}

/* line 671, ../sass/_normalize.scss */
.views-exposed-form .views-exposed-widget {
  padding: 0px 5px;
  margin-bottom: 0px;
}

/* line 675, ../sass/_normalize.scss */
.views-exposed-widget .form-text {
  width: 200px;
  height: 28px;
}

/* line 679, ../sass/_normalize.scss */
.views-exposed-widget .date-date.form-text {
  width: 50px !important;
}

/* line 682, ../sass/_normalize.scss */
.views-exposed-widget input[type="submit"] {
  background: #666;
  border: none;
  color: #fff;
  padding: 5px 10px;
}

/* line 689, ../sass/_normalize.scss */
.views-widget {
  display: inline-block;
}

/* line 693, ../sass/_normalize.scss */
.view-header p {
  line-height: 0px;
}

/* line 696, ../sass/_normalize.scss */
.view-wrapper,
.view-fix-wrapper {
  padding: 15px 0;
}

/* line 699, ../sass/_normalize.scss */
.view-list-1 {
  padding-left: 10px;
  border-left: 2px solid #790018;
}

/* line 704, ../sass/_normalize.scss */
.view-list,
.view-list-0 {
  padding-left: 10px;
  border-left: 2px solid #7c0019;
}

/* line 709, ../sass/_normalize.scss */
.view-wrapper-underline {
  padding: 25px 0 50px 0 !important;
  border-bottom: 1px solid #999999;
}

/* line 713, ../sass/_normalize.scss */
.view-top, .view-file-top {
  height: 63px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/* line 717, ../sass/_normalize.scss */
.view-whole-top {
  height: 80px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/* line 721, ../sass/_normalize.scss */
.view-title {
  font-size: 15px;
  line-height: 21px;
  color: #444;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-family: "Nanum Gothic Bold", Verdana;
  max-height: 42px;
  -webkit-line-clamp: 2;
}

/* line 728, ../sass/_normalize.scss */
.view-body {
  font-size: 13px;
  line-height: 19px;
  color: #666;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 38px;
  margin-top: 4px;
}

/* line 735, ../sass/_normalize.scss */
.view-only-body {
  font-size: 13px;
  line-height: 19px;
  color: #666;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  height: 57px;
  margin-bottom: 10px;
}

/* line 742, ../sass/_normalize.scss */
.region-content-2-1 .view-image, .region-content-4-1 .view-image {
  margin-right: 10px; margin-bottom: 10px;
  width:100%;
  float: none;
  z-index: 10;
}

.view-image{
   margin-right: 10px;
   float: left;
   z-index: 10;
}

.view-image img{
    width: 80px;
    /*height: 80px;*/
    border: 1px solid #cccccc;  
}

/* line 747, ../sass/_normalize.scss */
.none {
  border-left: 2px solid #e7dece;
}

/* line 751, ../sass/_normalize.scss */
.view-fix-image img,
.region-content-2-1 .view-image img, .region-content-4-1 .view-image img {
  width: 100%;
  border: 1px solid #cccccc;
}

/* line 759, ../sass/_normalize.scss */
.view-date,
.view-count,
.view-writer,
.view-nid,
.view-serial {
  font-size: 12px;
  line-height: 16px;
  color: #999999;
}

/* line 762, ../sass/_normalize.scss */
.view-serial:before {
  content: '# ';
}

/* line 765, ../sass/_normalize.scss */
.view-serial {
  margin-right: 8px;
}

/* line 768, ../sass/_normalize.scss */
.view-tag {
  float:right;
  font-size: 12px;
  line-height: 18px;
  color: #790018;
  font-weight:bold;
}

/* line 771, ../sass/_normalize.scss */
.view-share {
  display: table-cell;
  vertical-align: middle;
}

/* line 778, ../sass/_normalize.scss */
.view-count,
.view-date,
.view-writer,
.view-nid {
  color: #790018;
  margin: 0 10px 0 0;
  padding: 1px 0 1px 17px;
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: 1px center;
  display: inline-block;
  font-weight: bold;
}

/* line 787, ../sass/_normalize.scss */
.view-nid {
  float: right;
}

/* line 790, ../sass/_normalize.scss */
.view-clip img {
  width: 8px;
  height: 16px;
}

/* line 794, ../sass/_normalize.scss */
.view-count {
  background-size: 13px 11px;
}

/* line 797, ../sass/_normalize.scss */
.view-date {
  background-image: url('../images/time.png?1405733027');
}

/* line 798, ../sass/_normalize.scss */
.view-count {
  background-image: url('../images/hits.png?1405733027');
}

/* line 799, ../sass/_normalize.scss */
.view-writer {
  background-image: url('../images/name.png?1405733027');
}

/* line 800, ../sass/_normalize.scss */
.view-tag {
  text-align: center;
  display: inline-block;
  position: relative;
  padding: 0px 5px;
  /*color: #777;
  background: #e4e4e4;*/
}

/*.view-tag::before {
  content: "";
  position: absolute;
  top: 0px;
  right: -9px;
  width: 0px;
  height: 0px;
  border-color: transparent transparent transparent #e4e4e4;
  border-style: solid;
  border-width: 9px 0 9px 9px;
}*/
/* line 820, ../sass/_normalize.scss */
.view-tag::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -3px;
  float: left;
  width: 3px;
  height: 3px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background: #fff;
}

/* line 833, ../sass/_normalize.scss */
/*.view-bottom {
  margin-top: 3px;
}*/

/* line 836, ../sass/_normalize.scss */
.view-bottom {
  margin-top: 7px;
}

/* Apply */
/* line 840, ../sass/_normalize.scss */
.view-apply-title {
  clear: both;
  font-size: 13px;
  line-height: 19px;
  color: #666;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  min-height: 57px;
  -webkit-line-clamp: 3;
}

/* line 847, ../sass/_normalize.scss */
.view-apply-body {
  display: none;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/* News */
/* line 853, ../sass/_normalize.scss */
.view-image-news {
  width: 101px;
  height: 150px;
  overflow: hidden;
  float: left;
  margin-right: 10px;
  border: 1px solid #ccc;
}

/* line 861, ../sass/_normalize.scss */
.view-top-news {
  height: 130px;
}

/* line 864, ../sass/_normalize.scss */
.view-body-news {
  font-size: 13px;
  line-height: 19px;
  color: #666;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  max-height: 95px;
  margin-top: 4px;
}

/* Quick Link */
/* line 872, ../sass/_normalize.scss */
.quick-link-wrapper{
  position: relative;
    margin-bottom: 2px;
}
.quick-link-wrapper img {
    width: 100%;
}
.quick-link-wrapper_main {
  margin-top: 10px;
  width: 220px;

}
.quick-link-wrapper_main > ul{
  padding: 0 20px; 
  border: 1px solid rgba(123,0,24,.4);
  border-top: none;
  margin:0;
}
.quick-link-wrapper_main li{
  list-style:none;
  padding:7px 0;
  font-size: 14px; 
  font-weight: bold;
  border-bottom:1px solid rgba(123,0,24,.1);
}
.quick-link-wrapper_main li:last-of-type{border:0;}
.quick-link-wrapper_main li > a{color:#7b0018;}
.quick-link-wrapper_main li span{padding-left:8px;}

/* 17.03.21 메인화면 칼렌더의 볼드처리가 티가 안나서 그냥 글자 크기를 키움 , 그리고 패딩간격 줄임 */
/* #block-views-event-block-3 .padding-left{padding-left:37px;} */
#block-views-event-block-3 .padding-left{
	padding-left:26px;
	font-size: 17px !important; 
}

.main_side_munu{
	  text-align:center;
    background-color:#7b0018;
    color:#fff;
    padding:5px 0;
    margin:0;
}		
/* line 876, ../sass/_normalize.scss */
.quick-link-wrapper_main img {
  position:relative; top:5px;
}

/* line 879, ../sass/_normalize.scss */
.quick-link-title {
  background: rgba(10, 11, 7, 0.75);
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  color: white;
  text-align: center;
  position: absolute;
  bottom: 0px;
  display: block;
  word-break: keep-all;
}

/* Banner */

.banner-wrapper > .banner{overflow:hidden;}
.banner-wrapper > .banner > .banner-item{
  margin-left:13%;
  margin-bottom: 15px;
  width: 30%;
  float:left;
  text-align:center;
  font-weight:bold;
}
.banner-wrapper > .banner > .banner-item img{
  width:50px;
  height:50px;
  display:block;
  margin-left: 2px;
}
.banner-wrapper > .banner > .banner-item p{margin-bottom:5px;}
.banner-wrapper > .banner > .banner-item .last-banner{margin:0;}
/*.banner {
  overflow:hidden;
}

.banner > .banner-item {
  width:50%;
  float:left;
  text-align:center;
}
.banner > .banner-item img{
  width:50px;
  height:50px;
  display:block;
}
.banner > .banner-item p{
  font-weight:bold;
}*/

/* Reference */
/* line 893, ../sass/_normalize.scss */
.view-file {
  margin-top: 10px;
  height: 20px;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/* line 899, ../sass/_normalize.scss */
.view-file a {
  font-size: 12px;
  line-height: 20px;
  color: #777777;
  padding: 3px;
  background: #e4e4e4;
}

/* Hilight */
/* line 905, ../sass/_normalize.scss */
.view-hilight-title {
  font-size: 19px;
  line-height: 27px;
  color: #444444;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-family: "Nanum Gothic Bold", Verdana;
  -webkit-line-clamp: 2;
  max-height: 54px;
  margin: 5px 0px 15px 0;
}

/* line 913, ../sass/_normalize.scss */
.view-hilight-body {
  font-size: 15px;
  line-height: 21px;
  color: #666666;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  height: 210px;
  margin-bottom: 5px;
}

/* Advert */
/* line 922, ../sass/_normalize.scss */
.view-advert-btn {
  font-family: "Nanum Gothic Bold", Verdana;
  border: 1px solid #d7abb4;
  text-align: center;
  display: inline-block;
  padding: 0 20px;
}

/* Fix */
/* line 930, ../sass/_normalize.scss */
.view-fix-top {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 0;
  /*from 3px; */
  min-height: 102px;
}

/* line 935, ../sass/_normalize.scss */
.view-fix-title {
  font-size: 15px;
  line-height: 21px;
  color: #444;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-family: "Nanum Gothic Bold", Verdana;
  -webkit-line-clamp: 2;
  max-height: 42px;
}

/* line 942, ../sass/_normalize.scss */
.view-faculty-title {
  font-size: 19px;
  line-height: 22px;
  color: #444444;
  font-family: "Nanum Gothic Bold", Verdana;
}

/* line 946, ../sass/_normalize.scss */
.view-fix-body {
  font-size: 13px;
  line-height: 19px;
  color: #888888;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 5px;
}

/* line 951, ../sass/_normalize.scss */
.view-fix-body ul {
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 0.2em;
  -webkit-margin-after: 0.7em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 25px;
  margin: 0;
}

/* line 961, ../sass/_normalize.scss */
.view-fix-body a {
  text-decoration: none;
  color: #790018;
}

/* line 967, ../sass/_normalize.scss */
.view-fix-image,
.view-faculty-image,
.view-faculty-h-image {
  margin-right: 10px;
  float: left;
  z-index: 10;
}

/* line 973, ../sass/_normalize.scss */
.view-faculty-image img {
  height: 100px;
  border: 1px solid #cccccc;
}

/* line 977, ../sass/_normalize.scss */
.view-faculty-h-image img {
  border: 1px solid #cccccc;
}

/* line 980, ../sass/_normalize.scss */
.view-fix-pane {
  margin-top: 20px;
}

/* line 983, ../sass/_normalize.scss */
.view-prefix {
  font-size: 13px;
  line-height: 19px;
  color: white;
  font-family: "Nanum Gothic Bold", Verdana;
  background-color: #790018;
  padding: 2px 5px;
}

/* FAQ */
/* line 990, ../sass/_normalize.scss */
.faq-column:not(:first-child) .view-faq-wrapper {
  padding-top: 10px;
}

/* line 993, ../sass/_normalize.scss */
.faq-column:last-child .view-faq-wrapper {
  /* padding-bottom: 15px; */
}

/* line 997, ../sass/_normalize.scss */
.view-faq-title,
.view-faq-body {
  padding: 10px 60px 10px 75px;
}
.view-faq-body {
  font-size: 15px;
  line-height: 23px;
  color: #666;
  background: url('../images/a.png?1405733027') no-repeat 30px 10px;
  background-size: 30px;
}

/* line 1001, ../sass/_normalize.scss */
.faq-column:first-child .view-faq-title,
.faq-column:first-child .view-acco-title {
  margin-top: 10px;
}

/* line 1005, ../sass/_normalize.scss */
.faq-column:last-child .view-faq-title,
.faq-column:last-child .view-acco-title {
  margin-bottom: 10px;
}

/* line 1008, ../sass/_normalize.scss */
.view-faq-title {
  font-size: 15px;
  line-height: 21px;
  color: #444;
  background: url('../images/q.png?1405733027'), url('../images/plus-20-20-crimson.png?1405733027');
  background-color: #eee;
  background-repeat: no-repeat, no-repeat;
  background-position: 30px, right 30px center;
  border-top: 1px solid #ccc;
  position: relative;
  cursor: pointer;
}


(max-width: 896px) and (min-width: 545px)
/* line 1018, ../sass/_normalize.scss */
.view-faq-body {
  font-size: 15px;
  line-height: 23px;
  color: #666;
  background: url('../images/a.png?1405733027') no-repeat 30px 10px;
  background-size: 30px;
}


/* line 1023, ../sass/_normalize.scss */
.view-faq-date {
  padding: 0 0 0 75px;
  font-size: 15px;
  line-height: 23px;
  color: #666;
}

/* Subject */
/* line 1028, ../sass/_normalize.scss */
.view-subject-wrapper {
  padding: 15px 0 0 0;
}

/* line 1031, ../sass/_normalize.scss */
.view-subject-title {
  font-size: 15px;
  line-height: 21px;
  color: #444;
  background: url('../images/plus-20-20-crimson.png?1405733027');
  background-color: #eee;
  background-repeat: no-repeat;
  background-position: right 10px center;
  border-top: 1px solid #ccc;
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 100%;
}

/* line 1043, ../sass/_normalize.scss */
.view-subject-body {
  font-size: 15px;
  line-height: 23px;
  color: #666;
  padding: 0 10px;
}

/* line 1048, ../sass/_normalize.scss */
.view-subject-li {
  float: left;
  margin: 5px;
  width: 10%;
  text-align: center;
}

/* line 1054, ../sass/_normalize.scss */
.view-subject-li:last-child {
  width: 50%;
  text-align: left;
}

/* Accordion */
/* line 1059, ../sass/_normalize.scss */
.view-acco-wrapper {
  padding: 15px 0 0 0;
}

/* line 1063, ../sass/_normalize.scss */
.view-acco-title,
.view-acco-body {
  padding: 10px 20px;
}

/* line 1066, ../sass/_normalize.scss */
.view-acco-title {
  font-size: 15px;
  line-height: 21px;
  color: #444;
  background: url('../images/plus-20-20-crimson.png?1405733027');
  background-color: #f3eee6;
  background-repeat: no-repeat;
  background-position: right 30px center;
  border-top: 1px solid #ccc;
  font-family: "Nanum Gothic Bold", Verdana;
  position: relative;
  cursor: pointer;
  border-left: 5px solid #790018;
}

/* line 1078, ../sass/_normalize.scss */
.view-acco-body {
  font-size: 15px;
  line-height: 23px;
  color: #666;
}

/* Gallery */
/* line 1083, ../sass/_normalize.scss */
.view-gallery-wrapper {
  width: 100%;
  position: relative;
}

/* line 1087, ../sass/_normalize.scss */
.view-gallery-title, .view-gallery-h-title {
  background: rgba(0, 0, 0, 0.75);
  width: 100%;
  font-size: 13px;
  line-height: 21px;
  color: white;
  max-height: 42px;
  text-align: center;
  position: absolute;
  bottom: 0px;
  display: block;
  word-break: keep-all;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding: 5px 0;
}
/* line 1090, ../sass/_normalize.scss */
.view-gallery-title a, .view-gallery-h-title a {
  color: #fff;
}

/* line 1102, ../sass/_normalize.scss */
.view-gallery-h-title {
  font-size: 15px;
  line-height: 23px;
  color: white;
  max-height: 46px;
  padding: 10px 0;
}

/**  
 *  WHY KUBS 
 */
/* line 1113, ../sass/_normalize.scss */
#mainad-wrapper {
  text-align: center;
}

/* line 1116, ../sass/_normalize.scss */
.mainad-title {
  font-size: 24px;
  line-height: 24px;
  color: white;
  padding: 40px 0;
}

/* line 1120, ../sass/_normalize.scss */
.mainad-title-text {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 15px;
  display: inline;
}

/* line 1125, ../sass/_normalize.scss */
.mainad-body {
  font-size: 17px;
  line-height: 25px;
  color: white;
  margin: 0 0 40px 0;
}

/* line 1129, ../sass/_normalize.scss */
.mainad-button {
  font-size: 12px;
  line-height: 12px;
  color: white;
  text-align: center;
  padding: 0 0 45px 0;
}

/* line 1134, ../sass/_normalize.scss */
.mainad-button a {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 6.5px 45px;
  position: relative;
}

/* Event */
/* line 1142, ../sass/_normalize.scss */
.event-calendar {
  float: left;
  width: 60px;
  height: 82px;
  margin-right: 10px;
}

/* line 1148, ../sass/_normalize.scss */
.event-calendar span {
  display: block;
  text-align: center;
  background-color: #790018;
  font-size: 14px;
  line-height: 27px;
  color: white;
}

/* line 1154, ../sass/_normalize.scss */
.event-calendar .day {
  background-color: #f8f5f0;
  height: 37px;
  font-size: 17px;
  line-height: 37px;
  color: #3c3c3c;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-family: "Nanum Gothic Bold", Verdana;
}

/* Faculty */
/* line 1165, ../sass/_normalize.scss */
.faculty-list {
  margin-bottom: 8px;
  padding-left: 5px;
  border-left: 2px solid #e7dece;
}

/* line 1170, ../sass/_normalize.scss */
.faculty-list-title {
  overflow: hidden;
  line-height: 1.5em;
  font-size: 15px;
}

/* line 1176, ../sass/_normalize.scss */
.faculty-list-body,
.faculty-list-desc {
  display: block;
  font-size: 12px;
  line-height: 1.5em;
  color: #777777;
}

/* line 1186, ../sass/_normalize.scss */
.view-body p,
.view-hilight-body p,
.view-only-body p,
.view-apply-body p,
.mainad-body p,
.view-fix-body p,
.view-faq-body p {
  margin: 0px;
}

/* line 1189, ../sass/_normalize.scss */
.name {
  margin-right: 10px;
  color: #888;
}

/* line 1194, ../sass/_normalize.scss */
.agreement ol {
  padding-left: 40px;
}
/* line 1195, ../sass/_normalize.scss */
.agreement .field-content {
  line-height: 28px;
}

/* line 1201, ../sass/_normalize.scss */
.view-faculty-homepage .views-responsive-grid {
  font-size: 15px;
  line-height: 23px;
  color: #666666;
}

/**
 * Comment 
 */
/* line 1208, ../sass/_normalize.scss */
.comment-author {
  font-size: 13px;
  line-height: 27px;
  color: #444444;
  background-color: #eee;
  border-top: 1px solid #ccc;
  font-family: "Nanum Gothic Bold", Verdana;
  position: relative;
  cursor: pointer;
  padding: 0 10px;
}

/* line 1217, ../sass/_normalize.scss */
.comment-content {
  font-size: 15px;
  line-height: 23px;
  color: #666;
  padding: 10px;
}

/**
 * Titles.
 */
/* line 1229, ../sass/_normalize.scss */
.page__title,
.node__title,
.comments__title,
.comments__form-title,
.comment__title {
  /* Comment title. */
  margin: 0;
}

/* line 1232, ../sass/_normalize.scss */
.node-title {
  width: 60%;
}

/* line 1237, ../sass/_normalize.scss */
.node-header,
.page__title {
  font-size: 21px;
  line-height: 29px;
  color: #222222;
  padding: 26px 20px 16px 20px;
  font-family: "Nanum Gothic Bold", Verdana;
  background: #fff;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-bottom: 2px solid #790018;
  border-right: 1px solid #ddd;
  position: relative;
}

/* line 1249, ../sass/_normalize.scss */
h1 {
  margin: 0px;
  font-size: 20px;
  line-height: 48px;
  color: white;
}
/* line 1252, ../sass/_normalize.scss */
h1 a {
  color: #fff;
}

/* BreadCrumbs */
/* line 1255, ../sass/_normalize.scss */
.breadcrumb {
  font-size: 13px;
  line-height: 32px;
  color: #aaaaaa;
}
/* line 1256, ../sass/_normalize.scss */
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 1260, ../sass/_normalize.scss */
.breadcrumb li {
  display: inline;
  list-style-type: none;
  margin: 0 !important;
  padding: 0 !important;
}
/* line 1266, ../sass/_normalize.scss */
.breadcrumb a {
  color: #aaa;
}

/* line 1268, ../sass/_normalize.scss */
.breadcrumb li:last-child {
  font-family: "Nanum Gothic Bold", Verdana;
}

/* Block */
/* line 1273, ../sass/_normalize.scss */
.front .blocktitle a {
  color: #790018;
}

/* line 1276, ../sass/_normalize.scss */
.pane-title,
.block-title {
  font-family: "Nanum Gothic Bold", Verdana;
  font-size: 19px;
  line-height: 19px;
  color: #790018;
}

.title-left{
  width: 50%;
  display: inline-block;
}
.title-right{
  width: 48%;
  display: inline-block;
  text-align: right;
}

/* Load More */
/* line 1284, ../sass/_normalize.scss */
.pager-load-more a,
.readmore-link,
.readless-link {
  font-size: 15px;
  line-height: 20px;
  color: #9c2e43;
  font-family: "Nanum Gothic Bold", Verdana;
}

/* line 1289, ../sass/_normalize.scss */
.readmore-link,
.readless-link {
  position: absolute;
  right: 15px;
  bottom: 5px;
}

/* line 1297, ../sass/_normalize.scss */
ul.pager li.pager-first a,
ul.pager li.pager-previous a,
ul.pager li.pager-next a,
ul.pager li.pager-last a {
  display: inline-block;
  padding: 6px 6px 7px 10px;
}

/* line 1301, ../sass/_normalize.scss */
ul.pager li.pager-next a {
  background: url('../images/pager_right.png?1407650100') 0 0 no-repeat;
  background-size: 16px;
}

/* line 1305, ../sass/_normalize.scss */
ul.pager li.pager-first a {
  background: url('../images/pager_first.png?1407649844') 0 0 no-repeat;
  background-size: 16px;
}

/* line 1309, ../sass/_normalize.scss */
ul.pager li.pager-last a {
  background: url('../images/pager_last.png?1407649845') 0 0 no-repeat;
  background-size: 16px;
}

/* line 1313, ../sass/_normalize.scss */
ul.pager li.pager-previous a {
  background: url('../images/pager_left.png?1407650039') 0 0 no-repeat;
  background-size: 16px;
}

/* Bottom */
/* line 1319, ../sass/_normalize.scss */
#bottom .block-title {
  display: inline;
  font-family: "Nanum Gothic Bold", Verdana;
  font-size: 16px;
  line-height: 16px;
  color: #aaaaaa;
}

/* line 1324, ../sass/_normalize.scss */
#bottom .block {
  font-size: 12px;
  line-height: 20px;
}

/* line 1328, ../sass/_normalize.scss */
#bottom .block p {
  margin: 0;
}

/* line 1332, ../sass/_normalize.scss */
#bottom,
#bottom a {
  color: #888888;
}

/* line 1335, ../sass/_normalize.scss */
#bottom a:hover {
  color: #fff;
}

/* line 1338, ../sass/_normalize.scss */
#bottom ul.menu li {
  margin: 6px 0;
}

/* line 1341, ../sass/_normalize.scss */
#bottom ul.menu li a {
  font-size: 15px;
  line-height: 17px;
}

/* line 1345, ../sass/_normalize.scss */
#bottom #block-system-navigation ul.menu li a {
  font-size: 12px;
}

/* footer */
/* line 1351, ../sass/_normalize.scss */
#footer {
  font-size: 12px;
  line-height: 24px;
  color: #888888;
  font-family: "Nanum Gothic Bold", Verdana;
}

/* line 1355, ../sass/_normalize.scss */
#footer a {
  font-size: 12px;
  line-height: 20px;
  color: #7b0018;
  font-family: "Nanum Gothic Bold", Verdana;
  font-weight:bold;
}

/* line 1360, ../sass/_normalize.scss */
#footer a:hover {
  opacity: 0.7;
}

/* line 1363, ../sass/_normalize.scss */
.sidebar .block .menu-block-wrapper {
  font-family: "Nanum Gothic Bold", Verdana;
}

/*
 * HTML 
 */
/* line 1371, ../sass/_normalize.scss */
.table {
  word-break: break-all;
  border: 1px solid #ddd;
}
/* line 1374, ../sass/_normalize.scss */
.table td {
  border: 1px solid #ddd !important;
  padding: 5px 10px;
  border-collapse: separate !important;
  border-spacing: 0px  !important;
}
/* line 1381, ../sass/_normalize.scss */
.table th {
  font-size: 15px;
  line-height: 21px;
  color: #444;
  background: #f4f4f4;
  font-family: "Nanum Gothic Bold", Verdana;
  font-weight: normal;
  border: 1px solid #ddd;
}

/* line 1389, ../sass/_normalize.scss */
.circle {
  background: #b05869;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  text-align: center;
  color: #fff;
  display: table-cell;
  vertical-align: middle;
}

/* line 1399, ../sass/_normalize.scss */
.arrow {
  position: relative;
  bottom: 0px;
  border-bottom: 2px solid #aaa;
  width: 60px;
}

/* line 1405, ../sass/_normalize.scss */
.arrow::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0%;
  width: 0px;
  height: 0px;
  border-color: transparent #aaa transparent transparent;
  border-style: solid;
  border-width: 10px 10px 10px 0px;
}

/* line 1416, ../sass/_normalize.scss */
.arrow::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 85%;
  width: 0px;
  height: 0px;
  border-color: transparent transparent transparent #aaa;
  border-style: solid;
  border-width: 10px 0 10px 10px;
}

/* line 1427, ../sass/_normalize.scss */
.title2 {
  font-size: 16px;
  line-height: 22px;
  color: #444444;
  margin: 20px 0 20px 0;
  display: inline-block;
  font-family: "Nanum Gothic Bold", Verdana;
}

/* line 1434, ../sass/_normalize.scss */
.title3:before {
  content: "-";
  color: #8b132b;
  font-size: 18px;
  font-family: "Nanum Gothic Bold", Verdana;
  padding-right: 5px;
}

/* line 1441, ../sass/_normalize.scss */
.body-text {
  margin-bottom: 10px;
  padding: 0 15px;
  width: 80%;
}

/* line 1446, ../sass/_normalize.scss */
.sub-body-text {
  padding: 0 15px 0 20px;
  margin-bottom: 10px;
}

/* line 1450, ../sass/_normalize.scss */
.body-text li {
  list-style-type: square;
  margin-bottom: 4px;
}

/* line 1454, ../sass/_normalize.scss */
.bold {
  font-family: "Nanum Gothic Bold", Verdana;
}

/* line 1458, ../sass/_normalize.scss */
.sub-phrase {
  text-align: center;
  font-size: 13px;
  line-height: 21px;
  color: #222222;
  margin-top: 20px;
}

/* line 1463, ../sass/_normalize.scss */
.button1 {
  font-size: 15px;
  line-height: 34px;
  color: #9c2e43;
  padding: 0 20px;
  margin-right: 5px;
  border: 1px solid #9c2e43;
  display: inline-block;
}
/* line 1465, ../sass/_normalize.scss */
.button1 a {
  color: #9c2e43;
}

/* line 1471, ../sass/_normalize.scss */
.button2 {
  font-size: 13px;
  line-height: 21px;
  color: white;
  padding: 0px 10px;
  background: #9c2e43;
  display: inline-block;
}
/* line 1473, ../sass/_normalize.scss */
.button2 a {
  font-size: 13px;
  line-height: 21px;
  color: white;
}

/* line 1479, ../sass/_normalize.scss */
.process {
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}

/* line 1485, ../sass/_normalize.scss */
.process li {
  background: #ece5d8;
  color: #790018;
  list-style-type: none;
  float: left;
  padding: 10px;
  border-radius: 30px;
  position: relative;
  margin-right: 30px;
  text-align: center;
  display: table;
}
/* line 1496, ../sass/_normalize.scss */
.process li span {
  display: table-cell;
  vertical-align: middle;
}
/* line 1500, ../sass/_normalize.scss */
.process li .sub-text {
  font-size: 12px;
  line-height: 16px;
  color: #666666;
}

/*process {
  background: #ece5d8;
  color: $plum_color;
  list-style-type:none;
  float: left;
  padding: 10px;
  border-radius: 30px;
  position:relative;
  margin-right: 30px;
  text-align: center;
  display: table;
}*/
/* line 1517, ../sass/_normalize.scss */
.process li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 35%;
  right: -20px;
  width: 0px;
  height: 0px;
  border-color: transparent transparent transparent #aaa;
  border-style: solid;
  border-width: 10px 0 10px 10px;
}

/* line 1529, ../sass/_normalize.scss */
.vision-col-left,
.vision-col-right {
  width: 50%;
  float: left;
  margin-top: 20px;
}

/* line 1534, ../sass/_normalize.scss */
.vision-row {
  width: 100%;
  display: inline-block;
}

/* line 1539, ../sass/_normalize.scss */
.vision-img1 {
  float: left;
  width: 140px;
  height: 140px;
  margin-right: 20px;
}

/* line 1545, ../sass/_normalize.scss */
.vision-cell1 {
  display: table-cell;
  vertical-align: middle;
  height: 140px;
}

/* line 1551, ../sass/_normalize.scss */
.vision-img2 {
  float: left;
  width: 80px;
  height: 80px;
  margin-right: 20px;
}

/* line 1556, ../sass/_normalize.scss */
.vision-cell2 {
  display: table-cell;
  vertical-align: middle;
  height: 80px;
}

/* line 1561, ../sass/_normalize.scss */
.vision-sub-image {
  width: 60%;
  vertical-align: center;
}

/* line 1565, ../sass/_normalize.scss */
.vision-top-image {
  width: 60%;
}

/* line 1568, ../sass/_normalize.scss */
.vision-wrapper {
  text-align: center;
}

/* line 1571, ../sass/_normalize.scss */
.vision-text-wrapper {
  margin: 0 auto;
}

/* line 1574, ../sass/_normalize.scss */
.vision-title {
  font-size: 40px;
  line-height: 40px;
  color: black;
  font-family: "Nanum Gothic Bold", Verdana;
}

/* line 1578, ../sass/_normalize.scss */
.vision-body {
  margin-top: 30px;
  font-size: 15px;
  line-height: 24px;
  color: black;
  font-family: "Nanum Gothic Bold", Verdana;
}

/* line 1583, ../sass/_normalize.scss */
#dean {
  width: 100%;
  display: inline-block;
}

/* line 1587, ../sass/_normalize.scss */
.dean-left {
  width: 20%;
  margin-right: 20px;
  float: left;
}

/* line 1592, ../sass/_normalize.scss */
.dean-right {
  width: 76%;
  float: left;
}

/* line 1596, ../sass/_normalize.scss */
.view-history {
  margin: 15px 0 0 10px;
}

/* line 1599, ../sass/_normalize.scss */
.view-history h3 {
  float: left;
  display: inline-block;
  margin: 3px 0 0 0;
}

/* line 1604, ../sass/_normalize.scss */
.history-item {
  margin: 0 5px 5px 10px;
}

/* line 1607, ../sass/_normalize.scss */
.view-history table tr:last-child .history-item {
  margin-bottom: 40px;
}

/* line 1610, ../sass/_normalize.scss */
.history-month {
  float: left;
  display: inline-block;
  font-family: "Nanum Gothic Bold", Verdana;
  color: #790018;
  width: 40px;
  text-align: right;
}

/* line 1618, ../sass/_normalize.scss */
.history-body {
  margin-left: 90px;
}

/* Field */
/* line 1623, ../sass/_normalize.scss */
.field-label {
  font-family: "Nanum Gothic Bold", Verdana;
}

/* line 1626, ../sass/_normalize.scss */
.field-type-serial {
  display: none;
}

/* line 1630, ../sass/_normalize.scss */
.node-event .field-item {
  margin-bottom: 5px;
}
/* line 1633, ../sass/_normalize.scss */
.node-event .field-label {
  width: 120px;
}
/* line 1637, ../sass/_normalize.scss */
.node-event .field-label:before {
  content: '- ';
  color: #790018;
  margin-left: 2px;
  font-weight: bold;
  font-size: 20px;
}

/* line 1646, ../sass/_normalize.scss */
.node .field-label {
  margin-bottom: 5px;
}

/* line 1649, ../sass/_normalize.scss */
.node .field-label:before {
  content: '- ';
  color: #790018;
  margin-left: 2px;
  font-weight: bold;
  font-size: 20px;
}

/* line 1656, ../sass/_normalize.scss */
.node-body .field-items {
  margin-top: 2px;
}

/* line 1661, ../sass/_normalize.scss */
.node-body a,
.pane-node-body a {
  color: #790018;
}

/* line 1663, ../sass/_normalize.scss */
.node-webform .node-header {
  display: none;
}

/* Search */
/* line 1669, ../sass/_normalize.scss */
.page-search .title a {
  font-size: 15px;
  line-height: 21px;
  color: #790018;
}
/* line 1672, ../sass/_normalize.scss */
.page-search .search-results li {
  border-bottom: 1px solid #ddd;
}
/* line 1675, ../sass/_normalize.scss */
.page-search .search-results li:last-child {
  border-bottom: none;
}
/* line 1678, ../sass/_normalize.scss */
.page-search .search-snippet {
  font-size: 13px;
  line-height: 21px;
  color: #666666;
}
/* line 1681, ../sass/_normalize.scss */
.page-search .search-snippet strong {
  color: #790018;
}
/* line 1684, ../sass/_normalize.scss */
.page-search #edit-keys {
  margin-left: 10px;
  margin-right: 5px;
  height: 35px;
  padding-left: 10px;
}

/* line 1694, ../sass/_normalize.scss */
.page-nopermission #content,
.page-search #content,
.page-comment #content {
  background: #fff;
  padding: 20px;
  margin-top: 20px;
}

    /* 17.04.16 신규 시작 651px ~1740px , 650이하는 미디어쿼리에서 제어 */
	#footer-col-kubs-1 {
	  float: left;
	  width: 19%; /* 31* */
	}
	#footer-col-kubs-1 > #footer-img img {
		margin-left:5%
	}
	#footer-col-kubs-1 > #footer-img .img1 {
		width: 81%;
		border-right: 1px solid; 
		padding-right: 13px; 
	}

	#footer-col-kubs-2 {
	  float: left;
	  width: 46%;  /** 69% */
	  margin-top: -23px;
	}
	#footer-col-kubs-2 > #footer-img img {
		margin-left:5%
	}
	#footer-col-kubs-2 a{
	  display: inline-block;
	  margin-top: 26px;
	}
	#footer-col-kubs-2 .require-margin-top{
	  margin-top: -2%;
	}

	#footer-col-kubs-3 {
	  float: left; 
	  width: 31%; /** 83% */
	}
	#footer-col-kubs-3 > #footer-img img {
	  margin-left:4%
	}

	#footer-col-kubs-3 > #footer-img > a > .footer-col-kubs-3-img-1 {
	  margin-top: 14px;	
	  width:22%;
	}

	#footer-col-kubs-3 > #footer-img > a > .footer-col-kubs-3-img-2  {
	  width:19%;
	}

	#footer-col-kubs-3 > #footer-img > a > .footer-col-kubs-3-img-3  {
	  width:30%;
	  margin-top:13px;
	}
	
	#footer-col-kubs-3 > #footer-img > a > .footer-col-kubs-3-img-4  {
	  width:15%;
	}
	/* 17.04.16 신규 끝*/

/*
 * 896px ~ 1152px
 */
@media  (min-width: 896px) and (max-width: 1740px) {
  .region-sns{display:none;}
  #inner > .region-content-1-3 {
    float: left;
   	display:block; /*17.03.11 검수를 위해서 임시로 해당 사이즈일때 Quick Link 숨김 , 현재 화면이 펼쳐지지 않고 뭉쳐져 있음  */
    width: 96.5%;
    margin-left: 0%;
    margin-right: -100%;
    padding-left:20px;
    clear: left;
  }
  #inner > .region-content-1-3  .quick-link-wrapper_main {
    width:100%;
    border: 1px solid rgba(123,0,24,.4);
    border-top: none; overflow: hidden;
  }
  #inner .quick-link-wrapper_main .quick-row{
    width:11.1111%;
    float:left;
    padding-left:0;
    border:0;
    text-align: center;
  } 

  #inner .quick-link-wrapper_main .quick-row span {
    padding:0; 
    font-size:10px;
    width: 100%;
    text-align: center;
  }
  #inner .quick-link-wrapper_main img {
    /*width: 100%;*/
    display: block; margin-left:41%;
  }

  /* 17.03.11 왼쪽에 위치한 칼렌더 블록을 해당사이즈일 때 숨김 */
  #block-views-event-block-3{ 
/*	display: none;*/
  }
  	
	#inner  #block-views-event-block-3 .quick-link-wrapper_main .quick-row	{
	 	width: 22.5%;
	 }
	#inner  #block-views-event-block-3 .quick-link-wrapper_main .quick-row:first-child{
		width:10%;
		margin-top:10px;
	}	
	#inner  #block-views-event-block-3 .quick-link-wrapper_main .quick-row:last-child{
		display: block;
		width: 100%;
	    border-top: 1px solid rgba(123,0,24,.1);
	}
	#inner  #block-views-event-block-3 .quick-link-wrapper_main .quick-row:last-child span{font-size: 19px;}

	
}


@media all and (min-width: 896px) and (max-width: 1152px) {
  /* line 1704, ../sass/_normalize.scss */
  h1 {
    font-size: 25px;
    line-height: 40px;
    color: white;
  }

  /* Block */
  /* line 1708, ../sass/_normalize.scss */
  .front .block-title {
    font-size: 15px;
    line-height: 15px;
    color: #790018;
    margin-top: 10px !important;
  }

  /* View */
  /* exposed */
  /* line 1714, ../sass/_normalize.scss */
  .views-exposed-form {
    /* margin-top: 5px;*/
  }

  /* line 1718, ../sass/_normalize.scss */
  .view-wrapper,
  .view-fix-wrapper {
    padding: 15px 0;
  }

  /* line 1721, ../sass/_normalize.scss */
  .view-top, .view-file-top {
    height: 59px;
  }

  /* line 1725, ../sass/_normalize.scss */
  .view-title,
  .view-fix-title {
    font-size: 15px;
    line-height: 18px;
    color: #222222;
    margin-bottom: 4px;
    max-height: 40px;
    -webkit-line-clamp: 2;
  }

  /* line 1731, ../sass/_normalize.scss */
  .view-body {
    font-size: 13px;
    line-height: 17px;
    color: #666666;
    max-height: 34px;
    margin-top: 0px;
    -webkit-line-clamp: 2;
  }

  /* line 1737, ../sass/_normalize.scss */
  .view-only-body {
    font-size: 13px;
    line-height: 17px;
    color: #666666;
    height: 68px;
    margin-top: 3px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  /* line 1744, ../sass/_normalize.scss */
  .view-fix-body {
    font-size: 12px;
    line-height: 16px;
    color: #888888;
  }

  /* Apply */
  /* line 1748, ../sass/_normalize.scss */
  .view-apply-top {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin: 3px 0;
    height: 77px;
  }

  /* line 1753, ../sass/_normalize.scss */
  .view-apply-title {
    font-size: 15px;
    line-height: 18px;
    color: #222222;
    margin-bottom: 5px;
    min-height: 18px;
    max-height: 36px;
    -webkit-line-clamp: 2;
    font-family: "Nanum Gothic Bold", Verdana;
  }

  /* line 1761, ../sass/_normalize.scss */
  .view-apply-body {
    font-size: 13px;
    line-height: 17px;
    color: #666666;
    max-height: 56px;
    margin-top: 4px;
    -webkit-line-clamp: 3;
    display: block;
  }

  /* View-News */
  /* line 1769, ../sass/_normalize.scss */
  .view-top-news {
    height: 150px;
  }

  /* line 1772, ../sass/_normalize.scss */
  .view-body-news {
    font-size: 13px;
    line-height: 17px;
    color: #666666;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    max-height: 136px;
    margin-top: 4px;
  }

  /* Event */
  /* WHY KUBS */
  /* line 1782, ../sass/_normalize.scss */
  .mainad-title {
    font-size: 26px;
    padding: 37px 0;
  }

  /* line 1786, ../sass/_normalize.scss */
  .mainad-body {
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* line 1790, ../sass/_normalize.scss */
  .mainad-button {
    padding: 0 0 46px 0;
  }

  /* Quick Link */
  /* line 1795, ../sass/_normalize.scss */
  .quick-link-wrapper_main {
    width:100%;
  }
  .quick-link-wrapper_main img {
    /*width: 100%;*/
    display: block;
    margin-left:40%
  }
  /*.quick-link-wrapper li:nth-of-type(1) img { margin-left: 13%;}
  .quick-link-wrapper li:nth-of-type(2) img { margin-left: 25%;}
  .quick-link-wrapper li:nth-of-type(3) img { margin-left: 13%;}
  .quick-link-wrapper li:nth-of-type(4) img{ margin-left: 16%;}
  .quick-link-wrapper li:nth-of-type(5) img { margin-left: 20%;}
  .quick-link-wrapper li:nth-of-type(6) img { margin-left: 30%;}
  .quick-link-wrapper li:nth-of-type(7) img { margin-left: 21%;}
  .quick-link-wrapper li:nth-of-type(8) img { margin-left: 23%;}
  .quick-link-wrapper li:nth-of-type(9) img{ margin-left: 30%;}*/
  /* line 1798, ../sass/_normalize.scss */
  .quick-link-title {
    display: table;
    vertical-align: middle;
    height: 35px;
    position: inherit;
  }

  /* line 1804, ../sass/_normalize.scss */
  .quick-link-title span {
    display: table-cell;
    vertical-align: middle;
  }

  /* Accordion */
  /* line 1809, ../sass/_normalize.scss */
  .view-acco-title {
    background-position: right 10px center;
    padding: 10px 35px 10px 10px;
  }

  /* line 1813, ../sass/_normalize.scss */
  .view-acco-body {
    padding: 10px;
  }

  /* Bottom */
  /* line 1818, ../sass/_normalize.scss */
  #bottom .block-title {
    font-size: 15px;
  }

  /* line 1821, ../sass/_normalize.scss */
  #bottom ul.menu li a {
    font-size: 12px;
  }

  /* Hilight */
  /* line 1825, ../sass/_normalize.scss */
  .view-hilight-body {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    height: 210px;
  }

  /*HTML*/
  /* line 1833, ../sass/_normalize.scss */
  .body-text {
    width: 90% !important;
    padding: 0 10px !important;
  }

  /* line 1837, ../sass/_normalize.scss */
  .process li:nth-child(2n+1) {
    margin-bottom: 10px;
  }

  /* line 1840, ../sass/_normalize.scss */
  .image {
    width: 70% !important;
  }

  
}
/*
 * 545px ~ 897px
 */
@media all and (min-width: 651px) and (max-width: 896px) {
  /* line 1849, ../sass/_normalize.scss */
  h1 {
    font-size: 25px;
    line-height: 40px;
    color: white;
  }

  /* line 1852, ../sass/_normalize.scss */
  .node-info {
    display: block !important;
  }

  /* Block */
  /* line 1856, ../sass/_normalize.scss */
  .front .block-title {
    font-size: 15px;
    line-height: 15px;
    color: #790018;
    margin-top: 10px !important;
  }

  /* View */
  /* exposed */
  /* line 1862, ../sass/_normalize.scss */
  .views-exposed-form {
    /*margin-top: 5px;*/
  }

  /* line 1866, ../sass/_normalize.scss */
  .view-wrapper,
  .view-fix-wrapper {
    padding: 15px 0;
  }

  /* line 1869, ../sass/_normalize.scss */
  .view-top, .view-file-top {
    height: 59px;
  }

  /* line 1873, ../sass/_normalize.scss */
  .view-title,
  .view-fix-title {
    font-size: 15px;
    line-height: 18px;
    color: #222222;
    margin-bottom: 4px;
    max-height: 40px;
    -webkit-line-clamp: 2;
  }

  /* line 1879, ../sass/_normalize.scss */
  .view-body {
    font-size: 13px;
    line-height: 17px;
    color: #666666;
    max-height: 34px;
    margin-top: 0px;
    -webkit-line-clamp: 2;
  }

  /* line 1885, ../sass/_normalize.scss */
  .view-only-body {
    font-size: 13px;
    line-height: 17px;
    color: #666666;
    height: 68px;
    margin-top: 3px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  /* line 1892, ../sass/_normalize.scss */
  .view-fix-body {
    font-size: 12px;
    line-height: 16px;
    color: #888888;
  }

  /* Apply */
  /* line 1896, ../sass/_normalize.scss */
  .view-apply-top {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin: 3px 0;
    height: 77px;
  }

  /* line 1901, ../sass/_normalize.scss */
  .view-apply-title {
    font-size: 15px;
    line-height: 18px;
    color: #222222;
    margin-bottom: 5px;
    min-height: 18px;
    max-height: 36px;
    -webkit-line-clamp: 2;
    font-family: "Nanum Gothic Bold", Verdana;
  }

  /* line 1909, ../sass/_normalize.scss */
  .view-apply-body {
    font-size: 13px;
    line-height: 17px;
    color: #666666;
    max-height: 56px;
    margin-top: 4px;
    -webkit-line-clamp: 3;
    display: block;
  }

  /* View-News */
  /* line 1917, ../sass/_normalize.scss */
  .view-top-news {
    height: 150px;
  }

  /* line 1920, ../sass/_normalize.scss */
  .view-body-news {
    font-size: 13px;
    line-height: 17px;
    color: #666666;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    max-height: 136px;
    margin-top: 4px;
  }

  /* Event */
  /* WHY KUBS */
  /* line 1930, ../sass/_normalize.scss */
  .mainad-title {
    font-size: 26px;
    padding: 37px 0;
  }

  /* line 1934, ../sass/_normalize.scss */
  .mainad-body {
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* line 1938, ../sass/_normalize.scss */
  .mainad-button {
    padding: 0 0 46px 0;
  }

  /* Quick Link */
  /* line 1943, ../sass/_normalize.scss */
  .quick-link-wrapper img {
    /*width: 100%;*/
  }

  /* line 1946, ../sass/_normalize.scss */
  .quick-link-title {
    display: table;
    vertical-align: middle;
    height: 35px;
    position: inherit;
  }

  /* line 1952, ../sass/_normalize.scss */
  .quick-link-title span {
    display: table-cell;
    vertical-align: middle;
  }

  /* Accordion */
  /* line 1957, ../sass/_normalize.scss */
  .view-acco-title {
    background-position: right 10px center;
    padding: 10px 35px 10px 10px;
  }

  /* line 1961, ../sass/_normalize.scss */
  .view-acco-body {
    padding: 10px;
  }

  /*HTML*/
  /* line 1965, ../sass/_normalize.scss */
  .history-image {
    display: none;
  }

  /* Bottom */
  /* line 1969, ../sass/_normalize.scss */
  #bottom .block-title {
    font-size: 15px;
  }

  /* line 1972, ../sass/_normalize.scss */
  #bottom ul.menu li a {
    font-size: 12px;
  }

  /* Hilight */
  /* line 1976, ../sass/_normalize.scss */
  .view-hilight-body {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    height: 166px;
  }

  /* line 1981, ../sass/_normalize.scss */
  .node-title {
    width: 57%;
  }

  /*HTML*/
  /* line 1985, ../sass/_normalize.scss */
  .body-text {
    width: 90% !important;
    padding: 0 10px !important;
  }

  /* line 1989, ../sass/_normalize.scss */
  .process li:nth-child(2n+1) {
    margin-bottom: 10px;
  }

  /* line 1992, ../sass/_normalize.scss */
  #history-text {
    width: 100% !important;
  }

  /* line 1995, ../sass/_normalize.scss */
  .image {
    width: 70% !important;
  }

  
}
/*
 * ~ 650
 */
@media all and (max-width: 650px) {
  
  .panel-pane {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
  }
  /* line 2003, ../sass/_normalize.scss */
  .node-event .field-label {
    width: 100%;
  }

  /* Block */
  /* line 2009, ../sass/_normalize.scss */
  .pane-title,
  .block-title {
    font-size: 15px;
    line-height: 15px;
    color: #790018;
  }

  /* line 2012, ../sass/_normalize.scss */
  .pane-title {
    margin: 5px 0;
  }

  /* Title*/
  /* line 2016, ../sass/_normalize.scss */
  .landing-menu-title {
    font-size: 20px;
    line-height: 70px;
    color: white;
  }

  /* line 2019, ../sass/_normalize.scss */
  h1 {
    font-size: 19px;
    line-height: 19px;
    color: white;
    margin-top: 10px;
  }

  /* line 2024, ../sass/_normalize.scss */
  .node-header,
  .page__title {
    font-size: 20px;
    line-height: 28px;
    color: black;
    padding: 10px 10px 10px 10px;
    font-family: "Nanum Gothic Bold", Verdana;
    border-top: none;
    border-right: none;
    border-left: none;
  }

  /* View */
  /* exposed */
  /* line 2034, ../sass/_normalize.scss */
  .views-exposed-form {
    margin-bottom: 8px;
  }
  /* line 2036, ../sass/_normalize.scss */
  .views-exposed-form .views-exposed-widget {
    padding: 5px;
  }
  /* line 2040, ../sass/_normalize.scss */
  .views-exposed-form .views-submit-button {
    position: absolute;
    bottom: 11px;
    right: 10px;
  }

  /* line 2047, ../sass/_normalize.scss */
  #edit-combine-wrapper {
    width: 70%;
  }
  /* line 2049, ../sass/_normalize.scss */
  #edit-combine-wrapper .views-widget {
    width: 70%;
  }

  /* line 2054, ../sass/_normalize.scss */
  .view-wrapper,
  .view-fix-wrapper {
    padding: 15px 0;
  }

  /* line 2057, ../sass/_normalize.scss */
  .view-bottom {
    display: none;
  }

  /* line 2061, ../sass/_normalize.scss */
  .view-top, .view-file-top,
  .view-whole-top {
    height: 70px;
  }

  /* line 2065, ../sass/_normalize.scss */
  .view-fix-image img,
  .view-image img {
    width: 100%;
  }

  /* line 2070, ../sass/_normalize.scss */
  .view-title,
  .view-fix-title {
    font-size: 15px;
    line-height: 18px;
    color: #222222;
    margin-bottom: 3px;
    max-height: 37px;
    -webkit-line-clamp: 2;
  }

  /* line 2079, ../sass/_normalize.scss */
  .view-body,
  .view-only-body,
  .view-fix-body,
  .view-apply-body {
    font-size: 13px;
    line-height: 16px;
    color: #666666;
  }

  /* line 2082, ../sass/_normalize.scss */
  .view-body {
    max-height: 48px;
    margin-top: 0px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  /* line 2088, ../sass/_normalize.scss */
  .view-only-body {
    height: 64px;
    margin-top: 0px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  /* line 2095, ../sass/_normalize.scss */
  .view-share {
    display: block;
    padding-top: 5px;
  }

  /* line 2102, ../sass/_normalize.scss */
  .view-count,
  .view-date,
  .view-writer {
    margin: 0 10px 0 0;
    padding: 1px 0 1px 17px;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: 0px 2px;
  }

  /* line 2109, ../sass/_normalize.scss */
  .view-count {
    background-size: 13px 11px;
  }

  /* Apply */
  /* line 2113, ../sass/_normalize.scss */
  .view-apply-top {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 70px;
  }

  /* line 2117, ../sass/_normalize.scss */
  .view-apply-title {
    font-size: 15px;
    line-height: 18px;
    color: #222222;
    margin-bottom: 3px;
    min-height: 18px;
    max-height: 36px;
    -webkit-line-clamp: 2;
    font-family: "Nanum Gothic Bold", Verdana;
  }

  /* line 2125, ../sass/_normalize.scss */
  .view-apply-body {
    max-height: 48px;
    margin-top: 0px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: block;
  }

  /* View-News */
  /* line 2133, ../sass/_normalize.scss */
  .view-top-news {
    height: 150px;
  }

  /* line 2136, ../sass/_normalize.scss */
  .view-body-news {
    font-size: 13px;
    line-height: 17px;
    color: #666666;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    max-height: 136px;
    margin-top: 4px;
  }

  /* Event */
  /* line 2144, ../sass/_normalize.scss */
  .event-calendar {
    height: 72px;
  }

  /* Hilight */
  /* line 2148, ../sass/_normalize.scss */
  .view-hilight-title {
    margin: 10px 0;
  }

  /* line 2152, ../sass/_normalize.scss */
  .view-hilight-body {
    -webkit-line-clamp: 3;
    height: 57px;
    font-size: 15px;
    line-height: 19px;
    color: #666666;
    margin-bottom: 0px;
  }

  /* WHY KUBS */
  /* line 2160, ../sass/_normalize.scss */
  .mainad-title {
    font-size: 20px;
    color: #fff;
    padding: 30px 0;
  }
  .quick-link-wrapper_main{
  	width:100%;
  }
  .quick-link-wrapper_main .quick-row{text-align:center;}
  #block-block-5 .quick-row{text-align:left;}
  /* line 2165, ../sass/_normalize.scss */
 

  .mainad-title-text {
    padding-bottom: 5px;
  }

  /* line 2168, ../sass/_normalize.scss */
  .mainad-body {
    font-size: 12px;
    line-height: 20px;
    padding: 0 0 20px 0;
    margin: 0;
  }

  /* line 2174, ../sass/_normalize.scss */
  .mainad-button {
    padding: 0 0 3em 0;
    font-size: 10px;
  }

  /* line 2178, ../sass/_normalize.scss */
  .mainad-button a {
    margin: 1%;
  }

  /* line 2181, ../sass/_normalize.scss */
  .mainad-button a::after {
    top: 8px;
    right: 20px;
    border-width: 3px 0 3px 3px;
  }

  /* Quick Link */
  /* line 2188, ../sass/_normalize.scss */
  .quick-row .quick-column:first-child .quick-link-wrapper {
    margin-bottom: 10px;
  }
  
  
  /* line 2191, ../sass/_normalize.scss */
  .quick-link-title {
    font-size: 11px;
    line-height: 15px;
    color: white;
    display: table;
    vertical-align: middle;
    height: 35px;
    position: inherit;
  }

  /* line 2198, ../sass/_normalize.scss */
  .quick-link-title span {
    display: table-cell;
    vertical-align: middle;
  }

  /* line 2202, ../sass/_normalize.scss */
  .view-gallery-title, .view-gallery-h-title {
    display: table;
    vertical-align: middle;
    height: 40px;
    position: inherit;
  }

  /* line 2208, ../sass/_normalize.scss */
  .view-gallery-title span, .view-gallery-h-title span {
    display: table-cell;
    vertical-align: middle;
  }

  /* FAQ */
  /* line 2213, ../sass/_normalize.scss */
  .faq-column:last-child .view-faq-wrapper {
    padding-bottom: 10px;
  }

  /* line 2216, ../sass/_normalize.scss */
  .view-faq-title {
    padding: 10px 30px 10px 55px;
    background-position: 10px, right 10px center;
  }

  /* line 2220, ../sass/_normalize.scss */
  .view-faq-body {
    background: none;
    padding: 10px;
  }

  /* line 2224, ../sass/_normalize.scss */
  .view-faq-date {
    padding: 0 0 0 10px;
  }

  /* Accordion */
  /* line 2228, ../sass/_normalize.scss */
  .view-acco-body {
    padding: 10px;
  }

  /* line 2231, ../sass/_normalize.scss */
  .view-acco-title {
    padding: 10px 35px 10px 10px;
    background-position: right 10px center;
  }

  /* line 2235, ../sass/_normalize.scss */
  .view-fix-top {
    min-height: 70px;
  }

  /* Footer */
  /* line 2239, ../sass/_normalize.scss */
  #footer {
    font-size: 10px;
    line-height: 16px;
    color: #666666;
  }

  /* line 2242, ../sass/_normalize.scss */
  #footer a {
    font-size: 10px;
    line-height: 18px;
    color: #7b0018;
  }
  #footer #footer-col-2 a {margin-top:0;}

   #footer #footer-col-4 .col-4-button{
    padding:3px 0 3px 7px ;
    width: 119px; height:17px;
  }

  /* line 2245, ../sass/_normalize.scss */
  #bottom .block {
    line-height: 16px;
  }

  /* line 2248, ../sass/_normalize.scss */
  .breadcrumb {
    font-size: 16px;
    line-height: 20px;
    color: #aaaaaa;
    position: relative;
    left: 0px;
    display: inline-block;
    width: 100%;
    z-index: 1;
  }
  /* line 2255, ../sass/_normalize.scss */
  .breadcrumb ol {
    padding: 0px;
  }
  /* line 2256, ../sass/_normalize.scss */
  .breadcrumb a {
    color: #888888;
  }

  /* HTML */
  /* line 2259, ../sass/_normalize.scss */
  .history-image {
    display: none;
  }

  /* line 2262, ../sass/_normalize.scss */
  .table {
    font-size: 12px;
    line-height: 18px;
    color: #666666;
  }
  /* line 2263, ../sass/_normalize.scss */
  .table th {
    font-size: 12px;
    line-height: 18px;
    color: #666666;
  }
  /* line 2267, ../sass/_normalize.scss */
  .table td {
    padding: 5px;
  }

  /* line 2272, ../sass/_normalize.scss */
  .phrase {
    padding: 20px 8% !important;
    font-size: 16px !important;
    line-height: 22px !important;
  }

  /* line 2277, ../sass/_normalize.scss */
  .title1 {
    padding: 8px !important;
    font-size: 17px !important;
    line-height: 25px !important;
  }

  /* line 2282, ../sass/_normalize.scss */
  .button1 {
    width: 80% !important;
    margin-bottom: 10px !important;
  }

  /* line 2286, ../sass/_normalize.scss */
  .button3 {
    margin-top: 10px !important;
    padding: 0 20px !important;
    font-size: 15px !important;
    line-height: 31px !important;
  }

  /* line 2292, ../sass/_normalize.scss */
  .title2 {
    font-size: 15px !important;
    line-height: 21px !important;
  }

  /* line 2296, ../sass/_normalize.scss */
  .view-history.history {
    background: none;
    width: 94%;
  }

  /* line 2301, ../sass/_normalize.scss */
  process,
  .process li {
    width: 50% !important;
    margin-bottom: 20px;
  }

  /* line 2306, ../sass/_normalize.scss */
  process:not(:last-child):after,
  .process li:not(:last-child):after {
    top: 110%;
    left: 45%;
    border-color: #aaaaaa transparent transparent transparent;
    border-width: 8px 8px 0px 8px;
  }

  /* line 2313, ../sass/_normalize.scss */
  .vision-col-left,
  .vision-col-right {
    width: 100%;
    float: none;
  }

  /* line 2318, ../sass/_normalize.scss */
  .vision-sub-image,
  .vision-top-image {
    width: 100%;
  }

  /* line 2321, ../sass/_normalize.scss */
  .dean-left {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }

  /* line 2326, ../sass/_normalize.scss */
  .dean-left img {
    margin: 0 auto;
    display: block;
  }

  /* line 2330, ../sass/_normalize.scss */
  .dean-right {
    width: 100%;
    float: none;
  }

  /* line 2334, ../sass/_normalize.scss */
  .body-text {
    width: 95% !important;
    padding: 0 10px !important;
  }

  /* line 2338, ../sass/_normalize.scss */
  #history-text {
    width: 100% !important;
  }

  /* line 2341, ../sass/_normalize.scss */
  .image {
    width: 99% !important;
  }

  /* line 2344, ../sass/_normalize.scss */
  .rteindent1 {
    width: 90% !important;
  }

  /* 17.04.16 신규 footer 시작 , 650 이하  */
	#footer-col-kubs-1 {
	  float: left;
	  width: 31%; 
	}
	#footer-col-kubs-1 > #footer-img {
		/* margin-left: 70%; */
		/* padding-left: 20px; */ 
	}
	#footer-col-kubs-1 > #footer-img .img1 {
		width: 81%;
		padding-right: 13px; 
		border-right: 0px solid;
	}
	#footer-col-kubs-2 {
	  float: left;
	  width: 69%;  
	  margin-top: -23px;
	}
	#footer-col-kubs-2 a{
	  display: inline-block;
	  margin-top: 26px;
	}
	#footer-col-kubs-2 .require-margin-top{
	  margin-top: -2%;
	}

	#footer-col-kubs-3 {
	  float: left; 
	  width: 83%; 
	}
	#footer-col-kubs-3 > #footer-img {
	  /* margin-left: 18%; 
	  padding-left: 12%; */
	}

	#footer-col-kubs-3 > #footer-img > a > .footer-col-kubs-3-img-1 {
	  width:15%;
	}

	#footer-col-kubs-3 > #footer-img > a > .footer-col-kubs-3-img-2  {
	  width:19%;
	}

	#footer-col-kubs-3 > #footer-img > a > .footer-col-kubs-3-img-3  {
	  width:30%;
	  margin-top:13px;
	}
	
	#footer-col-kubs-3 > #footer-img > a > .footer-col-kubs-3-img-4 {
	  width:15%;
	}

	/* 17.04.16 신규 끝*/

}
/* Layout rules */
/**
 * @file
 * Positioning for a responsive layout.
 *
 * Define CSS classes to create a fluid grid layout with optional sidebars
 * depending on whether blocks are placed in the left or right sidebars.
 *
 * This layout uses the Zen Grids plugin for Compass: http://zengrids.com
 */
/**
 * Center the page.
 *
 * For screen sizes larger than 1200px, prevent excessively long lines of text
 * by setting a max-width.
 */
/* line 44, ../sass/layouts/_responsive.scss */
.wrapper,
.main-wrapper,
.region-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

/* Apply the shared properties of grid items in a single, efficient ruleset. */
/* line 56, ../sass/layouts/_responsive.scss */
#navigation,
.main-wrapper,
.region-sidebar-second,
.sidebar-first #content-wrapper,
#footer {
  padding-left: 10px;
  padding-right: 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

/* Containers for grid items and flow items. */
/* line 46, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:before, #header:after,
#footer:before,
#footer:after {
  content: "";
  display: table;
}
/* line 50, ../sass-extensions/zen-grids/stylesheets/zen/_grids.scss */
#header:after,
#footer:after {
  clear: both;
}

/* Menu */
/* line 68, ../sass/layouts/_responsive.scss */
.region-kubs-menu {
  float: right;
  width: 80%;
  margin-right: 0%;
  margin-left: -80%;
}

/* Slide Show */
/* line 73, ../sass/layouts/_responsive.scss */
.region-sildes {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  float: none;
}

/* line 77, ../sass/layouts/_responsive.scss */
.region-program {
  display: none;
}

/* NOTICE */
/* line 81, ../sass/layouts/_responsive.scss */
.region-content-1-1 {
  clear: left;
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
}

/* EVENT */
/* line 86, ../sass/layouts/_responsive.scss */
.region-content-1-2 {
  float: left;
  width: 50%;
  margin-left: 50%;
  margin-right: -80%;
}

/* Quick Link */
/* line 90, ../sass/layouts/_responsive.scss */
.region-content-1-3 {
  float: right;
/*  width: 20%; */
  margin-right: -22%; 
}

/* NEWS */
/* line 94, ../sass/layouts/_responsive.scss */
.region-content-2-1 {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -80%;
}

/* Apply */
/* line 99, ../sass/layouts/_responsive.scss */
.region-content-2-3 {
  clear: right;
  float: right;
  width: 20%;
  margin-right: 0%;
  margin-left: -270px;
}

/* INSIGHT */
/* line 104, ../sass/layouts/_responsive.scss */
.region-content-3-1 {
  clear: left;
  float: left;
  width: 40%;
  margin-left: 0%;
  margin-right: -40%;
}

/* DEAN */
/* line 109, ../sass/layouts/_responsive.scss */
.region-content-3-2 {
  float: left;
  width: 40%;
  margin-left: 40%;
  margin-right: -80%;
}

/* MY KUBS */
/* line 114, ../sass/layouts/_responsive.scss */
.region-content-4-1 {
  clear: left;
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -80%;
}

/* line 118, ../sass/layouts/_responsive.scss */
.region-sns {
clear: right;
  float: right;
/*  width: 20%; */
  margin-right: -262px;
  margin-top: -120px;
}

/* Site-map */
/* line 124, ../sass/layouts/_responsive.scss */
#site-map ul:first-child > li:nth-child(4n+1) {
  clear: left;
  float: left;
  width: 16.66667%;
  margin-left: 4.66667%;
  margin-right: -21.33333%;
}

/* line 129, ../sass/layouts/_responsive.scss */
#site-map ul:first-child > li:nth-child(4n+2) {
  float: left;
  width: 16.66667%;
  margin-left: 28.0%;
  margin-right: -44.66667%;
}

/* line 133, ../sass/layouts/_responsive.scss */
#site-map ul:first-child > li:nth-child(4n+3) {
  float: left;
  width: 16.66667%;
  margin-left: 51.33333%;
  margin-right: -68%;
}

/* line 137, ../sass/layouts/_responsive.scss */
#site-map ul:first-child > li:nth-child(4n) {
  float: left;
  width: 16.66667%;
  margin-left: 75.33333%;
  margin-right: -92.0%;
}

/* Footer */
/* line 142, ../sass/layouts/_responsive.scss */
#footer {
  float: left;
  width: 100%;
  margin-left: 0%;
  margin-right: -100%;
  clear: left;
}

/* line 146, ../sass/layouts/_responsive.scss */
.region-footer-1 {
  float: left;
  width: 46.66667%;
  margin-left: 6.66667%;
  margin-right: -53.33333%;
}

/* line 149, ../sass/layouts/_responsive.scss */
.region-footer-2 {
  clear: left;
  float: left;
  width: 46.66667%;
  margin-left: 6.66667%;
  margin-right: -53.33333%;
}

/* line 153, ../sass/layouts/_responsive.scss */
.region-footer-3 {
  display: none;
}

/* line 156, ../sass/layouts/_responsive.scss */
#footer-col-1 {
  float: left;
  width: 20%; 
}

#footer-col-1 > #footer-img {
	/* margin-left: 70%; */
	/* padding-left: 20px; */ 
}

#footer-col-1 > #footer-img > .img1 {
	width: 81%;
    border-right: 1px solid;
	padding-right: 13px; 
}

#footer-col-2 {
  float: left;
  width: 46%; 
}
#footer-col-2 a{
  display: inline-block;
  margin-top: 26px;
}

#footer-col-3 {
  float: left;
  width: 30%;
}


#footer-col-4 {
  float: left;
  width: 20%;
}


#footer-col-4 .col-4-button {
  padding-left: 5px;
  width: 140px;
  height: 25px;
  border-radius: 5px;
  background-color: #7b0018;
  color: white;
  cursor: pointer;
}

#footer-img {
  float: left;
  width: 100%; /*13.33333%;*/
  margin-right: 0%;
  margin-left: 0%;
  margin-top:7px;
}

/* No SideBar */
/* line 161, ../sass/layouts/_responsive.scss */
.no-sidebars {
  /* Grid View - 2 Column */
}

/* line 165, ../sass/layouts/_responsive.scss */
/*.no-sidebars .views-column:nth-child(2n+1) {
  clear: left;
  float: left;
  width: 46.66667%;
  margin-left: 0%;
  margin-right: -46.66667%;
}
/* line 169, ../sass/layouts/_responsive.scss */
/*.no-sidebars .views-column:nth-child(2n) {
  float: left;
  width: 46.66667%;
  margin-left: 53.33333%;
  margin-right: -100%;
}*/
.no-sidebars .views-column:nth-child(2n) {
    margin: 0 2%;
    box-sizing: border-box;
}
.no-sidebars .views-column {
    width: 32%;
    float: left;
}

/* Quick Link */
/* line 174, ../sass/layouts/_responsive.scss */
.quick-column:nth-child(2n+1) {
  clear: left;
  float: left;
  width: 49.83333%;
  margin-left: 0%;
  margin-right: -49.83333%;
}

/* line 178, ../sass/layouts/_responsive.scss */
.quick-column:nth-child(2n) {
  float: left;
  width: 49.83333%;
  margin-left: 51.25%;
  margin-right: -101.08333%;
}

/* Quick Sub Link */
/* line 182, ../sass/layouts/_responsive.scss */
.quick-sub-column:nth-child(2n) {
  float: left;
  width: 41.66667%;
  margin-left: 50%;
  margin-right: -91.66667%;
  float: none;
}

/* line 186, ../sass/layouts/_responsive.scss */
.quick-sub-column:nth-child(2n+1) {
  float: left;
  width: 41.66667%;
  margin-left: 0%;
  margin-right: -41.66667%;
}

/* line 189, ../sass/layouts/_responsive.scss */
.quick-sub-row:nth-child(4n+1) {
  float: left;
  width: 25.41667%;
  margin-left: 0%;
  margin-right: -25.41667%;
}

/* line 192, ../sass/layouts/_responsive.scss */
.quick-sub-row:nth-child(4n+2) {
  float: left;
  width: 25.41667%;
  margin-left: 25.83333%;
  margin-right: -51.25%;
}

/* line 195, ../sass/layouts/_responsive.scss */
.quick-sub-row:nth-child(4n+3) {
  float: left;
  width: 25.41667%;
  margin-left: 51.25%;
  margin-right: -76.66667%;
}

/* line 198, ../sass/layouts/_responsive.scss */
.quick-sub-row:nth-child(4n) {
  float: left;
  width: 25.41667%;
  margin-left: 76.66667%;
  margin-right: -102.08333%;
  float: none;
}

/* Hight */
/* line 203, ../sass/layouts/_responsive.scss */
.view-hilight-row:nth-child(2n+1) {
  clear: left;
  float: left;
  width: 48.33333%;
  margin-left: 0%;
  margin-right: -48.33333%;
}

/* line 207, ../sass/layouts/_responsive.scss */
.view-hilight-row:nth-child(2n) {
  float: left;
  width: 48.33333%;
  margin-left: 51.66667%;
  margin-right: -100%;
}

/* First Sidebar */
/* line 214, ../sass/layouts/_responsive.scss */
.sidebar-first #content-wrapper {
  float: left;
  width: 80%;
  margin-left: 20%;
  margin-right: -100%;
}
/* line 217, ../sass/layouts/_responsive.scss */
.sidebar-first #content {
  clear: left;
}
/* line 220, ../sass/layouts/_responsive.scss */
.sidebar-first .region-sidebar-first {
  float: left;
  width: 20%;
  margin-left: 0%;
  margin-right: -20%;
}
/* line 226, ../sass/layouts/_responsive.scss */
.sidebar-first .views-column:nth-child(2n) {
  float: left;
  width: 49%;
  margin-left: 51%;
  margin-right: -100%;
}
/* line 229, ../sass/layouts/_responsive.scss */
.sidebar-first .views-column:nth-child(2n+1) {
  clear: left;
  float: left;
  width: 49%;
  margin-left: 0%;
  margin-right: -49%;
}
/* line 233, ../sass/layouts/_responsive.scss */
.sidebar-first .views-column-half:nth-child(4n+1) {
  float: left;
  width: 23%;
  margin-left: 0%;
  margin-right: -23%;
}
/* line 236, ../sass/layouts/_responsive.scss */
.sidebar-first .views-column-half:nth-child(4n+2) {
  float: left;
  width: 23%;
  margin-left: 25.5%;
  margin-right: -48.5%;
}
/* line 239, ../sass/layouts/_responsive.scss */
.sidebar-first .views-column-half:nth-child(4n+3) {
  float: left;
  width: 23%;
  margin-left: 51%;
  margin-right: -74%;
}
/* line 242, ../sass/layouts/_responsive.scss */
.sidebar-first .views-column-half:nth-child(4n) {
  float: left;
  width: 23%;
  margin-left: 76.5%;
  margin-right: -99.5%;
  float: none;
}
/* line 246, ../sass/layouts/_responsive.scss */
.sidebar-first .views-fix-column:nth-child(2n) {
  float: left;
  width: 50%;
  margin-left: 50%;
  margin-right: -100%;
}
/* line 249, ../sass/layouts/_responsive.scss */
.sidebar-first .views-fix-column:nth-child(2n+1) {
  float: left;
  width: 50%;
  margin-left: 0%;
  margin-right: -50%;
}

/* Navigation bar */
@media all and (min-width: 650px) {
  /* line 256, ../sass/layouts/_responsive.scss */
  #main {
    /* Move all the children of #main down to make room. 
    padding-top: $nav-height;*/
    position: relative;
  }

  /* line 261, ../sass/layouts/_responsive.scss */
  #navigation {
    /* Move the navbar up inside #main's padding. */
    position: absolute;
    top: 0;
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
  }
}
/**
 *  1152px ~ 1440px  => 1280
 */
/**
 * 896px ~ 1152px  => 1024
 */
@media all and (min-width: 896px) and (max-width: 1152px) {
  /* Menu */
  /* .region-kubs-menu {
	@include zen-grid-item(12, 1);
	@include zen-clear;
   }*/
  /* Slide Show */
  /* line 295, ../sass/layouts/_responsive.scss */
  .region-sildes {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /* Link */
  /* line 299, ../sass/layouts/_responsive.scss */
  .region-program {
    display: none;
  }

  /* NOTICE  */
  /* line 303, ../sass/layouts/_responsive.scss */
  .region-content-1-1 {
    clear: left;
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }

  /* EVENT */
  /* line 308, ../sass/layouts/_responsive.scss */
  .region-content-1-2 {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }

  /* Quick Link */
  /* line 312, ../sass/layouts/_responsive.scss */
  #inner > .region-content-1-3 {
    float: left;
    width: 98.5%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
    padding-left:9px;
  }

  /*  NEWS */
  /* line 317, ../sass/layouts/_responsive.scss */
  .region-content-2-1 {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /* Apply */
  /* line 322, ../sass/layouts/_responsive.scss */
  .region-content-2-3 {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /* INSIGHT */
  /* line 327, ../sass/layouts/_responsive.scss */
  .region-content-3-1 {
    clear: left;
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }

  /* DEAN */
  /* line 332, ../sass/layouts/_responsive.scss */
  .region-content-3-2 {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }

  /* MY KUBS */
  /* line 336, ../sass/layouts/_responsive.scss */
  .region-content-4-1 {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /* SNS */
  /* line 341, ../sass/layouts/_responsive.scss */
  .region-sns {
    display: none;
  }

  /* Footer */
  /* line 345, ../sass/layouts/_responsive.scss */
  #footer {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }

  /* line 349, ../sass/layouts/_responsive.scss */
  .region-footer-1 {
    float: left;
    width: 58.33333%;
    margin-left: 8.33333%;
    margin-right: -66.66667%;
  }

  /* line 352, ../sass/layouts/_responsive.scss */
  .region-footer-2 {
    clear: left;
    float: left;
    width: 58.33333%;
    margin-left: 8.33333%;
    margin-right: -66.66667%;
  }

  /* line 356, ../sass/layouts/_responsive.scss */
  .region-footer-3 {
    display: block;
    clear: left;
    float: left;
    width: 58.33333%;
    margin-left: 8.33333%;
    margin-right: -66.66667%;
  }

  /* line 361, ../sass/layouts/_responsive.scss */
  #footer-img {
    float: right;
    width: 100%;
    margin-right: 0%;
    margin-left: -16.66667%;
  }

  /* Quick Link */
  /* line 366, ../sass/layouts/_responsive.scss */
  .quick-column:nth-child(2n) {
    float: left;
    width: 41.66667%;
    margin-left: 50%;
    margin-right: -91.66667%;
    float: none;
  }

  /* line 370, ../sass/layouts/_responsive.scss */
  .quick-column:nth-child(2n+1) {
    float: left;
    width: 41.66667%;
    margin-left: 0%;
    margin-right: -41.66667%;
  }

  /* line 373, ../sass/layouts/_responsive.scss */
  .quick-link-wrapper_main .quick-row{
    width:11.1111%;
    float:left;
    padding-left:0;
    border:0;
  }
  .quick-link-wrapper_main .quick-row span {
    padding:0; 
    font-size:10px;
  }
  /*.quick-row:nth-child(4n+1) {
    float: left;
    width: 25.41667%;
    margin-left: 0%;
    margin-right: -25.41667%;
  }*/

  /* line 376, ../sass/layouts/_responsive.scss */
  /*.quick-row:nth-child(4n+2) {
    float: left;
    width: 25.41667%;
    margin-left: 25.83333%;
    margin-right: -51.25%;
  }*/

  /* line 379, ../sass/layouts/_responsive.scss */
  /*.quick-row:nth-child(4n+3) {
    float: left;
    width: 25.41667%;
    margin-left: 51.25%;
    margin-right: -76.66667%;
  }*/

  /* line 382, ../sass/layouts/_responsive.scss */
  /*.quick-row:nth-child(4n) {
    float: left;
    width: 25.41667%;
    margin-left: 76.66667%;
    margin-right: -102.08333%;
    float: none;
  }*/

  /* Quick Sub Link */
  /* line 387, ../sass/layouts/_responsive.scss */
  .quick-sub-column:nth-child(2n) {
    float: left;
    width: 41.66667%;
    margin-left: 50%;
    margin-right: -91.66667%;
    float: none;
  }

  /* line 391, ../sass/layouts/_responsive.scss */
  .quick-sub-column:nth-child(2n+1) {
    float: left;
    width: 41.66667%;
    margin-left: 0%;
    margin-right: -41.66667%;
  }

  /* line 394, ../sass/layouts/_responsive.scss */
  .quick-sub-row:nth-child(4n+1) {
    float: left;
    width: 25.41667%;
    margin-left: 0%;
    margin-right: -25.41667%;
  }

  /* line 397, ../sass/layouts/_responsive.scss */
  .quick-sub-row:nth-child(4n+2) {
    float: left;
    width: 25.41667%;
    margin-left: 25.83333%;
    margin-right: -51.25%;
  }

  /* line 400, ../sass/layouts/_responsive.scss */
  .quick-sub-row:nth-child(4n+3) {
    float: left;
    width: 25.41667%;
    margin-left: 51.25%;
    margin-right: -76.66667%;
  }

  /* line 403, ../sass/layouts/_responsive.scss */
  .quick-sub-row:nth-child(4n) {
    float: left;
    width: 25.41667%;
    margin-left: 76.66667%;
    margin-right: -102.08333%;
    float: none;
  }

  /* Apply Link */
  /* line 408, ../sass/layouts/_responsive.scss */
  .apply-column:nth-child(2n) {
    float: left;
    width: 48.33333%;
    margin-left: 51.66667%;
    margin-right: -100%;
    float: none;
  }

  /* line 412, ../sass/layouts/_responsive.scss */
  .apply-column:nth-child(2n+1) {
    float: left;
    width: 48.33333%;
    margin-left: 0%;
    margin-right: -48.33333%;
    clear: left;
  }

  /* No SideBar */
  /* line 417, ../sass/layouts/_responsive.scss */
  .no-sidebars {
    /* Content */
  }
  /* line 419, ../sass/layouts/_responsive.scss */
  .no-sidebars .views-column:nth-child(2n) {
    float: left;
    width: 48.33333%;
    margin-left: 51.66667%;
    margin-right: -100%;
  }
  /* line 423, ../sass/layouts/_responsive.scss */
  .no-sidebars .views-column:nth-child(2n+1) {
    float: left;
    width: 48.33333%;
    margin-left: 0%;
    margin-right: -48.33333%;
  }
  .no-sidebars .views-column-3{display:none;}
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 433, ../sass/layouts/_responsive.scss */
  .sidebar-first .sidebars {
    display: none;
  }
  /* line 436, ../sass/layouts/_responsive.scss */
  .sidebar-first #content-wrapper {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }
  /* line 439, ../sass/layouts/_responsive.scss */
  .sidebar-first #content-wrapper .views-column:nth-child(2n) {
    float: left;
    width: 46.66667%;
    margin-left: 53.33333%;
    margin-right: -100%;
  }
  /* line 442, ../sass/layouts/_responsive.scss */
  .sidebar-first #content-wrapper .views-column:nth-child(2n+1) {
    float: left;
    width: 46.66667%;
    margin-left: 0%;
    margin-right: -46.66667%;
  }
  /* line 445, ../sass/layouts/_responsive.scss */
  .sidebar-first #content-wrapper .views-fix-column:nth-child(2n) {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }
  /* line 448, ../sass/layouts/_responsive.scss */
  .sidebar-first #content-wrapper .views-fix-column:nth-child(2n+1) {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }

}
/**
 * 544px ~ 896px  => 768
 */
@media all and (min-width: 650px) and (max-width: 896px) {
  /* Menu */
  /* line 462, ../sass/layouts/_responsive.scss */
  .region-kubs-menu {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }

  /* Slide Show */
  /* line 467, ../sass/layouts/_responsive.scss */
  .region-sildes {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /* Link */
  /* line 471, ../sass/layouts/_responsive.scss */
  .region-program {
    display: none;
  }

  /* NOTICE  */
  /* line 475, ../sass/layouts/_responsive.scss */
  .region-content-1-1 {
    clear: left;
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }

  /* EVENT */
  /* line 480, ../sass/layouts/_responsive.scss */
  .region-content-1-2 {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }

  /* Quick Link */
  /* line 484, ../sass/layouts/_responsive.scss */
  .region-content-1-3 {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }

  /*  NEWS */
  /* line 489, ../sass/layouts/_responsive.scss */
  .region-content-2-1 {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /* Apply */
  /* line 494, ../sass/layouts/_responsive.scss */
  .region-content-2-3 {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /* INSIGHT */
  /* line 499, ../sass/layouts/_responsive.scss */
  .region-content-3-1 {
    clear: left;
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }

  /* DEAN */
  /* line 504, ../sass/layouts/_responsive.scss */
  .region-content-3-2 {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }

  /* MY KUBS */
  /* line 508, ../sass/layouts/_responsive.scss */
  .region-content-4-1 {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /* SNS */
  /* line 513, ../sass/layouts/_responsive.scss */
  .region-sns {
    display: none;
  }

  /* Footer */
  /* line 517, ../sass/layouts/_responsive.scss */
  #footer {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }

  /* line 521, ../sass/layouts/_responsive.scss */
  .region-footer-1 {
    float: left;
    width: 66.66667%;
    margin-left: 8.33333%;
    margin-right: -75%;
  }

  /* line 524, ../sass/layouts/_responsive.scss */
  .region-footer-2 {
    clear: left;
    float: left;
    width: 66.66667%;
    margin-left: 8.33333%;
    margin-right: -75%;
  }
  
  /* line 528, ../sass/layouts/_responsive.scss */
  .region-footer-3 {
    display: block;
    clear: left;
    float: left;
    width: 58.33333%;
    margin-left: 8.33333%;
    margin-right: -66.66667%;
  }

  /* line 533, ../sass/layouts/_responsive.scss */
  #footer-img {
    width: 100%;
    margin-right: 0%;
    margin-left: 0%;
  }
  #footer-img > a > img {
    float:none;
  }
  #footer-img >a > .img3{
    margin-top:5px;
    display:block;
  }

  /* Quick Link */
  /* line 538, ../sass/layouts/_responsive.scss */
  .quick-column:nth-child(2n) {
    float: left;
    width: 41.66667%;
    margin-left: 50%;
    margin-right: -91.66667%;
    float: none;
  }

  /* line 542, ../sass/layouts/_responsive.scss */
  .quick-column:nth-child(2n+1) {
    float: left;
    width: 41.66667%;
    margin-left: 0%;
    margin-right: -41.66667%;
  }

  /* line 545, ../sass/layouts/_responsive.scss */
  /*.quick-row:nth-child(4n+1) {
    float: left;
    width: 25.41667%;
    margin-left: 0%;
    margin-right: -25.41667%;
  }*/

  /* line 548, ../sass/layouts/_responsive.scss */
  /*.quick-row:nth-child(4n+2) {
    float: left;
    width: 25.41667%;
    margin-left: 25.83333%;
    margin-right: -51.25%;
  }*/

  /* line 551, ../sass/layouts/_responsive.scss */
  /*.quick-row:nth-child(4n+3) {
    float: left;
    width: 25.41667%;
    margin-left: 51.25%;
    margin-right: -76.66667%;
  }*/

  /* line 554, ../sass/layouts/_responsive.scss */
  /*.quick-row:nth-child(4n) {
    float: left;
    width: 25.41667%;
    margin-left: 76.66667%;
    margin-right: -102.08333%;
    float: none;
  }*/

  /* Quick Sub Link */
  /* line 559, ../sass/layouts/_responsive.scss */
  .quick-sub-column:nth-child(2n) {
    float: left;
    width: 45.83333%;
    margin-left: 50%;
    margin-right: -95.83333%;
    float: none;
  }

  /* line 563, ../sass/layouts/_responsive.scss */
  .quick-sub-column:nth-child(2n+1) {
    float: left;
    width: 45.83333%;
    margin-left: 0%;
    margin-right: -45.83333%;
  }

  /* line 566, ../sass/layouts/_responsive.scss */
  .quick-sub-row:nth-child(4n+1) {
    float: left;
    width: 25%;
    margin-left: 0.41667%;
    margin-right: -25.41667%;
  }

  /* line 569, ../sass/layouts/_responsive.scss */
  .quick-sub-row:nth-child(4n+2) {
    float: left;
    width: 25%;
    margin-left: 25.58333%;
    margin-right: -50.58333%;
  }

  /* line 572, ../sass/layouts/_responsive.scss */
  .quick-sub-row:nth-child(4n+3) {
    float: left;
    width: 25%;
    margin-left: 50.83333%;
    margin-right: -75.83333%;
  }

  /* line 575, ../sass/layouts/_responsive.scss */
  .quick-sub-row:nth-child(4n) {
    float: left;
    width: 25%;
    margin-left: 75.83333%;
    margin-right: -100.83333%;
    float: none;
  }

  /* Apply Link */
  /* line 580, ../sass/layouts/_responsive.scss */
  .apply-column:nth-child(2n) {
    float: left;
    width: 48.33333%;
    margin-left: 51.66667%;
    margin-right: -100%;
    float: none;
  }

  /* line 584, ../sass/layouts/_responsive.scss */
  .apply-column:nth-child(2n+1) {
    clear: left;
    float: left;
    width: 48.33333%;
    margin-left: 0%;
    margin-right: -48.33333%;
  }
  .quick-link-wrapper_main {
    width:100%;
  }
  .quick-link-wrapper_main li.quick-row{width: 32.9%;}
  .quick-link-wrapper_main img {
    /*width: 100%;*/
    /*display: block;*/
  }
  .quick-link-wrapper_main li img { margin-left: 0;}
  .quick-link-wrapper_main li:nth-of-type(7), .quick-link-wrapper_main li:nth-of-type(8), .quick-link-wrapper_main li:nth-of-type(9){
    border-bottom:none;
  }

  /* No SideBar */
  /* line 589, ../sass/layouts/_responsive.scss */
  .no-sidebars {
    /*Content*/
  }
  /* line 591, ../sass/layouts/_responsive.scss */
  .no-sidebars .views-column:nth-child(2n) {
    float: left;
    width: 48.33333%;
    margin-left: 51.66667%;
    margin-right: -100%;
  }
  /* line 595, ../sass/layouts/_responsive.scss */
  .no-sidebars .views-column:nth-child(2n+1) {
    float: left;
    width: 48.33333%;
    margin-left: 0%;
    margin-right: -48.33333%;
  }
  .no-sidebars .views-column-3{display:none;}
  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 603, ../sass/layouts/_responsive.scss */
  .sidebar-first .sidebars {
    display: none;
  }
  /* line 606, ../sass/layouts/_responsive.scss */
  .sidebar-first #content-wrapper {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }
  /* line 609, ../sass/layouts/_responsive.scss */
  .sidebar-first #content-wrapper .views-column:nth-child(2n) {
    float: left;
    width: 46.66667%;
    margin-left: 53.33333%;
    margin-right: -100%;
  }
  /* line 612, ../sass/layouts/_responsive.scss */
  .sidebar-first #content-wrapper .views-column:nth-child(2n+1) {
    float: left;
    width: 46.66667%;
    margin-left: 0%;
    margin-right: -46.66667%;
  }
  /* line 615, ../sass/layouts/_responsive.scss */
  .sidebar-first #content-wrapper .views-fix-column:nth-child(2n) {
    float: left;
    width: 50%;
    margin-left: 50%;
    margin-right: -100%;
  }
  /* line 618, ../sass/layouts/_responsive.scss */
  .sidebar-first #content-wrapper .views-fix-column:nth-child(2n+1) {
    float: left;
    width: 50%;
    margin-left: 0%;
    margin-right: -50%;
  }

   /* 17.03.11 왼쪽에 위치한 칼렌더 블록을 해당사이즈일 때 숨김 */
  #block-views-event-block-3{ 
/*	display: none;*/
  }
	#inner  #block-views-event-block-3 .quick-link-wrapper_main .quick-row	{
	 	width: 49.5%;
	 	text-align: center;
	 }
	#inner  #block-views-event-block-3 .quick-link-wrapper_main .quick-row:first-child{
		width:100%;
	}	
	#inner  #block-views-event-block-3 .quick-link-wrapper_main .quick-row:last-child{
		display: block;
		width: 100%;
	}
	#block-views-event-block-3 .padding-left{padding:0;}
}
/**
 * ~ 650
 */
@media all and (max-width: 650px) {
  /* line 631, ../sass/layouts/_responsive.scss */
  .region-program {
    display: block;
  }

  /* line 634, ../sass/layouts/_responsive.scss */
  .region-sns {
    display: none;
  }

  /* line 656, ../sass/layouts/_responsive.scss */
  .region-sildes,
  .region-program,
  .region-content-1-2,
  .region-content-1-1,
  .region-content-1-3,
  .region-content-2-1,
  .region-content-2-2,
  .region-content-2-3,
  .region-content-3-1,
  .region-content-3-2,
  .region-content-4-1,
  .region-content-5-1,
  .region-content-5-2,
  .region-content-6-1,
  .no-sidebars .views-column:nth-child(2n),
  .no-sidebars .views-column:nth-child(2n+1),
  .view-hilight-row:nth-child(2n),
  .view-hilight-row:nth-child(2n+1),
  .panels-flexible-region-first,
  .panels-flexible-region-last {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /* line 661, ../sass/layouts/_responsive.scss */
  .view-row:nth-child(4n+1) {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
  }

  /* line 664, ../sass/layouts/_responsive.scss */
  .view-row:nth-child(4n+2) {
    float: left;
    width: 25%;
    margin-left: 25%;
    margin-right: -50%;
  }

  /* line 667, ../sass/layouts/_responsive.scss */
  .view-row:nth-child(4n+3) {
    float: left;
    width: 25%;
    margin-left: 50%;
    margin-right: -75%;
  }

  /* line 670, ../sass/layouts/_responsive.scss */
  .view-row:nth-child(4n) {
    float: left;
    width: 25%;
    margin-left: 75%;
    margin-right: -100%;
    float: none;
  }

  /* Footer */
  /* line 676, ../sass/layouts/_responsive.scss */
  #footer-logo {
    float: left;
    width: 25%;
    margin-left: 0%;
    margin-right: -25%;
  }

  /* line 679, ../sass/layouts/_responsive.scss */
  .region-footer-1 {
    float: left;
    width: 55.0%;
    margin-left: 17.5%;
    margin-right: -72.5%;
  }

  /* line 682, ../sass/layouts/_responsive.scss */
  .region-footer-2 {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /* line 686, ../sass/layouts/_responsive.scss */
  .region-footer-3 {
    display: block;
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /* line 691, ../sass/layouts/_responsive.scss */
  #footer-col-1,  #footer-col-2,  #footer-col-3,  #footer-col-4{
    width:50%; 
    float:left;
    height: 150px;
  }
  #footer-img {
    float: left;
    width: 100%;
    /*margin-left: 10px;
    margin-right: -100%;*/
  }

  /* Quick Link */
  /* line 696, ../sass/layouts/_responsive.scss */
  .quick-column:nth-child(2n),
  .quick-column:nth-child(2n+1) {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /* line 700, ../sass/layouts/_responsive.scss */
  .quick-column:nth-child(2n) {
    float: none;
  }

  /* line 703, ../sass/layouts/_responsive.scss */
/*  .quick-row:nth-child(4n+1) {
    float: left;
    width: 22.5%;
    margin-left: 0%;
    margin-right: -22.5%;
  }*/

  /* line 706, ../sass/layouts/_responsive.scss */
/*  .quick-row:nth-child(4n+2) {
    float: left;
    width: 22.5%;
    margin-left: 25.75%;
    margin-right: -48.25%;
  }*/

  /* line 709, ../sass/layouts/_responsive.scss */
/*  .quick-row:nth-child(4n+3) {
    float: left;
    width: 22.5%;
    margin-left: 51.5%;
    margin-right: -74%;
  }*/
  /* line 712, ../sass/layouts/_responsive.scss */
/*  .quick-row:nth-child(4n) {
    float: left;
    width: 22.5%;
    margin-left: 77.25%;
    margin-right: -99.75%;
    float: none;
  }*/
  /* Quick Sub Link */
  /* line 718, ../sass/layouts/_responsive.scss */
  .quick-sub-column:nth-child(2n),
  .quick-sub-column:nth-child(2n+1) {
    clear: left;
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
  }

  /* line 722, ../sass/layouts/_responsive.scss */
  .quick-sub-column:nth-child(2n) {
    float: none;
  }

  /* line 725, ../sass/layouts/_responsive.scss */
  .quick-sub-row:nth-child(4n+1) {
    float: left;
    width: 22.5%;
    margin-left: 0%;
    margin-right: -22.5%;
  }

  /* line 728, ../sass/layouts/_responsive.scss */
  .quick-sub-row:nth-child(4n+2) {
    float: left;
    width: 22.5%;
    margin-left: 25%;
    margin-right: -47.5%;
  }

  /* line 731, ../sass/layouts/_responsive.scss */
  .quick-sub-row:nth-child(4n+3) {
    float: left;
    width: 22.5%;
    margin-left: 50%;
    margin-right: -72.5%;
  }

  /* line 734, ../sass/layouts/_responsive.scss */
  .quick-sub-row:nth-child(4n) {
    float: left;
    width: 22.5%;
    margin-left: 75%;
    margin-right: -97.5%;
    float: none;
  }

  /* Site-map */
  /* line 740, ../sass/layouts/_responsive.scss */
  #site-map ul:first-child > li:nth-child(4n+1),
  #site-map ul:first-child > li:nth-child(4n+3) {
    clear: left;
    float: left;
    width: 45%;
    margin-left: 2.5%;
    margin-right: -47.5%;
  }

  /* line 746, ../sass/layouts/_responsive.scss */
  #site-map ul:first-child > li:nth-child(4n+2),
  #site-map ul:first-child > li:nth-child(4n) {
    float: left;
    width: 45%;
    margin-left: 52.5%;
    margin-right: -97.5%;
  }

  /**
   * The layout when there is only one sidebar, the left one.
   */
  /* line 753, ../sass/layouts/_responsive.scss */
  .sidebar-first {
    /* Span 4 columns, starting in 2nd column from left. */
  }
  /* line 755, ../sass/layouts/_responsive.scss */
  .sidebar-first .sidebars {
    display: none;
  }
  /* line 761, ../sass/layouts/_responsive.scss */
  .sidebar-first #content-wrapper,
  .sidebar-first .views-column:nth-child(2n),
  .sidebar-first .views-column:nth-child(2n+1) {
    float: left;
    width: 100%;
    margin-left: 0%;
    margin-right: -100%;
    clear: left;
  }
  /* line 765, ../sass/layouts/_responsive.scss */
  .sidebar-first .views-column-half:nth-child(4n+1) {
    float: left;
    width: 49.5%;
    margin-left: 0%;
    margin-right: -49.5%;
  }
  /* line 768, ../sass/layouts/_responsive.scss */
  .sidebar-first .views-column-half:nth-child(4n+2) {
    float: left;
    width: 49.5%;
    margin-left: 50.5%;
    margin-right: -100%;
  }
  /* line 771, ../sass/layouts/_responsive.scss */
  .sidebar-first .views-column-half:nth-child(4n+3) {
    float: left;
    width: 49.5%;
    margin-left: 0%;
    margin-right: -49.5%;
    clear: left;
  }
  /* line 775, ../sass/layouts/_responsive.scss */
  .sidebar-first .views-column-half:nth-child(4n) {
    float: left;
    width: 49.5%;
    margin-left: 50.5%;
    margin-right: -100%;
  }
}
/* Component (SMACSS module) rules */
/**
 *  Styling
 */
/* color */
/* break point */
/**
 * Wireframes.
 */
/* line 30, ../sass/components/_misc.scss */
.with-wireframes #header,
.with-wireframes #main,
.with-wireframes #content,
.with-wireframes #navigation,
.with-wireframes .region-sidebar-first,
.with-wireframes .region-sidebar-second,
.with-wireframes #footer,
.with-wireframes .region-bottom {
  outline: 1px solid #ccc;
}

/***************************************** CUSTOMIZING 
/**
 * Body
 */
/* line 46, ../sass/components/_misc.scss */
body {
  background: #f0f0f0;
}
.mainbg{background:#670015; /*margin-top: 79px; */}

/****************************************************************
 * Region
 * 
 */
/* line 54, ../sass/components/_misc.scss */
#outer {
  /*margin-top: 10px;*/
}
#outer #block-views-slider-block{margin-top:0;}
/* line 58, ../sass/components/_misc.scss */
#outer .block {
  border: none !important;
}
/* line 60, ../sass/components/_misc.scss */
#outer .block .block-wrapper {
  padding: 0 !important;
}

/* Quick Link, Apply */
/* line 71, ../sass/components/_misc.scss */
.region-content-1-3 .block .block-wrapper,
.region-content-2-3 .block .block-wrapper,
.region-sns .block .block-wrapper {
  /* padding: 5px 10px !important; */ /*17.03.11 5px 10px인 경우 이상하게 그냥 block과 block view의 간격이 않맞는다 */
  padding: 5px 0px !important;
}

/* line 77, ../sass/components/_misc.scss */
.region-content-1-3 .view-wrapper {
  border-bottom: none;
}
/* line 80, ../sass/components/_misc.scss */
.region-content-1-3 .block {
  margin-bottom: 0px !important;
  border-bottom: none !important;
}

/* line 86, ../sass/components/_misc.scss */
.region-content-2-3 .block {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  border-top: none !important;
  border-bottom: none  !important;
}

/* line 95, ../sass/components/_misc.scss */
.region-sns .block {
  /* margin-top: 0px !important; 2017.03.11 칼렌더 블록이 추가되기 때문에 수정함 */
  margin-top: 143px !important;
  border-top: none !important;
}
/* line 99, ../sass/components/_misc.scss */
.region-sns .view-wrapper {
  border-top: none;
}
/* line 102, ../sass/components/_misc.scss */
.region-sns a {
  font-size: 13px;
  line-height: 15px;
  color: #666666;
}
/* line 105, ../sass/components/_misc.scss */
.region-sns ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}
/* line 111, ../sass/components/_misc.scss */
.region-sns li {
  margin: 15px 3px;
}
/* line 115, ../sass/components/_misc.scss */
.region-sns li:hover {
  opacity: 0.7;
}

/* line 121, ../sass/components/_misc.scss */
.header__region {
	float: right;
 	display: inline;
  height: 40px;
 	position: relative;
  top: 20px;
  padding-right:5px;
}
.srch{
  width: 20px;
  height: 20px;
  vertical-align: middle;
  position: relative;
	top: 27px;
}
.header-top .header__region{position: relative; top:3px;}
/********************************************************************/
/**
 * Header
 */
/* line 129, ../sass/components/_misc.scss */
#header {
  border-bottom: 1px solid #790018;
  position: relative;
/*  background: white;*/ /*header fixed 스타일 변경 3/24*/
	background-color: rgba(255,255,255,.95);
}

/* line 134, ../sass/components/_misc.scss */
.not-front #main .wrapper {
  overflow: hidden;
}

/* line 137, ../sass/components/_misc.scss */
.not-front #header {
  border-bottom: none;
}

/* line 140, ../sass/components/_misc.scss */
.page-user-login #header {
  border-bottom: none;
}

/* line 143, ../sass/components/_misc.scss */
.header-top {
  background-color: #444444;  
  /* background-color: #670015; 원복함 - 17.03.11 header-top의 색상을 슬라이드 배경색으로 맞추기 위해 변경*/
  height: 40px;
  /*display:none;*/
}

/* line 147, ../sass/components/_misc.scss */
.header-inside {
  float: right;
  margin-right: 10px;
}

/* Wrapping link for logo. */
/* line 152, ../sass/components/_misc.scss */
.header__logo {
  float: left;
  /* LTR */
  padding: 12px 10px 13px 0;
  width: 212px;
  height: 40px;
}

/* Logo image. */
/* line 159, ../sass/components/_misc.scss */
.header__logo-image {
  vertical-align: bottom;
}

/* Wrapper for website name and slogan. */
/* line 163, ../sass/components/_misc.scss */
.header__name-and-slogan {
  float: left;
}

/* line 166, ../sass/components/_misc.scss */
.header-wrapper {
  padding: 0 0 0 10px;
}

/* line 169, ../sass/components/_misc.scss */
.bottom-wrapper {
  padding: 0 20px 0 10px;
  position: relative;
}
#footer strong{font-weight:bold; color: #000;}
/* line 173, ../sass/components/_misc.scss */
.region-footer-2 {
  position: absolute;
  top: 22px;
}

/* The link around the name of the website. */
/* line 180, ../sass/components/_misc.scss */
.header__site-link:link, .header__site-link:visited {
  color: #000;
  text-decoration: none;
}
/* line 186, ../sass/components/_misc.scss */
.header__site-link:hover, .header__site-link:focus {
  text-decoration: underline;
}

/* The slogan (or tagline) of a website. */
/* line 192, ../sass/components/_misc.scss */
.header__site-slogan {
  margin: 0;
}

/* The secondary menu (login, etc.) */
/* line 197, ../sass/components/_misc.scss */
.header__secondary-menu {
  float: left;
  /* LTR */
}

/* line 200, ../sass/components/_misc.scss */
.header__secondary-menu a {
  font-size: 14px;
  line-height: 40px;
  color: #888888;
}

/* line 203, ../sass/components/_misc.scss */
.header__secondary-menu ul {
  padding: 0px;
  margin: 0px;
}

/* line 207, ../sass/components/_misc.scss */
.header__secondary-menu ul li {
  float: left;
  padding: 0 1em 0 0;
}

/**
  * Login
  */
/* line 214, ../sass/components/_misc.scss */
#auth_box {
  padding: 20px;
  background: #fff;
}

/* line 218, ../sass/components/_misc.scss */
#auth_box .login-text {
  float: left;
  margin-right: 20px;
}

/**
 * Block
 */
/* line 229, ../sass/components/_misc.scss */
#main .block a:hover .view-wrapper,
#main .block a:hover .view-fix-wrapper,
#main .block a:hover .view-hilight-row {
  opacity: 0.7;
}
#main .region-content-2-1 .block a:hover .view-wrapper,
#main .region-content-4-1 .block a:hover .view-wrapper {
  opacity: 1;
}
/* line 232, ../sass/components/_misc.scss */
/* 170309 메인 페이지 블록의 border 속성 삭제 */
.front #main .block {
  /* border: 1px solid #ddd; */
  background: white;
  position: relative;
}
/* line 236, ../sass/components/_misc.scss */
.front #main .block .block-wrapper {
  padding: 5px 20px;
}
/* line 239, ../sass/components/_misc.scss */
.front #main .block .block-title {
    display: inline-block;
    width: 100%;
    margin-top: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #7c0019;
}

/* line 245, ../sass/components/_misc.scss */
#inner #block-menu-menu-banner {
 border: 0px !important;
}

#block-menu-menu-banner ul {
  margin-top: 10px;
}

/* line 249, ../sass/components/_misc.scss */
.front #main .block {
  margin: 10px;
}

/* wsj: 20140628 */
/* line 252, ../sass/components/_misc.scss */
.blocktitle-button-bar {
  font-size: 18px;
  line-height: 30px;
}

/* line 256, ../sass/components/_misc.scss */
.block-wrapper-button-bar {
  background-color: #f3eee6;
}

/* line 260, ../sass/components/_misc.scss */
.blocktitle a {
  position: relative;
  padding-right: 10px;
  color: #790018;
}

/* line 265, ../sass/components/_misc.scss */
.blocktitle a::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 100%;
  width: 0px;
  height: 0px;
  border-color: transparent transparent transparent #790018;
  border-style: solid;
  border-width: 5px 0 5px 5px;
}

/* line 276, ../sass/components/_misc.scss */
.region-sidebar-first .block-menu-block {
  padding-bottom: 20000px;
  margin: 0 10px -20000px 10px;
  background: white;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

/**
 * Views
 */
/* line 287, ../sass/components/_misc.scss */
.views-responsive-grid {
  font-size: 0px;
  line-height: 0px;
}

/* line 296, ../sass/components/_misc.scss */
.views-row,
.views-board-row,
.views-row-line,
.quick-row,
.quick-sub-row,
.gallery-row {
  display: inline-block;
  width: 100%;
}

/* line 302, ../sass/components/_misc.scss */
.views-row:not(:last-child) .view-wrapper {
  border-bottom: 1px solid #ddd;
}

/* line 307, ../sass/components/_misc.scss */
.views-row-line .view-wrapper {
  border-bottom: 1px solid #ddd;
}

/* line 312, ../sass/components/_misc.scss */
.views-responsive-grid:last-child .views-row-line:last-child .view-wrapper {
  border: none;
}

/* line 316, ../sass/components/_misc.scss */
.views-board-row:nth-child(2n) {
  /*background: #F9F9F9;*/
}

/* line 319, ../sass/components/_misc.scss */
.view-faculty-homepage ul {
  margin: 0;
}

/* frame */
/* line 323, ../sass/components/_misc.scss */
.node-header {
  margin-top: 20px;
}

/* line 332, ../sass/components/_misc.scss */
#comments,
.node-body,
.panel-pane,
.page-node-translate #content,
.page-node-add #content,
.page-node-edit #content {
  padding: 20px;
  margin-top: 20px;
  border: 1px solid #ddd;
  background: white;
  position: relative;
}

/* line 340, ../sass/components/_misc.scss */
.not-front #content .block {
  padding: 5px 20px;
  margin-top: 20px;
  border: 1px solid #ddd;
  background: white;
  position: relative;
}
/* line 346, ../sass/components/_misc.scss */
.not-front #content .block .block-title {
  /* display: inline-block;*/
  margin-top: 15px;
}

/* line 351, ../sass/components/_misc.scss */
.not-front #content .block.slider {
  padding: 0px;
  margin-top: 0px;
  border: none;
  background: none;
}

/* line 357, ../sass/components/_misc.scss */
.panel-pane .pane-title {
  margin: 0 0 10px 0;
}

/**
 * Content
 */
/* line 365, ../sass/components/_misc.scss */
#content-wrapper {
  padding: 0 0 50px 0;
}

/* line 368, ../sass/components/_misc.scss */
#content-header {
  margin: 20px 0 0 0;
}

/* line 371, ../sass/components/_misc.scss */
.not-front .flexslider {
  margin-top: 20px;
}

/* line 374, ../sass/components/_misc.scss */
.node-info {
  float: right;
  padding-right: 20px;
  position: absolute;
  right: 0px;
  bottom: 16px;
  display: table;
}

/**
 * Sidebar menu
 */
/* line 388, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper > ul.menu {
  padding-top: 40px !important;
}

/* line 392, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper ul,
.sidebar .block .menu-block-wrapper ol {
  padding: 0px;
}

/* line 395, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper span {
  cursor: pointer;
}

/* line 400, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper ul.menu,
.sidebar .block .menu-block-wrapper ul.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* line 407, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper ul.menu a,
.sidebar .block .menu-block-wrapper ul.menu span {
  display: block;
  text-decoration: none;
}

/* line 412, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper ul.menu li:span {
  position: relative;
}

/* 1 level link */
/* line 417, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper ul.menu li span,
.sidebar .block .menu-block-wrapper ul.menu li a {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

/* line 421, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper > ul.menu > li:first-child > a {
  border-top: 1px solid #ddd;
}

/* line 425, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper ul.menu > li span,
.sidebar .block .menu-block-wrapper ul.menu > li a {
  padding-left: 20px;
}

/* line 430, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper > ul.menu > li.active-trail > span,
.sidebar .block .menu-block-wrapper > ul.menu > li.active-trail > a {
  background: #ddd;
  position: relative;
}

/* line 434, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper > ul.menu > li > ul > li {
  position: relative;
}

/* line 437, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper > ul.menu > li.is-expanded {
  position: relative;
}

/* line 440, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper .menu-click {
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  border-left: 1px solid #ddd;
  height: 43px;
  padding: 0 14px;
}

/* line 451, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper > ul > li.is-expanded img {
  position: relative;
  top: 12px;
  width: 11px;
  height: 11px;
}

/* line 458, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper ul.menu li span:hover,
.sidebar .block .menu-block-wrapper ul.menu li a:hover {
  background: #e4e4e4;
}

/* 2 level link */
/* line 464, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper ul.menu li ul li span,
.sidebar .block .menu-block-wrapper ul.menu li ul li a {
  padding-left: 30px;
  border-bottom: 1px solid #ddd;
  background: #f4f4f4;
}

/*.sidebar .block .menu-block-wrapper ul li.is-active > a ,*/
/* line 471, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper ul li.is-active-trail.leaf > a {
  border-left: 5px #790018 solid;
  background: #ece5d8 !important;
  color: #790018;
}

/* line 476, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper ul.menu li ul li a:hover {
  background: #e4e4e4;
}

/* 3 level link */
/* line 482, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper ul.menu li ul li ul li span,
.sidebar .block .menu-block-wrapper ul.menu li ul li ul li a {
  padding-left: 40px;
  font-family: "Nanum Gothic", Verdana;
  border-bottom: 1px solid #ddd;
  background: #f4f4f4;
}

/* line 489, ../sass/components/_misc.scss */
.sidebar .block .menu-block-wrapper ul.menu li ul li ul li li.is-leaf.active-trail > a {
  padding-left: 25px;
}

/* contact */
/* line 494, ../sass/components/_misc.scs	s */
#contact-personal-form {
  background: #fff;
  padding: 20px;
}
/* line 498, ../sass/components/_misc.scss */
#contact-personal-form label {
  width: 15%;
  color: #666;
}
/* line 502, ../sass/components/_misc.scss */
#contact-personal-form .form-required {
  display: none;
}
/* line 505, ../sass/components/_misc.scss */
#contact-personal-form .form-text {
  width: 84%;
}
/* line 508, ../sass/components/_misc.scss */
#contact-personal-form input[type="submit"] {
  background: #f4f4f4;
  border: none;
  color: #790018;
  padding: 10px 30px;
}

/* Web form */
/* line 517, ../sass/components/_misc.scss */
.webform-client-form {
  display: inline-block;
  padding-bottom: 20px;
  width: 100%;
}

/* line 522, ../sass/components/_misc.scss */
.webform-client-form .webform-component-markup {
  margin: 0px;
}

/* line 526, ../sass/components/_misc.scss */
.webform-client-form .webform-component-textfield,
.webform-client-form .webform-component-email {
  padding: 1em 0;
  margin: 0;
  border-bottom: 1px solid #ddd;
}

/* line 531, ../sass/components/_misc.scss */
.webform-client-form label {
  width: 80px;
  color: #666;
}

/* line 536, ../sass/components/_misc.scss */
.webform-client-form [type="text"],
.webform-client-form input[type="email"] {
  width: 90%;
  height: 30px;
}

/* line 540, ../sass/components/_misc.scss */
.webform-client-form textarea {
  margin-top: 10px;
  line-height: 1.5em;
  padding: 10px;
}

/* line 547, ../sass/components/_misc.scss */
.webform-client-form input[type="text"],
.webform-client-form input[type="email"],
.webform-client-form textarea {
  border: 1px solid #ccc;
  padding-left: 10px;
}

/* line 551, ../sass/components/_misc.scss */
.webform-client-form .form-actions {
  float: right;
}

/* line 554, ../sass/components/_misc.scss */
.webform-client-form .form-required {
  display: none;
}

/* line 557, ../sass/components/_misc.scss */
.form-item-titleonlycheckbox {
  float: right;
}

/*
 * ws: for mobile look and feed
 */
@media all and (max-width: 1152px) {
  /* line 566, ../sass/components/_misc.scss */
  #contact-personal-form input[type="submit"],
  .webform-client-form input[type="submit"] {
    border-radius: 0px;
    padding: 10px 30px;
    font-size: 15px;
    margin: 0;
    width: 100%;
    float: none;
  }

  /* line 575, ../sass/components/_misc.scss */
  .webform-client-form .form-actions {
    float: none;
  }
}
/* 
 * Footer
 */
/* line 584, ../sass/components/_misc.scss */
.front #footer {
  margin-top: 10px;
}

/* line 587, ../sass/components/_misc.scss */
.i18n-en.front #footer {
  margin-top: 30px;
}

/* line 590, ../sass/components/_misc.scss */
#footer {
  border-top: 1px solid #ddd;
  background-color: #f4f4f4;
  padding: 15px 0 10px 0;
}
/* line 591, ../sass/components/_misc.scss */
#footer ol, #footer ul {
  margin: 0 !important;
  padding: 0 !important;
}

/* line 599, ../sass/components/_misc.scss */
#footer p, #footer .block, #footer ol, #footer ul {
  margin: 0 !important;
  padding: 0 !important;
}

/* line 603, ../sass/components/_misc.scss */
#footer img {
  width: 44px;
}

/* line 606, ../sass/components/_misc.scss */
#footer #block-menu-menu-new-footer ul.menu li {
  float: left;
  padding: 0 0 0 6px;
}

/* line 610, ../sass/components/_misc.scss */
#footer #block-menu-menu-new-footer ul.menu li:first-child {
  padding: 0px;
}

/* line 614, ../sass/components/_misc.scss */
#footer #block-menu-menu-new-footer ul.menu li a {
  padding-right: 6px;
  border-right: 1px solid #666;
}

/* line 618, ../sass/components/_misc.scss */
#footer #block-menu-menu-new-footer ul.menu li:last-child a {
  border-right: none;
}

/* line 621, ../sass/components/_misc.scss */
#footer #block-menu-menu-new-footer ul.menu li.first {
  border-left: none;
}

/* line 624, ../sass/components/_misc.scss */
#footer-img img {
  width: 13%;/*35%;*/
  float: left;
}

/* line 629, ../sass/components/_misc.scss */
#footer-img .img2 {
  width: 20%; /*40%;*/
  margin-top: 5px;
}

/* line 629, ../sass/components/_misc.scss */
#footer-img .img3 {
  width: 100px;
  margin-top: 15px;
}

/* line 633, ../sass/components/_misc.scss */
#block-menu-menu-sns li,
#block-menu-menu-footer-menu li {
  float: left;
  margin: 10px 10px 0 5px;
}

/* line 637, ../sass/components/_misc.scss */
#block-menu-menu-sns li {
  width: 76px;
}

/* line 640, ../sass/components/_misc.scss */
#block-menu-menu-sns li a {
  background-size: 50%;
}

/* line 643, ../sass/components/_misc.scss */
#block-menu-menu-footer-menu li a {
  padding: 5px 10px;
  background: #333;
}

/* line 649, ../sass/components/_misc.scss */
#block-menu-menu-sns li.first,
#block-menu-menu-footer-menu li.first {
  margin-left: 0;
}

/* element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility */
/* line 655, ../sass/components/_misc.scss */
.element-invisible,
.element-focusable {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Turns off the element-invisible effect. */
/* line 660, ../sass/components/_misc.scss */
.element-focusable:active, .element-focusable:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}

/*
 * The skip-link link will be completely hidden until a user tabs to the link.
 */
/* line 677, ../sass/components/_misc.scss */
#skip-link {
  margin: 0;
}
/* line 681, ../sass/components/_misc.scss */
#skip-link a,
#skip-link a:visited {
  display: block;
  width: 100%;
  padding: 2px 0 3px 0;
  text-align: center;
  background-color: #666;
  color: white ra;
}

/* line 690, ../sass/components/_misc.scss */
#lang {
  background: #666;
  margin: 8px 0px 0px 30px;
  float: left;
}
/* line 694, ../sass/components/_misc.scss */
#lang a {
  padding: 5px 10px;
  font-family: "Nanum Gothic Bold", Verdana;
  font-size: 14px;
  line-height: 25px;
  color: #aaaaaa;
}

/* line 700, ../sass/components/_misc.scss */
#lang_dropdown_form_language select {
  background: #666;
  color: #aaa;
  border: none;
  font-size: 14px;
  line-height: 30px;
  width: 90px !important;
  height: 30px;
  margin-top: 4px;
  margin-left: 40px;
}

ul.language-switcher-locale-url {
  border: none;
  font-size: 14px;
  /*font-weight: bold;*/
  line-height: 30px;
  height: 30px;
  margin-top: 4px;
/*  margin-left: 10px;*/
  /*list-style-image: url('../images/lang.png');*/
  list-style-type: none;
}

a.language-link {
  color: #888888;
}

/* Search */
/* line 712, ../sass/components/_misc.scss */
#seach {
  float: left;
  padding: 7px 10px;
}

/* line 717, ../sass/components/_misc.scss */
#edit-search-block-form--2 {
  width: 140px;
  height: 25px;
  background: #666666; /*원복함 - 17.03.11 header-top의 색상이 변경되어서 주석처리함*/
  border: none;
}

/* line 724, ../sass/components/_misc.scss */
#seach .form-submit {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  position: relative;
  top: -2px;
  left: 2px;
}

/*#seach .form-wrapper
{
        padding: 6px;
	background :#666666;
	
}*/
/* line 741, ../sass/components/_misc.scss */
#sel-language select {
  font-size: 14px;
  width: 90px;
  height: 30px;
  color: #888888;
  margin: 10px;
  background-color: #888888;
  padding-left: 5px;
}

/* line 751, ../sass/components/_misc.scss */
#sel-language {
  display: inline;
}

/* Main-header */
/* line 757, ../sass/components/_misc.scss */
.one-sidebar #main {
  padding: 0px;
}

/* Main Header */
/* line 761, ../sass/components/_misc.scss */
.main-header {
	/*padding: 20px 0;  */
	/*margin-top: 79px;*/
  clear: both;
  position: relative;
}

/* line 766, ../sass/components/_misc.scss */
#about {
  background: url('../images/about.png?1405733027') no-repeat center;
}

/* line 769, ../sass/components/_misc.scss */
#program {
  background: url('../images/program.png?1405733027') no-repeat center;
}

/* line 772, ../sass/components/_misc.scss */
#faculty {
  background: url('../images/faculty.png?1405733027') no-repeat center;
}

/* line 775, ../sass/components/_misc.scss */
#alumni {
  background: url('../images/alumni.png?1405733027') no-repeat center;
}

/* line 778, ../sass/components/_misc.scss */
#news {
  background: url('../images/news.png?1405733027') no-repeat center;
}

/* line 781, ../sass/components/_misc.scss */
#kubslife {
  background: url('../images/kubslife.png?1405733027') no-repeat center;
}

/* line 784, ../sass/components/_misc.scss */
#cdc {
  background: url('../images/cdc.png?1405733027') no-repeat center;
}

/* line 787, ../sass/components/_misc.scss */
#sudang {
  background: url('../images/sudang.png?1405733027') no-repeat center;
}

/*Content*/
/* line 792, ../sass/components/_misc.scss */
#content-header {
  clear: both;
}

/**
 * Navigation bar.
 */
/* line 800, ../sass/components/_misc.scss */
#navigation {
  /* Sometimes you want to prevent overlapping with main div. */
  /* overflow: hidden; */
  /* Main menu and secondary menu links and menu block links. */
}
/* line 804, ../sass/components/_misc.scss */
#navigation .block {
  margin-bottom: 0;
}
/* line 815, ../sass/components/_misc.scss */
#navigation .links,
#navigation .menu {
  margin: 0;
  padding: 0;
  text-align: left;
  /* LTR */
}
/* line 820, ../sass/components/_misc.scss */
#navigation .links li,
#navigation .menu li {
  /* A simple method to get navigation links to appear in one line. */
  float: left;
  /* LTR */
  padding: 0 10px 0 0;
  /* LTR */
  list-style-type: none;
  list-style-image: none;
}

/**
 * Messages.
 */
/* line 833, ../sass/components/_misc.scss */
.messages, .messages--status, .messages--warning, .messages--error {
  margin: 1.5em 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAD6UlEQVR42s2WX0xbVRzH3YwmC4k+GF/0ZS/S267/bmnX9nL7bwstZlnbjTDYyoC5GCbB0ZW5pdJCe6swbLFA6bpWIGuRMWVjKGP+21QW3SZBSAjGh4XEaTZTH82Cm/3ztS2xs7mw4KLRk3xyzj33/H6fe5Pz7zEA/yr/vUDukj9FH6drqTaqT8EoPs/UV+nX6TD1BlUh9AqLHlmgPKLcRHmoCOWmElK/FOKTYpS8UwLJkASiUyLI3pKhlClN0g46qj+qL/pbArlbrlO1q25JeiSgR2iYJ8ywXLSg/qP6LNl2ro8+Q4MMkKCd9K2t3q3KdQnkXXIF5aISkgEJzONm1F2qW52pDJN1MI2bUBIuAdVOJWSMTPNQgX6/vkjVpvpREpag6oMqWCYta1IzbsHh9ga0RJtzY8URMdRO9U/KSuWmNQUqh2pY3CtG+fvlqJyofMAFNrZAE+7e/RWR4X4cD9tgOGsA2U2CdtMDqwqyMyIzQ5KKqAKmcyaYxkzYd3YvjGNGFtXRPRj58DT+LOemRrFnrBLyITmUDmUyO/NYgu2d26ukHVJo3tXAMGpAs+cQmh0NeClan30uwN7TgnQ6nRd4r3thOGOAJqYB2UVC79AfZAnKHGUxQa8A2tNaNLW/jKvXv8Dyb8s4yryKA4O10A3roIvpUB+swTdz1/LJZ27PQBvT5lBH1RD4BChzlQ2wBNtc22aE/ULQgzRCl4P5BPcT93GMOYz9wb2QhCRgAq35d8u/L2PXe7tADVGgBlcQ+AXQtmlvsP/gzbJZvp8PMkJCFBYh8m0knyiVSsHe0YIGZz1+/uVOvt8z7QGvnwf+ST5EIRHIUyR4fh50rbp5lsDcYR4ReAXgBrng9q/Qfa0bfy035r7Ot2dvz4IX4IEIEAXwvDzscOw4zxJUd1YfEXlE4Aa4BQHMlwzSSBeI7iXvoTxWDqKPYCFsFaKmr+YVliB0JfS89DVpiuhlB9k/tSOZTuYFvq98yI7L0/MAsVWcGp0bfW61hbahwltxSeARsIKyWKesSKQSWIwvYkvvllwfx88pgOvhwthu/AzAxlVX8vz385tLbaVxwpcLZtEw0QDjsBGctzksiE4CimZFfHp++oWHbnbuUfdB0komMgHsRN1r0MWBsEmYODF5onY92/UTwcvBxuzXcN1ccHycVSn2FaPYWwzCQUDWKIt7z3utAJ5c74Hz+OLSomynY+cVfiM/xW3JiDyZpB3FuZrj4oCwE+Ad4qWMjPHjpTtL0mzMoxyZz9yM39Q7Y85Ok930icqm+k59TL2wm9l90dZv8y/8sPAigGf/iUN/Q4anM2zOsdLe+L+4VfwBVVjDs2rTYx0AAAAASUVORK5CYII=');
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid #be7;
}

/* line 848, ../sass/components/_misc.scss */
.messages--warning {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACuElEQVRIiWP4//8/Ay0xSYqntTpnT252zqeJBf0Njhsykrz/pyd6/e9vcNpGVQv6q2wlm0qc/r0+IPD/3UG+/61l9v9mdrjIUc2C7hqHUzc3S///eZwBjO9tF/vfWe1wjioWTKixVm8otPn38wQT3IKfxxn/t5Va/utpsNSg2ILWcttrNzdJgQ3+dpQRjEHs+9tE/zeXWt+gyILOamuTqlxrsOtPLub+7+emBsSq/88v5wL7oqHQ9H9nmbkF2RbUF1rev7lJEuziuU3i/90ddcB4UZsoJC62ifyvK7R4QJYFrcUGrmUZ5v9hYb9hosh/bzcDMN42VRgeF9W5hv8bi/XdSbagKtfs2c1NEvCIPbaQ/7+/pwkYn17Ki0hR24T/l2eZPCfJgsZ83dCiNOP/yCnn7iau/8G+5mD8aBsHSoqqyNL9X5erHUm0BcVpRm9ubhZHMoTh/4eDzP/DA23+RwTZ/P96hAlF7t5Wof8FyfpvibKgNk8noyDZ4D9quofg1Bjr/1kJlhjiIF+Upmn/r83RzCJoQXaC3qcbm8SwGMLwvybP/H8jMGlik7u7VeB/Zqz2J7wWVGdr1uTG62J1PQgfWST1/+hiCaxyIF8UJqv9r8hQrcVpQVqkzrcbG0WwGvB2H/P/lnx5MAaxsam5vYn3f2KY+jesFpSlqfZnxWjidP2OGWL/g/0swBjExu4Lhv958Ur/i5KU+lEsCA1lYI4JUv95bZ0gTo2Pt3P+z0myBmMQG5e6mxu4/kf4Kf8EmQm3oCRNebKrvSawIGPBqRG9sMOp5hjjfwdrlf/58bKT4RaUpWvtcLZV/39iscD/H0AFP46jYwYiMeP/44u4/9tbKQODSXUH3II9G7v18hI0n8YGKv+IDVT6joxj/BVx4mgcOCde/SnITPRUJAHEGlTCEkQV19TAAN8FC67hZdFXAAAAAElFTkSuQmCC');
  border-color: #ed5;
}

/* line 857, ../sass/components/_misc.scss */
.messages--error {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAACpElEQVR42rWWTUgbQRiGQ0Tx4MWDeFM8eBA9iKAoggiCoCiiIiL4L3oQV1CJB0UEf6iRYFpK7UniTw9VSqL2kvQsVDBpSZrtRo35czVNW3oprRf17exSl4yzu1ikAy9h59vvedhkMrMGAGoxknAk2w8MJ/WosXThiZkZt9jdLeglPjn5ATc3mhJNuNjbK0QbG3ExMICL/n6IfX0gcxB7ekDAELu6IHZ2IlJbi1hLS1BLogmPtbUhMTv7oMSamzUlqnByMxLT0/8STQkDj9TV4ZLj5OysrODl8jIu5Gs68dFR7JG6dWkJ0fFx+TpSX89IDMnwcHU1yKec12Yz3rlc4HkeLwjkXJpPip3U3+7vIx6P4ymph4eG5PlwTQ0lMdytlmBxMWKtrXLeT0zA5XTibvj9fjxfXETkb/3N/Dz2dneVuiTZtliU/rPSUsQ5ziuxZYG03IIlJdKKUPJjdRUAKMmzuTnskB/VYbdTtd9HR4g2NCi9Z2VliDY1BSnBaUEBzsrLqXyzWCiQ9HU5HA4afniIUFWV0hOqqMBpURErOM7NxWlhIZOvCwvA7S3Uxq+DA5AnZ3pO8vJYQSArC8c5Oeqx2Rj4udeLQH6+6v2B7GxW8DkjA0JmJpONwUHY7XZGIAgCzCYTeJUewmIFfqMRfEoKlQ2yJbza2oLWcLvdeDI2hk/3+iQWKzAYkJzNjg5srq9TwJ9OJ76YTNScx+ORJT66X1/grKyEbW2NgfPp6XKd/JMZySrHaQsSU1Oe+0/w3WpVgyu5HBlR6lc+H8gioevDwz6JrWwV5+3txyoSFk5DcOX1MnCyJ4Vwfb1zt1UY9SR8aioDpuppaVpwZbPTl+hHF04dOKzk8XBF8DgJC3/woU/W/EciOtELOWi8DDwp//215Q+p7kiKh2lQSAAAAABJRU5ErkJggg==');
  border-color: #ed541d;
}

/* line 867, ../sass/components/_misc.scss */
.messages__list {
  margin: 0;
}

/* line 870, ../sass/components/_misc.scss */
.messages__item {
  list-style-image: none;
}

/* Core/module installation error messages. */
/* line 875, ../sass/components/_misc.scss */
.messages--error p.error {
  color: #333;
}

/* System status report. */
/* line 881, ../sass/components/_misc.scss */
.ok,
.messages--status {
  background-color: #f8fff0;
  color: #234600;
}

/* line 886, ../sass/components/_misc.scss */
.warning,
.messages--warning {
  background-color: #fffce5;
  color: #840;
}

/* line 891, ../sass/components/_misc.scss */
.error,
.messages--error {
  background-color: #fef5f1;
  color: #8c2e0b;
}

/**
 * Tabs.
 */
/* Basic positioning styles shared by primary and secondary tabs. */
/* line 901, ../sass/components/_misc.scss */
.tabs-primary, .tabs-secondary {
  overflow: hidden;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(100%, #bbbbbb), color-stop(100%, transparent));
  background-image: -webkit-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -moz-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: -o-linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  background-image: linear-gradient(bottom, #bbbbbb 1px, transparent 1px);
  /* IE 9 and earlier don't understand gradients. */
  list-style: none;
  border-bottom: 1px solid #bbbbbb \0/ie;
  margin: 1.5em 0;
  padding: 0 2px;
  white-space: nowrap;
}

/* line 911, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active, .tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  float: left;
  /* LTR */
  margin: 0 3px;
}

/* line 915, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active, a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  border: 1px solid #e9e9e9;
  border-right: 0;
  border-bottom: 0;
  display: block;
  line-height: 1.5em;
  text-decoration: none;
}

/* Primary tabs. */
/* line 928, ../sass/components/_misc.scss */
.tabs-primary__tab, .tabs-primary__tab.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  text-shadow: 1px 1px 0 white;
  border: 1px solid #bbbbbb;
  border-bottom-color: transparent;
  /* IE 9 and earlier don't understand gradients. */
  border-bottom: 0 \0/ie;
}

/* line 937, ../sass/components/_misc.scss */
.is-active.tabs-primary__tab {
  border-bottom-color: white;
}

/* line 943, ../sass/components/_misc.scss */
a.tabs-primary__tab-link, a.tabs-primary__tab-link.is-active {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #333;
  background-color: #dedede;
  letter-spacing: 1px;
  padding: 0 1em;
  text-align: center;
}

/* line 953, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:hover, a.tabs-primary__tab-link:focus {
  background-color: #e9e9e9;
  border-color: #f2f2f2;
}

/* line 957, ../sass/components/_misc.scss */
a.tabs-primary__tab-link:active, a.tabs-primary__tab-link.is-active {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFE9E9E9', endColorstr='#00E9E9E9');
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e9e9e9), color-stop(100%, rgba(233, 233, 233, 0)));
  background-image: -webkit-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -moz-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: -o-linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  background-image: linear-gradient(#e9e9e9, rgba(233, 233, 233, 0));
  border-color: #fff;
}

/* Secondary tabs. */
/* line 981, ../sass/components/_misc.scss */
.tabs-secondary {
  font-size: .9em;
  /* Collapse bottom margin of ul.primary. */
  margin-top: -1.5em;
}

/* line 988, ../sass/components/_misc.scss */
.tabs-secondary__tab,
.tabs-secondary__tab.is-active {
  margin: 0.75em 3px;
}

/* line 994, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link, a.tabs-secondary__tab-link.is-active {
  -webkit-border-radius: 0.75em;
  -moz-border-radius: 0.75em;
  -ms-border-radius: 0.75em;
  -o-border-radius: 0.75em;
  border-radius: 0.75em;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-shadow: 1px 1px 0 white;
  background-color: #f2f2f2;
  color: #666;
  padding: 0 .5em;
}

/* line 1003, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:hover, a.tabs-secondary__tab-link:focus {
  background-color: #dedede;
  border-color: #999;
  color: #333;
}

/* line 1008, ../sass/components/_misc.scss */
a.tabs-secondary__tab-link:active, a.tabs-secondary__tab-link.is-active {
  text-shadow: 1px 1px 0 #333333;
  background-color: #666;
  border-color: #000;
  color: #fff;
}

/**
 * Inline styles.
 */
/* List of links generated by theme_links(). */
/* line 1036, ../sass/components/_misc.scss */
.inline {
  display: inline;
  padding: 0;
}
/* line 1040, ../sass/components/_misc.scss */
.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 1em 0 0;
  /* LTR */
}

/* The inline field label used by the Fences module. */
/* line 1048, ../sass/components/_misc.scss */
span.field-label {
  padding: 0 1em 0 0;
  /* LTR */
}

/**
 * "More" links.
 */
/* line 1055, ../sass/components/_misc.scss */
.more-link {
  text-align: right;
  /* LTR */
}

/* line 1058, ../sass/components/_misc.scss */
.more-help-link {
  text-align: right;
  /* LTR */
}

/* line 1061, ../sass/components/_misc.scss */
.more-help-link a {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA7UlEQVR42qWTPQqDQBCFcwSPkCNITpAj5AjeIm1uYpkyR7Cy2Mot7OwsBAsRwUKwmOwLGRle3EIy8PyBfZ/z3J2TiPylz8VWWZZpUB40BonRKyizaxkA88MYYiqCEgv4MTvnZJom0VqWRbz3FlJZgLYtqmEY1Lg9r+sKsIXcLSC3AC019H0vqLquLeC5AfiHYSGkcdAJimKIBQiJ4+CO92OAtm0FNc8zOjkMwE5Q63FAtbeg6zpAYvG8BWR7i5qmQYwY4MIHqYhE2DOPQWcGJBQF2XU72ZzyUeZ5GCNt5/hybJgYdAXsq5sOEE/jG6dC5IOqCXTmAAAAAElFTkSuQmCC');
  background-position: 0 50%;
  /* LTR */
  background-repeat: no-repeat;
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Pager.
 */
/* A list of page numbers when more than 1 page of content is available. */
/* line 1076, ../sass/components/_misc.scss */
.pager {
  clear: both;
  text-align: center;
  display: inline-block;
}

/* line 1082, ../sass/components/_misc.scss */
.date-nav .pager {
  display: inline;
}

/* line 1088, ../sass/components/_misc.scss */
.pager-first a,
.pager-previous a,
.pager-next a,
.pager-last a {
  font-weight: bold;
  color: #790018;
}

/* line 1093, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis,
.pager-load-next, .pager-current {
  /*  display: inline;*/
  padding: 0 0.5em;
  list-style-type: none;
  background-image: none;
}

/* line 1106, ../sass/components/_misc.scss */
.pager-item,
.pager-first,
.pager-previous,
.pager-next,
.pager-last,
.pager-ellipsis,
.pager-load-next {
  float: left;
}

/* The current page's list item. */
/* line 1112, ../sass/components/_misc.scss */
.pager-current {
  font-weight: bold;
  float: left;
}

/* line 1117, ../sass/components/_misc.scss */
.item-list {
  text-align: center;
}

/**
 * Menus.
 */
/* line 1124, ../sass/components/_misc.scss */
.menu__item.is-leaf {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHBAMAAAA2fErgAAAAD1BMVEX///+/v7+Li4sAAADAwMBFvsw8AAAAAXRSTlMAQObYZgAAAB1JREFUCFtjYAADYwMGBmYVZSDhKAwkFJWhYiAAAB2+Aa/9ugeaAAAAAElFTkSuQmCC');
  list-style-type: square;
}

/* line 1131, ../sass/components/_misc.scss */
.menu__item.is-expanded {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  list-style-type: circle;
}

/* line 1138, ../sass/components/_misc.scss */
.menu__item.is-collapsed {
  list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  list-style-type: disc;
}

/**
 * Marker.
 */
/* The "new" or "updated" marker. */
/* line 1153, ../sass/components/_misc.scss */
.new,
.update {
  color: #c00;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
}

/**
 * Unpublished note.
 */
/* The word "Unpublished" displayed underneath the content. */
/* line 1164, ../sass/components/_misc.scss */
.unpublished {
  height: 0;
  overflow: visible;
  /* Remove background highlighting from <mark> in normalize. */
  background-color: transparent;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  /* A very nice CSS3 property. */
  word-wrap: break-word;
}

/**
 * Comments.
 */
/* Wrapper for a single comment. */
/* line 1193, ../sass/components/_misc.scss */
.comment {
  /* Comment's permalink wrapper. */
}
/* line 1196, ../sass/components/_misc.scss */
.comment .permalink {
  text-transform: uppercase;
  font-size: 75%;
}

/* line 1202, ../sass/components/_misc.scss */
.comments label {
  display: none;
}

/* line 1204, ../sass/components/_misc.scss */
.comments-list {
  clear: both;
}

/* line 1208, ../sass/components/_misc.scss */
.comments .form-actions {
  float: right;
  margin-bottom: 10px;
}

/* line 1212, ../sass/components/_misc.scss */
.comment .links {
  float: right;
}
/* line 1213, ../sass/components/_misc.scss */
.comment .links li {
  border: 1px solid #ccc;
  padding: 10px 20px;
}

/* Nested comments are indented. */
/* line 1221, ../sass/components/_misc.scss */
.indented {
  /* Drupal core uses a 25px left margin. */
  margin-left: 30px;
  /* LTR */
}

/**
 * Forms.
 */
/* Wrapper for a form element (or group of form elements) and its label. */
/* line 1232, ../sass/components/_misc.scss */
.form-item {
  margin: 1.5em 0;
  /* Pack groups of checkboxes and radio buttons closer together. */
  /* Form items in a table. */
  /* Highlight the form elements that caused a form submission error. */
  /* The descriptive help text (separate from the label). */
}
/* line 1237, ../sass/components/_misc.scss */
.form-checkboxes .form-item, .form-radios .form-item {
  /* Drupal core uses "0.4em 0". */
  margin: 0;
}
/* line 1244, ../sass/components/_misc.scss */
tr.odd .form-item, tr.even .form-item {
  margin: 0;
}
/* line 1251, ../sass/components/_misc.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 1256, ../sass/components/_misc.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 1263, ../sass/components/_misc.scss */
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* The part of the label that indicates a required field. */
/* line 1269, ../sass/components/_misc.scss */
.form-required {
  color: #c00;
}

/* Labels for radios and checkboxes. */
/* line 1274, ../sass/components/_misc.scss */
label.option {
  display: inline;
  font-weight: normal;
}

/* Buttons used by contrib modules like Media. */
/* line 1280, ../sass/components/_misc.scss */
a.button {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

/* Password confirmation. */
/* line 1286, ../sass/components/_misc.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* Drupal's default login form block. */
/* line 1291, ../sass/components/_misc.scss */
#user-login-form {
  text-align: left;
  /* LTR */
}

/**
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */
/* OpenID creates a new ul above the login form's links. */
/* line 1303, ../sass/components/_misc.scss */
.openid-links {
  /* Position OpenID's ul next to the rest of the links. */
  margin-bottom: 0;
}

/* The "Log in using OpenID" and "Cancel OpenID login" links. */
/* line 1310, ../sass/components/_misc.scss */
.openid-link,
.user-link {
  margin-top: 1.5em;
}

/* line 1314, ../sass/components/_misc.scss */
html.js #user-login-form li.openid-link,
#user-login-form li.openid-link {
  /* Un-do some of the padding on the ul list. */
  margin-left: -20px;
  /* LTR */
}

/* line 1318, ../sass/components/_misc.scss */
#user-login ul {
  margin: 1.5em 0;
}

/**
 * Drupal admin tables.
 */
/* line 1326, ../sass/components/_misc.scss */
form th {
  text-align: left;
  /* LTR */
  padding-right: 1em;
  /* LTR */
  border-bottom: 3px solid #ccc;
}
/* line 1331, ../sass/components/_misc.scss */
form tbody {
  border-top: 1px solid #ccc;
}
/* line 1334, ../sass/components/_misc.scss */
form table ul {
  margin: 0;
}

/*tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}
tr.even {
  background-color: #fff;
}*/
/* Markup generated by theme_tablesort_indicator(). */
/* line 1359, ../sass/components/_misc.scss */
td.active {
  background-color: #ddd;
}

/* Center checkboxes inside table cell. */
/* line 1365, ../sass/components/_misc.scss */
td.checkbox,
th.checkbox {
  text-align: center;
}

/* Drupal core wrongly puts this in system.menus.css. Since we override that, add it back. */
/* line 1370, ../sass/components/_misc.scss */
td.menu-disabled {
  background: #ccc;
}

/* line 1374, ../sass/components/_misc.scss */
.width-5 {
  width: 5%;
}

/* line 1377, ../sass/components/_misc.scss */
.width-10 {
  width: 10%;
}

/* line 1380, ../sass/components/_misc.scss */
.width-15 {
  width: 15%;
}

/* line 1383, ../sass/components/_misc.scss */
.width-20 {
  width: 20%;
}

/* line 1386, ../sass/components/_misc.scss */
.width-25 {
  width: 25%;
}

/* line 1389, ../sass/components/_misc.scss */
.width-30 {
  width: 30%;
}

/* line 1392, ../sass/components/_misc.scss */
.width-35 {
  width: 35%;
}

/* line 1395, ../sass/components/_misc.scss */
.width-40 {
  width: 40%;
}

/* line 1398, ../sass/components/_misc.scss */
.width-45 {
  width: 45%;
}

/* line 1401, ../sass/components/_misc.scss */
.width-50 {
  width: 50%;
}

/* line 1404, ../sass/components/_misc.scss */
.width-60 {
  width: 60%;
}

/* line 1410, ../sass/components/_misc.scss */
.page-node-translate table,
.admin-view table {
  margin-top: 20px;
  padding: 5px;
  background: #fff;
  width: 100%;
  border: 1px solid #ddd;
}
/* line 1416, ../sass/components/_misc.scss */
.page-node-translate table th,
.admin-view table th {
  background: #f4f4f4;
}
/* line 1419, ../sass/components/_misc.scss */
.page-node-translate table td,
.admin-view table td {
  padding: 10px;
  border: 1px solid #ddd;
}
/* line 1423, ../sass/components/_misc.scss */
.page-node-translate table a,
.admin-view table a {
  color: #790018;
}

/* Admin */
/* line 1432, ../sass/components/_misc.scss */
.page-node-translate label,
.page-node-add label,
.page-node-edit label {
  display: block;
}
/* line 1435, ../sass/components/_misc.scss */
.page-node-translate label.option,
.page-node-add label.option,
.page-node-edit label.option {
  display: inline;
}
/* line 1442, ../sass/components/_misc.scss */
.page-node-translate input.form-autocomplete,
.page-node-translate input.form-text,
.page-node-translate input.form-file,
.page-node-translate textarea.form-textarea,
.page-node-translate select.form-select,
.page-node-add input.form-autocomplete,
.page-node-add input.form-text,
.page-node-add input.form-file,
.page-node-add textarea.form-textarea,
.page-node-add select.form-select,
.page-node-edit input.form-autocomplete,
.page-node-edit input.form-text,
.page-node-edit input.form-file,
.page-node-edit textarea.form-textarea,
.page-node-edit select.form-select {
  padding: 2px;
  border: 1px solid #ccc;
  border-top-color: #999;
  background: #fff;
  color: #333;
}

/* line 1452, ../sass/components/_misc.scss */
.page-admin #content a {
  color: #790018;
}
/* line 1455, ../sass/components/_misc.scss */
.page-admin #content a:hover {
  opacity: 0.7;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list. */
/* line 1466, ../sass/components/_misc.scss */
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 1477, ../sass/components/_misc.scss */
html.js .collapsible .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABJJREFUeJxj+MdQw2DBIMAABgAUsAHD3c3BpwAAAABJRU5ErkJggg==');
  background-position: 5px 65%;
  /* LTR */
  background-repeat: no-repeat;
  padding-left: 15px;
  /* LTR */
}
/* line 1486, ../sass/components/_misc.scss */
html.js .collapsed .fieldset-legend {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHAQMAAAD+nMWQAAAABlBMVEX///8AAABVwtN+AAAAAXRSTlMAQObYZgAAABFJREFUCB1jVmCGQClmEWYOAAZ8AMy3HPLXAAAAAElFTkSuQmCC');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}
/* line 1493, ../sass/components/_misc.scss */
.fieldset-legend .summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 1505, ../sass/components/_misc.scss */
tr.drag {
  background-color: #fffff0;
}

/* line 1508, ../sass/components/_misc.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 1511, ../sass/components/_misc.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
 */
/* line 1520, ../sass/components/_misc.scss */
tr.selected td {
  background: #ffc;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 1529, ../sass/components/_misc.scss */
.progress {
  font-weight: bold;
}
/* line 1532, ../sass/components/_misc.scss */
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
}
/* line 1538, ../sass/components/_misc.scss */
.progress .filled {
  background-color: #0072b9;
  background-image: url('../images/progress.gif?1405733027');
}

/* line 1544, ../sass/components/_misc.scss */
a {
  text-decoration: none;
  color: #666;
}

/* line 1549, ../sass/components/_misc.scss */
ul.menu li {
  list-style: none outside none !important;
}

/* line 1553, ../sass/components/_misc.scss */
#skip-link {
  display: none;
}

/* line 1557, ../sass/components/_misc.scss */
em {
  font-style: normal;
}

/* Page More */
/* line 1562, ../sass/components/_misc.scss */
.pager-load-more {
  width: 100%;
  clear: both;
  background: #e3d7c4;
  border-left: 1px solid #e3d7c4;
  border-right: 1px solid #e3d7c4;
  position: absolute;
  left: 0;
}

/* line 1571, ../sass/components/_misc.scss */
.pager-load-more a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 10px 0;
}

/* line 1577, ../sass/components/_misc.scss */
.pager-load-more a:after {
  content: "";
  background-image: url('../images/read-more.png?1406256446');
  position: absolute;
}

/* line 1582, ../sass/components/_misc.scss */
.pager-load-more .pager-load-next {
  float: none;
}

/*
 * 896px ~ 1152px
 */
@media all and (min-width: 896px) and (max-width: 1152px) {
  /* Wrapper */
  /* .header-wrapper{
      padding: 0;
   }
   #underline {
      border-bottom: 1px solid #b0b0b0;
      position: relative;
      top: 65px;
   }
   .header__logo {
      padding:  $half_zen_gutter $zen_gutter;
   }*/
  /* line 1605, ../sass/components/_misc.scss */
  .main-wrapper {
    padding: 0 20px;
  }

  /* line 1610, ../sass/components/_misc.scss */
  #outer {
    margin-top: 0;
  }
  /* line 1612, ../sass/components/_misc.scss */
  #outer .block {
    margin: 0 !important;
    background: none  !important;
  }

  /* line 1617, ../sass/components/_misc.scss */
  #inner {
    margin: 0 5px;
  }

  /* line 1620, ../sass/components/_misc.scss */
  .region-program {
    margin-bottom: 5px;
  }
  /* line 1622, ../sass/components/_misc.scss */
  .region-program .block-wrapper {
    margin: 10px;
  }

  /* line 1627, ../sass/components/_misc.scss */
  .region-content-1-3 .view-wrapper {
    padding: 15px 0;
    border-bottom: none;
  }
  /* line 1631, ../sass/components/_misc.scss */
  .region-content-1-3 .block {
    margin-bottom: 5px !important;
   /* border-bottom: 1px solid #ddd !important;*/
  }

  /* line 1637, ../sass/components/_misc.scss */
  .region-content-2-3 .block {
    margin: 5px  !important;
    border: 1px solid #ddd !important;
  }

  /* line 1642, ../sass/components/_misc.scss */
  .region-sildes {
    margin-bottom: 5px;
  }

  /* frame */
  /* line 1647, ../sass/components/_misc.scss */
  .node-header {
    margin: 10px;
  }

  /* line 1652, ../sass/components/_misc.scss */
  #comments,
  .node-body,
  .panel-pane {
    margin: 10px;
  }

  /* line 1656, ../sass/components/_misc.scss */
  .not-front #content .block {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  /* line 1659, ../sass/components/_misc.scss */
  .not-front #content .block .block-title {
    display: inline-block;
    font-size: 16px;
    line-height: 22px;
    color: #790018;
  }

  /* line 1664, ../sass/components/_misc.scss */
  .not-front #content .block.slider {
    margin: 0px;
  }

  /* line 1667, ../sass/components/_misc.scss */
  .panel-pane .pane-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 22px;
    color: #790018;
  }

  /* Block */
  /* line 1674, ../sass/components/_misc.scss */
  .front #main .block .block-wrapper {
    padding: 5px 10px;
  }
  /* line 1677, ../sass/components/_misc.scss */
  .front #main .block .block-title {
    display: inline-block;
    margin-top: 10px;
  }

  /* line 1682, ../sass/components/_misc.scss */
  .front #main .block {
    margin: 5px;
  }

  /* line 1683, ../sass/components/_misc.scss */
  .blocktitle a::after {
    top: 5px;
  }
  .region-content-1-3 .blocktitle a::after{
  	top:7px;
  }
  /**
   * Views
   */
  /* line 1689, ../sass/components/_misc.scss */
  .not-front .view-slider {
    margin-top: 2px;
  }

  /* line 1697, ../sass/components/_misc.scss */
  .view-quick-link .view-wrapper,
  .views-column-1 .views-row-1 .view-wrapper:first-child,
  .views-row:first-child .views-column .view-wrapper:first-child,
  .views-row:first-child .views-column-1 .view-wrapper:first-child,
  .views-responsive-grid:first-child .views-row-line:first-child .views-column .view-wrapper:first-child {
    padding-top: 10px;
  }

  /*
   * Cotent
   */
  /* line 1703, ../sass/components/_misc.scss */
  #content-wrapper {
    padding: 0px 0 30px 0 !important;
  }

  /* line 1706, ../sass/components/_misc.scss */
  #content .block {
    margin: 0 10px;
  }

  /* line 1709, ../sass/components/_misc.scss */
  .not-front .flexslider {
    margin-top: 0px;
  }

  /**
   * Comments.
   */
  /* line 1716, ../sass/components/_misc.scss */
  #comments {
    margin: 10px;
  }

  /*
   * Bottom
   */
  /* line 1722, ../sass/components/_misc.scss */
  #bottom {
    margin-top: 50px !important;
  }

  /* line 1725, ../sass/components/_misc.scss */
  .bottom-wrapper {
    padding: 0 20px;
  }

  /* line 1728, ../sass/components/_misc.scss */
  #bottom #block-system-navigation {
    margin-top: 10px;
  }

  /* line 1731, ../sass/components/_misc.scss */
  #bottom #block-system-navigation ul.menu li {
    float: left;
    padding: 12px 0;
  }

  /* line 1735, ../sass/components/_misc.scss */
  #bottom #block-system-navigation ul.menu li a {
    padding: 0 1.4em;
    border-right: 1px solid #444;
  }

  /*
   * Footer
   */
  /* line 1743, ../sass/components/_misc.scss */
  #footer {
    padding-bottom: 26px;
  }

  /* line 1746, ../sass/components/_misc.scss */
  .i18n-en.front #footer {
    margin-top: 20px;
  }

  /* line 1749, ../sass/components/_misc.scss */
  #block-menu-menu-footer-menu li {
    margin: 5px;
  }

  /* line 1752, ../sass/components/_misc.scss */
  .panels-flexible-region-inside-first {
    padding-right: 0px !important;
  }

  /* line 1755, ../sass/components/_misc.scss */
  .region-footer-3 {
    position: absolute;
    bottom: -15px;
  }
}
/*
 * 544px ~ 896px
 */
@media (max-width: 712px) and (min-width: 650px){
  .quick-link-wrapper_main li.quick-row {
    width: 49%;
  }
  .quick-link-wrapper_main li.quick-row {
    border-bottom: 1px solid rgba(123,0,24,.1);
  }
  .quick-link-wrapper_main li:nth-of-type(9){
    border-bottom:none;
  }
}
@media all and (min-width: 650px) and (max-width: 896px) {
/*srch, header*/
.header-wrapper .header_region{top:7px;}
.header-wrapper .srch{top:12px; left:15px;}
.header__region{top:5px;}
  /* line 1767, ../sass/components/_misc.scss */
  #underline {
    border-bottom: 1px solid #b0b0b0;
    position: relative;
    top: 59px;
  }

  /* line 1772, ../sass/components/_misc.scss */
  #outer {
    margin-top: 0;
  }
  /* line 1774, ../sass/components/_misc.scss */
  #outer .block {
    margin: 0 !important;
  }

  /* line 1776, ../sass/components/_misc.scss */
  #inner {
    margin: 0 5px;
  }

  /* line 1779, ../sass/components/_misc.scss */
  .region-program {
    margin-bottom: 10px;
  }

  /* line 1782, ../sass/components/_misc.scss */
  .region-sildes {
    margin-bottom: 5px;
  }

  /* Header */
  /* line 1786, ../sass/components/_misc.scss */
  .header-wrapper {
    padding: 0;
  }

  /* line 1790, ../sass/components/_misc.scss */
  .header__logo {
    padding: 10px;
    
  }
  .header__logo-image{
  	position:relative;
  	bottom:7px;
  }
  /* frame */
  /* line 1794, ../sass/components/_misc.scss */
  .node-header {
    margin: 10px;
  }

  /* line 1799, ../sass/components/_misc.scss */
  #comments,
  .node-body,
  .panel-pane {
    margin: 10px;
  }

  /* line 1803, ../sass/components/_misc.scss */
  .not-front #content .block {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  /* line 1806, ../sass/components/_misc.scss */
  .not-front #content .block .block-title {
    display: inline-block;
    font-size: 16px;
    line-height: 22px;
    color: #790018;
  }

  /* line 1811, ../sass/components/_misc.scss */
  .not-front #content .block.slider {
    margin: 0px;
  }

  /* line 1814, ../sass/components/_misc.scss */
  .panel-pane .pane-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 22px;
    color: #790018;
  }

  /* Block */
  /* line 1820, ../sass/components/_misc.scss */
  .front #main .block .block-wrapper {
    padding: 5px 10px;
  }
  /* line 1823, ../sass/components/_misc.scss */
  .front #main .block .block-title {
    display: inline-block;
    margin-top: 15px;
  }

  /* line 1829, ../sass/components/_misc.scss */
  .front #main .block {
    margin: 5px;
  }

  /* line 1833, ../sass/components/_misc.scss */
 
  .region-content-2-3 .block .block-wrapper {
    padding: 5px 10px !important;
  }

  /* line 1839, ../sass/components/_misc.scss */
  .region-content-1-3 .view-wrapper {
    padding: 15px 0;
    border-bottom: none;
  }
  /* line 1843, ../sass/components/_misc.scss */
  .region-content-1-3 .block {
    margin-bottom: 5px !important;
/*    border-bottom: 1px solid #ddd !important;*/
  }

  /* line 1849, ../sass/components/_misc.scss */
  .region-content-2-3 .block {
    margin: 5px  !important;
    border: 1px solid #ddd !important;
  }

  /* line 1854, ../sass/components/_misc.scss */
  .blocktitle a::after {
    top: 5px;
  }
.region-content-1-3 .blocktitle a::after{
	top:7px
}
  /*
   * Cotent
   */
  /* line 1860, ../sass/components/_misc.scss */
  #content-wrapper {
    padding: 0px 0 30px 0 !important;
  }

  /* line 1863, ../sass/components/_misc.scss */
  #content .block {
    margin: 0 10px;
  }

  /* line 1866, ../sass/components/_misc.scss */
  .not-front .flexslider {
    margin-top: 0px;
  }

  /**
   * Views
   */
  /* line 1872, ../sass/components/_misc.scss */
  .not-front .view-slider {
    margin-top: 2px;
  }

  /* line 1880, ../sass/components/_misc.scss */
  .view-quick-link .view-wrapper,
  .views-column-1 .views-row-1 .view-wrapper:first-child,
  .views-row:first-child .views-column .view-wrapper:first-child,
  .views-row:first-child .views-column-1 .view-wrapper:first-child,
  .views-responsive-grid:first-child .views-row-line:first-child .views-column .view-wrapper:first-child {
    padding-top: 10px;
  }

  /**
   * Comments.
   */
  /* line 1886, ../sass/components/_misc.scss */
  #comments {
    margin: 10px;
  }

  /**
   * Bottom
   */
  /* line 1892, ../sass/components/_misc.scss */
  #bottom {
    margin-top: 50px !important;
  }

  /* line 1895, ../sass/components/_misc.scss */
  .bottom-wrapper {
    padding: 0 10px;
  }

  /* line 1898, ../sass/components/_misc.scss */
  #block-menu-menu-footer-menu li {
    margin: 5px;
  }

  /* line 1901, ../sass/components/_misc.scss */
  #bottom #block-system-navigation {
    margin-top: 30px;
  }

  /* line 1904, ../sass/components/_misc.scss */
  #bottom #block-system-navigation ul.menu li {
    float: left;
    padding: 16px 0;
  }

  /* line 1908, ../sass/components/_misc.scss */
  #bottom #block-system-navigation ul.menu li a {
    padding: 0 1em;
    border-right: 1px solid #444;
  }

  /*
   * Footer
   */
  /* line 1915, ../sass/components/_misc.scss */
  #footer {
    padding-bottom: 26px;
  }

  /* line 1918, ../sass/components/_misc.scss */
  .i18n-en.front #footer {
    margin-top: 20px;
  }

  /* line 1921, ../sass/components/_misc.scss */
  .panels-flexible-region-inside-first {
    padding-right: 0px !important;
  }

  /* line 1924, ../sass/components/_misc.scss */
  .region-footer-3 {
    position: absolute;
    bottom: -15px;
  }
}
/*
 * ~ 650
 */
@media all and (max-width: 650px) {
  /* line 1935, ../sass/components/_misc.scss */
  body {
    background: #fff !important;
  }

  /* Header */
  /* line 1939, ../sass/components/_misc.scss */
  .main-header {
    padding: 15px 0;
  }

  /* line 1942, ../sass/components/_misc.scss */
  .header-top {
    display: none;
  }

  /* Block */
  /* line 1946, ../sass/components/_misc.scss */
  .front .block .block-wrapper {
    padding: 10px 10px 5px 10px;
  }

  /* line 1949, ../sass/components/_misc.scss */
  #outer {
    margin-top: 0;
  }
  /* line 1951, ../sass/components/_misc.scss */
  #outer .block {
    margin: 0 !important;
  }

  /* line 1953, ../sass/components/_misc.scss */
  .front #main .block {
    margin: 0px;
    border: none;
/*    border-top: 1px solid #ddd;*/
  }
  /* line 1957, ../sass/components/_misc.scss */
  .front #main .block .block-wrapper {
    padding: 10px 10px 5px 10px;
  }
  /* line 1960, ../sass/components/_misc.scss */
  .front #main .block .block-title {
    margin: 5px 0 0 0;
  }

  /* line 1966, ../sass/components/_misc.scss */
  .region-content-1-3 .block .block-wrapper,
  .region-content-2-3 .block .block-wrapper {
    padding: 10px 10px 5px 10px !important;
  }

  /* line 1970, ../sass/components/_misc.scss */
  .region-content-2-3 .block {
    border-top: 1px solid #ddd !important;
  }

  .front #main .region-content-1-3 #block-block-5{
  	padding: 0 10px 15px 10px;
  }
  /* line 1974, ../sass/components/_misc.scss */
  .region-footer-2 {
    margin-top: 5px;
    position: relative;
    top: 0px;
  }

  /* line 1979, ../sass/components/_misc.scss */
  .blocktitle a::after {
    top: 5px;
  }

  /* frame */
  /* line 1983, ../sass/components/_misc.scss */
  .node-header {
    margin-top: 0px;
  }

  /* line 1988, ../sass/components/_misc.scss */
  #comments,
  .node-body,
  .panel-pane {
    margin: 0;
    padding: 15px;
    border: none;
  }

  /* line 1993, ../sass/components/_misc.scss */
  .not-front #content .block {
    padding: 5px 10px;
    margin-top: 0px;
    border: none;
    border-top: 1px solid #ddd;
  }
  /* line 1998, ../sass/components/_misc.scss */
  .not-front #content .block .block-title {
    display: inline-block;
  }

  /* line 2004, ../sass/components/_misc.scss */
  .not-front #content .block
  .panel-pane .pane-title {
    margin: 0 0 10px 0;
  }

  /* line 2007, ../sass/components/_misc.scss */
  .panel-pane {
    border-top: 1px solid #ddd;
    top: -2px;
  }

  /* line 2011, ../sass/components/_misc.scss */
  #content-wrapper {
    padding: 0px !important;
  }

  /* line 2014, ../sass/components/_misc.scss */
  #content-header {
    clear: both;
    padding: 0;
    margin: 0;
  }

  /* line 2019, ../sass/components/_misc.scss */
  .node-title {
    width: 100%;
  }

  /* line 2022, ../sass/components/_misc.scss */
  .node-info {
    float: none;
    position: relative;
    top: 0px;
    margin-bottom: 0px;
  }

  /* line 2028, ../sass/components/_misc.scss */
  .pane-node-body {
    padding: 10px;
  }

  /* line 2032, ../sass/components/_misc.scss */
  .pane-node-body,
  .not-front .flexslider {
    margin-top: 2px;
  }

  /**
   * Views
   */
  /* line 2041, ../sass/components/_misc.scss */
  .views-column-1 .views-row-1 .view-wrapper:first-child,
  .views-row:first-child .views-column-1 .view-wrapper:first-child,
  .views-row:first-child .views-column:first-child .view-wrapper:first-child,
  .views-responsive-grid:first-child .views-row-line:first-child .views-column:first-child .view-wrapper:first-child {
    padding-top: 7px;
  }

  /* line 2047, ../sass/components/_misc.scss */
  .views-row:not(:last-child) .view-wrapper,
  .views-row-line:not(:last-child) .view-wrapper {
    border-bottom: 1px solid #ddd !important;
  }

  /* line 2054, ../sass/components/_misc.scss */
  .views-board-row .views-column:not(:last-child) .view-wrapper,
  .views-row .views-column:not(:last-child) .view-wrapper,
  .views-row-line .views-column:not(:last-child) .view-wrapper {
    border-bottom: 1px solid #ddd !important;
  }

  /* line 2058, ../sass/components/_misc.scss */
  .not-front .view-board .views-board-row:nth-child(2n) {
    background: none;
  }

  /* line 2061, ../sass/components/_misc.scss */
  .not-front .view-board .views-column:nth-child(2n) {
    background: #F9F9F9;
  }

  /**
   * Comments.
   */
  /* line 2068, ../sass/components/_misc.scss */
  #comments {
    padding: 10px;
  }

  /**
   * Bottom & Footer
   */
  /* line 2074, ../sass/components/_misc.scss */
  #bottom {
    margin: 20px 0 0 0;
    padding: 20px 0 0 0;
  }

  /* line 2078, ../sass/components/_misc.scss */
  #bottom-logo {
    margin: 0px;
  }

  /* line 2081, ../sass/components/_misc.scss */
  #footer {
    margin-top: 10px;
    padding: 10px 0;
    background: #f4f4f4;
  }
  /* line 2083, ../sass/components/_misc.scss */
  #footer .block .block-wrapper {
    padding: 0px;
  }

  /* line 2089, ../sass/components/_misc.scss */
  #footer img {
    width: 35px;
  }

  /* line 2093, ../sass/components/_misc.scss */
  #footer-img .img1,
  #footer-img .img2 {
    width: 20%;
    float: left;
  }
  #footer-img .img3 {margin-top:10px;}

  /* line 2098, ../sass/components/_misc.scss */
  #bottom .block .block-wrapper {
    padding: 10px 0 0 0;
  }

  /* line 2103, ../sass/components/_misc.scss */
  #block-menu-menu-footer-menu {
    margin-top: 5px;
    float: right;
  }

  /* line 2108, ../sass/components/_misc.scss */
  #block-menu-menu-footer-menu li {
    margin: 0 0.3em 0 0;
  }

  /* line 2112, ../sass/components/_misc.scss */
  #block-menu-menu-footer-menu li a {
    background: #484848;
    padding: 5px;
  }

  /* line 2116, ../sass/components/_misc.scss */
  .not-front #bottom {
    margin-top: 20px;
  }

  /**
   * Page Load 
   */
  /* line 2122, ../sass/components/_misc.scss */
  .pager-load-more {
    position: relative;
    border: none;
  }

  /* Display None */
  /* line 2132, ../sass/components/_misc.scss */
  #header,
  #block-menu-menu-program,
  #block-menu-menu-news,
  #block-menu-menu-subsystem,
  #block-menu-menu-support,
  #block-system-navigation {
    display: none;
  }

  /* Web form */
  /* line 2136, ../sass/components/_misc.scss */
  .webform-client-form label {
    width: 100%;
    padding-left: 0px;
    margin-bottom: 10px;
  }

  /* line 2142, ../sass/components/_misc.scss */
  .webform-client-form [type="text"],
  .webform-client-form input[type="email"] {
    width: 100%;
  }

  /* line 2145, ../sass/components/_misc.scss */
  .webform-client-form textarea {
    margin-top: 0px;
  }

  /* line 2148, ../sass/components/_misc.scss */
  #contact-personal-form {
    padding: 10px;
  }
  /* line 2150, ../sass/components/_misc.scss */
  #contact-personal-form label {
    width: 100%;
  }
  /* line 2153, ../sass/components/_misc.scss */
  #contact-personal-form .form-text {
    width: 100%;
  }

  /* Admin */
  /* line 2161, ../sass/components/_misc.scss */
  .page-node-add .vertical-tabs,
  .page-node-add .form-field-type-file,
  .page-node-edit .vertical-tabs,
  .page-node-edit .form-field-type-file {
    display: none;
  }

  /* line 2171, ../sass/components/_misc.scss */
  .admin-view table td:nth-child(2),
  .admin-view table td:nth-child(3),
  .admin-view table th:nth-child(2),
  .admin-view table th:nth-child(3) {
    display: none;
  }
  /* line 2174, ../sass/components/_misc.scss */
  .admin-view table th {
    text-align: center;
  }
}
/* line 2181, ../sass/components/_misc.scss */
#main-menu {
  display: none !important;
  width: 0%;
  height: 0%;
  margin: 0;
  padding: 0;
}

/* line 2189, ../sass/components/_misc.scss */
ul.pager {
  padding: 0;
  margin: 0;
}

/* CDC */
/* line 2196, ../sass/components/_misc.scss */
#block-views-side-banner-view-block {
  color: #fff;
  background: #b05869 url('../images/cdc-banner.png') no-repeat top right !important;
}
/* line 2199, ../sass/components/_misc.scss */
#block-views-side-banner-view-block a {
  color: #fff;
}
/* line 2200, ../sass/components/_misc.scss */
#block-views-side-banner-view-block .views-field-title {
  font-size: 18px;
  line-height: 32px;
  font-family: "Nanum Gothic Bold", Verdana;
}
/* line 2205, ../sass/components/_misc.scss */
#block-views-side-banner-view-block .views-field-body {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
}
/* line 2208, ../sass/components/_misc.scss */
#block-views-side-banner-view-block .views-field-body p {
  margin: 0px;
}

/**
 * @file
 * Print styling
 *
 * We provide some sane print styling for Drupal using Zen's layout method.
 */
/**
 * By importing this CSS file as media "all", we allow this print file to be
 * aggregated with other stylesheets, for improved front-end performance.
 */
@media print {
  /* Underline all links. */
  /* line 16, ../sass/_print.scss */
  a:link,
  a:visited {
    text-decoration: underline !important;
    /* Don't underline header. */
  }
  /* line 20, ../sass/_print.scss */
  a:link.header__site-link,
  a:visited.header__site-link {
    text-decoration: none !important;
  }

  /* line 25, ../sass/_print.scss */
  #content {
    /* Add visible URL after links. */
    /* Only display useful links. */
    /* Add visible title after abbreviations. */
  }
  /* line 27, ../sass/_print.scss */
  #content a[href]:after {
    content: " (" attr(href) ")";
    font-weight: normal;
    font-size: 16px;
  }
  /* line 35, ../sass/_print.scss */
  #content a[href^="javascript:"]:after,
  #content a[href^="#"]:after {
    content: "";
  }
  /* line 40, ../sass/_print.scss */
  #content abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* Un-float the content. */
  /* line 46, ../sass/_print.scss */
  #content {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Turn off any background colors or images. */
  /* line 57, ../sass/_print.scss */
  body,
  #page,
  #main,
  #content {
    color: #000;
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Hide sidebars and nav elements. */
  /* line 77, ../sass/_print.scss */
  #skip-link,
  #toolbar,
  #navigation,
  .region-sidebar-first,
  .region-sidebar-second,
  #footer,
  .breadcrumb,
  .tabs,
  .action-links,
  .links,
  .book-navigation,
  .forum-topic-navigation,
  .pager,
  .feed-icons {
    visibility: hidden;
    display: none;
  }
}
/* SMACSS theme rules */
/* @import "theme-A"; */
/* @import "theme-B"; */

/* 170309 메인 페이지 블록의 공지사항과 칼렌더의 높이 맞춤을 위한 임시 margin */
#block-views-event-block .block__title {
	margin-bottom:26px !important;
}

.pane-views-link-button-bar-block-12 {
	background-color: #f0f1f1;
    border: 0px;
}

.pane-views-link-button-bar-block-13 {
	background-color: #f0f1f1 !important;
    border: 0px !important;
}

.view-display-id-block_12 .button {
	margin-top: 0px !important;
	margin-right: -20px !important;
}

.view-display-id-block_13 .button {
	margin-top: 0px !important;
	margin-right: -20px !important;
}

/** 17.03.21 상단메뉴를 고정하기 위한 CSS */
.kubs_menu_fixed{
    width:100%;
    position:fixed;
    z-index:99999;
    top:0px;
    left:0px;
	transition: top 0.4s ease-in-out;
}

.menu-468 {
	display:none !important;
}
/*
@media (min-width:897px ) and (max-width: 1151px){
	.mainbg, .main-header {
    	margin-top: 77px;
 	}
}
@media (min-width:651px ) and (max-width: 896px){
	.mainbg, .main-header {
    	margin-top: 109px;
 	}
}
@media (max-width: 650px){
	.mainbg, .main-header {
    margin-top: 0;
 }
}
*/

.login_icon {
	margin-top: 27px;
	margin-right: 20px;
}
