
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_e4858934c60a0bf2a3f50568.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.690430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3eca2f2cdce895acb37ecde1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fdee23a7fd229e8287221743.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_15e17e584c7eef37628a7891.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b3d68433adbc81fc47bd0d11.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2d78747b79dfe8ecc18eea0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_79f0bdc616d89492404da0d7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8439a80b4510737313603962.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_609ebcc98ac61299869f32d9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.121582;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d9902d60d9b502f813e3e851.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.718262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_adc388ca75c60ca2fe516568.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0955e825e2df439b745f8e53.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.096680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ac0cc24052a98641baaf0f1e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.913574;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-27.972000px;}
.v5{vertical-align:-17.982000px;}
.v2{vertical-align:-15.984000px;}
.v6{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:13.986000px;}
.v3{vertical-align:15.984000px;}
.v4{vertical-align:17.982000px;}
.ls16{letter-spacing:-1.260000px;}
.ls17{letter-spacing:-0.840000px;}
.lsb{letter-spacing:-0.810000px;}
.ls5{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.594000px;}
.ls10{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.420000px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.001680px;}
.ls8{letter-spacing:0.002280px;}
.ls7{letter-spacing:0.002880px;}
.ls13{letter-spacing:0.003384px;}
.lsa{letter-spacing:0.003696px;}
.ls14{letter-spacing:0.003708px;}
.ls12{letter-spacing:0.003984px;}
.lse{letter-spacing:0.004008px;}
.ls9{letter-spacing:0.004296px;}
.ls15{letter-spacing:0.004308px;}
.lsd{letter-spacing:0.004608px;}
.lsc{letter-spacing:0.005208px;}
.ls3{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.496080px;}
.ls2{letter-spacing:629.400000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.208000px;}
.ws29{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.012000px;}
.ws6{word-spacing:-13.344000px;}
.ws46{word-spacing:-11.676000px;}
.ws10{word-spacing:-8.751996px;}
.ws7{word-spacing:-7.779552px;}
.ws47{word-spacing:-6.807108px;}
.ws59{word-spacing:-3.192000px;}
.ws54{word-spacing:-2.562000px;}
.ws5e{word-spacing:-2.478000px;}
.ws52{word-spacing:-1.890000px;}
.wse{word-spacing:-1.344000px;}
.ws9{word-spacing:-1.248000px;}
.ws13{word-spacing:-1.200000px;}
.ws7e{word-spacing:-1.134000px;}
.ws22{word-spacing:-1.080000px;}
.wsa{word-spacing:-0.672000px;}
.ws6a{word-spacing:-0.504000px;}
.ws24{word-spacing:-0.432000px;}
.ws4{word-spacing:-0.054000px;}
.ws6f{word-spacing:-0.042000px;}
.ws3{word-spacing:0.000000px;}
.ws57{word-spacing:0.378000px;}
.ws6d{word-spacing:0.420000px;}
.ws49{word-spacing:0.462000px;}
.ws1f{word-spacing:0.594000px;}
.ws4a{word-spacing:0.714000px;}
.ws8{word-spacing:0.810000px;}
.ws69{word-spacing:0.840000px;}
.ws64{word-spacing:0.966000px;}
.ws67{word-spacing:1.260000px;}
.ws23{word-spacing:1.458000px;}
.ws42{word-spacing:1.566000px;}
.ws55{word-spacing:1.680000px;}
.ws2e{word-spacing:1.836000px;}
.ws80{word-spacing:2.256000px;}
.ws3e{word-spacing:2.376000px;}
.ws4b{word-spacing:2.436000px;}
.ws6c{word-spacing:2.646000px;}
.ws66{word-spacing:2.688000px;}
.ws7f{word-spacing:2.940000px;}
.ws5b{word-spacing:3.612000px;}
.wsc{word-spacing:3.888000px;}
.ws7a{word-spacing:4.116000px;}
.ws34{word-spacing:4.212000px;}
.ws14{word-spacing:4.224000px;}
.ws56{word-spacing:5.502000px;}
.ws5d{word-spacing:5.670000px;}
.ws6b{word-spacing:6.216000px;}
.ws5f{word-spacing:6.384000px;}
.ws43{word-spacing:6.912000px;}
.ws32{word-spacing:6.966000px;}
.ws12{word-spacing:7.104000px;}
.ws58{word-spacing:7.392000px;}
.ws68{word-spacing:7.770000px;}
.ws62{word-spacing:8.316000px;}
.ws76{word-spacing:8.526000px;}
.ws5a{word-spacing:9.324000px;}
.ws1d{word-spacing:9.342000px;}
.ws18{word-spacing:9.396000px;}
.wsb{word-spacing:9.408000px;}
.ws71{word-spacing:9.450000px;}
.ws28{word-spacing:9.504000px;}
.ws11{word-spacing:9.744000px;}
.ws50{word-spacing:10.542000px;}
.ws70{word-spacing:10.626000px;}
.ws26{word-spacing:12.096000px;}
.ws36{word-spacing:12.582000px;}
.ws2a{word-spacing:12.744000px;}
.ws44{word-spacing:13.446000px;}
.ws48{word-spacing:13.608000px;}
.ws41{word-spacing:13.824000px;}
.ws16{word-spacing:14.202000px;}
.ws7c{word-spacing:14.280000px;}
.ws2b{word-spacing:14.310000px;}
.ws6e{word-spacing:14.364000px;}
.ws2f{word-spacing:14.472000px;}
.ws4f{word-spacing:14.700000px;}
.ws2d{word-spacing:15.174000px;}
.ws19{word-spacing:15.282000px;}
.ws25{word-spacing:15.336000px;}
.ws1c{word-spacing:15.552000px;}
.ws61{word-spacing:15.750000px;}
.ws3b{word-spacing:15.822000px;}
.ws33{word-spacing:16.200000px;}
.ws4d{word-spacing:16.254000px;}
.ws3c{word-spacing:16.632000px;}
.ws78{word-spacing:16.800000px;}
.ws73{word-spacing:17.052000px;}
.ws77{word-spacing:17.094000px;}
.ws60{word-spacing:17.598000px;}
.ws4c{word-spacing:18.144000px;}
.ws65{word-spacing:18.606000px;}
.ws1a{word-spacing:19.008000px;}
.ws38{word-spacing:19.116000px;}
.ws4e{word-spacing:19.320000px;}
.ws15{word-spacing:20.574000px;}
.ws1e{word-spacing:21.384000px;}
.ws79{word-spacing:22.890000px;}
.ws35{word-spacing:23.598000px;}
.ws30{word-spacing:23.922000px;}
.ws1b{word-spacing:24.678000px;}
.ws75{word-spacing:24.696000px;}
.ws72{word-spacing:24.948000px;}
.ws2c{word-spacing:25.164000px;}
.ws20{word-spacing:25.218000px;}
.ws51{word-spacing:26.166000px;}
.ws17{word-spacing:26.190000px;}
.ws7d{word-spacing:27.258000px;}
.ws3d{word-spacing:27.702000px;}
.ws5c{word-spacing:29.148000px;}
.ws39{word-spacing:29.322000px;}
.ws74{word-spacing:30.030000px;}
.ws45{word-spacing:30.456000px;}
.ws53{word-spacing:30.534000px;}
.ws3a{word-spacing:30.888000px;}
.ws7b{word-spacing:30.912000px;}
.ws40{word-spacing:31.428000px;}
.wsd{word-spacing:34.080000px;}
.ws27{word-spacing:35.208000px;}
.ws63{word-spacing:35.658000px;}
.ws31{word-spacing:50.922000px;}
.ws21{word-spacing:54.540000px;}
.ws37{word-spacing:55.458000px;}
.ws3f{word-spacing:1129.358400px;}
.wsf{word-spacing:1189.104600px;}
._4c{margin-left:-70.416600px;}
._38{margin-left:-69.336600px;}
._44{margin-left:-65.718600px;}
._40{margin-left:-49.992360px;}
._23{margin-left:-47.596560px;}
._4f{margin-left:-45.573600px;}
._4d{margin-left:-44.266800px;}
._4e{margin-left:-42.444600px;}
._32{margin-left:-40.759200px;}
._43{margin-left:-38.664600px;}
._53{margin-left:-37.449240px;}
._2f{margin-left:-35.396088px;}
._36{margin-left:-33.510240px;}
._35{margin-left:-30.684600px;}
._30{margin-left:-29.106600px;}
._4b{margin-left:-28.056240px;}
._3f{margin-left:-26.995560px;}
._51{margin-left:-24.712800px;}
._a{margin-left:-23.579400px;}
._21{margin-left:-22.100280px;}
._29{margin-left:-20.545200px;}
._46{margin-left:-19.075200px;}
._22{margin-left:-17.196600px;}
._33{margin-left:-15.899640px;}
._c{margin-left:-14.828400px;}
._f{margin-left:-13.729200px;}
._20{margin-left:-12.455160px;}
._52{margin-left:-11.106720px;}
._47{margin-left:-8.904108px;}
._1b{margin-left:-7.772856px;}
._7{margin-left:-6.260400px;}
._b{margin-left:-4.696200px;}
._8{margin-left:-3.425760px;}
._5{margin-left:-2.315520px;}
._0{margin-left:-1.010880px;}
._3{width:1.082880px;}
._6{width:2.660160px;}
._17{width:3.768000px;}
._14{width:4.944000px;}
._12{width:5.953920px;}
._13{width:6.979800px;}
._10{width:8.064000px;}
._11{width:9.091080px;}
._d{width:10.449600px;}
._e{width:12.060480px;}
._28{width:13.786200px;}
._16{width:15.382200px;}
._15{width:16.902600px;}
._26{width:18.150120px;}
._1c{width:19.421760px;}
._2d{width:20.422080px;}
._1a{width:21.468480px;}
._19{width:22.654080px;}
._1e{width:24.456000px;}
._1d{width:25.949400px;}
._1f{width:27.209400px;}
._2b{width:28.323000px;}
._18{width:29.428800px;}
._2a{width:30.439800px;}
._24{width:31.660800px;}
._2c{width:33.033720px;}
._2{width:34.202880px;}
._1{width:35.280000px;}
._27{width:36.478800px;}
._2e{width:37.687320px;}
._31{width:38.988000px;}
._37{width:40.260600px;}
._45{width:41.279400px;}
._3b{width:42.453720px;}
._25{width:43.788600px;}
._3d{width:45.404640px;}
._3c{width:46.479960px;}
._4a{width:47.992320px;}
._42{width:49.329000px;}
._34{width:50.770800px;}
._56{width:51.804120px;}
._50{width:52.925400px;}
._55{width:56.884800px;}
._49{width:60.399000px;}
._48{width:61.425000px;}
._3e{width:64.380960px;}
._3a{width:97.821000px;}
._5a{width:245.160480px;}
._39{width:628.627200px;}
._41{width:725.146200px;}
._5b{width:744.933600px;}
._54{width:837.432000px;}
._57{width:1144.169400px;}
._59{width:1504.479600px;}
._4{width:1707.792000px;}
._58{width:1837.425600px;}
._9{width:2055.226920px;}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(35,31,32);}
.fc5{color:rgb(31,63,141);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(237,213,209);}
.fc0{color:rgb(0,0,10);}
.fse{font-size:24.486000px;}
.fsb{font-size:27.984000px;}
.fsc{font-size:31.482000px;}
.fsd{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:48.972000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:120.240000px;}
.fs2{font-size:156.240000px;}
.fs6{font-size:216.000000px;}
.y46{bottom:-5.220000px;}
.y0{bottom:0.000000px;}
.y14{bottom:2.700000px;}
.y16{bottom:4.140000px;}
.y1b{bottom:4.500000px;}
.y11{bottom:5.400000px;}
.y26{bottom:5.760000px;}
.y45{bottom:10.260000px;}
.y1f{bottom:14.040000px;}
.y13{bottom:16.200000px;}
.y1a{bottom:25.200000px;}
.y44{bottom:25.740000px;}
.y25{bottom:26.640000px;}
.y10{bottom:32.400000px;}
.y43{bottom:40.860000px;}
.y47{bottom:43.651950px;}
.y19{bottom:45.900000px;}
.y24{bottom:47.340000px;}
.y27{bottom:54.360000px;}
.y23{bottom:68.040000px;}
.y42{bottom:74.520000px;}
.y14b{bottom:80.688900px;}
.y8f{bottom:83.340000px;}
.y10b{bottom:88.418700px;}
.yd6{bottom:88.688250px;}
.y22{bottom:88.740000px;}
.y174{bottom:93.706950px;}
.y14a{bottom:96.888900px;}
.y8e{bottom:97.740000px;}
.y1da{bottom:98.371650px;}
.y22f{bottom:103.091250px;}
.y189{bottom:103.826700px;}
.y10a{bottom:104.618700px;}
.yd5{bottom:104.888250px;}
.y21{bottom:109.440000px;}
.y173{bottom:109.906950px;}
.y1d9{bottom:110.971650px;}
.y8d{bottom:112.140000px;}
.y149{bottom:113.088900px;}
.y22e{bottom:115.691250px;}
.y188{bottom:120.026700px;}
.y109{bottom:120.818700px;}
.yd4{bottom:121.088250px;}
.ye0{bottom:121.088400px;}
.y24d{bottom:121.345500px;}
.y1d8{bottom:123.571500px;}
.y172{bottom:126.106950px;}
.y8c{bottom:126.540000px;}
.y22d{bottom:128.291250px;}
.y148{bottom:129.288900px;}
.y24c{bottom:135.745500px;}
.y1d7{bottom:136.171650px;}
.y187{bottom:136.226700px;}
.y108{bottom:137.018700px;}
.yd3{bottom:137.288250px;}
.y22c{bottom:140.891250px;}
.y8b{bottom:140.940000px;}
.y171{bottom:142.306950px;}
.y147{bottom:145.488900px;}
.y1d6{bottom:148.771500px;}
.y24b{bottom:150.145500px;}
.y186{bottom:152.426700px;}
.y107{bottom:153.218700px;}
.yd2{bottom:153.488250px;}
.y22b{bottom:153.491250px;}
.y8a{bottom:155.340000px;}
.y170{bottom:158.506950px;}
.y1d5{bottom:161.371650px;}
.y146{bottom:161.688900px;}
.y22a{bottom:166.091250px;}
.y185{bottom:168.626700px;}
.y106{bottom:169.418700px;}
.yd1{bottom:169.688250px;}
.y89{bottom:169.740000px;}
.y1d4{bottom:173.971650px;}
.y16f{bottom:174.706950px;}
.y145{bottom:177.888900px;}
.y229{bottom:178.691250px;}
.y184{bottom:184.826700px;}
.y105{bottom:185.618700px;}
.yd0{bottom:185.888250px;}
.ydf{bottom:185.888400px;}
.y1d3{bottom:186.571500px;}
.y259{bottom:186.810600px;}
.y16e{bottom:190.906950px;}
.y228{bottom:191.291250px;}
.y144{bottom:194.088900px;}
.y1d2{bottom:199.171650px;}
.y183{bottom:201.026700px;}
.y258{bottom:201.210600px;}
.y104{bottom:201.818700px;}
.ycf{bottom:202.088250px;}
.yde{bottom:202.088400px;}
.y84{bottom:203.798850px;}
.y83{bottom:203.843400px;}
.y227{bottom:203.891250px;}
.y16d{bottom:207.106950px;}
.y143{bottom:210.288900px;}
.y1d1{bottom:211.771500px;}
.y257{bottom:215.610600px;}
.y226{bottom:216.491250px;}
.y182{bottom:217.226700px;}
.y103{bottom:218.018700px;}
.yce{bottom:218.288250px;}
.y20{bottom:223.050000px;}
.y16c{bottom:223.306950px;}
.y1d0{bottom:224.371650px;}
.y142{bottom:226.488900px;}
.y225{bottom:229.091250px;}
.y256{bottom:230.010450px;}
.y181{bottom:233.426700px;}
.y102{bottom:234.218700px;}
.ycd{bottom:234.488250px;}
.y1cf{bottom:236.971650px;}
.y88{bottom:238.688100px;}
.y16b{bottom:239.506950px;}
.y224{bottom:241.691250px;}
.y141{bottom:242.688900px;}
.y255{bottom:244.410600px;}
.y1ce{bottom:249.571500px;}
.y180{bottom:249.626700px;}
.y101{bottom:250.418700px;}
.ycc{bottom:250.688250px;}
.y87{bottom:253.088100px;}
.y223{bottom:254.291250px;}
.y16a{bottom:255.706950px;}
.y254{bottom:258.810450px;}
.y140{bottom:258.888900px;}
.y1cd{bottom:262.171650px;}
.y17f{bottom:265.826700px;}
.y100{bottom:266.618700px;}
.ycb{bottom:266.888250px;}
.ydd{bottom:266.888400px;}
.y222{bottom:266.891250px;}
.y86{bottom:267.488100px;}
.y169{bottom:271.906950px;}
.y253{bottom:273.210600px;}
.y1cc{bottom:274.771500px;}
.y13f{bottom:275.088900px;}
.y221{bottom:279.491250px;}
.y17e{bottom:282.026700px;}
.yff{bottom:282.818700px;}
.yca{bottom:283.088250px;}
.ydc{bottom:283.088400px;}
.y1cb{bottom:287.371650px;}
.y252{bottom:287.610600px;}
.y168{bottom:288.106950px;}
.y13e{bottom:291.288900px;}
.y220{bottom:292.091250px;}
.y17d{bottom:298.226700px;}
.yfe{bottom:299.018700px;}
.yc9{bottom:299.288250px;}
.y1ca{bottom:299.971650px;}
.y85{bottom:300.483900px;}
.y25b{bottom:302.010450px;}
.y251{bottom:302.010600px;}
.y167{bottom:304.306950px;}
.y21f{bottom:304.691250px;}
.y13d{bottom:307.488900px;}
.y1c9{bottom:312.571500px;}
.y17c{bottom:314.426700px;}
.yfd{bottom:315.218700px;}
.yc8{bottom:315.488250px;}
.y250{bottom:316.410600px;}
.y21e{bottom:317.291250px;}
.y166{bottom:320.506950px;}
.y13c{bottom:323.688900px;}
.y1c8{bottom:325.171650px;}
.y21d{bottom:329.891250px;}
.y17b{bottom:330.626700px;}
.y25a{bottom:330.810450px;}
.y24f{bottom:330.810600px;}
.yfc{bottom:331.418700px;}
.yc7{bottom:331.688250px;}
.y79{bottom:332.668350px;}
.y165{bottom:336.706950px;}
.y1c7{bottom:337.771500px;}
.y13b{bottom:339.888900px;}
.y21c{bottom:342.491250px;}
.y24e{bottom:345.210600px;}
.y17a{bottom:346.826700px;}
.y78{bottom:347.068350px;}
.yfb{bottom:347.618700px;}
.yc6{bottom:347.888250px;}
.ydb{bottom:347.888400px;}
.y1c6{bottom:350.371650px;}
.y176{bottom:352.906950px;}
.y21b{bottom:355.091250px;}
.y13a{bottom:356.088900px;}
.y77{bottom:361.468350px;}
.y1c5{bottom:362.971500px;}
.y179{bottom:363.026700px;}
.yfa{bottom:363.818700px;}
.yc5{bottom:364.088250px;}
.yda{bottom:364.088400px;}
.y21a{bottom:367.691250px;}
.y175{bottom:369.106950px;}
.y24a{bottom:372.121650px;}
.y1c4{bottom:375.571500px;}
.y76{bottom:375.868350px;}
.y178{bottom:379.226700px;}
.yf9{bottom:380.018700px;}
.yc4{bottom:380.288250px;}
.y219{bottom:380.291250px;}
.y164{bottom:385.306950px;}
.y1c3{bottom:388.171650px;}
.y139{bottom:390.150000px;}
.y75{bottom:390.268500px;}
.y218{bottom:392.891250px;}
.yf8{bottom:396.218700px;}
.yc3{bottom:396.488250px;}
.yd9{bottom:396.488400px;}
.y1c2{bottom:400.771650px;}
.y163{bottom:401.506950px;}
.y249{bottom:403.959750px;}
.y74{bottom:404.668350px;}
.y217{bottom:405.491250px;}
.yf7{bottom:412.418700px;}
.yc2{bottom:412.688250px;}
.y1c1{bottom:413.371650px;}
.y177{bottom:414.829350px;}
.y162{bottom:417.706950px;}
.y216{bottom:418.091250px;}
.y73{bottom:419.068350px;}
.y1c0{bottom:425.971500px;}
.y138{bottom:426.721200px;}
.yf6{bottom:428.618700px;}
.yc1{bottom:428.888250px;}
.y215{bottom:430.691250px;}
.y72{bottom:433.468350px;}
.y248{bottom:433.871700px;}
.y161{bottom:433.906950px;}
.y1bf{bottom:438.571500px;}
.y137{bottom:442.921200px;}
.y214{bottom:443.291250px;}
.yf5{bottom:444.818700px;}
.yc0{bottom:445.088250px;}
.yd8{bottom:445.088400px;}
.y71{bottom:447.868350px;}
.y160{bottom:450.106950px;}
.y1be{bottom:451.171650px;}
.y213{bottom:455.891250px;}
.y136{bottom:459.121200px;}
.yf4{bottom:461.018700px;}
.ybf{bottom:461.288250px;}
.y70{bottom:462.268500px;}
.y1bd{bottom:463.771650px;}
.y247{bottom:464.623500px;}
.y15f{bottom:466.306950px;}
.y212{bottom:468.491250px;}
.y82{bottom:473.578650px;}
.y135{bottom:475.321200px;}
.y1bc{bottom:476.371650px;}
.y6f{bottom:476.668350px;}
.yf3{bottom:477.218700px;}
.ybe{bottom:477.488250px;}
.yd7{bottom:477.488400px;}
.y240{bottom:478.598400px;}
.y246{bottom:479.023500px;}
.y211{bottom:481.091250px;}
.y15e{bottom:482.506950px;}
.y1bb{bottom:488.971500px;}
.y6e{bottom:491.068350px;}
.y134{bottom:491.521200px;}
.y23f{bottom:492.998400px;}
.yf2{bottom:493.418700px;}
.y245{bottom:493.423500px;}
.ybd{bottom:493.688250px;}
.y210{bottom:493.691250px;}
.y15d{bottom:498.706950px;}
.y1ba{bottom:501.571500px;}
.y6d{bottom:505.468350px;}
.y20f{bottom:506.291250px;}
.y23e{bottom:507.398400px;}
.y133{bottom:507.721200px;}
.y244{bottom:507.823500px;}
.yf1{bottom:509.618700px;}
.y1b9{bottom:514.171650px;}
.y15c{bottom:514.906950px;}
.y81{bottom:516.778650px;}
.y20e{bottom:518.891250px;}
.y6c{bottom:519.868350px;}
.y23d{bottom:521.798250px;}
.y243{bottom:522.223500px;}
.y132{bottom:523.921200px;}
.yf0{bottom:525.818700px;}
.y1b8{bottom:526.771650px;}
.y15b{bottom:531.106950px;}
.y80{bottom:531.178650px;}
.y20d{bottom:531.491250px;}
.y6b{bottom:534.268500px;}
.ybc{bottom:534.439200px;}
.y23c{bottom:536.198250px;}
.y242{bottom:536.623500px;}
.y41{bottom:539.355000px;}
.y1b7{bottom:539.371650px;}
.y131{bottom:540.121200px;}
.yef{bottom:542.018700px;}
.y20c{bottom:544.091250px;}
.y7f{bottom:545.578650px;}
.y15a{bottom:547.306950px;}
.y6a{bottom:548.668350px;}
.y23b{bottom:550.598400px;}
.y241{bottom:551.023500px;}
.y1b6{bottom:551.971500px;}
.y130{bottom:556.321200px;}
.y20b{bottom:556.691250px;}
.yee{bottom:558.218700px;}
.y7e{bottom:559.978650px;}
.y40{bottom:560.415000px;}
.y69{bottom:563.068350px;}
.y159{bottom:563.506950px;}
.y1b5{bottom:564.571500px;}
.y20a{bottom:569.291250px;}
.y12f{bottom:572.521200px;}
.y1d{bottom:573.015000px;}
.y7d{bottom:574.378650px;}
.yed{bottom:574.418700px;}
.ya8{bottom:575.061150px;}
.y1b4{bottom:577.171650px;}
.y68{bottom:577.468350px;}
.y158{bottom:579.706950px;}
.y3f{bottom:581.115000px;}
.y209{bottom:581.891250px;}
.y23a{bottom:584.137800px;}
.y12e{bottom:588.721200px;}
.y7c{bottom:588.778650px;}
.y1b3{bottom:589.771650px;}
.yec{bottom:590.618700px;}
.ya7{bottom:591.261300px;}
.y67{bottom:591.868350px;}
.y1c{bottom:593.715000px;}
.y208{bottom:594.491250px;}
.y157{bottom:595.906950px;}
.y3e{bottom:601.815000px;}
.y1b2{bottom:602.371650px;}
.y7b{bottom:603.178650px;}
.y12d{bottom:604.921200px;}
.y66{bottom:606.268500px;}
.yeb{bottom:606.818700px;}
.y207{bottom:607.091250px;}
.ya6{bottom:607.461300px;}
.y156{bottom:612.106950px;}
.y18{bottom:614.415000px;}
.y1b1{bottom:614.971500px;}
.y239{bottom:615.138450px;}
.y7a{bottom:617.578650px;}
.y206{bottom:619.691250px;}
.y65{bottom:620.668350px;}
.y12c{bottom:621.121200px;}
.y3d{bottom:622.515000px;}
.yea{bottom:623.018700px;}
.ya5{bottom:623.661300px;}
.y1b0{bottom:627.571500px;}
.y155{bottom:628.306950px;}
.y238{bottom:629.538450px;}
.y205{bottom:632.291250px;}
.y64{bottom:635.068350px;}
.y12b{bottom:637.321200px;}
.ye9{bottom:639.218700px;}
.ya4{bottom:639.861300px;}
.y1af{bottom:640.171650px;}
.y237{bottom:643.938450px;}
.y154{bottom:644.506950px;}
.y204{bottom:644.891250px;}
.y63{bottom:649.468350px;}
.y3c{bottom:652.215000px;}
.y1ae{bottom:652.771650px;}
.y12a{bottom:653.521200px;}
.ye8{bottom:655.418700px;}
.ya3{bottom:656.061150px;}
.y5d{bottom:656.113800px;}
.y203{bottom:657.491250px;}
.y236{bottom:658.338450px;}
.y153{bottom:660.706950px;}
.y62{bottom:663.868350px;}
.y1ad{bottom:665.371650px;}
.y129{bottom:669.721200px;}
.y202{bottom:670.091250px;}
.ye7{bottom:671.618700px;}
.ya2{bottom:672.261300px;}
.y235{bottom:672.738450px;}
.y152{bottom:676.906950px;}
.y1ac{bottom:677.971500px;}
.y61{bottom:678.268500px;}
.y3b{bottom:681.945000px;}
.y201{bottom:682.691250px;}
.y17{bottom:684.825000px;}
.y128{bottom:685.921200px;}
.y234{bottom:687.138450px;}
.ye6{bottom:687.818700px;}
.ya1{bottom:688.461300px;}
.y1ab{bottom:690.571500px;}
.y60{bottom:692.668350px;}
.y151{bottom:693.106950px;}
.y200{bottom:695.291250px;}
.y233{bottom:701.538450px;}
.y127{bottom:702.121200px;}
.y1aa{bottom:703.171650px;}
.ye5{bottom:704.018700px;}
.ya0{bottom:704.661300px;}
.y5f{bottom:707.068350px;}
.y1ff{bottom:707.891250px;}
.y150{bottom:709.306950px;}
.y3a{bottom:711.645000px;}
.y1a9{bottom:715.771650px;}
.y232{bottom:715.938450px;}
.y126{bottom:718.321200px;}
.ye4{bottom:720.218700px;}
.y15{bottom:720.465000px;}
.y1fe{bottom:720.491250px;}
.y9f{bottom:720.861300px;}
.y5e{bottom:721.468350px;}
.y14f{bottom:725.506950px;}
.y1a8{bottom:728.371650px;}
.y231{bottom:730.338450px;}
.y1fd{bottom:733.091250px;}
.ye3{bottom:736.418700px;}
.y1a7{bottom:740.971500px;}
.y14e{bottom:741.706950px;}
.y1fc{bottom:745.691250px;}
.y39{bottom:748.725000px;}
.y12{bottom:749.445000px;}
.ye2{bottom:752.618700px;}
.y125{bottom:753.014400px;}
.y1a6{bottom:753.571500px;}
.y9e{bottom:753.941400px;}
.y5b{bottom:755.297550px;}
.y5a{bottom:755.342100px;}
.y14d{bottom:757.906950px;}
.y1fb{bottom:758.291250px;}
.y230{bottom:763.677150px;}
.y1a5{bottom:766.171650px;}
.ye1{bottom:768.818700px;}
.y9d{bottom:770.141400px;}
.y1fa{bottom:770.891250px;}
.y14c{bottom:774.106950px;}
.y1a4{bottom:778.771500px;}
.y1f9{bottom:783.491250px;}
.yf{bottom:785.085000px;}
.y124{bottom:790.306950px;}
.y1a3{bottom:791.371650px;}
.y1f8{bottom:796.091250px;}
.y10d{bottom:797.871600px;}
.y59{bottom:798.583950px;}
.y1a2{bottom:803.971650px;}
.y91{bottom:804.728550px;}
.y123{bottom:806.506950px;}
.y1f7{bottom:808.691250px;}
.y10c{bottom:812.271450px;}
.y38{bottom:812.445000px;}
.y58{bottom:814.783950px;}
.y1a1{bottom:816.571500px;}
.y90{bottom:819.128400px;}
.y1f6{bottom:821.291250px;}
.y122{bottom:822.706950px;}
.y1a0{bottom:829.171650px;}
.y37{bottom:833.145000px;}
.y1f5{bottom:833.891250px;}
.y57{bottom:838.184100px;}
.y121{bottom:838.906950px;}
.y19f{bottom:841.771500px;}
.y1f4{bottom:846.491250px;}
.ye{bottom:847.545000px;}
.y93{bottom:853.015500px;}
.y36{bottom:853.485000px;}
.y19e{bottom:854.371650px;}
.y120{bottom:855.106950px;}
.y1f3{bottom:859.091250px;}
.y56{bottom:861.584100px;}
.y19d{bottom:866.971650px;}
.yd{bottom:868.605000px;}
.y11f{bottom:871.306950px;}
.y1f2{bottom:871.691250px;}
.y35{bottom:874.185000px;}
.y19c{bottom:879.571500px;}
.y55{bottom:884.084100px;}
.y1f1{bottom:884.291250px;}
.y11e{bottom:887.506950px;}
.ybb{bottom:888.599250px;}
.y19b{bottom:892.171650px;}
.yc{bottom:892.725000px;}
.y34{bottom:894.885000px;}
.y1f0{bottom:896.891250px;}
.yba{bottom:902.999250px;}
.y11d{bottom:903.706950px;}
.y19a{bottom:904.771500px;}
.y54{bottom:906.584100px;}
.y1ef{bottom:909.491250px;}
.y33{bottom:915.630000px;}
.yb{bottom:916.710000px;}
.y199{bottom:917.371500px;}
.yb9{bottom:917.399250px;}
.y11c{bottom:919.906950px;}
.y1ee{bottom:922.091250px;}
.y198{bottom:929.971500px;}
.yb8{bottom:931.799250px;}
.y1ed{bottom:934.691250px;}
.y11b{bottom:936.106950px;}
.ya{bottom:937.050000px;}
.y197{bottom:942.571500px;}
.y53{bottom:945.284100px;}
.y32{bottom:945.690000px;}
.yb7{bottom:946.199100px;}
.y1ec{bottom:947.291250px;}
.y11a{bottom:952.306950px;}
.y196{bottom:955.171500px;}
.y9{bottom:958.110000px;}
.y1eb{bottom:959.891100px;}
.yb6{bottom:960.599100px;}
.y52{bottom:961.484100px;}
.y9c{bottom:962.602350px;}
.y195{bottom:967.771500px;}
.y119{bottom:968.507100px;}
.y1ea{bottom:972.491250px;}
.yb5{bottom:974.999100px;}
.y31{bottom:975.390000px;}
.y8{bottom:978.810000px;}
.y194{bottom:980.371500px;}
.y118{bottom:984.707100px;}
.y51{bottom:984.884100px;}
.y1e9{bottom:985.091100px;}
.yb4{bottom:989.399100px;}
.y193{bottom:992.971500px;}
.y30{bottom:996.090000px;}
.y1e8{bottom:997.691100px;}
.y7{bottom:999.510000px;}
.y117{bottom:1000.907100px;}
.yb3{bottom:1003.799100px;}
.y192{bottom:1005.571500px;}
.y9b{bottom:1005.802350px;}
.y50{bottom:1008.284100px;}
.y1e7{bottom:1010.291100px;}
.y2f{bottom:1016.790000px;}
.y116{bottom:1017.107100px;}
.y191{bottom:1018.171500px;}
.yb2{bottom:1018.199100px;}
.y9a{bottom:1020.202350px;}
.y6{bottom:1020.210000px;}
.y1e6{bottom:1022.891100px;}
.y190{bottom:1030.771500px;}
.y4f{bottom:1030.784100px;}
.yb1{bottom:1032.599100px;}
.y115{bottom:1033.307100px;}
.y99{bottom:1034.602350px;}
.y1e5{bottom:1035.491250px;}
.y2e{bottom:1037.490000px;}
.y18f{bottom:1043.371500px;}
.y5{bottom:1044.870000px;}
.yb0{bottom:1046.999100px;}
.y1e4{bottom:1048.091100px;}
.y98{bottom:1049.002200px;}
.y114{bottom:1049.507100px;}
.y4e{bottom:1053.284100px;}
.y18e{bottom:1055.971500px;}
.y2d{bottom:1058.190000px;}
.y1e3{bottom:1060.691100px;}
.yaf{bottom:1061.399100px;}
.y97{bottom:1063.402350px;}
.y113{bottom:1065.707100px;}
.y18d{bottom:1068.571500px;}
.y1e2{bottom:1073.291100px;}
.yae{bottom:1075.799100px;}
.y96{bottom:1077.802350px;}
.y2c{bottom:1078.890000px;}
.y18c{bottom:1081.171500px;}
.y112{bottom:1081.907100px;}
.y4{bottom:1085.730000px;}
.y1e1{bottom:1085.891100px;}
.yad{bottom:1090.199100px;}
.y95{bottom:1092.202350px;}
.y18b{bottom:1093.771500px;}
.y111{bottom:1098.107100px;}
.y1e0{bottom:1098.491250px;}
.y2b{bottom:1099.590000px;}
.yac{bottom:1104.599100px;}
.y18a{bottom:1106.371500px;}
.y3{bottom:1106.430000px;}
.y94{bottom:1106.602350px;}
.y4d{bottom:1108.184100px;}
.y1df{bottom:1111.091100px;}
.y110{bottom:1114.307100px;}
.yab{bottom:1118.999100px;}
.y2a{bottom:1120.290000px;}
.y1de{bottom:1123.691100px;}
.y4c{bottom:1124.384100px;}
.y2{bottom:1127.130000px;}
.y10f{bottom:1130.507100px;}
.yaa{bottom:1133.399100px;}
.y1dd{bottom:1136.291100px;}
.y1db{bottom:1140.108900px;}
.y92{bottom:1140.838200px;}
.y29{bottom:1140.990000px;}
.y10e{bottom:1146.707100px;}
.ya9{bottom:1147.799100px;}
.y1dc{bottom:1148.891100px;}
.y1{bottom:1150.020000px;}
.y28{bottom:1161.720000px;}
.y1e{bottom:1163.700000px;}
.y49{bottom:1186.786650px;}
.y4b{bottom:1187.536650px;}
.y48{bottom:1202.986650px;}
.y4a{bottom:1203.736650px;}
.y5c{bottom:1221.064950px;}
.hb{height:20.700000px;}
.h9{height:27.000000px;}
.h25{height:30.618164px;}
.h11{height:33.494766px;}
.hf{height:34.200000px;}
.h1f{height:34.945312px;}
.h20{height:34.992188px;}
.h21{height:35.156250px;}
.h24{height:37.221680px;}
.h16{height:37.494141px;}
.h1c{height:39.313477px;}
.h19{height:39.339844px;}
.h18{height:39.366211px;}
.h1a{height:39.550781px;}
.h23{height:40.931901px;}
.ha{height:41.493516px;}
.h1e{height:42.539062px;}
.h26{height:43.851562px;}
.h14{height:46.696289px;}
.h15{height:47.592773px;}
.h22{height:47.856445px;}
.he{height:48.761719px;}
.h1d{height:49.333008px;}
.h3{height:49.992188px;}
.h13{height:53.460000px;}
.h8{height:54.000000px;}
.h6{height:57.051211px;}
.hc{height:62.136000px;}
.h5{height:62.261719px;}
.hd{height:63.457031px;}
.h7{height:72.846211px;}
.h1b{height:76.740234px;}
.h2{height:81.432070px;}
.h4{height:105.812930px;}
.h10{height:126.000000px;}
.h12{height:149.976562px;}
.h17{height:1262.835000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:240.150000px;}
.w4{width:244.470000px;}
.w7{width:401.475000px;}
.w3{width:414.615000px;}
.w2{width:659.085000px;}
.w6{width:668.625000px;}
.w8{width:892.914000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:4.140000px;}
.xe{left:5.580000px;}
.x10{left:10.800000px;}
.x1e{left:85.039350px;}
.x3f{left:101.910900px;}
.x4{left:106.416000px;}
.x1c{left:115.776000px;}
.x7{left:117.036000px;}
.x45{left:127.559100px;}
.x31{left:131.267700px;}
.x3a{left:138.241800px;}
.x32{left:153.630300px;}
.x2a{left:157.322850px;}
.x19{left:159.510000px;}
.x17{left:163.470000px;}
.x29{left:170.078700px;}
.x14{left:172.830000px;}
.x3b{left:177.743100px;}
.x13{left:201.450000px;}
.x39{left:224.149350px;}
.xb{left:232.779000px;}
.x2f{left:240.032250px;}
.x1a{left:248.430000px;}
.x22{left:255.118050px;}
.x20{left:264.717450px;}
.x3{left:274.395000px;}
.x18{left:275.475000px;}
.x9{left:282.459000px;}
.x3c{left:283.819800px;}
.x3d{left:310.720200px;}
.x15{left:314.715000px;}
.x30{left:318.545700px;}
.xa{left:328.209000px;}
.x27{left:332.362200px;}
.x1b{left:334.875000px;}
.x3e{left:338.382300px;}
.x23{left:358.386000px;}
.x12{left:374.475000px;}
.x16{left:394.815000px;}
.x6{left:400.575000px;}
.xc{left:407.949000px;}
.x1d{left:438.948600px;}
.x5{left:445.245000px;}
.x2{left:446.505000px;}
.x2e{left:456.023550px;}
.x2d{left:477.283500px;}
.x35{left:491.699100px;}
.x37{left:495.759750px;}
.x46{left:498.543300px;}
.x41{left:505.170000px;}
.x40{left:507.633900px;}
.x34{left:520.848150px;}
.x33{left:529.503150px;}
.xd{left:531.645000px;}
.x2b{left:535.255800px;}
.x36{left:549.205950px;}
.x21{left:569.737200px;}
.x38{left:580.523550px;}
.xf{left:619.350000px;}
.x1f{left:654.649650px;}
.x2c{left:669.972300px;}
.x42{left:694.504950px;}
.x11{left:696.750000px;}
.x44{left:702.596700px;}
.x43{left:706.273500px;}
.x28{left:722.093700px;}
.x24{left:730.814550px;}
.x1{left:786.750000px;}
.x26{left:837.831600px;}
.x25{left:863.031600px;}
@media print{
.v1{vertical-align:-24.864000pt;}
.v5{vertical-align:-15.984000pt;}
.v2{vertical-align:-14.208000pt;}
.v6{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:12.432000pt;}
.v3{vertical-align:14.208000pt;}
.v4{vertical-align:15.984000pt;}
.ls16{letter-spacing:-1.120000pt;}
.ls17{letter-spacing:-0.746667pt;}
.lsb{letter-spacing:-0.720000pt;}
.ls5{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.528000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.373333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.001493pt;}
.ls8{letter-spacing:0.002027pt;}
.ls7{letter-spacing:0.002560pt;}
.ls13{letter-spacing:0.003008pt;}
.lsa{letter-spacing:0.003285pt;}
.ls14{letter-spacing:0.003296pt;}
.ls12{letter-spacing:0.003541pt;}
.lse{letter-spacing:0.003563pt;}
.ls9{letter-spacing:0.003819pt;}
.ls15{letter-spacing:0.003829pt;}
.lsd{letter-spacing:0.004096pt;}
.lsc{letter-spacing:0.004629pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.440960pt;}
.ls2{letter-spacing:559.466667pt;}
.ws2{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.296000pt;}
.ws29{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.344000pt;}
.ws6{word-spacing:-11.861333pt;}
.ws46{word-spacing:-10.378667pt;}
.ws10{word-spacing:-7.779552pt;}
.ws7{word-spacing:-6.915157pt;}
.ws47{word-spacing:-6.050763pt;}
.ws59{word-spacing:-2.837333pt;}
.ws54{word-spacing:-2.277333pt;}
.ws5e{word-spacing:-2.202667pt;}
.ws52{word-spacing:-1.680000pt;}
.wse{word-spacing:-1.194667pt;}
.ws9{word-spacing:-1.109333pt;}
.ws13{word-spacing:-1.066667pt;}
.ws7e{word-spacing:-1.008000pt;}
.ws22{word-spacing:-0.960000pt;}
.wsa{word-spacing:-0.597333pt;}
.ws6a{word-spacing:-0.448000pt;}
.ws24{word-spacing:-0.384000pt;}
.ws4{word-spacing:-0.048000pt;}
.ws6f{word-spacing:-0.037333pt;}
.ws3{word-spacing:0.000000pt;}
.ws57{word-spacing:0.336000pt;}
.ws6d{word-spacing:0.373333pt;}
.ws49{word-spacing:0.410667pt;}
.ws1f{word-spacing:0.528000pt;}
.ws4a{word-spacing:0.634667pt;}
.ws8{word-spacing:0.720000pt;}
.ws69{word-spacing:0.746667pt;}
.ws64{word-spacing:0.858667pt;}
.ws67{word-spacing:1.120000pt;}
.ws23{word-spacing:1.296000pt;}
.ws42{word-spacing:1.392000pt;}
.ws55{word-spacing:1.493333pt;}
.ws2e{word-spacing:1.632000pt;}
.ws80{word-spacing:2.005333pt;}
.ws3e{word-spacing:2.112000pt;}
.ws4b{word-spacing:2.165333pt;}
.ws6c{word-spacing:2.352000pt;}
.ws66{word-spacing:2.389333pt;}
.ws7f{word-spacing:2.613333pt;}
.ws5b{word-spacing:3.210667pt;}
.wsc{word-spacing:3.456000pt;}
.ws7a{word-spacing:3.658667pt;}
.ws34{word-spacing:3.744000pt;}
.ws14{word-spacing:3.754667pt;}
.ws56{word-spacing:4.890667pt;}
.ws5d{word-spacing:5.040000pt;}
.ws6b{word-spacing:5.525333pt;}
.ws5f{word-spacing:5.674667pt;}
.ws43{word-spacing:6.144000pt;}
.ws32{word-spacing:6.192000pt;}
.ws12{word-spacing:6.314667pt;}
.ws58{word-spacing:6.570667pt;}
.ws68{word-spacing:6.906667pt;}
.ws62{word-spacing:7.392000pt;}
.ws76{word-spacing:7.578667pt;}
.ws5a{word-spacing:8.288000pt;}
.ws1d{word-spacing:8.304000pt;}
.ws18{word-spacing:8.352000pt;}
.wsb{word-spacing:8.362667pt;}
.ws71{word-spacing:8.400000pt;}
.ws28{word-spacing:8.448000pt;}
.ws11{word-spacing:8.661333pt;}
.ws50{word-spacing:9.370667pt;}
.ws70{word-spacing:9.445333pt;}
.ws26{word-spacing:10.752000pt;}
.ws36{word-spacing:11.184000pt;}
.ws2a{word-spacing:11.328000pt;}
.ws44{word-spacing:11.952000pt;}
.ws48{word-spacing:12.096000pt;}
.ws41{word-spacing:12.288000pt;}
.ws16{word-spacing:12.624000pt;}
.ws7c{word-spacing:12.693333pt;}
.ws2b{word-spacing:12.720000pt;}
.ws6e{word-spacing:12.768000pt;}
.ws2f{word-spacing:12.864000pt;}
.ws4f{word-spacing:13.066667pt;}
.ws2d{word-spacing:13.488000pt;}
.ws19{word-spacing:13.584000pt;}
.ws25{word-spacing:13.632000pt;}
.ws1c{word-spacing:13.824000pt;}
.ws61{word-spacing:14.000000pt;}
.ws3b{word-spacing:14.064000pt;}
.ws33{word-spacing:14.400000pt;}
.ws4d{word-spacing:14.448000pt;}
.ws3c{word-spacing:14.784000pt;}
.ws78{word-spacing:14.933333pt;}
.ws73{word-spacing:15.157333pt;}
.ws77{word-spacing:15.194667pt;}
.ws60{word-spacing:15.642667pt;}
.ws4c{word-spacing:16.128000pt;}
.ws65{word-spacing:16.538667pt;}
.ws1a{word-spacing:16.896000pt;}
.ws38{word-spacing:16.992000pt;}
.ws4e{word-spacing:17.173333pt;}
.ws15{word-spacing:18.288000pt;}
.ws1e{word-spacing:19.008000pt;}
.ws79{word-spacing:20.346667pt;}
.ws35{word-spacing:20.976000pt;}
.ws30{word-spacing:21.264000pt;}
.ws1b{word-spacing:21.936000pt;}
.ws75{word-spacing:21.952000pt;}
.ws72{word-spacing:22.176000pt;}
.ws2c{word-spacing:22.368000pt;}
.ws20{word-spacing:22.416000pt;}
.ws51{word-spacing:23.258667pt;}
.ws17{word-spacing:23.280000pt;}
.ws7d{word-spacing:24.229333pt;}
.ws3d{word-spacing:24.624000pt;}
.ws5c{word-spacing:25.909333pt;}
.ws39{word-spacing:26.064000pt;}
.ws74{word-spacing:26.693333pt;}
.ws45{word-spacing:27.072000pt;}
.ws53{word-spacing:27.141333pt;}
.ws3a{word-spacing:27.456000pt;}
.ws7b{word-spacing:27.477333pt;}
.ws40{word-spacing:27.936000pt;}
.wsd{word-spacing:30.293333pt;}
.ws27{word-spacing:31.296000pt;}
.ws63{word-spacing:31.696000pt;}
.ws31{word-spacing:45.264000pt;}
.ws21{word-spacing:48.480000pt;}
.ws37{word-spacing:49.296000pt;}
.ws3f{word-spacing:1003.874133pt;}
.wsf{word-spacing:1056.981867pt;}
._4c{margin-left:-62.592533pt;}
._38{margin-left:-61.632533pt;}
._44{margin-left:-58.416533pt;}
._40{margin-left:-44.437653pt;}
._23{margin-left:-42.308053pt;}
._4f{margin-left:-40.509867pt;}
._4d{margin-left:-39.348267pt;}
._4e{margin-left:-37.728533pt;}
._32{margin-left:-36.230400pt;}
._43{margin-left:-34.368533pt;}
._53{margin-left:-33.288213pt;}
._2f{margin-left:-31.463189pt;}
._36{margin-left:-29.786880pt;}
._35{margin-left:-27.275200pt;}
._30{margin-left:-25.872533pt;}
._4b{margin-left:-24.938880pt;}
._3f{margin-left:-23.996053pt;}
._51{margin-left:-21.966933pt;}
._a{margin-left:-20.959467pt;}
._21{margin-left:-19.644693pt;}
._29{margin-left:-18.262400pt;}
._46{margin-left:-16.955733pt;}
._22{margin-left:-15.285867pt;}
._33{margin-left:-14.133013pt;}
._c{margin-left:-13.180800pt;}
._f{margin-left:-12.203733pt;}
._20{margin-left:-11.071253pt;}
._52{margin-left:-9.872640pt;}
._47{margin-left:-7.914763pt;}
._1b{margin-left:-6.909205pt;}
._7{margin-left:-5.564800pt;}
._b{margin-left:-4.174400pt;}
._8{margin-left:-3.045120pt;}
._5{margin-left:-2.058240pt;}
._0{margin-left:-0.898560pt;}
._3{width:0.962560pt;}
._6{width:2.364587pt;}
._17{width:3.349333pt;}
._14{width:4.394667pt;}
._12{width:5.292373pt;}
._13{width:6.204267pt;}
._10{width:7.168000pt;}
._11{width:8.080960pt;}
._d{width:9.288533pt;}
._e{width:10.720427pt;}
._28{width:12.254400pt;}
._16{width:13.673067pt;}
._15{width:15.024533pt;}
._26{width:16.133440pt;}
._1c{width:17.263787pt;}
._2d{width:18.152960pt;}
._1a{width:19.083093pt;}
._19{width:20.136960pt;}
._1e{width:21.738667pt;}
._1d{width:23.066133pt;}
._1f{width:24.186133pt;}
._2b{width:25.176000pt;}
._18{width:26.158933pt;}
._2a{width:27.057600pt;}
._24{width:28.142933pt;}
._2c{width:29.363307pt;}
._2{width:30.402560pt;}
._1{width:31.360000pt;}
._27{width:32.425600pt;}
._2e{width:33.499840pt;}
._31{width:34.656000pt;}
._37{width:35.787200pt;}
._45{width:36.692800pt;}
._3b{width:37.736640pt;}
._25{width:38.923200pt;}
._3d{width:40.359680pt;}
._3c{width:41.315520pt;}
._4a{width:42.659840pt;}
._42{width:43.848000pt;}
._34{width:45.129600pt;}
._56{width:46.048107pt;}
._50{width:47.044800pt;}
._55{width:50.564267pt;}
._49{width:53.688000pt;}
._48{width:54.600000pt;}
._3e{width:57.227520pt;}
._3a{width:86.952000pt;}
._5a{width:217.920427pt;}
._39{width:558.779733pt;}
._41{width:644.574400pt;}
._5b{width:662.163200pt;}
._54{width:744.384000pt;}
._57{width:1017.039467pt;}
._59{width:1337.315200pt;}
._4{width:1518.037333pt;}
._58{width:1633.267200pt;}
._9{width:1826.868373pt;}
.fse{font-size:21.765333pt;}
.fsb{font-size:24.874667pt;}
.fsc{font-size:27.984000pt;}
.fsd{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:43.530667pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:106.880000pt;}
.fs2{font-size:138.880000pt;}
.fs6{font-size:192.000000pt;}
.y46{bottom:-4.640000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:2.400000pt;}
.y16{bottom:3.680000pt;}
.y1b{bottom:4.000000pt;}
.y11{bottom:4.800000pt;}
.y26{bottom:5.120000pt;}
.y45{bottom:9.120000pt;}
.y1f{bottom:12.480000pt;}
.y13{bottom:14.400000pt;}
.y1a{bottom:22.400000pt;}
.y44{bottom:22.880000pt;}
.y25{bottom:23.680000pt;}
.y10{bottom:28.800000pt;}
.y43{bottom:36.320000pt;}
.y47{bottom:38.801733pt;}
.y19{bottom:40.800000pt;}
.y24{bottom:42.080000pt;}
.y27{bottom:48.320000pt;}
.y23{bottom:60.480000pt;}
.y42{bottom:66.240000pt;}
.y14b{bottom:71.723467pt;}
.y8f{bottom:74.080000pt;}
.y10b{bottom:78.594400pt;}
.yd6{bottom:78.834000pt;}
.y22{bottom:78.880000pt;}
.y174{bottom:83.295067pt;}
.y14a{bottom:86.123467pt;}
.y8e{bottom:86.880000pt;}
.y1da{bottom:87.441467pt;}
.y22f{bottom:91.636667pt;}
.y189{bottom:92.290400pt;}
.y10a{bottom:92.994400pt;}
.yd5{bottom:93.234000pt;}
.y21{bottom:97.280000pt;}
.y173{bottom:97.695067pt;}
.y1d9{bottom:98.641467pt;}
.y8d{bottom:99.680000pt;}
.y149{bottom:100.523467pt;}
.y22e{bottom:102.836667pt;}
.y188{bottom:106.690400pt;}
.y109{bottom:107.394400pt;}
.yd4{bottom:107.634000pt;}
.ye0{bottom:107.634133pt;}
.y24d{bottom:107.862667pt;}
.y1d8{bottom:109.841333pt;}
.y172{bottom:112.095067pt;}
.y8c{bottom:112.480000pt;}
.y22d{bottom:114.036667pt;}
.y148{bottom:114.923467pt;}
.y24c{bottom:120.662667pt;}
.y1d7{bottom:121.041467pt;}
.y187{bottom:121.090400pt;}
.y108{bottom:121.794400pt;}
.yd3{bottom:122.034000pt;}
.y22c{bottom:125.236667pt;}
.y8b{bottom:125.280000pt;}
.y171{bottom:126.495067pt;}
.y147{bottom:129.323467pt;}
.y1d6{bottom:132.241333pt;}
.y24b{bottom:133.462667pt;}
.y186{bottom:135.490400pt;}
.y107{bottom:136.194400pt;}
.yd2{bottom:136.434000pt;}
.y22b{bottom:136.436667pt;}
.y8a{bottom:138.080000pt;}
.y170{bottom:140.895067pt;}
.y1d5{bottom:143.441467pt;}
.y146{bottom:143.723467pt;}
.y22a{bottom:147.636667pt;}
.y185{bottom:149.890400pt;}
.y106{bottom:150.594400pt;}
.yd1{bottom:150.834000pt;}
.y89{bottom:150.880000pt;}
.y1d4{bottom:154.641467pt;}
.y16f{bottom:155.295067pt;}
.y145{bottom:158.123467pt;}
.y229{bottom:158.836667pt;}
.y184{bottom:164.290400pt;}
.y105{bottom:164.994400pt;}
.yd0{bottom:165.234000pt;}
.ydf{bottom:165.234133pt;}
.y1d3{bottom:165.841333pt;}
.y259{bottom:166.053867pt;}
.y16e{bottom:169.695067pt;}
.y228{bottom:170.036667pt;}
.y144{bottom:172.523467pt;}
.y1d2{bottom:177.041467pt;}
.y183{bottom:178.690400pt;}
.y258{bottom:178.853867pt;}
.y104{bottom:179.394400pt;}
.ycf{bottom:179.634000pt;}
.yde{bottom:179.634133pt;}
.y84{bottom:181.154533pt;}
.y83{bottom:181.194133pt;}
.y227{bottom:181.236667pt;}
.y16d{bottom:184.095067pt;}
.y143{bottom:186.923467pt;}
.y1d1{bottom:188.241333pt;}
.y257{bottom:191.653867pt;}
.y226{bottom:192.436667pt;}
.y182{bottom:193.090400pt;}
.y103{bottom:193.794400pt;}
.yce{bottom:194.034000pt;}
.y20{bottom:198.266667pt;}
.y16c{bottom:198.495067pt;}
.y1d0{bottom:199.441467pt;}
.y142{bottom:201.323467pt;}
.y225{bottom:203.636667pt;}
.y256{bottom:204.453733pt;}
.y181{bottom:207.490400pt;}
.y102{bottom:208.194400pt;}
.ycd{bottom:208.434000pt;}
.y1cf{bottom:210.641467pt;}
.y88{bottom:212.167200pt;}
.y16b{bottom:212.895067pt;}
.y224{bottom:214.836667pt;}
.y141{bottom:215.723467pt;}
.y255{bottom:217.253867pt;}
.y1ce{bottom:221.841333pt;}
.y180{bottom:221.890400pt;}
.y101{bottom:222.594400pt;}
.ycc{bottom:222.834000pt;}
.y87{bottom:224.967200pt;}
.y223{bottom:226.036667pt;}
.y16a{bottom:227.295067pt;}
.y254{bottom:230.053733pt;}
.y140{bottom:230.123467pt;}
.y1cd{bottom:233.041467pt;}
.y17f{bottom:236.290400pt;}
.y100{bottom:236.994400pt;}
.ycb{bottom:237.234000pt;}
.ydd{bottom:237.234133pt;}
.y222{bottom:237.236667pt;}
.y86{bottom:237.767200pt;}
.y169{bottom:241.695067pt;}
.y253{bottom:242.853867pt;}
.y1cc{bottom:244.241333pt;}
.y13f{bottom:244.523467pt;}
.y221{bottom:248.436667pt;}
.y17e{bottom:250.690400pt;}
.yff{bottom:251.394400pt;}
.yca{bottom:251.634000pt;}
.ydc{bottom:251.634133pt;}
.y1cb{bottom:255.441467pt;}
.y252{bottom:255.653867pt;}
.y168{bottom:256.095067pt;}
.y13e{bottom:258.923467pt;}
.y220{bottom:259.636667pt;}
.y17d{bottom:265.090400pt;}
.yfe{bottom:265.794400pt;}
.yc9{bottom:266.034000pt;}
.y1ca{bottom:266.641467pt;}
.y85{bottom:267.096800pt;}
.y25b{bottom:268.453733pt;}
.y251{bottom:268.453867pt;}
.y167{bottom:270.495067pt;}
.y21f{bottom:270.836667pt;}
.y13d{bottom:273.323467pt;}
.y1c9{bottom:277.841333pt;}
.y17c{bottom:279.490400pt;}
.yfd{bottom:280.194400pt;}
.yc8{bottom:280.434000pt;}
.y250{bottom:281.253867pt;}
.y21e{bottom:282.036667pt;}
.y166{bottom:284.895067pt;}
.y13c{bottom:287.723467pt;}
.y1c8{bottom:289.041467pt;}
.y21d{bottom:293.236667pt;}
.y17b{bottom:293.890400pt;}
.y25a{bottom:294.053733pt;}
.y24f{bottom:294.053867pt;}
.yfc{bottom:294.594400pt;}
.yc7{bottom:294.834000pt;}
.y79{bottom:295.705200pt;}
.y165{bottom:299.295067pt;}
.y1c7{bottom:300.241333pt;}
.y13b{bottom:302.123467pt;}
.y21c{bottom:304.436667pt;}
.y24e{bottom:306.853867pt;}
.y17a{bottom:308.290400pt;}
.y78{bottom:308.505200pt;}
.yfb{bottom:308.994400pt;}
.yc6{bottom:309.234000pt;}
.ydb{bottom:309.234133pt;}
.y1c6{bottom:311.441467pt;}
.y176{bottom:313.695067pt;}
.y21b{bottom:315.636667pt;}
.y13a{bottom:316.523467pt;}
.y77{bottom:321.305200pt;}
.y1c5{bottom:322.641333pt;}
.y179{bottom:322.690400pt;}
.yfa{bottom:323.394400pt;}
.yc5{bottom:323.634000pt;}
.yda{bottom:323.634133pt;}
.y21a{bottom:326.836667pt;}
.y175{bottom:328.095067pt;}
.y24a{bottom:330.774800pt;}
.y1c4{bottom:333.841333pt;}
.y76{bottom:334.105200pt;}
.y178{bottom:337.090400pt;}
.yf9{bottom:337.794400pt;}
.yc4{bottom:338.034000pt;}
.y219{bottom:338.036667pt;}
.y164{bottom:342.495067pt;}
.y1c3{bottom:345.041467pt;}
.y139{bottom:346.800000pt;}
.y75{bottom:346.905333pt;}
.y218{bottom:349.236667pt;}
.yf8{bottom:352.194400pt;}
.yc3{bottom:352.434000pt;}
.yd9{bottom:352.434133pt;}
.y1c2{bottom:356.241467pt;}
.y163{bottom:356.895067pt;}
.y249{bottom:359.075333pt;}
.y74{bottom:359.705200pt;}
.y217{bottom:360.436667pt;}
.yf7{bottom:366.594400pt;}
.yc2{bottom:366.834000pt;}
.y1c1{bottom:367.441467pt;}
.y177{bottom:368.737200pt;}
.y162{bottom:371.295067pt;}
.y216{bottom:371.636667pt;}
.y73{bottom:372.505200pt;}
.y1c0{bottom:378.641333pt;}
.y138{bottom:379.307733pt;}
.yf6{bottom:380.994400pt;}
.yc1{bottom:381.234000pt;}
.y215{bottom:382.836667pt;}
.y72{bottom:385.305200pt;}
.y248{bottom:385.663733pt;}
.y161{bottom:385.695067pt;}
.y1bf{bottom:389.841333pt;}
.y137{bottom:393.707733pt;}
.y214{bottom:394.036667pt;}
.yf5{bottom:395.394400pt;}
.yc0{bottom:395.634000pt;}
.yd8{bottom:395.634133pt;}
.y71{bottom:398.105200pt;}
.y160{bottom:400.095067pt;}
.y1be{bottom:401.041467pt;}
.y213{bottom:405.236667pt;}
.y136{bottom:408.107733pt;}
.yf4{bottom:409.794400pt;}
.ybf{bottom:410.034000pt;}
.y70{bottom:410.905333pt;}
.y1bd{bottom:412.241467pt;}
.y247{bottom:412.998667pt;}
.y15f{bottom:414.495067pt;}
.y212{bottom:416.436667pt;}
.y82{bottom:420.958800pt;}
.y135{bottom:422.507733pt;}
.y1bc{bottom:423.441467pt;}
.y6f{bottom:423.705200pt;}
.yf3{bottom:424.194400pt;}
.ybe{bottom:424.434000pt;}
.yd7{bottom:424.434133pt;}
.y240{bottom:425.420800pt;}
.y246{bottom:425.798667pt;}
.y211{bottom:427.636667pt;}
.y15e{bottom:428.895067pt;}
.y1bb{bottom:434.641333pt;}
.y6e{bottom:436.505200pt;}
.y134{bottom:436.907733pt;}
.y23f{bottom:438.220800pt;}
.yf2{bottom:438.594400pt;}
.y245{bottom:438.598667pt;}
.ybd{bottom:438.834000pt;}
.y210{bottom:438.836667pt;}
.y15d{bottom:443.295067pt;}
.y1ba{bottom:445.841333pt;}
.y6d{bottom:449.305200pt;}
.y20f{bottom:450.036667pt;}
.y23e{bottom:451.020800pt;}
.y133{bottom:451.307733pt;}
.y244{bottom:451.398667pt;}
.yf1{bottom:452.994400pt;}
.y1b9{bottom:457.041467pt;}
.y15c{bottom:457.695067pt;}
.y81{bottom:459.358800pt;}
.y20e{bottom:461.236667pt;}
.y6c{bottom:462.105200pt;}
.y23d{bottom:463.820667pt;}
.y243{bottom:464.198667pt;}
.y132{bottom:465.707733pt;}
.yf0{bottom:467.394400pt;}
.y1b8{bottom:468.241467pt;}
.y15b{bottom:472.095067pt;}
.y80{bottom:472.158800pt;}
.y20d{bottom:472.436667pt;}
.y6b{bottom:474.905333pt;}
.ybc{bottom:475.057067pt;}
.y23c{bottom:476.620667pt;}
.y242{bottom:476.998667pt;}
.y41{bottom:479.426667pt;}
.y1b7{bottom:479.441467pt;}
.y131{bottom:480.107733pt;}
.yef{bottom:481.794400pt;}
.y20c{bottom:483.636667pt;}
.y7f{bottom:484.958800pt;}
.y15a{bottom:486.495067pt;}
.y6a{bottom:487.705200pt;}
.y23b{bottom:489.420800pt;}
.y241{bottom:489.798667pt;}
.y1b6{bottom:490.641333pt;}
.y130{bottom:494.507733pt;}
.y20b{bottom:494.836667pt;}
.yee{bottom:496.194400pt;}
.y7e{bottom:497.758800pt;}
.y40{bottom:498.146667pt;}
.y69{bottom:500.505200pt;}
.y159{bottom:500.895067pt;}
.y1b5{bottom:501.841333pt;}
.y20a{bottom:506.036667pt;}
.y12f{bottom:508.907733pt;}
.y1d{bottom:509.346667pt;}
.y7d{bottom:510.558800pt;}
.yed{bottom:510.594400pt;}
.ya8{bottom:511.165467pt;}
.y1b4{bottom:513.041467pt;}
.y68{bottom:513.305200pt;}
.y158{bottom:515.295067pt;}
.y3f{bottom:516.546667pt;}
.y209{bottom:517.236667pt;}
.y23a{bottom:519.233600pt;}
.y12e{bottom:523.307733pt;}
.y7c{bottom:523.358800pt;}
.y1b3{bottom:524.241467pt;}
.yec{bottom:524.994400pt;}
.ya7{bottom:525.565600pt;}
.y67{bottom:526.105200pt;}
.y1c{bottom:527.746667pt;}
.y208{bottom:528.436667pt;}
.y157{bottom:529.695067pt;}
.y3e{bottom:534.946667pt;}
.y1b2{bottom:535.441467pt;}
.y7b{bottom:536.158800pt;}
.y12d{bottom:537.707733pt;}
.y66{bottom:538.905333pt;}
.yeb{bottom:539.394400pt;}
.y207{bottom:539.636667pt;}
.ya6{bottom:539.965600pt;}
.y156{bottom:544.095067pt;}
.y18{bottom:546.146667pt;}
.y1b1{bottom:546.641333pt;}
.y239{bottom:546.789733pt;}
.y7a{bottom:548.958800pt;}
.y206{bottom:550.836667pt;}
.y65{bottom:551.705200pt;}
.y12c{bottom:552.107733pt;}
.y3d{bottom:553.346667pt;}
.yea{bottom:553.794400pt;}
.ya5{bottom:554.365600pt;}
.y1b0{bottom:557.841333pt;}
.y155{bottom:558.495067pt;}
.y238{bottom:559.589733pt;}
.y205{bottom:562.036667pt;}
.y64{bottom:564.505200pt;}
.y12b{bottom:566.507733pt;}
.ye9{bottom:568.194400pt;}
.ya4{bottom:568.765600pt;}
.y1af{bottom:569.041467pt;}
.y237{bottom:572.389733pt;}
.y154{bottom:572.895067pt;}
.y204{bottom:573.236667pt;}
.y63{bottom:577.305200pt;}
.y3c{bottom:579.746667pt;}
.y1ae{bottom:580.241467pt;}
.y12a{bottom:580.907733pt;}
.ye8{bottom:582.594400pt;}
.ya3{bottom:583.165467pt;}
.y5d{bottom:583.212267pt;}
.y203{bottom:584.436667pt;}
.y236{bottom:585.189733pt;}
.y153{bottom:587.295067pt;}
.y62{bottom:590.105200pt;}
.y1ad{bottom:591.441467pt;}
.y129{bottom:595.307733pt;}
.y202{bottom:595.636667pt;}
.ye7{bottom:596.994400pt;}
.ya2{bottom:597.565600pt;}
.y235{bottom:597.989733pt;}
.y152{bottom:601.695067pt;}
.y1ac{bottom:602.641333pt;}
.y61{bottom:602.905333pt;}
.y3b{bottom:606.173333pt;}
.y201{bottom:606.836667pt;}
.y17{bottom:608.733333pt;}
.y128{bottom:609.707733pt;}
.y234{bottom:610.789733pt;}
.ye6{bottom:611.394400pt;}
.ya1{bottom:611.965600pt;}
.y1ab{bottom:613.841333pt;}
.y60{bottom:615.705200pt;}
.y151{bottom:616.095067pt;}
.y200{bottom:618.036667pt;}
.y233{bottom:623.589733pt;}
.y127{bottom:624.107733pt;}
.y1aa{bottom:625.041467pt;}
.ye5{bottom:625.794400pt;}
.ya0{bottom:626.365600pt;}
.y5f{bottom:628.505200pt;}
.y1ff{bottom:629.236667pt;}
.y150{bottom:630.495067pt;}
.y3a{bottom:632.573333pt;}
.y1a9{bottom:636.241467pt;}
.y232{bottom:636.389733pt;}
.y126{bottom:638.507733pt;}
.ye4{bottom:640.194400pt;}
.y15{bottom:640.413333pt;}
.y1fe{bottom:640.436667pt;}
.y9f{bottom:640.765600pt;}
.y5e{bottom:641.305200pt;}
.y14f{bottom:644.895067pt;}
.y1a8{bottom:647.441467pt;}
.y231{bottom:649.189733pt;}
.y1fd{bottom:651.636667pt;}
.ye3{bottom:654.594400pt;}
.y1a7{bottom:658.641333pt;}
.y14e{bottom:659.295067pt;}
.y1fc{bottom:662.836667pt;}
.y39{bottom:665.533333pt;}
.y12{bottom:666.173333pt;}
.ye2{bottom:668.994400pt;}
.y125{bottom:669.346133pt;}
.y1a6{bottom:669.841333pt;}
.y9e{bottom:670.170133pt;}
.y5b{bottom:671.375600pt;}
.y5a{bottom:671.415200pt;}
.y14d{bottom:673.695067pt;}
.y1fb{bottom:674.036667pt;}
.y230{bottom:678.824133pt;}
.y1a5{bottom:681.041467pt;}
.ye1{bottom:683.394400pt;}
.y9d{bottom:684.570133pt;}
.y1fa{bottom:685.236667pt;}
.y14c{bottom:688.095067pt;}
.y1a4{bottom:692.241333pt;}
.y1f9{bottom:696.436667pt;}
.yf{bottom:697.853333pt;}
.y124{bottom:702.495067pt;}
.y1a3{bottom:703.441467pt;}
.y1f8{bottom:707.636667pt;}
.y10d{bottom:709.219200pt;}
.y59{bottom:709.852400pt;}
.y1a2{bottom:714.641467pt;}
.y91{bottom:715.314267pt;}
.y123{bottom:716.895067pt;}
.y1f7{bottom:718.836667pt;}
.y10c{bottom:722.019067pt;}
.y38{bottom:722.173333pt;}
.y58{bottom:724.252400pt;}
.y1a1{bottom:725.841333pt;}
.y90{bottom:728.114133pt;}
.y1f6{bottom:730.036667pt;}
.y122{bottom:731.295067pt;}
.y1a0{bottom:737.041467pt;}
.y37{bottom:740.573333pt;}
.y1f5{bottom:741.236667pt;}
.y57{bottom:745.052533pt;}
.y121{bottom:745.695067pt;}
.y19f{bottom:748.241333pt;}
.y1f4{bottom:752.436667pt;}
.ye{bottom:753.373333pt;}
.y93{bottom:758.236000pt;}
.y36{bottom:758.653333pt;}
.y19e{bottom:759.441467pt;}
.y120{bottom:760.095067pt;}
.y1f3{bottom:763.636667pt;}
.y56{bottom:765.852533pt;}
.y19d{bottom:770.641467pt;}
.yd{bottom:772.093333pt;}
.y11f{bottom:774.495067pt;}
.y1f2{bottom:774.836667pt;}
.y35{bottom:777.053333pt;}
.y19c{bottom:781.841333pt;}
.y55{bottom:785.852533pt;}
.y1f1{bottom:786.036667pt;}
.y11e{bottom:788.895067pt;}
.ybb{bottom:789.866000pt;}
.y19b{bottom:793.041467pt;}
.yc{bottom:793.533333pt;}
.y34{bottom:795.453333pt;}
.y1f0{bottom:797.236667pt;}
.yba{bottom:802.666000pt;}
.y11d{bottom:803.295067pt;}
.y19a{bottom:804.241333pt;}
.y54{bottom:805.852533pt;}
.y1ef{bottom:808.436667pt;}
.y33{bottom:813.893333pt;}
.yb{bottom:814.853333pt;}
.y199{bottom:815.441333pt;}
.yb9{bottom:815.466000pt;}
.y11c{bottom:817.695067pt;}
.y1ee{bottom:819.636667pt;}
.y198{bottom:826.641333pt;}
.yb8{bottom:828.266000pt;}
.y1ed{bottom:830.836667pt;}
.y11b{bottom:832.095067pt;}
.ya{bottom:832.933333pt;}
.y197{bottom:837.841333pt;}
.y53{bottom:840.252533pt;}
.y32{bottom:840.613333pt;}
.yb7{bottom:841.065867pt;}
.y1ec{bottom:842.036667pt;}
.y11a{bottom:846.495067pt;}
.y196{bottom:849.041333pt;}
.y9{bottom:851.653333pt;}
.y1eb{bottom:853.236533pt;}
.yb6{bottom:853.865867pt;}
.y52{bottom:854.652533pt;}
.y9c{bottom:855.646533pt;}
.y195{bottom:860.241333pt;}
.y119{bottom:860.895200pt;}
.y1ea{bottom:864.436667pt;}
.yb5{bottom:866.665867pt;}
.y31{bottom:867.013333pt;}
.y8{bottom:870.053333pt;}
.y194{bottom:871.441333pt;}
.y118{bottom:875.295200pt;}
.y51{bottom:875.452533pt;}
.y1e9{bottom:875.636533pt;}
.yb4{bottom:879.465867pt;}
.y193{bottom:882.641333pt;}
.y30{bottom:885.413333pt;}
.y1e8{bottom:886.836533pt;}
.y7{bottom:888.453333pt;}
.y117{bottom:889.695200pt;}
.yb3{bottom:892.265867pt;}
.y192{bottom:893.841333pt;}
.y9b{bottom:894.046533pt;}
.y50{bottom:896.252533pt;}
.y1e7{bottom:898.036533pt;}
.y2f{bottom:903.813333pt;}
.y116{bottom:904.095200pt;}
.y191{bottom:905.041333pt;}
.yb2{bottom:905.065867pt;}
.y9a{bottom:906.846533pt;}
.y6{bottom:906.853333pt;}
.y1e6{bottom:909.236533pt;}
.y190{bottom:916.241333pt;}
.y4f{bottom:916.252533pt;}
.yb1{bottom:917.865867pt;}
.y115{bottom:918.495200pt;}
.y99{bottom:919.646533pt;}
.y1e5{bottom:920.436667pt;}
.y2e{bottom:922.213333pt;}
.y18f{bottom:927.441333pt;}
.y5{bottom:928.773333pt;}
.yb0{bottom:930.665867pt;}
.y1e4{bottom:931.636533pt;}
.y98{bottom:932.446400pt;}
.y114{bottom:932.895200pt;}
.y4e{bottom:936.252533pt;}
.y18e{bottom:938.641333pt;}
.y2d{bottom:940.613333pt;}
.y1e3{bottom:942.836533pt;}
.yaf{bottom:943.465867pt;}
.y97{bottom:945.246533pt;}
.y113{bottom:947.295200pt;}
.y18d{bottom:949.841333pt;}
.y1e2{bottom:954.036533pt;}
.yae{bottom:956.265867pt;}
.y96{bottom:958.046533pt;}
.y2c{bottom:959.013333pt;}
.y18c{bottom:961.041333pt;}
.y112{bottom:961.695200pt;}
.y4{bottom:965.093333pt;}
.y1e1{bottom:965.236533pt;}
.yad{bottom:969.065867pt;}
.y95{bottom:970.846533pt;}
.y18b{bottom:972.241333pt;}
.y111{bottom:976.095200pt;}
.y1e0{bottom:976.436667pt;}
.y2b{bottom:977.413333pt;}
.yac{bottom:981.865867pt;}
.y18a{bottom:983.441333pt;}
.y3{bottom:983.493333pt;}
.y94{bottom:983.646533pt;}
.y4d{bottom:985.052533pt;}
.y1df{bottom:987.636533pt;}
.y110{bottom:990.495200pt;}
.yab{bottom:994.665867pt;}
.y2a{bottom:995.813333pt;}
.y1de{bottom:998.836533pt;}
.y4c{bottom:999.452533pt;}
.y2{bottom:1001.893333pt;}
.y10f{bottom:1004.895200pt;}
.yaa{bottom:1007.465867pt;}
.y1dd{bottom:1010.036533pt;}
.y1db{bottom:1013.430133pt;}
.y92{bottom:1014.078400pt;}
.y29{bottom:1014.213333pt;}
.y10e{bottom:1019.295200pt;}
.ya9{bottom:1020.265867pt;}
.y1dc{bottom:1021.236533pt;}
.y1{bottom:1022.240000pt;}
.y28{bottom:1032.640000pt;}
.y1e{bottom:1034.400000pt;}
.y49{bottom:1054.921467pt;}
.y4b{bottom:1055.588133pt;}
.y48{bottom:1069.321467pt;}
.y4a{bottom:1069.988133pt;}
.y5c{bottom:1085.391067pt;}
.hb{height:18.400000pt;}
.h9{height:24.000000pt;}
.h25{height:27.216146pt;}
.h11{height:29.773125pt;}
.hf{height:30.400000pt;}
.h1f{height:31.062500pt;}
.h20{height:31.104167pt;}
.h21{height:31.250000pt;}
.h24{height:33.085938pt;}
.h16{height:33.328125pt;}
.h1c{height:34.945312pt;}
.h19{height:34.968750pt;}
.h18{height:34.992188pt;}
.h1a{height:35.156250pt;}
.h23{height:36.383912pt;}
.ha{height:36.883125pt;}
.h1e{height:37.812500pt;}
.h26{height:38.979167pt;}
.h14{height:41.507812pt;}
.h15{height:42.304688pt;}
.h22{height:42.539062pt;}
.he{height:43.343750pt;}
.h1d{height:43.851562pt;}
.h3{height:44.437500pt;}
.h13{height:47.520000pt;}
.h8{height:48.000000pt;}
.h6{height:50.712187pt;}
.hc{height:55.232000pt;}
.h5{height:55.343750pt;}
.hd{height:56.406250pt;}
.h7{height:64.752187pt;}
.h1b{height:68.213542pt;}
.h2{height:72.384062pt;}
.h4{height:94.055937pt;}
.h10{height:112.000000pt;}
.h12{height:133.312500pt;}
.h17{height:1122.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:213.466667pt;}
.w4{width:217.306667pt;}
.w7{width:356.866667pt;}
.w3{width:368.546667pt;}
.w2{width:585.853333pt;}
.w6{width:594.333333pt;}
.w8{width:793.701333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:3.680000pt;}
.xe{left:4.960000pt;}
.x10{left:9.600000pt;}
.x1e{left:75.590533pt;}
.x3f{left:90.587467pt;}
.x4{left:94.592000pt;}
.x1c{left:102.912000pt;}
.x7{left:104.032000pt;}
.x45{left:113.385867pt;}
.x31{left:116.682400pt;}
.x3a{left:122.881600pt;}
.x32{left:136.560267pt;}
.x2a{left:139.842533pt;}
.x19{left:141.786667pt;}
.x17{left:145.306667pt;}
.x29{left:151.181067pt;}
.x14{left:153.626667pt;}
.x3b{left:157.993867pt;}
.x13{left:179.066667pt;}
.x39{left:199.243867pt;}
.xb{left:206.914667pt;}
.x2f{left:213.362000pt;}
.x1a{left:220.826667pt;}
.x22{left:226.771600pt;}
.x20{left:235.304400pt;}
.x3{left:243.906667pt;}
.x18{left:244.866667pt;}
.x9{left:251.074667pt;}
.x3c{left:252.284267pt;}
.x3d{left:276.195733pt;}
.x15{left:279.746667pt;}
.x30{left:283.151733pt;}
.xa{left:291.741333pt;}
.x27{left:295.433067pt;}
.x1b{left:297.666667pt;}
.x3e{left:300.784267pt;}
.x23{left:318.565333pt;}
.x12{left:332.866667pt;}
.x16{left:350.946667pt;}
.x6{left:356.066667pt;}
.xc{left:362.621333pt;}
.x1d{left:390.176533pt;}
.x5{left:395.773333pt;}
.x2{left:396.893333pt;}
.x2e{left:405.354267pt;}
.x2d{left:424.252000pt;}
.x35{left:437.065867pt;}
.x37{left:440.675333pt;}
.x46{left:443.149600pt;}
.x41{left:449.040000pt;}
.x40{left:451.230133pt;}
.x34{left:462.976133pt;}
.x33{left:470.669467pt;}
.xd{left:472.573333pt;}
.x2b{left:475.782933pt;}
.x36{left:488.183067pt;}
.x21{left:506.433067pt;}
.x38{left:516.020933pt;}
.xf{left:550.533333pt;}
.x1f{left:581.910800pt;}
.x2c{left:595.530933pt;}
.x42{left:617.337733pt;}
.x11{left:619.333333pt;}
.x44{left:624.530400pt;}
.x43{left:627.798667pt;}
.x28{left:641.861067pt;}
.x24{left:649.612933pt;}
.x1{left:699.333333pt;}
.x26{left:744.739200pt;}
.x25{left:767.139200pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  