
    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_5811d82693b6591749affeb5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_bc2878c2d754f131c6388717.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.739000;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_7abd978964bcc64747820d6b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_ab7df64213eb0f44caa08d0d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_e882138959553f46d090ec5f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3ce940beef043318d904f15a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_99be52d5863b37707e4d00a8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.967285;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_640349902c632156d056feef.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750977;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_4d3805f2f3dea5e1eb1b2e38.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.721000;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_b6714e4ff910cf57f63d7383.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.967285;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_3a9bd77d9c18a06adc412d09.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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_2d2adb3e79a6e7a0fa7a1754.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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_8077a7ef273bae69d67ed0bc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;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:ffe;src:url('chunks/assets/font_137ba5dfe1b81385b42bff2c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.700000;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:fff;src:url('chunks/assets/font_0b8ac8d254f4f50ab009bf9f.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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:ff10;src:url('chunks/assets/font_e549b641a1643ed17e558b6b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.682617;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:ff11;src:url('chunks/assets/font_d976da463bd49cc2b65f9027.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910645;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:ff12;src:url('chunks/assets/font_dc02a69cdf68570bc1fc3e6e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.967285;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:ff13;src:url('chunks/assets/font_b5dfdc3703391904069a7510.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.861816;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:ff14;src:url('chunks/assets/font_5cb19c493becbc1d608e3025.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.893555;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:ff15;src:url('chunks/assets/font_cf4a3f60734aa8df90f4c7b6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.722656;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;}
.m1{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);}
.m2{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:-30.629400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980600px;}
.ls1{letter-spacing:-1.428000px;}
.ls4{letter-spacing:-1.152000px;}
.ls3{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.274104px;}
.ls9{letter-spacing:-0.171315px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.068526px;}
.ls7{letter-spacing:0.137052px;}
.ls0{letter-spacing:0.204000px;}
.lsc{letter-spacing:0.302649px;}
.lse{letter-spacing:0.559200px;}
.lsb{letter-spacing:0.805118px;}
.lsd{letter-spacing:0.960000px;}
.ls6{letter-spacing:25.868565px;}
.ls5{letter-spacing:30.699648px;}
.ls10{letter-spacing:32.175600px;}
.lsf{letter-spacing:40.219800px;}
.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;}
}
.ws43{word-spacing:-60.000000px;}
.ws0{word-spacing:-23.052000px;}
.ws2{word-spacing:-23.040000px;}
.ws98{word-spacing:-15.960000px;}
.ws6f{word-spacing:-15.132450px;}
.ws3{word-spacing:-15.000000px;}
.ws42{word-spacing:-14.085000px;}
.ws1{word-spacing:-13.500000px;}
.ws99{word-spacing:-12.000000px;}
.ws6e{word-spacing:-8.900106px;}
.ws45{word-spacing:-8.565750px;}
.ws54{word-spacing:-7.560000px;}
.ws4e{word-spacing:-4.500000px;}
.ws19{word-spacing:-4.080000px;}
.wse{word-spacing:-3.780000px;}
.wsa7{word-spacing:-3.300000px;}
.ws10{word-spacing:-3.060000px;}
.ws48{word-spacing:-2.940000px;}
.ws7a{word-spacing:-2.880000px;}
.ws21{word-spacing:-2.280000px;}
.ws14{word-spacing:-2.160000px;}
.wsa2{word-spacing:-1.980000px;}
.ws12{word-spacing:-1.860000px;}
.wsab{word-spacing:-1.776000px;}
.ws3b{word-spacing:-1.680000px;}
.ws4b{word-spacing:-1.440000px;}
.wsaf{word-spacing:-1.296000px;}
.ws6{word-spacing:-1.080000px;}
.ws5{word-spacing:-1.020000px;}
.wsa5{word-spacing:-0.960000px;}
.ws13{word-spacing:-0.900000px;}
.ws90{word-spacing:-0.540000px;}
.ws9b{word-spacing:-0.480000px;}
.ws1f{word-spacing:-0.420000px;}
.ws79{word-spacing:-0.360000px;}
.ws97{word-spacing:-0.302649px;}
.ws50{word-spacing:-0.240000px;}
.ws69{word-spacing:-0.137052px;}
.ws6a{word-spacing:-0.068526px;}
.ws72{word-spacing:-0.060000px;}
.ws6d{word-spacing:-0.045000px;}
.ws44{word-spacing:-0.034263px;}
.ws7{word-spacing:0.000000px;}
.ws8e{word-spacing:0.120000px;}
.ws96{word-spacing:0.134186px;}
.ws6b{word-spacing:0.171315px;}
.ws52{word-spacing:0.180000px;}
.ws86{word-spacing:0.240000px;}
.ws6c{word-spacing:0.274104px;}
.ws17{word-spacing:0.360000px;}
.ws8d{word-spacing:0.420000px;}
.wsb5{word-spacing:0.480000px;}
.ws41{word-spacing:0.540000px;}
.ws8c{word-spacing:0.600000px;}
.ws60{word-spacing:0.660000px;}
.ws47{word-spacing:0.840000px;}
.wsac{word-spacing:0.864000px;}
.ws5b{word-spacing:0.900000px;}
.ws40{word-spacing:0.945000px;}
.ws81{word-spacing:1.020000px;}
.ws4{word-spacing:1.080000px;}
.ws5c{word-spacing:1.140000px;}
.ws3c{word-spacing:1.200000px;}
.ws5f{word-spacing:1.260000px;}
.wsb1{word-spacing:1.296000px;}
.ws9a{word-spacing:1.560000px;}
.ws61{word-spacing:1.620000px;}
.ws33{word-spacing:1.740000px;}
.ws32{word-spacing:1.800000px;}
.wsb{word-spacing:1.860000px;}
.ws20{word-spacing:1.920000px;}
.ws38{word-spacing:2.040000px;}
.ws8a{word-spacing:2.160000px;}
.ws4c{word-spacing:2.340000px;}
.ws2e{word-spacing:2.640000px;}
.ws66{word-spacing:2.700000px;}
.ws36{word-spacing:2.760000px;}
.ws3e{word-spacing:2.797200px;}
.ws7d{word-spacing:2.880000px;}
.ws58{word-spacing:3.000000px;}
.wsa6{word-spacing:3.120000px;}
.ws7b{word-spacing:3.240000px;}
.ws1b{word-spacing:3.300000px;}
.ws1e{word-spacing:3.480000px;}
.wsb4{word-spacing:3.504000px;}
.ws3f{word-spacing:3.515400px;}
.ws56{word-spacing:3.540000px;}
.wsf{word-spacing:3.720000px;}
.wsa8{word-spacing:3.888000px;}
.ws1d{word-spacing:4.020000px;}
.ws11{word-spacing:4.080000px;}
.ws8f{word-spacing:4.140000px;}
.ws5a{word-spacing:4.380000px;}
.ws2d{word-spacing:4.440000px;}
.ws7e{word-spacing:4.500000px;}
.ws9f{word-spacing:4.800000px;}
.wsad{word-spacing:4.848000px;}
.ws55{word-spacing:5.160000px;}
.ws22{word-spacing:5.220000px;}
.ws91{word-spacing:5.340000px;}
.wsb0{word-spacing:5.520000px;}
.ws74{word-spacing:5.580000px;}
.ws8b{word-spacing:5.700000px;}
.ws15{word-spacing:5.880000px;}
.ws83{word-spacing:6.180000px;}
.ws67{word-spacing:6.300000px;}
.ws1c{word-spacing:6.480000px;}
.ws73{word-spacing:6.540000px;}
.wsd{word-spacing:6.600000px;}
.ws31{word-spacing:6.720000px;}
.ws24{word-spacing:6.780000px;}
.ws57{word-spacing:6.840000px;}
.wsa1{word-spacing:7.020000px;}
.wsb3{word-spacing:7.056000px;}
.ws16{word-spacing:7.080000px;}
.ws88{word-spacing:7.260000px;}
.ws53{word-spacing:7.440000px;}
.wsa0{word-spacing:7.500000px;}
.ws92{word-spacing:7.680000px;}
.ws51{word-spacing:8.040000px;}
.wsae{word-spacing:8.208000px;}
.ws1a{word-spacing:8.220000px;}
.ws23{word-spacing:8.280000px;}
.ws85{word-spacing:8.460000px;}
.ws3d{word-spacing:8.520000px;}
.ws76{word-spacing:8.760000px;}
.ws77{word-spacing:8.820000px;}
.ws27{word-spacing:8.880000px;}
.ws9{word-spacing:8.940000px;}
.wsaa{word-spacing:9.024000px;}
.ws9e{word-spacing:9.120000px;}
.ws4d{word-spacing:9.660000px;}
.wsa9{word-spacing:9.744000px;}
.wsa3{word-spacing:10.020000px;}
.ws49{word-spacing:10.260000px;}
.wsb2{word-spacing:10.848000px;}
.ws7f{word-spacing:10.860000px;}
.wsc{word-spacing:11.040000px;}
.ws95{word-spacing:11.160000px;}
.ws93{word-spacing:11.340000px;}
.ws5d{word-spacing:11.580000px;}
.ws2b{word-spacing:11.640000px;}
.ws80{word-spacing:11.820000px;}
.ws68{word-spacing:12.120000px;}
.ws34{word-spacing:12.180000px;}
.ws37{word-spacing:12.540000px;}
.ws35{word-spacing:12.720000px;}
.ws5e{word-spacing:13.080000px;}
.wsa4{word-spacing:13.200000px;}
.ws59{word-spacing:13.260000px;}
.ws39{word-spacing:13.320000px;}
.ws78{word-spacing:13.860000px;}
.ws70{word-spacing:14.220000px;}
.ws30{word-spacing:14.400000px;}
.ws62{word-spacing:14.880000px;}
.ws46{word-spacing:14.940000px;}
.ws2a{word-spacing:15.240000px;}
.ws71{word-spacing:15.420000px;}
.ws63{word-spacing:15.900000px;}
.ws2f{word-spacing:16.140000px;}
.ws26{word-spacing:16.920000px;}
.ws75{word-spacing:17.700000px;}
.ws8{word-spacing:17.820000px;}
.ws7c{word-spacing:18.120000px;}
.ws87{word-spacing:18.540000px;}
.ws2c{word-spacing:18.780000px;}
.ws28{word-spacing:19.140000px;}
.ws94{word-spacing:19.620000px;}
.ws65{word-spacing:20.760000px;}
.ws89{word-spacing:20.880000px;}
.ws84{word-spacing:21.480000px;}
.ws18{word-spacing:21.600000px;}
.ws4f{word-spacing:22.260000px;}
.ws25{word-spacing:23.220000px;}
.ws4a{word-spacing:23.280000px;}
.ws9c{word-spacing:23.640000px;}
.ws64{word-spacing:24.060000px;}
.ws9d{word-spacing:26.400000px;}
.ws3a{word-spacing:26.640000px;}
.ws82{word-spacing:26.880000px;}
.wsa{word-spacing:28.260000px;}
.ws29{word-spacing:34.020000px;}
._d{margin-left:-2822.430000px;}
._15{margin-left:-59.795400px;}
._17{margin-left:-47.836200px;}
._a{margin-left:-41.698200px;}
._c{margin-left:-13.933200px;}
._14{margin-left:-12.479335px;}
._4{margin-left:-7.486200px;}
._7{margin-left:-5.669400px;}
._5{margin-left:-4.181400px;}
._2{margin-left:-2.580600px;}
._3{margin-left:-1.009800px;}
._0{width:1.591200px;}
._1{width:3.508800px;}
._b{width:5.254080px;}
._6{width:8.154000px;}
._f{width:11.580000px;}
._e{width:13.188000px;}
._9{width:16.122000px;}
._13{width:34.365789px;}
._16{width:37.039800px;}
._8{width:42.047400px;}
._11{width:103.988205px;}
._12{width:333.173412px;}
._10{width:416.398239px;}
.fc5{color:rgb(145,143,144);}
.fc4{color:transparent;}
.fc3{color:rgb(227,92,28);}
.fc1{color:rgb(228,25,54);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:34.263000px;}
.fsb{font-size:34.980000px;}
.fs5{font-size:37.800000px;}
.fs9{font-size:39.381000px;}
.fs6{font-size:45.000000px;}
.fsc{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:60.529800px;}
.fs8{font-size:67.093200px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.fs0{font-size:102.000000px;}
.y109{bottom:-13.408145px;}
.yb8{bottom:-0.294000px;}
.y0{bottom:0.000000px;}
.y108{bottom:4.100100px;}
.y106{bottom:5.011200px;}
.y10e{bottom:47.491350px;}
.y41{bottom:63.058200px;}
.y40{bottom:75.658200px;}
.y45{bottom:77.089500px;}
.y3f{bottom:88.258200px;}
.yf7{bottom:113.560500px;}
.y62{bottom:113.770350px;}
.y81{bottom:113.780250px;}
.y61{bottom:131.770350px;}
.y80{bottom:131.780250px;}
.y10a{bottom:132.453541px;}
.y107{bottom:135.163200px;}
.y105{bottom:135.892500px;}
.y3e{bottom:138.038700px;}
.y27{bottom:138.315000px;}
.y7f{bottom:149.780250px;}
.y103{bottom:155.947050px;}
.y3d{bottom:156.038700px;}
.y26{bottom:156.315000px;}
.y10d{bottom:161.059476px;}
.y102{bottom:167.297402px;}
.y7e{bottom:167.780250px;}
.y60{bottom:171.876300px;}
.y25{bottom:174.315000px;}
.y7d{bottom:185.780250px;}
.y3c{bottom:191.046600px;}
.y24{bottom:192.315000px;}
.y7c{bottom:203.780250px;}
.y3b{bottom:209.046600px;}
.y23{bottom:210.315000px;}
.y101{bottom:213.054964px;}
.y7b{bottom:221.780250px;}
.y110{bottom:224.316600px;}
.y3a{bottom:227.046600px;}
.y22{bottom:228.315000px;}
.y5f{bottom:228.876300px;}
.y7a{bottom:239.780250px;}
.y39{bottom:245.046600px;}
.y10b{bottom:246.013050px;}
.y21{bottom:246.315000px;}
.y5e{bottom:246.876300px;}
.y100{bottom:251.700648px;}
.y79{bottom:257.780250px;}
.y20{bottom:264.315000px;}
.y5d{bottom:264.876300px;}
.y78{bottom:275.780250px;}
.y38{bottom:280.054350px;}
.y1f{bottom:282.315000px;}
.y5c{bottom:282.876300px;}
.y11b{bottom:284.086888px;}
.yff{bottom:290.346331px;}
.y118{bottom:293.938113px;}
.y37{bottom:298.054350px;}
.y1e{bottom:300.315150px;}
.y5b{bottom:300.876300px;}
.y11a{bottom:301.958311px;}
.y77{bottom:309.891000px;}
.y117{bottom:311.854934px;}
.y36{bottom:316.054350px;}
.y1d{bottom:318.315150px;}
.y5a{bottom:318.876300px;}
.y119{bottom:319.511953px;}
.yfe{bottom:329.042334px;}
.y35{bottom:334.054350px;}
.y1c{bottom:336.315150px;}
.y59{bottom:336.876300px;}
.y34{bottom:352.054350px;}
.y1b{bottom:354.315150px;}
.y58{bottom:354.876300px;}
.y76{bottom:366.891000px;}
.yfd{bottom:367.688017px;}
.y33{bottom:370.054350px;}
.y1a{bottom:372.315150px;}
.y57{bottom:372.876300px;}
.y75{bottom:384.891000px;}
.y113{bottom:387.350727px;}
.y32{bottom:388.054350px;}
.y19{bottom:390.315150px;}
.y56{bottom:390.876300px;}
.y74{bottom:402.891000px;}
.y112{bottom:405.222150px;}
.y31{bottom:406.054350px;}
.yfc{bottom:406.333700px;}
.y55{bottom:408.876300px;}
.y73{bottom:420.891000px;}
.y30{bottom:424.054350px;}
.y54{bottom:426.876300px;}
.y10f{bottom:432.052302px;}
.y18{bottom:432.062250px;}
.y10c{bottom:433.670562px;}
.y104{bottom:434.576550px;}
.y139{bottom:435.600300px;}
.y72{bottom:438.891000px;}
.y2f{bottom:442.054350px;}
.y53{bottom:444.876300px;}
.yfb{bottom:444.979384px;}
.yf8{bottom:447.362250px;}
.y138{bottom:453.600300px;}
.y17{bottom:456.062250px;}
.y71{bottom:456.891000px;}
.y116{bottom:458.442977px;}
.y2e{bottom:460.054350px;}
.y111{bottom:461.004636px;}
.y52{bottom:462.876300px;}
.y137{bottom:471.600300px;}
.y70{bottom:474.891000px;}
.y115{bottom:475.951221px;}
.y2d{bottom:478.054350px;}
.y51{bottom:480.876300px;}
.yfa{bottom:483.625067px;}
.y136{bottom:489.600300px;}
.y6f{bottom:492.891000px;}
.y114{bottom:493.459466px;}
.y2c{bottom:496.054350px;}
.y135{bottom:507.600300px;}
.y6e{bottom:510.891000px;}
.y16{bottom:513.062250px;}
.y2b{bottom:514.054350px;}
.y50{bottom:519.876300px;}
.yf9{bottom:522.270750px;}
.y134{bottom:525.600300px;}
.y6d{bottom:528.891000px;}
.y15{bottom:531.062250px;}
.y2a{bottom:532.054350px;}
.y133{bottom:543.600300px;}
.y4f{bottom:543.876300px;}
.y6c{bottom:546.891000px;}
.y14{bottom:549.062250px;}
.y29{bottom:550.054350px;}
.y132{bottom:561.600300px;}
.y6b{bottom:564.891000px;}
.yf6{bottom:566.458950px;}
.y13{bottom:567.062250px;}
.y28{bottom:568.054350px;}
.y131{bottom:579.600300px;}
.y12{bottom:585.062250px;}
.y130{bottom:597.600300px;}
.yb7{bottom:598.308000px;}
.yf4{bottom:601.883100px;}
.y11{bottom:603.062250px;}
.yb6{bottom:607.895260px;}
.y12f{bottom:615.600300px;}
.yb5{bottom:619.064998px;}
.yf3{bottom:619.883100px;}
.y10{bottom:621.062250px;}
.yb4{bottom:630.885733px;}
.y12e{bottom:633.600300px;}
.yf2{bottom:637.883100px;}
.yf{bottom:639.062250px;}
.yb3{bottom:642.800692px;}
.yaa{bottom:650.716824px;}
.y12d{bottom:651.600300px;}
.yb2{bottom:654.715650px;}
.yf1{bottom:655.883100px;}
.ye{bottom:657.062250px;}
.ya9{bottom:660.584568px;}
.yb1{bottom:665.046900px;}
.ya8{bottom:670.358089px;}
.yf0{bottom:673.883100px;}
.yd{bottom:675.062250px;}
.ya7{bottom:681.716273px;}
.y12c{bottom:690.600300px;}
.yef{bottom:691.883100px;}
.ya6{bottom:692.980235px;}
.yc{bottom:693.062250px;}
.ya5{bottom:704.269893px;}
.yd7{bottom:708.111509px;}
.yee{bottom:709.883100px;}
.yb{bottom:711.062250px;}
.ya4{bottom:715.533854px;}
.yd6{bottom:717.885030px;}
.ydc{bottom:721.684126px;}
.ya3{bottom:726.797816px;}
.yd5{bottom:727.752774px;}
.yed{bottom:727.883100px;}
.ya{bottom:729.062250px;}
.ydb{bottom:733.787531px;}
.yd4{bottom:737.526295px;}
.ya2{bottom:738.156000px;}
.yda{bottom:745.608266px;}
.yec{bottom:745.883100px;}
.y9{bottom:747.062250px;}
.yd3{bottom:747.394039px;}
.ya1{bottom:749.240081px;}
.y12b{bottom:752.868000px;}
.yd9{bottom:756.966450px;}
.yd2{bottom:757.167560px;}
.ya0{bottom:760.598265px;}
.yb0{bottom:762.649827px;}
.yeb{bottom:763.883100px;}
.y8{bottom:765.062250px;}
.yd1{bottom:766.941080px;}
.yd8{bottom:767.115150px;}
.yc5{bottom:767.877139px;}
.y12a{bottom:770.868000px;}
.y9f{bottom:772.607447px;}
.yaf{bottom:773.913788px;}
.yd0{bottom:776.808824px;}
.yc4{bottom:777.744883px;}
.y8c{bottom:778.101856px;}
.yea{bottom:781.883100px;}
.y7{bottom:783.062250px;}
.y9e{bottom:783.871408px;}
.yae{bottom:785.271973px;}
.yc3{bottom:787.518403px;}
.ycf{bottom:788.072786px;}
.y8b{bottom:793.742916px;}
.y9d{bottom:795.135369px;}
.yad{bottom:796.535934px;}
.yc2{bottom:797.309056px;}
.yce{bottom:799.353878px;}
.ye9{bottom:799.883100px;}
.y6{bottom:801.062250px;}
.y9c{bottom:806.510685px;}
.yc1{bottom:807.176800px;}
.yac{bottom:807.911250px;}
.y8a{bottom:809.401107px;}
.y129{bottom:809.868450px;}
.ycd{bottom:810.712063px;}
.yc0{bottom:816.950321px;}
.y9b{bottom:817.594765px;}
.ye8{bottom:817.883100px;}
.yab{bottom:818.990550px;}
.y5{bottom:819.062250px;}
.ycc{bottom:821.976024px;}
.y89{bottom:825.042166px;}
.ybf{bottom:826.818064px;}
.y9a{bottom:828.965638px;}
.ycb{bottom:833.334209px;}
.y88{bottom:835.381027px;}
.ye7{bottom:835.883100px;}
.ybe{bottom:836.591585px;}
.y99{bottom:840.974819px;}
.yca{bottom:844.598170px;}
.ybd{bottom:847.949770px;}
.y98{bottom:852.238780px;}
.ye6{bottom:853.883100px;}
.y87{bottom:855.116515px;}
.yc9{bottom:855.956354px;}
.ybc{bottom:859.213731px;}
.y97{bottom:863.408519px;}
.yc8{bottom:867.220315px;}
.ybb{bottom:870.571915px;}
.y86{bottom:870.757574px;}
.ye5{bottom:871.883100px;}
.y96{bottom:875.417700px;}
.yc7{bottom:878.578500px;}
.yba{bottom:881.930100px;}
.y85{bottom:886.398634px;}
.y95{bottom:886.681661px;}
.yc6{bottom:888.168300px;}
.y128{bottom:889.379850px;}
.ye4{bottom:889.883100px;}
.yb9{bottom:893.010000px;}
.y94{bottom:897.945622px;}
.y84{bottom:902.065391px;}
.y127{bottom:907.379850px;}
.ye3{bottom:907.883100px;}
.y4{bottom:909.109500px;}
.y93{bottom:909.141058px;}
.y83{bottom:917.706450px;}
.y92{bottom:921.150239px;}
.ye2{bottom:925.883100px;}
.y91{bottom:932.508424px;}
.y90{bottom:943.772385px;}
.ye1{bottom:943.883100px;}
.y126{bottom:950.891550px;}
.y8f{bottom:954.856466px;}
.yf5{bottom:960.891000px;}
.y3{bottom:965.377200px;}
.y8e{bottom:966.214650px;}
.y125{bottom:968.891550px;}
.y8d{bottom:976.549500px;}
.ye0{bottom:978.891000px;}
.y124{bottom:986.891550px;}
.ydf{bottom:996.891000px;}
.y123{bottom:1004.891550px;}
.y2{bottom:1004.975700px;}
.y82{bottom:1005.109200px;}
.yde{bottom:1014.891000px;}
.y122{bottom:1022.891550px;}
.y4e{bottom:1032.876300px;}
.y6a{bottom:1032.891000px;}
.y1{bottom:1035.575850px;}
.y121{bottom:1040.891550px;}
.y4d{bottom:1050.876300px;}
.y69{bottom:1050.891000px;}
.y120{bottom:1058.891550px;}
.y4c{bottom:1068.876300px;}
.y68{bottom:1068.891000px;}
.y11f{bottom:1076.891550px;}
.y4b{bottom:1086.876300px;}
.y67{bottom:1086.891000px;}
.y11e{bottom:1094.891550px;}
.y4a{bottom:1104.876300px;}
.y66{bottom:1104.891000px;}
.y44{bottom:1108.311000px;}
.y11d{bottom:1112.891550px;}
.y49{bottom:1122.876300px;}
.y65{bottom:1122.891000px;}
.y48{bottom:1140.876300px;}
.y64{bottom:1140.891000px;}
.y11c{bottom:1151.891550px;}
.y43{bottom:1158.110100px;}
.y47{bottom:1158.876300px;}
.y63{bottom:1158.891000px;}
.y42{bottom:1171.610100px;}
.ydd{bottom:1194.094800px;}
.y46{bottom:1194.094950px;}
.hc{height:23.221213px;}
.hb{height:23.421973px;}
.he{height:23.806762px;}
.hd{height:23.984100px;}
.h12{height:26.920605px;}
.h8{height:28.516113px;}
.h17{height:33.351562px;}
.h9{height:33.947754px;}
.h18{height:34.687500px;}
.h4{height:37.520508px;}
.h13{height:41.023126px;}
.h7{height:41.660156px;}
.h5{height:41.689453px;}
.h16{height:43.359375px;}
.h15{height:44.285551px;}
.h14{height:45.471368px;}
.h11{height:45.864492px;}
.ha{height:51.120000px;}
.h3{height:51.480000px;}
.h6{height:68.640000px;}
.h2{height:72.930000px;}
.hf{height:396.171000px;}
.h10{height:442.267500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:705.826500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:4.149300px;}
.x2f{left:37.699645px;}
.x1{left:76.535400px;}
.x26{left:80.685300px;}
.x2c{left:86.356200px;}
.x3{left:93.543300px;}
.x24{left:102.047250px;}
.xa{left:110.551200px;}
.x3b{left:119.510100px;}
.x1b{left:120.937256px;}
.x17{left:122.723638px;}
.x3c{left:127.558950px;}
.xf{left:131.150842px;}
.x1a{left:134.856600px;}
.xc{left:136.062900px;}
.x2{left:137.099400px;}
.x2a{left:149.450850px;}
.xe{left:185.894550px;}
.x29{left:200.462550px;}
.x16{left:202.467300px;}
.x19{left:226.012050px;}
.x2b{left:229.350186px;}
.x32{left:261.174600px;}
.x37{left:286.566851px;}
.x33{left:288.942646px;}
.x31{left:295.313325px;}
.x15{left:324.357233px;}
.xb{left:326.069100px;}
.x27{left:334.513050px;}
.x14{left:336.743308px;}
.x10{left:350.529450px;}
.x11{left:364.500188px;}
.x30{left:366.599850px;}
.x12{left:378.470927px;}
.x7{left:387.579750px;}
.x13{left:392.489209px;}
.x9{left:399.162450px;}
.x28{left:400.579650px;}
.x18{left:436.559400px;}
.x4{left:440.078700px;}
.x5{left:457.086600px;}
.x39{left:463.071748px;}
.x6{left:465.590550px;}
.xd{left:474.094350px;}
.x38{left:479.475324px;}
.x3d{left:483.053400px;}
.x3a{left:484.590092px;}
.x3e{left:491.102250px;}
.x35{left:542.396051px;}
.x34{left:555.879064px;}
.x36{left:563.914395px;}
.x8{left:623.398350px;}
.x1f{left:666.685232px;}
.x21{left:667.687800px;}
.x1d{left:680.536050px;}
.x22{left:681.675670px;}
.x1e{left:694.549617px;}
.x2e{left:698.866650px;}
.x20{left:719.734200px;}
.x1c{left:720.850950px;}
.x2d{left:729.137279px;}
.x23{left:761.268450px;}
@media print{
.v1{vertical-align:-27.226133pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760533pt;}
.ls1{letter-spacing:-1.269333pt;}
.ls4{letter-spacing:-1.024000pt;}
.ls3{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.243648pt;}
.ls9{letter-spacing:-0.152280pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.060912pt;}
.ls7{letter-spacing:0.121824pt;}
.ls0{letter-spacing:0.181333pt;}
.lsc{letter-spacing:0.269021pt;}
.lse{letter-spacing:0.497067pt;}
.lsb{letter-spacing:0.715661pt;}
.lsd{letter-spacing:0.853333pt;}
.ls6{letter-spacing:22.994280pt;}
.ls5{letter-spacing:27.288576pt;}
.ls10{letter-spacing:28.600533pt;}
.lsf{letter-spacing:35.750933pt;}
.ws43{word-spacing:-53.333333pt;}
.ws0{word-spacing:-20.490667pt;}
.ws2{word-spacing:-20.480000pt;}
.ws98{word-spacing:-14.186667pt;}
.ws6f{word-spacing:-13.451067pt;}
.ws3{word-spacing:-13.333333pt;}
.ws42{word-spacing:-12.520000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws99{word-spacing:-10.666667pt;}
.ws6e{word-spacing:-7.911205pt;}
.ws45{word-spacing:-7.614000pt;}
.ws54{word-spacing:-6.720000pt;}
.ws4e{word-spacing:-4.000000pt;}
.ws19{word-spacing:-3.626667pt;}
.wse{word-spacing:-3.360000pt;}
.wsa7{word-spacing:-2.933333pt;}
.ws10{word-spacing:-2.720000pt;}
.ws48{word-spacing:-2.613333pt;}
.ws7a{word-spacing:-2.560000pt;}
.ws21{word-spacing:-2.026667pt;}
.ws14{word-spacing:-1.920000pt;}
.wsa2{word-spacing:-1.760000pt;}
.ws12{word-spacing:-1.653333pt;}
.wsab{word-spacing:-1.578667pt;}
.ws3b{word-spacing:-1.493333pt;}
.ws4b{word-spacing:-1.280000pt;}
.wsaf{word-spacing:-1.152000pt;}
.ws6{word-spacing:-0.960000pt;}
.ws5{word-spacing:-0.906667pt;}
.wsa5{word-spacing:-0.853333pt;}
.ws13{word-spacing:-0.800000pt;}
.ws90{word-spacing:-0.480000pt;}
.ws9b{word-spacing:-0.426667pt;}
.ws1f{word-spacing:-0.373333pt;}
.ws79{word-spacing:-0.320000pt;}
.ws97{word-spacing:-0.269021pt;}
.ws50{word-spacing:-0.213333pt;}
.ws69{word-spacing:-0.121824pt;}
.ws6a{word-spacing:-0.060912pt;}
.ws72{word-spacing:-0.053333pt;}
.ws6d{word-spacing:-0.040000pt;}
.ws44{word-spacing:-0.030456pt;}
.ws7{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.106667pt;}
.ws96{word-spacing:0.119277pt;}
.ws6b{word-spacing:0.152280pt;}
.ws52{word-spacing:0.160000pt;}
.ws86{word-spacing:0.213333pt;}
.ws6c{word-spacing:0.243648pt;}
.ws17{word-spacing:0.320000pt;}
.ws8d{word-spacing:0.373333pt;}
.wsb5{word-spacing:0.426667pt;}
.ws41{word-spacing:0.480000pt;}
.ws8c{word-spacing:0.533333pt;}
.ws60{word-spacing:0.586667pt;}
.ws47{word-spacing:0.746667pt;}
.wsac{word-spacing:0.768000pt;}
.ws5b{word-spacing:0.800000pt;}
.ws40{word-spacing:0.840000pt;}
.ws81{word-spacing:0.906667pt;}
.ws4{word-spacing:0.960000pt;}
.ws5c{word-spacing:1.013333pt;}
.ws3c{word-spacing:1.066667pt;}
.ws5f{word-spacing:1.120000pt;}
.wsb1{word-spacing:1.152000pt;}
.ws9a{word-spacing:1.386667pt;}
.ws61{word-spacing:1.440000pt;}
.ws33{word-spacing:1.546667pt;}
.ws32{word-spacing:1.600000pt;}
.wsb{word-spacing:1.653333pt;}
.ws20{word-spacing:1.706667pt;}
.ws38{word-spacing:1.813333pt;}
.ws8a{word-spacing:1.920000pt;}
.ws4c{word-spacing:2.080000pt;}
.ws2e{word-spacing:2.346667pt;}
.ws66{word-spacing:2.400000pt;}
.ws36{word-spacing:2.453333pt;}
.ws3e{word-spacing:2.486400pt;}
.ws7d{word-spacing:2.560000pt;}
.ws58{word-spacing:2.666667pt;}
.wsa6{word-spacing:2.773333pt;}
.ws7b{word-spacing:2.880000pt;}
.ws1b{word-spacing:2.933333pt;}
.ws1e{word-spacing:3.093333pt;}
.wsb4{word-spacing:3.114667pt;}
.ws3f{word-spacing:3.124800pt;}
.ws56{word-spacing:3.146667pt;}
.wsf{word-spacing:3.306667pt;}
.wsa8{word-spacing:3.456000pt;}
.ws1d{word-spacing:3.573333pt;}
.ws11{word-spacing:3.626667pt;}
.ws8f{word-spacing:3.680000pt;}
.ws5a{word-spacing:3.893333pt;}
.ws2d{word-spacing:3.946667pt;}
.ws7e{word-spacing:4.000000pt;}
.ws9f{word-spacing:4.266667pt;}
.wsad{word-spacing:4.309333pt;}
.ws55{word-spacing:4.586667pt;}
.ws22{word-spacing:4.640000pt;}
.ws91{word-spacing:4.746667pt;}
.wsb0{word-spacing:4.906667pt;}
.ws74{word-spacing:4.960000pt;}
.ws8b{word-spacing:5.066667pt;}
.ws15{word-spacing:5.226667pt;}
.ws83{word-spacing:5.493333pt;}
.ws67{word-spacing:5.600000pt;}
.ws1c{word-spacing:5.760000pt;}
.ws73{word-spacing:5.813333pt;}
.wsd{word-spacing:5.866667pt;}
.ws31{word-spacing:5.973333pt;}
.ws24{word-spacing:6.026667pt;}
.ws57{word-spacing:6.080000pt;}
.wsa1{word-spacing:6.240000pt;}
.wsb3{word-spacing:6.272000pt;}
.ws16{word-spacing:6.293333pt;}
.ws88{word-spacing:6.453333pt;}
.ws53{word-spacing:6.613333pt;}
.wsa0{word-spacing:6.666667pt;}
.ws92{word-spacing:6.826667pt;}
.ws51{word-spacing:7.146667pt;}
.wsae{word-spacing:7.296000pt;}
.ws1a{word-spacing:7.306667pt;}
.ws23{word-spacing:7.360000pt;}
.ws85{word-spacing:7.520000pt;}
.ws3d{word-spacing:7.573333pt;}
.ws76{word-spacing:7.786667pt;}
.ws77{word-spacing:7.840000pt;}
.ws27{word-spacing:7.893333pt;}
.ws9{word-spacing:7.946667pt;}
.wsaa{word-spacing:8.021333pt;}
.ws9e{word-spacing:8.106667pt;}
.ws4d{word-spacing:8.586667pt;}
.wsa9{word-spacing:8.661333pt;}
.wsa3{word-spacing:8.906667pt;}
.ws49{word-spacing:9.120000pt;}
.wsb2{word-spacing:9.642667pt;}
.ws7f{word-spacing:9.653333pt;}
.wsc{word-spacing:9.813333pt;}
.ws95{word-spacing:9.920000pt;}
.ws93{word-spacing:10.080000pt;}
.ws5d{word-spacing:10.293333pt;}
.ws2b{word-spacing:10.346667pt;}
.ws80{word-spacing:10.506667pt;}
.ws68{word-spacing:10.773333pt;}
.ws34{word-spacing:10.826667pt;}
.ws37{word-spacing:11.146667pt;}
.ws35{word-spacing:11.306667pt;}
.ws5e{word-spacing:11.626667pt;}
.wsa4{word-spacing:11.733333pt;}
.ws59{word-spacing:11.786667pt;}
.ws39{word-spacing:11.840000pt;}
.ws78{word-spacing:12.320000pt;}
.ws70{word-spacing:12.640000pt;}
.ws30{word-spacing:12.800000pt;}
.ws62{word-spacing:13.226667pt;}
.ws46{word-spacing:13.280000pt;}
.ws2a{word-spacing:13.546667pt;}
.ws71{word-spacing:13.706667pt;}
.ws63{word-spacing:14.133333pt;}
.ws2f{word-spacing:14.346667pt;}
.ws26{word-spacing:15.040000pt;}
.ws75{word-spacing:15.733333pt;}
.ws8{word-spacing:15.840000pt;}
.ws7c{word-spacing:16.106667pt;}
.ws87{word-spacing:16.480000pt;}
.ws2c{word-spacing:16.693333pt;}
.ws28{word-spacing:17.013333pt;}
.ws94{word-spacing:17.440000pt;}
.ws65{word-spacing:18.453333pt;}
.ws89{word-spacing:18.560000pt;}
.ws84{word-spacing:19.093333pt;}
.ws18{word-spacing:19.200000pt;}
.ws4f{word-spacing:19.786667pt;}
.ws25{word-spacing:20.640000pt;}
.ws4a{word-spacing:20.693333pt;}
.ws9c{word-spacing:21.013333pt;}
.ws64{word-spacing:21.386667pt;}
.ws9d{word-spacing:23.466667pt;}
.ws3a{word-spacing:23.680000pt;}
.ws82{word-spacing:23.893333pt;}
.wsa{word-spacing:25.120000pt;}
.ws29{word-spacing:30.240000pt;}
._d{margin-left:-2508.826667pt;}
._15{margin-left:-53.151467pt;}
._17{margin-left:-42.521067pt;}
._a{margin-left:-37.065067pt;}
._c{margin-left:-12.385067pt;}
._14{margin-left:-11.092742pt;}
._4{margin-left:-6.654400pt;}
._7{margin-left:-5.039467pt;}
._5{margin-left:-3.716800pt;}
._2{margin-left:-2.293867pt;}
._3{margin-left:-0.897600pt;}
._0{width:1.414400pt;}
._1{width:3.118933pt;}
._b{width:4.670293pt;}
._6{width:7.248000pt;}
._f{width:10.293333pt;}
._e{width:11.722667pt;}
._9{width:14.330667pt;}
._13{width:30.547368pt;}
._16{width:32.924267pt;}
._8{width:37.375467pt;}
._11{width:92.433960pt;}
._12{width:296.154144pt;}
._10{width:370.131768pt;}
.fs7{font-size:30.456000pt;}
.fsb{font-size:31.093333pt;}
.fs5{font-size:33.600000pt;}
.fs9{font-size:35.005333pt;}
.fs6{font-size:40.000000pt;}
.fsc{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:53.804267pt;}
.fs8{font-size:59.638400pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.fs0{font-size:90.666667pt;}
.y109{bottom:-11.918351pt;}
.yb8{bottom:-0.261333pt;}
.y0{bottom:0.000000pt;}
.y108{bottom:3.644533pt;}
.y106{bottom:4.454400pt;}
.y10e{bottom:42.214533pt;}
.y41{bottom:56.051733pt;}
.y40{bottom:67.251733pt;}
.y45{bottom:68.524000pt;}
.y3f{bottom:78.451733pt;}
.yf7{bottom:100.942667pt;}
.y62{bottom:101.129200pt;}
.y81{bottom:101.138000pt;}
.y61{bottom:117.129200pt;}
.y80{bottom:117.138000pt;}
.y10a{bottom:117.736481pt;}
.y107{bottom:120.145067pt;}
.y105{bottom:120.793333pt;}
.y3e{bottom:122.701067pt;}
.y27{bottom:122.946667pt;}
.y7f{bottom:133.138000pt;}
.y103{bottom:138.619600pt;}
.y3d{bottom:138.701067pt;}
.y26{bottom:138.946667pt;}
.y10d{bottom:143.163978pt;}
.y102{bottom:148.708802pt;}
.y7e{bottom:149.138000pt;}
.y60{bottom:152.778933pt;}
.y25{bottom:154.946667pt;}
.y7d{bottom:165.138000pt;}
.y3c{bottom:169.819200pt;}
.y24{bottom:170.946667pt;}
.y7c{bottom:181.138000pt;}
.y3b{bottom:185.819200pt;}
.y23{bottom:186.946667pt;}
.y101{bottom:189.382191pt;}
.y7b{bottom:197.138000pt;}
.y110{bottom:199.392533pt;}
.y3a{bottom:201.819200pt;}
.y22{bottom:202.946667pt;}
.y5f{bottom:203.445600pt;}
.y7a{bottom:213.138000pt;}
.y39{bottom:217.819200pt;}
.y10b{bottom:218.678267pt;}
.y21{bottom:218.946667pt;}
.y5e{bottom:219.445600pt;}
.y100{bottom:223.733909pt;}
.y79{bottom:229.138000pt;}
.y20{bottom:234.946667pt;}
.y5d{bottom:235.445600pt;}
.y78{bottom:245.138000pt;}
.y38{bottom:248.937200pt;}
.y1f{bottom:250.946667pt;}
.y5c{bottom:251.445600pt;}
.y11b{bottom:252.521678pt;}
.yff{bottom:258.085627pt;}
.y118{bottom:261.278322pt;}
.y37{bottom:264.937200pt;}
.y1e{bottom:266.946800pt;}
.y5b{bottom:267.445600pt;}
.y11a{bottom:268.407388pt;}
.y77{bottom:275.458667pt;}
.y117{bottom:277.204385pt;}
.y36{bottom:280.937200pt;}
.y1d{bottom:282.946800pt;}
.y5a{bottom:283.445600pt;}
.y119{bottom:284.010625pt;}
.yfe{bottom:292.482075pt;}
.y35{bottom:296.937200pt;}
.y1c{bottom:298.946800pt;}
.y59{bottom:299.445600pt;}
.y34{bottom:312.937200pt;}
.y1b{bottom:314.946800pt;}
.y58{bottom:315.445600pt;}
.y76{bottom:326.125333pt;}
.yfd{bottom:326.833793pt;}
.y33{bottom:328.937200pt;}
.y1a{bottom:330.946800pt;}
.y57{bottom:331.445600pt;}
.y75{bottom:342.125333pt;}
.y113{bottom:344.311757pt;}
.y32{bottom:344.937200pt;}
.y19{bottom:346.946800pt;}
.y56{bottom:347.445600pt;}
.y74{bottom:358.125333pt;}
.y112{bottom:360.197467pt;}
.y31{bottom:360.937200pt;}
.yfc{bottom:361.185511pt;}
.y55{bottom:363.445600pt;}
.y73{bottom:374.125333pt;}
.y30{bottom:376.937200pt;}
.y54{bottom:379.445600pt;}
.y10f{bottom:384.046491pt;}
.y18{bottom:384.055333pt;}
.y10c{bottom:385.484944pt;}
.y104{bottom:386.290267pt;}
.y139{bottom:387.200267pt;}
.y72{bottom:390.125333pt;}
.y2f{bottom:392.937200pt;}
.y53{bottom:395.445600pt;}
.yfb{bottom:395.537230pt;}
.yf8{bottom:397.655333pt;}
.y138{bottom:403.200267pt;}
.y17{bottom:405.388667pt;}
.y71{bottom:406.125333pt;}
.y116{bottom:407.504868pt;}
.y2e{bottom:408.937200pt;}
.y111{bottom:409.781899pt;}
.y52{bottom:411.445600pt;}
.y137{bottom:419.200267pt;}
.y70{bottom:422.125333pt;}
.y115{bottom:423.067752pt;}
.y2d{bottom:424.937200pt;}
.y51{bottom:427.445600pt;}
.yfa{bottom:429.888948pt;}
.y136{bottom:435.200267pt;}
.y6f{bottom:438.125333pt;}
.y114{bottom:438.630636pt;}
.y2c{bottom:440.937200pt;}
.y135{bottom:451.200267pt;}
.y6e{bottom:454.125333pt;}
.y16{bottom:456.055333pt;}
.y2b{bottom:456.937200pt;}
.y50{bottom:462.112267pt;}
.yf9{bottom:464.240667pt;}
.y134{bottom:467.200267pt;}
.y6d{bottom:470.125333pt;}
.y15{bottom:472.055333pt;}
.y2a{bottom:472.937200pt;}
.y133{bottom:483.200267pt;}
.y4f{bottom:483.445600pt;}
.y6c{bottom:486.125333pt;}
.y14{bottom:488.055333pt;}
.y29{bottom:488.937200pt;}
.y132{bottom:499.200267pt;}
.y6b{bottom:502.125333pt;}
.yf6{bottom:503.519067pt;}
.y13{bottom:504.055333pt;}
.y28{bottom:504.937200pt;}
.y131{bottom:515.200267pt;}
.y12{bottom:520.055333pt;}
.y130{bottom:531.200267pt;}
.yb7{bottom:531.829333pt;}
.yf4{bottom:535.007200pt;}
.y11{bottom:536.055333pt;}
.yb6{bottom:540.351343pt;}
.y12f{bottom:547.200267pt;}
.yb5{bottom:550.279999pt;}
.yf3{bottom:551.007200pt;}
.y10{bottom:552.055333pt;}
.yb4{bottom:560.787319pt;}
.y12e{bottom:563.200267pt;}
.yf2{bottom:567.007200pt;}
.yf{bottom:568.055333pt;}
.yb3{bottom:571.378393pt;}
.yaa{bottom:578.414955pt;}
.y12d{bottom:579.200267pt;}
.yb2{bottom:581.969467pt;}
.yf1{bottom:583.007200pt;}
.ye{bottom:584.055333pt;}
.ya9{bottom:587.186283pt;}
.yb1{bottom:591.152800pt;}
.ya8{bottom:595.873857pt;}
.yf0{bottom:599.007200pt;}
.yd{bottom:600.055333pt;}
.ya7{bottom:605.970021pt;}
.y12c{bottom:613.866933pt;}
.yef{bottom:615.007200pt;}
.ya6{bottom:615.982431pt;}
.yc{bottom:616.055333pt;}
.ya5{bottom:626.017683pt;}
.yd7{bottom:629.432453pt;}
.yee{bottom:631.007200pt;}
.yb{bottom:632.055333pt;}
.ya4{bottom:636.030093pt;}
.yd6{bottom:638.120027pt;}
.ydc{bottom:641.497001pt;}
.ya3{bottom:646.042503pt;}
.yd5{bottom:646.891355pt;}
.yed{bottom:647.007200pt;}
.ya{bottom:648.055333pt;}
.ydb{bottom:652.255583pt;}
.yd4{bottom:655.578929pt;}
.ya2{bottom:656.138667pt;}
.yda{bottom:662.762903pt;}
.yec{bottom:663.007200pt;}
.y9{bottom:664.055333pt;}
.yd3{bottom:664.350257pt;}
.ya1{bottom:665.991183pt;}
.y12b{bottom:669.216000pt;}
.yd9{bottom:672.859067pt;}
.yd2{bottom:673.037831pt;}
.ya0{bottom:676.087347pt;}
.yb0{bottom:677.910957pt;}
.yeb{bottom:679.007200pt;}
.y8{bottom:680.055333pt;}
.yd1{bottom:681.725405pt;}
.yd8{bottom:681.880133pt;}
.yc5{bottom:682.557457pt;}
.y12a{bottom:685.216000pt;}
.y9f{bottom:686.762175pt;}
.yaf{bottom:687.923367pt;}
.yd0{bottom:690.496733pt;}
.yc4{bottom:691.328785pt;}
.y8c{bottom:691.646095pt;}
.yea{bottom:695.007200pt;}
.y7{bottom:696.055333pt;}
.y9e{bottom:696.774585pt;}
.yae{bottom:698.019531pt;}
.yc3{bottom:700.016359pt;}
.ycf{bottom:700.509143pt;}
.y8b{bottom:705.549259pt;}
.y9d{bottom:706.786995pt;}
.yad{bottom:708.031941pt;}
.yc2{bottom:708.719161pt;}
.yce{bottom:710.536781pt;}
.ye9{bottom:711.007200pt;}
.y6{bottom:712.055333pt;}
.y9c{bottom:716.898387pt;}
.yc1{bottom:717.490489pt;}
.yac{bottom:718.143333pt;}
.y8a{bottom:719.467651pt;}
.y129{bottom:719.883067pt;}
.ycd{bottom:720.632945pt;}
.yc0{bottom:726.178063pt;}
.y9b{bottom:726.750903pt;}
.ye8{bottom:727.007200pt;}
.yab{bottom:727.991600pt;}
.y5{bottom:728.055333pt;}
.ycc{bottom:730.645355pt;}
.y89{bottom:733.370815pt;}
.ybf{bottom:734.949391pt;}
.y9a{bottom:736.858345pt;}
.ycb{bottom:740.741519pt;}
.y88{bottom:742.560913pt;}
.ye7{bottom:743.007200pt;}
.ybe{bottom:743.636965pt;}
.y99{bottom:747.533173pt;}
.yca{bottom:750.753929pt;}
.ybd{bottom:753.733129pt;}
.y98{bottom:757.545583pt;}
.ye6{bottom:759.007200pt;}
.y87{bottom:760.103569pt;}
.yc9{bottom:760.850093pt;}
.ybc{bottom:763.745539pt;}
.y97{bottom:767.474239pt;}
.yc8{bottom:770.862503pt;}
.ybb{bottom:773.841703pt;}
.y86{bottom:774.006733pt;}
.ye5{bottom:775.007200pt;}
.y96{bottom:778.149067pt;}
.yc7{bottom:780.958667pt;}
.yba{bottom:783.937867pt;}
.y85{bottom:787.909897pt;}
.y95{bottom:788.161477pt;}
.yc6{bottom:789.482933pt;}
.y128{bottom:790.559867pt;}
.ye4{bottom:791.007200pt;}
.yb9{bottom:793.786667pt;}
.y94{bottom:798.173887pt;}
.y84{bottom:801.835903pt;}
.y127{bottom:806.559867pt;}
.ye3{bottom:807.007200pt;}
.y4{bottom:808.097333pt;}
.y93{bottom:808.125385pt;}
.y83{bottom:815.739067pt;}
.y92{bottom:818.800213pt;}
.ye2{bottom:823.007200pt;}
.y91{bottom:828.896377pt;}
.y90{bottom:838.908787pt;}
.ye1{bottom:839.007200pt;}
.y126{bottom:845.236933pt;}
.y8f{bottom:848.761303pt;}
.yf5{bottom:854.125333pt;}
.y3{bottom:858.113067pt;}
.y8e{bottom:858.857467pt;}
.y125{bottom:861.236933pt;}
.y8d{bottom:868.044000pt;}
.ye0{bottom:870.125333pt;}
.y124{bottom:877.236933pt;}
.ydf{bottom:886.125333pt;}
.y123{bottom:893.236933pt;}
.y2{bottom:893.311733pt;}
.y82{bottom:893.430400pt;}
.yde{bottom:902.125333pt;}
.y122{bottom:909.236933pt;}
.y4e{bottom:918.112267pt;}
.y6a{bottom:918.125333pt;}
.y1{bottom:920.511867pt;}
.y121{bottom:925.236933pt;}
.y4d{bottom:934.112267pt;}
.y69{bottom:934.125333pt;}
.y120{bottom:941.236933pt;}
.y4c{bottom:950.112267pt;}
.y68{bottom:950.125333pt;}
.y11f{bottom:957.236933pt;}
.y4b{bottom:966.112267pt;}
.y67{bottom:966.125333pt;}
.y11e{bottom:973.236933pt;}
.y4a{bottom:982.112267pt;}
.y66{bottom:982.125333pt;}
.y44{bottom:985.165333pt;}
.y11d{bottom:989.236933pt;}
.y49{bottom:998.112267pt;}
.y65{bottom:998.125333pt;}
.y48{bottom:1014.112267pt;}
.y64{bottom:1014.125333pt;}
.y11c{bottom:1023.903600pt;}
.y43{bottom:1029.431200pt;}
.y47{bottom:1030.112267pt;}
.y63{bottom:1030.125333pt;}
.y42{bottom:1041.431200pt;}
.ydd{bottom:1061.417600pt;}
.y46{bottom:1061.417733pt;}
.hc{height:20.641078pt;}
.hb{height:20.819531pt;}
.he{height:21.161566pt;}
.hd{height:21.319200pt;}
.h12{height:23.929427pt;}
.h8{height:25.347656pt;}
.h17{height:29.645833pt;}
.h9{height:30.175781pt;}
.h18{height:30.833333pt;}
.h4{height:33.351562pt;}
.h13{height:36.465001pt;}
.h7{height:37.031250pt;}
.h5{height:37.057292pt;}
.h16{height:38.541667pt;}
.h15{height:39.364934pt;}
.h14{height:40.418994pt;}
.h11{height:40.768437pt;}
.ha{height:45.440000pt;}
.h3{height:45.760000pt;}
.h6{height:61.013333pt;}
.h2{height:64.826667pt;}
.hf{height:352.152000pt;}
.h10{height:393.126667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:627.401333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:3.688267pt;}
.x2f{left:33.510795pt;}
.x1{left:68.031467pt;}
.x26{left:71.720267pt;}
.x2c{left:76.761067pt;}
.x3{left:83.149600pt;}
.x24{left:90.708667pt;}
.xa{left:98.267733pt;}
.x3b{left:106.231200pt;}
.x1b{left:107.499783pt;}
.x17{left:109.087678pt;}
.x3c{left:113.385733pt;}
.xf{left:116.578526pt;}
.x1a{left:119.872533pt;}
.xc{left:120.944800pt;}
.x2{left:121.866133pt;}
.x2a{left:132.845200pt;}
.xe{left:165.239600pt;}
.x29{left:178.188933pt;}
.x16{left:179.970933pt;}
.x19{left:200.899600pt;}
.x2b{left:203.866832pt;}
.x32{left:232.155200pt;}
.x37{left:254.726090pt;}
.x33{left:256.837907pt;}
.x31{left:262.500733pt;}
.x15{left:288.317541pt;}
.xb{left:289.839200pt;}
.x27{left:297.344933pt;}
.x14{left:299.327385pt;}
.x10{left:311.581733pt;}
.x11{left:324.000167pt;}
.x30{left:325.866533pt;}
.x12{left:336.418601pt;}
.x7{left:344.515333pt;}
.x13{left:348.879297pt;}
.x9{left:354.811067pt;}
.x28{left:356.070800pt;}
.x18{left:388.052800pt;}
.x4{left:391.181067pt;}
.x5{left:406.299200pt;}
.x39{left:411.619331pt;}
.x6{left:413.858267pt;}
.xd{left:421.417200pt;}
.x38{left:426.200288pt;}
.x3d{left:429.380800pt;}
.x3a{left:430.746748pt;}
.x3e{left:436.535333pt;}
.x35{left:482.129823pt;}
.x34{left:494.114723pt;}
.x36{left:501.257240pt;}
.x8{left:554.131867pt;}
.x1f{left:592.609095pt;}
.x21{left:593.500267pt;}
.x1d{left:604.920933pt;}
.x22{left:605.933929pt;}
.x1e{left:617.377437pt;}
.x2e{left:621.214800pt;}
.x20{left:639.763733pt;}
.x1c{left:640.756400pt;}
.x2d{left:648.122025pt;}
.x23{left:676.683067pt;}
}




    .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; }
  