
    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_53bb8b4205e0967ff2063ae1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.185059;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_634ab6aa0ab109af56996ed7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3bdfe0e3bfb2b6570cc2a660.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.206055;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_7de5933622dfb58d93c8c323.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.076000;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_56c068f99e0084b44c1c5c32.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.193359;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_927fba3a6da198e586844725.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969727;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_39e318ef23b3a5a34c855d1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_2be305a619bc986e2cb97673.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003418;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;}
.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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.109440px;}
.v1{vertical-align:59.904000px;}
.ls41{letter-spacing:-1.589760px;}
.ls2f{letter-spacing:-1.457280px;}
.ls51{letter-spacing:-1.059840px;}
.ls42{letter-spacing:-0.993600px;}
.ls50{letter-spacing:-0.927360px;}
.ls32{letter-spacing:-0.861120px;}
.ls5c{letter-spacing:-0.794880px;}
.ls2e{letter-spacing:-0.728640px;}
.ls22{letter-spacing:-0.702000px;}
.ls3a{letter-spacing:-0.596160px;}
.ls5f{letter-spacing:-0.594000px;}
.ls3c{letter-spacing:-0.529920px;}
.ls31{letter-spacing:-0.463680px;}
.ls48{letter-spacing:-0.397440px;}
.ls1c{letter-spacing:-0.378000px;}
.ls1f{letter-spacing:-0.341280px;}
.ls2d{letter-spacing:-0.331200px;}
.ls10{letter-spacing:-0.324000px;}
.ls14{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.264960px;}
.ls2a{letter-spacing:-0.227520px;}
.ls1b{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.198720px;}
.ls20{letter-spacing:-0.170640px;}
.ls13{letter-spacing:-0.167040px;}
.lsf{letter-spacing:-0.162000px;}
.ls2b{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.132480px;}
.ls5e{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.066240px;}
.ls11{letter-spacing:-0.054000px;}
.ls12{letter-spacing:-0.041760px;}
.lsd{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.054000px;}
.ls46{letter-spacing:0.059760px;}
.lsc{letter-spacing:0.066240px;}
.ls25{letter-spacing:0.099360px;}
.ls1a{letter-spacing:0.108000px;}
.ls21{letter-spacing:0.113760px;}
.ls44{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.124200px;}
.lse{letter-spacing:0.132480px;}
.ls5{letter-spacing:0.162000px;}
.ls7{letter-spacing:0.170640px;}
.ls24{letter-spacing:0.172800px;}
.ls43{letter-spacing:0.179280px;}
.ls55{letter-spacing:0.185472px;}
.ls4{letter-spacing:0.198720px;}
.ls0{letter-spacing:0.216000px;}
.ls3e{letter-spacing:0.239040px;}
.ls16{letter-spacing:0.263520px;}
.ls37{letter-spacing:0.264960px;}
.ls1e{letter-spacing:0.270000px;}
.ls15{letter-spacing:0.288000px;}
.ls3b{letter-spacing:0.331200px;}
.ls6{letter-spacing:0.341280px;}
.ls3f{letter-spacing:0.358560px;}
.ls1{letter-spacing:0.378000px;}
.ls9{letter-spacing:0.442800px;}
.lsb{letter-spacing:0.480600px;}
.ls45{letter-spacing:0.597600px;}
.ls36{letter-spacing:0.602784px;}
.ls2c{letter-spacing:0.662400px;}
.ls64{letter-spacing:0.728640px;}
.ls3{letter-spacing:0.801792px;}
.ls54{letter-spacing:0.918000px;}
.ls35{letter-spacing:1.457280px;}
.ls65{letter-spacing:1.477152px;}
.ls59{letter-spacing:1.620000px;}
.ls5a{letter-spacing:2.185920px;}
.ls27{letter-spacing:2.332080px;}
.ls39{letter-spacing:2.848320px;}
.ls29{letter-spacing:2.861568px;}
.ls58{letter-spacing:3.576960px;}
.ls3d{letter-spacing:3.596832px;}
.ls4c{letter-spacing:3.656448px;}
.ls28{letter-spacing:4.305600px;}
.ls4f{letter-spacing:4.482000px;}
.ls4b{letter-spacing:5.007744px;}
.ls63{letter-spacing:5.034240px;}
.ls5b{letter-spacing:5.716512px;}
.ls52{letter-spacing:5.762880px;}
.ls60{letter-spacing:5.815872px;}
.ls4e{letter-spacing:6.359040px;}
.ls8{letter-spacing:6.642000px;}
.ls4d{letter-spacing:7.220160px;}
.lsa{letter-spacing:8.100000px;}
.ls66{letter-spacing:9.339840px;}
.ls53{letter-spacing:10.068480px;}
.ls68{letter-spacing:12.194784px;}
.ls57{letter-spacing:12.254400px;}
.ls47{letter-spacing:13.711680px;}
.ls67{letter-spacing:17.288640px;}
.ls56{letter-spacing:17.838432px;}
.ls5d{letter-spacing:19.408320px;}
.ls38{letter-spacing:20.136960px;}
.ls26{letter-spacing:21.045600px;}
.ls49{letter-spacing:22.303008px;}
.ls4a{letter-spacing:22.322880px;}
.ls69{letter-spacing:25.171200px;}
.ls40{letter-spacing:26.091936px;}
.ls62{letter-spacing:26.628480px;}
.ls61{letter-spacing:26.747712px;}
.ls30{letter-spacing:34.577280px;}
.ls34{letter-spacing:581.817600px;}
.ls23{letter-spacing:599.097600px;}
.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;}
}
.ws4{word-spacing:-74.880000px;}
.ws3c{word-spacing:-28.944000px;}
.wse7{word-spacing:-28.404000px;}
.ws5{word-spacing:-24.148800px;}
.ws9{word-spacing:-18.504000px;}
.wsaa{word-spacing:-17.222400px;}
.ws6{word-spacing:-17.156160px;}
.ws7a{word-spacing:-16.891200px;}
.wsd5{word-spacing:-16.824960px;}
.wsd4{word-spacing:-16.758720px;}
.ws7d{word-spacing:-16.692480px;}
.ws3d{word-spacing:-16.560000px;}
.ws7b{word-spacing:-16.427520px;}
.wse8{word-spacing:-16.361280px;}
.ws66{word-spacing:-16.295040px;}
.ws7c{word-spacing:-16.228800px;}
.wsc4{word-spacing:-16.162560px;}
.ws65{word-spacing:-16.096320px;}
.wsab{word-spacing:-16.030080px;}
.ws79{word-spacing:-15.963840px;}
.ws78{word-spacing:-15.831360px;}
.wsd0{word-spacing:-15.698880px;}
.wsc5{word-spacing:-15.632640px;}
.ws96{word-spacing:-15.298560px;}
.ws95{word-spacing:-15.059520px;}
.ws3a{word-spacing:-14.333760px;}
.wsa{word-spacing:-14.220000px;}
.ws3b{word-spacing:-14.049360px;}
.ws1{word-spacing:-13.986000px;}
.wsb{word-spacing:-13.878720px;}
.ws0{word-spacing:-13.878000px;}
.ws8{word-spacing:-13.770000px;}
.ws102{word-spacing:-13.662000px;}
.wsa9{word-spacing:-13.608000px;}
.wse4{word-spacing:-13.392000px;}
.wsc6{word-spacing:-13.284000px;}
.ws3f{word-spacing:-13.176000px;}
.ws7{word-spacing:-13.122000px;}
.wse5{word-spacing:-12.906000px;}
.ws2{word-spacing:-10.857600px;}
.ws3{word-spacing:-10.690560px;}
.ws3e{word-spacing:-9.720000px;}
.wsc{word-spacing:-8.280000px;}
.wsec{word-spacing:-4.504320px;}
.wsc8{word-spacing:-4.305600px;}
.ws8f{word-spacing:-4.173120px;}
.ws6a{word-spacing:-3.576960px;}
.ws9f{word-spacing:-3.444480px;}
.wsb2{word-spacing:-3.047040px;}
.ws67{word-spacing:-2.848320px;}
.wsf9{word-spacing:-2.782080px;}
.ws8e{word-spacing:-2.715840px;}
.ws81{word-spacing:-2.517120px;}
.wsad{word-spacing:-2.384640px;}
.wsc3{word-spacing:-2.268000px;}
.ws59{word-spacing:-2.185920px;}
.wscc{word-spacing:-2.119680px;}
.ws28{word-spacing:-2.104560px;}
.wsa0{word-spacing:-2.053440px;}
.ws27{word-spacing:-1.990800px;}
.wsf3{word-spacing:-1.656000px;}
.wsbd{word-spacing:-1.589760px;}
.ws101{word-spacing:-1.512000px;}
.ws4c{word-spacing:-1.457280px;}
.ws9d{word-spacing:-1.391040px;}
.ws5f{word-spacing:-1.324800px;}
.ws22{word-spacing:-1.251360px;}
.ws23{word-spacing:-1.080720px;}
.ws62{word-spacing:-0.918000px;}
.ws84{word-spacing:-0.861120px;}
.ws92{word-spacing:-0.728640px;}
.wsac{word-spacing:-0.702000px;}
.ws10c{word-spacing:-0.662400px;}
.ws63{word-spacing:-0.648000px;}
.ws44{word-spacing:-0.625680px;}
.ws5a{word-spacing:-0.596160px;}
.ws64{word-spacing:-0.540000px;}
.wsa5{word-spacing:-0.418320px;}
.ws10b{word-spacing:-0.331200px;}
.ws14{word-spacing:-0.288000px;}
.ws2c{word-spacing:-0.216000px;}
.wsbe{word-spacing:-0.198720px;}
.ws2e{word-spacing:-0.170640px;}
.ws1b{word-spacing:-0.162000px;}
.wsf{word-spacing:-0.132480px;}
.ws17{word-spacing:-0.108000px;}
.wsd{word-spacing:-0.066240px;}
.ws1a{word-spacing:-0.054000px;}
.wse{word-spacing:0.000000px;}
.wsdb{word-spacing:0.054000px;}
.ws4a{word-spacing:0.056880px;}
.wsf5{word-spacing:0.066240px;}
.ws39{word-spacing:0.108000px;}
.wsa6{word-spacing:0.119520px;}
.ws12{word-spacing:0.125280px;}
.ws15{word-spacing:0.131760px;}
.ws2f{word-spacing:0.132480px;}
.ws49{word-spacing:0.144000px;}
.ws2b{word-spacing:0.170640px;}
.ws16{word-spacing:0.198720px;}
.ws13{word-spacing:0.288000px;}
.ws94{word-spacing:0.331200px;}
.ws4b{word-spacing:0.341280px;}
.ws19{word-spacing:0.378000px;}
.wsaf{word-spacing:0.397440px;}
.ws10{word-spacing:0.432000px;}
.ws18{word-spacing:0.486000px;}
.ws2d{word-spacing:0.511920px;}
.ws109{word-spacing:0.529920px;}
.wsff{word-spacing:0.596160px;}
.ws35{word-spacing:0.648000px;}
.ws40{word-spacing:0.702000px;}
.ws82{word-spacing:0.728640px;}
.ws11{word-spacing:0.835200px;}
.ws83{word-spacing:0.861120px;}
.ws38{word-spacing:0.864000px;}
.wsb4{word-spacing:0.927360px;}
.ws9e{word-spacing:0.993600px;}
.wsfe{word-spacing:1.059840px;}
.wsdc{word-spacing:1.242000px;}
.wsf7{word-spacing:1.324800px;}
.wsa4{word-spacing:1.434240px;}
.ws61{word-spacing:1.457280px;}
.wse3{word-spacing:1.523520px;}
.ws8d{word-spacing:1.589760px;}
.ws25{word-spacing:1.649520px;}
.ws24{word-spacing:1.820160px;}
.wsbc{word-spacing:1.987200px;}
.ws1f{word-spacing:1.990800px;}
.ws5b{word-spacing:2.185920px;}
.ws46{word-spacing:2.218320px;}
.ws73{word-spacing:2.318400px;}
.ws45{word-spacing:2.332080px;}
.ws47{word-spacing:2.559600px;}
.ws100{word-spacing:2.649600px;}
.ws53{word-spacing:2.715840px;}
.ws34{word-spacing:2.808000px;}
.ws51{word-spacing:2.914560px;}
.ws33{word-spacing:3.024000px;}
.ws52{word-spacing:3.047040px;}
.ws20{word-spacing:3.071520px;}
.wse0{word-spacing:3.245760px;}
.wsdf{word-spacing:3.510000px;}
.ws58{word-spacing:3.576960px;}
.ws4f{word-spacing:3.643200px;}
.ws97{word-spacing:3.709440px;}
.wsfa{word-spacing:3.775680px;}
.ws1e{word-spacing:3.810960px;}
.wscf{word-spacing:4.104000px;}
.wsc0{word-spacing:4.212000px;}
.ws4e{word-spacing:4.305600px;}
.wsed{word-spacing:4.371840px;}
.wsc1{word-spacing:4.428000px;}
.wsd6{word-spacing:4.438080px;}
.ws48{word-spacing:4.493520px;}
.wsb5{word-spacing:4.636800px;}
.wsee{word-spacing:4.703040px;}
.ws86{word-spacing:4.901760px;}
.ws57{word-spacing:5.034240px;}
.wsde{word-spacing:5.130000px;}
.wsca{word-spacing:5.166720px;}
.wsdd{word-spacing:5.184000px;}
.ws56{word-spacing:5.365440px;}
.ws85{word-spacing:5.564160px;}
.ws74{word-spacing:5.762880px;}
.wsb7{word-spacing:5.895360px;}
.ws41{word-spacing:5.915520px;}
.ws30{word-spacing:6.372000px;}
.ws6d{word-spacing:6.491520px;}
.ws31{word-spacing:6.534000px;}
.wse6{word-spacing:6.557760px;}
.ws32{word-spacing:6.588000px;}
.ws71{word-spacing:6.624000px;}
.ws26{word-spacing:6.654960px;}
.wsbb{word-spacing:7.021440px;}
.ws93{word-spacing:7.220160px;}
.ws72{word-spacing:7.352640px;}
.wse1{word-spacing:7.750080px;}
.ws37{word-spacing:7.830000px;}
.ws6e{word-spacing:7.948800px;}
.ws36{word-spacing:8.046000px;}
.ws6c{word-spacing:8.081280px;}
.wsfc{word-spacing:8.412480px;}
.ws88{word-spacing:8.478720px;}
.ws87{word-spacing:8.611200px;}
.wsb0{word-spacing:8.743680px;}
.wsce{word-spacing:8.809920px;}
.wsfb{word-spacing:9.141120px;}
.wsfd{word-spacing:9.207360px;}
.ws6f{word-spacing:9.339840px;}
.wsc2{word-spacing:9.396000px;}
.ws103{word-spacing:9.406080px;}
.wscd{word-spacing:9.472320px;}
.ws5e{word-spacing:10.068480px;}
.ws5d{word-spacing:10.134720px;}
.wsd9{word-spacing:10.200960px;}
.wsd1{word-spacing:10.797120px;}
.wsa1{word-spacing:10.929600px;}
.ws1d{word-spacing:10.977840px;}
.wsf6{word-spacing:11.194560px;}
.ws6b{word-spacing:11.525760px;}
.wsa2{word-spacing:11.533680px;}
.wse9{word-spacing:11.658240px;}
.ws7e{word-spacing:12.254400px;}
.ws8c{word-spacing:12.386880px;}
.ws55{word-spacing:12.983040px;}
.ws70{word-spacing:13.115520px;}
.ws7f{word-spacing:13.711680px;}
.ws10a{word-spacing:13.844160px;}
.ws21{word-spacing:13.878720px;}
.wsae{word-spacing:14.374080px;}
.wsf2{word-spacing:14.506560px;}
.ws1c{word-spacing:14.561280px;}
.wsb6{word-spacing:15.102720px;}
.wsba{word-spacing:15.235200px;}
.ws107{word-spacing:15.831360px;}
.wsea{word-spacing:15.963840px;}
.ws80{word-spacing:16.560000px;}
.wsa8{word-spacing:16.626240px;}
.ws4d{word-spacing:16.692480px;}
.ws108{word-spacing:16.957440px;}
.wsbf{word-spacing:17.288640px;}
.wsf4{word-spacing:17.421120px;}
.ws105{word-spacing:17.818560px;}
.ws8a{word-spacing:18.017280px;}
.ws89{word-spacing:18.149760px;}
.wsb1{word-spacing:18.745920px;}
.wsda{word-spacing:19.474560px;}
.ws90{word-spacing:20.136960px;}
.wsd8{word-spacing:20.203200px;}
.ws54{word-spacing:20.269440px;}
.ws29{word-spacing:20.363040px;}
.ws91{word-spacing:20.666880px;}
.ws2a{word-spacing:20.704320px;}
.wsd7{word-spacing:20.733120px;}
.wsa3{word-spacing:20.856240px;}
.ws50{word-spacing:20.865600px;}
.ws42{word-spacing:20.931840px;}
.wse2{word-spacing:20.998080px;}
.ws43{word-spacing:21.045600px;}
.ws104{word-spacing:21.594240px;}
.wseb{word-spacing:21.726720px;}
.ws60{word-spacing:22.322880px;}
.wsb3{word-spacing:22.455360px;}
.ws8b{word-spacing:23.051520px;}
.wsc9{word-spacing:24.508800px;}
.ws9a{word-spacing:24.641280px;}
.ws99{word-spacing:25.171200px;}
.wsef{word-spacing:25.237440px;}
.ws98{word-spacing:25.303680px;}
.wscb{word-spacing:25.899840px;}
.wsa7{word-spacing:26.032320px;}
.ws77{word-spacing:26.628480px;}
.wsf0{word-spacing:26.760960px;}
.wsf1{word-spacing:26.893440px;}
.wsf8{word-spacing:27.025920px;}
.ws76{word-spacing:27.357120px;}
.ws75{word-spacing:27.489600px;}
.wsc7{word-spacing:28.085760px;}
.ws106{word-spacing:28.218240px;}
.ws5c{word-spacing:30.271680px;}
.wsb8{word-spacing:31.662720px;}
.wsb9{word-spacing:31.795200px;}
.ws9c{word-spacing:33.848640px;}
.ws9b{word-spacing:33.981120px;}
.ws69{word-spacing:34.577280px;}
.ws68{word-spacing:35.305920px;}
.wsd2{word-spacing:38.154240px;}
.wsd3{word-spacing:38.882880px;}
._3{margin-left:-11.989440px;}
._5{margin-left:-4.631040px;}
._9{margin-left:-3.612240px;}
._4{margin-left:-2.401200px;}
._1{margin-left:-1.008000px;}
._0{width:1.237320px;}
._2{width:3.168000px;}
._8{width:6.648552px;}
._6{width:7.873200px;}
._7{width:10.973160px;}
._b{width:13.669920px;}
._a{width:20.754720px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(185,25,25);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(34,30,31);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.120000px;}
.fsa{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fsb{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:92.880000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:131.760000px;}
.fs3{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:72.540000px;}
.y166{bottom:113.754240px;}
.yae{bottom:115.004880px;}
.y6a{bottom:118.947600px;}
.y25{bottom:125.442000px;}
.y138{bottom:125.446500px;}
.ye3{bottom:125.451000px;}
.y4f{bottom:125.455500px;}
.y8f{bottom:126.523440px;}
.yc4{bottom:128.304720px;}
.y107{bottom:128.880000px;}
.y1ad{bottom:129.240000px;}
.y165{bottom:136.077120px;}
.yad{bottom:137.327760px;}
.y1e1{bottom:140.940000px;}
.y69{bottom:141.088320px;}
.y24{bottom:143.626500px;}
.y137{bottom:143.631000px;}
.ye2{bottom:143.635500px;}
.y4e{bottom:147.420000px;}
.y18b{bottom:148.466160px;}
.y8e{bottom:148.664160px;}
.yc3{bottom:150.627600px;}
.y131{bottom:156.339360px;}
.y164{bottom:158.400000px;}
.y1ac{bottom:158.575500px;}
.yac{bottom:159.650640px;}
.y23{bottom:161.811000px;}
.y136{bottom:161.815500px;}
.y4d{bottom:162.540000px;}
.y68{bottom:163.411200px;}
.y153{bottom:163.584720px;}
.ye1{bottom:165.600000px;}
.y106{bottom:166.140000px;}
.y1bf{bottom:169.711200px;}
.y18a{bottom:170.971200px;}
.y8d{bottom:170.987040px;}
.yc2{bottom:172.950480px;}
.y101{bottom:176.755500px;}
.y1e0{bottom:178.200000px;}
.y130{bottom:178.662240px;}
.y22{bottom:179.995500px;}
.y163{bottom:180.540000px;}
.ye0{bottom:180.720000px;}
.yab{bottom:181.973520px;}
.y135{bottom:183.780000px;}
.y67{bottom:185.734080px;}
.y152{bottom:185.907600px;}
.y1be{bottom:192.034080px;}
.y189{bottom:193.294080px;}
.y100{bottom:198.720000px;}
.y134{bottom:198.900000px;}
.y21{bottom:201.960000px;}
.y162{bottom:202.860000px;}
.y105{bottom:203.400000px;}
.y4c{bottom:204.107040px;}
.yaa{bottom:204.114240px;}
.y66{bottom:208.056960px;}
.y8c{bottom:208.064880px;}
.y151{bottom:208.230480px;}
.yc1{bottom:210.028320px;}
.yff{bottom:213.840000px;}
.y1bd{bottom:214.356960px;}
.y188{bottom:215.434800px;}
.y1df{bottom:215.451360px;}
.y12f{bottom:215.740080px;}
.y20{bottom:217.080000px;}
.y161{bottom:225.180000px;}
.y4b{bottom:226.247760px;}
.ya9{bottom:226.437120px;}
.y1ab{bottom:228.960000px;}
.y65{bottom:230.197680px;}
.y150{bottom:230.553360px;}
.y8b{bottom:230.569920px;}
.yc0{bottom:232.351200px;}
.y1bc{bottom:236.679840px;}
.y187{bottom:237.757680px;}
.y1de{bottom:237.956400px;}
.y12e{bottom:238.245120px;}
.y133{bottom:241.020000px;}
.y104{bottom:243.000000px;}
.y160{bottom:247.317120px;}
.y4a{bottom:248.570640px;}
.ya8{bottom:248.760000px;}
.y64{bottom:252.520560px;}
.ydf{bottom:252.694080px;}
.y8a{bottom:252.710640px;}
.y1fc{bottom:253.437120px;}
.ybf{bottom:254.674080px;}
.y1bb{bottom:258.820560px;}
.y186{bottom:260.080560px;}
.y12d{bottom:260.385840px;}
.y1aa{bottom:263.337120px;}
.y15f{bottom:269.640000px;}
.y49{bottom:270.893520px;}
.y103{bottom:272.138400px;}
.y63{bottom:274.843440px;}
.yde{bottom:275.016960px;}
.y89{bottom:275.033520px;}
.y1dd{bottom:275.034240px;}
.y132{bottom:275.220000px;}
.y1fb{bottom:275.942160px;}
.ybe{bottom:276.996960px;}
.y1f{bottom:279.540000px;}
.y1ba{bottom:281.143440px;}
.y185{bottom:282.221280px;}
.y12c{bottom:282.708720px;}
.ya7{bottom:285.319260px;}
.y1a9{bottom:285.626880px;}
.yfe{bottom:292.817520px;}
.y48{bottom:293.034240px;}
.y62{bottom:296.984160px;}
.ydd{bottom:297.339840px;}
.y88{bottom:297.356400px;}
.ybd{bottom:299.137680px;}
.y1b9{bottom:303.466320px;}
.y184{bottom:304.544160px;}
.y12b{bottom:305.031600px;}
.ya6{bottom:305.652600px;}
.y15e{bottom:306.701280px;}
.y1a8{bottom:307.767600px;}
.y1dc{bottom:312.294240px;}
.y1fa{bottom:313.020000px;}
.y1e{bottom:314.100000px;}
.yfd{bottom:315.140400px;}
.y47{bottom:315.357120px;}
.y61{bottom:319.307040px;}
.ydc{bottom:319.480560px;}
.y87{bottom:319.497120px;}
.ybc{bottom:321.460560px;}
.y1b8{bottom:325.607040px;}
.ya5{bottom:325.806660px;}
.y12a{bottom:327.172320px;}
.y15d{bottom:329.206320px;}
.y1a7{bottom:330.090480px;}
.y1db{bottom:334.799280px;}
.yfc{bottom:337.281120px;}
.y183{bottom:341.622000px;}
.ydb{bottom:341.803440px;}
.y86{bottom:341.820000px;}
.ybb{bottom:343.783440px;}
.ya4{bottom:346.140000px;}
.y1b7{bottom:347.929920px;}
.y129{bottom:349.495200px;}
.y1f9{bottom:350.280000px;}
.y1d{bottom:350.500500px;}
.y15c{bottom:351.347040px;}
.y1a6{bottom:352.413360px;}
.y46{bottom:352.434960px;}
.y60{bottom:356.384880px;}
.y1da{bottom:356.940000px;}
.yfb{bottom:359.604000px;}
.yda{bottom:364.126320px;}
.y182{bottom:364.127040px;}
.yba{bottom:365.924160px;}
.y1c{bottom:369.939240px;}
.y1b6{bottom:370.252800px;}
.y128{bottom:371.818080px;}
.y15b{bottom:373.669920px;}
.y1a5{bottom:374.554080px;}
.y45{bottom:374.912640px;}
.y5f{bottom:378.889920px;}
.y85{bottom:380.340000px;}
.ya3{bottom:381.715920px;}
.yfa{bottom:381.926880px;}
.yd9{bottom:386.267040px;}
.y181{bottom:386.267760px;}
.y1f8{bottom:387.527760px;}
.yb9{bottom:388.247040px;}
.y1b{bottom:389.022480px;}
.y1b5{bottom:392.393520px;}
.y1d9{bottom:393.660000px;}
.y127{bottom:393.958800px;}
.y15a{bottom:395.992800px;}
.y1a4{bottom:396.876960px;}
.y44{bottom:397.053360px;}
.y5e{bottom:401.030640px;}
.ya2{bottom:404.038800px;}
.yf9{bottom:404.067600px;}
.y1a{bottom:408.276360px;}
.yd8{bottom:408.589920px;}
.y180{bottom:408.590640px;}
.y1f7{bottom:410.032800px;}
.yb8{bottom:410.569920px;}
.y1b4{bottom:414.716400px;}
.y126{bottom:416.281680px;}
.y159{bottom:418.133520px;}
.y1a3{bottom:419.199840px;}
.y43{bottom:419.376240px;}
.y5d{bottom:423.353520px;}
.y84{bottom:426.179520px;}
.ya1{bottom:426.361680px;}
.yf8{bottom:426.390480px;}
.y19{bottom:427.530240px;}
.y1d8{bottom:430.695360px;}
.yd7{bottom:430.912800px;}
.y17f{bottom:430.913520px;}
.y1b3{bottom:437.039280px;}
.y125{bottom:438.604560px;}
.y158{bottom:440.456400px;}
.y42{bottom:441.699120px;}
.y5c{bottom:445.676400px;}
.y18{bottom:446.784120px;}
.y1f6{bottom:447.110640px;}
.yb7{bottom:447.647760px;}
.ya0{bottom:448.684560px;}
.yf7{bottom:448.713360px;}
.yd6{bottom:453.053520px;}
.y17e{bottom:453.054240px;}
.y1a2{bottom:456.277680px;}
.y1b2{bottom:459.180000px;}
.y124{bottom:460.745280px;}
.y157{bottom:462.779280px;}
.y83{bottom:463.439520px;}
.y41{bottom:463.839840px;}
.y17{bottom:466.038000px;}
.y5b{bottom:467.817120px;}
.y1d7{bottom:467.955360px;}
.y1f5{bottom:469.433520px;}
.yb6{bottom:469.970640px;}
.y9f{bottom:470.825280px;}
.yf6{bottom:470.854080px;}
.yd5{bottom:475.376400px;}
.y17d{bottom:475.377120px;}
.y1a1{bottom:478.600560px;}
.y123{bottom:483.068160px;}
.y156{bottom:484.920000px;}
.y16{bottom:485.121240px;}
.y82{bottom:485.944560px;}
.y40{bottom:486.162720px;}
.y5a{bottom:490.140000px;}
.y1d6{bottom:490.278240px;}
.yb5{bottom:492.293520px;}
.y9e{bottom:493.148160px;}
.yf5{bottom:493.176960px;}
.yd4{bottom:497.699280px;}
.y17c{bottom:497.700000px;}
.y1b1{bottom:498.595500px;}
.y1a0{bottom:500.923440px;}
.y15{bottom:504.375120px;}
.y122{bottom:505.391040px;}
.y1f4{bottom:506.511360px;}
.y81{bottom:508.085280px;}
.y3f{bottom:508.485600px;}
.y1d5{bottom:512.601120px;}
.yb4{bottom:514.616400px;}
.y9d{bottom:515.471040px;}
.yf4{bottom:515.499840px;}
.y1b0{bottom:516.780000px;}
.yd3{bottom:519.840000px;}
.y19f{bottom:523.246320px;}
.y14{bottom:523.629000px;}
.y155{bottom:524.160000px;}
.y121{bottom:527.531760px;}
.y1f3{bottom:529.016400px;}
.y59{bottom:529.380000px;}
.y80{bottom:530.408160px;}
.y3e{bottom:530.626320px;}
.y1d4{bottom:534.924000px;}
.y17b{bottom:536.220000px;}
.yb3{bottom:536.757120px;}
.y9c{bottom:537.611760px;}
.y13{bottom:542.882880px;}
.y19e{bottom:545.387040px;}
.y1af{bottom:545.924880px;}
.y120{bottom:549.854640px;}
.yf3{bottom:552.577680px;}
.y7f{bottom:552.731040px;}
.y3d{bottom:552.949200px;}
.y154{bottom:553.492800px;}
.y1d3{bottom:557.064720px;}
.yd2{bottom:558.360000px;}
.y58{bottom:558.709200px;}
.yb2{bottom:559.080000px;}
.y9b{bottom:559.934640px;}
.y12{bottom:562.136760px;}
.y1f2{bottom:566.094240px;}
.y19d{bottom:567.709920px;}
.y7e{bottom:574.871760px;}
.yf2{bottom:574.900560px;}
.y3c{bottom:575.272080px;}
.y1d2{bottom:579.387600px;}
.y11{bottom:581.220000px;}
.y17a{bottom:582.091200px;}
.y11f{bottom:586.932480px;}
.y1f1{bottom:588.599280px;}
.y19c{bottom:590.032800px;}
.y9a{bottom:597.012480px;}
.y7d{bottom:597.194640px;}
.yf1{bottom:597.223440px;}
.y3b{bottom:597.412800px;}
.yb1{bottom:598.315500px;}
.y1d1{bottom:601.710480px;}
.y14f{bottom:604.218240px;}
.yd1{bottom:604.232640px;}
.y11e{bottom:609.437520px;}
.y19b{bottom:612.173520px;}
.y10{bottom:615.600000px;}
.yb0{bottom:616.500000px;}
.y179{bottom:619.351200px;}
.y7c{bottom:619.517520px;}
.yf0{bottom:619.546320px;}
.y3a{bottom:619.735680px;}
.y1d0{bottom:623.851200px;}
.y1f0{bottom:625.677120px;}
.y11d{bottom:631.578240px;}
.y19a{bottom:634.496400px;}
.y14e{bottom:641.478240px;}
.yd0{bottom:641.492640px;}
.y7b{bottom:641.658240px;}
.y178{bottom:641.674080px;}
.yef{bottom:641.687040px;}
.y39{bottom:642.058560px;}
.yaf{bottom:645.840000px;}
.y1cf{bottom:646.174080px;}
.y1ef{bottom:648.000000px;}
.yf{bottom:651.775500px;}
.y11c{bottom:653.901120px;}
.y99{bottom:663.981120px;}
.y14d{bottom:663.983280px;}
.y177{bottom:663.996960px;}
.ycf{bottom:663.997680px;}
.yee{bottom:664.009920px;}
.y38{bottom:664.199280px;}
.y199{bottom:671.574240px;}
.y11b{bottom:676.224000px;}
.y7a{bottom:678.736080px;}
.y1ce{bottom:683.251920px;}
.y1ee{bottom:685.071360px;}
.ye{bottom:685.080000px;}
.y98{bottom:686.304000px;}
.y14c{bottom:686.306160px;}
.y176{bottom:686.319840px;}
.yce{bottom:686.320560px;}
.yed{bottom:686.332800px;}
.y198{bottom:694.079280px;}
.y11a{bottom:698.364720px;}
.y79{bottom:701.241120px;}
.y37{bottom:702.900000px;}
.yd{bottom:703.435680px;}
.y1cd{bottom:705.756960px;}
.y1ed{bottom:707.576400px;}
.y97{bottom:708.444720px;}
.y14b{bottom:708.446880px;}
.y175{bottom:708.460560px;}
.ycd{bottom:708.461280px;}
.yec{bottom:708.473520px;}
.y197{bottom:716.178240px;}
.y119{bottom:720.687600px;}
.yc{bottom:723.059280px;}
.y78{bottom:723.564000px;}
.y1cc{bottom:727.897680px;}
.y1ec{bottom:729.899280px;}
.y96{bottom:730.767600px;}
.y14a{bottom:730.769760px;}
.ycc{bottom:730.784160px;}
.yeb{bottom:730.796400px;}
.y196{bottom:738.501120px;}
.yb{bottom:742.865040px;}
.y118{bottom:743.010480px;}
.y174{bottom:745.538400px;}
.y77{bottom:745.704720px;}
.y36{bottom:748.800000px;}
.y1cb{bottom:750.220560px;}
.y95{bottom:753.090480px;}
.y149{bottom:753.092640px;}
.ycb{bottom:753.107040px;}
.yea{bottom:753.119280px;}
.y195{bottom:760.824000px;}
.y117{bottom:765.151200px;}
.y1eb{bottom:766.977120px;}
.y76{bottom:768.027600px;}
.y173{bottom:768.043440px;}
.y1ca{bottom:772.543440px;}
.y94{bottom:775.231200px;}
.y148{bottom:775.233360px;}
.ye9{bottom:775.257120px;}
.ya{bottom:778.320000px;}
.y194{bottom:782.964720px;}
.y35{bottom:786.060000px;}
.y116{bottom:787.474080px;}
.y1ea{bottom:789.300000px;}
.yca{bottom:790.184880px;}
.y75{bottom:790.350480px;}
.y172{bottom:790.366320px;}
.y1c9{bottom:794.684160px;}
.ye8{bottom:797.554080px;}
.y147{bottom:797.556240px;}
.y9{bottom:802.615320px;}
.y193{bottom:805.287600px;}
.y93{bottom:812.309040px;}
.y74{bottom:812.491200px;}
.y171{bottom:812.507040px;}
.yc9{bottom:812.507760px;}
.y1c8{bottom:817.007040px;}
.y146{bottom:819.879120px;}
.y34{bottom:822.600000px;}
.y115{bottom:824.551920px;}
.y1e9{bottom:826.374240px;}
.y192{bottom:827.610480px;}
.ye7{bottom:834.631920px;}
.y73{bottom:834.814080px;}
.y170{bottom:834.829920px;}
.yc8{bottom:834.830640px;}
.y8{bottom:836.280000px;}
.y1c7{bottom:839.329920px;}
.y145{bottom:842.019840px;}
.y114{bottom:847.056960px;}
.y1e8{bottom:848.879280px;}
.y191{bottom:849.751200px;}
.y33{bottom:856.979850px;}
.y72{bottom:857.136960px;}
.y16f{bottom:857.152800px;}
.yc7{bottom:857.153520px;}
.y1c6{bottom:861.470640px;}
.y113{bottom:869.197680px;}
.y190{bottom:872.074080px;}
.y7{bottom:877.464000px;}
.y102{bottom:879.095520px;}
.y144{bottom:879.097680px;}
.y71{bottom:879.277680px;}
.y16e{bottom:879.293520px;}
.yc6{bottom:879.294240px;}
.y1c5{bottom:883.793520px;}
.y1e7{bottom:885.957120px;}
.y112{bottom:891.520560px;}
.y32{bottom:893.383740px;}
.y18f{bottom:894.396960px;}
.y70{bottom:901.600560px;}
.y143{bottom:901.602720px;}
.y16d{bottom:901.616400px;}
.yc5{bottom:901.617120px;}
.y1c4{bottom:906.116400px;}
.y31{bottom:912.822480px;}
.y111{bottom:913.843440px;}
.y18e{bottom:916.537680px;}
.y1e6{bottom:923.217120px;}
.y6f{bottom:923.923440px;}
.y142{bottom:923.925600px;}
.y16c{bottom:923.939280px;}
.y1c3{bottom:928.257120px;}
.y30{bottom:932.076360px;}
.y110{bottom:935.984160px;}
.y18d{bottom:938.860560px;}
.y1e5{bottom:945.722160px;}
.y6e{bottom:946.064160px;}
.y141{bottom:946.066320px;}
.y16b{bottom:946.080000px;}
.y1c2{bottom:950.580000px;}
.y6{bottom:950.904000px;}
.y2f{bottom:951.330240px;}
.y10f{bottom:958.307040px;}
.y57{bottom:961.001280px;}
.y18c{bottom:961.183440px;}
.y6d{bottom:968.387040px;}
.y140{bottom:968.389200px;}
.y2e{bottom:970.413480px;}
.y10e{bottom:980.629920px;}
.y1e4{bottom:982.800000px;}
.y16a{bottom:983.160000px;}
.y56{bottom:983.324160px;}
.y1c1{bottom:989.100000px;}
.y2d{bottom:989.667360px;}
.y6c{bottom:990.709920px;}
.y13f{bottom:990.712080px;}
.y10d{bottom:1002.770640px;}
.y55{bottom:1005.647040px;}
.y169{bottom:1005.660000px;}
.y2c{bottom:1008.921240px;}
.y92{bottom:1012.850640px;}
.y13e{bottom:1012.852800px;}
.y1e3{bottom:1020.060000px;}
.y5{bottom:1024.344000px;}
.y10c{bottom:1025.093520px;}
.y6b{bottom:1027.787760px;}
.y54{bottom:1027.969920px;}
.y168{bottom:1027.980000px;}
.y2b{bottom:1028.175120px;}
.y1c0{bottom:1034.991360px;}
.y91{bottom:1035.173520px;}
.y13d{bottom:1035.175680px;}
.y10b{bottom:1047.416400px;}
.y2a{bottom:1047.429000px;}
.y1ae{bottom:1049.928480px;}
.y53{bottom:1050.110640px;}
.y167{bottom:1050.120000px;}
.y1e2{bottom:1057.314240px;}
.ye6{bottom:1057.496400px;}
.y13c{bottom:1057.498560px;}
.y29{bottom:1066.512240px;}
.y10a{bottom:1069.557120px;}
.y90{bottom:1072.251360px;}
.y52{bottom:1072.433520px;}
.ye5{bottom:1079.637120px;}
.y13b{bottom:1079.639280px;}
.y28{bottom:1085.766120px;}
.y109{bottom:1091.880000px;}
.y51{bottom:1094.756400px;}
.y4{bottom:1097.640000px;}
.y13a{bottom:1101.962160px;}
.y27{bottom:1105.020000px;}
.ye4{bottom:1116.714960px;}
.y50{bottom:1116.897120px;}
.y108{bottom:1130.400000px;}
.y139{bottom:1139.040000px;}
.y26{bottom:1139.220000px;}
.y2{bottom:1174.496400px;}
.y1{bottom:1194.120000px;}
.hc{height:34.819453px;}
.h4{height:39.639375px;}
.h3{height:44.149219px;}
.h9{height:49.939453px;}
.hf{height:49.957453px;}
.hb{height:52.602891px;}
.h10{height:55.266328px;}
.h8{height:61.259062px;}
.h13{height:61.270582px;}
.h17{height:61.282102px;}
.h16{height:61.293622px;}
.h18{height:61.308023px;}
.h11{height:61.325302px;}
.h12{height:61.362743px;}
.he{height:61.368502px;}
.h15{height:61.391542px;}
.h14{height:61.426102px;}
.h2{height:62.876250px;}
.ha{height:68.343750px;}
.hd{height:81.738281px;}
.h7{height:125.069062px;}
.h5{height:273.375000px;}
.h6{height:273.519000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.380000px;}
.x2{left:148.860000px;}
.x7{left:159.480000px;}
.x8{left:202.131000px;}
.xb{left:238.680000px;}
.x6{left:298.620000px;}
.x3{left:302.940000px;}
.x4{left:562.140000px;}
.xa{left:717.840000px;}
.x9{left:784.975680px;}
.x5{left:786.615120px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.097280pt;}
.v1{vertical-align:53.248000pt;}
.ls41{letter-spacing:-1.413120pt;}
.ls2f{letter-spacing:-1.295360pt;}
.ls51{letter-spacing:-0.942080pt;}
.ls42{letter-spacing:-0.883200pt;}
.ls50{letter-spacing:-0.824320pt;}
.ls32{letter-spacing:-0.765440pt;}
.ls5c{letter-spacing:-0.706560pt;}
.ls2e{letter-spacing:-0.647680pt;}
.ls22{letter-spacing:-0.624000pt;}
.ls3a{letter-spacing:-0.529920pt;}
.ls5f{letter-spacing:-0.528000pt;}
.ls3c{letter-spacing:-0.471040pt;}
.ls31{letter-spacing:-0.412160pt;}
.ls48{letter-spacing:-0.353280pt;}
.ls1c{letter-spacing:-0.336000pt;}
.ls1f{letter-spacing:-0.303360pt;}
.ls2d{letter-spacing:-0.294400pt;}
.ls10{letter-spacing:-0.288000pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.235520pt;}
.ls2a{letter-spacing:-0.202240pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.176640pt;}
.ls20{letter-spacing:-0.151680pt;}
.ls13{letter-spacing:-0.148480pt;}
.lsf{letter-spacing:-0.144000pt;}
.ls2b{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.117760pt;}
.ls5e{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.058880pt;}
.ls11{letter-spacing:-0.048000pt;}
.ls12{letter-spacing:-0.037120pt;}
.lsd{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.048000pt;}
.ls46{letter-spacing:0.053120pt;}
.lsc{letter-spacing:0.058880pt;}
.ls25{letter-spacing:0.088320pt;}
.ls1a{letter-spacing:0.096000pt;}
.ls21{letter-spacing:0.101120pt;}
.ls44{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.110400pt;}
.lse{letter-spacing:0.117760pt;}
.ls5{letter-spacing:0.144000pt;}
.ls7{letter-spacing:0.151680pt;}
.ls24{letter-spacing:0.153600pt;}
.ls43{letter-spacing:0.159360pt;}
.ls55{letter-spacing:0.164864pt;}
.ls4{letter-spacing:0.176640pt;}
.ls0{letter-spacing:0.192000pt;}
.ls3e{letter-spacing:0.212480pt;}
.ls16{letter-spacing:0.234240pt;}
.ls37{letter-spacing:0.235520pt;}
.ls1e{letter-spacing:0.240000pt;}
.ls15{letter-spacing:0.256000pt;}
.ls3b{letter-spacing:0.294400pt;}
.ls6{letter-spacing:0.303360pt;}
.ls3f{letter-spacing:0.318720pt;}
.ls1{letter-spacing:0.336000pt;}
.ls9{letter-spacing:0.393600pt;}
.lsb{letter-spacing:0.427200pt;}
.ls45{letter-spacing:0.531200pt;}
.ls36{letter-spacing:0.535808pt;}
.ls2c{letter-spacing:0.588800pt;}
.ls64{letter-spacing:0.647680pt;}
.ls3{letter-spacing:0.712704pt;}
.ls54{letter-spacing:0.816000pt;}
.ls35{letter-spacing:1.295360pt;}
.ls65{letter-spacing:1.313024pt;}
.ls59{letter-spacing:1.440000pt;}
.ls5a{letter-spacing:1.943040pt;}
.ls27{letter-spacing:2.072960pt;}
.ls39{letter-spacing:2.531840pt;}
.ls29{letter-spacing:2.543616pt;}
.ls58{letter-spacing:3.179520pt;}
.ls3d{letter-spacing:3.197184pt;}
.ls4c{letter-spacing:3.250176pt;}
.ls28{letter-spacing:3.827200pt;}
.ls4f{letter-spacing:3.984000pt;}
.ls4b{letter-spacing:4.451328pt;}
.ls63{letter-spacing:4.474880pt;}
.ls5b{letter-spacing:5.081344pt;}
.ls52{letter-spacing:5.122560pt;}
.ls60{letter-spacing:5.169664pt;}
.ls4e{letter-spacing:5.652480pt;}
.ls8{letter-spacing:5.904000pt;}
.ls4d{letter-spacing:6.417920pt;}
.lsa{letter-spacing:7.200000pt;}
.ls66{letter-spacing:8.302080pt;}
.ls53{letter-spacing:8.949760pt;}
.ls68{letter-spacing:10.839808pt;}
.ls57{letter-spacing:10.892800pt;}
.ls47{letter-spacing:12.188160pt;}
.ls67{letter-spacing:15.367680pt;}
.ls56{letter-spacing:15.856384pt;}
.ls5d{letter-spacing:17.251840pt;}
.ls38{letter-spacing:17.899520pt;}
.ls26{letter-spacing:18.707200pt;}
.ls49{letter-spacing:19.824896pt;}
.ls4a{letter-spacing:19.842560pt;}
.ls69{letter-spacing:22.374400pt;}
.ls40{letter-spacing:23.192832pt;}
.ls62{letter-spacing:23.669760pt;}
.ls61{letter-spacing:23.775744pt;}
.ls30{letter-spacing:30.735360pt;}
.ls34{letter-spacing:517.171200pt;}
.ls23{letter-spacing:532.531200pt;}
.ws4{word-spacing:-66.560000pt;}
.ws3c{word-spacing:-25.728000pt;}
.wse7{word-spacing:-25.248000pt;}
.ws5{word-spacing:-21.465600pt;}
.ws9{word-spacing:-16.448000pt;}
.wsaa{word-spacing:-15.308800pt;}
.ws6{word-spacing:-15.249920pt;}
.ws7a{word-spacing:-15.014400pt;}
.wsd5{word-spacing:-14.955520pt;}
.wsd4{word-spacing:-14.896640pt;}
.ws7d{word-spacing:-14.837760pt;}
.ws3d{word-spacing:-14.720000pt;}
.ws7b{word-spacing:-14.602240pt;}
.wse8{word-spacing:-14.543360pt;}
.ws66{word-spacing:-14.484480pt;}
.ws7c{word-spacing:-14.425600pt;}
.wsc4{word-spacing:-14.366720pt;}
.ws65{word-spacing:-14.307840pt;}
.wsab{word-spacing:-14.248960pt;}
.ws79{word-spacing:-14.190080pt;}
.ws78{word-spacing:-14.072320pt;}
.wsd0{word-spacing:-13.954560pt;}
.wsc5{word-spacing:-13.895680pt;}
.ws96{word-spacing:-13.598720pt;}
.ws95{word-spacing:-13.386240pt;}
.ws3a{word-spacing:-12.741120pt;}
.wsa{word-spacing:-12.640000pt;}
.ws3b{word-spacing:-12.488320pt;}
.ws1{word-spacing:-12.432000pt;}
.wsb{word-spacing:-12.336640pt;}
.ws0{word-spacing:-12.336000pt;}
.ws8{word-spacing:-12.240000pt;}
.ws102{word-spacing:-12.144000pt;}
.wsa9{word-spacing:-12.096000pt;}
.wse4{word-spacing:-11.904000pt;}
.wsc6{word-spacing:-11.808000pt;}
.ws3f{word-spacing:-11.712000pt;}
.ws7{word-spacing:-11.664000pt;}
.wse5{word-spacing:-11.472000pt;}
.ws2{word-spacing:-9.651200pt;}
.ws3{word-spacing:-9.502720pt;}
.ws3e{word-spacing:-8.640000pt;}
.wsc{word-spacing:-7.360000pt;}
.wsec{word-spacing:-4.003840pt;}
.wsc8{word-spacing:-3.827200pt;}
.ws8f{word-spacing:-3.709440pt;}
.ws6a{word-spacing:-3.179520pt;}
.ws9f{word-spacing:-3.061760pt;}
.wsb2{word-spacing:-2.708480pt;}
.ws67{word-spacing:-2.531840pt;}
.wsf9{word-spacing:-2.472960pt;}
.ws8e{word-spacing:-2.414080pt;}
.ws81{word-spacing:-2.237440pt;}
.wsad{word-spacing:-2.119680pt;}
.wsc3{word-spacing:-2.016000pt;}
.ws59{word-spacing:-1.943040pt;}
.wscc{word-spacing:-1.884160pt;}
.ws28{word-spacing:-1.870720pt;}
.wsa0{word-spacing:-1.825280pt;}
.ws27{word-spacing:-1.769600pt;}
.wsf3{word-spacing:-1.472000pt;}
.wsbd{word-spacing:-1.413120pt;}
.ws101{word-spacing:-1.344000pt;}
.ws4c{word-spacing:-1.295360pt;}
.ws9d{word-spacing:-1.236480pt;}
.ws5f{word-spacing:-1.177600pt;}
.ws22{word-spacing:-1.112320pt;}
.ws23{word-spacing:-0.960640pt;}
.ws62{word-spacing:-0.816000pt;}
.ws84{word-spacing:-0.765440pt;}
.ws92{word-spacing:-0.647680pt;}
.wsac{word-spacing:-0.624000pt;}
.ws10c{word-spacing:-0.588800pt;}
.ws63{word-spacing:-0.576000pt;}
.ws44{word-spacing:-0.556160pt;}
.ws5a{word-spacing:-0.529920pt;}
.ws64{word-spacing:-0.480000pt;}
.wsa5{word-spacing:-0.371840pt;}
.ws10b{word-spacing:-0.294400pt;}
.ws14{word-spacing:-0.256000pt;}
.ws2c{word-spacing:-0.192000pt;}
.wsbe{word-spacing:-0.176640pt;}
.ws2e{word-spacing:-0.151680pt;}
.ws1b{word-spacing:-0.144000pt;}
.wsf{word-spacing:-0.117760pt;}
.ws17{word-spacing:-0.096000pt;}
.wsd{word-spacing:-0.058880pt;}
.ws1a{word-spacing:-0.048000pt;}
.wse{word-spacing:0.000000pt;}
.wsdb{word-spacing:0.048000pt;}
.ws4a{word-spacing:0.050560pt;}
.wsf5{word-spacing:0.058880pt;}
.ws39{word-spacing:0.096000pt;}
.wsa6{word-spacing:0.106240pt;}
.ws12{word-spacing:0.111360pt;}
.ws15{word-spacing:0.117120pt;}
.ws2f{word-spacing:0.117760pt;}
.ws49{word-spacing:0.128000pt;}
.ws2b{word-spacing:0.151680pt;}
.ws16{word-spacing:0.176640pt;}
.ws13{word-spacing:0.256000pt;}
.ws94{word-spacing:0.294400pt;}
.ws4b{word-spacing:0.303360pt;}
.ws19{word-spacing:0.336000pt;}
.wsaf{word-spacing:0.353280pt;}
.ws10{word-spacing:0.384000pt;}
.ws18{word-spacing:0.432000pt;}
.ws2d{word-spacing:0.455040pt;}
.ws109{word-spacing:0.471040pt;}
.wsff{word-spacing:0.529920pt;}
.ws35{word-spacing:0.576000pt;}
.ws40{word-spacing:0.624000pt;}
.ws82{word-spacing:0.647680pt;}
.ws11{word-spacing:0.742400pt;}
.ws83{word-spacing:0.765440pt;}
.ws38{word-spacing:0.768000pt;}
.wsb4{word-spacing:0.824320pt;}
.ws9e{word-spacing:0.883200pt;}
.wsfe{word-spacing:0.942080pt;}
.wsdc{word-spacing:1.104000pt;}
.wsf7{word-spacing:1.177600pt;}
.wsa4{word-spacing:1.274880pt;}
.ws61{word-spacing:1.295360pt;}
.wse3{word-spacing:1.354240pt;}
.ws8d{word-spacing:1.413120pt;}
.ws25{word-spacing:1.466240pt;}
.ws24{word-spacing:1.617920pt;}
.wsbc{word-spacing:1.766400pt;}
.ws1f{word-spacing:1.769600pt;}
.ws5b{word-spacing:1.943040pt;}
.ws46{word-spacing:1.971840pt;}
.ws73{word-spacing:2.060800pt;}
.ws45{word-spacing:2.072960pt;}
.ws47{word-spacing:2.275200pt;}
.ws100{word-spacing:2.355200pt;}
.ws53{word-spacing:2.414080pt;}
.ws34{word-spacing:2.496000pt;}
.ws51{word-spacing:2.590720pt;}
.ws33{word-spacing:2.688000pt;}
.ws52{word-spacing:2.708480pt;}
.ws20{word-spacing:2.730240pt;}
.wse0{word-spacing:2.885120pt;}
.wsdf{word-spacing:3.120000pt;}
.ws58{word-spacing:3.179520pt;}
.ws4f{word-spacing:3.238400pt;}
.ws97{word-spacing:3.297280pt;}
.wsfa{word-spacing:3.356160pt;}
.ws1e{word-spacing:3.387520pt;}
.wscf{word-spacing:3.648000pt;}
.wsc0{word-spacing:3.744000pt;}
.ws4e{word-spacing:3.827200pt;}
.wsed{word-spacing:3.886080pt;}
.wsc1{word-spacing:3.936000pt;}
.wsd6{word-spacing:3.944960pt;}
.ws48{word-spacing:3.994240pt;}
.wsb5{word-spacing:4.121600pt;}
.wsee{word-spacing:4.180480pt;}
.ws86{word-spacing:4.357120pt;}
.ws57{word-spacing:4.474880pt;}
.wsde{word-spacing:4.560000pt;}
.wsca{word-spacing:4.592640pt;}
.wsdd{word-spacing:4.608000pt;}
.ws56{word-spacing:4.769280pt;}
.ws85{word-spacing:4.945920pt;}
.ws74{word-spacing:5.122560pt;}
.wsb7{word-spacing:5.240320pt;}
.ws41{word-spacing:5.258240pt;}
.ws30{word-spacing:5.664000pt;}
.ws6d{word-spacing:5.770240pt;}
.ws31{word-spacing:5.808000pt;}
.wse6{word-spacing:5.829120pt;}
.ws32{word-spacing:5.856000pt;}
.ws71{word-spacing:5.888000pt;}
.ws26{word-spacing:5.915520pt;}
.wsbb{word-spacing:6.241280pt;}
.ws93{word-spacing:6.417920pt;}
.ws72{word-spacing:6.535680pt;}
.wse1{word-spacing:6.888960pt;}
.ws37{word-spacing:6.960000pt;}
.ws6e{word-spacing:7.065600pt;}
.ws36{word-spacing:7.152000pt;}
.ws6c{word-spacing:7.183360pt;}
.wsfc{word-spacing:7.477760pt;}
.ws88{word-spacing:7.536640pt;}
.ws87{word-spacing:7.654400pt;}
.wsb0{word-spacing:7.772160pt;}
.wsce{word-spacing:7.831040pt;}
.wsfb{word-spacing:8.125440pt;}
.wsfd{word-spacing:8.184320pt;}
.ws6f{word-spacing:8.302080pt;}
.wsc2{word-spacing:8.352000pt;}
.ws103{word-spacing:8.360960pt;}
.wscd{word-spacing:8.419840pt;}
.ws5e{word-spacing:8.949760pt;}
.ws5d{word-spacing:9.008640pt;}
.wsd9{word-spacing:9.067520pt;}
.wsd1{word-spacing:9.597440pt;}
.wsa1{word-spacing:9.715200pt;}
.ws1d{word-spacing:9.758080pt;}
.wsf6{word-spacing:9.950720pt;}
.ws6b{word-spacing:10.245120pt;}
.wsa2{word-spacing:10.252160pt;}
.wse9{word-spacing:10.362880pt;}
.ws7e{word-spacing:10.892800pt;}
.ws8c{word-spacing:11.010560pt;}
.ws55{word-spacing:11.540480pt;}
.ws70{word-spacing:11.658240pt;}
.ws7f{word-spacing:12.188160pt;}
.ws10a{word-spacing:12.305920pt;}
.ws21{word-spacing:12.336640pt;}
.wsae{word-spacing:12.776960pt;}
.wsf2{word-spacing:12.894720pt;}
.ws1c{word-spacing:12.943360pt;}
.wsb6{word-spacing:13.424640pt;}
.wsba{word-spacing:13.542400pt;}
.ws107{word-spacing:14.072320pt;}
.wsea{word-spacing:14.190080pt;}
.ws80{word-spacing:14.720000pt;}
.wsa8{word-spacing:14.778880pt;}
.ws4d{word-spacing:14.837760pt;}
.ws108{word-spacing:15.073280pt;}
.wsbf{word-spacing:15.367680pt;}
.wsf4{word-spacing:15.485440pt;}
.ws105{word-spacing:15.838720pt;}
.ws8a{word-spacing:16.015360pt;}
.ws89{word-spacing:16.133120pt;}
.wsb1{word-spacing:16.663040pt;}
.wsda{word-spacing:17.310720pt;}
.ws90{word-spacing:17.899520pt;}
.wsd8{word-spacing:17.958400pt;}
.ws54{word-spacing:18.017280pt;}
.ws29{word-spacing:18.100480pt;}
.ws91{word-spacing:18.370560pt;}
.ws2a{word-spacing:18.403840pt;}
.wsd7{word-spacing:18.429440pt;}
.wsa3{word-spacing:18.538880pt;}
.ws50{word-spacing:18.547200pt;}
.ws42{word-spacing:18.606080pt;}
.wse2{word-spacing:18.664960pt;}
.ws43{word-spacing:18.707200pt;}
.ws104{word-spacing:19.194880pt;}
.wseb{word-spacing:19.312640pt;}
.ws60{word-spacing:19.842560pt;}
.wsb3{word-spacing:19.960320pt;}
.ws8b{word-spacing:20.490240pt;}
.wsc9{word-spacing:21.785600pt;}
.ws9a{word-spacing:21.903360pt;}
.ws99{word-spacing:22.374400pt;}
.wsef{word-spacing:22.433280pt;}
.ws98{word-spacing:22.492160pt;}
.wscb{word-spacing:23.022080pt;}
.wsa7{word-spacing:23.139840pt;}
.ws77{word-spacing:23.669760pt;}
.wsf0{word-spacing:23.787520pt;}
.wsf1{word-spacing:23.905280pt;}
.wsf8{word-spacing:24.023040pt;}
.ws76{word-spacing:24.317440pt;}
.ws75{word-spacing:24.435200pt;}
.wsc7{word-spacing:24.965120pt;}
.ws106{word-spacing:25.082880pt;}
.ws5c{word-spacing:26.908160pt;}
.wsb8{word-spacing:28.144640pt;}
.wsb9{word-spacing:28.262400pt;}
.ws9c{word-spacing:30.087680pt;}
.ws9b{word-spacing:30.205440pt;}
.ws69{word-spacing:30.735360pt;}
.ws68{word-spacing:31.383040pt;}
.wsd2{word-spacing:33.914880pt;}
.wsd3{word-spacing:34.562560pt;}
._3{margin-left:-10.657280pt;}
._5{margin-left:-4.116480pt;}
._9{margin-left:-3.210880pt;}
._4{margin-left:-2.134400pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.099840pt;}
._2{width:2.816000pt;}
._8{width:5.909824pt;}
._6{width:6.998400pt;}
._7{width:9.753920pt;}
._b{width:12.151040pt;}
._a{width:18.448640pt;}
.fs8{font-size:29.440000pt;}
.fsa{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fsb{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:82.560000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:117.120000pt;}
.fs3{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:64.480000pt;}
.y166{bottom:101.114880pt;}
.yae{bottom:102.226560pt;}
.y6a{bottom:105.731200pt;}
.y25{bottom:111.504000pt;}
.y138{bottom:111.508000pt;}
.ye3{bottom:111.512000pt;}
.y4f{bottom:111.516000pt;}
.y8f{bottom:112.465280pt;}
.yc4{bottom:114.048640pt;}
.y107{bottom:114.560000pt;}
.y1ad{bottom:114.880000pt;}
.y165{bottom:120.957440pt;}
.yad{bottom:122.069120pt;}
.y1e1{bottom:125.280000pt;}
.y69{bottom:125.411840pt;}
.y24{bottom:127.668000pt;}
.y137{bottom:127.672000pt;}
.ye2{bottom:127.676000pt;}
.y4e{bottom:131.040000pt;}
.y18b{bottom:131.969920pt;}
.y8e{bottom:132.145920pt;}
.yc3{bottom:133.891200pt;}
.y131{bottom:138.968320pt;}
.y164{bottom:140.800000pt;}
.y1ac{bottom:140.956000pt;}
.yac{bottom:141.911680pt;}
.y23{bottom:143.832000pt;}
.y136{bottom:143.836000pt;}
.y4d{bottom:144.480000pt;}
.y68{bottom:145.254400pt;}
.y153{bottom:145.408640pt;}
.ye1{bottom:147.200000pt;}
.y106{bottom:147.680000pt;}
.y1bf{bottom:150.854400pt;}
.y18a{bottom:151.974400pt;}
.y8d{bottom:151.988480pt;}
.yc2{bottom:153.733760pt;}
.y101{bottom:157.116000pt;}
.y1e0{bottom:158.400000pt;}
.y130{bottom:158.810880pt;}
.y22{bottom:159.996000pt;}
.y163{bottom:160.480000pt;}
.ye0{bottom:160.640000pt;}
.yab{bottom:161.754240pt;}
.y135{bottom:163.360000pt;}
.y67{bottom:165.096960pt;}
.y152{bottom:165.251200pt;}
.y1be{bottom:170.696960pt;}
.y189{bottom:171.816960pt;}
.y100{bottom:176.640000pt;}
.y134{bottom:176.800000pt;}
.y21{bottom:179.520000pt;}
.y162{bottom:180.320000pt;}
.y105{bottom:180.800000pt;}
.y4c{bottom:181.428480pt;}
.yaa{bottom:181.434880pt;}
.y66{bottom:184.939520pt;}
.y8c{bottom:184.946560pt;}
.y151{bottom:185.093760pt;}
.yc1{bottom:186.691840pt;}
.yff{bottom:190.080000pt;}
.y1bd{bottom:190.539520pt;}
.y188{bottom:191.497600pt;}
.y1df{bottom:191.512320pt;}
.y12f{bottom:191.768960pt;}
.y20{bottom:192.960000pt;}
.y161{bottom:200.160000pt;}
.y4b{bottom:201.109120pt;}
.ya9{bottom:201.277440pt;}
.y1ab{bottom:203.520000pt;}
.y65{bottom:204.620160pt;}
.y150{bottom:204.936320pt;}
.y8b{bottom:204.951040pt;}
.yc0{bottom:206.534400pt;}
.y1bc{bottom:210.382080pt;}
.y187{bottom:211.340160pt;}
.y1de{bottom:211.516800pt;}
.y12e{bottom:211.773440pt;}
.y133{bottom:214.240000pt;}
.y104{bottom:216.000000pt;}
.y160{bottom:219.837440pt;}
.y4a{bottom:220.951680pt;}
.ya8{bottom:221.120000pt;}
.y64{bottom:224.462720pt;}
.ydf{bottom:224.616960pt;}
.y8a{bottom:224.631680pt;}
.y1fc{bottom:225.277440pt;}
.ybf{bottom:226.376960pt;}
.y1bb{bottom:230.062720pt;}
.y186{bottom:231.182720pt;}
.y12d{bottom:231.454080pt;}
.y1aa{bottom:234.077440pt;}
.y15f{bottom:239.680000pt;}
.y49{bottom:240.794240pt;}
.y103{bottom:241.900800pt;}
.y63{bottom:244.305280pt;}
.yde{bottom:244.459520pt;}
.y89{bottom:244.474240pt;}
.y1dd{bottom:244.474880pt;}
.y132{bottom:244.640000pt;}
.y1fb{bottom:245.281920pt;}
.ybe{bottom:246.219520pt;}
.y1f{bottom:248.480000pt;}
.y1ba{bottom:249.905280pt;}
.y185{bottom:250.863360pt;}
.y12c{bottom:251.296640pt;}
.ya7{bottom:253.617120pt;}
.y1a9{bottom:253.890560pt;}
.yfe{bottom:260.282240pt;}
.y48{bottom:260.474880pt;}
.y62{bottom:263.985920pt;}
.ydd{bottom:264.302080pt;}
.y88{bottom:264.316800pt;}
.ybd{bottom:265.900160pt;}
.y1b9{bottom:269.747840pt;}
.y184{bottom:270.705920pt;}
.y12b{bottom:271.139200pt;}
.ya6{bottom:271.691200pt;}
.y15e{bottom:272.623360pt;}
.y1a8{bottom:273.571200pt;}
.y1dc{bottom:277.594880pt;}
.y1fa{bottom:278.240000pt;}
.y1e{bottom:279.200000pt;}
.yfd{bottom:280.124800pt;}
.y47{bottom:280.317440pt;}
.y61{bottom:283.828480pt;}
.ydc{bottom:283.982720pt;}
.y87{bottom:283.997440pt;}
.ybc{bottom:285.742720pt;}
.y1b8{bottom:289.428480pt;}
.ya5{bottom:289.605920pt;}
.y12a{bottom:290.819840pt;}
.y15d{bottom:292.627840pt;}
.y1a7{bottom:293.413760pt;}
.y1db{bottom:297.599360pt;}
.yfc{bottom:299.805440pt;}
.y183{bottom:303.664000pt;}
.ydb{bottom:303.825280pt;}
.y86{bottom:303.840000pt;}
.ybb{bottom:305.585280pt;}
.ya4{bottom:307.680000pt;}
.y1b7{bottom:309.271040pt;}
.y129{bottom:310.662400pt;}
.y1f9{bottom:311.360000pt;}
.y1d{bottom:311.556000pt;}
.y15c{bottom:312.308480pt;}
.y1a6{bottom:313.256320pt;}
.y46{bottom:313.275520pt;}
.y60{bottom:316.786560pt;}
.y1da{bottom:317.280000pt;}
.yfb{bottom:319.648000pt;}
.yda{bottom:323.667840pt;}
.y182{bottom:323.668480pt;}
.yba{bottom:325.265920pt;}
.y1c{bottom:328.834880pt;}
.y1b6{bottom:329.113600pt;}
.y128{bottom:330.504960pt;}
.y15b{bottom:332.151040pt;}
.y1a5{bottom:332.936960pt;}
.y45{bottom:333.255680pt;}
.y5f{bottom:336.791040pt;}
.y85{bottom:338.080000pt;}
.ya3{bottom:339.303040pt;}
.yfa{bottom:339.490560pt;}
.yd9{bottom:343.348480pt;}
.y181{bottom:343.349120pt;}
.y1f8{bottom:344.469120pt;}
.yb9{bottom:345.108480pt;}
.y1b{bottom:345.797760pt;}
.y1b5{bottom:348.794240pt;}
.y1d9{bottom:349.920000pt;}
.y127{bottom:350.185600pt;}
.y15a{bottom:351.993600pt;}
.y1a4{bottom:352.779520pt;}
.y44{bottom:352.936320pt;}
.y5e{bottom:356.471680pt;}
.ya2{bottom:359.145600pt;}
.yf9{bottom:359.171200pt;}
.y1a{bottom:362.912320pt;}
.yd8{bottom:363.191040pt;}
.y180{bottom:363.191680pt;}
.y1f7{bottom:364.473600pt;}
.yb8{bottom:364.951040pt;}
.y1b4{bottom:368.636800pt;}
.y126{bottom:370.028160pt;}
.y159{bottom:371.674240pt;}
.y1a3{bottom:372.622080pt;}
.y43{bottom:372.778880pt;}
.y5d{bottom:376.314240pt;}
.y84{bottom:378.826240pt;}
.ya1{bottom:378.988160pt;}
.yf8{bottom:379.013760pt;}
.y19{bottom:380.026880pt;}
.y1d8{bottom:382.840320pt;}
.yd7{bottom:383.033600pt;}
.y17f{bottom:383.034240pt;}
.y1b3{bottom:388.479360pt;}
.y125{bottom:389.870720pt;}
.y158{bottom:391.516800pt;}
.y42{bottom:392.621440pt;}
.y5c{bottom:396.156800pt;}
.y18{bottom:397.141440pt;}
.y1f6{bottom:397.431680pt;}
.yb7{bottom:397.909120pt;}
.ya0{bottom:398.830720pt;}
.yf7{bottom:398.856320pt;}
.yd6{bottom:402.714240pt;}
.y17e{bottom:402.714880pt;}
.y1a2{bottom:405.580160pt;}
.y1b2{bottom:408.160000pt;}
.y124{bottom:409.551360pt;}
.y157{bottom:411.359360pt;}
.y83{bottom:411.946240pt;}
.y41{bottom:412.302080pt;}
.y17{bottom:414.256000pt;}
.y5b{bottom:415.837440pt;}
.y1d7{bottom:415.960320pt;}
.y1f5{bottom:417.274240pt;}
.yb6{bottom:417.751680pt;}
.y9f{bottom:418.511360pt;}
.yf6{bottom:418.536960pt;}
.yd5{bottom:422.556800pt;}
.y17d{bottom:422.557440pt;}
.y1a1{bottom:425.422720pt;}
.y123{bottom:429.393920pt;}
.y156{bottom:431.040000pt;}
.y16{bottom:431.218880pt;}
.y82{bottom:431.950720pt;}
.y40{bottom:432.144640pt;}
.y5a{bottom:435.680000pt;}
.y1d6{bottom:435.802880pt;}
.yb5{bottom:437.594240pt;}
.y9e{bottom:438.353920pt;}
.yf5{bottom:438.379520pt;}
.yd4{bottom:442.399360pt;}
.y17c{bottom:442.400000pt;}
.y1b1{bottom:443.196000pt;}
.y1a0{bottom:445.265280pt;}
.y15{bottom:448.333440pt;}
.y122{bottom:449.236480pt;}
.y1f4{bottom:450.232320pt;}
.y81{bottom:451.631360pt;}
.y3f{bottom:451.987200pt;}
.y1d5{bottom:455.645440pt;}
.yb4{bottom:457.436800pt;}
.y9d{bottom:458.196480pt;}
.yf4{bottom:458.222080pt;}
.y1b0{bottom:459.360000pt;}
.yd3{bottom:462.080000pt;}
.y19f{bottom:465.107840pt;}
.y14{bottom:465.448000pt;}
.y155{bottom:465.920000pt;}
.y121{bottom:468.917120pt;}
.y1f3{bottom:470.236800pt;}
.y59{bottom:470.560000pt;}
.y80{bottom:471.473920pt;}
.y3e{bottom:471.667840pt;}
.y1d4{bottom:475.488000pt;}
.y17b{bottom:476.640000pt;}
.yb3{bottom:477.117440pt;}
.y9c{bottom:477.877120pt;}
.y13{bottom:482.562560pt;}
.y19e{bottom:484.788480pt;}
.y1af{bottom:485.266560pt;}
.y120{bottom:488.759680pt;}
.yf3{bottom:491.180160pt;}
.y7f{bottom:491.316480pt;}
.y3d{bottom:491.510400pt;}
.y154{bottom:491.993600pt;}
.y1d3{bottom:495.168640pt;}
.yd2{bottom:496.320000pt;}
.y58{bottom:496.630400pt;}
.yb2{bottom:496.960000pt;}
.y9b{bottom:497.719680pt;}
.y12{bottom:499.677120pt;}
.y1f2{bottom:503.194880pt;}
.y19d{bottom:504.631040pt;}
.y7e{bottom:510.997120pt;}
.yf2{bottom:511.022720pt;}
.y3c{bottom:511.352960pt;}
.y1d2{bottom:515.011200pt;}
.y11{bottom:516.640000pt;}
.y17a{bottom:517.414400pt;}
.y11f{bottom:521.717760pt;}
.y1f1{bottom:523.199360pt;}
.y19c{bottom:524.473600pt;}
.y9a{bottom:530.677760pt;}
.y7d{bottom:530.839680pt;}
.yf1{bottom:530.865280pt;}
.y3b{bottom:531.033600pt;}
.yb1{bottom:531.836000pt;}
.y1d1{bottom:534.853760pt;}
.y14f{bottom:537.082880pt;}
.yd1{bottom:537.095680pt;}
.y11e{bottom:541.722240pt;}
.y19b{bottom:544.154240pt;}
.y10{bottom:547.200000pt;}
.yb0{bottom:548.000000pt;}
.y179{bottom:550.534400pt;}
.y7c{bottom:550.682240pt;}
.yf0{bottom:550.707840pt;}
.y3a{bottom:550.876160pt;}
.y1d0{bottom:554.534400pt;}
.y1f0{bottom:556.157440pt;}
.y11d{bottom:561.402880pt;}
.y19a{bottom:563.996800pt;}
.y14e{bottom:570.202880pt;}
.yd0{bottom:570.215680pt;}
.y7b{bottom:570.362880pt;}
.y178{bottom:570.376960pt;}
.yef{bottom:570.388480pt;}
.y39{bottom:570.718720pt;}
.yaf{bottom:574.080000pt;}
.y1cf{bottom:574.376960pt;}
.y1ef{bottom:576.000000pt;}
.yf{bottom:579.356000pt;}
.y11c{bottom:581.245440pt;}
.y99{bottom:590.205440pt;}
.y14d{bottom:590.207360pt;}
.y177{bottom:590.219520pt;}
.ycf{bottom:590.220160pt;}
.yee{bottom:590.231040pt;}
.y38{bottom:590.399360pt;}
.y199{bottom:596.954880pt;}
.y11b{bottom:601.088000pt;}
.y7a{bottom:603.320960pt;}
.y1ce{bottom:607.335040pt;}
.y1ee{bottom:608.952320pt;}
.ye{bottom:608.960000pt;}
.y98{bottom:610.048000pt;}
.y14c{bottom:610.049920pt;}
.y176{bottom:610.062080pt;}
.yce{bottom:610.062720pt;}
.yed{bottom:610.073600pt;}
.y198{bottom:616.959360pt;}
.y11a{bottom:620.768640pt;}
.y79{bottom:623.325440pt;}
.y37{bottom:624.800000pt;}
.yd{bottom:625.276160pt;}
.y1cd{bottom:627.339520pt;}
.y1ed{bottom:628.956800pt;}
.y97{bottom:629.728640pt;}
.y14b{bottom:629.730560pt;}
.y175{bottom:629.742720pt;}
.ycd{bottom:629.743360pt;}
.yec{bottom:629.754240pt;}
.y197{bottom:636.602880pt;}
.y119{bottom:640.611200pt;}
.yc{bottom:642.719360pt;}
.y78{bottom:643.168000pt;}
.y1cc{bottom:647.020160pt;}
.y1ec{bottom:648.799360pt;}
.y96{bottom:649.571200pt;}
.y14a{bottom:649.573120pt;}
.ycc{bottom:649.585920pt;}
.yeb{bottom:649.596800pt;}
.y196{bottom:656.445440pt;}
.yb{bottom:660.324480pt;}
.y118{bottom:660.453760pt;}
.y174{bottom:662.700800pt;}
.y77{bottom:662.848640pt;}
.y36{bottom:665.600000pt;}
.y1cb{bottom:666.862720pt;}
.y95{bottom:669.413760pt;}
.y149{bottom:669.415680pt;}
.ycb{bottom:669.428480pt;}
.yea{bottom:669.439360pt;}
.y195{bottom:676.288000pt;}
.y117{bottom:680.134400pt;}
.y1eb{bottom:681.757440pt;}
.y76{bottom:682.691200pt;}
.y173{bottom:682.705280pt;}
.y1ca{bottom:686.705280pt;}
.y94{bottom:689.094400pt;}
.y148{bottom:689.096320pt;}
.ye9{bottom:689.117440pt;}
.ya{bottom:691.840000pt;}
.y194{bottom:695.968640pt;}
.y35{bottom:698.720000pt;}
.y116{bottom:699.976960pt;}
.y1ea{bottom:701.600000pt;}
.yca{bottom:702.386560pt;}
.y75{bottom:702.533760pt;}
.y172{bottom:702.547840pt;}
.y1c9{bottom:706.385920pt;}
.ye8{bottom:708.936960pt;}
.y147{bottom:708.938880pt;}
.y9{bottom:713.435840pt;}
.y193{bottom:715.811200pt;}
.y93{bottom:722.052480pt;}
.y74{bottom:722.214400pt;}
.y171{bottom:722.228480pt;}
.yc9{bottom:722.229120pt;}
.y1c8{bottom:726.228480pt;}
.y146{bottom:728.781440pt;}
.y34{bottom:731.200000pt;}
.y115{bottom:732.935040pt;}
.y1e9{bottom:734.554880pt;}
.y192{bottom:735.653760pt;}
.ye7{bottom:741.895040pt;}
.y73{bottom:742.056960pt;}
.y170{bottom:742.071040pt;}
.yc8{bottom:742.071680pt;}
.y8{bottom:743.360000pt;}
.y1c7{bottom:746.071040pt;}
.y145{bottom:748.462080pt;}
.y114{bottom:752.939520pt;}
.y1e8{bottom:754.559360pt;}
.y191{bottom:755.334400pt;}
.y33{bottom:761.759867pt;}
.y72{bottom:761.899520pt;}
.y16f{bottom:761.913600pt;}
.yc7{bottom:761.914240pt;}
.y1c6{bottom:765.751680pt;}
.y113{bottom:772.620160pt;}
.y190{bottom:775.176960pt;}
.y7{bottom:779.968000pt;}
.y102{bottom:781.418240pt;}
.y144{bottom:781.420160pt;}
.y71{bottom:781.580160pt;}
.y16e{bottom:781.594240pt;}
.yc6{bottom:781.594880pt;}
.y1c5{bottom:785.594240pt;}
.y1e7{bottom:787.517440pt;}
.y112{bottom:792.462720pt;}
.y32{bottom:794.118880pt;}
.y18f{bottom:795.019520pt;}
.y70{bottom:801.422720pt;}
.y143{bottom:801.424640pt;}
.y16d{bottom:801.436800pt;}
.yc5{bottom:801.437440pt;}
.y1c4{bottom:805.436800pt;}
.y31{bottom:811.397760pt;}
.y111{bottom:812.305280pt;}
.y18e{bottom:814.700160pt;}
.y1e6{bottom:820.637440pt;}
.y6f{bottom:821.265280pt;}
.y142{bottom:821.267200pt;}
.y16c{bottom:821.279360pt;}
.y1c3{bottom:825.117440pt;}
.y30{bottom:828.512320pt;}
.y110{bottom:831.985920pt;}
.y18d{bottom:834.542720pt;}
.y1e5{bottom:840.641920pt;}
.y6e{bottom:840.945920pt;}
.y141{bottom:840.947840pt;}
.y16b{bottom:840.960000pt;}
.y1c2{bottom:844.960000pt;}
.y6{bottom:845.248000pt;}
.y2f{bottom:845.626880pt;}
.y10f{bottom:851.828480pt;}
.y57{bottom:854.223360pt;}
.y18c{bottom:854.385280pt;}
.y6d{bottom:860.788480pt;}
.y140{bottom:860.790400pt;}
.y2e{bottom:862.589760pt;}
.y10e{bottom:871.671040pt;}
.y1e4{bottom:873.600000pt;}
.y16a{bottom:873.920000pt;}
.y56{bottom:874.065920pt;}
.y1c1{bottom:879.200000pt;}
.y2d{bottom:879.704320pt;}
.y6c{bottom:880.631040pt;}
.y13f{bottom:880.632960pt;}
.y10d{bottom:891.351680pt;}
.y55{bottom:893.908480pt;}
.y169{bottom:893.920000pt;}
.y2c{bottom:896.818880pt;}
.y92{bottom:900.311680pt;}
.y13e{bottom:900.313600pt;}
.y1e3{bottom:906.720000pt;}
.y5{bottom:910.528000pt;}
.y10c{bottom:911.194240pt;}
.y6b{bottom:913.589120pt;}
.y54{bottom:913.751040pt;}
.y168{bottom:913.760000pt;}
.y2b{bottom:913.933440pt;}
.y1c0{bottom:919.992320pt;}
.y91{bottom:920.154240pt;}
.y13d{bottom:920.156160pt;}
.y10b{bottom:931.036800pt;}
.y2a{bottom:931.048000pt;}
.y1ae{bottom:933.269760pt;}
.y53{bottom:933.431680pt;}
.y167{bottom:933.440000pt;}
.y1e2{bottom:939.834880pt;}
.ye6{bottom:939.996800pt;}
.y13c{bottom:939.998720pt;}
.y29{bottom:948.010880pt;}
.y10a{bottom:950.717440pt;}
.y90{bottom:953.112320pt;}
.y52{bottom:953.274240pt;}
.ye5{bottom:959.677440pt;}
.y13b{bottom:959.679360pt;}
.y28{bottom:965.125440pt;}
.y109{bottom:970.560000pt;}
.y51{bottom:973.116800pt;}
.y4{bottom:975.680000pt;}
.y13a{bottom:979.521920pt;}
.y27{bottom:982.240000pt;}
.ye4{bottom:992.635520pt;}
.y50{bottom:992.797440pt;}
.y108{bottom:1004.800000pt;}
.y139{bottom:1012.480000pt;}
.y26{bottom:1012.640000pt;}
.y2{bottom:1043.996800pt;}
.y1{bottom:1061.440000pt;}
.hc{height:30.950625pt;}
.h4{height:35.235000pt;}
.h3{height:39.243750pt;}
.h9{height:44.390625pt;}
.hf{height:44.406625pt;}
.hb{height:46.758125pt;}
.h10{height:49.125625pt;}
.h8{height:54.452500pt;}
.h13{height:54.462740pt;}
.h17{height:54.472980pt;}
.h16{height:54.483220pt;}
.h18{height:54.496020pt;}
.h11{height:54.511380pt;}
.h12{height:54.544660pt;}
.he{height:54.549780pt;}
.h15{height:54.570260pt;}
.h14{height:54.600980pt;}
.h2{height:55.890000pt;}
.ha{height:60.750000pt;}
.hd{height:72.656250pt;}
.h7{height:111.172500pt;}
.h5{height:243.000000pt;}
.h6{height:243.128000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.560000pt;}
.x2{left:132.320000pt;}
.x7{left:141.760000pt;}
.x8{left:179.672000pt;}
.xb{left:212.160000pt;}
.x6{left:265.440000pt;}
.x3{left:269.280000pt;}
.x4{left:499.680000pt;}
.xa{left:638.080000pt;}
.x9{left:697.756160pt;}
.x5{left:699.213440pt;}
}




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