
/*
  目次
    01.reset
    02.layout <全ページ共通>
    03.responsive <各ディスプレイ・タブレット・スマホ 768 ~ 1920>
  window      width
  768 ~ 1024  .main_column  800px
  1025 ~      .main_column  960px
  */

/* ---------------------------------------------
   01.reset
   --------------------------------------------- */


.global_guide_trigger_base {
  display: none;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
body {
  color: #333;
  background: #fff;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ',
    Meiryo, 'ＭＳ Ｐゴシック', '游ゴシック Medium', 'Yu Gothic ', '游ゴシック体',
    YuGothic, '游ゴシック体', sans-serif;
  font-size: 15px;
  line-height: 170%;
}
table {
  background: #f0f0ed;
  border-collapse: collapse;
  width: 100%;
}
th,
td {
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #dbdbdb;
}
th {
  background: #ededed;
  font-weight: normal;
  text-align: left;
}
td {
  background: #fff;
}
fieldset,
img {
  border: 0;
}
ul {
  list-style-type: none;
}
a {
  transition: all 0.2s ease;
  color: #0083ce;
}
a:visited {
  color: #624388;
}
a:hover {
  color: #0093e7;
  text-decoration: none;
}
/* input */
input[type='text'],
input[type='search'],
input[type='email'],
textarea {
  border: 1px solid #c8c8c8;
  border-radius: 5px;
  position: relative;
  background: #fff;
  line-height: 160%;
  padding: 4px 3px 4px 3px;
  font-size: 100%;
}
input[type='text']:hover,
[type='password']:hover,
textarea:hover,
input[type='text']:focus,
[type='password']:focus,
textarea:focus {
  background: #f1f1f1;
}
input[type='submit'] {
  border: 1px solid #c8c8c8;
  border-radius: 5px;
  background: #f1f1f1;
  line-height: 160%;
  padding: 4px 6px 4px 6px;
}
hr {
  border: solid #dbdbdb;
  border-width: 1px 0 0 0;
}
a img:focus,
a img:hover {
  filter: alpha(opacity=8);
  -moz-opacity: 0.8;
  opacity: 0.8;
}
p {
  margin: 20px 0;
}

/* ---------------------------------------------
   02.layout
   --------------------------------------------- */

.wrapper {
  overflow: hidden;
  min-height: 650px;
}

/* global_guide */
.global_guide {
  position: fixed;
  top: 0;
  left: 0;
  font-size: 15px;
  /*
  height:100%;
  */
  line-height: 110%;
  background: #fff;
  z-index: 100;
  /*
  width:250px;
  */
  width: 280px;
}
.global_guide p {
  margin: 0;
}
.global_guide .head {
  box-sizing: border-box;
  padding: 5px 0 0 30px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .global_guide .head {
    padding-left: 10px;
  }
}
.global_guide .head img {
  width: 100%;
  max-width: 180px;
  vertical-align: bottom;
}
.global_guide .global_navi li div {
  display: none;
}
.global_guide .global_navi ul li:last-child {
  padding-bottom: 30px;
}
.global_guide .global_navi div {
  position: fixed;
  top: 0;
  left: 0;
  /*
  width:250px;
  */
  width: 280px;
  height: 100%;
  padding-top: 20px;
  z-index: 20;
}
.global_guide .global_navi div > ul {
  height: 100%;
  overflow: auto;
}
.global_guide .global_navi > li:first-child {
  margin-top: 10px;
}
.global_guide ul li {
  position: relative;
}
.global_guide ul a,
.global_guide ul p {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 11px 16px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}
.global_guide .nav_level1 a,
.global_guide .nav_level2 a,
.global_guide .nav_level3 a,
.global_guide .nav_level4 a,
.global_guide .nav_level1 p,
.global_guide .nav_level2 p,
.global_guide .nav_level3 p,
.global_guide .nav_level4 p {
  color: #f0f0f0;
  background-image: url(/images/top/arrow_white.png);
  background-repeat: no-repeat;
  background-position: 93% 50%;
  background-size: auto 15px;
}
.global_guide ul.global_navi > li > a,
.global_guide ul.global_navi > li > p {
  background-image: url(/images/top/arrow_gray.png);
  background-repeat: no-repeat;
  background-position: 92% 50%;
  background-size: auto 15px;
  padding-left: 30px;
}
.global_guide ul a:hover,
.global_guide ul.global_navi > li > a:hover,
.global_guide ul p:hover,
.global_guide ul.global_navi > li > p:hover {
  background-color: #000000;
  background-position: 97% 50%;
  color: #fff;
}
.global_guide div.nav_level1 {
  left: 280px;
  background-color: #000000;
}
.global_guide div.nav_level1 a:hover,
.global_guide div.nav_level1 p:hover {
  background-color: #262626;
}
.global_guide div.nav_level2 {
  left: 560px;
  background-color: #262626;
}
.global_guide div.nav_level2 a:hover,
.global_guide div.nav_level2 p:hover {
  background-color: #373737;
}
.global_guide div.nav_level3 {
  left: 750px;
  background-color: #373737;
}
.global_guide div.nav_level3 a:hover,
.global_guide div.nav_level3 p:hover {
  background-color: #535353;
}
.global_guide div.nav_level4 {
  left: 1030px;
  background-color: #434343;
}
.global_guide div.nav_level4 a:hover,
.global_guide div.nav_level4 p:hover {
  background-color: #515151;
}
.tip {
  font-size: 11px;
  line-height: 100%;
  display: inline-block;
  padding: 2px 4px;
  font-weight: bold;
  color: #333;
  border-radius: 3px;
  /*
  position:absolute;
  bottom:0;
  left:16px;
  */
}
.tip_yellow {
  background: #fec500;
}
.tip_blue {
  background: #6dc8fb;
}
.tip_red {
  background: #ff3b3b;
}
.global_guide_foot {
  box-sizing: border-box;
  padding: 15px 28px;
  padding-bottom: 30px;
}
.global_guide_foot img {
  vertical-align: bottom;
}
.global_guide_contact,
.global_guide_corporate {
  text-align: center;
}
.global_guide_contact img {
  width: 100%;
  max-width: 224px;
}
.global_guide_corporate img {
  padding-top: 5px;
  width: 100%;
  max-width: 224px;
}
.global_guide_regist {
  padding-top: 50px;
  position: relative;
  z-index: 10;
}
.global_guide_regist a.catch {
  display: inline-block;
  text-align: center;
  font-size: 13px;
  position: absolute;
  top: 18px;
  left: 50%;
  width: 180px;
  margin-left: -90px;
  background: rgba(0, 0, 0, 0.9);
  box-sizing: border-box;
  padding: 5px 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
}
.global_guide_regist a.catch:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  margin-left: -8px;
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
}
.global_guide_regist a.catch span {
  color: #fff600;
}
.global_guide_regist a.catch:hover {
  background: rgba(0, 0, 0, 0.7);
}
.global_guide_regist a.regist_btn {
  color: #fff;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
  background-color: #0083ce;
  background-image: url(/images/top/arrow_white.png);
  background-repeat: no-repeat;
  background-position: 92% 50%;
  background-size: auto 15px;
  display: block;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  padding: 13px 0;
  margin: 0 0 10px;
}
.global_guide_regist a.regist_btn:hover {
  background-color: #0ca7ff;
  background-position: 96% 50%;
}
.global_guide_login a {
  color: #6b6b6b;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
  background-color: #f3f3f3;
  background-image: url(/images/top/global_guide_login.png);
  background-repeat: no-repeat;
  background-position: 20% 50%;
  background-size: auto 15px;
  display: block;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  padding: 13px 0;
}
.global_guide_login a:hover {
  background-color: #fff;
  background-position: 20% 50%;
  background-size: auto 15px;
  background-image: url(/images/top/global_guide_login_release.png);
}
.global_guide_mypage a {
  color: #fff;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
  background-color: #0083ce;
  background-image: url(/images/top/global_guide_mypage.png);
  background-repeat: no-repeat;
  background-position: 20% 50%;
  background-size: auto 32px;
  display: block;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  padding: 24px 0;
  margin: 20px 0 10px;
}
.global_guide_mypage a:hover {
  background-color: #0ca7ff;
}
.main_column {
  max-width: 960px;
  margin-left: 260px;
  padding: 0 10px 0 30px;
}

/* index slide */
.bxslider_wrapper {
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .bxslider_wrapper {
    margin-left: 200px;
  }
}
.bx-wrapper {
  margin-left: 0;
}
.bx-pager {
  width: 100%;
}
.bx-pager .bx-clone {
}
.bxslider_base {
  /*
  position:absolute;
  top:0;
  left:0;
  text-align:left;
  line-height:100%;
  z-index:1;
  */
}
.bx-wrapper {
  margin-left: 260px;
}
.bxslider_base .bx-viewport img {
  width: 95%;
  max-width: 920px;
  vertical-align: bottom;
}
@media screen and (max-width: 1200px) {
  .bxslider_base .bx-viewport img {
  }
}
.bx-pager-item {
  margin-top: 5px;
  width: 70px;
  display: inline-block;
  border-right: 1px solid #fff;
}
.bx-pager-item:last-child {
  border-right: none;
}
.bx-pager-item a {
  border: 1px solid #ccc;
  background: #fff;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  height: 15px;
  margin: 0 2px;
}
.bx-pager-item a.active {
  background: #0083ce;
}
.bx-pager-item a:hover {
  background: #ccc;
}
.bx-controls {
  text-align: center;
}
.bx-pager {
  /*
  margin-left:-125px;
  */
}
.bxslider {
}
.bxslider li {
  width: 100%;
  text-align: center;
}
.bxslider li img {
  width: 100%;
  transition: all 0.3s ease;
}
.bx-viewport {
  height: 250px;
}
.bxslider li.active-slide img {
  opacity: 1;
}

/* h2 */
.h2_wrapper {
  position: relative;
  min-height: 30px;
  margin-bottom: 20px;
  /* background:url(/images/top/bg_h2_wrapper.png) repeat-x bottom left; */
}
.h2_wrapper h1 {
  background: -webkit-repeating-linear-gradient(
    45deg,
    #0b83ce,
    #0b83ce 5px,
    #148ad8 5px,
    #148ad8 10px
  );
  background: repeating-linear-gradient(
    45deg,
    #0b83ce,
    #0b83ce 5px,
    #148ad8 5px,
    #148ad8 10px
  );
  color: #ffffff;
  border-bottom: 3px solid #99ccff;
  border-top: 3px solid #99ccff;
  display: block;
  font-size: 24px;
  min-height: 30px;
  /*min-width:290px;*/
  margin-top: 10px;
  padding-right: 150px;
  padding-top: 15px;
  padding-left: 10px;
  padding-bottom: 10px;
  font-weight: normal;
}
.main_column_width h2,
.h2_wrapper h2 {
  position: relative;
  border-bottom: 1px solid #cccccc;
  border-left: 6px solid #99ccff;
  font-weight: normal;
  padding-left: 4px;
  padding-bottom: 4px;
}
h2 {
  font-weight: normal;
  font-size: 1em;
}
.main_column_width h2 {
  font-size: 1.4em;
  font-weight: normal;
}
.main_column_width h2::before,
.h2_wrapper h2::before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: '';
  width: 6px;
  height: 50%;
  background-color: #0b83ce;
}
.h2_wrapper h3 {
  background-color: #dddddd;
  padding: 4px;
}
#globaltop h2,
#globaltop .h2_wrapper h1 {
  font-size: 16px;
}
.h2_wrapper a.link {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  line-height: 100%;
  border: 1px solid #d2d2d2;
  color: #949494;
  text-decoration: none;
  padding: 3px 16px 3px 7px;
  background-image: url(/images/top/arrow_gray.png);
  background-repeat: no-repeat;
  background-position: 88% 50%;
  background-size: auto 9px;
}
.h2_wrapper a.link:hover {
  background-color: #f1f1f1;
  background-position: 95% 50%;
}

/* dialog */
div.dialog_box_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  z-index: 100;
}
div.dialog_box {
  display: none;
  background: rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  overflow: auto;
  position: fixed;
  top: auto;
  left: 50%;
  z-index: 200;
  width: 800px;
  /*height:100%;*/
  margin: 0 0 0 -400px;
  padding: 20px;
  border-radius: 10px;
}

div.information.scroll-info {
  overflow: auto;
  height: 300px;
  width: 100%;
  box-sizing: border-box;
  padding-right: 10px;
  padding-left: 10px;
}
.information p {
  margin: 0;
}
.information ul li {
  margin-bottom: 15px;
  line-height: 100%;
  display: block;
  font-size: 13px;
}
.information ul li p {
  display: table-cell;
}
.information ul li p.category {
  padding-right: 10px;
  min-width: 100px;
  padding-top: 10px;
}
.information ul li p.category a {
  background: #414141;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  padding: 4px 10px;
  display: block;
  text-align: center;
  line-height: 130%;
}

.news {
  margin-bottom: 50px;
}
div.news.scroll-info {
  overflow: auto;
  height: 300px;
  width: 100%;
  box-sizing: border-box;
  padding-right: 10px;
  padding-left: 10px;
}

.news p {
  margin: 0;
}
.news ul li {
  font-size: 13px;
  margin-bottom: 17px;
  display: block;
  line-height: 120%;
}
.news ul li p {
  display: table-cell;
  vertical-align: top;
}
.news ul li p.time {
  padding-right: 10px;
}
.news ul li p.time span {
  background: #f3f3f3;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  font-size: 11px;
  padding: 4px 10px;
}
.news_text {
  line-height: 150%;
}

.pankuzu {
  list-style-type: none;
  font-size: 11px;
  line-height: 100%;
  padding-bottom: 10px;
  color: #848484;
}

.pankuzu li {
  display: inline-block;
}
.pankuzu li:before {
  margin: 0 2px;
  content: '>';
}
.pankuzu li:first-child:before {
  margin: 0 0;
  content: '';
}
.pankuzu li a {
  display: inline-block;
  padding: 4px 7px;
  color: #848484;
}
.pankuzu li:first-child a {
  padding-left: 0;
}
.pankuzu li a img {
  height: 11px;
  vertical-align: bottom;
}
.pankuzu li a:hover {
}

.foot_action {
  padding: 60px 0;
  text-align: center;
  font-size: 33px;
}
.foot_action {
  margin-top: 60px;
  border-top: 1px solid #dbdbdb;
  padding: 60px 0;
  text-align: center;
}
.foot_action .catch {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 10px;
}
.foot_action_btn {
  font-size: 28px;
  line-height: 130%;
  display: inline-block;
  padding: 15px 50px;
  text-decoration: none;
  border-radius: 5px;
  background: #e96c28;
  color: #fff;
  box-shadow: 0px 1px 0px #c1561b, 0px 2px 0px #c1561b, 0px 3px 0px #c1561b,
    0px 4px 0px #c1561b, 0px 5px 0px #c1561b, 0px 6px 0px #c1561b,
    0px 7px 0px #c1561b, 2px 7px 3px rgba(0, 0, 0, 0.3),
    0px 1px 0px rgba(255, 255, 255, 0.5) inset,
    0px -1px 0px rgba(255, 255, 255, 0.2) inset;
  margin: 0 0 10px;
}
.foot_action_btn:visited {
  color: #fff;
}
.foot_action_btn:hover {
  background: #e85607;
  color: #fff;
  box-shadow: 0px 1px 0px #c1561b, 0px 2px 0px #c1561b;
  margin: 10px 0 0;
}

.linkbtn {
  text-align: center;
  padding-top: 10px;
}
.linkbtn a {
  display: inline-block;
  font-size: 130%;
  line-height: 140%;
  color: #0099cc;
  display: inline-block;
  padding: 7px 15px 7px 25px;
  text-decoration: none;
  background-image: url(/images/top/arrow_blue.png);
  background-repeat: no-repeat;
  background-position: 10px 50%;
  background-size: auto 15px;
}
.linkbtn a:hover {
  background-color: #f1f1f1;
}

.tt_lp_list {
  background: #333;
  color: #fff;
  display: inline-block;
  padding: 8px 10px;
  line-height: 100%;
}
/* ---------------------------------------------
   03.responsive
   --------------------------------------------- */
/* ~1366px */
@media screen and (max-width: 1366px) {
  .global_guide {
    /*
    font-size:14px;
    */
  }
  .global_guide_regist a,
  .global_guide_login a {
    /*    padding:10px 0;*/
  }
}

/* 1600px~ */
@media screen and (min-width: 1600px) {
  .global_guide {
    width: 300px;
    font-size: 16px;
  }
  .bx-pager {
    margin-left: -150px;
  }

  .tip {
    left: 33px;
  }
  .global_guide div.nav_level1 {
    left: 300px;
  }
  .global_guide div.nav_level2 {
    left: 600px;
  }
  .global_guide div.nav_level3 {
    left: 900px;
  }
  .global_guide div.nav_level4 {
    left: 1200px;
  }
  .global_guide .global_navi div {
    width: 300px;
  }
  .global_guide ul a,
  .global_guide ul p {
    padding: 14px 33px;
  }
  .bx-wrapper {
    margin-left: 300px;
  }
  .bx-pager {
    /* width:1100px; */
    margin-left: auto;
    margin-right: auto;
  }
  .main_column {
    margin-left: auto;
    margin-right: auto;
  }
  .global_guide_foot {
    padding: 25px;
  }
}

/* 1920px~ */
@media screen and (min-width: 1920px) {
  .bx-pager {
    margin-left: -165px;
  }
  .global_guide {
    width: 330px;
  }
  .global_guide div.nav_level1 {
    left: 330px;
  }
  .global_guide div.nav_level2 {
    left: 660px;
  }
  .global_guide div.nav_level3 {
    left: 990px;
  }
  .global_guide div.nav_level4 {
    left: 1320px;
  }
  .global_guide .global_navi div {
    width: 330px;
  }
  .bx-wrapper {
    margin-left: 330px;
  }
  .bx-pager {
    /* width:1200px; */
    margin-left: auto;
    margin-right: auto;
  }
  ul.bxslider li {
    padding-right: 30px;
  }
  .global_guide_foot {
    padding: 33px;
  }
  .global_guide_contact,
  .global_guide_corporate {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
  }
}

/* タブレット */
/* ~1024px */
@media screen and (max-width: 1024px) {
  body {
    font-size: 14px;
  }
  .index_entry ul li a {
    font-size: 17px;
  }
  .bx-pager {
    margin-left: 0;
  }
  .global_guide {
    width: 200px;
    font-size: 13px;
  }
  .global_guide div.nav_level1 {
    left: 200px;
  }
  .global_guide div.nav_level2 {
    left: 400px;
  }
  .global_guide div.nav_level3 {
    left: 600px;
  }
  .global_guide div.nav_level4 {
    left: 800px;
  }
  .global_guide .global_navi div {
    width: 200px;
  }
  .bx-wrapper {
    margin-left: 200px;
  }
  .bx-pager {
  }
  .bx-wrapper {
    margin-left: 200px;
  }
  .bx-pager {
    text-align: center;
  }
  .bx-controls {
    padding-top: 10px;
  }
  .index_entry {
    max-width: 700px;
  }
  .index_entry ul li a {
    font-size: 18px;
  }
  .index_entry ul li a img {
    height: 15px;
    margin-right: 10px;
  }
  .index_know h3 {
    font-size: 30px;
  }
  .main_column {
    max-width: 800px;
    margin-left: 200px;
    padding: 0 10px;
  }
  .global_guide_regist a {
    font-size: 12px;
    background-size: auto 11px;
  }
  .global_guide_login a {
    font-size: 12px;
    background-size: auto 11px;
  }
  .global_guide_login a:hover {
    background-position: 14% 50%;
    background-size: auto 11px;
  }
  .global_guide .nav_level1 a,
  .global_guide .nav_level2 a,
  .global_guide .nav_level3 a,
  .global_guide .nav_level1 p,
  .global_guide .nav_level2 p,
  .global_guide .nav_level3 p {
    background-size: auto 12px;
  }
  .global_guide ul.global_navi > li > a,
  .global_guide ul.global_navi > li > p {
    background-size: auto 12px;
    padding-left: 16px;
  }
  .bxslider_base {
  }
  .bx-wrapper {
    margin-left: 0;
  }
  .global_guide.contents .global_navi.contents p {
    background-image: initial;
    padding: initial;
  }
  .global_guide.contents .global_navi.contents div.nav_level1 {
    background-color: white;
    display: block;
  }
  ul.contents {
    margin-left: 20px;
  }
  ul.contents li.contents a::before {
    content: '>';
    margin-right: 5px;
  }
  ul.contents li.contents a {
    color: black;
  }
}
@media screen and (max-width: 800px) {
  .global_guide {
    width: 100%;
    font-size: 14px;
    background: #fff;
    position: absolute;
    padding-top: 44px;
    overflow-y: scroll;
  }
  .global_guide .head {
    line-height: 70px;
    height: 70px;
    box-sizing: border-box;
    padding: 0 5px;
    width: 20%;
    float: left;
  }
  .global_guide .head img {
    width: 100%;
    max-width: 100%;
    vertical-align: top;
  }
  .global_guide ul a,
  .global_guide ul p {
    box-sizing: border-box;
    padding: 25px 5px 25px 5%;
  }
  .global_guide ul.global_navi > li > p {
    padding-left: 5%;
  }
  .global_guide ul.global_navi > li > a,
  .global_guide ul.global_navi > li > p {
    background-image: none;
  }
  .global_guide .global_navi p {
    background-image: url(/images/top/arrow_white_tablet.png);
    background-repeat: no-repeat;
    background-position: 50% 90%;
    background-size: auto 6px;
  }
  .global_guide ul.global_navi > li > p {
    background-image: url(/images/top/s/arrow_gray_under.png);
    background-repeat: no-repeat;
    background-position: 2% 50%;
    background-size: auto 6px;
  }
  .global_guide .global_navi p:hover,
  .global_guide ul.global_navi > li > p:hover {
    background-position: 2% 50%;
  }
  .global_guide .global_navi {
  }
  .global_guide ul {
  }
  .global_guide .global_navi li {
  }
  .global_guide .global_navi div {
    width: 100%;
    padding-top: 0;
    height: auto;
  }
  .global_guide ul li,
  .global_guide .global_navi > li:first-child {
    margin: 0;
    text-align: left;
  }
  .global_guide div {
    position: static;
  }
  .global_guide div.nav_level1 {
    position: static;
    top: auto;
    left: auto;
  }
  .global_guide div.nav_level2 {
    top: 140px;
    left: 0;
  }
  .global_guide div.nav_level3 {
    top: 210px;
    left: 0;
  }
  .global_guide div.nav_level4 {
    top: 280px;
    left: 0;
  }
  .global_guide_foot {
    clear: both;
    padding: 0;
    width: 100%;
  }
  .global_guide_foot > p {
    font-size: 14px;
    width: 100%;
    max-width: 400px;
    vertical-align: middle;
    box-sizing: border-box;
    padding: 0;
    margin: 10px auto 0;
  }
  .global_guide_foot > p.global_guide_mypage {
    width: 64%;
  }
  .global_guide_foot > p.global_guide_contact {
    width: 88%;
    padding-left: 5px;
  }
  .global_guide_foot > p.global_guide_contact img,
  p.global_guide_corporate img {
    width: 100%;
  }
  .global_guide_foot > p.global_guide_corporate img {
    padding-top: 0;
  }
  .global_guide_regist a {
    margin: 0;
    font-size: 14px;
  }
  .global_guide_login a {
    font-size: 14px;
  }
  .global_guide_mypage a {
    margin: 0;
    width: 66%;
    padding: 16px 0;
    background-size: auto 26px;
  }
  .global_guide_regist a.catch {
    top: auto;
    bottom: -10px;
    padding: 3px 10px;
  }
  .global_guide_regist a.catch:after {
    bottom: auto;
    top: -6px;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent rgba(0, 0, 0, 0.9) transparent;
  }
  .global_guide_regist a.regist_btn {
    margin-bottom: 0;
  }
  .bx-wrapper {
    margin-left: 0;
  }
  .bxslider_wrapper {
    margin-left: 0;
    width: 100%;
  }
  .bx-pager {
    width: 100%;
  }
  .bx-wrapper {
    margin-left: 0;
  }
  .bx-pager {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
  .bx-controls {
    padding-left: 0;
  }
  .bxslider {
    width: 100%;
  }
  .tip {
    left: 0;
    font-size: 10px;
  }
  .main_column {
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    padding-top: 0;
  }
  div.dialog_box {
    width: 600px;
    margin: 0 0 0 -300px;
  }
  .global_guide .global_navi ul li:last-child {
    padding-bottom: 0;
  }
  .sp_wrapper {
    padding-top: 130px;
  }
  .bxslider_wrapper {
    margin-top: 0;
  }
  .global_guide_trigger_base {
    display: block;
  }
  .global_guide_trigger_base {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    height: 44px;
    width: 100%;
    background: #fff;
  }
  .global_guide_trigger_base p {
    width: 100%;
    height: 44px;
    text-align: right;
    margin: 0;
  }
  .global_guide_trigger_base .head {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 400;
    margin-left: -75px;
    width: 150px;
    padding: 5px 0;
    height: 40px;
  }
  .global_guide_trigger_base .head h1 {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .global_guide_trigger_base .head a {
    display: inline-block;
  }
  .global_guide_trigger_base .head img {
    height: 40px;
  }
  .global_guide_trigger {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 300;
  }
  .global_guide_trigger_hide {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 200;
  }
  .global_guide_trigger_base p img {
    width: 44px;
  }
  .sp_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 44px;
  }
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    z-index: 100;
  }
  .global_guide .head {
    display: none;
  }
}

/* スマホ */
/* ~640px */
@media screen and (max-width: 640px) {
  body {
    font-size: 15px;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }
  .wrapper {
    padding-top: 0;
  }
  .main_column {
    padding: 0;
    width: auto;
    margin: 0 0 15px;
  }
  .main_column_width,
  .h2_wrapper,
  .information,
  .index_know,
  .news,
  .credential,
  .postcolumn {
    margin-left: 12px;
    margin-right: 12px;
  }
  .scroll-info {
    margin: 0;
  }
  /* global_guide */
  .global_guide {
    line-height: 130%;
    background: #fff;
    z-index: 100;
    padding-top: 44px;
    height: 100%;
    font-size: 15px;
    overflow-y: scroll;
  }
  .global_guide h1 {
    box-sizing: border-box;
    padding: 10px 0 0 20px;
    width: 100%;
  }
  .global_guide h1 img {
    width: 83%;
    max-width: 200px;
    vertical-align: bottom;
  }
  .global_guide .global_navi {
    float: none;
    width: 100%;
    display: block;
    /*
    overflow-y:scroll;
    min-height:280px;
    max-height:400px;
    */
    height: auto;
  }
  .global_guide .global_navi li,
  .global_guide ul {
    display: block;
  }
  .global_guide .global_navi li div {
    display: none;
  }
  .global_guide .global_navi div {
    position: static;
  }
  .global_guide .global_navi div > ul {
  }
  .global_guide ul li {
    position: relative;
    text-align: left;
  }
  .global_guide ul li,
  .global_guide .global_navi > li:first-child {
    text-align: left;
  }
  .global_guide ul.global_navi > li > a,
  .global_guide ul.global_navi > li > p {
    background-image: none;
  }
  .global_guide .global_navi p:hover,
  .global_guide ul.global_navi > li > p:hover {
    background-position: 2% 55%;
  }
  .global_guide ul a,
  .global_guide ul p {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 10px 0 10px 8%;
    box-sizing: border-box;
    transition: all 0.2s ease;
    height: auto;
  }
  .global_guide ul.global_navi > li > a,
  .global_guide ul.global_navi > li > p {
    padding-left: 8%;
  }
  .global_guide .nav_level1 a,
  .global_guide .nav_level2 a,
  .global_guide .nav_level3 a,
  .global_guide .nav_level4 a,
  .global_guide .nav_level1 p,
  .global_guide .nav_level2 p,
  .global_guide .nav_level3 p,
  .global_guide .nav_level4 p {
    color: #f0f0f0;
    background-image: url(/images/top/s/arrow_white_under.png);
    background-repeat: no-repeat;
    background-position: 2% 50%;
    background-size: auto 6px;
  }
  .global_guide .nav_level1 a,
  .global_guide .nav_level2 a,
  .global_guide .nav_level3 a,
  .global_guide .nav_level4 a {
    background-image: url(/images/top/s/arrow_white.png);
    background-position: 3% 50%;
    background-size: auto 10px;
  }
  .global_guide ul.global_navi > li > p {
    background-image: url(/images/top/s/arrow_gray_under.png);
    background-repeat: no-repeat;
    background-position: 2% 50%;
    background-size: auto 6px;
  }
  .global_guide ul.global_navi > li > a {
    /*
    background-image:url(/images/top/s/arrow_gray.png);
    background-repeat:no-repeat;
    background-position:3% 50%;
    background-size:auto 10px;
    */
  }
  .global_guide ul a:hover,
  .global_guide ul.global_navi > li > a:hover,
  .global_guide ul p:hover,
  .global_guide ul.global_navi > li > p:hover {
    background-position: 2% 55%;
  }
  .global_guide ul.global_navi > li > p.open,
  .global_guide ul p.open {
    background-color: #000000;
    background-position: 2% 55%;
    color: #fff;
  }
  .global_guide ul a:hover,
  .global_guide ul.global_navi > li > a:hover {
    background-color: #000000;
    background-position: 5% 50%;
    color: #fff;
  }
  .global_guide div.nav_level1 {
    background-color: #000000;
    top: auto;
    left: auto;
  }
  .global_guide div.nav_level1 a:hover,
  .global_guide div.nav_level1 p:hover {
    background-color: #262626;
  }
  .global_guide div.nav_level2 {
    background-color: #262626;
  }
  .global_guide div.nav_level2 a:hover,
  .global_guide div.nav_level2 p:hover {
    background-color: #373737;
  }
  .global_guide div.nav_level3 {
    background-color: #373737;
  }
  .global_guide div.nav_level3 a:hover,
  .global_guide div.nav_level3 p:hover {
    background-color: #535353;
  }
  .global_guide div.nav_level4 {
    background-color: #434343;
  }
  .global_guide div.nav_level4 a:hover,
  .global_guide div.nav_level4 p:hover {
    background-color: #515151;
  }
  .global_guide_regist a.catch {
    top: 2px;
    bottom: auto;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: bold;
  }
  .global_guide_regist a.catch:after {
    bottom: -5px;
    top: auto;
    border-width: 5px 5px 0 5px;
    border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
  }
  h2,
  .h2_wrapper h1 {
    padding-right: 20px;
    font-size: 18px;
  }
  /* index slide */
  .bxslider_wrapper {
    margin-top: 0;
  }
  .bxslider_wrapper {
    width: 100%;
  }
  .bx-wrapper {
    margin-left: 0;
    padding-bottom: 10px;
  }
  .bx-pager {
    width: 100%;
  }
  .bxslider_base {
    text-align: left;
    line-height: 100%;
  }
  .bxslider_base .bx-viewport img {
    max-width: 100%;
    vertical-align: bottom;
  }
  .bx-pager-item {
    width: 35px;
    display: inline-block;
    border-right: 1px solid #fff;
    margin-top: 0;
  }
  .bx-pager-item:last-child {
    border-right: none;
  }
  .bx-pager-item a {
    height: 25px;
  }
  .bx-pager {
    text-align: center;
  }
  .footer_head .main,
  .footer_head .sns {
    float: none;
  }
  .footer_head,
  .footer_sitemap,
  .footer_copyright,
  .footer_sub_guide ul {
    width: 100%;
  }
  .global_guide_foot {
    box-sizing: border-box;
    padding: 10px;
    padding-bottom: 60px;
    padding-top: 0;
    display: block;
    font-weight: bold;
  }
  .global_guide_foot > p {
    font-size: 14px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 10px auto 0;
  }
  .global_guide_foot > p.global_guide_contact {
    width: 100%;
    border-top: 1px solid #ddd;
    padding: 10px 0 3px;
    box-sizing: border-box;
    margin-top: 0;
    display: block;
    max-width: none;
  }
  .global_guide_foot > p.global_guide_regist {
    padding-top: 20px;
  }
  .information ul li {
    line-height: 160%;
    margin-bottom: 15px;
  }
  .information ul li p {
    display: block;
  }
  .information ul li p.category {
  }
  .information ul li p.category a {
    background: #414141;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    padding: 4px 10px;
    display: inline-block;
  }

  .news {
    margin-bottom: 50px;
  }
  .news ul li {
    display: block;
  }
  .news ul li p {
    display: block;
  }
  .news ul li p.time {
    padding-right: 0;
  }
  .news ul li p.time span {
    background: #f3f3f3;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    font-size: 11px;
    padding: 4px 10px;
  }
  div.dialog_box {
    width: 90%;
    margin: 0 0 0 -45%;
    padding: 10px;
  }
  div.dialog_box iframe {
    max-height: 300px;
  }
  .global_guide_foot > p.global_guide_mypage {
    width: 100%;
  }
  .global_guide_mypage a {
    width: 100%;
  }
  .pankuzu {
    margin: 0 12px;
  }
  .sp_block {
    margin: 0 12px;
  }
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }
  .foot_action {
    padding-left: 12px;
    padding-right: 12px;
  }
  .foot_action .catch {
    font-size: 22px;
  }
  .foot_action_btn {
    display: block;
    margin: 0 auto;
    font-size: 21px;
    padding: 10px 5px;
  }
  .foot_action_btn:hover {
    background: #e85607;
    color: #fff;
    box-shadow: 0px 1px 0px #c1561b, 0px 2px 0px #c1561b;
    margin: 10px auto 0;
  }
  .global_guide.contents .global_navi.contents p {
    background-image: initial;
    padding: initial;
  }
  .global_guide.contents .global_navi.contents div.nav_level1 {
    background-color: white;
    display: block;
  }
  ul.contents {
    margin-left: 20px;
  }
  ul.contents li.contents a::before {
    content: '>';
    margin-right: 5px;
  }
  ul.contents li.contents a {
    color: black;
  }
}

.global_guide .nav_level1 a,
.global_guide .nav_level2 a,
.global_guide .nav_level3 a,
.global_guide .nav_level4 a {
  background-image: none;
}

/* class */
.cb {
  clear: both;
  line-height: 0;
}
.fr {
  float: right;
}
.fl {
  float: left;
}
.mt0 {
  margin-top: 0;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mt40 {
  margin-top: 40px;
}
.mt50 {
  margin-top: 50px;
}
.mt60 {
  margin-top: 60px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mr3 {
  margin-right: 3px;
}
.mr10 {
  margin-right: 10px;
}
.mr15 {
  margin-right: 15px;
}
.ml0 {
  margin-left: 0px;
}
.ml10 {
  margin-left: 10px;
}
.ml15 {
  margin-left: 15px;
}
.pdt10 {
  padding-top: 10px;
}
.pdt15 {
  padding-top: 15px;
}
.pdt20 {
  padding-top: 20px;
}
.pdt25 {
  padding-top: 25px;
}
.pdt30 {
  padding-top: 30px;
}
.hand {
  cursor: pointer;
}
.dn {
  display: none;
}
.db {
  display: block;
}
.tr {
  text-align: right;
}
.tcenter {
  text-align: center;
}
.f20 {
  font-size: 20px;
}
.f15 {
  font-size: 15px;
}
.f13 {
  font-size: 13px;
}
.f12 {
  font-size: 12px;
}
.f11 {
  font-size: 11px;
}
.f10 {
  font-size: 10px;
}
.lh140 {
  line-height: 140%;
}
.vm {
  vertical-align: bottom;
}
.clear {
  clear: both;
}
.red {
  color: #ff0000;
}
.blue {
  color: #41b7ec;
}
.blue2 {
  color: #0f7bc6;
}
.yellow {
  color: #ffef3b;
}
.gray {
  color: #a6a6a6;
}

#form_other_path {
  text-align: center;
}
.subbtn {
  clear: both;
  width: 100%;
  text-align: center;
}
.subbtn input[type='submit'] {
  margin: 10px 0;
}

.formstyle dl {
  display: table;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #c5d9e5;
  font-size: 15px;
  line-height: 180%;
}
.formstyle dl dt,
.formstyle dl dd {
  display: table-cell;
  width: 35%;
  box-sizing: border-box;
  padding: 20px 10px;
  vertical-align: middle;
}
.formstyle dl dt {
  font-size: 100%;
  border-right: 1px solid #d9e7ef;
  color: #0770b1;
  font-weight: bold;
}
.formstyle dl dd {
  width: 65%;
}
.formstyle span.required {
  background-color: #ff4d4d;
  color: #fff;
  font-size: 70%;
  border-radius: 3px;
  padding: 3px 5px;
  float: right;
  line-height: 100%;
}
.formstyle span.optional {
  background-color: #59afff;
  color: #fff;
  font-size: 70%;
  border-radius: 3px;
  padding: 3px 5px;
  float: right;
  line-height: 100%;
}
.formstyle input {
  font-size: 110%;
  padding: 5px 4px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}
.formstyle input[type='radio'],
.formstyle input[type='checkbox'] {
  width: auto;
}
.formstyle input:focus {
  background: #fff7e8;
}
.formstyle dl:hover {
  background: #eaf8ff;
}
.formstyle select {
  -webkit-appearance: none;
  font-size: 110%;
  padding: 5px 4px;
  border: 1px solid #ddd;
  box-sizing: border-box;
  background-color: #fff;
}
.formstyle textarea {
  font-size: 100%;
}
.formstyle textarea {
  height: 300px;
  border: 1px solid #ddd;
}
.formstyle form input[type='submit'] {
  color: #fff;
  padding: 10px;
  font-size: 120%;
  background: rgba(0, 123, 207, 1);
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 769px) {
  .formstyle dl {
    margin-bottom: 20px;
  }
  .formstyle dl dt,
  .formstyle dl dd {
    display: block;
    width: 100%;
    border: none;
    padding: 10px 0;
  }
  .formstyle dl dd {
    padding-top: 0;
  }
  .formstyle span.required,
  .formstyle span.optional {
    float: none;
    margin-left: 3px;
  }
  .formstyle textarea {
    height: 300px;
    width: 90%;
  }
}

/* Slider pc対応（トップ以外）*/
@media screen and (min-width: 1025px) {
  .common_leaf .bxslider img {
    width: auto !important;
    height: 311px;
  }
  div.main_column_top {
    max-width: initial;
    margin-left: 300px;
  }
  .scroll-info {
    width: 920px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .centering {
    width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 資格ページにCVボタン追加（PC）*/
@media screen and (min-width: 640px) {
  .cv_button_170601 ul li {
    float: right;
    width: 15%;
    padding: 3px;
    border-radius: 2px;
  }
  .cv_button_170601:after {
    content: '';
    display: block;
    clear: both;
  }
  .cv_button_170601 ul li:last-child {
    margin-right: 6px;
  }
  .cv_button_170601 ul li a {
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    margin: -2px;
    border: 1px solid #fff;
    transition: 0.3s;
  }
  .cv_button_170601 ul li img {
    width: 10%;
    padding-right: 5px;
    padding-top: 5px;
  }
  .cv_button_170601_green {
    background-color: #46dd58;
  }
  .cv_button_170601_blue {
    background-color: #12beff;
  }
  .cv_button_sp_170601 {
    display: none;
  }
}

@media screen and (max-width: 639px) {
  .cv_button_170601 {
    display: none;
  }
  .cv_button_sp_170601 {
    position: fixed;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
  }
  .cv_button_sp_170601 ul {
    margin-right: auto;
    margin-left: auto;
  }
  .cv_button_sp_170601 ul li {
    float: right;
    background: rgba(255, 255, 255, 0.9);
    width: 42.5%;
    margin-top: 3%;
    margin-bottom: 3%;
  }
  .cv_button_sp_170601 ul li:first-child {
    margin-right: 5%;
    margin-left: 5%;
  }
  .cv_button_sp_170601 ul li a {
    display: block;
    text-align: center;
    text-decoration: none;
  }
  .cv_button_sp_170601 ul li img {
    width: 10%;
    padding-right: 5px;
    padding-top: 8px;
    padding-bottom: 10px;
    vertical-align: middle;
  }
  .cv_button_sp_170601_green a {
    color: #00b200;
    border: 1px solid #00b200;
    margin: -2px;
  }
  .cv_button_sp_170601_blue a {
    color: #0b83ce;
    border: 1px solid #0b83ce;
    margin: -2px;
  }
  div.cv_button_sp_170601 ul li.cv_button_sp_170601_blue_single {
    margin-left: auto;
    margin-right: auto;
    width: 72.5%;
    float: none;
  }
}
@charset "UTF-8";
/*
  スタイル
*/
/* line 7, app/assets/stylesheets/top/contact/style.scss */
div#contact2 {
  font-size: 1rem;
  /* タブレット */
  /* ~1024px */
  /* スマホ */
  /* ~768px */
}

/* line 8, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .contentsBox {
  width: 98%;
  margin: 0 auto;
}

/* line 12, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .stBlock {
  max-width: 900px;
  width: 100%;
  margin: 0 auto 50px;
  background: #fff;
}

/* line 18, app/assets/stylesheets/top/contact/style.scss */
div#contact2 dl {
  display: table;
  width: 100%;
  border-bottom: 1px solid #dbdbdb;
}

/* line 23, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .styleTable {
  border-collapse: collapse;
}

/* line 25, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .styleTable dt, div#contact2 .styleTable dd {
  padding: 15px;
  background: #fff;
  display: table-cell;
}

/* line 30, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .styleTable dt {
  width: 30%;
  vertical-align: top;
}

/* line 34, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .styleTable dd {
  width: 70%;
}

/* line 36, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .styleTable dd p {
  margin: 15px 0;
  line-height: 200%;
}

/* line 39, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .styleTable dd p .errMsg {
  font-size: 95%;
  font-weight: bold;
  color: #ff6666;
}

/* line 45, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .styleTable dd .last_name, div#contact2 .styleTable dd .first_name {
  display: inline-block;
  margin-right: 10px;
  margin-top: 0;
}

/* line 50, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .styleTable dd input, div#contact2 .styleTable dd textarea {
  border: 1px solid #ccc;
  position: relative;
  background: #fff;
  line-height: 160%;
  padding: 5px 10px;
  font-size: 100%;
  width: 400px;
}

/* line 59, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .styleTable dd input .focusin, div#contact2 .styleTable dd textarea .focusin {
  background: #fff;
}

/* line 63, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .styleTable dd #contact_lastname,
div#contact2 .styleTable dd #contact_firstname {
  max-width: 150px;
}

/* line 67, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .styleTable dd .select_val {
  background: #fff;
}

/* line 70, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .styleTable dd .required_text {
  color: #cc0000;
  font-weight: normal;
}

/* line 74, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .styleTable dd .fieldBox.required input.focusin,
div#contact2 .styleTable dd .fieldBox.required .select_val {
  background: #fff;
}

/* line 79, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .styleTable .contact_select {
  width: 200px;
  height: 30px;
  border-color: #0770B1;
}

/* line 85, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .important {
  font-size: 13px;
  color: #ff0000;
  font-weight: bold;
}

/* line 91, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .formBtn {
  text-align: center;
}

/* line 93, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .formBtn .btn_primary {
  font-size: 18px;
  display: inline-block;
  background: #0080cb;
  color: #fff;
  padding: 15px 30px;
  margin: 20px 0;
  border: 1px solid #ddd;
  font-weight: normal;
  cursor: pointer;
  min-width: 270px;
}

/* line 105, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .formBtn .btn_primary:hover {
  background: #128ed6;
}

/* line 108, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .formBtn .btn_default {
  font-size: 18px;
  display: inline-block;
  background-color: #f3f3f3;
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.2);
  color: #6b6b6b;
  padding: 15px 30px;
  margin: 20px 0;
  border: 1px solid #ddd;
  font-weight: normal;
  cursor: pointer;
  min-width: 270px;
}

/* line 121, app/assets/stylesheets/top/contact/style.scss */
div#contact2 .formBtn .btn_default:hover {
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  /* line 135, app/assets/stylesheets/top/contact/style.scss */
  div#contact2 .wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
  /* line 139, app/assets/stylesheets/top/contact/style.scss */
  div#contact2 .styleTable {
    max-width: 400px;
  }
  /* line 141, app/assets/stylesheets/top/contact/style.scss */
  div#contact2 .styleTable dt, div#contact2 .styleTable dd {
    display: block;
    padding: 4px 0;
    width: 100%;
    vertical-align: middle;
  }
  /* line 146, app/assets/stylesheets/top/contact/style.scss */
  div#contact2 .styleTable dt #contact_email,
div#contact2 .styleTable dt #contact_email_re,
div#contact2 .styleTable dt #contact_tel,
div#contact2 .styleTable dt textarea, div#contact2 .styleTable dd #contact_email,
div#contact2 .styleTable dd #contact_email_re,
div#contact2 .styleTable dd #contact_tel,
div#contact2 .styleTable dd textarea {
    width: 100%;
  }
}


.footer {
  margin-top: 50px;
}

.footer a {
  text-decoration: none;
}

/*footer_pagetop*/
.footer_pagetop{
  width: 100%;
  background-color: #E3E3E3;
  position: relative;
  padding: 3px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}
.footer_pagetop:hover{
  opacity: 0.7;
}
.footer_pagetop::before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #171717;
  border-right: 2px solid #171717;
  -webkit-transform: rotate(-45deg) translateX(-50%) translateY(-50%);
  transform: rotate(-45deg) translateX(-50%) translateY(-50%);
  left: 50%;
  top: 50%;
  margin-top: -2px;
}
.footerArea{
  min-width: 1240px;
}
.footerContentsBox{
  width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.footerContentsBox a{
  color: #171717;
}
.footerFlex{
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 640px){
  .footerArea{
    min-width: 100%;
  }
  .footerContentsBox{
    width: 94%;
  }
  .footerContentsWidth{
    width: 80%;
    min-width: 280px;
  }
}
/*footerGrayArea*/
.footerGrayArea{
  background-color: #F2F3F4;
  padding: 40px 0;
}
.footerGrayFlex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footerLinkList{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12px;
  width: 500px;
  margin: 30px 0;
}
.footerLinkList li{
  width: 33%;
}
.footerBtnList{
  width: 460px;
  display: flex;
  justify-content: space-between;
}
.footerBtnList li a{
  position: relative;
  display: block;
  color: #fff;
  background-color: #0081CC;
  width: 210px;
  padding: 10px 0;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
  padding-right: 10px;
  box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
}
.footerBtnList .lightBlue{
  background-color: #72C2F0;
}
.footerBtnList li a::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateX(-50%) translateY(-50%);
  transform: rotate(45deg) translateX(-50%) translateY(-50%);
  right: 5%;
  top: 50%;
  margin-top: 2px;
}
@media screen and (max-width: 640px){
  .footerGrayArea{
    background-color: #F2F3F4;
    padding: 20px 0;
  }
  .footerGrayFlex{
    flex-direction: column;
  }
  .footerLinkList{
    flex-direction: column;
    width: 100%;
    margin: 10px 0 20px;
  }
  .footerLinkList li{
    width: 100%;
    margin: 5px 0;
  }
  .footerBtnList{
    width: 100%;
    flex-direction: column;
    margin-bottom: 10px;
  }
  .footerBtnList li a{
    margin: 0 auto 20px;
  }
}
/*SNS*/
.footerSnsBox{
  background: #fff;
  padding: 20px 40px;
  font-size: 13px;
  text-align: center;
  font-weight: 600;
}
.footerSnsList{
  display: flex;
  justify-content: space-between;
  width: 180px;
  margin: 20px auto ;
}
.mediaLink{
  color: #0081CC!important;
  border-bottom: 1px solid #0081CC;
  font-size: 15px;
}
.mediaLink img{
  vertical-align: baseline;
  padding-left: 3px;
}
@media screen {
  .footerSnsList img{
    height: 42px;
    width: auto;
  }
}

/*footerBottomBlue*/
.footerBottomBlue{
  background-color: #0081CC;
  color: #fff;
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 640px){
  .footerBottomBlue{
    font-size: 10px;
  }
}

.footer a{text-decoration: none;}
@charset "UTF-8";
/*
  スタイル
  */
/* line 6, app/assets/stylesheets/top/info/style.scss */
body#info {
  /* タブレット */
  /* ~1024px */
  /* スマホ */
  /* ~640px */
}

/* line 8, app/assets/stylesheets/top/info/style.scss */
body#info .information ul li {
  margin-bottom: 20px;
}

/* line 12, app/assets/stylesheets/top/info/style.scss */
body#info .wp-pagenavi {
  margin: 20px 0;
  text-align: center;
}

/* line 16, app/assets/stylesheets/top/info/style.scss */
body#info .wp-pagenavi span,
body#info .wp-pagenavi li {
  margin: 10px;
  display: inline-block;
  font-size: 18px;
  line-height: 100%;
  padding: 12px 15px;
}

/* line 24, app/assets/stylesheets/top/info/style.scss */
body#info .wp-pagenavi li.active {
  color: #333;
  border: 1px solid #fff;
}

/* line 28, app/assets/stylesheets/top/info/style.scss */
body#info .wp-pagenavi li:hover {
  background: #f1f1f1;
  border: 1px solid #cbcbcb;
}

/* line 32, app/assets/stylesheets/top/info/style.scss */
body#info .wp-pagenavi a {
  color: #a6a6a6;
  text-decoration: none;
}

/* line 36, app/assets/stylesheets/top/info/style.scss */
body#info .information ul li p {
  display: block;
}

/* line 39, app/assets/stylesheets/top/info/style.scss */
body#info .information ul li p a {
  display: inline;
}

/* line 42, app/assets/stylesheets/top/info/style.scss */
body#info .main_column_width .information ul li {
  border-bottom: 1px dotted #ddd;
  margin-bottom: 15px;
}

/* line 46, app/assets/stylesheets/top/info/style.scss */
body#info .mt10 {
  margin-top: 10px;
}

/* line 49, app/assets/stylesheets/top/info/style.scss */
body#info .ml20 {
  margin-left: 20px;
}

/* line 52, app/assets/stylesheets/top/info/style.scss */
body#info .pb20 {
  padding-bottom: 20px;
}
.myModal .loading, .myModal .complete {
  display: none;
  margin: 3em 0;
  text-align: center;
}
.btn.submit {
  background: -webkit-linear-gradient(top, #128BCA, #0E64AE);
}
.myModal .submit.disabled {
  opacity: 0.5;
}
.jquery-modal.blocker {
  z-index:101 !important;
}
.myModal {
  z-index: 102 !important;
  text-align: left;
}

meta.foundation-version {
  font-family: "/5.2.3/";
}

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0em;
}

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.063em)/";
  width: 40.063em;
}

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.063em)/";
  width: 64.063em;
}

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.063em)/";
  width: 90.063em;
}

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.063em)/";
  width: 120.063em;
}

meta.foundation-data-attribute-namespace {
  font-family: false;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 500px) {
  #interest_course, #tel_sodan {
    display: none;
    background-color: white;
    padding: 20px;
    max-height: 600px;
    width: 95%;
    overflow: scroll; }
  #interest_course p, #tel_sodan p {
  margin: 15px 0 0; }
  .popup-close a {
    background: #e9e9e9;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#e9e9e9));
    background: -webkit-linear-gradient(top, white, #e9e9e9);
    background: -moz-linear-gradient(top, white, #e9e9e9);
    background: -ms-linear-gradient(top, white, #e9e9e9);
    background: -o-linear-gradient(top, white, #e9e9e9);
    background: linear-gradient(top, white, #e9e9e9);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 10px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#e9e9e9', GradientType=0);
    display: block;
    border: 1px solid #e9e9e9;
    padding: 5px 23px 5px 13px;
    color: #333333;
    width: 10px;
    float: right;
  margin-bottom: 10px; }
  #modal-win {
    width: 100%;
    position: absolute;
  z-index: 20000; }
  #modal-win-inner {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    position: relative;
    z-index: 101;
  border-radius: 10px; }
  #modal-win-inner > * {
  border-radius: 10px; }
  #modal-bg {
    width: 100%;
    height: 100%;
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  cursor: pointer; }
  #interest_course dl, #tel_sodan dl {
    border-left: 1px solid #d6ebf7;
    border-right: 1px solid #d6ebf7;
    margin: 0;
  clear: right; }
  #interest_course dl dt, #tel_sodan dl dt {
    background-color: #0083ce;
    font-weight: bold;
    color: white;
  padding: 5px 10px; }
  #interest_course dl dd, #tel_sodan dl dd {
    border-bottom: 1px solid #d6ebf7;
    background-color: #f5faff;
    margin: 0;
  padding: 5px 10px; }
  #interest_course .btn a, #tel_sodan .btn a {
    background: #e9e9e9;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#eaeaea));
    background: -webkit-linear-gradient(top, white, #eaeaea);
    background: -moz-linear-gradient(top, white, #eaeaea);
    background: -ms-linear-gradient(top, white, #eaeaea);
    background: -o-linear-gradient(top, white, #eaeaea);
    background: linear-gradient(top, white, #eaeaea);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 10px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#EAEAEA', GradientType=0);
    display: block;
    border: 1px solid #0083ce;
    margin: 20px auto 0;
    padding: 5px 13px;
    text-align: center;
    color: #0083ce;
    width: 100px;
    margin: 0 auto;
  font-weight: bold; }
  #interest_course a:hover, #tel_sodan a:hover {
  text-decoration: none; }
}
@media screen and (min-width: 501px) {
  #interest_course,
  #tel_sodan {
    display: none;
    background-color: #ffffff;
    padding: 20px;
    width: 500px;
    overflow:hidden;
  }

  #interest_course p,
  #tel_sodan p{
    margin:15px 0 0;
  }

  .popup-close a{
    background: #e9e9e9;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e9e9e9));
    background: -webkit-linear-gradient(top, #fff, #e9e9e9);
    background: -moz-linear-gradient(top,#fff, #e9e9e9);
    background: -ms-linear-gradient(top,#fff, #e9e9e9);
    background: -o-linear-gradient(top,#fff, #e9e9e9);
    background: linear-gradient(top, #fff, #e9e9e9);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 10px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#e9e9e9', GradientType=0);
    display: block;
    border: 1px solid #e9e9e9;
    padding: 5px 23px 5px 13px;
    color:#333;
    width:10px;
    float:right;
    margin-bottom:10px;
  }

  #interest_course  dl,
  #tel_sodan dl {
    border-left: 1px solid #D6EBF7;
    border-right: 1px solid #D6EBF7;
    clear: right;
    margin:0;
  }

  #interest_course  dl dt,
  #tel_sodan dl dt{
    background-color: #0083CE;
    font-weight:bold;
    color:#FFF;
    padding:5px 10px;
  }
  #interest_course  dl dd,
  #tel_sodan dl dd{
    border-bottom: 1px solid #D6EBF7;
    background-color: #F5FAFF;
    padding:5px 10px;
    margin:0;
  }

  #interest_course .btn a,
  #tel_sodan .btn a{
    background: #e9e9e9;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#EAEAEA));
    background: -webkit-linear-gradient(top, #fff, #EAEAEA);
    background: -moz-linear-gradient(top,#fff, #EAEAEA);
    background: -ms-linear-gradient(top,#fff, #EAEAEA);
    background: -o-linear-gradient(top,#fff, #EAEAEA);
    background: linear-gradient(top, #fff, #EAEAEA);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 10px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#EAEAEA', GradientType=0);
    display: block;
    border: 1px solid #0083CE;
    margin: 20px auto 0;
    padding: 5px 13px;
    text-align: center;
    color:#0083CE;
    width:100px;
    margin:0 auto;
    font-weight:bold;
  }
  #interest_course a:hover,
  #tel_sodan a:hover {
    text-decoration:none;
  }
}

.btn {
  background: #0E64AE;
  background: -webkit-gradient(linear, left top, left bottom, from(#128BCA), to(#0E64AE));
  background: -webkit-linear-gradient(top, #128BCA, #0E64AE);
  background: -moz-linear-gradient(top, #128BCA, #0E64AE);
  background: -ms-linear-gradient(top, #128BCA, #0E64AE);
  background: -o-linear-gradient(top, #128BCA, #0E64AE);
  background: linear-gradient(top, #128BCA, #0E64AE);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#128BCA', endColorstr='#0E64AE', GradientType=0);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  display: block;
  text-align: center;
  font-weight: bold;
  margin: 20px auto;
  border: 1px solid #128BCA;
  padding: 10px 30px;
  font-size: 1.1em;
  color: #fff;
  cursor: pointer;
}
.btn.submit {
  background: -webkit-linear-gradient(top, #128BCA, #0E64AE);
}
.required {
  background-color: #FF4D4D;
  color: #fff;
  font-size: 70%;
  border-radius: 3px;
  padding: 3px 5px;
  line-height:50%;
  margin: 0 5px;
  font-weight: normal;
}
/* ============================
  .bnr_layout01
============================ */
/* line 5, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
.bnr_layout01 p {
  margin: 0;
}

/* line 8, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
.bnr_layout01 {
  display: table;
}

/* line 11, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
.bnr_layout01 .bnr_layout01_child {
  display: table-cell;
  width: 50%;
  overflow: hidden;
  vertical-align: top;
}

/* line 17, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
.bnr_layout01 .bnr_layout01_child:nth-child(odd) {
  padding-right: 5px;
}

/* line 20, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
.bnr_layout01 .bnr_layout01_child:nth-child(even) {
  padding-left: 5px;
}

/* line 23, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
.bnr_layout01 .bnr_layout01_child .thumb {
  width: 40%;
  float: left;
}

/* line 27, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
.bnr_layout01 .bnr_layout01_child .thumb img {
  max-width: 100%;
  vertical-align: bottom;
}

/* line 31, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
.bnr_layout01 .bnr_layout01_child .txt {
  width: 60%;
  float: left;
  box-sizing: border-box;
  padding-left: 5px;
  font-size: 0.9em;
  line-height: 1.5em;
}

@media screen and (max-width: 640px) {
  /* line 40, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
  .bnr_layout01,
.bnr_layout01 .bnr_layout01_child {
    display: block;
    width: 100%;
  }
  /* line 45, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
  .bnr_layout01 .bnr_layout01_child {
    margin-bottom: 30px;
  }
  /* line 48, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
  .bnr_layout01 .bnr_layout01_child:nth-child(odd) {
    padding-right: 0;
  }
  /* line 51, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
  .bnr_layout01 .bnr_layout01_child:nth-child(even) {
    padding-left: 0;
  }
  /* line 54, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
  .bnr_layout01 .bnr_layout01_child .thumb {
    width: 40%;
    float: left;
  }
}

@media screen and (min-width: 640px) {
  /* line 60, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
  .bnr_layout01 {
    width: 920px;
    margin: 0 auto 60px auto;
  }
  /* line 64, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
  .bnr_layout01 .bnr_layout01_child .thumb {
    width: 33%;
  }
}

@media screen and (max-width: 425px) {
  /* line 69, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
  .bnr_layout01 .bnr_layout01_child .thumb {
    box-sizing: border-box;
    padding: 10px 50px;
  }
  /* line 73, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
  .bnr_layout01 .bnr_layout01_child .thumb,
.bnr_layout01 .bnr_layout01_child .txt {
    width: 100%;
    float: none;
  }
  /* line 78, app/assets/stylesheets/top/shikaku_square_real/style.css.scss */
  .bnr_layout01 .bnr_layout01_child .txt {
    padding-left: 0;
  }
}
@charset "UTF-8";
/*
  スタイル
*/
/* line 7, app/assets/stylesheets/top/shiryou/style.scss */
body#shiryou {
  /* タブレット */
  /* ~1024px */
  /* スマホ */
  /* ~640px */
}

/* line 8, app/assets/stylesheets/top/shiryou/style.scss */
body#shiryou h3 {
  font-size: 20px;
  font-weight: lighter;
  color: #0083ce;
}
@charset "UTF-8";
/*
  スタイル
  */
/* line 9, app/assets/stylesheets/top/sitemap/style.scss */
#sitemapList ul {
  text-align: left;
  margin: 10px;
}

/* line 13, app/assets/stylesheets/top/sitemap/style.scss */
#sitemapList li {
  margin: 3px 0 3px 10px;
  vertical-align: top;
  display: inline-block;
}

/* line 18, app/assets/stylesheets/top/sitemap/style.scss */
#sitemapList > div > ul > li {
  display: inline-block;
}

/* タブレット */
/* ~1024px */
/* スマホ */
/* ~640px */
/* このスタイルシートはgtopでしか使用しない */

@charset "UTF-8";

/*共通*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

table {
  background: #f0f0ed;
  border-collapse: collapse;
  width: 100%;
}
th,
td {
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #dbdbdb;
}
th {
  background: #ededed;
  font-weight: normal;
  text-align: left;
}
td {
  background: #fff;
}

.wrapper {
  overflow: hidden;
  min-height: 650px;
}

html {
  font-size: 62.5%;
  color: #363636;
}

.spOnly {
  display: none;
}

body {
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo,
    'sans-serif';
  font-size: 14px;
  line-height: 1.8;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.7;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
/*common*/
.footer {
  margin-top: 0 !important;
}
.f110 {
  font-size: 110%;
}
.spFixedBottom {
  display: none;
}
.gtCourseBtn,
.gtShiryoBtn {
  display: block;
  position: relative;
  background-color: #0081cc;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  text-align: center;
  color: #fff;
  width: 80px;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid #0081cc;
}
.gtCourseBtn {
  background-color: #fff;
  color: #0081cc;
}
.gtContentsArea {
  margin-bottom: 80px !important;
}
h2.normal {
  margin-bottom: 20px;
}
.w800Box {
  width: 800px;
  margin: 0 auto;
}
.fontBold {
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .spFixedBottom {
    z-index: 5;
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .spFixedBottom a {
    width: 42%;
    padding: 3px 0;
    margin: 0 10px;
  }
  .gtContentsArea {
    margin-bottom: 40px !important;
  }
  .w800Box {
    width: 96%;
  }
  .pcOnly {
    display: none;
  }
  .spOnly {
    display: block;
  }
}
/*gtFixedHeader*/
.gtFixedHeader {
  z-index: 5;
  position: fixed;
  top: 0;
  background-color: #fff;
  width: 100%;
  height: 50px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}
.gtFixedHeader .gtFixedHeaderInner {
  width: 1000px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gtFixedHeader .gtFixedHeaderInner .headLogo {
  width: 120px;
}
.gtFixedHeader .gtFixedHeaderInner .gtheadBtn {
  display: flex;
  align-items: center;
}
.gtFixedHeader .gtFixedHeaderInner .gtheadBtn li {
  margin: 0 10px;
}
.gtFixedHeader .gtFixedHeaderInner .gtheadBtn li.iconBtn img {
  width: 24px;
  margin-right: 5px;
}
.gtFixedHeader .gtFixedHeaderInner .gtheadBtn li.iconBtn a {
  color: #363636;
}
.spFixedBottom {
  display: none;
}
.gtCourseBtn,
.gtShiryoBtn {
  display: block;
  position: relative;
  background-color: #0081cc;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  text-align: center;
  color: #fff;
  width: 80px;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid #0081cc;
}
.gtCourseBtn {
  background-color: #fff;
  color: #0081cc;
}
@media screen and (max-width: 640px) {
  .gtFixedHeader .gtFixedHeaderInner {
    width: 100%;
  }
  .gtFixedHeader {
    height: 40px;
  }
  .gtFixedHeader .gtFixedHeaderInner {
    width: 100%;
    height: 100%;
    margin: 0 auto;
  }
  .gtFixedHeader .gtFixedHeaderInner .headLogo {
    width: 100px;
    margin-left: 10px;
  }
  .gtFixedHeader .gtFixedHeaderInner .gtheadBtn li {
    margin: 0 10px 0 0;
  }
  .gtFixedHeader .gtFixedHeaderInner .gtheadBtn li.iconBtn {
    font-size: clamp(10px, 3.4vw, 13px);
  }
  .gtFixedHeader .gtFixedHeaderInner .gtheadBtn li.iconBtn img {
    width: 20px;
    margin-right: 3px;
  }
  .spFixedBottom {
    z-index: 5;
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .spFixedBottom a {
    width: 42%;
    padding: 3px 0;
    margin: 0 10px;
  }
}

/*fv*/
.gtFixedHeader {
  z-index: 20 !important;
}
.topMainArea {
  position: relative;
  height: 400px;
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
}
.topMainArea .topMainContents {
  z-index: 5;
  position: absolute;
  width: 1000px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.topMainArea .topMainContents .shikakuLogo {
  width: 180px;
  margin-top: 30px;
}
.topMainArea .topMainContents h1 {
  font-size: 60px;
  line-height: 1.4;
  margin-top: 20px;
  font-weight: 800;
}
.topMainArea .topMainContents h1 .marker {
  background: linear-gradient(transparent 30%, #fce339 30%);
  padding: 0 0.2em 0.1em;
  color: #0081cc;
}
.topMainArea .topMainContents .titleBottom {
  font-size: 22px;
  font-weight: bold;
  font-family: YuMincho, 'Yu Mincho', 'Hiragino Mincho ProN', 'serif';
  margin-top: 20px;
}
.topMainArea .topMainContents .medalImg {
  position: absolute;
  right: 0;
  bottom: 10px;
}
.topMainArea .topMainImgBox {
  position: relative;
  margin-left: auto;
  height: 100%;
  width: 50%;
}
.topMainArea .topMainImgBox::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 420px;
  background: linear-gradient(to left, transparent 0%, #fff 100%);
}
.topMainArea .topMainImgBox img {
  height: 130%;
  width: 100%;
  object-fit: cover;
  object-position: 100% -50px;
}
@media screen and (max-width: 640px) {
  .topMainArea {
    height: auto;
    width: 100%;
    margin-top: 40px;
  }
  .topMainArea .topMainContents {
    width: 100%;
    height: 100%;
    left: 0%;
    transform: translateX(0);
    position: relative;
  }
  .topMainArea .topMainContents .shikakuLogo {
    display: none;
  }
  .topMainArea .topMainContents h1 {
    font-size: 12vw;
    margin-top: 20px;
    margin-left: 4%;
  }
  .topMainArea .topMainContents .titleBottom {
    font-size: 5vw;
    margin-top: 10px;
    margin-left: 4%;
  }
  .topMainArea .topMainContents .medalImg {
    position: absolute;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -97%;
  }
  .topMainArea .topMainImgBox {
    position: relative;
    margin-left: auto;
    height: 100%;
    width: 130%;
    margin-top: -50px;
  }
  .topMainArea .topMainImgBox::before {
    z-index: 3;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, transparent 0%, #fff 100%);
    top: 0;
  }
  .topMainArea .topMainImgBox img {
    height: auto;
    width: 140%;
    max-width: 100%;
    object-fit: cover;
    object-position: 50%;
    bottom: 0;
    left: 40%;
    transform: translateX(-50%);
    position: relative;
  }
}
/*gtBannerBottomBtn*/
.gtBannerBottomBtn {
  width: 800px;
  margin: 30px auto 40px;
  display: flex;
  justify-content: space-between;
}
.gtBannerBottomBtn a {
  height: 45px;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #0081cc;
  width: 360px;
  padding: 5px 10px;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  line-height: 1.4;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.gtBannerBottomBtn a::before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateX(-50%) translateY(-50%);
  transform: rotate(45deg) translateX(-50%) translateY(-50%);
  right: 8%;
  top: 50%;
  margin-top: 2px;
}
.gtBannerBottomBtn a.yellow {
  background-color: #fce339;
  color: #363636;
}
.gtBannerBottomBtn a.yellow::before {
  border-top: 2px solid #363636;
  border-right: 2px solid #363636;
}
.gtBannerBottomBtn a span {
  display: block;
}
.gtBannerBottomBtn a .sm {
  font-size: 75%;
  position: relative;
  padding: 0 10px;
}
.gtBannerBottomBtn a .sm::before,
.gtBannerBottomBtn a .sm::after {
  content: '';
  position: absolute;
  border: 0.6px solid #363636;
  height: 16px;
  bottom: 0.2em;
}
.gtBannerBottomBtn a .sm::before {
  left: 0;
  transform: rotate(-30deg);
}
.gtBannerBottomBtn a .sm::after {
  right: 0;
  transform: rotate(-150deg);
}
@media screen and (max-width: 640px) {
  .gtBannerBottomBtn {
    display: none;
    width: 94%;
    margin: 20px auto 20px;
  }
  .gtBannerBottomBtn a {
    width: 42%;
    padding: 10px;
    font-size: 4vw;
  }
  .gtBannerBottomBtn a .sm {
    font-size: 60%;
    padding: 0 5px;
  }
  .gtBannerBottomBtn a .sm::before,
  .gtBannerBottomBtn a .sm::after {
    height: 10px;
  }
}
/*gtCourseBox*/
.gtCourseBox {
  width: 920px;
  margin: 0 auto 50px;
  padding: 30px 40px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
}
.gtCourseBox .gtCourseList {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.gtCourseBox .gtCourseList li {
  width: calc(100% / 3);
}
.gtCourseBox .gtCourseList li a {
  margin-left: 15px;
  display: inline-block;
  position: relative;
  color: #363636;
  padding-left: 1em;
  margin-top: 10px;
  width: 80%;
}
.gtCourseBox .gtCourseList li a::after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-left: 8px solid #0081cc;
}
.gtCourseBox .gtCourseList li.btn a {
  margin-left: 0;
  display: block;
  border: 1px solid #0081cc;
  border-radius: 50px;
  padding: 5px 0 5px 40px;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.2);
}
.gtCourseBox .gtCourseList li.btn a::after {
  left: 18px;
  border-left: 8px solid #fff;
}
.gtCourseBox .gtCourseList li.btn a::before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 20px;
  height: 20px;
  background-color: #0081cc;
  border-radius: 50%;
}
.bannerArea {
  background-color: #f0f0f0;
  padding: 30px 0;
}
.bannerArea .bxslider_wrapper {
  width: 1000px;
  margin: 0 auto;
}
.bannerArea .bxslider_wrapper .slick li a {
  display: block;
  margin: 0 10px 10px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 640px) {
  .gtCourseBox {
    width: 82%;
    margin: 30px auto 30px;
    padding: 20px 5%;
  }
  .gtCourseBox .gtCourseList {
    max-width: 340px;
    flex-direction: column;
    margin: 0 auto;
  }
  .gtCourseBox .gtCourseList li {
    width: 100%;
  }
  .gtCourseBox .gtCourseList li a {
    display: inline-block;
    position: relative;
    color: #363636;
    padding-left: 1em;
    margin-top: 10px;
    width: auto;
  }
  .bannerArea {
    padding: 20px 0;
  }
  .bannerArea .bxslider_wrapper {
    width: 90%;
    margin: 0 auto;
  }
}
/*messageArea*/
.messageArea {
  background-color: #cbebfb;
  width: 900px;
  margin: 50px auto 80px;
  position: relative;
  padding: 40px 50px;
}
.messageArea .messageTxt {
  position: relative;
  z-index: 1;
  font-family: YuMincho, 'Yu Mincho', 'Hiragino Mincho ProN', 'serif';
  font-weight: bold;
  font-size: 16px;
}
.messageArea .messageTxt h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.messageArea .messageTxt p {
  margin-bottom: 1em;
}
.messageArea .messageTxt p:last-child {
  margin-bottom: 0;
}
.messageArea .messageImg {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.messageArea .messageImg::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 100%;
  background: linear-gradient(to left, transparent 0%, #cbebfb 100%);
  left: 0;
  top: 0;
}
.messageArea .messageImg img {
  height: 100%;
  max-width: none;
}
@media screen and (max-width: 640px) {
  .messageArea {
    width: 100%;
    margin: 0px auto 50px;
    position: relative;
    padding: 0;
  }
  .messageArea .messageTxt {
    font-size: 14px;
    padding: 30px 5% 0;
  }
  .messageArea .messageTxt h2 {
    font-size: 7vw;
  }
  .messageArea .messageImg {
    position: static;
    width: 100%;
    height: 100%;
    margin-top: -30px;
  }
  .messageArea .messageImg::after {
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, transparent 0%, #cbebfb 100%);
    left: 0;
    top: auto;
  }
  .messageArea .messageImg img {
    height: auto;
    max-width: 100%;
  }
}
/*pointList*/
.pointListArea {
  width: 1000px;
  margin: 0 auto;
}
.pointListArea h2.pointTitle {
  position: relative;
  margin-bottom: 10px;
  font-size: 30px;
}
.pointListArea h2.pointTitle span {
  border-left: 10px solid #0081cc;
  padding: 5px 0 5px 16px;
}
.pointList li {
  position: relative;
  margin-bottom: 50px;
}
.pointList li .txtBox {
  z-index: 1;
  position: absolute;
  padding: 30px 30px;
  width: 600px;
  background-color: #fff;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pointList li .txtBox h2.numTitle {
  color: #0081cc;
  font-size: 24px;
  display: flex;
  align-items: center;
  line-height: 1.4;
  margin-bottom: 10px;
}
.pointList li .txtBox h2.numTitle svg {
  height: 40px;
  margin-right: 20px;
}
.pointList li .txtBox .marker {
  background: linear-gradient(transparent 30%, #cbebfb 30%);
}
.pointList li .imgBox {
  position: relative;
  background-color: #f0f0f0;
  width: 360px;
  height: 300px;
  margin-left: auto;
  position: relative;
}
.pointList li .imgBox img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  height: 230px;
}
.pointList li .imgBox .teacherImg {
  transform: translateX(-50%) translateY(0%);
  height: 290px;
  max-width: none;
  bottom: 0;
  top: auto;
  transition: none;
}
.pointList .reversePC .txtBox {
  right: 0;
  left: auto;
}
.pointList .reversePC .imgBox {
  margin-right: auto;
  margin-left: 0;
}
@media screen and (max-width: 640px) {
  .pointListArea {
    width: 100%;
  }
  .pointListArea h2.pointTitle {
    margin-bottom: 20px;
    font-size: 6vw;
    text-align: center;
  }
  .pointListArea h2.pointTitle span {
    border-left: none;
    border-bottom: 3px solid #0081cc;
    padding: 0 10px 5px 10px;
  }
  .pointList li {
    position: relative;
    margin-bottom: 30px;
  }
  .pointList li .txtBox {
    z-index: 1;
    position: relative;
    padding: 20px 5%;
    width: 80%;
    background-color: #fff;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
    left: 0;
    top: 0;
    transform: translateY(0);
  }
  .pointList li .txtBox h2.numTitle {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .pointList li .txtBox h2.numTitle svg {
    height: 40px;
    margin-right: 10px;
  }
  .pointList li .imgBox {
    position: relative;
    background-color: #f0f0f0;
    width: 80%;
    height: 200px;
    margin-left: auto;
    position: relative;
    margin-top: -20px;
    overflow: hidden;
  }
  .pointList li .imgBox img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    height: 160px;
    margin-top: 10px;
  }
  .pointList li .imgBox .teacherImg {
    height: 92%;
  }
  .pointList .reversePC .txtBox {
    right: auto;
    left: 0;
  }
  .pointList .reversePC .imgBox {
    margin-right: 0;
    margin-left: auto;
  }
}
/*合格者*/
.gtVoiceArea {
  width: 1000px;
  margin: 0 auto 50px;
}
.gtVoiceList {
  display: flex;
  justify-content: space-between;
}
.gtVoiceList li {
  position: relative;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  width: 30%;
  margin: 30px 10px 10px;
}
.gtVoiceList li a {
  display: block;
  padding: 20px 20px;
  color: #363636;
  font-size: 14px;
}
.gtVoiceList li .shikakuTag {
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #fce339;
  padding: 5px 30px;
}
.gtVoiceList li img {
  margin-bottom: 10px;
}
.gtVoiceList li .name {
  text-align: right;
  margin-top: 5px;
  font-size: 90%;
}
@media screen and (max-width: 640px) {
  .gtVoiceArea {
    width: 100%;
    overflow: hidden;
    margin: 0 auto 0px;
  }

  .gtVoiceList li {
    width: calc(30% - 40px);
  }
  .gtVoiceList li a {
    padding: 20px 10px 10px;
  }
  .gtVoiceList li .shikakuTag {
    font-size: 80%;
    top: -10px;
    left: -5px;
    padding: 4px 15px;
  }
}
.slick-dots li {
  box-shadow: none;
}
/*media*/
.gtMediaList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gtMediaList li {
  margin-bottom: 10px;
}
.recruitBanner {
  display: block;
  width: 600px;
  margin: 0 auto;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
@media screen and (max-width: 640px) {
  .gtMediaList {
    justify-content: center;
  }
  .gtMediaList li {
    width: calc(25% - 20px);
    margin: 0 10px 10px 10px;
  }
  .recruitBanner {
    width: 90%;
  }
}
/*おしらせ*/
h2.normal {
  font-size: 24px;
  margin-bottom: 10px;
}
.titleFlex {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.titleFlex .ichiranBtn {
  font-weight: normal;
  font-size: 13px;
  color: #7a7a7a;
  border-bottom: 1px solid #7a7a7a;
  line-height: 1;
  margin-right: 5px;
}
.gtFlex {
  display: flex;
  justify-content: space-between;
}
.halfBox {
  width: 48%;
}
div.information.scroll-info {
  overflow: auto;
  height: 300px;
  width: 100%;
  box-sizing: border-box;
  padding-right: 10px;
  padding-left: 10px;
}
.information p {
  margin: 0;
}
.information ul li {
  margin-bottom: 15px;
  line-height: 100%;
  display: block;
  font-size: 13px;
}
.information ul li p {
  display: table-cell;
}
.information ul li p.category {
  padding-right: 10px;
  min-width: 100px;
}
.information ul li p.category a {
  background: #414141;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  padding: 4px 10px;
  display: block;
  text-align: center;
  line-height: 130%;
}

.news {
  margin-bottom: 50px;
}
div.news.scroll-info {
  overflow: auto;
  height: 300px;
  width: 100%;
  box-sizing: border-box;
  padding-right: 10px;
  padding-left: 10px;
}

.news p {
  margin: 0;
}
.news ul li {
  font-size: 13px;
  margin-bottom: 17px;
  display: block;
  line-height: 120%;
}
.news ul li p {
  display: table-cell;
  vertical-align: top;
}
.news ul li p.time {
  padding-right: 10px;
}
.news ul li p.time span {
  background: #f3f3f3;
  border: 1px solid #ddd;
  color: #333;
  text-decoration: none;
  font-size: 11px;
  padding: 4px 10px;
}
.news_text {
  line-height: 150%;
}
@media screen and (max-width: 640px) {
  .gtFlex {
    flex-direction: column;
  }
  .halfBox {
    width: 100%;
  }
  .spContentsBottom {
    margin-bottom: 30px;
  }

  .gtTohaLinkList {
    max-width: 340px;
    margin: 10px auto 0;
  }
  .gtTohaLinkList li {
    margin-bottom: 10px;
  }
  .gtMediaList {
    justify-content: center;
  }
  .gtMediaList li {
    width: calc(25% - 20px);
    margin: 0 10px 10px 10px;
  }
  .gtColumnList {
    justify-content: space-between;
  }
  .gtColumnList li {
    width: 48%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .gtColumnList li:nth-child(4n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 640px) {
  .groupArea {
    padding: 20px 4%;
    width: 86%;
    margin: 0 auto 40px;
  }
  .groupArea .groupLinkList {
    flex-direction: column;
  }
  .groupArea .groupLinkList li:not(:last-child) {
    margin-bottom: 10px;
  }
}
/*ShikakuPassリンク一覧*/
.textCenter {
  text-align: center;
}

.spLinkUpperTitle {
  text-align: center;
}
.spLinkUpperTitle span {
  background-color: #0081cc;
  color: #ffffff;
  padding: 4px 8px;
}

.spLogoArea {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px auto;
}
.spLogoArea img {
  width: 32%;
  max-width: 150px;
  margin: 0 16px;
}

h3.kouzaTitle {
  font-size: 1em;
  font-weight: bold;
}

.gtCourseBox .spCourseList {
  justify-content: flex-start;
  align-items: center;
}
.gtCourseBox .spCourseList li {
  line-height: 1.2;
  width: calc(100% / 3);
}
.gtCourseBox .spCourseList li a {
  margin-top: 0;
  margin-bottom: 10px;
  width: 90%;
}

.spBannerArea {
  text-align: center;
  margin-top: 16px;
}
.spBannerArea img {
  width: 100%;
  max-width: 480px;
}

@media screen and (max-width: 640px) {
  .gtCourseBox .spCourseList li {
    width: 100%;
  }
}
@charset "UTF-8";
/*
  スタイル
  */
/* line 7, app/assets/stylesheets/top/teachers/style.scss */
body#teacher {
  /* detial */
  /* タブレット */
  /* ~1024px */
  /* スマホ */
  /* ~640px */
}

/* line 8, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .teacher .category {
  position: relative;
  overflow: hidden;
}

/* line 12, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .teacher .category h2 {
  text-align: center;
  line-height: 100%;
  min-height: 20px;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 11px;
  position: absolute;
  top: 0;
  left: 20px;
  background: #fff;
  display: inline-block;
  padding: 3px 7px;
}

/* line 28, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .teacher .category ul {
  border: 1px solid #bdbdbd;
  padding: 10px;
  font-size: 15px;
  line-height: 100%;
  margin-top: 8px;
}

/* line 35, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .teacher .category ul li {
  display: inline-block;
}

/* line 38, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .teacher .category ul li a {
  text-decoration: none;
  color: #333;
  padding: 3px 0;
  margin: 5px 10px;
  box-sizing: border-box;
  display: inline-block;
  border-bottom: 4px solid #fff;
}

/* line 47, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .teacher .category ul li a.active,
body#teacher .teacher .category ul li a:hover {
  border-bottom: 3px solid #0083ce;
}

/* line 51, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .teacher_list_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: space-evenly;
}

/* line 57, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .teacher_list {
  background: #f2f2f2;
  text-align: center;
  padding: 20px 0 10px;
  margin: 20px 0;
  flex-basis: 24.5%;
}

/* line 66, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .teacher_list .photo img {
  max-width: 100%;
}

/* line 69, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .teacher_list .prf {
  margin: 10px;
  font-size: 12px;
}

/* line 73, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .teacher_list .prf h2 {
  min-width: auto;
  line-height: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  font-size: 30px;
  display: block;
}

/* line 83, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .teacher_list .prf small {
  display: block;
}

/* line 86, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .teacher_list .prf .prf_cat {
  margin: 0 2px;
  line-height: 100%;
  border: 1px solid #bdbdbd;
  color: #787878;
  padding: 4px;
  display: inline-block;
}

/* line 94, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .teacher_list .description {
  line-height: 150%;
  text-align: left;
  padding: 5px 0;
}

/* line 99, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .detail_btn {
  color: #333;
  text-decoration: none;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  line-height: 100%;
  padding: 10px 10px;
  display: block;
  width: 80%;
  box-sizing: border-box;
  margin: 10px auto;
  background: url(/images/top/arrow_triangle_gray.png) no-repeat 18% 50%;
  background-size: 5px auto;
}

/* line 113, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .etail_btn:hover {
  color: #333;
  background-color: #d1d1d1;
}

/* line 117, app/assets/stylesheets/top/teachers/style.scss */
body#teacher select.certificate_select {
  padding: 7px 10px;
  font-size: 100%;
  background: #fff;
  border: 1px solid #ccc;
  width: 240px;
}

/* line 125, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .detial .teacher_list {
  background: #fff;
  margin: 0 0;
  float: none;
  box-sizing: border-box;
  padding: 20px 10px;
  width: 100%;
  display: table;
  table-layout: fixed;
}

/* line 135, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .detial .teacher_list .photo {
  display: table-cell;
  width: 20%;
  vertical-align: top;
}

/* line 140, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .detial .teacher_list .photo img {
  max-width: 100%;
  height: auto;
}

/* line 144, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .detial .teacher_list .prf {
  text-align: left;
  margin: 0;
  display: table-cell;
  width: 80%;
  vertical-align: middle;
  padding-left: 10px;
  font-size: 15px;
}

/* line 153, app/assets/stylesheets/top/teachers/style.scss */
body#teacher .detial .teacher_list .description {
  line-height: 200%;
}

@media screen and (max-width: 640px) {
  /* line 7, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher {
    /* detial */
  }
  /* line 165, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .teacher_list_wrapper {
    flex-direction: column;
  }
  /* line 168, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .teacher .category {
    min-height: 50px;
  }
  /* line 171, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .teacher .category h2 {
    font-size: 13px;
    padding: 12px 18px;
    border: 1px solid #bdbdbd;
    background: url(/images/top/arrow_triangle_gray.png) no-repeat 7px 50%;
    background-size: 5px auto;
    background-color: #f1f1f1;
  }
  /* line 179, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .teacher .category ul {
    padding: 7px;
  }
  /* line 182, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .teacher_list {
    margin: 20px 0 0;
    float: none;
    box-sizing: border-box;
    padding: 20px 10px;
    width: 100%;
    display: table;
    table-layout: fixed;
  }
  /* line 191, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .teacher_list .photo {
    display: table-cell;
    width: 40%;
    vertical-align: middle;
  }
  /* line 196, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .teacher_list .photo img {
    max-width: 100%;
    height: auto;
  }
  /* line 200, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .teacher_list .prf {
    text-align: left;
    margin: 0;
    display: table-cell;
    width: 60%;
    vertical-align: middle;
    padding-left: 10px;
  }
  /* line 208, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .detail_btn {
    text-align: center;
  }
  /* line 211, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .teacher .category ul {
    padding-top: 30px;
    margin-top: 25px;
  }
  /* line 217, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .detail_btn {
    width: 100%;
  }
  /* line 222, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .detial .teacher_list {
    display: block;
    padding: 0;
  }
  /* line 226, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .detial .teacher_list .photo {
    display: block;
    width: 100%;
  }
  /* line 230, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .detial .teacher_list .photo img {
    max-width: 100%;
    height: auto;
  }
  /* line 234, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .detial .teacher_list .prf {
    display: block;
    width: 100%;
    padding: 0;
  }
  /* line 239, app/assets/stylesheets/top/teachers/style.scss */
  body#teacher .detial .teacher_list .description {
    line-height: 200%;
  }
}
@charset "UTF-8";
/* ============================
BootStrapが管理画面以外で適用されていません。
資格スクエアに適用させようと、vender/bootstrap.min.cssを読み込んだところ、
レイアウト崩れが発生しました。
対応として、bootstrap-styleというネームスペースで使用できるようにしました。
============================ */
/* ============================
BootStrap：css
bootstrap-styleというclass配下で使用できます。
============================ */
/* line 5, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style {
  /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
}

/* line 6, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* line 11, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style body {
  margin: 0;
}

/* line 14, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style article,
.bootstrap-style aside,
.bootstrap-style details,
.bootstrap-style figcaption,
.bootstrap-style figure,
.bootstrap-style footer,
.bootstrap-style header,
.bootstrap-style hgroup,
.bootstrap-style main,
.bootstrap-style menu,
.bootstrap-style nav,
.bootstrap-style section,
.bootstrap-style summary {
  display: block;
}

/* line 29, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style audio,
.bootstrap-style canvas,
.bootstrap-style progress,
.bootstrap-style video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 36, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 40, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style [hidden],
.bootstrap-style template {
  display: none;
}

/* line 44, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a {
  background-color: transparent;
}

/* line 47, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a:active,
.bootstrap-style a:hover {
  outline: 0;
}

/* line 51, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style abbr[title] {
  border-bottom: 1px dotted;
}

/* line 54, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style b,
.bootstrap-style strong {
  font-weight: bold;
}

/* line 58, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style dfn {
  font-style: italic;
}

/* line 61, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style h1 {
  margin: .67em 0;
  font-size: 2em;
}

/* line 65, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style mark {
  color: #000;
  background: #ff0;
}

/* line 69, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style small {
  font-size: 80%;
}

/* line 72, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style sub,
.bootstrap-style sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

/* line 79, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style sup {
  top: -.5em;
}

/* line 82, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style sub {
  bottom: -.25em;
}

/* line 85, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style img {
  border: 0;
}

/* line 88, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style svg:not(:root) {
  overflow: hidden;
}

/* line 91, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style figure {
  margin: 1em 40px;
}

/* line 94, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style hr {
  height: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 100, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style pre {
  overflow: auto;
}

/* line 103, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style code,
.bootstrap-style kbd,
.bootstrap-style pre,
.bootstrap-style samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 110, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style button,
.bootstrap-style input,
.bootstrap-style optgroup,
.bootstrap-style select,
.bootstrap-style textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}

/* line 119, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style button {
  overflow: visible;
}

/* line 122, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style button,
.bootstrap-style select {
  text-transform: none;
}

/* line 126, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style button,
.bootstrap-style html input[type="button"],
.bootstrap-style input[type="reset"],
.bootstrap-style input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 133, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style button[disabled],
.bootstrap-style html input[disabled] {
  cursor: default;
}

/* line 137, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style button::-moz-focus-inner,
.bootstrap-style input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 142, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style input {
  line-height: normal;
}

/* line 145, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style input[type="checkbox"],
.bootstrap-style input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

/* line 152, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style input[type="number"]::-webkit-inner-spin-button,
.bootstrap-style input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 156, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

/* line 162, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style input[type="search"]::-webkit-search-cancel-button,
.bootstrap-style input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 166, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style fieldset {
  padding: .35em .625em .75em;
  margin: 0 2px;
  border: 1px solid #c0c0c0;
}

/* line 171, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style legend {
  padding: 0;
  border: 0;
}

/* line 175, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style textarea {
  overflow: auto;
}

/* line 178, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style optgroup {
  font-weight: bold;
}

/* line 181, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* line 185, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style td,
.bootstrap-style th {
  padding: 0;
}

@media print {
  /* line 191, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style *,
.bootstrap-style *:before,
.bootstrap-style *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }
  /* line 200, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style a,
.bootstrap-style a:visited {
    text-decoration: underline;
  }
  /* line 204, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style a[href]:after {
    content: " (" attr(href) ")";
  }
  /* line 207, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* line 210, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style a[href^="#"]:after,
.bootstrap-style a[href^="javascript:"]:after {
    content: "";
  }
  /* line 214, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style pre,
.bootstrap-style blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /* line 220, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style thead {
    display: table-header-group;
  }
  /* line 223, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style tr,
.bootstrap-style img {
    page-break-inside: avoid;
  }
  /* line 227, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style img {
    max-width: 100% !important;
  }
  /* line 230, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style p,
.bootstrap-style h2,
.bootstrap-style h3 {
    orphans: 3;
    widows: 3;
  }
  /* line 236, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style h2,
.bootstrap-style h3 {
    page-break-after: avoid;
  }
  /* line 240, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar {
    display: none;
  }
  /* line 243, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .btn > .caret,
.bootstrap-style .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  /* line 247, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .label {
    border: 1px solid #000;
  }
  /* line 250, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .table {
    border-collapse: collapse !important;
  }
  /* line 253, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .table td,
.bootstrap-style .table th {
    background-color: #fff !important;
  }
  /* line 257, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .table-bordered th,
.bootstrap-style .table-bordered td {
    border: 1px solid #ddd !important;
  }
}

@font-face {
  /* line 5, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style {
    font-family: 'Glyphicons Halflings';
    src: url(/../fonts/glyphicons-halflings-regular.eot);
    src: url(/../fonts/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"), url(/../fonts/glyphicons-halflings-regular.woff2) format("woff2"), url(/../fonts/glyphicons-halflings-regular.woff) format("woff"), url(/../fonts/glyphicons-halflings-regular.ttf) format("truetype"), url(/../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg");
  }
}

/* line 268, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 280, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-asterisk:before {
  content: "\002a";
}

/* line 283, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-plus:before {
  content: "\002b";
}

/* line 286, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-euro:before,
.bootstrap-style .glyphicon-eur:before {
  content: "\20ac";
}

/* line 290, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-minus:before {
  content: "\2212";
}

/* line 293, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-cloud:before {
  content: "\2601";
}

/* line 296, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-envelope:before {
  content: "\2709";
}

/* line 299, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-pencil:before {
  content: "\270f";
}

/* line 302, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-glass:before {
  content: "\e001";
}

/* line 305, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-music:before {
  content: "\e002";
}

/* line 308, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-search:before {
  content: "\e003";
}

/* line 311, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-heart:before {
  content: "\e005";
}

/* line 314, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-star:before {
  content: "\e006";
}

/* line 317, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-star-empty:before {
  content: "\e007";
}

/* line 320, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-user:before {
  content: "\e008";
}

/* line 323, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-film:before {
  content: "\e009";
}

/* line 326, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-th-large:before {
  content: "\e010";
}

/* line 329, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-th:before {
  content: "\e011";
}

/* line 332, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-th-list:before {
  content: "\e012";
}

/* line 335, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-ok:before {
  content: "\e013";
}

/* line 338, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-remove:before {
  content: "\e014";
}

/* line 341, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-zoom-in:before {
  content: "\e015";
}

/* line 344, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-zoom-out:before {
  content: "\e016";
}

/* line 347, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-off:before {
  content: "\e017";
}

/* line 350, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-signal:before {
  content: "\e018";
}

/* line 353, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-cog:before {
  content: "\e019";
}

/* line 356, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-trash:before {
  content: "\e020";
}

/* line 359, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-home:before {
  content: "\e021";
}

/* line 362, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-file:before {
  content: "\e022";
}

/* line 365, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-time:before {
  content: "\e023";
}

/* line 368, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-road:before {
  content: "\e024";
}

/* line 371, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-download-alt:before {
  content: "\e025";
}

/* line 374, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-download:before {
  content: "\e026";
}

/* line 377, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-upload:before {
  content: "\e027";
}

/* line 380, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-inbox:before {
  content: "\e028";
}

/* line 383, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-play-circle:before {
  content: "\e029";
}

/* line 386, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-repeat:before {
  content: "\e030";
}

/* line 389, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-refresh:before {
  content: "\e031";
}

/* line 392, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-list-alt:before {
  content: "\e032";
}

/* line 395, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-lock:before {
  content: "\e033";
}

/* line 398, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-flag:before {
  content: "\e034";
}

/* line 401, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-headphones:before {
  content: "\e035";
}

/* line 404, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-volume-off:before {
  content: "\e036";
}

/* line 407, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-volume-down:before {
  content: "\e037";
}

/* line 410, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-volume-up:before {
  content: "\e038";
}

/* line 413, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-qrcode:before {
  content: "\e039";
}

/* line 416, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-barcode:before {
  content: "\e040";
}

/* line 419, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-tag:before {
  content: "\e041";
}

/* line 422, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-tags:before {
  content: "\e042";
}

/* line 425, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-book:before {
  content: "\e043";
}

/* line 428, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-bookmark:before {
  content: "\e044";
}

/* line 431, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-print:before {
  content: "\e045";
}

/* line 434, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-camera:before {
  content: "\e046";
}

/* line 437, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-font:before {
  content: "\e047";
}

/* line 440, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-bold:before {
  content: "\e048";
}

/* line 443, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-italic:before {
  content: "\e049";
}

/* line 446, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-text-height:before {
  content: "\e050";
}

/* line 449, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-text-width:before {
  content: "\e051";
}

/* line 452, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-align-left:before {
  content: "\e052";
}

/* line 455, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-align-center:before {
  content: "\e053";
}

/* line 458, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-align-right:before {
  content: "\e054";
}

/* line 461, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-align-justify:before {
  content: "\e055";
}

/* line 464, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-list:before {
  content: "\e056";
}

/* line 467, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-indent-left:before {
  content: "\e057";
}

/* line 470, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-indent-right:before {
  content: "\e058";
}

/* line 473, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-facetime-video:before {
  content: "\e059";
}

/* line 476, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-picture:before {
  content: "\e060";
}

/* line 479, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-map-marker:before {
  content: "\e062";
}

/* line 482, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-adjust:before {
  content: "\e063";
}

/* line 485, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-tint:before {
  content: "\e064";
}

/* line 488, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-edit:before {
  content: "\e065";
}

/* line 491, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-share:before {
  content: "\e066";
}

/* line 494, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-check:before {
  content: "\e067";
}

/* line 497, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-move:before {
  content: "\e068";
}

/* line 500, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-step-backward:before {
  content: "\e069";
}

/* line 503, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-fast-backward:before {
  content: "\e070";
}

/* line 506, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-backward:before {
  content: "\e071";
}

/* line 509, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-play:before {
  content: "\e072";
}

/* line 512, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-pause:before {
  content: "\e073";
}

/* line 515, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-stop:before {
  content: "\e074";
}

/* line 518, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-forward:before {
  content: "\e075";
}

/* line 521, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-fast-forward:before {
  content: "\e076";
}

/* line 524, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-step-forward:before {
  content: "\e077";
}

/* line 527, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-eject:before {
  content: "\e078";
}

/* line 530, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-chevron-left:before {
  content: "\e079";
}

/* line 533, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-chevron-right:before {
  content: "\e080";
}

/* line 536, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-plus-sign:before {
  content: "\e081";
}

/* line 539, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-minus-sign:before {
  content: "\e082";
}

/* line 542, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-remove-sign:before {
  content: "\e083";
}

/* line 545, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-ok-sign:before {
  content: "\e084";
}

/* line 548, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-question-sign:before {
  content: "\e085";
}

/* line 551, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-info-sign:before {
  content: "\e086";
}

/* line 554, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-screenshot:before {
  content: "\e087";
}

/* line 557, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-remove-circle:before {
  content: "\e088";
}

/* line 560, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-ok-circle:before {
  content: "\e089";
}

/* line 563, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-ban-circle:before {
  content: "\e090";
}

/* line 566, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-arrow-left:before {
  content: "\e091";
}

/* line 569, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-arrow-right:before {
  content: "\e092";
}

/* line 572, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-arrow-up:before {
  content: "\e093";
}

/* line 575, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-arrow-down:before {
  content: "\e094";
}

/* line 578, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-share-alt:before {
  content: "\e095";
}

/* line 581, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-resize-full:before {
  content: "\e096";
}

/* line 584, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-resize-small:before {
  content: "\e097";
}

/* line 587, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-exclamation-sign:before {
  content: "\e101";
}

/* line 590, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-gift:before {
  content: "\e102";
}

/* line 593, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-leaf:before {
  content: "\e103";
}

/* line 596, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-fire:before {
  content: "\e104";
}

/* line 599, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-eye-open:before {
  content: "\e105";
}

/* line 602, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-eye-close:before {
  content: "\e106";
}

/* line 605, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-warning-sign:before {
  content: "\e107";
}

/* line 608, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-plane:before {
  content: "\e108";
}

/* line 611, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-calendar:before {
  content: "\e109";
}

/* line 614, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-random:before {
  content: "\e110";
}

/* line 617, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-comment:before {
  content: "\e111";
}

/* line 620, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-magnet:before {
  content: "\e112";
}

/* line 623, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-chevron-up:before {
  content: "\e113";
}

/* line 626, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-chevron-down:before {
  content: "\e114";
}

/* line 629, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-retweet:before {
  content: "\e115";
}

/* line 632, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-shopping-cart:before {
  content: "\e116";
}

/* line 635, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-folder-close:before {
  content: "\e117";
}

/* line 638, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-folder-open:before {
  content: "\e118";
}

/* line 641, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-resize-vertical:before {
  content: "\e119";
}

/* line 644, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-resize-horizontal:before {
  content: "\e120";
}

/* line 647, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-hdd:before {
  content: "\e121";
}

/* line 650, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-bullhorn:before {
  content: "\e122";
}

/* line 653, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-bell:before {
  content: "\e123";
}

/* line 656, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-certificate:before {
  content: "\e124";
}

/* line 659, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-thumbs-up:before {
  content: "\e125";
}

/* line 662, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-thumbs-down:before {
  content: "\e126";
}

/* line 665, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-hand-right:before {
  content: "\e127";
}

/* line 668, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-hand-left:before {
  content: "\e128";
}

/* line 671, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-hand-up:before {
  content: "\e129";
}

/* line 674, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-hand-down:before {
  content: "\e130";
}

/* line 677, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-circle-arrow-right:before {
  content: "\e131";
}

/* line 680, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-circle-arrow-left:before {
  content: "\e132";
}

/* line 683, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-circle-arrow-up:before {
  content: "\e133";
}

/* line 686, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-circle-arrow-down:before {
  content: "\e134";
}

/* line 689, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-globe:before {
  content: "\e135";
}

/* line 692, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-wrench:before {
  content: "\e136";
}

/* line 695, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-tasks:before {
  content: "\e137";
}

/* line 698, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-filter:before {
  content: "\e138";
}

/* line 701, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-briefcase:before {
  content: "\e139";
}

/* line 704, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-fullscreen:before {
  content: "\e140";
}

/* line 707, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-dashboard:before {
  content: "\e141";
}

/* line 710, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-paperclip:before {
  content: "\e142";
}

/* line 713, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-heart-empty:before {
  content: "\e143";
}

/* line 716, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-link:before {
  content: "\e144";
}

/* line 719, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-phone:before {
  content: "\e145";
}

/* line 722, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-pushpin:before {
  content: "\e146";
}

/* line 725, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-usd:before {
  content: "\e148";
}

/* line 728, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-gbp:before {
  content: "\e149";
}

/* line 731, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-sort:before {
  content: "\e150";
}

/* line 734, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-sort-by-alphabet:before {
  content: "\e151";
}

/* line 737, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-sort-by-alphabet-alt:before {
  content: "\e152";
}

/* line 740, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-sort-by-order:before {
  content: "\e153";
}

/* line 743, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-sort-by-order-alt:before {
  content: "\e154";
}

/* line 746, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-sort-by-attributes:before {
  content: "\e155";
}

/* line 749, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-sort-by-attributes-alt:before {
  content: "\e156";
}

/* line 752, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-unchecked:before {
  content: "\e157";
}

/* line 755, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-expand:before {
  content: "\e158";
}

/* line 758, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-collapse-down:before {
  content: "\e159";
}

/* line 761, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-collapse-up:before {
  content: "\e160";
}

/* line 764, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-log-in:before {
  content: "\e161";
}

/* line 767, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-flash:before {
  content: "\e162";
}

/* line 770, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-log-out:before {
  content: "\e163";
}

/* line 773, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-new-window:before {
  content: "\e164";
}

/* line 776, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-record:before {
  content: "\e165";
}

/* line 779, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-save:before {
  content: "\e166";
}

/* line 782, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-open:before {
  content: "\e167";
}

/* line 785, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-saved:before {
  content: "\e168";
}

/* line 788, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-import:before {
  content: "\e169";
}

/* line 791, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-export:before {
  content: "\e170";
}

/* line 794, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-send:before {
  content: "\e171";
}

/* line 797, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-floppy-disk:before {
  content: "\e172";
}

/* line 800, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-floppy-saved:before {
  content: "\e173";
}

/* line 803, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-floppy-remove:before {
  content: "\e174";
}

/* line 806, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-floppy-save:before {
  content: "\e175";
}

/* line 809, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-floppy-open:before {
  content: "\e176";
}

/* line 812, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-credit-card:before {
  content: "\e177";
}

/* line 815, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-transfer:before {
  content: "\e178";
}

/* line 818, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-cutlery:before {
  content: "\e179";
}

/* line 821, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-header:before {
  content: "\e180";
}

/* line 824, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-compressed:before {
  content: "\e181";
}

/* line 827, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-earphone:before {
  content: "\e182";
}

/* line 830, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-phone-alt:before {
  content: "\e183";
}

/* line 833, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-tower:before {
  content: "\e184";
}

/* line 836, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-stats:before {
  content: "\e185";
}

/* line 839, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-sd-video:before {
  content: "\e186";
}

/* line 842, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-hd-video:before {
  content: "\e187";
}

/* line 845, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-subtitles:before {
  content: "\e188";
}

/* line 848, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-sound-stereo:before {
  content: "\e189";
}

/* line 851, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-sound-dolby:before {
  content: "\e190";
}

/* line 854, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-sound-5-1:before {
  content: "\e191";
}

/* line 857, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-sound-6-1:before {
  content: "\e192";
}

/* line 860, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-sound-7-1:before {
  content: "\e193";
}

/* line 863, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-copyright-mark:before {
  content: "\e194";
}

/* line 866, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-registration-mark:before {
  content: "\e195";
}

/* line 869, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-cloud-download:before {
  content: "\e197";
}

/* line 872, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-cloud-upload:before {
  content: "\e198";
}

/* line 875, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-tree-conifer:before {
  content: "\e199";
}

/* line 878, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-tree-deciduous:before {
  content: "\e200";
}

/* line 881, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-cd:before {
  content: "\e201";
}

/* line 884, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-save-file:before {
  content: "\e202";
}

/* line 887, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-open-file:before {
  content: "\e203";
}

/* line 890, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-level-up:before {
  content: "\e204";
}

/* line 893, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-copy:before {
  content: "\e205";
}

/* line 896, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-paste:before {
  content: "\e206";
}

/* line 899, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-alert:before {
  content: "\e209";
}

/* line 902, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-equalizer:before {
  content: "\e210";
}

/* line 905, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-king:before {
  content: "\e211";
}

/* line 908, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-queen:before {
  content: "\e212";
}

/* line 911, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-pawn:before {
  content: "\e213";
}

/* line 914, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-bishop:before {
  content: "\e214";
}

/* line 917, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-knight:before {
  content: "\e215";
}

/* line 920, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-baby-formula:before {
  content: "\e216";
}

/* line 923, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-tent:before {
  content: "\26fa";
}

/* line 926, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-blackboard:before {
  content: "\e218";
}

/* line 929, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-bed:before {
  content: "\e219";
}

/* line 932, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-apple:before {
  content: "\f8ff";
}

/* line 935, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-erase:before {
  content: "\e221";
}

/* line 938, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-hourglass:before {
  content: "\231b";
}

/* line 941, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-lamp:before {
  content: "\e223";
}

/* line 944, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-duplicate:before {
  content: "\e224";
}

/* line 947, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-piggy-bank:before {
  content: "\e225";
}

/* line 950, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-scissors:before {
  content: "\e226";
}

/* line 953, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-bitcoin:before {
  content: "\e227";
}

/* line 956, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-btc:before {
  content: "\e227";
}

/* line 959, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-xbt:before {
  content: "\e227";
}

/* line 962, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-yen:before {
  content: "\00a5";
}

/* line 965, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-jpy:before {
  content: "\00a5";
}

/* line 968, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-ruble:before {
  content: "\20bd";
}

/* line 971, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-rub:before {
  content: "\20bd";
}

/* line 974, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-scale:before {
  content: "\e230";
}

/* line 977, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-ice-lolly:before {
  content: "\e231";
}

/* line 980, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-ice-lolly-tasted:before {
  content: "\e232";
}

/* line 983, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-education:before {
  content: "\e233";
}

/* line 986, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-option-horizontal:before {
  content: "\e234";
}

/* line 989, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-option-vertical:before {
  content: "\e235";
}

/* line 992, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-menu-hamburger:before {
  content: "\e236";
}

/* line 995, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-modal-window:before {
  content: "\e237";
}

/* line 998, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-oil:before {
  content: "\e238";
}

/* line 1001, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-grain:before {
  content: "\e239";
}

/* line 1004, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-sunglasses:before {
  content: "\e240";
}

/* line 1007, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-text-size:before {
  content: "\e241";
}

/* line 1010, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-text-color:before {
  content: "\e242";
}

/* line 1013, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-text-background:before {
  content: "\e243";
}

/* line 1016, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-object-align-top:before {
  content: "\e244";
}

/* line 1019, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-object-align-bottom:before {
  content: "\e245";
}

/* line 1022, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-object-align-horizontal:before {
  content: "\e246";
}

/* line 1025, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-object-align-left:before {
  content: "\e247";
}

/* line 1028, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-object-align-vertical:before {
  content: "\e248";
}

/* line 1031, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-object-align-right:before {
  content: "\e249";
}

/* line 1034, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-triangle-right:before {
  content: "\e250";
}

/* line 1037, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-triangle-left:before {
  content: "\e251";
}

/* line 1040, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-triangle-bottom:before {
  content: "\e252";
}

/* line 1043, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-triangle-top:before {
  content: "\e253";
}

/* line 1046, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-console:before {
  content: "\e254";
}

/* line 1049, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-superscript:before {
  content: "\e255";
}

/* line 1052, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-subscript:before {
  content: "\e256";
}

/* line 1055, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-menu-left:before {
  content: "\e257";
}

/* line 1058, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-menu-right:before {
  content: "\e258";
}

/* line 1061, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-menu-down:before {
  content: "\e259";
}

/* line 1064, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .glyphicon-menu-up:before {
  content: "\e260";
}

/* line 1067, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 1072, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style *:before,
.bootstrap-style *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 1078, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 1083, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
}

/* line 1090, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style input,
.bootstrap-style button,
.bootstrap-style select,
.bootstrap-style textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 1098, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a {
  color: #337ab7;
  text-decoration: none;
}

/* line 1102, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a:hover,
.bootstrap-style a:focus {
  color: #23527c;
  text-decoration: underline;
}

/* line 1107, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 1111, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style figure {
  margin: 0;
}

/* line 1114, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style img {
  vertical-align: middle;
}

/* line 1117, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .img-responsive,
.bootstrap-style .thumbnail > img,
.bootstrap-style .thumbnail a > img,
.bootstrap-style .carousel-inner > .item > img,
.bootstrap-style .carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* line 1126, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .img-rounded {
  border-radius: 6px;
}

/* line 1129, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .img-thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

/* line 1142, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .img-circle {
  border-radius: 50%;
}

/* line 1145, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

/* line 1151, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 1161, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .sr-only-focusable:active,
.bootstrap-style .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 1170, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style [role="button"] {
  cursor: pointer;
}

/* line 1173, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style h1,
.bootstrap-style h2,
.bootstrap-style h3,
.bootstrap-style h4,
.bootstrap-style h5,
.bootstrap-style h6,
.bootstrap-style .h1,
.bootstrap-style .h2,
.bootstrap-style .h3,
.bootstrap-style .h4,
.bootstrap-style .h5,
.bootstrap-style .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

/* line 1190, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style h1 small,
.bootstrap-style h2 small,
.bootstrap-style h3 small,
.bootstrap-style h4 small,
.bootstrap-style h5 small,
.bootstrap-style h6 small,
.bootstrap-style .h1 small,
.bootstrap-style .h2 small,
.bootstrap-style .h3 small,
.bootstrap-style .h4 small,
.bootstrap-style .h5 small,
.bootstrap-style .h6 small,
.bootstrap-style h1 .small,
.bootstrap-style h2 .small,
.bootstrap-style h3 .small,
.bootstrap-style h4 .small,
.bootstrap-style h5 .small,
.bootstrap-style h6 .small,
.bootstrap-style .h1 .small,
.bootstrap-style .h2 .small,
.bootstrap-style .h3 .small,
.bootstrap-style .h4 .small,
.bootstrap-style .h5 .small,
.bootstrap-style .h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #777;
}

/* line 1218, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style h1,
.bootstrap-style .h1,
.bootstrap-style h2,
.bootstrap-style .h2,
.bootstrap-style h3,
.bootstrap-style .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* line 1227, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style h1 small,
.bootstrap-style .h1 small,
.bootstrap-style h2 small,
.bootstrap-style .h2 small,
.bootstrap-style h3 small,
.bootstrap-style .h3 small,
.bootstrap-style h1 .small,
.bootstrap-style .h1 .small,
.bootstrap-style h2 .small,
.bootstrap-style .h2 .small,
.bootstrap-style h3 .small,
.bootstrap-style .h3 .small {
  font-size: 65%;
}

/* line 1241, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style h4,
.bootstrap-style .h4,
.bootstrap-style h5,
.bootstrap-style .h5,
.bootstrap-style h6,
.bootstrap-style .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 1250, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style h4 small,
.bootstrap-style .h4 small,
.bootstrap-style h5 small,
.bootstrap-style .h5 small,
.bootstrap-style h6 small,
.bootstrap-style .h6 small,
.bootstrap-style h4 .small,
.bootstrap-style .h4 .small,
.bootstrap-style h5 .small,
.bootstrap-style .h5 .small,
.bootstrap-style h6 .small,
.bootstrap-style .h6 .small {
  font-size: 75%;
}

/* line 1264, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style h1,
.bootstrap-style .h1 {
  font-size: 36px;
}

/* line 1268, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style h2,
.bootstrap-style .h2 {
  font-size: 30px;
}

/* line 1272, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style h3,
.bootstrap-style .h3 {
  font-size: 24px;
}

/* line 1276, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style h4,
.bootstrap-style .h4 {
  font-size: 18px;
}

/* line 1280, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style h5,
.bootstrap-style .h5 {
  font-size: 14px;
}

/* line 1284, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style h6,
.bootstrap-style .h6 {
  font-size: 12px;
}

/* line 1288, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style p {
  margin: 0 0 10px;
}

/* line 1291, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

@media (min-width: 768px) {
  /* line 1298, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .lead {
    font-size: 21px;
  }
}

/* line 1302, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style small,
.bootstrap-style .small {
  font-size: 85%;
}

/* line 1306, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style mark,
.bootstrap-style .mark {
  padding: .2em;
  background-color: #fcf8e3;
}

/* line 1311, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .text-left {
  text-align: left;
}

/* line 1314, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .text-right {
  text-align: right;
}

/* line 1317, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .text-center {
  text-align: center;
}

/* line 1320, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .text-justify {
  text-align: justify;
}

/* line 1323, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .text-nowrap {
  white-space: nowrap;
}

/* line 1326, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .text-lowercase {
  text-transform: lowercase;
}

/* line 1329, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .text-uppercase {
  text-transform: uppercase;
}

/* line 1332, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .text-capitalize {
  text-transform: capitalize;
}

/* line 1335, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .text-muted {
  color: #777;
}

/* line 1338, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .text-primary {
  color: #337ab7;
}

/* line 1341, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.text-primary:hover,
.bootstrap-style a.text-primary:focus {
  color: #286090;
}

/* line 1345, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .text-success {
  color: #3c763d;
}

/* line 1348, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.text-success:hover,
.bootstrap-style a.text-success:focus {
  color: #2b542c;
}

/* line 1352, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .text-info {
  color: #31708f;
}

/* line 1355, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.text-info:hover,
.bootstrap-style a.text-info:focus {
  color: #245269;
}

/* line 1359, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .text-warning {
  color: #8a6d3b;
}

/* line 1362, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.text-warning:hover,
.bootstrap-style a.text-warning:focus {
  color: #66512c;
}

/* line 1366, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .text-danger {
  color: #a94442;
}

/* line 1369, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.text-danger:hover,
.bootstrap-style a.text-danger:focus {
  color: #843534;
}

/* line 1373, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .bg-primary {
  color: #fff;
  background-color: #337ab7;
}

/* line 1377, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.bg-primary:hover,
.bootstrap-style a.bg-primary:focus {
  background-color: #286090;
}

/* line 1381, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .bg-success {
  background-color: #dff0d8;
}

/* line 1384, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.bg-success:hover,
.bootstrap-style a.bg-success:focus {
  background-color: #c1e2b3;
}

/* line 1388, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .bg-info {
  background-color: #d9edf7;
}

/* line 1391, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.bg-info:hover,
.bootstrap-style a.bg-info:focus {
  background-color: #afd9ee;
}

/* line 1395, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .bg-warning {
  background-color: #fcf8e3;
}

/* line 1398, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.bg-warning:hover,
.bootstrap-style a.bg-warning:focus {
  background-color: #f7ecb5;
}

/* line 1402, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .bg-danger {
  background-color: #f2dede;
}

/* line 1405, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.bg-danger:hover,
.bootstrap-style a.bg-danger:focus {
  background-color: #e4b9b9;
}

/* line 1409, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eee;
}

/* line 1414, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style ul,
.bootstrap-style ol {
  margin-top: 0;
  margin-bottom: 10px;
}

/* line 1419, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style ul ul,
.bootstrap-style ol ul,
.bootstrap-style ul ol,
.bootstrap-style ol ol {
  margin-bottom: 0;
}

/* line 1425, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 1429, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}

/* line 1434, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

/* line 1439, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style dl {
  margin-top: 0;
  margin-bottom: 20px;
}

/* line 1443, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style dt,
.bootstrap-style dd {
  line-height: 1.42857143;
}

/* line 1447, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style dt {
  font-weight: bold;
}

/* line 1450, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style dd {
  margin-left: 0;
}

@media (min-width: 768px) {
  /* line 1454, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .dl-horizontal dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 1463, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .dl-horizontal dd {
    margin-left: 180px;
  }
}

/* line 1467, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style abbr[title],
.bootstrap-style abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #777;
}

/* line 1472, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .initialism {
  font-size: 90%;
  text-transform: uppercase;
}

/* line 1476, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}

/* line 1482, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style blockquote p:last-child,
.bootstrap-style blockquote ul:last-child,
.bootstrap-style blockquote ol:last-child {
  margin-bottom: 0;
}

/* line 1487, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style blockquote footer,
.bootstrap-style blockquote small,
.bootstrap-style blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857143;
  color: #777;
}

/* line 1495, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style blockquote footer:before,
.bootstrap-style blockquote small:before,
.bootstrap-style blockquote .small:before {
  content: '\2014 \00A0';
}

/* line 1500, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .blockquote-reverse,
.bootstrap-style blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  text-align: right;
  border-right: 5px solid #eee;
  border-left: 0;
}

/* line 1508, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .blockquote-reverse footer:before,
.bootstrap-style blockquote.pull-right footer:before,
.bootstrap-style .blockquote-reverse small:before,
.bootstrap-style blockquote.pull-right small:before,
.bootstrap-style .blockquote-reverse .small:before,
.bootstrap-style blockquote.pull-right .small:before {
  content: '';
}

/* line 1516, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .blockquote-reverse footer:after,
.bootstrap-style blockquote.pull-right footer:after,
.bootstrap-style .blockquote-reverse small:after,
.bootstrap-style blockquote.pull-right small:after,
.bootstrap-style .blockquote-reverse .small:after,
.bootstrap-style blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

/* line 1524, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857143;
}

/* line 1529, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style code,
.bootstrap-style kbd,
.bootstrap-style pre,
.bootstrap-style samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* line 1535, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

/* line 1542, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/* line 1551, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 1558, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 1571, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

/* line 1579, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* line 1583, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  /* line 1590, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  /* line 1595, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  /* line 1600, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .container {
    width: 1170px;
  }
}

/* line 1604, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* line 1610, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .row {
  margin-right: -15px;
  margin-left: -15px;
}

/* line 1614, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-1, .bootstrap-style .col-sm-1, .bootstrap-style .col-md-1, .bootstrap-style .col-lg-1, .bootstrap-style .col-xs-2, .bootstrap-style .col-sm-2, .bootstrap-style .col-md-2, .bootstrap-style .col-lg-2, .bootstrap-style .col-xs-3, .bootstrap-style .col-sm-3, .bootstrap-style .col-md-3, .bootstrap-style .col-lg-3, .bootstrap-style .col-xs-4, .bootstrap-style .col-sm-4, .bootstrap-style .col-md-4, .bootstrap-style .col-lg-4, .bootstrap-style .col-xs-5, .bootstrap-style .col-sm-5, .bootstrap-style .col-md-5, .bootstrap-style .col-lg-5, .bootstrap-style .col-xs-6, .bootstrap-style .col-sm-6, .bootstrap-style .col-md-6, .bootstrap-style .col-lg-6, .bootstrap-style .col-xs-7, .bootstrap-style .col-sm-7, .bootstrap-style .col-md-7, .bootstrap-style .col-lg-7, .bootstrap-style .col-xs-8, .bootstrap-style .col-sm-8, .bootstrap-style .col-md-8, .bootstrap-style .col-lg-8, .bootstrap-style .col-xs-9, .bootstrap-style .col-sm-9, .bootstrap-style .col-md-9, .bootstrap-style .col-lg-9, .bootstrap-style .col-xs-10, .bootstrap-style .col-sm-10, .bootstrap-style .col-md-10, .bootstrap-style .col-lg-10, .bootstrap-style .col-xs-11, .bootstrap-style .col-sm-11, .bootstrap-style .col-md-11, .bootstrap-style .col-lg-11, .bootstrap-style .col-xs-12, .bootstrap-style .col-sm-12, .bootstrap-style .col-md-12, .bootstrap-style .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 1620, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-1, .bootstrap-style .col-xs-2, .bootstrap-style .col-xs-3, .bootstrap-style .col-xs-4, .bootstrap-style .col-xs-5, .bootstrap-style .col-xs-6, .bootstrap-style .col-xs-7, .bootstrap-style .col-xs-8, .bootstrap-style .col-xs-9, .bootstrap-style .col-xs-10, .bootstrap-style .col-xs-11, .bootstrap-style .col-xs-12 {
  float: left;
}

/* line 1623, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-12 {
  width: 100%;
}

/* line 1626, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-11 {
  width: 91.66666667%;
}

/* line 1629, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-10 {
  width: 83.33333333%;
}

/* line 1632, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-9 {
  width: 75%;
}

/* line 1635, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-8 {
  width: 66.66666667%;
}

/* line 1638, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-7 {
  width: 58.33333333%;
}

/* line 1641, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-6 {
  width: 50%;
}

/* line 1644, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-5 {
  width: 41.66666667%;
}

/* line 1647, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-4 {
  width: 33.33333333%;
}

/* line 1650, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-3 {
  width: 25%;
}

/* line 1653, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-2 {
  width: 16.66666667%;
}

/* line 1656, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-1 {
  width: 8.33333333%;
}

/* line 1659, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-pull-12 {
  right: 100%;
}

/* line 1662, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-pull-11 {
  right: 91.66666667%;
}

/* line 1665, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-pull-10 {
  right: 83.33333333%;
}

/* line 1668, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-pull-9 {
  right: 75%;
}

/* line 1671, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-pull-8 {
  right: 66.66666667%;
}

/* line 1674, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-pull-7 {
  right: 58.33333333%;
}

/* line 1677, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-pull-6 {
  right: 50%;
}

/* line 1680, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-pull-5 {
  right: 41.66666667%;
}

/* line 1683, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-pull-4 {
  right: 33.33333333%;
}

/* line 1686, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-pull-3 {
  right: 25%;
}

/* line 1689, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-pull-2 {
  right: 16.66666667%;
}

/* line 1692, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-pull-1 {
  right: 8.33333333%;
}

/* line 1695, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-pull-0 {
  right: auto;
}

/* line 1698, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-push-12 {
  left: 100%;
}

/* line 1701, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-push-11 {
  left: 91.66666667%;
}

/* line 1704, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-push-10 {
  left: 83.33333333%;
}

/* line 1707, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-push-9 {
  left: 75%;
}

/* line 1710, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-push-8 {
  left: 66.66666667%;
}

/* line 1713, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-push-7 {
  left: 58.33333333%;
}

/* line 1716, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-push-6 {
  left: 50%;
}

/* line 1719, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-push-5 {
  left: 41.66666667%;
}

/* line 1722, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-push-4 {
  left: 33.33333333%;
}

/* line 1725, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-push-3 {
  left: 25%;
}

/* line 1728, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-push-2 {
  left: 16.66666667%;
}

/* line 1731, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-push-1 {
  left: 8.33333333%;
}

/* line 1734, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-push-0 {
  left: auto;
}

/* line 1737, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-offset-12 {
  margin-left: 100%;
}

/* line 1740, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-offset-11 {
  margin-left: 91.66666667%;
}

/* line 1743, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-offset-10 {
  margin-left: 83.33333333%;
}

/* line 1746, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-offset-9 {
  margin-left: 75%;
}

/* line 1749, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-offset-8 {
  margin-left: 66.66666667%;
}

/* line 1752, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-offset-7 {
  margin-left: 58.33333333%;
}

/* line 1755, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-offset-6 {
  margin-left: 50%;
}

/* line 1758, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-offset-5 {
  margin-left: 41.66666667%;
}

/* line 1761, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-offset-4 {
  margin-left: 33.33333333%;
}

/* line 1764, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-offset-3 {
  margin-left: 25%;
}

/* line 1767, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-offset-2 {
  margin-left: 16.66666667%;
}

/* line 1770, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-offset-1 {
  margin-left: 8.33333333%;
}

/* line 1773, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .col-xs-offset-0 {
  margin-left: 0;
}

@media (min-width: 768px) {
  /* line 1777, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-1, .bootstrap-style .col-sm-2, .bootstrap-style .col-sm-3, .bootstrap-style .col-sm-4, .bootstrap-style .col-sm-5, .bootstrap-style .col-sm-6, .bootstrap-style .col-sm-7, .bootstrap-style .col-sm-8, .bootstrap-style .col-sm-9, .bootstrap-style .col-sm-10, .bootstrap-style .col-sm-11, .bootstrap-style .col-sm-12 {
    float: left;
  }
  /* line 1780, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-12 {
    width: 100%;
  }
  /* line 1783, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-11 {
    width: 91.66666667%;
  }
  /* line 1786, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-10 {
    width: 83.33333333%;
  }
  /* line 1789, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-9 {
    width: 75%;
  }
  /* line 1792, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-8 {
    width: 66.66666667%;
  }
  /* line 1795, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-7 {
    width: 58.33333333%;
  }
  /* line 1798, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-6 {
    width: 50%;
  }
  /* line 1801, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-5 {
    width: 41.66666667%;
  }
  /* line 1804, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-4 {
    width: 33.33333333%;
  }
  /* line 1807, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-3 {
    width: 25%;
  }
  /* line 1810, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-2 {
    width: 16.66666667%;
  }
  /* line 1813, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-1 {
    width: 8.33333333%;
  }
  /* line 1816, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-pull-12 {
    right: 100%;
  }
  /* line 1819, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-pull-11 {
    right: 91.66666667%;
  }
  /* line 1822, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-pull-10 {
    right: 83.33333333%;
  }
  /* line 1825, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-pull-9 {
    right: 75%;
  }
  /* line 1828, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-pull-8 {
    right: 66.66666667%;
  }
  /* line 1831, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-pull-7 {
    right: 58.33333333%;
  }
  /* line 1834, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-pull-6 {
    right: 50%;
  }
  /* line 1837, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-pull-5 {
    right: 41.66666667%;
  }
  /* line 1840, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-pull-4 {
    right: 33.33333333%;
  }
  /* line 1843, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-pull-3 {
    right: 25%;
  }
  /* line 1846, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-pull-2 {
    right: 16.66666667%;
  }
  /* line 1849, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-pull-1 {
    right: 8.33333333%;
  }
  /* line 1852, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-pull-0 {
    right: auto;
  }
  /* line 1855, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-push-12 {
    left: 100%;
  }
  /* line 1858, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-push-11 {
    left: 91.66666667%;
  }
  /* line 1861, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-push-10 {
    left: 83.33333333%;
  }
  /* line 1864, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-push-9 {
    left: 75%;
  }
  /* line 1867, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-push-8 {
    left: 66.66666667%;
  }
  /* line 1870, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-push-7 {
    left: 58.33333333%;
  }
  /* line 1873, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-push-6 {
    left: 50%;
  }
  /* line 1876, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-push-5 {
    left: 41.66666667%;
  }
  /* line 1879, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-push-4 {
    left: 33.33333333%;
  }
  /* line 1882, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-push-3 {
    left: 25%;
  }
  /* line 1885, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-push-2 {
    left: 16.66666667%;
  }
  /* line 1888, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-push-1 {
    left: 8.33333333%;
  }
  /* line 1891, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-push-0 {
    left: auto;
  }
  /* line 1894, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-offset-12 {
    margin-left: 100%;
  }
  /* line 1897, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  /* line 1900, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  /* line 1903, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-offset-9 {
    margin-left: 75%;
  }
  /* line 1906, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  /* line 1909, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  /* line 1912, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-offset-6 {
    margin-left: 50%;
  }
  /* line 1915, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  /* line 1918, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  /* line 1921, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-offset-3 {
    margin-left: 25%;
  }
  /* line 1924, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  /* line 1927, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  /* line 1930, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-sm-offset-0 {
    margin-left: 0;
  }
}

@media (min-width: 992px) {
  /* line 1935, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-1, .bootstrap-style .col-md-2, .bootstrap-style .col-md-3, .bootstrap-style .col-md-4, .bootstrap-style .col-md-5, .bootstrap-style .col-md-6, .bootstrap-style .col-md-7, .bootstrap-style .col-md-8, .bootstrap-style .col-md-9, .bootstrap-style .col-md-10, .bootstrap-style .col-md-11, .bootstrap-style .col-md-12 {
    float: left;
  }
  /* line 1938, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-12 {
    width: 100%;
  }
  /* line 1941, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-11 {
    width: 91.66666667%;
  }
  /* line 1944, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-10 {
    width: 83.33333333%;
  }
  /* line 1947, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-9 {
    width: 75%;
  }
  /* line 1950, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-8 {
    width: 66.66666667%;
  }
  /* line 1953, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-7 {
    width: 58.33333333%;
  }
  /* line 1956, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-6 {
    width: 50%;
  }
  /* line 1959, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-5 {
    width: 41.66666667%;
  }
  /* line 1962, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-4 {
    width: 33.33333333%;
  }
  /* line 1965, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-3 {
    width: 25%;
  }
  /* line 1968, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-2 {
    width: 16.66666667%;
  }
  /* line 1971, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-1 {
    width: 8.33333333%;
  }
  /* line 1974, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-pull-12 {
    right: 100%;
  }
  /* line 1977, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-pull-11 {
    right: 91.66666667%;
  }
  /* line 1980, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-pull-10 {
    right: 83.33333333%;
  }
  /* line 1983, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-pull-9 {
    right: 75%;
  }
  /* line 1986, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-pull-8 {
    right: 66.66666667%;
  }
  /* line 1989, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-pull-7 {
    right: 58.33333333%;
  }
  /* line 1992, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-pull-6 {
    right: 50%;
  }
  /* line 1995, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-pull-5 {
    right: 41.66666667%;
  }
  /* line 1998, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-pull-4 {
    right: 33.33333333%;
  }
  /* line 2001, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-pull-3 {
    right: 25%;
  }
  /* line 2004, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-pull-2 {
    right: 16.66666667%;
  }
  /* line 2007, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-pull-1 {
    right: 8.33333333%;
  }
  /* line 2010, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-pull-0 {
    right: auto;
  }
  /* line 2013, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-push-12 {
    left: 100%;
  }
  /* line 2016, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-push-11 {
    left: 91.66666667%;
  }
  /* line 2019, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-push-10 {
    left: 83.33333333%;
  }
  /* line 2022, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-push-9 {
    left: 75%;
  }
  /* line 2025, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-push-8 {
    left: 66.66666667%;
  }
  /* line 2028, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-push-7 {
    left: 58.33333333%;
  }
  /* line 2031, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-push-6 {
    left: 50%;
  }
  /* line 2034, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-push-5 {
    left: 41.66666667%;
  }
  /* line 2037, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-push-4 {
    left: 33.33333333%;
  }
  /* line 2040, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-push-3 {
    left: 25%;
  }
  /* line 2043, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-push-2 {
    left: 16.66666667%;
  }
  /* line 2046, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-push-1 {
    left: 8.33333333%;
  }
  /* line 2049, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-push-0 {
    left: auto;
  }
  /* line 2052, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-offset-12 {
    margin-left: 100%;
  }
  /* line 2055, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  /* line 2058, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  /* line 2061, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-offset-9 {
    margin-left: 75%;
  }
  /* line 2064, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  /* line 2067, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  /* line 2070, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-offset-6 {
    margin-left: 50%;
  }
  /* line 2073, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  /* line 2076, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  /* line 2079, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-offset-3 {
    margin-left: 25%;
  }
  /* line 2082, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  /* line 2085, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  /* line 2088, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-md-offset-0 {
    margin-left: 0;
  }
}

@media (min-width: 1200px) {
  /* line 2093, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-1, .bootstrap-style .col-lg-2, .bootstrap-style .col-lg-3, .bootstrap-style .col-lg-4, .bootstrap-style .col-lg-5, .bootstrap-style .col-lg-6, .bootstrap-style .col-lg-7, .bootstrap-style .col-lg-8, .bootstrap-style .col-lg-9, .bootstrap-style .col-lg-10, .bootstrap-style .col-lg-11, .bootstrap-style .col-lg-12 {
    float: left;
  }
  /* line 2096, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-12 {
    width: 100%;
  }
  /* line 2099, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-11 {
    width: 91.66666667%;
  }
  /* line 2102, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-10 {
    width: 83.33333333%;
  }
  /* line 2105, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-9 {
    width: 75%;
  }
  /* line 2108, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-8 {
    width: 66.66666667%;
  }
  /* line 2111, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-7 {
    width: 58.33333333%;
  }
  /* line 2114, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-6 {
    width: 50%;
  }
  /* line 2117, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-5 {
    width: 41.66666667%;
  }
  /* line 2120, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-4 {
    width: 33.33333333%;
  }
  /* line 2123, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-3 {
    width: 25%;
  }
  /* line 2126, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-2 {
    width: 16.66666667%;
  }
  /* line 2129, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-1 {
    width: 8.33333333%;
  }
  /* line 2132, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-pull-12 {
    right: 100%;
  }
  /* line 2135, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-pull-11 {
    right: 91.66666667%;
  }
  /* line 2138, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-pull-10 {
    right: 83.33333333%;
  }
  /* line 2141, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-pull-9 {
    right: 75%;
  }
  /* line 2144, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-pull-8 {
    right: 66.66666667%;
  }
  /* line 2147, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-pull-7 {
    right: 58.33333333%;
  }
  /* line 2150, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-pull-6 {
    right: 50%;
  }
  /* line 2153, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-pull-5 {
    right: 41.66666667%;
  }
  /* line 2156, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-pull-4 {
    right: 33.33333333%;
  }
  /* line 2159, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-pull-3 {
    right: 25%;
  }
  /* line 2162, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-pull-2 {
    right: 16.66666667%;
  }
  /* line 2165, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-pull-1 {
    right: 8.33333333%;
  }
  /* line 2168, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-pull-0 {
    right: auto;
  }
  /* line 2171, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-push-12 {
    left: 100%;
  }
  /* line 2174, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-push-11 {
    left: 91.66666667%;
  }
  /* line 2177, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-push-10 {
    left: 83.33333333%;
  }
  /* line 2180, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-push-9 {
    left: 75%;
  }
  /* line 2183, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-push-8 {
    left: 66.66666667%;
  }
  /* line 2186, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-push-7 {
    left: 58.33333333%;
  }
  /* line 2189, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-push-6 {
    left: 50%;
  }
  /* line 2192, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-push-5 {
    left: 41.66666667%;
  }
  /* line 2195, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-push-4 {
    left: 33.33333333%;
  }
  /* line 2198, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-push-3 {
    left: 25%;
  }
  /* line 2201, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-push-2 {
    left: 16.66666667%;
  }
  /* line 2204, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-push-1 {
    left: 8.33333333%;
  }
  /* line 2207, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-push-0 {
    left: auto;
  }
  /* line 2210, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-offset-12 {
    margin-left: 100%;
  }
  /* line 2213, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  /* line 2216, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  /* line 2219, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-offset-9 {
    margin-left: 75%;
  }
  /* line 2222, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  /* line 2225, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  /* line 2228, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-offset-6 {
    margin-left: 50%;
  }
  /* line 2231, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  /* line 2234, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  /* line 2237, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-offset-3 {
    margin-left: 25%;
  }
  /* line 2240, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  /* line 2243, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  /* line 2246, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .col-lg-offset-0 {
    margin-left: 0;
  }
}

/* line 2250, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style table {
  background-color: transparent;
}

/* line 2253, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: left;
}

/* line 2259, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style th {
  text-align: left;
}

/* line 2262, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

/* line 2267, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table > thead > tr > th,
.bootstrap-style .table > tbody > tr > th,
.bootstrap-style .table > tfoot > tr > th,
.bootstrap-style .table > thead > tr > td,
.bootstrap-style .table > tbody > tr > td,
.bootstrap-style .table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

/* line 2278, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

/* line 2282, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table > caption + thead > tr:first-child > th,
.bootstrap-style .table > colgroup + thead > tr:first-child > th,
.bootstrap-style .table > thead:first-child > tr:first-child > th,
.bootstrap-style .table > caption + thead > tr:first-child > td,
.bootstrap-style .table > colgroup + thead > tr:first-child > td,
.bootstrap-style .table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

/* line 2290, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table > tbody + tbody {
  border-top: 2px solid #ddd;
}

/* line 2293, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table .table {
  background-color: #fff;
}

/* line 2296, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table-condensed > thead > tr > th,
.bootstrap-style .table-condensed > tbody > tr > th,
.bootstrap-style .table-condensed > tfoot > tr > th,
.bootstrap-style .table-condensed > thead > tr > td,
.bootstrap-style .table-condensed > tbody > tr > td,
.bootstrap-style .table-condensed > tfoot > tr > td {
  padding: 5px;
}

/* line 2304, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table-bordered {
  border: 1px solid #ddd;
}

/* line 2307, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table-bordered > thead > tr > th,
.bootstrap-style .table-bordered > tbody > tr > th,
.bootstrap-style .table-bordered > tfoot > tr > th,
.bootstrap-style .table-bordered > thead > tr > td,
.bootstrap-style .table-bordered > tbody > tr > td,
.bootstrap-style .table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}

/* line 2315, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table-bordered > thead > tr > th,
.bootstrap-style .table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

/* line 2319, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}

/* line 2322, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

/* line 2325, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style table col[class*="col-"] {
  position: static;
  display: table-column;
  float: none;
}

/* line 2330, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style table td[class*="col-"],
.bootstrap-style table th[class*="col-"] {
  position: static;
  display: table-cell;
  float: none;
}

/* line 2336, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table > thead > tr > td.active,
.bootstrap-style .table > tbody > tr > td.active,
.bootstrap-style .table > tfoot > tr > td.active,
.bootstrap-style .table > thead > tr > th.active,
.bootstrap-style .table > tbody > tr > th.active,
.bootstrap-style .table > tfoot > tr > th.active,
.bootstrap-style .table > thead > tr.active > td,
.bootstrap-style .table > tbody > tr.active > td,
.bootstrap-style .table > tfoot > tr.active > td,
.bootstrap-style .table > thead > tr.active > th,
.bootstrap-style .table > tbody > tr.active > th,
.bootstrap-style .table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

/* line 2350, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table-hover > tbody > tr > td.active:hover,
.bootstrap-style .table-hover > tbody > tr > th.active:hover,
.bootstrap-style .table-hover > tbody > tr.active:hover > td,
.bootstrap-style .table-hover > tbody > tr:hover > .active,
.bootstrap-style .table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

/* line 2357, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table > thead > tr > td.success,
.bootstrap-style .table > tbody > tr > td.success,
.bootstrap-style .table > tfoot > tr > td.success,
.bootstrap-style .table > thead > tr > th.success,
.bootstrap-style .table > tbody > tr > th.success,
.bootstrap-style .table > tfoot > tr > th.success,
.bootstrap-style .table > thead > tr.success > td,
.bootstrap-style .table > tbody > tr.success > td,
.bootstrap-style .table > tfoot > tr.success > td,
.bootstrap-style .table > thead > tr.success > th,
.bootstrap-style .table > tbody > tr.success > th,
.bootstrap-style .table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

/* line 2371, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table-hover > tbody > tr > td.success:hover,
.bootstrap-style .table-hover > tbody > tr > th.success:hover,
.bootstrap-style .table-hover > tbody > tr.success:hover > td,
.bootstrap-style .table-hover > tbody > tr:hover > .success,
.bootstrap-style .table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

/* line 2378, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table > thead > tr > td.info,
.bootstrap-style .table > tbody > tr > td.info,
.bootstrap-style .table > tfoot > tr > td.info,
.bootstrap-style .table > thead > tr > th.info,
.bootstrap-style .table > tbody > tr > th.info,
.bootstrap-style .table > tfoot > tr > th.info,
.bootstrap-style .table > thead > tr.info > td,
.bootstrap-style .table > tbody > tr.info > td,
.bootstrap-style .table > tfoot > tr.info > td,
.bootstrap-style .table > thead > tr.info > th,
.bootstrap-style .table > tbody > tr.info > th,
.bootstrap-style .table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

/* line 2392, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table-hover > tbody > tr > td.info:hover,
.bootstrap-style .table-hover > tbody > tr > th.info:hover,
.bootstrap-style .table-hover > tbody > tr.info:hover > td,
.bootstrap-style .table-hover > tbody > tr:hover > .info,
.bootstrap-style .table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

/* line 2399, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table > thead > tr > td.warning,
.bootstrap-style .table > tbody > tr > td.warning,
.bootstrap-style .table > tfoot > tr > td.warning,
.bootstrap-style .table > thead > tr > th.warning,
.bootstrap-style .table > tbody > tr > th.warning,
.bootstrap-style .table > tfoot > tr > th.warning,
.bootstrap-style .table > thead > tr.warning > td,
.bootstrap-style .table > tbody > tr.warning > td,
.bootstrap-style .table > tfoot > tr.warning > td,
.bootstrap-style .table > thead > tr.warning > th,
.bootstrap-style .table > tbody > tr.warning > th,
.bootstrap-style .table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

/* line 2413, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table-hover > tbody > tr > td.warning:hover,
.bootstrap-style .table-hover > tbody > tr > th.warning:hover,
.bootstrap-style .table-hover > tbody > tr.warning:hover > td,
.bootstrap-style .table-hover > tbody > tr:hover > .warning,
.bootstrap-style .table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

/* line 2420, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table > thead > tr > td.danger,
.bootstrap-style .table > tbody > tr > td.danger,
.bootstrap-style .table > tfoot > tr > td.danger,
.bootstrap-style .table > thead > tr > th.danger,
.bootstrap-style .table > tbody > tr > th.danger,
.bootstrap-style .table > tfoot > tr > th.danger,
.bootstrap-style .table > thead > tr.danger > td,
.bootstrap-style .table > tbody > tr.danger > td,
.bootstrap-style .table > tfoot > tr.danger > td,
.bootstrap-style .table > thead > tr.danger > th,
.bootstrap-style .table > tbody > tr.danger > th,
.bootstrap-style .table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

/* line 2434, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table-hover > tbody > tr > td.danger:hover,
.bootstrap-style .table-hover > tbody > tr > th.danger:hover,
.bootstrap-style .table-hover > tbody > tr.danger:hover > td,
.bootstrap-style .table-hover > tbody > tr:hover > .danger,
.bootstrap-style .table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

/* line 2441, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .table-responsive {
  min-height: .01%;
  overflow-x: auto;
}

@media screen and (max-width: 767px) {
  /* line 2446, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
  }
  /* line 2453, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .table-responsive > .table {
    margin-bottom: 0;
  }
  /* line 2456, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .table-responsive > .table > thead > tr > th,
.bootstrap-style .table-responsive > .table > tbody > tr > th,
.bootstrap-style .table-responsive > .table > tfoot > tr > th,
.bootstrap-style .table-responsive > .table > thead > tr > td,
.bootstrap-style .table-responsive > .table > tbody > tr > td,
.bootstrap-style .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  /* line 2464, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .table-responsive > .table-bordered {
    border: 0;
  }
  /* line 2467, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .table-responsive > .table-bordered > thead > tr > th:first-child,
.bootstrap-style .table-responsive > .table-bordered > tbody > tr > th:first-child,
.bootstrap-style .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.bootstrap-style .table-responsive > .table-bordered > thead > tr > td:first-child,
.bootstrap-style .table-responsive > .table-bordered > tbody > tr > td:first-child,
.bootstrap-style .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  /* line 2475, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .table-responsive > .table-bordered > thead > tr > th:last-child,
.bootstrap-style .table-responsive > .table-bordered > tbody > tr > th:last-child,
.bootstrap-style .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.bootstrap-style .table-responsive > .table-bordered > thead > tr > td:last-child,
.bootstrap-style .table-responsive > .table-bordered > tbody > tr > td:last-child,
.bootstrap-style .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  /* line 2483, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .table-responsive > .table-bordered > tbody > tr:last-child > th,
.bootstrap-style .table-responsive > .table-bordered > tfoot > tr:last-child > th,
.bootstrap-style .table-responsive > .table-bordered > tbody > tr:last-child > td,
.bootstrap-style .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

/* line 2490, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 2496, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

/* line 2507, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

/* line 2513, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 2518, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style input[type="radio"],
.bootstrap-style input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

/* line 2524, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style input[type="file"] {
  display: block;
}

/* line 2527, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style input[type="range"] {
  display: block;
  width: 100%;
}

/* line 2531, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style select[multiple],
.bootstrap-style select[size] {
  height: auto;
}

/* line 2535, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style input[type="file"]:focus,
.bootstrap-style input[type="radio"]:focus,
.bootstrap-style input[type="checkbox"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 2541, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
}

/* line 2548, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

/* line 2566, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

/* line 2572, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

/* line 2576, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-control:-ms-input-placeholder {
  color: #999;
}

/* line 2579, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-control::-webkit-input-placeholder {
  color: #999;
}

/* line 2582, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

/* line 2586, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-control[disabled],
.bootstrap-style .form-control[readonly],
.bootstrap-style fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}

/* line 2592, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-control[disabled],
.bootstrap-style fieldset[disabled] .form-control {
  cursor: not-allowed;
}

/* line 2596, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style textarea.form-control {
  height: auto;
}

/* line 2599, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style input[type="search"] {
  -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 2603, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style input.form-control[type="date"],
.bootstrap-style input.form-control[type="time"],
.bootstrap-style input.form-control[type="datetime-local"],
.bootstrap-style input.form-control[type="month"] {
    line-height: 34px;
  }
  /* line 2609, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style input.input-sm[type="date"],
.bootstrap-style input.input-sm[type="time"],
.bootstrap-style input.input-sm[type="datetime-local"],
.bootstrap-style input.input-sm[type="month"],
.bootstrap-style .input-group-sm input[type="date"],
.bootstrap-style .input-group-sm input[type="time"],
.bootstrap-style .input-group-sm input[type="datetime-local"],
.bootstrap-style .input-group-sm input[type="month"] {
    line-height: 30px;
  }
  /* line 2619, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style input.input-lg[type="date"],
.bootstrap-style input.input-lg[type="time"],
.bootstrap-style input.input-lg[type="datetime-local"],
.bootstrap-style input.input-lg[type="month"],
.bootstrap-style .input-group-lg input[type="date"],
.bootstrap-style .input-group-lg input[type="time"],
.bootstrap-style .input-group-lg input[type="datetime-local"],
.bootstrap-style .input-group-lg input[type="month"] {
    line-height: 46px;
  }
}

/* line 2630, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-group {
  margin-bottom: 15px;
}

/* line 2633, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .radio,
.bootstrap-style .checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 2640, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .radio label,
.bootstrap-style .checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

/* line 2648, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .radio input[type="radio"],
.bootstrap-style .radio-inline input[type="radio"],
.bootstrap-style .checkbox input[type="checkbox"],
.bootstrap-style .checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}

/* line 2656, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .radio + .radio,
.bootstrap-style .checkbox + .checkbox {
  margin-top: -5px;
}

/* line 2660, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .radio-inline,
.bootstrap-style .checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}

/* line 2670, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .radio-inline + .radio-inline,
.bootstrap-style .checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

/* line 2675, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style input[type="radio"][disabled],
.bootstrap-style input[type="checkbox"][disabled],
.bootstrap-style input.disabled[type="radio"],
.bootstrap-style input.disabled[type="checkbox"],
.bootstrap-style fieldset[disabled] input[type="radio"],
.bootstrap-style fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}

/* line 2683, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .radio-inline.disabled,
.bootstrap-style .checkbox-inline.disabled,
.bootstrap-style fieldset[disabled] .radio-inline,
.bootstrap-style fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

/* line 2689, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .radio.disabled label,
.bootstrap-style .checkbox.disabled label,
.bootstrap-style fieldset[disabled] .radio label,
.bootstrap-style fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

/* line 2695, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-control-static {
  min-height: 34px;
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}

/* line 2701, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-control-static.input-lg,
.bootstrap-style .form-control-static.input-sm {
  padding-right: 0;
  padding-left: 0;
}

/* line 2706, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 2713, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style select.input-sm {
  height: 30px;
  line-height: 30px;
}

/* line 2717, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style textarea.input-sm,
.bootstrap-style select.input-sm[multiple] {
  height: auto;
}

/* line 2721, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 2728, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-group-sm select.form-control {
  height: 30px;
  line-height: 30px;
}

/* line 2732, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-group-sm textarea.form-control,
.bootstrap-style .form-group-sm select.form-control[multiple] {
  height: auto;
}

/* line 2736, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-group-sm .form-control-static {
  height: 30px;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 2743, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 2750, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style select.input-lg {
  height: 46px;
  line-height: 46px;
}

/* line 2754, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style textarea.input-lg,
.bootstrap-style select.input-lg[multiple] {
  height: auto;
}

/* line 2758, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 2765, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-group-lg select.form-control {
  height: 46px;
  line-height: 46px;
}

/* line 2769, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-group-lg textarea.form-control,
.bootstrap-style .form-group-lg select.form-control[multiple] {
  height: auto;
}

/* line 2773, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-group-lg .form-control-static {
  height: 46px;
  min-height: 38px;
  padding: 11px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

/* line 2780, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-feedback {
  position: relative;
}

/* line 2783, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-feedback .form-control {
  padding-right: 42.5px;
}

/* line 2786, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  pointer-events: none;
}

/* line 2798, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-lg + .form-control-feedback,
.bootstrap-style .input-group-lg + .form-control-feedback,
.bootstrap-style .form-group-lg .form-control + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

/* line 2805, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-sm + .form-control-feedback,
.bootstrap-style .input-group-sm + .form-control-feedback,
.bootstrap-style .form-group-sm .form-control + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* line 2812, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-success .help-block,
.bootstrap-style .has-success .control-label,
.bootstrap-style .has-success .radio,
.bootstrap-style .has-success .checkbox,
.bootstrap-style .has-success .radio-inline,
.bootstrap-style .has-success .checkbox-inline,
.bootstrap-style .has-success.radio label,
.bootstrap-style .has-success.checkbox label,
.bootstrap-style .has-success.radio-inline label,
.bootstrap-style .has-success.checkbox-inline label {
  color: #3c763d;
}

/* line 2824, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 2829, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

/* line 2834, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-success .input-group-addon {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #3c763d;
}

/* line 2839, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-success .form-control-feedback {
  color: #3c763d;
}

/* line 2842, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-warning .help-block,
.bootstrap-style .has-warning .control-label,
.bootstrap-style .has-warning .radio,
.bootstrap-style .has-warning .checkbox,
.bootstrap-style .has-warning .radio-inline,
.bootstrap-style .has-warning .checkbox-inline,
.bootstrap-style .has-warning.radio label,
.bootstrap-style .has-warning.checkbox label,
.bootstrap-style .has-warning.radio-inline label,
.bootstrap-style .has-warning.checkbox-inline label {
  color: #8a6d3b;
}

/* line 2854, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 2859, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

/* line 2864, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-warning .input-group-addon {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #8a6d3b;
}

/* line 2869, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-warning .form-control-feedback {
  color: #8a6d3b;
}

/* line 2872, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-error .help-block,
.bootstrap-style .has-error .control-label,
.bootstrap-style .has-error .radio,
.bootstrap-style .has-error .checkbox,
.bootstrap-style .has-error .radio-inline,
.bootstrap-style .has-error .checkbox-inline,
.bootstrap-style .has-error.radio label,
.bootstrap-style .has-error.checkbox label,
.bootstrap-style .has-error.radio-inline label,
.bootstrap-style .has-error.checkbox-inline label {
  color: #a94442;
}

/* line 2884, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

/* line 2889, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

/* line 2894, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}

/* line 2899, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-error .form-control-feedback {
  color: #a94442;
}

/* line 2902, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-feedback label ~ .form-control-feedback {
  top: 25px;
}

/* line 2905, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

/* line 2908, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

@media (min-width: 768px) {
  /* line 2915, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 2920, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 2925, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .form-inline .form-control-static {
    display: inline-block;
  }
  /* line 2928, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 2932, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .form-inline .input-group .input-group-addon,
.bootstrap-style .form-inline .input-group .input-group-btn,
.bootstrap-style .form-inline .input-group .form-control {
    width: auto;
  }
  /* line 2937, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .form-inline .input-group > .form-control {
    width: 100%;
  }
  /* line 2940, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 2944, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .form-inline .radio,
.bootstrap-style .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 2951, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .form-inline .radio label,
.bootstrap-style .form-inline .checkbox label {
    padding-left: 0;
  }
  /* line 2955, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .form-inline .radio input[type="radio"],
.bootstrap-style .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 2960, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

/* line 2964, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-horizontal .radio,
.bootstrap-style .form-horizontal .checkbox,
.bootstrap-style .form-horizontal .radio-inline,
.bootstrap-style .form-horizontal .checkbox-inline {
  padding-top: 7px;
  margin-top: 0;
  margin-bottom: 0;
}

/* line 2972, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-horizontal .radio,
.bootstrap-style .form-horizontal .checkbox {
  min-height: 27px;
}

/* line 2976, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-horizontal .form-group {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  /* line 2981, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}

/* line 2987, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .form-horizontal .has-feedback .form-control-feedback {
  right: 15px;
}

@media (min-width: 768px) {
  /* line 2991, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .form-horizontal .form-group-lg .control-label {
    padding-top: 11px;
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  /* line 2997, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
    font-size: 12px;
  }
}

/* line 3002, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 3023, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn:focus,
.bootstrap-style .btn:active:focus,
.bootstrap-style .btn.active:focus,
.bootstrap-style .btn.focus,
.bootstrap-style .btn.focus:active,
.bootstrap-style .btn.active.focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 3032, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn:hover,
.bootstrap-style .btn:focus,
.bootstrap-style .btn.focus {
  color: #333;
  text-decoration: none;
}

/* line 3038, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn:active,
.bootstrap-style .btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* line 3045, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn.disabled,
.bootstrap-style .btn[disabled],
.bootstrap-style fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: .65;
}

/* line 3054, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.btn.disabled,
.bootstrap-style fieldset[disabled] a.btn {
  pointer-events: none;
}

/* line 3058, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

/* line 3063, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-default:focus,
.bootstrap-style .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}

/* line 3069, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

/* line 3074, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-default:active,
.bootstrap-style .btn-default.active,
.bootstrap-style .open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

/* line 3081, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-default:active:hover,
.bootstrap-style .btn-default.active:hover,
.bootstrap-style .open > .dropdown-toggle.btn-default:hover,
.bootstrap-style .btn-default:active:focus,
.bootstrap-style .btn-default.active:focus,
.bootstrap-style .open > .dropdown-toggle.btn-default:focus,
.bootstrap-style .btn-default.focus:active,
.bootstrap-style .btn-default.active.focus,
.bootstrap-style .open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #d4d4d4;
  border-color: #8c8c8c;
}

/* line 3094, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-default:active,
.bootstrap-style .btn-default.active,
.bootstrap-style .open > .dropdown-toggle.btn-default {
  background-image: none;
}

/* line 3099, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-default.disabled:hover,
.bootstrap-style .btn-default[disabled]:hover,
.bootstrap-style fieldset[disabled] .btn-default:hover,
.bootstrap-style .btn-default.disabled:focus,
.bootstrap-style .btn-default[disabled]:focus,
.bootstrap-style fieldset[disabled] .btn-default:focus,
.bootstrap-style .btn-default.disabled.focus,
.bootstrap-style .btn-default.focus[disabled],
.bootstrap-style fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #ccc;
}

/* line 3111, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-default .badge {
  color: #fff;
  background-color: #333;
}

/* line 3115, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

/* line 3120, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-primary:focus,
.bootstrap-style .btn-primary.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}

/* line 3126, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-primary:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

/* line 3131, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-primary:active,
.bootstrap-style .btn-primary.active,
.bootstrap-style .open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

/* line 3138, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-primary:active:hover,
.bootstrap-style .btn-primary.active:hover,
.bootstrap-style .open > .dropdown-toggle.btn-primary:hover,
.bootstrap-style .btn-primary:active:focus,
.bootstrap-style .btn-primary.active:focus,
.bootstrap-style .open > .dropdown-toggle.btn-primary:focus,
.bootstrap-style .btn-primary.focus:active,
.bootstrap-style .btn-primary.active.focus,
.bootstrap-style .open > .dropdown-toggle.btn-primary.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}

/* line 3151, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-primary:active,
.bootstrap-style .btn-primary.active,
.bootstrap-style .open > .dropdown-toggle.btn-primary {
  background-image: none;
}

/* line 3156, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-primary.disabled:hover,
.bootstrap-style .btn-primary[disabled]:hover,
.bootstrap-style fieldset[disabled] .btn-primary:hover,
.bootstrap-style .btn-primary.disabled:focus,
.bootstrap-style .btn-primary[disabled]:focus,
.bootstrap-style fieldset[disabled] .btn-primary:focus,
.bootstrap-style .btn-primary.disabled.focus,
.bootstrap-style .btn-primary.focus[disabled],
.bootstrap-style fieldset[disabled] .btn-primary.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}

/* line 3168, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-primary .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 3172, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

/* line 3177, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-success:focus,
.bootstrap-style .btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}

/* line 3183, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-success:hover {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

/* line 3188, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-success:active,
.bootstrap-style .btn-success.active,
.bootstrap-style .open > .dropdown-toggle.btn-success {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

/* line 3195, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-success:active:hover,
.bootstrap-style .btn-success.active:hover,
.bootstrap-style .open > .dropdown-toggle.btn-success:hover,
.bootstrap-style .btn-success:active:focus,
.bootstrap-style .btn-success.active:focus,
.bootstrap-style .open > .dropdown-toggle.btn-success:focus,
.bootstrap-style .btn-success.focus:active,
.bootstrap-style .btn-success.active.focus,
.bootstrap-style .open > .dropdown-toggle.btn-success.focus {
  color: #fff;
  background-color: #398439;
  border-color: #255625;
}

/* line 3208, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-success:active,
.bootstrap-style .btn-success.active,
.bootstrap-style .open > .dropdown-toggle.btn-success {
  background-image: none;
}

/* line 3213, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-success.disabled:hover,
.bootstrap-style .btn-success[disabled]:hover,
.bootstrap-style fieldset[disabled] .btn-success:hover,
.bootstrap-style .btn-success.disabled:focus,
.bootstrap-style .btn-success[disabled]:focus,
.bootstrap-style fieldset[disabled] .btn-success:focus,
.bootstrap-style .btn-success.disabled.focus,
.bootstrap-style .btn-success.focus[disabled],
.bootstrap-style fieldset[disabled] .btn-success.focus {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

/* line 3225, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

/* line 3229, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}

/* line 3234, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-info:focus,
.bootstrap-style .btn-info.focus {
  color: #fff;
  background-color: #31b0d5;
  border-color: #1b6d85;
}

/* line 3240, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-info:hover {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

/* line 3245, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-info:active,
.bootstrap-style .btn-info.active,
.bootstrap-style .open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}

/* line 3252, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-info:active:hover,
.bootstrap-style .btn-info.active:hover,
.bootstrap-style .open > .dropdown-toggle.btn-info:hover,
.bootstrap-style .btn-info:active:focus,
.bootstrap-style .btn-info.active:focus,
.bootstrap-style .open > .dropdown-toggle.btn-info:focus,
.bootstrap-style .btn-info.focus:active,
.bootstrap-style .btn-info.active.focus,
.bootstrap-style .open > .dropdown-toggle.btn-info.focus {
  color: #fff;
  background-color: #269abc;
  border-color: #1b6d85;
}

/* line 3265, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-info:active,
.bootstrap-style .btn-info.active,
.bootstrap-style .open > .dropdown-toggle.btn-info {
  background-image: none;
}

/* line 3270, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-info.disabled:hover,
.bootstrap-style .btn-info[disabled]:hover,
.bootstrap-style fieldset[disabled] .btn-info:hover,
.bootstrap-style .btn-info.disabled:focus,
.bootstrap-style .btn-info[disabled]:focus,
.bootstrap-style fieldset[disabled] .btn-info:focus,
.bootstrap-style .btn-info.disabled.focus,
.bootstrap-style .btn-info.focus[disabled],
.bootstrap-style fieldset[disabled] .btn-info.focus {
  background-color: #5bc0de;
  border-color: #46b8da;
}

/* line 3282, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

/* line 3286, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

/* line 3291, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-warning:focus,
.bootstrap-style .btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}

/* line 3297, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

/* line 3302, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-warning:active,
.bootstrap-style .btn-warning.active,
.bootstrap-style .open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

/* line 3309, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-warning:active:hover,
.bootstrap-style .btn-warning.active:hover,
.bootstrap-style .open > .dropdown-toggle.btn-warning:hover,
.bootstrap-style .btn-warning:active:focus,
.bootstrap-style .btn-warning.active:focus,
.bootstrap-style .open > .dropdown-toggle.btn-warning:focus,
.bootstrap-style .btn-warning.focus:active,
.bootstrap-style .btn-warning.active.focus,
.bootstrap-style .open > .dropdown-toggle.btn-warning.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}

/* line 3322, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-warning:active,
.bootstrap-style .btn-warning.active,
.bootstrap-style .open > .dropdown-toggle.btn-warning {
  background-image: none;
}

/* line 3327, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-warning.disabled:hover,
.bootstrap-style .btn-warning[disabled]:hover,
.bootstrap-style fieldset[disabled] .btn-warning:hover,
.bootstrap-style .btn-warning.disabled:focus,
.bootstrap-style .btn-warning[disabled]:focus,
.bootstrap-style fieldset[disabled] .btn-warning:focus,
.bootstrap-style .btn-warning.disabled.focus,
.bootstrap-style .btn-warning.focus[disabled],
.bootstrap-style fieldset[disabled] .btn-warning.focus {
  background-color: #f0ad4e;
  border-color: #eea236;
}

/* line 3339, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

/* line 3343, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

/* line 3348, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-danger:focus,
.bootstrap-style .btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}

/* line 3354, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

/* line 3359, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-danger:active,
.bootstrap-style .btn-danger.active,
.bootstrap-style .open > .dropdown-toggle.btn-danger {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

/* line 3366, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-danger:active:hover,
.bootstrap-style .btn-danger.active:hover,
.bootstrap-style .open > .dropdown-toggle.btn-danger:hover,
.bootstrap-style .btn-danger:active:focus,
.bootstrap-style .btn-danger.active:focus,
.bootstrap-style .open > .dropdown-toggle.btn-danger:focus,
.bootstrap-style .btn-danger.focus:active,
.bootstrap-style .btn-danger.active.focus,
.bootstrap-style .open > .dropdown-toggle.btn-danger.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}

/* line 3379, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-danger:active,
.bootstrap-style .btn-danger.active,
.bootstrap-style .open > .dropdown-toggle.btn-danger {
  background-image: none;
}

/* line 3384, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-danger.disabled:hover,
.bootstrap-style .btn-danger[disabled]:hover,
.bootstrap-style fieldset[disabled] .btn-danger:hover,
.bootstrap-style .btn-danger.disabled:focus,
.bootstrap-style .btn-danger[disabled]:focus,
.bootstrap-style fieldset[disabled] .btn-danger:focus,
.bootstrap-style .btn-danger.disabled.focus,
.bootstrap-style .btn-danger.focus[disabled],
.bootstrap-style fieldset[disabled] .btn-danger.focus {
  background-color: #d9534f;
  border-color: #d43f3a;
}

/* line 3396, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

/* line 3400, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-link {
  font-weight: normal;
  color: #337ab7;
  border-radius: 0;
}

/* line 3405, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-link,
.bootstrap-style .btn-link:active,
.bootstrap-style .btn-link.active,
.bootstrap-style .btn-link[disabled],
.bootstrap-style fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 3414, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-link,
.bootstrap-style .btn-link:hover,
.bootstrap-style .btn-link:focus,
.bootstrap-style .btn-link:active {
  border-color: transparent;
}

/* line 3420, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-link:hover,
.bootstrap-style .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}

/* line 3426, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-link[disabled]:hover,
.bootstrap-style fieldset[disabled] .btn-link:hover,
.bootstrap-style .btn-link[disabled]:focus,
.bootstrap-style fieldset[disabled] .btn-link:focus {
  color: #777;
  text-decoration: none;
}

/* line 3433, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-lg,
.bootstrap-style .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 3440, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-sm,
.bootstrap-style .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 3447, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-xs,
.bootstrap-style .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 3454, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-block {
  display: block;
  width: 100%;
}

/* line 3458, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-block + .btn-block {
  margin-top: 5px;
}

/* line 3461, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style input.btn-block[type="submit"],
.bootstrap-style input.btn-block[type="reset"],
.bootstrap-style input.btn-block[type="button"] {
  width: 100%;
}

/* line 3466, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear;
}

/* line 3472, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .fade.in {
  opacity: 1;
}

/* line 3475, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .collapse {
  display: none;
}

/* line 3478, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .collapse.in {
  display: block;
}

/* line 3481, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style tr.collapse.in {
  display: table-row;
}

/* line 3484, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style tbody.collapse.in {
  display: table-row-group;
}

/* line 3487, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .35s;
  -o-transition-duration: .35s;
  transition-duration: .35s;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
}

/* line 3501, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

/* line 3512, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropup,
.bootstrap-style .dropdown {
  position: relative;
}

/* line 3516, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropdown-toggle:focus {
  outline: 0;
}

/* line 3519, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

/* line 3541, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

/* line 3545, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 3551, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

/* line 3560, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropdown-menu > li > a:hover,
.bootstrap-style .dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

/* line 3566, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropdown-menu > .active > a,
.bootstrap-style .dropdown-menu > .active > a:hover,
.bootstrap-style .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}

/* line 3574, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropdown-menu > .disabled > a,
.bootstrap-style .dropdown-menu > .disabled > a:hover,
.bootstrap-style .dropdown-menu > .disabled > a:focus {
  color: #777;
}

/* line 3579, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropdown-menu > .disabled > a:hover,
.bootstrap-style .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

/* line 3587, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .open > .dropdown-menu {
  display: block;
}

/* line 3590, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .open > a {
  outline: 0;
}

/* line 3593, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropdown-menu-right {
  right: 0;
  left: auto;
}

/* line 3597, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropdown-menu-left {
  right: auto;
  left: 0;
}

/* line 3601, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}

/* line 3609, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

/* line 3617, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

/* line 3621, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropup .caret,
.bootstrap-style .navbar-fixed-bottom .dropdown .caret {
  content: "";
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}

/* line 3628, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropup .dropdown-menu,
.bootstrap-style .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  /* line 3635, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  /* line 3639, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}

/* line 3644, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group,
.bootstrap-style .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

/* line 3650, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group > .btn,
.bootstrap-style .btn-group-vertical > .btn {
  position: relative;
  float: left;
}

/* line 3655, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group > .btn:hover,
.bootstrap-style .btn-group-vertical > .btn:hover,
.bootstrap-style .btn-group > .btn:focus,
.bootstrap-style .btn-group-vertical > .btn:focus,
.bootstrap-style .btn-group > .btn:active,
.bootstrap-style .btn-group-vertical > .btn:active,
.bootstrap-style .btn-group > .btn.active,
.bootstrap-style .btn-group-vertical > .btn.active {
  z-index: 2;
}

/* line 3665, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group .btn + .btn,
.bootstrap-style .btn-group .btn + .btn-group,
.bootstrap-style .btn-group .btn-group + .btn,
.bootstrap-style .btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

/* line 3671, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-toolbar {
  margin-left: -5px;
}

/* line 3674, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-toolbar .btn,
.bootstrap-style .btn-toolbar .btn-group,
.bootstrap-style .btn-toolbar .input-group {
  float: left;
}

/* line 3679, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-toolbar > .btn,
.bootstrap-style .btn-toolbar > .btn-group,
.bootstrap-style .btn-toolbar > .input-group {
  margin-left: 5px;
}

/* line 3684, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

/* line 3687, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group > .btn:first-child {
  margin-left: 0;
}

/* line 3690, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 3694, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group > .btn:last-child:not(:first-child),
.bootstrap-style .btn-group > .dropdown-toggle:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3699, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group > .btn-group {
  float: left;
}

/* line 3702, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 3705, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
.bootstrap-style .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 3710, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3714, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group .dropdown-toggle:active,
.bootstrap-style .btn-group.open .dropdown-toggle {
  outline: 0;
}

/* line 3718, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}

/* line 3722, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}

/* line 3726, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/* line 3730, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 3734, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn .caret {
  margin-left: 0;
}

/* line 3737, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

/* line 3741, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}

/* line 3744, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group-vertical > .btn,
.bootstrap-style .btn-group-vertical > .btn-group,
.bootstrap-style .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}

/* line 3752, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group-vertical > .btn-group > .btn {
  float: none;
}

/* line 3755, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group-vertical > .btn + .btn,
.bootstrap-style .btn-group-vertical > .btn + .btn-group,
.bootstrap-style .btn-group-vertical > .btn-group + .btn,
.bootstrap-style .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

/* line 3762, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 3765, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3771, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group-vertical > .btn:last-child:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 3777, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

/* line 3780, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.bootstrap-style .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3785, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 3789, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}

/* line 3795, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group-justified > .btn,
.bootstrap-style .btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}

/* line 3801, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group-justified > .btn-group .btn {
  width: 100%;
}

/* line 3804, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-group-justified > .btn-group .dropdown-menu {
  left: auto;
}

/* line 3807, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style [data-toggle="buttons"] > .btn input[type="radio"],
.bootstrap-style [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
.bootstrap-style [data-toggle="buttons"] > .btn input[type="checkbox"],
.bootstrap-style [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

/* line 3815, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

/* line 3820, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}

/* line 3825, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

/* line 3832, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group .form-control:focus {
  z-index: 3;
}

/* line 3835, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-lg > .form-control,
.bootstrap-style .input-group-lg > .input-group-addon,
.bootstrap-style .input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* line 3844, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style select.input-group-lg > .form-control,
.bootstrap-style select.input-group-lg > .input-group-addon,
.bootstrap-style select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}

/* line 3850, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style textarea.input-group-lg > .form-control,
.bootstrap-style textarea.input-group-lg > .input-group-addon,
.bootstrap-style textarea.input-group-lg > .input-group-btn > .btn,
.bootstrap-style select.input-group-lg[multiple] > .form-control,
.bootstrap-style select.input-group-lg[multiple] > .input-group-addon,
.bootstrap-style select.input-group-lg[multiple] > .input-group-btn > .btn {
  height: auto;
}

/* line 3858, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-sm > .form-control,
.bootstrap-style .input-group-sm > .input-group-addon,
.bootstrap-style .input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

/* line 3867, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style select.input-group-sm > .form-control,
.bootstrap-style select.input-group-sm > .input-group-addon,
.bootstrap-style select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}

/* line 3873, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style textarea.input-group-sm > .form-control,
.bootstrap-style textarea.input-group-sm > .input-group-addon,
.bootstrap-style textarea.input-group-sm > .input-group-btn > .btn,
.bootstrap-style select.input-group-sm[multiple] > .form-control,
.bootstrap-style select.input-group-sm[multiple] > .input-group-addon,
.bootstrap-style select.input-group-sm[multiple] > .input-group-btn > .btn {
  height: auto;
}

/* line 3881, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-addon,
.bootstrap-style .input-group-btn,
.bootstrap-style .input-group .form-control {
  display: table-cell;
}

/* line 3886, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-addon:not(:first-child):not(:last-child),
.bootstrap-style .input-group-btn:not(:first-child):not(:last-child),
.bootstrap-style .input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}

/* line 3891, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-addon,
.bootstrap-style .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

/* line 3897, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 3908, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}

/* line 3913, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}

/* line 3918, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-addon input[type="radio"],
.bootstrap-style .input-group-addon input[type="checkbox"] {
  margin-top: 0;
}

/* line 3922, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group .form-control:first-child,
.bootstrap-style .input-group-addon:first-child,
.bootstrap-style .input-group-btn:first-child > .btn,
.bootstrap-style .input-group-btn:first-child > .btn-group > .btn,
.bootstrap-style .input-group-btn:first-child > .dropdown-toggle,
.bootstrap-style .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.bootstrap-style .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 3932, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-addon:first-child {
  border-right: 0;
}

/* line 3935, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group .form-control:last-child,
.bootstrap-style .input-group-addon:last-child,
.bootstrap-style .input-group-btn:last-child > .btn,
.bootstrap-style .input-group-btn:last-child > .btn-group > .btn,
.bootstrap-style .input-group-btn:last-child > .dropdown-toggle,
.bootstrap-style .input-group-btn:first-child > .btn:not(:first-child),
.bootstrap-style .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 3945, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-addon:last-child {
  border-left: 0;
}

/* line 3948, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

/* line 3953, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-btn > .btn {
  position: relative;
}

/* line 3956, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-btn > .btn + .btn {
  margin-left: -1px;
}

/* line 3959, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-btn > .btn:hover,
.bootstrap-style .input-group-btn > .btn:focus,
.bootstrap-style .input-group-btn > .btn:active {
  z-index: 2;
}

/* line 3964, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-btn:first-child > .btn,
.bootstrap-style .input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}

/* line 3968, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .input-group-btn:last-child > .btn,
.bootstrap-style .input-group-btn:last-child > .btn-group {
  z-index: 2;
  margin-left: -1px;
}

/* line 3973, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

/* line 3978, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav > li {
  position: relative;
  display: block;
}

/* line 3982, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

/* line 3987, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav > li > a:hover,
.bootstrap-style .nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}

/* line 3992, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav > li.disabled > a {
  color: #777;
}

/* line 3995, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav > li.disabled > a:hover,
.bootstrap-style .nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}

/* line 4002, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav .open > a,
.bootstrap-style .nav .open > a:hover,
.bootstrap-style .nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}

/* line 4008, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

/* line 4014, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav > li > a > img {
  max-width: none;
}

/* line 4017, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-tabs {
  border-bottom: 1px solid #ddd;
}

/* line 4020, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}

/* line 4024, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

/* line 4030, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-tabs > li > a:hover {
  border-color: #eee #eee #ddd;
}

/* line 4033, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-tabs > li.active > a,
.bootstrap-style .nav-tabs > li.active > a:hover,
.bootstrap-style .nav-tabs > li.active > a:focus {
  color: #555;
  cursor: default;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}

/* line 4042, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}

/* line 4046, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-tabs.nav-justified > li {
  float: none;
}

/* line 4049, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

/* line 4053, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  /* line 4058, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 4062, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

/* line 4066, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

/* line 4070, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-tabs.nav-justified > .active > a,
.bootstrap-style .nav-tabs.nav-justified > .active > a:hover,
.bootstrap-style .nav-tabs.nav-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  /* line 4076, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 4080, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .nav-tabs.nav-justified > .active > a,
.bootstrap-style .nav-tabs.nav-justified > .active > a:hover,
.bootstrap-style .nav-tabs.nav-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

/* line 4086, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-pills > li {
  float: left;
}

/* line 4089, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-pills > li > a {
  border-radius: 4px;
}

/* line 4092, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-pills > li + li {
  margin-left: 2px;
}

/* line 4095, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-pills > li.active > a,
.bootstrap-style .nav-pills > li.active > a:hover,
.bootstrap-style .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #337ab7;
}

/* line 4101, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-stacked > li {
  float: none;
}

/* line 4104, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

/* line 4108, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-justified {
  width: 100%;
}

/* line 4111, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-justified > li {
  float: none;
}

/* line 4114, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

/* line 4118, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

@media (min-width: 768px) {
  /* line 4123, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  /* line 4127, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .nav-justified > li > a {
    margin-bottom: 0;
  }
}

/* line 4131, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-tabs-justified {
  border-bottom: 0;
}

/* line 4134, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-tabs-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}

/* line 4138, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-tabs-justified > .active > a,
.bootstrap-style .nav-tabs-justified > .active > a:hover,
.bootstrap-style .nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}

@media (min-width: 768px) {
  /* line 4144, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .nav-tabs-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  /* line 4148, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .nav-tabs-justified > .active > a,
.bootstrap-style .nav-tabs-justified > .active > a:hover,
.bootstrap-style .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

/* line 4154, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tab-content > .tab-pane {
  display: none;
}

/* line 4157, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tab-content > .active {
  display: block;
}

/* line 4160, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 4165, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

@media (min-width: 768px) {
  /* line 4172, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar {
    border-radius: 4px;
  }
}

@media (min-width: 768px) {
  /* line 4177, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-header {
    float: left;
  }
}

/* line 4181, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* line 4190, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-collapse.in {
  overflow-y: auto;
}

@media (min-width: 768px) {
  /* line 4194, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  /* line 4200, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  /* line 4206, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-collapse.in {
    overflow-y: visible;
  }
  /* line 4209, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-fixed-top .navbar-collapse,
.bootstrap-style .navbar-static-top .navbar-collapse,
.bootstrap-style .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
}

/* line 4216, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-fixed-top .navbar-collapse,
.bootstrap-style .navbar-fixed-bottom .navbar-collapse {
  max-height: 340px;
}

@media (max-device-width: 480px) and (orientation: landscape) {
  /* line 4221, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-fixed-top .navbar-collapse,
.bootstrap-style .navbar-fixed-bottom .navbar-collapse {
    max-height: 200px;
  }
}

/* line 4226, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .container > .navbar-header,
.bootstrap-style .container-fluid > .navbar-header,
.bootstrap-style .container > .navbar-collapse,
.bootstrap-style .container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 768px) {
  /* line 4234, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .container > .navbar-header,
.bootstrap-style .container-fluid > .navbar-header,
.bootstrap-style .container > .navbar-collapse,
.bootstrap-style .container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
}

/* line 4242, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px;
}

@media (min-width: 768px) {
  /* line 4247, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-static-top {
    border-radius: 0;
  }
}

/* line 4251, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-fixed-top,
.bootstrap-style .navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

@media (min-width: 768px) {
  /* line 4259, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-fixed-top,
.bootstrap-style .navbar-fixed-bottom {
    border-radius: 0;
  }
}

/* line 4264, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px;
}

/* line 4268, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0;
}

/* line 4273, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-brand {
  float: left;
  height: 50px;
  padding: 15px 15px;
  font-size: 18px;
  line-height: 20px;
}

/* line 4280, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-brand:hover,
.bootstrap-style .navbar-brand:focus {
  text-decoration: none;
}

/* line 4284, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-brand > img {
  display: block;
}

@media (min-width: 768px) {
  /* line 4288, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar > .container .navbar-brand,
.bootstrap-style .navbar > .container-fluid .navbar-brand {
    margin-left: -15px;
  }
}

/* line 4293, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 4305, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-toggle:focus {
  outline: 0;
}

/* line 4308, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

/* line 4314, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  /* line 4318, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-toggle {
    display: none;
  }
}

/* line 4322, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-nav {
  margin: 7.5px -15px;
}

/* line 4325, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (max-width: 767px) {
  /* line 4331, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  /* line 4341, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-nav .open .dropdown-menu > li > a,
.bootstrap-style .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }
  /* line 4345, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }
  /* line 4348, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-nav .open .dropdown-menu > li > a:hover,
.bootstrap-style .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 768px) {
  /* line 4354, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-nav {
    float: left;
    margin: 0;
  }
  /* line 4358, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-nav > li {
    float: left;
  }
  /* line 4361, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

/* line 4366, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  /* line 4378, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 4383, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  /* line 4388, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-form .form-control-static {
    display: inline-block;
  }
  /* line 4391, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-form .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  /* line 4395, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-form .input-group .input-group-addon,
.bootstrap-style .navbar-form .input-group .input-group-btn,
.bootstrap-style .navbar-form .input-group .form-control {
    width: auto;
  }
  /* line 4400, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-form .input-group > .form-control {
    width: 100%;
  }
  /* line 4403, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-form .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 4407, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-form .radio,
.bootstrap-style .navbar-form .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  /* line 4414, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-form .radio label,
.bootstrap-style .navbar-form .checkbox label {
    padding-left: 0;
  }
  /* line 4418, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-form .radio input[type="radio"],
.bootstrap-style .navbar-form .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  /* line 4423, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-form .has-feedback .form-control-feedback {
    top: 0;
  }
}

@media (max-width: 767px) {
  /* line 4428, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-form .form-group {
    margin-bottom: 5px;
  }
  /* line 4431, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-form .form-group:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  /* line 4436, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-form {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

/* line 4447, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 4452, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  margin-bottom: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 4459, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-btn {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* line 4463, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-btn.btn-sm {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* line 4467, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-btn.btn-xs {
  margin-top: 14px;
  margin-bottom: 14px;
}

/* line 4471, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-text {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  /* line 4476, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-text {
    float: left;
    margin-right: 15px;
    margin-left: 15px;
  }
}

@media (min-width: 768px) {
  /* line 4483, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-left {
    float: left !important;
  }
  /* line 4486, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-right {
    float: right !important;
    margin-right: -15px;
  }
  /* line 4490, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-right ~ .navbar-right {
    margin-right: 0;
  }
}

/* line 4494, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
}

/* line 4498, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .navbar-brand {
  color: #777;
}

/* line 4501, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .navbar-brand:hover,
.bootstrap-style .navbar-default .navbar-brand:focus {
  color: #5e5e5e;
  background-color: transparent;
}

/* line 4506, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .navbar-text {
  color: #777;
}

/* line 4509, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .navbar-nav > li > a {
  color: #777;
}

/* line 4512, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .navbar-nav > li > a:hover,
.bootstrap-style .navbar-default .navbar-nav > li > a:focus {
  color: #333;
  background-color: transparent;
}

/* line 4517, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .navbar-nav > .active > a,
.bootstrap-style .navbar-default .navbar-nav > .active > a:hover,
.bootstrap-style .navbar-default .navbar-nav > .active > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

/* line 4523, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .navbar-nav > .disabled > a,
.bootstrap-style .navbar-default .navbar-nav > .disabled > a:hover,
.bootstrap-style .navbar-default .navbar-nav > .disabled > a:focus {
  color: #ccc;
  background-color: transparent;
}

/* line 4529, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .navbar-toggle {
  border-color: #ddd;
}

/* line 4532, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .navbar-toggle:hover,
.bootstrap-style .navbar-default .navbar-toggle:focus {
  background-color: #ddd;
}

/* line 4536, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .navbar-toggle .icon-bar {
  background-color: #888;
}

/* line 4539, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .navbar-collapse,
.bootstrap-style .navbar-default .navbar-form {
  border-color: #e7e7e7;
}

/* line 4543, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .navbar-nav > .open > a,
.bootstrap-style .navbar-default .navbar-nav > .open > a:hover,
.bootstrap-style .navbar-default .navbar-nav > .open > a:focus {
  color: #555;
  background-color: #e7e7e7;
}

@media (max-width: 767px) {
  /* line 4550, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #777;
  }
  /* line 4553, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.bootstrap-style .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #333;
    background-color: transparent;
  }
  /* line 4558, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
.bootstrap-style .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
.bootstrap-style .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
  }
  /* line 4564, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
.bootstrap-style .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.bootstrap-style .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
  }
}

/* line 4571, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .navbar-link {
  color: #777;
}

/* line 4574, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .navbar-link:hover {
  color: #333;
}

/* line 4577, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .btn-link {
  color: #777;
}

/* line 4580, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .btn-link:hover,
.bootstrap-style .navbar-default .btn-link:focus {
  color: #333;
}

/* line 4584, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-default .btn-link[disabled]:hover,
.bootstrap-style fieldset[disabled] .navbar-default .btn-link:hover,
.bootstrap-style .navbar-default .btn-link[disabled]:focus,
.bootstrap-style fieldset[disabled] .navbar-default .btn-link:focus {
  color: #ccc;
}

/* line 4590, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse {
  background-color: #222;
  border-color: #080808;
}

/* line 4594, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .navbar-brand {
  color: #9d9d9d;
}

/* line 4597, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .navbar-brand:hover,
.bootstrap-style .navbar-inverse .navbar-brand:focus {
  color: #fff;
  background-color: transparent;
}

/* line 4602, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .navbar-text {
  color: #9d9d9d;
}

/* line 4605, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .navbar-nav > li > a {
  color: #9d9d9d;
}

/* line 4608, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .navbar-nav > li > a:hover,
.bootstrap-style .navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color: transparent;
}

/* line 4613, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .navbar-nav > .active > a,
.bootstrap-style .navbar-inverse .navbar-nav > .active > a:hover,
.bootstrap-style .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color: #080808;
}

/* line 4619, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .navbar-nav > .disabled > a,
.bootstrap-style .navbar-inverse .navbar-nav > .disabled > a:hover,
.bootstrap-style .navbar-inverse .navbar-nav > .disabled > a:focus {
  color: #444;
  background-color: transparent;
}

/* line 4625, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .navbar-toggle {
  border-color: #333;
}

/* line 4628, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .navbar-toggle:hover,
.bootstrap-style .navbar-inverse .navbar-toggle:focus {
  background-color: #333;
}

/* line 4632, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .navbar-toggle .icon-bar {
  background-color: #fff;
}

/* line 4635, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .navbar-collapse,
.bootstrap-style .navbar-inverse .navbar-form {
  border-color: #101010;
}

/* line 4639, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .navbar-nav > .open > a,
.bootstrap-style .navbar-inverse .navbar-nav > .open > a:hover,
.bootstrap-style .navbar-inverse .navbar-nav > .open > a:focus {
  color: #fff;
  background-color: #080808;
}

@media (max-width: 767px) {
  /* line 4646, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
    border-color: #080808;
  }
  /* line 4649, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
    background-color: #080808;
  }
  /* line 4652, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #9d9d9d;
  }
  /* line 4655, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
.bootstrap-style .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: transparent;
  }
  /* line 4660, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
.bootstrap-style .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
.bootstrap-style .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
    color: #fff;
    background-color: #080808;
  }
  /* line 4666, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
.bootstrap-style .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
.bootstrap-style .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
    color: #444;
    background-color: transparent;
  }
}

/* line 4673, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .navbar-link {
  color: #9d9d9d;
}

/* line 4676, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .navbar-link:hover {
  color: #fff;
}

/* line 4679, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .btn-link {
  color: #9d9d9d;
}

/* line 4682, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .btn-link:hover,
.bootstrap-style .navbar-inverse .btn-link:focus {
  color: #fff;
}

/* line 4686, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .navbar-inverse .btn-link[disabled]:hover,
.bootstrap-style fieldset[disabled] .navbar-inverse .btn-link:hover,
.bootstrap-style .navbar-inverse .btn-link[disabled]:focus,
.bootstrap-style fieldset[disabled] .navbar-inverse .btn-link:focus {
  color: #444;
}

/* line 4692, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #f5f5f5;
  border-radius: 4px;
}

/* line 4699, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .breadcrumb > li {
  display: inline-block;
}

/* line 4702, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}

/* line 4707, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .breadcrumb > .active {
  color: #777;
}

/* line 4710, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

/* line 4716, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pagination > li {
  display: inline;
}

/* line 4719, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pagination > li > a,
.bootstrap-style .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 4731, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pagination > li:first-child > a,
.bootstrap-style .pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 4737, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pagination > li:last-child > a,
.bootstrap-style .pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* line 4742, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pagination > li > a:hover,
.bootstrap-style .pagination > li > span:hover,
.bootstrap-style .pagination > li > a:focus,
.bootstrap-style .pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}

/* line 4751, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pagination > .active > a,
.bootstrap-style .pagination > .active > span,
.bootstrap-style .pagination > .active > a:hover,
.bootstrap-style .pagination > .active > span:hover,
.bootstrap-style .pagination > .active > a:focus,
.bootstrap-style .pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 4763, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pagination > .disabled > span,
.bootstrap-style .pagination > .disabled > span:hover,
.bootstrap-style .pagination > .disabled > span:focus,
.bootstrap-style .pagination > .disabled > a,
.bootstrap-style .pagination > .disabled > a:hover,
.bootstrap-style .pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

/* line 4774, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pagination-lg > li > a,
.bootstrap-style .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

/* line 4780, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pagination-lg > li:first-child > a,
.bootstrap-style .pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* line 4785, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pagination-lg > li:last-child > a,
.bootstrap-style .pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* line 4790, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pagination-sm > li > a,
.bootstrap-style .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

/* line 4796, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pagination-sm > li:first-child > a,
.bootstrap-style .pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 4801, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pagination-sm > li:last-child > a,
.bootstrap-style .pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* line 4806, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

/* line 4812, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pager li {
  display: inline;
}

/* line 4815, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pager li > a,
.bootstrap-style .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

/* line 4823, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pager li > a:hover,
.bootstrap-style .pager li > a:focus {
  text-decoration: none;
  background-color: #eee;
}

/* line 4828, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pager .next > a,
.bootstrap-style .pager .next > span {
  float: right;
}

/* line 4832, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pager .previous > a,
.bootstrap-style .pager .previous > span {
  float: left;
}

/* line 4836, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pager .disabled > a,
.bootstrap-style .pager .disabled > a:hover,
.bootstrap-style .pager .disabled > a:focus,
.bootstrap-style .pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}

/* line 4844, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .label {
  display: inline;
  padding: .2em .6em .3em;
  font-size: 75%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25em;
}

/* line 4856, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.label:hover,
.bootstrap-style a.label:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 4862, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .label:empty {
  display: none;
}

/* line 4865, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn .label {
  position: relative;
  top: -1px;
}

/* line 4869, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .label-default {
  background-color: #777;
}

/* line 4872, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .label-default[href]:hover,
.bootstrap-style .label-default[href]:focus {
  background-color: #5e5e5e;
}

/* line 4876, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .label-primary {
  background-color: #337ab7;
}

/* line 4879, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .label-primary[href]:hover,
.bootstrap-style .label-primary[href]:focus {
  background-color: #286090;
}

/* line 4883, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .label-success {
  background-color: #5cb85c;
}

/* line 4886, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .label-success[href]:hover,
.bootstrap-style .label-success[href]:focus {
  background-color: #449d44;
}

/* line 4890, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .label-info {
  background-color: #5bc0de;
}

/* line 4893, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .label-info[href]:hover,
.bootstrap-style .label-info[href]:focus {
  background-color: #31b0d5;
}

/* line 4897, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .label-warning {
  background-color: #f0ad4e;
}

/* line 4900, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .label-warning[href]:hover,
.bootstrap-style .label-warning[href]:focus {
  background-color: #ec971f;
}

/* line 4904, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .label-danger {
  background-color: #d9534f;
}

/* line 4907, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .label-danger[href]:hover,
.bootstrap-style .label-danger[href]:focus {
  background-color: #c9302c;
}

/* line 4911, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: #777;
  border-radius: 10px;
}

/* line 4925, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .badge:empty {
  display: none;
}

/* line 4928, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn .badge {
  position: relative;
  top: -1px;
}

/* line 4932, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .btn-xs .badge,
.bootstrap-style .btn-group-xs > .btn .badge {
  top: 0;
  padding: 1px 5px;
}

/* line 4937, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.badge:hover,
.bootstrap-style a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* line 4943, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item.active > .badge,
.bootstrap-style .nav-pills > .active > a > .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 4948, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item > .badge {
  float: right;
}

/* line 4951, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item > .badge + .badge {
  margin-right: 5px;
}

/* line 4954, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .nav-pills > li > a > .badge {
  margin-left: 3px;
}

/* line 4957, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #eee;
}

/* line 4964, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .jumbotron h1,
.bootstrap-style .jumbotron .h1 {
  color: inherit;
}

/* line 4968, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .jumbotron p {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: 200;
}

/* line 4973, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .jumbotron > hr {
  border-top-color: #d5d5d5;
}

/* line 4976, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .container .jumbotron,
.bootstrap-style .container-fluid .jumbotron {
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 6px;
}

/* line 4982, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .jumbotron .container {
  max-width: 100%;
}

@media screen and (min-width: 768px) {
  /* line 4986, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .jumbotron {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  /* line 4990, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .container .jumbotron,
.bootstrap-style .container-fluid .jumbotron {
    padding-right: 60px;
    padding-left: 60px;
  }
  /* line 4995, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .jumbotron h1,
.bootstrap-style .jumbotron .h1 {
    font-size: 63px;
  }
}

/* line 5000, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: border .2s ease-in-out;
  -o-transition: border .2s ease-in-out;
  transition: border .2s ease-in-out;
}

/* line 5012, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .thumbnail > img,
.bootstrap-style .thumbnail a > img {
  margin-right: auto;
  margin-left: auto;
}

/* line 5017, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.thumbnail:hover,
.bootstrap-style a.thumbnail:focus,
.bootstrap-style a.thumbnail.active {
  border-color: #337ab7;
}

/* line 5022, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .thumbnail .caption {
  padding: 9px;
  color: #333;
}

/* line 5026, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

/* line 5032, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert h4 {
  margin-top: 0;
  color: inherit;
}

/* line 5036, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert .alert-link {
  font-weight: bold;
}

/* line 5039, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert > p,
.bootstrap-style .alert > ul {
  margin-bottom: 0;
}

/* line 5043, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert > p + p {
  margin-top: 5px;
}

/* line 5046, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert-dismissable,
.bootstrap-style .alert-dismissible {
  padding-right: 35px;
}

/* line 5050, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert-dismissable .close,
.bootstrap-style .alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 5057, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 5062, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert-success hr {
  border-top-color: #c9e2b3;
}

/* line 5065, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert-success .alert-link {
  color: #2b542c;
}

/* line 5068, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 5073, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert-info hr {
  border-top-color: #a6e1ec;
}

/* line 5076, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert-info .alert-link {
  color: #245269;
}

/* line 5079, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 5084, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert-warning hr {
  border-top-color: #f7e1b5;
}

/* line 5087, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert-warning .alert-link {
  color: #66512c;
}

/* line 5090, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 5095, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert-danger hr {
  border-top-color: #e4b9c0;
}

/* line 5098, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .alert-danger .alert-link {
  color: #843534;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

/* line 5125, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 5134, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width .6s ease;
  -o-transition: width .6s ease;
  transition: width .6s ease;
}

/* line 5149, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .progress-striped .progress-bar,
.bootstrap-style .progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
  background-size: 40px 40px;
}

/* line 5157, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .progress.active .progress-bar,
.bootstrap-style .progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

/* line 5163, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .progress-bar-success {
  background-color: #5cb85c;
}

/* line 5166, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 5171, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .progress-bar-info {
  background-color: #5bc0de;
}

/* line 5174, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 5179, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .progress-bar-warning {
  background-color: #f0ad4e;
}

/* line 5182, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 5187, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .progress-bar-danger {
  background-color: #d9534f;
}

/* line 5190, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .progress-striped .progress-bar-danger {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

/* line 5195, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .media {
  margin-top: 15px;
}

/* line 5198, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .media:first-child {
  margin-top: 0;
}

/* line 5201, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .media,
.bootstrap-style .media-body {
  overflow: hidden;
  zoom: 1;
}

/* line 5206, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .media-body {
  width: 10000px;
}

/* line 5209, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .media-object {
  display: block;
}

/* line 5212, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .media-object.img-thumbnail {
  max-width: none;
}

/* line 5215, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .media-right,
.bootstrap-style .media > .pull-right {
  padding-left: 10px;
}

/* line 5219, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .media-left,
.bootstrap-style .media > .pull-left {
  padding-right: 10px;
}

/* line 5223, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .media-left,
.bootstrap-style .media-right,
.bootstrap-style .media-body {
  display: table-cell;
  vertical-align: top;
}

/* line 5229, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .media-middle {
  vertical-align: middle;
}

/* line 5232, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .media-bottom {
  vertical-align: bottom;
}

/* line 5235, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .media-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 5239, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .media-list {
  padding-left: 0;
  list-style: none;
}

/* line 5243, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

/* line 5247, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

/* line 5255, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 5259, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* line 5264, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item,
.bootstrap-style button.list-group-item {
  color: #555;
}

/* line 5268, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item .list-group-item-heading,
.bootstrap-style button.list-group-item .list-group-item-heading {
  color: #333;
}

/* line 5272, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item:hover,
.bootstrap-style button.list-group-item:hover,
.bootstrap-style a.list-group-item:focus,
.bootstrap-style button.list-group-item:focus {
  color: #555;
  text-decoration: none;
  background-color: #f5f5f5;
}

/* line 5280, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style button.list-group-item {
  width: 100%;
  text-align: left;
}

/* line 5284, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item.disabled,
.bootstrap-style .list-group-item.disabled:hover,
.bootstrap-style .list-group-item.disabled:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #eee;
}

/* line 5291, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item.disabled .list-group-item-heading,
.bootstrap-style .list-group-item.disabled:hover .list-group-item-heading,
.bootstrap-style .list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}

/* line 5296, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item.disabled .list-group-item-text,
.bootstrap-style .list-group-item.disabled:hover .list-group-item-text,
.bootstrap-style .list-group-item.disabled:focus .list-group-item-text {
  color: #777;
}

/* line 5301, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item.active,
.bootstrap-style .list-group-item.active:hover,
.bootstrap-style .list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 5309, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item.active .list-group-item-heading,
.bootstrap-style .list-group-item.active:hover .list-group-item-heading,
.bootstrap-style .list-group-item.active:focus .list-group-item-heading,
.bootstrap-style .list-group-item.active .list-group-item-heading > small,
.bootstrap-style .list-group-item.active:hover .list-group-item-heading > small,
.bootstrap-style .list-group-item.active:focus .list-group-item-heading > small,
.bootstrap-style .list-group-item.active .list-group-item-heading > .small,
.bootstrap-style .list-group-item.active:hover .list-group-item-heading > .small,
.bootstrap-style .list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}

/* line 5320, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item.active .list-group-item-text,
.bootstrap-style .list-group-item.active:hover .list-group-item-text,
.bootstrap-style .list-group-item.active:focus .list-group-item-text {
  color: #c7ddef;
}

/* line 5325, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}

/* line 5329, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-success,
.bootstrap-style button.list-group-item-success {
  color: #3c763d;
}

/* line 5333, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-success .list-group-item-heading,
.bootstrap-style button.list-group-item-success .list-group-item-heading {
  color: inherit;
}

/* line 5337, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-success:hover,
.bootstrap-style button.list-group-item-success:hover,
.bootstrap-style a.list-group-item-success:focus,
.bootstrap-style button.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}

/* line 5344, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-success.active,
.bootstrap-style button.list-group-item-success.active,
.bootstrap-style a.list-group-item-success.active:hover,
.bootstrap-style button.list-group-item-success.active:hover,
.bootstrap-style a.list-group-item-success.active:focus,
.bootstrap-style button.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}

/* line 5354, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}

/* line 5358, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-info,
.bootstrap-style button.list-group-item-info {
  color: #31708f;
}

/* line 5362, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-info .list-group-item-heading,
.bootstrap-style button.list-group-item-info .list-group-item-heading {
  color: inherit;
}

/* line 5366, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-info:hover,
.bootstrap-style button.list-group-item-info:hover,
.bootstrap-style a.list-group-item-info:focus,
.bootstrap-style button.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}

/* line 5373, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-info.active,
.bootstrap-style button.list-group-item-info.active,
.bootstrap-style a.list-group-item-info.active:hover,
.bootstrap-style button.list-group-item-info.active:hover,
.bootstrap-style a.list-group-item-info.active:focus,
.bootstrap-style button.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}

/* line 5383, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

/* line 5387, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-warning,
.bootstrap-style button.list-group-item-warning {
  color: #8a6d3b;
}

/* line 5391, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-warning .list-group-item-heading,
.bootstrap-style button.list-group-item-warning .list-group-item-heading {
  color: inherit;
}

/* line 5395, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-warning:hover,
.bootstrap-style button.list-group-item-warning:hover,
.bootstrap-style a.list-group-item-warning:focus,
.bootstrap-style button.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}

/* line 5402, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-warning.active,
.bootstrap-style button.list-group-item-warning.active,
.bootstrap-style a.list-group-item-warning.active:hover,
.bootstrap-style button.list-group-item-warning.active:hover,
.bootstrap-style a.list-group-item-warning.active:focus,
.bootstrap-style button.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}

/* line 5412, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}

/* line 5416, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-danger,
.bootstrap-style button.list-group-item-danger {
  color: #a94442;
}

/* line 5420, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-danger .list-group-item-heading,
.bootstrap-style button.list-group-item-danger .list-group-item-heading {
  color: inherit;
}

/* line 5424, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-danger:hover,
.bootstrap-style button.list-group-item-danger:hover,
.bootstrap-style a.list-group-item-danger:focus,
.bootstrap-style button.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}

/* line 5431, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style a.list-group-item-danger.active,
.bootstrap-style button.list-group-item-danger.active,
.bootstrap-style a.list-group-item-danger.active:hover,
.bootstrap-style button.list-group-item-danger.active:hover,
.bootstrap-style a.list-group-item-danger.active:focus,
.bootstrap-style button.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}

/* line 5441, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* line 5445, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}

/* line 5449, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 5457, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-body {
  padding: 15px;
}

/* line 5460, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 5466, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

/* line 5469, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

/* line 5475, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-title > a,
.bootstrap-style .panel-title > small,
.bootstrap-style .panel-title > .small,
.bootstrap-style .panel-title > small > a,
.bootstrap-style .panel-title > .small > a {
  color: inherit;
}

/* line 5482, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 5489, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .list-group,
.bootstrap-style .panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

/* line 5493, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .list-group .list-group-item,
.bootstrap-style .panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

/* line 5498, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .list-group:first-child .list-group-item:first-child,
.bootstrap-style .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 5504, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .list-group:last-child .list-group-item:last-child,
.bootstrap-style .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 5510, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 5514, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

/* line 5517, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .list-group + .panel-footer {
  border-top-width: 0;
}

/* line 5520, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table,
.bootstrap-style .panel > .table-responsive > .table,
.bootstrap-style .panel > .panel-collapse > .table {
  margin-bottom: 0;
}

/* line 5525, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table caption,
.bootstrap-style .panel > .table-responsive > .table caption,
.bootstrap-style .panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}

/* line 5531, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table:first-child,
.bootstrap-style .panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 5536, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table:first-child > thead:first-child > tr:first-child,
.bootstrap-style .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.bootstrap-style .panel > .table:first-child > tbody:first-child > tr:first-child,
.bootstrap-style .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

/* line 5543, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.bootstrap-style .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.bootstrap-style .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.bootstrap-style .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.bootstrap-style .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.bootstrap-style .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.bootstrap-style .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.bootstrap-style .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

/* line 5553, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.bootstrap-style .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.bootstrap-style .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.bootstrap-style .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.bootstrap-style .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.bootstrap-style .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.bootstrap-style .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.bootstrap-style .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

/* line 5563, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table:last-child,
.bootstrap-style .panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 5568, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table:last-child > tbody:last-child > tr:last-child,
.bootstrap-style .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.bootstrap-style .panel > .table:last-child > tfoot:last-child > tr:last-child,
.bootstrap-style .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

/* line 5575, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.bootstrap-style .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.bootstrap-style .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.bootstrap-style .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.bootstrap-style .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.bootstrap-style .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.bootstrap-style .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.bootstrap-style .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

/* line 5585, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.bootstrap-style .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.bootstrap-style .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.bootstrap-style .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.bootstrap-style .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.bootstrap-style .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.bootstrap-style .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.bootstrap-style .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

/* line 5595, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .panel-body + .table,
.bootstrap-style .panel > .panel-body + .table-responsive,
.bootstrap-style .panel > .table + .panel-body,
.bootstrap-style .panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}

/* line 5601, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table > tbody:first-child > tr:first-child th,
.bootstrap-style .panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

/* line 5605, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table-bordered,
.bootstrap-style .panel > .table-responsive > .table-bordered {
  border: 0;
}

/* line 5609, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table-bordered > thead > tr > th:first-child,
.bootstrap-style .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.bootstrap-style .panel > .table-bordered > tbody > tr > th:first-child,
.bootstrap-style .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.bootstrap-style .panel > .table-bordered > tfoot > tr > th:first-child,
.bootstrap-style .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.bootstrap-style .panel > .table-bordered > thead > tr > td:first-child,
.bootstrap-style .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.bootstrap-style .panel > .table-bordered > tbody > tr > td:first-child,
.bootstrap-style .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.bootstrap-style .panel > .table-bordered > tfoot > tr > td:first-child,
.bootstrap-style .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

/* line 5623, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table-bordered > thead > tr > th:last-child,
.bootstrap-style .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.bootstrap-style .panel > .table-bordered > tbody > tr > th:last-child,
.bootstrap-style .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.bootstrap-style .panel > .table-bordered > tfoot > tr > th:last-child,
.bootstrap-style .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.bootstrap-style .panel > .table-bordered > thead > tr > td:last-child,
.bootstrap-style .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.bootstrap-style .panel > .table-bordered > tbody > tr > td:last-child,
.bootstrap-style .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.bootstrap-style .panel > .table-bordered > tfoot > tr > td:last-child,
.bootstrap-style .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

/* line 5637, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table-bordered > thead > tr:first-child > td,
.bootstrap-style .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.bootstrap-style .panel > .table-bordered > tbody > tr:first-child > td,
.bootstrap-style .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.bootstrap-style .panel > .table-bordered > thead > tr:first-child > th,
.bootstrap-style .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.bootstrap-style .panel > .table-bordered > tbody > tr:first-child > th,
.bootstrap-style .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

/* line 5647, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table-bordered > tbody > tr:last-child > td,
.bootstrap-style .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.bootstrap-style .panel > .table-bordered > tfoot > tr:last-child > td,
.bootstrap-style .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.bootstrap-style .panel > .table-bordered > tbody > tr:last-child > th,
.bootstrap-style .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.bootstrap-style .panel > .table-bordered > tfoot > tr:last-child > th,
.bootstrap-style .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

/* line 5657, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}

/* line 5661, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-group {
  margin-bottom: 20px;
}

/* line 5664, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

/* line 5668, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-group .panel + .panel {
  margin-top: 5px;
}

/* line 5671, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-group .panel-heading {
  border-bottom: 0;
}

/* line 5674, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-group .panel-heading + .panel-collapse > .panel-body,
.bootstrap-style .panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}

/* line 5678, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-group .panel-footer {
  border-top: 0;
}

/* line 5681, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

/* line 5684, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-default {
  border-color: #ddd;
}

/* line 5687, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

/* line 5692, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}

/* line 5695, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}

/* line 5699, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

/* line 5702, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-primary {
  border-color: #337ab7;
}

/* line 5705, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

/* line 5710, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}

/* line 5713, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}

/* line 5717, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

/* line 5720, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-success {
  border-color: #d6e9c6;
}

/* line 5723, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

/* line 5728, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}

/* line 5731, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

/* line 5735, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

/* line 5738, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-info {
  border-color: #bce8f1;
}

/* line 5741, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

/* line 5746, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}

/* line 5749, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

/* line 5753, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

/* line 5756, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-warning {
  border-color: #faebcc;
}

/* line 5759, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

/* line 5764, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}

/* line 5767, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

/* line 5771, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

/* line 5774, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-danger {
  border-color: #ebccd1;
}

/* line 5777, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 5782, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}

/* line 5785, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

/* line 5789, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

/* line 5792, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

/* line 5799, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .embed-responsive .embed-responsive-item,
.bootstrap-style .embed-responsive iframe,
.bootstrap-style .embed-responsive embed,
.bootstrap-style .embed-responsive object,
.bootstrap-style .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* line 5812, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

/* line 5815, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .embed-responsive-4by3 {
  padding-bottom: 75%;
}

/* line 5818, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 5828, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

/* line 5832, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .well-lg {
  padding: 24px;
  border-radius: 6px;
}

/* line 5836, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .well-sm {
  padding: 9px;
  border-radius: 3px;
}

/* line 5840, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}

/* line 5850, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .close:hover,
.bootstrap-style .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}

/* line 5858, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

/* line 5865, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-open {
  overflow: hidden;
}

/* line 5868, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

/* line 5880, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
  -o-transition: -o-transform .3s ease-out;
  transition: transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

/* line 5889, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* line 5895, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 5899, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 5904, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

/* line 5916, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
}

/* line 5925, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

/* line 5929, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}

/* line 5933, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

/* line 5937, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-header .close {
  margin-top: -2px;
}

/* line 5940, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-title {
  margin: 0;
  line-height: 1.42857143;
}

/* line 5944, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-body {
  position: relative;
  padding: 15px;
}

/* line 5948, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

/* line 5953, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

/* line 5957, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

/* line 5960, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 5963, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  /* line 5971, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  /* line 5975, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  /* line 5979, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  /* line 5984, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .modal-lg {
    width: 900px;
  }
}

/* line 5988, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;
  line-break: auto;
}

/* line 6012, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9;
}

/* line 6016, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

/* line 6020, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

/* line 6024, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

/* line 6028, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

/* line 6032, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

/* line 6040, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 6047, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 6054, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 6061, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

/* line 6068, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

/* line 6075, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

/* line 6082, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 6089, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 6096, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

/* line 6103, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  line-break: auto;
}

/* line 6137, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover.top {
  margin-top: -10px;
}

/* line 6140, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover.right {
  margin-left: 10px;
}

/* line 6143, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover.bottom {
  margin-top: 10px;
}

/* line 6146, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover.left {
  margin-left: -10px;
}

/* line 6149, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

/* line 6157, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover-content {
  padding: 9px 14px;
}

/* line 6160, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover > .arrow,
.bootstrap-style .popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

/* line 6169, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover > .arrow {
  border-width: 11px;
}

/* line 6172, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover > .arrow:after {
  content: "";
  border-width: 10px;
}

/* line 6176, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}

/* line 6184, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}

/* line 6191, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover.right > .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}

/* line 6199, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover.right > .arrow:after {
  bottom: -10px;
  left: 1px;
  content: " ";
  border-right-color: #fff;
  border-left-width: 0;
}

/* line 6206, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

/* line 6214, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}

/* line 6221, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover.left > .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-right-width: 0;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
}

/* line 6229, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .popover.left > .arrow:after {
  right: 1px;
  bottom: -10px;
  content: " ";
  border-right-width: 0;
  border-left-color: #fff;
}

/* line 6236, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel {
  position: relative;
}

/* line 6239, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* line 6244, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
  -o-transition: .6s ease-in-out left;
  transition: .6s ease-in-out left;
}

/* line 6251, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-inner > .item > img,
.bootstrap-style .carousel-inner > .item > a > img {
  line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  /* line 6256, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
    -o-transition: -o-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }
  /* line 6266, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .carousel-inner > .item.next,
.bootstrap-style .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  /* line 6272, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .carousel-inner > .item.prev,
.bootstrap-style .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  /* line 6278, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .carousel-inner > .item.next.left,
.bootstrap-style .carousel-inner > .item.prev.right,
.bootstrap-style .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 6286, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-inner > .active,
.bootstrap-style .carousel-inner > .next,
.bootstrap-style .carousel-inner > .prev {
  display: block;
}

/* line 6291, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-inner > .active {
  left: 0;
}

/* line 6294, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-inner > .next,
.bootstrap-style .carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

/* line 6300, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-inner > .next {
  left: 100%;
}

/* line 6303, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-inner > .prev {
  left: -100%;
}

/* line 6306, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-inner > .next.left,
.bootstrap-style .carousel-inner > .prev.right {
  left: 0;
}

/* line 6310, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-inner > .active.left {
  left: -100%;
}

/* line 6313, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-inner > .active.right {
  left: 100%;
}

/* line 6316, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
  filter: alpha(opacity=50);
  opacity: .5;
}

/* line 6330, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  background-repeat: repeat-x;
}

/* line 6338, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-control.right {
  right: 0;
  left: auto;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
}

/* line 6348, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-control:hover,
.bootstrap-style .carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}

/* line 6356, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-control .icon-prev,
.bootstrap-style .carousel-control .icon-next,
.bootstrap-style .carousel-control .glyphicon-chevron-left,
.bootstrap-style .carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}

/* line 6366, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-control .icon-prev,
.bootstrap-style .carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}

/* line 6371, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-control .icon-next,
.bootstrap-style .carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}

/* line 6376, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-control .icon-prev,
.bootstrap-style .carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}

/* line 6383, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-control .icon-prev:before {
  content: '\2039';
}

/* line 6386, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-control .icon-next:before {
  content: '\203a';
}

/* line 6389, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}

/* line 6400, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}

/* line 6412, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}

/* line 6418, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* line 6430, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .carousel-caption .btn {
  text-shadow: none;
}

@media screen and (min-width: 768px) {
  /* line 6434, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .carousel-control .glyphicon-chevron-left,
.bootstrap-style .carousel-control .glyphicon-chevron-right,
.bootstrap-style .carousel-control .icon-prev,
.bootstrap-style .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  /* line 6443, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .carousel-control .glyphicon-chevron-left,
.bootstrap-style .carousel-control .icon-prev {
    margin-left: -10px;
  }
  /* line 6447, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .carousel-control .glyphicon-chevron-right,
.bootstrap-style .carousel-control .icon-next {
    margin-right: -10px;
  }
  /* line 6451, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  /* line 6456, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .carousel-indicators {
    bottom: 20px;
  }
}

/* line 6460, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .clearfix:before,
.bootstrap-style .clearfix:after,
.bootstrap-style .dl-horizontal dd:before,
.bootstrap-style .dl-horizontal dd:after,
.bootstrap-style .container:before,
.bootstrap-style .container:after,
.bootstrap-style .container-fluid:before,
.bootstrap-style .container-fluid:after,
.bootstrap-style .row:before,
.bootstrap-style .row:after,
.bootstrap-style .form-horizontal .form-group:before,
.bootstrap-style .form-horizontal .form-group:after,
.bootstrap-style .btn-toolbar:before,
.bootstrap-style .btn-toolbar:after,
.bootstrap-style .btn-group-vertical > .btn-group:before,
.bootstrap-style .btn-group-vertical > .btn-group:after,
.bootstrap-style .nav:before,
.bootstrap-style .nav:after,
.bootstrap-style .navbar:before,
.bootstrap-style .navbar:after,
.bootstrap-style .navbar-header:before,
.bootstrap-style .navbar-header:after,
.bootstrap-style .navbar-collapse:before,
.bootstrap-style .navbar-collapse:after,
.bootstrap-style .pager:before,
.bootstrap-style .pager:after,
.bootstrap-style .panel-body:before,
.bootstrap-style .panel-body:after,
.bootstrap-style .modal-header:before,
.bootstrap-style .modal-header:after,
.bootstrap-style .modal-footer:before,
.bootstrap-style .modal-footer:after {
  display: table;
  content: " ";
}

/* line 6495, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .clearfix:after,
.bootstrap-style .dl-horizontal dd:after,
.bootstrap-style .container:after,
.bootstrap-style .container-fluid:after,
.bootstrap-style .row:after,
.bootstrap-style .form-horizontal .form-group:after,
.bootstrap-style .btn-toolbar:after,
.bootstrap-style .btn-group-vertical > .btn-group:after,
.bootstrap-style .nav:after,
.bootstrap-style .navbar:after,
.bootstrap-style .navbar-header:after,
.bootstrap-style .navbar-collapse:after,
.bootstrap-style .pager:after,
.bootstrap-style .panel-body:after,
.bootstrap-style .modal-header:after,
.bootstrap-style .modal-footer:after {
  clear: both;
}

/* line 6513, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* line 6518, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pull-right {
  float: right !important;
}

/* line 6521, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .pull-left {
  float: left !important;
}

/* line 6524, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .hide {
  display: none !important;
}

/* line 6527, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .show {
  display: block !important;
}

/* line 6530, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .invisible {
  visibility: hidden;
}

/* line 6533, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 6540, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .hidden {
  display: none !important;
}

/* line 6543, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .affix {
  position: fixed;
}

@-ms-viewport {
  /* line 5, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style {
    width: device-width;
  }
}

/* line 6549, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .visible-xs,
.bootstrap-style .visible-sm,
.bootstrap-style .visible-md,
.bootstrap-style .visible-lg {
  display: none !important;
}

/* line 6555, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .visible-xs-block,
.bootstrap-style .visible-xs-inline,
.bootstrap-style .visible-xs-inline-block,
.bootstrap-style .visible-sm-block,
.bootstrap-style .visible-sm-inline,
.bootstrap-style .visible-sm-inline-block,
.bootstrap-style .visible-md-block,
.bootstrap-style .visible-md-inline,
.bootstrap-style .visible-md-inline-block,
.bootstrap-style .visible-lg-block,
.bootstrap-style .visible-lg-inline,
.bootstrap-style .visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  /* line 6570, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-xs {
    display: block !important;
  }
  /* line 6573, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style table.visible-xs {
    display: table !important;
  }
  /* line 6576, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style tr.visible-xs {
    display: table-row !important;
  }
  /* line 6579, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style th.visible-xs,
.bootstrap-style td.visible-xs {
    display: table-cell !important;
  }
}

@media (max-width: 767px) {
  /* line 6585, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 6590, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* line 6595, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 6600, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-sm {
    display: block !important;
  }
  /* line 6603, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style table.visible-sm {
    display: table !important;
  }
  /* line 6606, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style tr.visible-sm {
    display: table-row !important;
  }
  /* line 6609, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style th.visible-sm,
.bootstrap-style td.visible-sm {
    display: table-cell !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 6615, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 6620, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 6625, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 6630, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-md {
    display: block !important;
  }
  /* line 6633, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style table.visible-md {
    display: table !important;
  }
  /* line 6636, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style tr.visible-md {
    display: table-row !important;
  }
  /* line 6639, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style th.visible-md,
.bootstrap-style td.visible-md {
    display: table-cell !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 6645, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 6650, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 6655, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  /* line 6660, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-lg {
    display: block !important;
  }
  /* line 6663, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style table.visible-lg {
    display: table !important;
  }
  /* line 6666, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style tr.visible-lg {
    display: table-row !important;
  }
  /* line 6669, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style th.visible-lg,
.bootstrap-style td.visible-lg {
    display: table-cell !important;
  }
}

@media (min-width: 1200px) {
  /* line 6675, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  /* line 6680, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  /* line 6685, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  /* line 6690, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 6695, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  /* line 6700, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 6705, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .hidden-lg {
    display: none !important;
  }
}

/* line 6709, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .visible-print {
  display: none !important;
}

@media print {
  /* line 6713, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-print {
    display: block !important;
  }
  /* line 6716, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style table.visible-print {
    display: table !important;
  }
  /* line 6719, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style tr.visible-print {
    display: table-row !important;
  }
  /* line 6722, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style th.visible-print,
.bootstrap-style td.visible-print {
    display: table-cell !important;
  }
}

/* line 6727, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .visible-print-block {
  display: none !important;
}

@media print {
  /* line 6731, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-print-block {
    display: block !important;
  }
}

/* line 6735, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .visible-print-inline {
  display: none !important;
}

@media print {
  /* line 6739, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-print-inline {
    display: inline !important;
  }
}

/* line 6743, app/assets/stylesheets/_bootstrap_style.scss */
.bootstrap-style .visible-print-inline-block {
  display: none !important;
}

@media print {
  /* line 6747, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 6752, app/assets/stylesheets/_bootstrap_style.scss */
  .bootstrap-style .hidden-print {
    display: none !important;
  }
}

/* line 10, app/assets/stylesheets/universal.css.scss */
.hidden {
  display: none !important;
}

/* --------------------------------------------- */
/*  (全環境に共通のデザイン) */
/* --------------------------------------------- */
/* line 17, app/assets/stylesheets/universal.css.scss */
.text-align-center {
  text-align: center;
}

/* ============================
ボタンが光る効果
============================ */
/* line 23, app/assets/stylesheets/universal.css.scss */
.shine {
  animation: shine_keyframes 2s infinite;
}

@keyframes shine_keyframes {
  0% {
    box-shadow: 0 0 3px 3px #90DA88;
  }
  50% {
    box-shadow: 0 0 10px 10px #F8DD60;
  }
  100% {
    box-shadow: 0 0 3px 3px #90DA88;
  }
}

@-webkit-keyframes shine_keyframes {
  0% {
    box-shadow: 0 0 3px 3px #90DA88;
  }
  50% {
    box-shadow: 0 0 10px 10px #F8DD60;
  }
  100% {
    box-shadow: 0 0 3px 3px #90DA88;
  }
}

@-moz-keyframes shine_keyframes {
  0% {
    box-shadow: 0 0 3px 3px #90DA88;
  }
  50% {
    box-shadow: 0 0 10px 10px #F8DD60;
  }
  100% {
    box-shadow: 0 0 3px 3px #90DA88;
  }
}

@-o-keyframes shine_keyframes {
  0% {
    box-shadow: 0 0 3px 3px #90DA88;
  }
  50% {
    box-shadow: 0 0 10px 10px #F8DD60;
  }
  100% {
    box-shadow: 0 0 3px 3px #90DA88;
  }
}

/* error page */
/* line 76, app/assets/stylesheets/universal.css.scss */
.error_box {
  text-align: center;
}

/* line 79, app/assets/stylesheets/universal.css.scss */
.error_box_header img {
  width: 180px;
  margin-bottom: 15px;
}

/* line 83, app/assets/stylesheets/universal.css.scss */
.error_box_body h2 {
  padding: 0;
  border-bottom: 0;
  font-size: 16px;
  font-weight: bold;
}

/* line 89, app/assets/stylesheets/universal.css.scss */
.error_box_body p {
  margin: 10px 0 15px;
}

/* ------------------------------------ */
/* ▼スマホ用として付け足すデザイン */
/* ------------------------------------ */
@media all and (max-width: 480px) {
  /* error page */
  /* line 99, app/assets/stylesheets/universal.css.scss */
  .error_box {
    padding-top: 100px;
  }
}

/* ------------------------------------ */
/* ▼タブレット・PC用として付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 480px) {
  /* error page */
  /* line 109, app/assets/stylesheets/universal.css.scss */
  .error_box {
    padding: 100px 0 0 260px;
    text-align: center;
  }
}

/* ============================
BootStrapモーダルの修正
============================ */
/* ------------------------------------ */
/* ▼スマホ用 */
/* ------------------------------------ */
@media all and (max-width: 480px) {
  /* line 123, app/assets/stylesheets/universal.css.scss */
  .tutorial-modal .modal-dialog {
    margin: 150px 10px;
  }
}

/* ------------------------------------ */
/* ▼PC・タブレット用 */
/* ------------------------------------ */
@media all and (min-width: 480px) {
  /* line 133, app/assets/stylesheets/universal.css.scss */
  .tutorial-modal .modal-dialog {
    margin: 150px auto;
  }
}
/*


 */
