@charset "UTF-8";
/*****************************************************************************
 * global
 ****************************************************************************/
canvas {
  border: solid 1px #ccc;
}

.wrapper {
  width: 96%;
  margin: 0 2%;
}

@media only screen and (min-width: 1140px) {
  .wrapper {
    width: 940px;
    margin: 0 auto;
  }
}
.logo {
  width: 100px;
  height: 26px;
  display: inline-block;
  overflow: hidden;
  text-indent: 121px;
  background: #fff url(../img/logo.png) 0 0 no-repeat;
  background-size: auto 100%;
}

.header-container {
  background: #fff url(../img/bk.png) 0 -20px repeat-x;
}
.header-container header {
  height: 65px;
}
.header-container header .title {
  margin-top: 8px;
  margin-left: 5px;
}
.header-container nav {
  width: 60px;
}
.header-container nav li {
  display: inline-block;
  width: 60px;
}
.header-container nav li:first-child {
  margin: 0;
}
.header-container nav a {
  width: 60px;
  height: 48px;
  margin: 0;
  padding: 0;
  text-indent: 64px;
  overflow: hidden;
  background: transparent url(../img/p.png) 0 0 no-repeat;
  background-size: 360px;
}
.header-container nav #config a {
  background-position: -133px -8px;
  margin-left: 10px;
}
.header-container nav #config ul {
  display: none;
}

.main {
  padding: 0;
}

.footer-container {
  display: none;
}

.red {
  color: #f00;
}

#unauthorized {
  display: none;
  height: 100%;
}
#unauthorized .form {
  width: 480px;
  height: 280px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -240px;
  margin-top: -140px;
}
#unauthorized .form input {
  width: 456px;
  font-size: 1.6em;
  margin: 10px 0;
  padding: 10px;
  box-sizing: box;
}
#unauthorized .form input[type=submit] {
  margin: 0;
  padding: 0;
  display: none;
}
#unauthorized .form button {
  margin: 0 7px;
  font-size: 1.2em;
  padding: 5px;
  border: none;
  border-radius: 24px;
  background-color: #0c8967;
  background: -webkit-gradient(linear, left top, left bottom, from(#e7f0f0), to(#0c8967));
  background: linear-gradient(to bottom, #e7f0f0, #0c8967);
  color: #333;
  margin: auto;
  display: block;
}
#unauthorized .form button span {
  background-color: #e5e5e6;
  background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#e5e5e6));
  background: linear-gradient(to bottom, #fafafa, #e5e5e6);
  display: block;
  min-width: 90px;
  border-radius: 18px;
  padding: 8px 5px;
  font-size: 90%;
  font-weight: bold;
}
#unauthorized .form .message {
  margin-top: 10px;
  color: #f00;
}

#authorized {
  display: none;
}

/*****************************************************************************
 * nav
 ****************************************************************************/
.nav ul {
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0;
}
.nav ul li {
  display: inline-block;
  width: 100px;
  height: 40px;
  margin-right: 10px;
}
.nav ul li a {
  display: inline-block;
  text-align: center;
  padding: 10px 0 10px 0;
  width: 100%;
  color: #296931;
  border: 3px solid #296931;
  border-radius: 10px;
  background-color: #fff;
  text-decoration: none;
}
.nav ul li a.active {
  background-color: #296931;
  color: #fff;
}

/*****************************************************************************
 * side menu
 ****************************************************************************/
.main aside {
  width: 34%;
  margin-bottom: 20px;
  border: #009942 solid 10px;
  border-radius: 10px;
  box-shadow: 0 0 5px #ccc;
  margin-bottom: 0;
}
.main aside nav a:hover, .main aside nav a:visited {
  color: #333;
}
.main aside section {
  display: none;
  background-color: #ACE3AE;
  border-bottom: solid #BDC7CA 1px;
}
.main aside section .tab {
  background-color: #ACE3AE;
}
.main aside section .tab li {
  width: 50%;
  display: inline-block;
  float: left;
  text-align: center;
  color: #fff;
  background-color: #90BE91;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top: none;
  margin-top: 3px;
  padding: 8px 0 5px 0;
}
.main aside section .tab li.selected {
  font-weight: bold;
  background-color: #EAF6E3;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #333;
}
.main aside section .plan {
  display: none;
  background-color: #EAF6E3;
  padding-bottom: 0;
}
.main aside section .plan h3 {
  color: #093;
  margin: 0;
}
.main aside section .plan.selected {
  display: block;
}
.main aside section div > ul > li {
  text-align: right;
  display: list-item;
  color: #333;
  font-weight: bold;
  border-top: none;
  border-bottom: 1px dotted #000;
  padding: 5px 10px 5px 0px;
}
.main aside section div > ul > li.step-settings-header, .main aside section div > ul > li.step-setting-header {
  text-align: left;
  padding-left: 10px;
  font-size: 80%;
  background-color: #D7E1D1;
}
.main aside section div > ul > li.step-setting-header .step-title {
  display: inline-block;
  background-color: #D7E1D1 !important;
}
.main aside section div > ul > li.step-setting-header .step-clear {
  display: inline-block;
  float: right;
  background-color: #D7E1D1 !important;
}
.main aside section div > ul > li:before {
  display: inline-block;
  float: left;
  padding-left: 10px;
  text-align: left;
  content: attr(data-label);
  font-weight: normal;
  width: 45%;
  line-height: 20px;
  font-size: 80%;
}
.main aside section div > ul > li:after {
  content: "";
  clear: both;
  display: table;
}
.main aside section div > ul > li:nth-child(1) {
  border-top: none;
}
.main aside section div > ul > li:last-child {
  border-bottom: none;
}
.main aside section div > ul > li[data-item=necessaryFunds] {
  color: #666;
}
.main aside section div > ul > li[data-item=numberOfPayments]:after {
  zoom: 1;
  clear: both;
  content: " ";
  display: table;
}
.main aside section div > ul > li > span {
  display: block;
  background-color: #D7E1D1;
  margin-left: 125px;
  border-radius: 4px;
  padding-right: 4px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4) inset;
}
.main aside section div > ul > li > span .small {
  font-weight: normal;
  font-size: 88%;
}
.main aside section div > ul > li.caution {
  color: #F00;
}
.main aside section div > ul > li .warn {
  color: #f00;
  font-weight: normal;
  font-size: 90%;
  padding-left: 10px;
  text-align: left;
}
.main aside section div > ul > li .error {
  color: #F00;
}
.main aside section div > ul > li[data-group*=prepayment][data-item=prepaymentYear] {
  float: left;
}
.main aside section div > ul > li[data-group*=prepayment][data-item=prepaymentYear] span {
  width: 50px;
}
.main aside section div > ul > li[data-group*=prepayment][data-item=prepaymentYear]:before {
  width: auto;
}
.main aside section div > ul > li[data-group*=prepayment][data-item=prepaymentMonth] {
  float: left;
}
.main aside section div > ul > li[data-group*=prepayment][data-item=prepaymentMonth] span {
  width: 40px;
  margin-left: 1px;
}
.main aside section div > ul > li[data-group*=prepayment][data-item=prepaymentMonth]:before {
  content: "";
}
.main aside section div > ul > li[data-group*=prepayment][data-item=prepaymentAmount] {
  clear: both;
}
.main aside section div > ul > li[data-group*=prepayment][data-item=prepaymentType] {
  border-bottom: 1px dotted #000;
}
.main aside section div > ul > li[data-group*=changePaymentPlan][data-item*=changePaymentYear] {
  float: left;
}
.main aside section div > ul > li[data-group*=changePaymentPlan][data-item*=changePaymentYear] span {
  width: 50px;
}
.main aside section div > ul > li[data-group*=changePaymentPlan][data-item*=changePaymentYear]:before {
  width: auto;
}
.main aside section div > ul > li[data-group*=changePaymentPlan][data-item*=changePaymentMonth] {
  float: left;
}
.main aside section div > ul > li[data-group*=changePaymentPlan][data-item*=changePaymentMonth] span {
  width: 40px;
  margin-left: 1px;
}
.main aside section div > ul > li[data-group*=changePaymentPlan][data-item*=changePaymentMonth]:before {
  content: "";
}
.main aside section div > ul > li[data-group*=changePaymentPlan][data-item*=changePaymentAmount] {
  clear: both;
}
.main aside section div > ul > li span[data-expr] {
  display: block;
  width: 30%;
  border: none;
  float: left;
  margin: 0;
  padding: 0 0 5px 0;
  box-shadow: none;
  background: #f8f8f8;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f8f8f8), color-stop(100%, #dddddd));
  background: -webkit-linear-gradient(top, #f8f8f8 0%, #dddddd 100%);
  background: -o-linear-gradient(top, #f8f8f8 0%, #dddddd 100%);
  background: -ms-linear-gradient(top, #f8f8f8 0%, #dddddd 100%);
  background: linear-gradient(to bottom, #f8f8f8 0%, #dddddd 100%);
  border-bottom: solid 1px #ccc;
  border-radius: 20px;
  text-align: center;
  padding: 2px 0;
  color: #009942;
}
.main aside section div > ul > li span[data-expr="-6"] {
  margin: 4px 15% 0 5%;
}
.main aside section div > ul > li span[data-expr="+6"] {
  margin: 4px 2% 0 18%;
}
.main aside section div > ul > li span[data-expr="-1"] {
  margin: 4px 15% 0 5%;
}
.main aside section div > ul > li span[data-expr="+1"] {
  margin: 4px 2% 0 18%;
}
.main aside nav > ul > li > a {
  background: -moz-linear-gradient(top, #E8ECEF, #CFD3D6);
  background: -webkit-gradient(linear, left top, left bottom, from(#E8ECEF), to(#CFD3D6));
  border-top: solid #F3F6F9 1px;
  border-bottom: solid #BDC7CA 1px;
  color: #333;
  padding: 5px 0;
}
.main aside nav > ul > li > a:hover {
  background-color: #33cc55;
  text-decoration: none;
}
.main aside nav > ul > li.selected > a {
  background: -moz-linear-gradient(top, #ABE2AD, #93CA95);
  background: -webkit-gradient(linear, left top, left bottom, from(#ABE2AD), to(#93CA95));
  border-top: solid #D1FFD2 1px;
  border-bottom: solid #71B472 1px;
  color: #fff;
}
.main aside #m3 + section div, .main aside #m5 + section div {
  background-color: #EAF6E3;
}
.main aside #m5 + section li[data-group*=prepayment][data-item=prepaymentAmount] {
  display: none;
}
.main aside .action_buttons:before {
  clear: both;
  content: "";
  display: table;
  height: 0;
  zoom: 1;
}

/*****************************************************************************
 * contents
 ****************************************************************************/
.main article {
  width: 61%;
}
.main article header {
  position: relative;
}
.main article header ul {
  position: absolute;
  top: -14px;
  right: 0;
  display: inline;
}
.main article header ul li {
  display: inline;
  float: left;
  margin-right: 2px;
}
.main article header ul a {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  text-indent: 64px;
  overflow: hidden;
  background: transparent url(../img/p.png) 0 0 no-repeat;
  background-size: 280px;
}
.main article header ul a.delete {
  background-position: 0px -3px;
}
.main article header ul a.copy {
  background-position: -160px -3px;
}
.main article header ul a.carry {
  background-position: -107px -54px;
}
.main article header ul a.list {
  background-position: -213px -3px;
}
.main article header ul a.total {
  background-position: -160px -54px;
}
.main article header ul a.remain {
  background-position: -212px -54px;
  padding-right: 4px;
  border-right: 1px dashed #ccc;
}
.main article h1 {
  margin: 0 0 10px 0;
  border: #CFD7D9 solid 1px;
  border-radius: 10px;
  padding: 8px 10px 8px 12px;
  background: -moz-linear-gradient(top, #fff 49%, #F8FAFA 51%);
  background: -webkit-linear-gradient(top, #fff 49%, #F8FAFA 51%);
  box-shadow: 0 1px 3px #f0f0f0;
  font-size: 1em !important;
}
.main article ul {
  padding: 0;
}
.main article ul li {
  margin: 0;
  list-style: none;
}
.main article section.payment-times-table {
  margin-bottom: 10px;
}
.main article table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: #BDC7CA solid 1px;
}
.main article table th {
  border-spacing: 1px;
  font-size: 96%;
  border: #BDC7CA solid 1px;
  padding: 5px;
  background-color: #D6F0D5;
  color: #333;
}
.main article table th.row_title {
  text-align: left;
  background-color: #D6E7EB;
  padding-left: 8px;
  width: 32%;
  font-size: 88%;
}
.main article table th.funds {
  background-color: #D6E7EB;
  padding-left: 8px;
  width: 32%;
  font-size: 0.85rem;
  text-align: right;
}
.main article table th.row-deferred-payment {
  background-color: #ebdde5;
}
.main article table th.row-base-payment {
  background-color: #eaebd3;
}
.main article table th.row_times {
  background-color: #D6E7EB;
}
.main article table th.plan_result {
  width: 35%;
}
.main article table td {
  text-align: right;
  font-size: 1em;
  border: #BDC7CA solid 1px;
  padding: 5px;
}
.main article table td.payment-times {
  text-align: left;
}
.main article table td .sub {
  color: #666;
  font-size: 0.8em;
}
.main article table td.add-bonus {
  background-color: #f5f5dc !important;
}
.main article table td.add-prepaid {
  background-color: #e4d7f5 !important;
}
.main article table td.add-prepaid .prepaid {
  font-size: 0.8rem;
}
.main article table tr:nth-child(odd) td {
  background-color: #fcfcfc;
}
.main article table .prepayment td {
  background-color: #fee !important;
}
.main article .error_p1 {
  color: #f00;
}
.main article .error_p2 {
  color: #00f;
}
.main article section > p {
  margin: 0.5em 0 0 0;
}
.main article section > ul {
  margin: 0.5em 0 0 0;
}
.main article .attention {
  font-size: 80%;
  color: #333;
  line-height: 120%;
}
.main article .attention + ul {
  font-size: 80%;
  line-height: 120%;
}
.main article .regend ul {
  border: solid 1px #ccc;
  margin: 0;
  padding: 10px 0;
  float: right;
}
.main article .regend ul li {
  display: inline-block;
  border-left: 20px solid #fff;
  padding-left: 10px;
  margin-left: 20px;
  font-size: 0.9em;
  line-height: 10px;
}
.main article .regend ul li:nth-child(1) {
  border-left-color: #00B050;
}
.main article .regend ul li:nth-child(2) {
  border-left-color: #0070C0;
}
.main article .regend ul li:last-child {
  margin-right: 20px;
}

#a2, #a3, #a4, #a5 {
  display: none;
}

/* 支払例 */
#a3 section td {
  -webkit-tap-highlight-color: rgba(204, 0, 0, 0.7);
}

/* 商品案内 */
#a4 section h2 {
  background-color: #78D;
  color: #fff;
  border-radius: 16px;
  border: #78D solid 0;
  padding: 2px 10px;
  font-size: 1.2em;
}
#a4 header {
  text-align: center;
  font-family: STHeiteiJ-Medium;
  font-size: 1.4em;
}
#a4 header img {
  max-width: 100%;
}
#a4 header div {
  display: table;
  margin: 20px auto;
}
#a4 header div > div {
  display: table-cell;
}
#a4 header div > div:nth-child(1) {
  width: 50%;
}
#a4 header div > div:nth-child(2) {
  width: 50%;
}
#a4 header .annualRate {
  color: #f00;
  font-family: Helvetica-Bold;
  font-size: 2em;
  font-weight: bold;
  text-shadow: 2px 2px 5px #999;
  -webkit-text-stroke: 1px #fff;
}
#a4 #g1 dt {
  display: inline-block;
  color: #f00;
  font-size: 1.3em;
  font-weight: bold;
  clear: both;
}
#a4 #g1 dd {
  display: inlie-block;
  margin-bottom: 10px;
}
#a4 #g2 dt {
  width: 25%;
  float: left;
  font-weight: bold;
  color: #333;
}
#a4 #g2 dd {
  width: 75%;
  float: left;
  margin: 0 0 8px 0;
}
#a4 #g2 .annualRate {
  margin-left: 10px;
  color: #f00;
  font-size: 1.2em;
  font-weight: bold;
}
#a4 #g2 .inputable textarea {
  width: 90%;
}
#a4 footer {
  border: #f66 solid 2px;
  border-radius: 12px;
  margin: 20px 0 10px 0;
}
#a4 footer > div {
  width: 49%;
  margin: 10px 0;
  padding: 0;
  text-align: center;
  float: left;
}
#a4 footer > div:first-child {
  border-right: #ccc solid 1px;
}
#a4 footer > div .inputable textarea {
  width: 90%;
  height: 120px;
}
#a4 footer h3 {
  margin: 0;
  color: #f66;
  font-size: 80%;
}
#a4 footer h3 + p {
  margin: 0.6em 0;
  word-break: break-all;
}
#a4 .inputable.default {
  color: #999;
}
#a4 .inputable.lastUpdate {
  display: block;
  word-break: break-all;
}
#a4 .inputable textarea {
  color: #000;
}

/* 繰上返済 */
#a5 header ul li.current {
  background-color: rgba(0, 0, 0, 0.1);
}
#a5 #a5total {
  display: none;
}
#a5 #a5remain {
  display: none;
}
#a5 .diff {
  color: #69c;
  font-size: 0.8em;
}

#commision_over_of_range {
  color: #f00;
}

/*****************************************************************************
 * ui
 ****************************************************************************/
#modal_layer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}

/* ダイアログ */
#ui_dialog {
  border-top: 1px solid #999;
  background: #333 url(../img/dtop.png) 0 0 no-repeat;
  background-size: 100%;
  background-position: 50% -10px;
  border-radius: 12px;
  z-index: 2;
  position: fixed;
  display: block;
  padding: 0;
  width: 400px;
}
#ui_dialog header {
  position: relative;
}
#ui_dialog .title {
  display: block;
  margin: 10px auto;
  text-align: center;
  width: 100%;
  font-size: 1em;
  font-weight: bold;
  float: none;
  color: #fff !important;
}
#ui_dialog .close {
  position: absolute;
  top: -15px;
  right: -15px;
  display: block;
  width: 51px;
  height: 50px;
  overflow: hidden;
  background: transparent url(../img/p.png) -70px -74px no-repeat;
  background-size: 360px;
  text-indent: 52px;
}
#ui_dialog .content {
  padding: 10px 20px;
  text-align: center;
  min-height: 100px;
  color: #fff;
}
#ui_dialog .buttons {
  margin: 10px auto 20px;
  text-align: center;
}
#ui_dialog .buttons button {
  margin: 0 7px;
  font-size: 1.2em;
  padding: 5px;
  border: none;
  border-radius: 24px;
  background-color: #0c8967;
  background: -webkit-gradient(linear, left top, left bottom, from(#e7f0f0), to(#0c8967));
  background: linear-gradient(to bottom, #e7f0f0, #0c8967);
  color: #333;
}
#ui_dialog .buttons button span {
  background-color: #e5e5e6;
  background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#e5e5e6));
  background: linear-gradient(to bottom, #fafafa, #e5e5e6);
  display: block;
  min-width: 90px;
  border-radius: 18px;
  padding: 8px 5px;
  font-size: 90%;
  font-weight: bold;
}

#ui_dialog.copy_dialog .content {
  min-height: initial;
}
#ui_dialog.copy_dialog .buttons button {
  margin: 7px 40px;
}
#ui_dialog.copy_dialog .buttons button span {
  padding: 8px 10px;
}

#ui_dialog.apply_dialog dl.info dt {
  display: inline-block;
  width: 40%;
  text-align: right;
}
#ui_dialog.apply_dialog dl.info dd {
  display: inline-block;
  width: 55%;
  text-align: left;
  margin: 0 0 0 5%;
}

/* テンキー */
#ui_tenkey {
  border-top: 1px solid #999;
  background: #333 url(../img/dtop.png) 0 0 no-repeat;
  background-size: 100%;
  background-position: 50% -10px;
  border-radius: 12px;
  z-index: 2;
  position: absolute;
  width: 320px;
  margin: 0;
  padding: 10px;
}
#ui_tenkey header {
  position: relative;
}
#ui_tenkey .title {
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  float: none;
  color: #fff !important;
}
#ui_tenkey .close {
  position: absolute;
  top: -15px;
  right: -15px;
  display: block;
  width: 51px;
  height: 50px;
  overflow: hidden;
  background: transparent url(../img/p.png) -70px -74px no-repeat;
  background-size: 360px;
  text-indent: 52px;
  top: -25px;
  right: -25px;
}
#ui_tenkey .display {
  text-align: right;
  font-size: 1.6em;
  font-weight: bold;
  margin: 10px 4px 10px 4px;
  background-color: #333;
  color: #fff;
  padding: 10px 0;
}
#ui_tenkey ul {
  margin: 0;
  padding: 0;
}
#ui_tenkey .input li {
  margin: 0;
  padding: 0;
  width: 25%;
  display: block;
  float: left;
}
#ui_tenkey .input li span {
  display: block;
  padding: 20px 10px;
  margin: 4px;
  font-weight: bold;
  color: #666;
  text-align: center;
  border-radius: 4px;
  background-color: #EBF0F3;
  font-size: 1.6em;
}
#ui_tenkey .input li.disable span {
  background-color: #999;
  color: #777;
}
#ui_tenkey .input li:nth-child(4) span {
  color: #fff;
  text-indent: 100px;
  overflow: hidden;
  background: #4fbf99 url(../img/p.png) 10px -77px no-repeat;
  background-size: 400px;
}
#ui_tenkey .input li:nth-child(8) span {
  background-color: #4FBF99;
  text-transform: uppercase;
  color: #fff;
}
#ui_tenkey .input li:nth-child(12) {
  float: right;
}
#ui_tenkey .input li:nth-child(12) span {
  color: #fff;
  background-color: #009845;
  padding: 55px 10px;
}

/* リスト */
#ui_list {
  border-top: 1px solid #999;
  background: #333 url(../img/dtop.png) 0 0 no-repeat;
  background-size: 100%;
  background-position: 50% -10px;
  border-radius: 12px;
  z-index: 2;
  position: absolute;
  width: 320px;
}
#ui_list header {
  position: relative;
}
#ui_list .title {
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  float: none;
  padding: 10px 0;
  color: #fff !important;
}
#ui_list .close {
  position: absolute;
  top: -15px;
  right: -15px;
  display: block;
  width: 51px;
  height: 50px;
  overflow: hidden;
  background: transparent url(../img/p.png) -70px -74px no-repeat;
  background-size: 360px;
  text-indent: 52px;
}
#ui_list ul {
  display: block;
  list-style: none;
  padding: 0;
  max-height: 280px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 15px 15px 15px;
  background-color: #fff;
  border-radius: 6px;
}
#ui_list ul li {
  border: none;
  padding: 10px;
}
#ui_list ul li:nth-child(even) {
  background-color: #EBF0F3;
}
#ui_list ul li:last-cihld {
  border-bottom: none;
}
#ui_list ul li.selected {
  background-color: #009845;
  color: #fff;
}
#ui_list > * {
  -webkit-transform: translateZ(0px);
}

/** PC用の表示補正 */
@media only screen and (min-width: 1000px) {
  .main aside section div > ul > li[data-group*=prepayment][data-item=prepaymentYear] span {
    width: 65px;
  }
  .main aside section div > ul > li[data-group*=prepayment][data-item=prepaymentMonth] span {
    width: 56px;
  }
  .main aside section div > ul > li[data-group*=changePaymentPlan][data-item*=changePaymentYear] span {
    width: 65px;
  }
  .main aside section div > ul > li[data-group*=changePaymentPlan][data-item*=changePaymentMonth] span {
    width: 56px;
  }
  .main aside section div > ul > li > span {
    margin-left: 150px;
  }
}

/*# sourceMappingURL=style.css.map */
