
    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_e0d776812537d6828875ed00.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8071c239bbba13dfffe37208.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_cecb863d342d202103b09687.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b1f644c92404a219a2701621.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_60bd5ae0880296d58295c519.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_75fb01d842b0b980f5e7116b.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:36.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.005832px;}
.lsb{letter-spacing:0.009600px;}
.ls1{letter-spacing:0.010200px;}
.ls7{letter-spacing:0.198000px;}
.ls9{letter-spacing:0.443400px;}
.lsa{letter-spacing:1.518000px;}
.ls8{letter-spacing:5.544000px;}
.ls6{letter-spacing:8.051400px;}
.ls3{letter-spacing:14.846400px;}
.ls5{letter-spacing:170.244600px;}
.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;}
}
.wsc6{word-spacing:-23.892000px;}
.wsf3{word-spacing:-19.866000px;}
.wsc5{word-spacing:-18.546000px;}
.ws0{word-spacing:-18.348000px;}
.wsa1{word-spacing:-13.344000px;}
.wsb2{word-spacing:-10.098000px;}
.wseb{word-spacing:-8.382000px;}
.wsbe{word-spacing:-7.722000px;}
.wsfb{word-spacing:-6.204000px;}
.ws2a{word-spacing:-5.808000px;}
.ws8f{word-spacing:-5.280000px;}
.wsfd{word-spacing:-5.016000px;}
.wsd7{word-spacing:-4.950000px;}
.ws10a{word-spacing:-4.686000px;}
.ws74{word-spacing:-4.620000px;}
.ws99{word-spacing:-4.488000px;}
.ws10e{word-spacing:-4.224000px;}
.ws54{word-spacing:-4.092000px;}
.wsbd{word-spacing:-3.894000px;}
.ws6a{word-spacing:-3.564000px;}
.ws83{word-spacing:-3.498000px;}
.ws69{word-spacing:-3.432000px;}
.ws18{word-spacing:-3.366000px;}
.ws11{word-spacing:-3.300000px;}
.wsb1{word-spacing:-3.168000px;}
.wsba{word-spacing:-3.102000px;}
.wsb6{word-spacing:-3.036000px;}
.ws5e{word-spacing:-2.904000px;}
.ws36{word-spacing:-2.772000px;}
.ws58{word-spacing:-2.706000px;}
.ws52{word-spacing:-2.574000px;}
.ws78{word-spacing:-2.508000px;}
.ws51{word-spacing:-2.442000px;}
.ws5d{word-spacing:-2.376000px;}
.ws48{word-spacing:-2.310000px;}
.wsb0{word-spacing:-2.244000px;}
.ws7b{word-spacing:-2.178000px;}
.ws61{word-spacing:-2.112000px;}
.ws6b{word-spacing:-2.046000px;}
.wsae{word-spacing:-1.848000px;}
.ws3f{word-spacing:-1.650000px;}
.ws2c{word-spacing:-1.584000px;}
.ws103{word-spacing:-1.518000px;}
.wsd{word-spacing:-1.452000px;}
.ws4e{word-spacing:-1.386000px;}
.ws8d{word-spacing:-1.320000px;}
.ws57{word-spacing:-1.188000px;}
.ws17{word-spacing:-1.056000px;}
.ws7c{word-spacing:-0.990000px;}
.wsaf{word-spacing:-0.924000px;}
.ws9b{word-spacing:-0.858000px;}
.ws89{word-spacing:-0.792000px;}
.ws9a{word-spacing:-0.726000px;}
.ws7a{word-spacing:-0.660000px;}
.wse{word-spacing:-0.594000px;}
.wsea{word-spacing:-0.528000px;}
.ws20{word-spacing:-0.396000px;}
.ws88{word-spacing:-0.330000px;}
.ws55{word-spacing:-0.264000px;}
.wsf{word-spacing:-0.198000px;}
.wsb7{word-spacing:-0.132000px;}
.ws1{word-spacing:0.000000px;}
.wsed{word-spacing:0.066000px;}
.ws62{word-spacing:0.132000px;}
.ws6e{word-spacing:0.198000px;}
.ws25{word-spacing:0.264000px;}
.wsb5{word-spacing:0.330000px;}
.ws9e{word-spacing:0.396000px;}
.ws100{word-spacing:0.462000px;}
.ws44{word-spacing:0.528000px;}
.ws2e{word-spacing:0.594000px;}
.wsbf{word-spacing:0.660000px;}
.ws3b{word-spacing:0.726000px;}
.ws84{word-spacing:0.792000px;}
.ws81{word-spacing:0.858000px;}
.ws14{word-spacing:0.990000px;}
.ws31{word-spacing:1.122000px;}
.ws33{word-spacing:1.254000px;}
.wsf5{word-spacing:1.320000px;}
.ws10b{word-spacing:1.386000px;}
.wsec{word-spacing:1.518000px;}
.ws43{word-spacing:1.584000px;}
.wsf8{word-spacing:1.650000px;}
.wsc{word-spacing:1.782000px;}
.ws21{word-spacing:1.848000px;}
.ws9c{word-spacing:2.046000px;}
.ws4c{word-spacing:2.112000px;}
.wsa0{word-spacing:2.178000px;}
.ws49{word-spacing:2.310000px;}
.ws56{word-spacing:2.508000px;}
.ws6d{word-spacing:2.574000px;}
.ws9d{word-spacing:2.640000px;}
.ws16{word-spacing:2.706000px;}
.ws80{word-spacing:2.772000px;}
.wsa{word-spacing:2.838000px;}
.ws29{word-spacing:2.904000px;}
.ws73{word-spacing:2.970000px;}
.ws96{word-spacing:3.036000px;}
.ws2f{word-spacing:3.234000px;}
.ws8b{word-spacing:3.300000px;}
.ws26{word-spacing:3.366000px;}
.ws1f{word-spacing:3.432000px;}
.ws10c{word-spacing:3.564000px;}
.ws13{word-spacing:3.630000px;}
.wse5{word-spacing:3.696000px;}
.ws46{word-spacing:3.762000px;}
.ws4b{word-spacing:3.828000px;}
.ws5a{word-spacing:3.894000px;}
.ws15{word-spacing:3.960000px;}
.wsfe{word-spacing:4.026000px;}
.ws10f{word-spacing:4.092000px;}
.wsd6{word-spacing:4.356000px;}
.ws28{word-spacing:4.422000px;}
.ws2b{word-spacing:4.488000px;}
.ws75{word-spacing:4.554000px;}
.ws19{word-spacing:4.620000px;}
.wsee{word-spacing:4.686000px;}
.wsad{word-spacing:4.752000px;}
.ws5b{word-spacing:4.884000px;}
.ws9{word-spacing:4.950000px;}
.wsbb{word-spacing:5.016000px;}
.wsbc{word-spacing:5.148000px;}
.ws27{word-spacing:5.214000px;}
.ws90{word-spacing:5.280000px;}
.ws4a{word-spacing:5.412000px;}
.ws60{word-spacing:5.478000px;}
.ws2d{word-spacing:5.544000px;}
.ws38{word-spacing:5.676000px;}
.ws63{word-spacing:5.742000px;}
.ws3e{word-spacing:5.808000px;}
.ws41{word-spacing:5.874000px;}
.ws79{word-spacing:6.006000px;}
.ws1a{word-spacing:6.072000px;}
.ws8{word-spacing:6.138000px;}
.ws4d{word-spacing:6.336000px;}
.ws10{word-spacing:6.402000px;}
.ws10d{word-spacing:6.534000px;}
.ws40{word-spacing:6.600000px;}
.ws3d{word-spacing:6.732000px;}
.ws68{word-spacing:6.864000px;}
.ws67{word-spacing:6.996000px;}
.ws7{word-spacing:7.062000px;}
.ws22{word-spacing:7.194000px;}
.wsd8{word-spacing:7.392000px;}
.ws6{word-spacing:7.524000px;}
.ws47{word-spacing:7.590000px;}
.ws65{word-spacing:7.656000px;}
.wsc8{word-spacing:7.722000px;}
.ws76{word-spacing:7.788000px;}
.ws85{word-spacing:7.920000px;}
.ws97{word-spacing:7.986000px;}
.wsca{word-spacing:8.052000px;}
.ws6f{word-spacing:8.250000px;}
.ws6c{word-spacing:8.316000px;}
.ws71{word-spacing:8.382000px;}
.ws8c{word-spacing:8.448000px;}
.ws7f{word-spacing:8.580000px;}
.ws45{word-spacing:8.646000px;}
.ws23{word-spacing:8.712000px;}
.ws77{word-spacing:8.778000px;}
.ws35{word-spacing:8.844000px;}
.wsc2{word-spacing:8.910000px;}
.wsf0{word-spacing:8.976000px;}
.ws3c{word-spacing:9.042000px;}
.ws3a{word-spacing:9.108000px;}
.wsc3{word-spacing:9.306000px;}
.wsf4{word-spacing:9.372000px;}
.ws3{word-spacing:9.438000px;}
.wsfa{word-spacing:9.504000px;}
.ws86{word-spacing:9.768000px;}
.ws30{word-spacing:9.834000px;}
.wsc4{word-spacing:9.900000px;}
.ws39{word-spacing:9.966000px;}
.ws37{word-spacing:10.032000px;}
.wscb{word-spacing:10.098000px;}
.ws113{word-spacing:10.230000px;}
.ws5{word-spacing:10.296000px;}
.wsc1{word-spacing:10.362000px;}
.wse4{word-spacing:10.428000px;}
.ws12{word-spacing:10.494000px;}
.ws8e{word-spacing:10.560000px;}
.ws24{word-spacing:10.626000px;}
.ws34{word-spacing:10.692000px;}
.wsb{word-spacing:10.758000px;}
.ws107{word-spacing:10.824000px;}
.wsf9{word-spacing:10.890000px;}
.wsf7{word-spacing:11.022000px;}
.ws64{word-spacing:11.220000px;}
.ws114{word-spacing:11.550000px;}
.wsd0{word-spacing:11.616000px;}
.wsc0{word-spacing:11.682000px;}
.wsb3{word-spacing:11.748000px;}
.ws91{word-spacing:11.814000px;}
.wsb4{word-spacing:11.880000px;}
.ws42{word-spacing:12.078000px;}
.ws101{word-spacing:12.210000px;}
.ws82{word-spacing:12.276000px;}
.ws98{word-spacing:12.342000px;}
.ws1c{word-spacing:12.474000px;}
.wsfc{word-spacing:12.672000px;}
.ws93{word-spacing:12.870000px;}
.ws108{word-spacing:13.002000px;}
.ws53{word-spacing:13.068000px;}
.ws112{word-spacing:13.134000px;}
.ws9f{word-spacing:13.200000px;}
.ws116{word-spacing:13.266000px;}
.ws95{word-spacing:13.398000px;}
.ws7d{word-spacing:13.596000px;}
.ws72{word-spacing:13.728000px;}
.ws110{word-spacing:13.860000px;}
.wsd4{word-spacing:13.926000px;}
.wsff{word-spacing:14.058000px;}
.ws50{word-spacing:14.190000px;}
.ws8a{word-spacing:14.256000px;}
.wsb8{word-spacing:14.322000px;}
.wsdb{word-spacing:14.454000px;}
.ws102{word-spacing:14.520000px;}
.wsf6{word-spacing:14.718000px;}
.ws66{word-spacing:14.850000px;}
.ws87{word-spacing:14.982000px;}
.ws1d{word-spacing:15.048000px;}
.wsdc{word-spacing:15.114000px;}
.ws111{word-spacing:15.180000px;}
.ws106{word-spacing:15.378000px;}
.wscc{word-spacing:15.510000px;}
.ws7e{word-spacing:15.576000px;}
.wse0{word-spacing:15.972000px;}
.wsc9{word-spacing:16.038000px;}
.ws1b{word-spacing:16.170000px;}
.wsf1{word-spacing:16.566000px;}
.wsda{word-spacing:16.698000px;}
.ws4f{word-spacing:16.764000px;}
.ws1e{word-spacing:17.358000px;}
.wsd3{word-spacing:17.556000px;}
.ws94{word-spacing:18.084000px;}
.wsde{word-spacing:18.282000px;}
.wsb9{word-spacing:18.546000px;}
.wsce{word-spacing:18.744000px;}
.wscd{word-spacing:19.074000px;}
.ws59{word-spacing:19.338000px;}
.wsdf{word-spacing:19.536000px;}
.wsf2{word-spacing:19.668000px;}
.wsd9{word-spacing:19.734000px;}
.wsd1{word-spacing:19.998000px;}
.ws118{word-spacing:20.328000px;}
.ws32{word-spacing:20.592000px;}
.wse7{word-spacing:20.790000px;}
.wsc7{word-spacing:20.856000px;}
.wsef{word-spacing:22.704000px;}
.wse9{word-spacing:24.024000px;}
.ws109{word-spacing:24.816000px;}
.ws117{word-spacing:25.080000px;}
.ws4{word-spacing:25.212000px;}
.ws5c{word-spacing:26.070000px;}
.ws104{word-spacing:26.202000px;}
.ws2{word-spacing:26.400000px;}
.wsd5{word-spacing:26.532000px;}
.wse6{word-spacing:26.928000px;}
.ws5f{word-spacing:31.152000px;}
.wse3{word-spacing:32.538000px;}
.wse1{word-spacing:34.980000px;}
.wsdd{word-spacing:35.046000px;}
.ws70{word-spacing:37.224000px;}
.wse8{word-spacing:37.488000px;}
.wscf{word-spacing:38.874000px;}
.wsd2{word-spacing:39.270000px;}
.ws105{word-spacing:40.788000px;}
.ws115{word-spacing:61.182000px;}
.wse2{word-spacing:135.234000px;}
.wsa3{word-spacing:153.786600px;}
.wsa7{word-spacing:161.766600px;}
.wsa2{word-spacing:170.461800px;}
.wsac{word-spacing:182.296800px;}
.wsa4{word-spacing:187.137600px;}
.wsa6{word-spacing:192.276000px;}
.wsab{word-spacing:202.882200px;}
.wsa5{word-spacing:278.910000px;}
.wsa8{word-spacing:291.306000px;}
.ws92{word-spacing:359.407800px;}
.wsa9{word-spacing:422.925000px;}
.wsaa{word-spacing:654.242400px;}
._6b{margin-left:-23.014200px;}
._c{margin-left:-20.052000px;}
._6{margin-left:-18.077400px;}
._d{margin-left:-17.021400px;}
._6a{margin-left:-15.292200px;}
._73{margin-left:-8.507400px;}
._0{margin-left:-7.409775px;}
._2{margin-left:-6.232800px;}
._1{margin-left:-4.302000px;}
._4{margin-left:-3.133200px;}
._3{margin-left:-1.486800px;}
._7{width:1.036800px;}
._8{width:2.739000px;}
._a{width:3.993000px;}
._b{width:5.031000px;}
._5{width:6.161400px;}
._e{width:7.563600px;}
._6c{width:8.573400px;}
._9{width:9.754800px;}
._76{width:11.107200px;}
._6f{width:12.276000px;}
._71{width:13.938600px;}
._70{width:15.107400px;}
._75{width:16.698000px;}
._6d{width:20.367600px;}
._72{width:26.528400px;}
._74{width:35.198400px;}
._6e{width:38.938800px;}
._64{width:120.721800px;}
._36{width:150.359400px;}
._4d{width:170.466600px;}
._4a{width:187.141800px;}
._63{width:188.493000px;}
._3c{width:192.049800px;}
._39{width:200.390400px;}
._50{width:203.817600px;}
._69{width:205.081800px;}
._5f{width:208.882800px;}
._5e{width:218.221800px;}
._35{width:222.757800px;}
._61{width:225.631200px;}
._13{width:228.310200px;}
._68{width:231.237000px;}
._5a{width:234.900600px;}
._67{width:239.607600px;}
._5d{width:242.106600px;}
._60{width:245.931000px;}
._56{width:252.411000px;}
._3b{width:256.118400px;}
._1a{width:258.156600px;}
._4b{width:262.304400px;}
._34{width:266.347200px;}
._2f{width:268.576800px;}
._4c{width:271.480200px;}
._38{width:281.137200px;}
._66{width:289.558200px;}
._52{width:296.946000px;}
._12{width:299.707200px;}
._59{width:301.257600px;}
._48{width:305.711400px;}
._11{width:308.211600px;}
._58{width:309.521400px;}
._49{width:313.630800px;}
._3e{width:315.818400px;}
._41{width:317.893200px;}
._53{width:322.391400px;}
._55{width:328.329600px;}
._5c{width:344.515800px;}
._45{width:351.213600px;}
._19{width:359.407200px;}
._40{width:361.634400px;}
._4f{width:363.105000px;}
._54{width:364.437000px;}
._17{width:367.911600px;}
._51{width:368.995800px;}
._47{width:370.686000px;}
._32{width:372.992400px;}
._2d{width:376.256400px;}
._18{width:384.427200px;}
._21{width:386.822400px;}
._5b{width:389.546400px;}
._1f{width:392.936400px;}
._2b{width:394.984200px;}
._23{width:401.266800px;}
._20{width:403.378800px;}
._1c{width:409.625400px;}
._2e{width:411.655200px;}
._33{width:416.026200px;}
._1d{width:417.777600px;}
._31{width:420.031800px;}
._57{width:422.901000px;}
._4e{width:424.033200px;}
._25{width:426.127200px;}
._15{width:434.631600px;}
._10{width:437.040000px;}
._29{width:446.955000px;}
._46{width:449.273400px;}
._43{width:451.147200px;}
._26{width:458.612400px;}
._37{width:461.077800px;}
._f{width:470.274000px;}
._28{width:478.573200px;}
._3a{width:484.443000px;}
._3d{width:517.564200px;}
._27{width:518.640600px;}
._3f{width:534.229200px;}
._22{width:538.588200px;}
._44{width:542.559000px;}
._24{width:546.937800px;}
._16{width:553.589400px;}
._42{width:559.253400px;}
._1b{width:561.924600px;}
._1e{width:584.349975px;}
._14{width:586.958400px;}
._2c{width:600.285600px;}
._2a{width:603.615600px;}
._30{width:622.527000px;}
._65{width:686.527800px;}
._62{width:759.265800px;}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(85,85,85);}
.fc5{color:rgb(27,27,27);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(33,33,33);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:38.478000px;}
.fs6{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:199.724400px;}
.y0{bottom:0.000000px;}
.y124{bottom:40.288200px;}
.y123{bottom:55.288200px;}
.yf4{bottom:70.258800px;}
.y122{bottom:70.288200px;}
.y84{bottom:81.973800px;}
.y2{bottom:85.039350px;}
.y121{bottom:85.663200px;}
.y149{bottom:85.952250px;}
.ya3{bottom:85.954050px;}
.y17b{bottom:87.967950px;}
.y2f{bottom:90.200250px;}
.y4f{bottom:91.400100px;}
.yca{bottom:92.214000px;}
.yf3{bottom:93.179100px;}
.y1c5{bottom:93.962100px;}
.y192{bottom:96.471900px;}
.y1d4{bottom:98.214000px;}
.y83{bottom:100.723800px;}
.y148{bottom:100.952250px;}
.y1a9{bottom:102.460050px;}
.ya2{bottom:104.704050px;}
.y17a{bottom:106.717950px;}
.y120{bottom:108.583500px;}
.y2e{bottom:108.950250px;}
.y4e{bottom:110.150100px;}
.yc9{bottom:110.964000px;}
.y1c4{bottom:112.712100px;}
.y191{bottom:115.221900px;}
.yf2{bottom:116.099550px;}
.y1d3{bottom:116.964000px;}
.y82{bottom:119.473800px;}
.y1a8{bottom:121.210050px;}
.ya1{bottom:123.454050px;}
.y179{bottom:125.467950px;}
.y11f{bottom:126.583500px;}
.y2d{bottom:127.700250px;}
.y4d{bottom:128.900100px;}
.yc8{bottom:129.714000px;}
.y1c3{bottom:131.462100px;}
.y190{bottom:133.971900px;}
.y147{bottom:135.129600px;}
.y81{bottom:138.223800px;}
.yf1{bottom:139.020000px;}
.y1a7{bottom:139.960050px;}
.y1d2{bottom:139.965900px;}
.ya0{bottom:142.204050px;}
.y4c{bottom:147.650100px;}
.yc7{bottom:148.464000px;}
.y178{bottom:148.469850px;}
.y11e{bottom:149.503950px;}
.y1c2{bottom:150.212100px;}
.y18f{bottom:152.721900px;}
.y1a6{bottom:158.710050px;}
.y1d1{bottom:158.715900px;}
.y2c{bottom:159.206100px;}
.y9f{bottom:160.954050px;}
.y80{bottom:161.225700px;}
.y146{bottom:161.852400px;}
.yf0{bottom:161.940450px;}
.yc6{bottom:167.214000px;}
.y177{bottom:167.219850px;}
.y11d{bottom:167.503950px;}
.yd9{bottom:171.465900px;}
.y18e{bottom:171.471900px;}
.y1c1{bottom:173.214000px;}
.y1a5{bottom:177.460050px;}
.y1d0{bottom:177.465900px;}
.y4b{bottom:179.156100px;}
.y9e{bottom:179.704050px;}
.y7f{bottom:179.975700px;}
.y145{bottom:184.772700px;}
.yef{bottom:184.860750px;}
.yc5{bottom:185.964000px;}
.y176{bottom:185.969850px;}
.yd8{bottom:190.215900px;}
.y11c{bottom:190.424400px;}
.y2b{bottom:190.458000px;}
.y1c0{bottom:191.964000px;}
.y18d{bottom:194.473800px;}
.y1cf{bottom:196.215900px;}
.y9d{bottom:198.454050px;}
.y7e{bottom:198.725700px;}
.y1a4{bottom:200.462100px;}
.yc4{bottom:204.714000px;}
.y175{bottom:204.719850px;}
.y144{bottom:207.693150px;}
.yee{bottom:207.781200px;}
.y11b{bottom:208.424400px;}
.yd7{bottom:208.965900px;}
.y2a{bottom:209.208000px;}
.y1bf{bottom:210.714000px;}
.y4a{bottom:212.410050px;}
.y18c{bottom:213.223800px;}
.y143{bottom:216.693150px;}
.y9c{bottom:217.204050px;}
.y7d{bottom:217.475700px;}
.y1a3{bottom:219.212100px;}
.y1ce{bottom:219.217950px;}
.yc3{bottom:223.464000px;}
.y174{bottom:223.469850px;}
.yd6{bottom:227.715900px;}
.y29{bottom:227.958000px;}
.y1be{bottom:229.464000px;}
.yed{bottom:230.701650px;}
.y11a{bottom:231.344850px;}
.y18b{bottom:231.973800px;}
.y9b{bottom:235.954050px;}
.y7c{bottom:236.225700px;}
.y1a2{bottom:237.962100px;}
.y1cd{bottom:237.967950px;}
.yc2{bottom:242.214000px;}
.y173{bottom:242.219850px;}
.yd5{bottom:246.465900px;}
.y1bd{bottom:248.214000px;}
.y142{bottom:248.613600px;}
.y18a{bottom:250.723800px;}
.y28{bottom:250.960050px;}
.yec{bottom:253.622100px;}
.y119{bottom:254.265150px;}
.y9a{bottom:254.704050px;}
.y7b{bottom:254.975700px;}
.y1a1{bottom:256.712100px;}
.y1cc{bottom:256.717950px;}
.y49{bottom:259.464000px;}
.y172{bottom:260.969850px;}
.yc1{bottom:265.215900px;}
.y189{bottom:269.473800px;}
.y27{bottom:269.710050px;}
.y1bc{bottom:271.215900px;}
.y141{bottom:271.533900px;}
.y7a{bottom:273.725700px;}
.y1a0{bottom:275.462100px;}
.y1cb{bottom:275.467950px;}
.yeb{bottom:276.542400px;}
.y118{bottom:277.185600px;}
.y48{bottom:278.214000px;}
.y171{bottom:279.719850px;}
.yc0{bottom:283.965900px;}
.y99{bottom:286.210050px;}
.y188{bottom:288.223800px;}
.y26{bottom:288.460050px;}
.y1bb{bottom:289.965900px;}
.y79{bottom:292.475700px;}
.y19f{bottom:294.212100px;}
.y1ca{bottom:294.217950px;}
.y140{bottom:294.454350px;}
.y47{bottom:296.964000px;}
.y170{bottom:298.469850px;}
.yea{bottom:299.462850px;}
.y117{bottom:300.106050px;}
.ybf{bottom:302.715900px;}
.y187{bottom:306.973800px;}
.y25{bottom:307.210050px;}
.y1ba{bottom:308.715900px;}
.y78{bottom:311.225850px;}
.y1c9{bottom:312.967950px;}
.y19e{bottom:317.214000px;}
.y16f{bottom:317.219850px;}
.y13f{bottom:317.374800px;}
.y46{bottom:319.965900px;}
.ybe{bottom:321.465900px;}
.y116{bottom:323.026500px;}
.y186{bottom:325.723800px;}
.y24{bottom:325.960050px;}
.y1b9{bottom:327.465900px;}
.y98{bottom:329.969850px;}
.y77{bottom:329.975850px;}
.y19d{bottom:335.964000px;}
.y16e{bottom:335.969850px;}
.y45{bottom:338.715900px;}
.ybd{bottom:340.215900px;}
.y13e{bottom:340.295250px;}
.y185{bottom:344.473800px;}
.y23{bottom:344.710050px;}
.y115{bottom:345.946800px;}
.y13d{bottom:349.295250px;}
.y1b8{bottom:350.467950px;}
.y76{bottom:352.977750px;}
.y19c{bottom:354.714000px;}
.y16d{bottom:354.719850px;}
.ye9{bottom:355.383300px;}
.y44{bottom:357.465900px;}
.ybc{bottom:358.965900px;}
.y184{bottom:363.223800px;}
.y22{bottom:363.460050px;}
.y97{bottom:367.475850px;}
.y114{bottom:368.867250px;}
.y1b7{bottom:369.217950px;}
.y75{bottom:371.727750px;}
.y19b{bottom:373.464000px;}
.y16c{bottom:373.469850px;}
.y43{bottom:376.215900px;}
.ybb{bottom:377.715900px;}
.ye8{bottom:378.303750px;}
.y13c{bottom:381.590550px;}
.y183{bottom:381.973800px;}
.y21{bottom:382.210050px;}
.y96{bottom:386.225850px;}
.y113{bottom:386.867250px;}
.y1b6{bottom:387.967950px;}
.y74{bottom:390.477750px;}
.y19a{bottom:392.214000px;}
.y16b{bottom:392.219850px;}
.y42{bottom:394.965900px;}
.yba{bottom:396.465900px;}
.y182{bottom:400.723800px;}
.y20{bottom:400.960050px;}
.ye7{bottom:401.224050px;}
.y95{bottom:404.975850px;}
.y1b5{bottom:406.717950px;}
.y73{bottom:409.227750px;}
.y112{bottom:409.787700px;}
.y16a{bottom:410.969850px;}
.y41{bottom:413.715900px;}
.y13b{bottom:414.590550px;}
.yb9{bottom:415.215900px;}
.y1f{bottom:419.710050px;}
.y94{bottom:423.725850px;}
.ye6{bottom:424.144500px;}
.y1b4{bottom:425.467950px;}
.yd4{bottom:427.971900px;}
.y72{bottom:427.977750px;}
.y13a{bottom:429.590550px;}
.y1d8{bottom:429.719850px;}
.y40{bottom:432.465900px;}
.y111{bottom:433.083000px;}
.yb8{bottom:433.965900px;}
.y169{bottom:433.971900px;}
.y1e{bottom:438.460050px;}
.y93{bottom:442.475850px;}
.y139{bottom:444.590550px;}
.y71{bottom:446.727750px;}
.ye5{bottom:447.064950px;}
.y1b3{bottom:448.469850px;}
.y3f{bottom:451.215900px;}
.yb7{bottom:452.715900px;}
.y168{bottom:452.721900px;}
.y1d{bottom:457.210050px;}
.y92{bottom:461.225850px;}
.y70{bottom:465.477750px;}
.y110{bottom:466.083000px;}
.y1b2{bottom:467.219850px;}
.y3e{bottom:469.965900px;}
.ye4{bottom:469.985250px;}
.yb6{bottom:471.465900px;}
.y167{bottom:471.471900px;}
.y138{bottom:474.834900px;}
.y1c{bottom:475.960050px;}
.y181{bottom:479.975850px;}
.y10f{bottom:481.083000px;}
.y6f{bottom:484.227750px;}
.y1b1{bottom:485.969850px;}
.y3d{bottom:488.715900px;}
.y199{bottom:490.215900px;}
.y166{bottom:490.221900px;}
.ye3{bottom:492.905700px;}
.yb5{bottom:494.467950px;}
.y1b{bottom:494.710050px;}
.y10e{bottom:496.083000px;}
.y180{bottom:498.725850px;}
.y137{bottom:500.624700px;}
.y6e{bottom:502.977750px;}
.y1b0{bottom:504.719850px;}
.y3c{bottom:507.465900px;}
.y198{bottom:508.965900px;}
.y165{bottom:508.971900px;}
.yb4{bottom:513.217950px;}
.y1a{bottom:513.460050px;}
.ye2{bottom:515.826150px;}
.y17f{bottom:517.475850px;}
.y6d{bottom:521.727750px;}
.y10d{bottom:523.458000px;}
.y136{bottom:523.545000px;}
.y3b{bottom:526.215900px;}
.y197{bottom:527.715900px;}
.y164{bottom:527.721900px;}
.yb3{bottom:531.967950px;}
.y19{bottom:532.210050px;}
.y17e{bottom:536.225850px;}
.y6c{bottom:540.477750px;}
.y3a{bottom:544.965900px;}
.y10c{bottom:546.378450px;}
.y135{bottom:546.465450px;}
.y196{bottom:546.465900px;}
.y163{bottom:546.471900px;}
.yb2{bottom:550.717950px;}
.y18{bottom:550.960050px;}
.y17d{bottom:554.975850px;}
.y6b{bottom:559.227750px;}
.ye1{bottom:561.666900px;}
.y39{bottom:563.715900px;}
.y195{bottom:565.215900px;}
.y162{bottom:565.221900px;}
.y10b{bottom:569.298900px;}
.yb1{bottom:569.467950px;}
.y1c8{bottom:569.473800px;}
.y17{bottom:569.710050px;}
.y134{bottom:570.681600px;}
.y6a{bottom:577.977750px;}
.ye0{bottom:579.666900px;}
.y38{bottom:582.465900px;}
.y161{bottom:583.971900px;}
.yb0{bottom:588.217950px;}
.y1c7{bottom:588.223800px;}
.y16{bottom:588.460050px;}
.y10a{bottom:592.219350px;}
.y69{bottom:596.727750px;}
.y133{bottom:599.382450px;}
.y37{bottom:601.215900px;}
.ydf{bottom:602.587350px;}
.y160{bottom:602.721900px;}
.yaf{bottom:606.967950px;}
.y1af{bottom:606.973800px;}
.y15{bottom:607.210050px;}
.y109{bottom:615.139650px;}
.y68{bottom:615.477750px;}
.y36{bottom:619.965900px;}
.yae{bottom:625.717950px;}
.y15f{bottom:625.723800px;}
.yde{bottom:625.882800px;}
.y14{bottom:625.960050px;}
.y132{bottom:629.146200px;}
.y91{bottom:634.227750px;}
.y108{bottom:638.060100px;}
.y67{bottom:638.479650px;}
.y35{bottom:638.715900px;}
.ydd{bottom:643.882800px;}
.yad{bottom:644.467950px;}
.y15e{bottom:644.473800px;}
.y13{bottom:644.710050px;}
.y90{bottom:652.977750px;}
.y66{bottom:657.229650px;}
.y34{bottom:657.465900px;}
.y131{bottom:658.909950px;}
.y107{bottom:660.980550px;}
.yac{bottom:663.217950px;}
.y15d{bottom:663.223800px;}
.y12{bottom:663.460050px;}
.y8f{bottom:671.727750px;}
.y65{bottom:675.979650px;}
.y33{bottom:676.215900px;}
.y194{bottom:681.967950px;}
.y15c{bottom:681.973800px;}
.y11{bottom:682.210050px;}
.y106{bottom:683.901000px;}
.yab{bottom:686.219850px;}
.y1ae{bottom:686.225850px;}
.y8e{bottom:690.477750px;}
.y130{bottom:690.799650px;}
.y64{bottom:694.729650px;}
.y32{bottom:694.965900px;}
.y15b{bottom:700.723800px;}
.y10{bottom:700.960050px;}
.yaa{bottom:704.969850px;}
.y1ad{bottom:704.975850px;}
.y105{bottom:706.821300px;}
.y8d{bottom:709.227750px;}
.y193{bottom:713.473800px;}
.y63{bottom:713.479650px;}
.y31{bottom:713.715900px;}
.y15a{bottom:719.473800px;}
.yf{bottom:719.710050px;}
.y12f{bottom:721.626450px;}
.ya9{bottom:723.719850px;}
.y1ac{bottom:723.725850px;}
.yd3{bottom:727.977750px;}
.y104{bottom:729.741750px;}
.y62{bottom:732.229650px;}
.y30{bottom:732.465900px;}
.y159{bottom:738.223800px;}
.ya8{bottom:742.469850px;}
.y1ab{bottom:742.475850px;}
.yd2{bottom:746.727750px;}
.y61{bottom:750.979650px;}
.ye{bottom:751.215900px;}
.y103{bottom:752.662200px;}
.y12e{bottom:754.579200px;}
.y158{bottom:756.973800px;}
.ya7{bottom:761.219850px;}
.y1d7{bottom:761.225850px;}
.yd1{bottom:765.477750px;}
.y60{bottom:769.729650px;}
.ydc{bottom:773.981700px;}
.y17c{bottom:775.224300px;}
.y157{bottom:775.723800px;}
.ya6{bottom:779.969850px;}
.yd0{bottom:784.227750px;}
.y102{bottom:785.662200px;}
.y12d{bottom:787.531950px;}
.yd{bottom:787.790100px;}
.y5f{bottom:788.479650px;}
.ydb{bottom:792.731700px;}
.y156{bottom:794.473800px;}
.ya5{bottom:798.719850px;}
.ycf{bottom:802.977750px;}
.yc{bottom:805.790100px;}
.y5e{bottom:807.229650px;}
.y101{bottom:808.582650px;}
.yda{bottom:811.481700px;}
.y155{bottom:813.223800px;}
.y12c{bottom:818.358600px;}
.yce{bottom:821.727750px;}
.yb{bottom:823.790100px;}
.y8c{bottom:825.979650px;}
.ya4{bottom:830.225850px;}
.y5d{bottom:830.231700px;}
.y100{bottom:831.877950px;}
.y154{bottom:831.973800px;}
.y1aa{bottom:840.477750px;}
.ya{bottom:841.790100px;}
.y8b{bottom:844.729650px;}
.y5c{bottom:848.981700px;}
.y153{bottom:850.723800px;}
.y12b{bottom:852.374400px;}
.y1c6{bottom:859.227750px;}
.y9{bottom:859.790100px;}
.y8a{bottom:863.479650px;}
.yff{bottom:864.877950px;}
.y5b{bottom:867.731700px;}
.y152{bottom:873.725850px;}
.y1d6{bottom:877.977750px;}
.yfe{bottom:879.877950px;}
.y89{bottom:882.229650px;}
.y5a{bottom:886.481700px;}
.y12a{bottom:888.516150px;}
.y151{bottom:892.475850px;}
.yfd{bottom:894.877950px;}
.y1d5{bottom:896.727750px;}
.y8{bottom:900.042150px;}
.y88{bottom:900.979650px;}
.y59{bottom:905.231700px;}
.y150{bottom:911.225850px;}
.y87{bottom:919.729650px;}
.y58{bottom:923.981700px;}
.yfc{bottom:925.252950px;}
.y129{bottom:925.720950px;}
.y14f{bottom:929.975850px;}
.y7{bottom:936.042150px;}
.y86{bottom:938.479650px;}
.y57{bottom:942.731700px;}
.yfb{bottom:948.173400px;}
.y14e{bottom:948.725850px;}
.y85{bottom:957.229650px;}
.y128{bottom:961.366650px;}
.y56{bottom:961.481700px;}
.y14d{bottom:967.475850px;}
.y6{bottom:969.042150px;}
.yfa{bottom:971.093850px;}
.ycd{bottom:975.979650px;}
.y127{bottom:979.366650px;}
.y55{bottom:980.231700px;}
.y14c{bottom:986.225850px;}
.yf9{bottom:994.014150px;}
.ycc{bottom:994.729650px;}
.y54{bottom:998.981700px;}
.y14b{bottom:1004.975850px;}
.y126{bottom:1011.183450px;}
.ycb{bottom:1013.479650px;}
.yf8{bottom:1016.934600px;}
.y53{bottom:1017.731700px;}
.y5{bottom:1023.323700px;}
.y14a{bottom:1023.725850px;}
.y52{bottom:1036.481700px;}
.y125{bottom:1038.323700px;}
.y4{bottom:1039.823700px;}
.yf7{bottom:1039.855050px;}
.y51{bottom:1055.231700px;}
.y3{bottom:1056.323700px;}
.yf6{bottom:1062.775500px;}
.yf5{bottom:1080.775500px;}
.y50{bottom:1108.294050px;}
.y1{bottom:1109.357100px;}
.h13{height:28.050612px;}
.he{height:34.992188px;}
.hf{height:43.335938px;}
.hd{height:43.681641px;}
.h10{height:43.710938px;}
.h5{height:43.740234px;}
.h14{height:48.049805px;}
.hb{height:48.082031px;}
.ha{height:48.114258px;}
.hc{height:50.028612px;}
.h12{height:50.029212px;}
.h7{height:52.488281px;}
.h4{height:54.169922px;}
.h9{height:59.586914px;}
.h2{height:61.236328px;}
.h8{height:65.003906px;}
.h6{height:75.837891px;}
.h11{height:79.740234px;}
.h3{height:180.317586px;}
.h1{height:1194.750000px;}
.h0{height:1194.802500px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.x2{left:50.058150px;}
.x1{left:85.039350px;}
.x6{left:91.439250px;}
.x4b{left:93.148650px;}
.x8{left:94.506600px;}
.x5b{left:98.539350px;}
.x48{left:101.573550px;}
.x21{left:103.871550px;}
.xa{left:105.424050px;}
.x29{left:114.000750px;}
.x3a{left:119.028900px;}
.x1e{left:121.087200px;}
.x2e{left:122.841000px;}
.x24{left:129.015600px;}
.x37{left:133.951800px;}
.x13{left:140.239650px;}
.x22{left:141.529050px;}
.x53{left:142.647450px;}
.x34{left:143.960400px;}
.x25{left:146.937900px;}
.x16{left:148.205100px;}
.x3c{left:150.916800px;}
.x43{left:153.685350px;}
.x35{left:155.217750px;}
.x1d{left:157.360350px;}
.x27{left:160.275450px;}
.x36{left:164.402250px;}
.x52{left:167.663250px;}
.x23{left:169.031550px;}
.x26{left:170.298600px;}
.x54{left:171.417000px;}
.x38{left:173.132700px;}
.x56{left:175.245750px;}
.x1f{left:179.036400px;}
.x44{left:181.213500px;}
.x20{left:182.376150px;}
.x7{left:188.113050px;}
.xc{left:189.202200px;}
.x28{left:191.549850px;}
.x45{left:200.395500px;}
.x9{left:220.954800px;}
.xf{left:226.507050px;}
.xe{left:230.623950px;}
.xb{left:283.032750px;}
.x58{left:335.523000px;}
.xd{left:346.720500px;}
.x4e{left:354.410700px;}
.x4d{left:356.285700px;}
.x17{left:363.918600px;}
.x2a{left:379.789350px;}
.x2f{left:387.363600px;}
.x47{left:391.406400px;}
.x46{left:395.577450px;}
.x59{left:404.590950px;}
.x3d{left:406.999650px;}
.x14{left:408.540450px;}
.x10{left:476.716500px;}
.x5c{left:490.216500px;}
.x4f{left:491.353500px;}
.x11{left:497.976450px;}
.x18{left:504.050250px;}
.x4{left:508.762800px;}
.x19{left:515.926500px;}
.x30{left:525.369300px;}
.x31{left:537.245550px;}
.x3e{left:540.251400px;}
.x5{left:548.994750px;}
.x3f{left:552.127650px;}
.x4c{left:573.235950px;}
.x57{left:591.932850px;}
.x15{left:593.003700px;}
.x2d{left:598.693200px;}
.x39{left:609.567600px;}
.x2b{left:616.903500px;}
.x3b{left:621.196200px;}
.x50{left:635.641200px;}
.x51{left:647.103600px;}
.x1a{left:654.345900px;}
.x2c{left:660.977850px;}
.x4a{left:662.952450px;}
.x32{left:664.767600px;}
.x1b{left:665.808300px;}
.x33{left:674.146200px;}
.x55{left:679.200300px;}
.x40{left:683.601600px;}
.x41{left:695.064000px;}
.x3{left:775.393650px;}
.x1c{left:777.658950px;}
.x42{left:788.282550px;}
.x12{left:827.035350px;}
.x49{left:847.059900px;}
.x5a{left:850.393650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:32.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.005184pt;}
.lsb{letter-spacing:0.008533pt;}
.ls1{letter-spacing:0.009067pt;}
.ls7{letter-spacing:0.176000pt;}
.ls9{letter-spacing:0.394133pt;}
.lsa{letter-spacing:1.349333pt;}
.ls8{letter-spacing:4.928000pt;}
.ls6{letter-spacing:7.156800pt;}
.ls3{letter-spacing:13.196800pt;}
.ls5{letter-spacing:151.328533pt;}
.wsc6{word-spacing:-21.237333pt;}
.wsf3{word-spacing:-17.658667pt;}
.wsc5{word-spacing:-16.485333pt;}
.ws0{word-spacing:-16.309333pt;}
.wsa1{word-spacing:-11.861333pt;}
.wsb2{word-spacing:-8.976000pt;}
.wseb{word-spacing:-7.450667pt;}
.wsbe{word-spacing:-6.864000pt;}
.wsfb{word-spacing:-5.514667pt;}
.ws2a{word-spacing:-5.162667pt;}
.ws8f{word-spacing:-4.693333pt;}
.wsfd{word-spacing:-4.458667pt;}
.wsd7{word-spacing:-4.400000pt;}
.ws10a{word-spacing:-4.165333pt;}
.ws74{word-spacing:-4.106667pt;}
.ws99{word-spacing:-3.989333pt;}
.ws10e{word-spacing:-3.754667pt;}
.ws54{word-spacing:-3.637333pt;}
.wsbd{word-spacing:-3.461333pt;}
.ws6a{word-spacing:-3.168000pt;}
.ws83{word-spacing:-3.109333pt;}
.ws69{word-spacing:-3.050667pt;}
.ws18{word-spacing:-2.992000pt;}
.ws11{word-spacing:-2.933333pt;}
.wsb1{word-spacing:-2.816000pt;}
.wsba{word-spacing:-2.757333pt;}
.wsb6{word-spacing:-2.698667pt;}
.ws5e{word-spacing:-2.581333pt;}
.ws36{word-spacing:-2.464000pt;}
.ws58{word-spacing:-2.405333pt;}
.ws52{word-spacing:-2.288000pt;}
.ws78{word-spacing:-2.229333pt;}
.ws51{word-spacing:-2.170667pt;}
.ws5d{word-spacing:-2.112000pt;}
.ws48{word-spacing:-2.053333pt;}
.wsb0{word-spacing:-1.994667pt;}
.ws7b{word-spacing:-1.936000pt;}
.ws61{word-spacing:-1.877333pt;}
.ws6b{word-spacing:-1.818667pt;}
.wsae{word-spacing:-1.642667pt;}
.ws3f{word-spacing:-1.466667pt;}
.ws2c{word-spacing:-1.408000pt;}
.ws103{word-spacing:-1.349333pt;}
.wsd{word-spacing:-1.290667pt;}
.ws4e{word-spacing:-1.232000pt;}
.ws8d{word-spacing:-1.173333pt;}
.ws57{word-spacing:-1.056000pt;}
.ws17{word-spacing:-0.938667pt;}
.ws7c{word-spacing:-0.880000pt;}
.wsaf{word-spacing:-0.821333pt;}
.ws9b{word-spacing:-0.762667pt;}
.ws89{word-spacing:-0.704000pt;}
.ws9a{word-spacing:-0.645333pt;}
.ws7a{word-spacing:-0.586667pt;}
.wse{word-spacing:-0.528000pt;}
.wsea{word-spacing:-0.469333pt;}
.ws20{word-spacing:-0.352000pt;}
.ws88{word-spacing:-0.293333pt;}
.ws55{word-spacing:-0.234667pt;}
.wsf{word-spacing:-0.176000pt;}
.wsb7{word-spacing:-0.117333pt;}
.ws1{word-spacing:0.000000pt;}
.wsed{word-spacing:0.058667pt;}
.ws62{word-spacing:0.117333pt;}
.ws6e{word-spacing:0.176000pt;}
.ws25{word-spacing:0.234667pt;}
.wsb5{word-spacing:0.293333pt;}
.ws9e{word-spacing:0.352000pt;}
.ws100{word-spacing:0.410667pt;}
.ws44{word-spacing:0.469333pt;}
.ws2e{word-spacing:0.528000pt;}
.wsbf{word-spacing:0.586667pt;}
.ws3b{word-spacing:0.645333pt;}
.ws84{word-spacing:0.704000pt;}
.ws81{word-spacing:0.762667pt;}
.ws14{word-spacing:0.880000pt;}
.ws31{word-spacing:0.997333pt;}
.ws33{word-spacing:1.114667pt;}
.wsf5{word-spacing:1.173333pt;}
.ws10b{word-spacing:1.232000pt;}
.wsec{word-spacing:1.349333pt;}
.ws43{word-spacing:1.408000pt;}
.wsf8{word-spacing:1.466667pt;}
.wsc{word-spacing:1.584000pt;}
.ws21{word-spacing:1.642667pt;}
.ws9c{word-spacing:1.818667pt;}
.ws4c{word-spacing:1.877333pt;}
.wsa0{word-spacing:1.936000pt;}
.ws49{word-spacing:2.053333pt;}
.ws56{word-spacing:2.229333pt;}
.ws6d{word-spacing:2.288000pt;}
.ws9d{word-spacing:2.346667pt;}
.ws16{word-spacing:2.405333pt;}
.ws80{word-spacing:2.464000pt;}
.wsa{word-spacing:2.522667pt;}
.ws29{word-spacing:2.581333pt;}
.ws73{word-spacing:2.640000pt;}
.ws96{word-spacing:2.698667pt;}
.ws2f{word-spacing:2.874667pt;}
.ws8b{word-spacing:2.933333pt;}
.ws26{word-spacing:2.992000pt;}
.ws1f{word-spacing:3.050667pt;}
.ws10c{word-spacing:3.168000pt;}
.ws13{word-spacing:3.226667pt;}
.wse5{word-spacing:3.285333pt;}
.ws46{word-spacing:3.344000pt;}
.ws4b{word-spacing:3.402667pt;}
.ws5a{word-spacing:3.461333pt;}
.ws15{word-spacing:3.520000pt;}
.wsfe{word-spacing:3.578667pt;}
.ws10f{word-spacing:3.637333pt;}
.wsd6{word-spacing:3.872000pt;}
.ws28{word-spacing:3.930667pt;}
.ws2b{word-spacing:3.989333pt;}
.ws75{word-spacing:4.048000pt;}
.ws19{word-spacing:4.106667pt;}
.wsee{word-spacing:4.165333pt;}
.wsad{word-spacing:4.224000pt;}
.ws5b{word-spacing:4.341333pt;}
.ws9{word-spacing:4.400000pt;}
.wsbb{word-spacing:4.458667pt;}
.wsbc{word-spacing:4.576000pt;}
.ws27{word-spacing:4.634667pt;}
.ws90{word-spacing:4.693333pt;}
.ws4a{word-spacing:4.810667pt;}
.ws60{word-spacing:4.869333pt;}
.ws2d{word-spacing:4.928000pt;}
.ws38{word-spacing:5.045333pt;}
.ws63{word-spacing:5.104000pt;}
.ws3e{word-spacing:5.162667pt;}
.ws41{word-spacing:5.221333pt;}
.ws79{word-spacing:5.338667pt;}
.ws1a{word-spacing:5.397333pt;}
.ws8{word-spacing:5.456000pt;}
.ws4d{word-spacing:5.632000pt;}
.ws10{word-spacing:5.690667pt;}
.ws10d{word-spacing:5.808000pt;}
.ws40{word-spacing:5.866667pt;}
.ws3d{word-spacing:5.984000pt;}
.ws68{word-spacing:6.101333pt;}
.ws67{word-spacing:6.218667pt;}
.ws7{word-spacing:6.277333pt;}
.ws22{word-spacing:6.394667pt;}
.wsd8{word-spacing:6.570667pt;}
.ws6{word-spacing:6.688000pt;}
.ws47{word-spacing:6.746667pt;}
.ws65{word-spacing:6.805333pt;}
.wsc8{word-spacing:6.864000pt;}
.ws76{word-spacing:6.922667pt;}
.ws85{word-spacing:7.040000pt;}
.ws97{word-spacing:7.098667pt;}
.wsca{word-spacing:7.157333pt;}
.ws6f{word-spacing:7.333333pt;}
.ws6c{word-spacing:7.392000pt;}
.ws71{word-spacing:7.450667pt;}
.ws8c{word-spacing:7.509333pt;}
.ws7f{word-spacing:7.626667pt;}
.ws45{word-spacing:7.685333pt;}
.ws23{word-spacing:7.744000pt;}
.ws77{word-spacing:7.802667pt;}
.ws35{word-spacing:7.861333pt;}
.wsc2{word-spacing:7.920000pt;}
.wsf0{word-spacing:7.978667pt;}
.ws3c{word-spacing:8.037333pt;}
.ws3a{word-spacing:8.096000pt;}
.wsc3{word-spacing:8.272000pt;}
.wsf4{word-spacing:8.330667pt;}
.ws3{word-spacing:8.389333pt;}
.wsfa{word-spacing:8.448000pt;}
.ws86{word-spacing:8.682667pt;}
.ws30{word-spacing:8.741333pt;}
.wsc4{word-spacing:8.800000pt;}
.ws39{word-spacing:8.858667pt;}
.ws37{word-spacing:8.917333pt;}
.wscb{word-spacing:8.976000pt;}
.ws113{word-spacing:9.093333pt;}
.ws5{word-spacing:9.152000pt;}
.wsc1{word-spacing:9.210667pt;}
.wse4{word-spacing:9.269333pt;}
.ws12{word-spacing:9.328000pt;}
.ws8e{word-spacing:9.386667pt;}
.ws24{word-spacing:9.445333pt;}
.ws34{word-spacing:9.504000pt;}
.wsb{word-spacing:9.562667pt;}
.ws107{word-spacing:9.621333pt;}
.wsf9{word-spacing:9.680000pt;}
.wsf7{word-spacing:9.797333pt;}
.ws64{word-spacing:9.973333pt;}
.ws114{word-spacing:10.266667pt;}
.wsd0{word-spacing:10.325333pt;}
.wsc0{word-spacing:10.384000pt;}
.wsb3{word-spacing:10.442667pt;}
.ws91{word-spacing:10.501333pt;}
.wsb4{word-spacing:10.560000pt;}
.ws42{word-spacing:10.736000pt;}
.ws101{word-spacing:10.853333pt;}
.ws82{word-spacing:10.912000pt;}
.ws98{word-spacing:10.970667pt;}
.ws1c{word-spacing:11.088000pt;}
.wsfc{word-spacing:11.264000pt;}
.ws93{word-spacing:11.440000pt;}
.ws108{word-spacing:11.557333pt;}
.ws53{word-spacing:11.616000pt;}
.ws112{word-spacing:11.674667pt;}
.ws9f{word-spacing:11.733333pt;}
.ws116{word-spacing:11.792000pt;}
.ws95{word-spacing:11.909333pt;}
.ws7d{word-spacing:12.085333pt;}
.ws72{word-spacing:12.202667pt;}
.ws110{word-spacing:12.320000pt;}
.wsd4{word-spacing:12.378667pt;}
.wsff{word-spacing:12.496000pt;}
.ws50{word-spacing:12.613333pt;}
.ws8a{word-spacing:12.672000pt;}
.wsb8{word-spacing:12.730667pt;}
.wsdb{word-spacing:12.848000pt;}
.ws102{word-spacing:12.906667pt;}
.wsf6{word-spacing:13.082667pt;}
.ws66{word-spacing:13.200000pt;}
.ws87{word-spacing:13.317333pt;}
.ws1d{word-spacing:13.376000pt;}
.wsdc{word-spacing:13.434667pt;}
.ws111{word-spacing:13.493333pt;}
.ws106{word-spacing:13.669333pt;}
.wscc{word-spacing:13.786667pt;}
.ws7e{word-spacing:13.845333pt;}
.wse0{word-spacing:14.197333pt;}
.wsc9{word-spacing:14.256000pt;}
.ws1b{word-spacing:14.373333pt;}
.wsf1{word-spacing:14.725333pt;}
.wsda{word-spacing:14.842667pt;}
.ws4f{word-spacing:14.901333pt;}
.ws1e{word-spacing:15.429333pt;}
.wsd3{word-spacing:15.605333pt;}
.ws94{word-spacing:16.074667pt;}
.wsde{word-spacing:16.250667pt;}
.wsb9{word-spacing:16.485333pt;}
.wsce{word-spacing:16.661333pt;}
.wscd{word-spacing:16.954667pt;}
.ws59{word-spacing:17.189333pt;}
.wsdf{word-spacing:17.365333pt;}
.wsf2{word-spacing:17.482667pt;}
.wsd9{word-spacing:17.541333pt;}
.wsd1{word-spacing:17.776000pt;}
.ws118{word-spacing:18.069333pt;}
.ws32{word-spacing:18.304000pt;}
.wse7{word-spacing:18.480000pt;}
.wsc7{word-spacing:18.538667pt;}
.wsef{word-spacing:20.181333pt;}
.wse9{word-spacing:21.354667pt;}
.ws109{word-spacing:22.058667pt;}
.ws117{word-spacing:22.293333pt;}
.ws4{word-spacing:22.410667pt;}
.ws5c{word-spacing:23.173333pt;}
.ws104{word-spacing:23.290667pt;}
.ws2{word-spacing:23.466667pt;}
.wsd5{word-spacing:23.584000pt;}
.wse6{word-spacing:23.936000pt;}
.ws5f{word-spacing:27.690667pt;}
.wse3{word-spacing:28.922667pt;}
.wse1{word-spacing:31.093333pt;}
.wsdd{word-spacing:31.152000pt;}
.ws70{word-spacing:33.088000pt;}
.wse8{word-spacing:33.322667pt;}
.wscf{word-spacing:34.554667pt;}
.wsd2{word-spacing:34.906667pt;}
.ws105{word-spacing:36.256000pt;}
.ws115{word-spacing:54.384000pt;}
.wse2{word-spacing:120.208000pt;}
.wsa3{word-spacing:136.699200pt;}
.wsa7{word-spacing:143.792533pt;}
.wsa2{word-spacing:151.521600pt;}
.wsac{word-spacing:162.041600pt;}
.wsa4{word-spacing:166.344533pt;}
.wsa6{word-spacing:170.912000pt;}
.wsab{word-spacing:180.339733pt;}
.wsa5{word-spacing:247.920000pt;}
.wsa8{word-spacing:258.938667pt;}
.ws92{word-spacing:319.473600pt;}
.wsa9{word-spacing:375.933333pt;}
.wsaa{word-spacing:581.548800pt;}
._6b{margin-left:-20.457067pt;}
._c{margin-left:-17.824000pt;}
._6{margin-left:-16.068800pt;}
._d{margin-left:-15.130133pt;}
._6a{margin-left:-13.593067pt;}
._73{margin-left:-7.562133pt;}
._0{margin-left:-6.586467pt;}
._2{margin-left:-5.540267pt;}
._1{margin-left:-3.824000pt;}
._4{margin-left:-2.785067pt;}
._3{margin-left:-1.321600pt;}
._7{width:0.921600pt;}
._8{width:2.434667pt;}
._a{width:3.549333pt;}
._b{width:4.472000pt;}
._5{width:5.476800pt;}
._e{width:6.723200pt;}
._6c{width:7.620800pt;}
._9{width:8.670933pt;}
._76{width:9.873067pt;}
._6f{width:10.912000pt;}
._71{width:12.389867pt;}
._70{width:13.428800pt;}
._75{width:14.842667pt;}
._6d{width:18.104533pt;}
._72{width:23.580800pt;}
._74{width:31.287467pt;}
._6e{width:34.612267pt;}
._64{width:107.308267pt;}
._36{width:133.652800pt;}
._4d{width:151.525867pt;}
._4a{width:166.348267pt;}
._63{width:167.549333pt;}
._3c{width:170.710933pt;}
._39{width:178.124800pt;}
._50{width:181.171200pt;}
._69{width:182.294933pt;}
._5f{width:185.673600pt;}
._5e{width:193.974933pt;}
._35{width:198.006933pt;}
._61{width:200.561067pt;}
._13{width:202.942400pt;}
._68{width:205.544000pt;}
._5a{width:208.800533pt;}
._67{width:212.984533pt;}
._5d{width:215.205867pt;}
._60{width:218.605333pt;}
._56{width:224.365333pt;}
._3b{width:227.660800pt;}
._1a{width:229.472533pt;}
._4b{width:233.159467pt;}
._34{width:236.753067pt;}
._2f{width:238.734933pt;}
._4c{width:241.315733pt;}
._38{width:249.899733pt;}
._66{width:257.385067pt;}
._52{width:263.952000pt;}
._12{width:266.406400pt;}
._59{width:267.784533pt;}
._48{width:271.743467pt;}
._11{width:273.965867pt;}
._58{width:275.130133pt;}
._49{width:278.782933pt;}
._3e{width:280.727467pt;}
._41{width:282.571733pt;}
._53{width:286.570133pt;}
._55{width:291.848533pt;}
._5c{width:306.236267pt;}
._45{width:312.189867pt;}
._19{width:319.473067pt;}
._40{width:321.452800pt;}
._4f{width:322.760000pt;}
._54{width:323.944000pt;}
._17{width:327.032533pt;}
._51{width:327.996267pt;}
._47{width:329.498667pt;}
._32{width:331.548800pt;}
._2d{width:334.450133pt;}
._18{width:341.713067pt;}
._21{width:343.842133pt;}
._5b{width:346.263467pt;}
._1f{width:349.276800pt;}
._2b{width:351.097067pt;}
._23{width:356.681600pt;}
._20{width:358.558933pt;}
._1c{width:364.111467pt;}
._2e{width:365.915733pt;}
._33{width:369.801067pt;}
._1d{width:371.357867pt;}
._31{width:373.361600pt;}
._57{width:375.912000pt;}
._4e{width:376.918400pt;}
._25{width:378.779733pt;}
._15{width:386.339200pt;}
._10{width:388.480000pt;}
._29{width:397.293333pt;}
._46{width:399.354133pt;}
._43{width:401.019733pt;}
._26{width:407.655467pt;}
._37{width:409.846933pt;}
._f{width:418.021333pt;}
._28{width:425.398400pt;}
._3a{width:430.616000pt;}
._3d{width:460.057067pt;}
._27{width:461.013867pt;}
._3f{width:474.870400pt;}
._22{width:478.745067pt;}
._44{width:482.274667pt;}
._24{width:486.166933pt;}
._16{width:492.079467pt;}
._42{width:497.114133pt;}
._1b{width:499.488533pt;}
._1e{width:519.422200pt;}
._14{width:521.740800pt;}
._2c{width:533.587200pt;}
._2a{width:536.547200pt;}
._30{width:553.357333pt;}
._65{width:610.246933pt;}
._62{width:674.902933pt;}
.fs5{font-size:34.202667pt;}
.fs6{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:177.532800pt;}
.y0{bottom:0.000000pt;}
.y124{bottom:35.811733pt;}
.y123{bottom:49.145067pt;}
.yf4{bottom:62.452267pt;}
.y122{bottom:62.478400pt;}
.y84{bottom:72.865600pt;}
.y2{bottom:75.590533pt;}
.y121{bottom:76.145067pt;}
.y149{bottom:76.402000pt;}
.ya3{bottom:76.403600pt;}
.y17b{bottom:78.193733pt;}
.y2f{bottom:80.178000pt;}
.y4f{bottom:81.244533pt;}
.yca{bottom:81.968000pt;}
.yf3{bottom:82.825867pt;}
.y1c5{bottom:83.521867pt;}
.y192{bottom:85.752800pt;}
.y1d4{bottom:87.301333pt;}
.y83{bottom:89.532267pt;}
.y148{bottom:89.735333pt;}
.y1a9{bottom:91.075600pt;}
.ya2{bottom:93.070267pt;}
.y17a{bottom:94.860400pt;}
.y120{bottom:96.518667pt;}
.y2e{bottom:96.844667pt;}
.y4e{bottom:97.911200pt;}
.yc9{bottom:98.634667pt;}
.y1c4{bottom:100.188533pt;}
.y191{bottom:102.419467pt;}
.yf2{bottom:103.199600pt;}
.y1d3{bottom:103.968000pt;}
.y82{bottom:106.198933pt;}
.y1a8{bottom:107.742267pt;}
.ya1{bottom:109.736933pt;}
.y179{bottom:111.527067pt;}
.y11f{bottom:112.518667pt;}
.y2d{bottom:113.511333pt;}
.y4d{bottom:114.577867pt;}
.yc8{bottom:115.301333pt;}
.y1c3{bottom:116.855200pt;}
.y190{bottom:119.086133pt;}
.y147{bottom:120.115200pt;}
.y81{bottom:122.865600pt;}
.yf1{bottom:123.573333pt;}
.y1a7{bottom:124.408933pt;}
.y1d2{bottom:124.414133pt;}
.ya0{bottom:126.403600pt;}
.y4c{bottom:131.244533pt;}
.yc7{bottom:131.968000pt;}
.y178{bottom:131.973200pt;}
.y11e{bottom:132.892400pt;}
.y1c2{bottom:133.521867pt;}
.y18f{bottom:135.752800pt;}
.y1a6{bottom:141.075600pt;}
.y1d1{bottom:141.080800pt;}
.y2c{bottom:141.516533pt;}
.y9f{bottom:143.070267pt;}
.y80{bottom:143.311733pt;}
.y146{bottom:143.868800pt;}
.yf0{bottom:143.947067pt;}
.yc6{bottom:148.634667pt;}
.y177{bottom:148.639867pt;}
.y11d{bottom:148.892400pt;}
.yd9{bottom:152.414133pt;}
.y18e{bottom:152.419467pt;}
.y1c1{bottom:153.968000pt;}
.y1a5{bottom:157.742267pt;}
.y1d0{bottom:157.747467pt;}
.y4b{bottom:159.249867pt;}
.y9e{bottom:159.736933pt;}
.y7f{bottom:159.978400pt;}
.y145{bottom:164.242400pt;}
.yef{bottom:164.320667pt;}
.yc5{bottom:165.301333pt;}
.y176{bottom:165.306533pt;}
.yd8{bottom:169.080800pt;}
.y11c{bottom:169.266133pt;}
.y2b{bottom:169.296000pt;}
.y1c0{bottom:170.634667pt;}
.y18d{bottom:172.865600pt;}
.y1cf{bottom:174.414133pt;}
.y9d{bottom:176.403600pt;}
.y7e{bottom:176.645067pt;}
.y1a4{bottom:178.188533pt;}
.yc4{bottom:181.968000pt;}
.y175{bottom:181.973200pt;}
.y144{bottom:184.616133pt;}
.yee{bottom:184.694400pt;}
.y11b{bottom:185.266133pt;}
.yd7{bottom:185.747467pt;}
.y2a{bottom:185.962667pt;}
.y1bf{bottom:187.301333pt;}
.y4a{bottom:188.808933pt;}
.y18c{bottom:189.532267pt;}
.y143{bottom:192.616133pt;}
.y9c{bottom:193.070267pt;}
.y7d{bottom:193.311733pt;}
.y1a3{bottom:194.855200pt;}
.y1ce{bottom:194.860400pt;}
.yc3{bottom:198.634667pt;}
.y174{bottom:198.639867pt;}
.yd6{bottom:202.414133pt;}
.y29{bottom:202.629333pt;}
.y1be{bottom:203.968000pt;}
.yed{bottom:205.068133pt;}
.y11a{bottom:205.639867pt;}
.y18b{bottom:206.198933pt;}
.y9b{bottom:209.736933pt;}
.y7c{bottom:209.978400pt;}
.y1a2{bottom:211.521867pt;}
.y1cd{bottom:211.527067pt;}
.yc2{bottom:215.301333pt;}
.y173{bottom:215.306533pt;}
.yd5{bottom:219.080800pt;}
.y1bd{bottom:220.634667pt;}
.y142{bottom:220.989867pt;}
.y18a{bottom:222.865600pt;}
.y28{bottom:223.075600pt;}
.yec{bottom:225.441867pt;}
.y119{bottom:226.013467pt;}
.y9a{bottom:226.403600pt;}
.y7b{bottom:226.645067pt;}
.y1a1{bottom:228.188533pt;}
.y1cc{bottom:228.193733pt;}
.y49{bottom:230.634667pt;}
.y172{bottom:231.973200pt;}
.yc1{bottom:235.747467pt;}
.y189{bottom:239.532267pt;}
.y27{bottom:239.742267pt;}
.y1bc{bottom:241.080800pt;}
.y141{bottom:241.363467pt;}
.y7a{bottom:243.311733pt;}
.y1a0{bottom:244.855200pt;}
.y1cb{bottom:244.860400pt;}
.yeb{bottom:245.815467pt;}
.y118{bottom:246.387200pt;}
.y48{bottom:247.301333pt;}
.y171{bottom:248.639867pt;}
.yc0{bottom:252.414133pt;}
.y99{bottom:254.408933pt;}
.y188{bottom:256.198933pt;}
.y26{bottom:256.408933pt;}
.y1bb{bottom:257.747467pt;}
.y79{bottom:259.978400pt;}
.y19f{bottom:261.521867pt;}
.y1ca{bottom:261.527067pt;}
.y140{bottom:261.737200pt;}
.y47{bottom:263.968000pt;}
.y170{bottom:265.306533pt;}
.yea{bottom:266.189200pt;}
.y117{bottom:266.760933pt;}
.ybf{bottom:269.080800pt;}
.y187{bottom:272.865600pt;}
.y25{bottom:273.075600pt;}
.y1ba{bottom:274.414133pt;}
.y78{bottom:276.645200pt;}
.y1c9{bottom:278.193733pt;}
.y19e{bottom:281.968000pt;}
.y16f{bottom:281.973200pt;}
.y13f{bottom:282.110933pt;}
.y46{bottom:284.414133pt;}
.ybe{bottom:285.747467pt;}
.y116{bottom:287.134667pt;}
.y186{bottom:289.532267pt;}
.y24{bottom:289.742267pt;}
.y1b9{bottom:291.080800pt;}
.y98{bottom:293.306533pt;}
.y77{bottom:293.311867pt;}
.y19d{bottom:298.634667pt;}
.y16e{bottom:298.639867pt;}
.y45{bottom:301.080800pt;}
.ybd{bottom:302.414133pt;}
.y13e{bottom:302.484667pt;}
.y185{bottom:306.198933pt;}
.y23{bottom:306.408933pt;}
.y115{bottom:307.508267pt;}
.y13d{bottom:310.484667pt;}
.y1b8{bottom:311.527067pt;}
.y76{bottom:313.758000pt;}
.y19c{bottom:315.301333pt;}
.y16d{bottom:315.306533pt;}
.ye9{bottom:315.896267pt;}
.y44{bottom:317.747467pt;}
.ybc{bottom:319.080800pt;}
.y184{bottom:322.865600pt;}
.y22{bottom:323.075600pt;}
.y97{bottom:326.645200pt;}
.y114{bottom:327.882000pt;}
.y1b7{bottom:328.193733pt;}
.y75{bottom:330.424667pt;}
.y19b{bottom:331.968000pt;}
.y16c{bottom:331.973200pt;}
.y43{bottom:334.414133pt;}
.ybb{bottom:335.747467pt;}
.ye8{bottom:336.270000pt;}
.y13c{bottom:339.191600pt;}
.y183{bottom:339.532267pt;}
.y21{bottom:339.742267pt;}
.y96{bottom:343.311867pt;}
.y113{bottom:343.882000pt;}
.y1b6{bottom:344.860400pt;}
.y74{bottom:347.091333pt;}
.y19a{bottom:348.634667pt;}
.y16b{bottom:348.639867pt;}
.y42{bottom:351.080800pt;}
.yba{bottom:352.414133pt;}
.y182{bottom:356.198933pt;}
.y20{bottom:356.408933pt;}
.ye7{bottom:356.643600pt;}
.y95{bottom:359.978533pt;}
.y1b5{bottom:361.527067pt;}
.y73{bottom:363.758000pt;}
.y112{bottom:364.255733pt;}
.y16a{bottom:365.306533pt;}
.y41{bottom:367.747467pt;}
.y13b{bottom:368.524933pt;}
.yb9{bottom:369.080800pt;}
.y1f{bottom:373.075600pt;}
.y94{bottom:376.645200pt;}
.ye6{bottom:377.017333pt;}
.y1b4{bottom:378.193733pt;}
.yd4{bottom:380.419467pt;}
.y72{bottom:380.424667pt;}
.y13a{bottom:381.858267pt;}
.y1d8{bottom:381.973200pt;}
.y40{bottom:384.414133pt;}
.y111{bottom:384.962667pt;}
.yb8{bottom:385.747467pt;}
.y169{bottom:385.752800pt;}
.y1e{bottom:389.742267pt;}
.y93{bottom:393.311867pt;}
.y139{bottom:395.191600pt;}
.y71{bottom:397.091333pt;}
.ye5{bottom:397.391067pt;}
.y1b3{bottom:398.639867pt;}
.y3f{bottom:401.080800pt;}
.yb7{bottom:402.414133pt;}
.y168{bottom:402.419467pt;}
.y1d{bottom:406.408933pt;}
.y92{bottom:409.978533pt;}
.y70{bottom:413.758000pt;}
.y110{bottom:414.296000pt;}
.y1b2{bottom:415.306533pt;}
.y3e{bottom:417.747467pt;}
.ye4{bottom:417.764667pt;}
.yb6{bottom:419.080800pt;}
.y167{bottom:419.086133pt;}
.y138{bottom:422.075467pt;}
.y1c{bottom:423.075600pt;}
.y181{bottom:426.645200pt;}
.y10f{bottom:427.629333pt;}
.y6f{bottom:430.424667pt;}
.y1b1{bottom:431.973200pt;}
.y3d{bottom:434.414133pt;}
.y199{bottom:435.747467pt;}
.y166{bottom:435.752800pt;}
.ye3{bottom:438.138400pt;}
.yb5{bottom:439.527067pt;}
.y1b{bottom:439.742267pt;}
.y10e{bottom:440.962667pt;}
.y180{bottom:443.311867pt;}
.y137{bottom:444.999733pt;}
.y6e{bottom:447.091333pt;}
.y1b0{bottom:448.639867pt;}
.y3c{bottom:451.080800pt;}
.y198{bottom:452.414133pt;}
.y165{bottom:452.419467pt;}
.yb4{bottom:456.193733pt;}
.y1a{bottom:456.408933pt;}
.ye2{bottom:458.512133pt;}
.y17f{bottom:459.978533pt;}
.y6d{bottom:463.758000pt;}
.y10d{bottom:465.296000pt;}
.y136{bottom:465.373333pt;}
.y3b{bottom:467.747467pt;}
.y197{bottom:469.080800pt;}
.y164{bottom:469.086133pt;}
.yb3{bottom:472.860400pt;}
.y19{bottom:473.075600pt;}
.y17e{bottom:476.645200pt;}
.y6c{bottom:480.424667pt;}
.y3a{bottom:484.414133pt;}
.y10c{bottom:485.669733pt;}
.y135{bottom:485.747067pt;}
.y196{bottom:485.747467pt;}
.y163{bottom:485.752800pt;}
.yb2{bottom:489.527067pt;}
.y18{bottom:489.742267pt;}
.y17d{bottom:493.311867pt;}
.y6b{bottom:497.091333pt;}
.ye1{bottom:499.259467pt;}
.y39{bottom:501.080800pt;}
.y195{bottom:502.414133pt;}
.y162{bottom:502.419467pt;}
.y10b{bottom:506.043467pt;}
.yb1{bottom:506.193733pt;}
.y1c8{bottom:506.198933pt;}
.y17{bottom:506.408933pt;}
.y134{bottom:507.272533pt;}
.y6a{bottom:513.758000pt;}
.ye0{bottom:515.259467pt;}
.y38{bottom:517.747467pt;}
.y161{bottom:519.086133pt;}
.yb0{bottom:522.860400pt;}
.y1c7{bottom:522.865600pt;}
.y16{bottom:523.075600pt;}
.y10a{bottom:526.417200pt;}
.y69{bottom:530.424667pt;}
.y133{bottom:532.784400pt;}
.y37{bottom:534.414133pt;}
.ydf{bottom:535.633200pt;}
.y160{bottom:535.752800pt;}
.yaf{bottom:539.527067pt;}
.y1af{bottom:539.532267pt;}
.y15{bottom:539.742267pt;}
.y109{bottom:546.790800pt;}
.y68{bottom:547.091333pt;}
.y36{bottom:551.080800pt;}
.yae{bottom:556.193733pt;}
.y15f{bottom:556.198933pt;}
.yde{bottom:556.340267pt;}
.y14{bottom:556.408933pt;}
.y132{bottom:559.241067pt;}
.y91{bottom:563.758000pt;}
.y108{bottom:567.164533pt;}
.y67{bottom:567.537467pt;}
.y35{bottom:567.747467pt;}
.ydd{bottom:572.340267pt;}
.yad{bottom:572.860400pt;}
.y15e{bottom:572.865600pt;}
.y13{bottom:573.075600pt;}
.y90{bottom:580.424667pt;}
.y66{bottom:584.204133pt;}
.y34{bottom:584.414133pt;}
.y131{bottom:585.697733pt;}
.y107{bottom:587.538267pt;}
.yac{bottom:589.527067pt;}
.y15d{bottom:589.532267pt;}
.y12{bottom:589.742267pt;}
.y8f{bottom:597.091333pt;}
.y65{bottom:600.870800pt;}
.y33{bottom:601.080800pt;}
.y194{bottom:606.193733pt;}
.y15c{bottom:606.198933pt;}
.y11{bottom:606.408933pt;}
.y106{bottom:607.912000pt;}
.yab{bottom:609.973200pt;}
.y1ae{bottom:609.978533pt;}
.y8e{bottom:613.758000pt;}
.y130{bottom:614.044133pt;}
.y64{bottom:617.537467pt;}
.y32{bottom:617.747467pt;}
.y15b{bottom:622.865600pt;}
.y10{bottom:623.075600pt;}
.yaa{bottom:626.639867pt;}
.y1ad{bottom:626.645200pt;}
.y105{bottom:628.285600pt;}
.y8d{bottom:630.424667pt;}
.y193{bottom:634.198933pt;}
.y63{bottom:634.204133pt;}
.y31{bottom:634.414133pt;}
.y15a{bottom:639.532267pt;}
.yf{bottom:639.742267pt;}
.y12f{bottom:641.445733pt;}
.ya9{bottom:643.306533pt;}
.y1ac{bottom:643.311867pt;}
.yd3{bottom:647.091333pt;}
.y104{bottom:648.659333pt;}
.y62{bottom:650.870800pt;}
.y30{bottom:651.080800pt;}
.y159{bottom:656.198933pt;}
.ya8{bottom:659.973200pt;}
.y1ab{bottom:659.978533pt;}
.yd2{bottom:663.758000pt;}
.y61{bottom:667.537467pt;}
.ye{bottom:667.747467pt;}
.y103{bottom:669.033067pt;}
.y12e{bottom:670.737067pt;}
.y158{bottom:672.865600pt;}
.ya7{bottom:676.639867pt;}
.y1d7{bottom:676.645200pt;}
.yd1{bottom:680.424667pt;}
.y60{bottom:684.204133pt;}
.ydc{bottom:687.983733pt;}
.y17c{bottom:689.088267pt;}
.y157{bottom:689.532267pt;}
.ya6{bottom:693.306533pt;}
.yd0{bottom:697.091333pt;}
.y102{bottom:698.366400pt;}
.y12d{bottom:700.028400pt;}
.yd{bottom:700.257867pt;}
.y5f{bottom:700.870800pt;}
.ydb{bottom:704.650400pt;}
.y156{bottom:706.198933pt;}
.ya5{bottom:709.973200pt;}
.ycf{bottom:713.758000pt;}
.yc{bottom:716.257867pt;}
.y5e{bottom:717.537467pt;}
.y101{bottom:718.740133pt;}
.yda{bottom:721.317067pt;}
.y155{bottom:722.865600pt;}
.y12c{bottom:727.429867pt;}
.yce{bottom:730.424667pt;}
.yb{bottom:732.257867pt;}
.y8c{bottom:734.204133pt;}
.ya4{bottom:737.978533pt;}
.y5d{bottom:737.983733pt;}
.y100{bottom:739.447067pt;}
.y154{bottom:739.532267pt;}
.y1aa{bottom:747.091333pt;}
.ya{bottom:748.257867pt;}
.y8b{bottom:750.870800pt;}
.y5c{bottom:754.650400pt;}
.y153{bottom:756.198933pt;}
.y12b{bottom:757.666133pt;}
.y1c6{bottom:763.758000pt;}
.y9{bottom:764.257867pt;}
.y8a{bottom:767.537467pt;}
.yff{bottom:768.780400pt;}
.y5b{bottom:771.317067pt;}
.y152{bottom:776.645200pt;}
.y1d6{bottom:780.424667pt;}
.yfe{bottom:782.113733pt;}
.y89{bottom:784.204133pt;}
.y5a{bottom:787.983733pt;}
.y12a{bottom:789.792133pt;}
.y151{bottom:793.311867pt;}
.yfd{bottom:795.447067pt;}
.y1d5{bottom:797.091333pt;}
.y8{bottom:800.037467pt;}
.y88{bottom:800.870800pt;}
.y59{bottom:804.650400pt;}
.y150{bottom:809.978533pt;}
.y87{bottom:817.537467pt;}
.y58{bottom:821.317067pt;}
.yfc{bottom:822.447067pt;}
.y129{bottom:822.863067pt;}
.y14f{bottom:826.645200pt;}
.y7{bottom:832.037467pt;}
.y86{bottom:834.204133pt;}
.y57{bottom:837.983733pt;}
.yfb{bottom:842.820800pt;}
.y14e{bottom:843.311867pt;}
.y85{bottom:850.870800pt;}
.y128{bottom:854.548133pt;}
.y56{bottom:854.650400pt;}
.y14d{bottom:859.978533pt;}
.y6{bottom:861.370800pt;}
.yfa{bottom:863.194533pt;}
.ycd{bottom:867.537467pt;}
.y127{bottom:870.548133pt;}
.y55{bottom:871.317067pt;}
.y14c{bottom:876.645200pt;}
.yf9{bottom:883.568133pt;}
.ycc{bottom:884.204133pt;}
.y54{bottom:887.983733pt;}
.y14b{bottom:893.311867pt;}
.y126{bottom:898.829733pt;}
.ycb{bottom:900.870800pt;}
.yf8{bottom:903.941867pt;}
.y53{bottom:904.650400pt;}
.y5{bottom:909.621067pt;}
.y14a{bottom:909.978533pt;}
.y52{bottom:921.317067pt;}
.y125{bottom:922.954400pt;}
.y4{bottom:924.287733pt;}
.yf7{bottom:924.315600pt;}
.y51{bottom:937.983733pt;}
.y3{bottom:938.954400pt;}
.yf6{bottom:944.689333pt;}
.yf5{bottom:960.689333pt;}
.y50{bottom:985.150267pt;}
.y1{bottom:986.095200pt;}
.h13{height:24.933878pt;}
.he{height:31.104167pt;}
.hf{height:38.520833pt;}
.hd{height:38.828125pt;}
.h10{height:38.854167pt;}
.h5{height:38.880208pt;}
.h14{height:42.710938pt;}
.hb{height:42.739583pt;}
.ha{height:42.768229pt;}
.hc{height:44.469878pt;}
.h12{height:44.470411pt;}
.h7{height:46.656250pt;}
.h4{height:48.151042pt;}
.h9{height:52.966146pt;}
.h2{height:54.432292pt;}
.h8{height:57.781250pt;}
.h6{height:67.411458pt;}
.h11{height:70.880208pt;}
.h3{height:160.282298pt;}
.h1{height:1062.000000pt;}
.h0{height:1062.046667pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.x2{left:44.496133pt;}
.x1{left:75.590533pt;}
.x6{left:81.279333pt;}
.x4b{left:82.798800pt;}
.x8{left:84.005867pt;}
.x5b{left:87.590533pt;}
.x48{left:90.287600pt;}
.x21{left:92.330267pt;}
.xa{left:93.710267pt;}
.x29{left:101.334000pt;}
.x3a{left:105.803467pt;}
.x1e{left:107.633067pt;}
.x2e{left:109.192000pt;}
.x24{left:114.680533pt;}
.x37{left:119.068267pt;}
.x13{left:124.657467pt;}
.x22{left:125.803600pt;}
.x53{left:126.797733pt;}
.x34{left:127.964800pt;}
.x25{left:130.611467pt;}
.x16{left:131.737867pt;}
.x3c{left:134.148267pt;}
.x43{left:136.609200pt;}
.x35{left:137.971333pt;}
.x1d{left:139.875867pt;}
.x27{left:142.467067pt;}
.x36{left:146.135333pt;}
.x52{left:149.034000pt;}
.x23{left:150.250267pt;}
.x26{left:151.376533pt;}
.x54{left:152.370667pt;}
.x38{left:153.895733pt;}
.x56{left:155.774000pt;}
.x1f{left:159.143467pt;}
.x44{left:161.078667pt;}
.x20{left:162.112133pt;}
.x7{left:167.211600pt;}
.xc{left:168.179733pt;}
.x28{left:170.266533pt;}
.x45{left:178.129333pt;}
.x9{left:196.404267pt;}
.xf{left:201.339600pt;}
.xe{left:204.999067pt;}
.xb{left:251.584667pt;}
.x58{left:298.242667pt;}
.xd{left:308.196000pt;}
.x4e{left:315.031733pt;}
.x4d{left:316.698400pt;}
.x17{left:323.483200pt;}
.x2a{left:337.590533pt;}
.x2f{left:344.323200pt;}
.x47{left:347.916800pt;}
.x46{left:351.624400pt;}
.x59{left:359.636400pt;}
.x3d{left:361.777467pt;}
.x14{left:363.147067pt;}
.x10{left:423.748000pt;}
.x5c{left:435.748000pt;}
.x4f{left:436.758667pt;}
.x11{left:442.645733pt;}
.x18{left:448.044667pt;}
.x4{left:452.233600pt;}
.x19{left:458.601333pt;}
.x30{left:466.994933pt;}
.x31{left:477.551600pt;}
.x3e{left:480.223467pt;}
.x5{left:487.995333pt;}
.x3f{left:490.780133pt;}
.x4c{left:509.543067pt;}
.x57{left:526.162533pt;}
.x15{left:527.114400pt;}
.x2d{left:532.171733pt;}
.x39{left:541.837867pt;}
.x2b{left:548.358667pt;}
.x3b{left:552.174400pt;}
.x50{left:565.014400pt;}
.x51{left:575.203200pt;}
.x1a{left:581.640800pt;}
.x2c{left:587.535867pt;}
.x4a{left:589.291067pt;}
.x32{left:590.904533pt;}
.x1b{left:591.829600pt;}
.x33{left:599.241067pt;}
.x55{left:603.733600pt;}
.x40{left:607.645867pt;}
.x41{left:617.834667pt;}
.x3{left:689.238800pt;}
.x1c{left:691.252400pt;}
.x42{left:700.695600pt;}
.x12{left:735.142533pt;}
.x49{left:752.942133pt;}
.x5a{left:755.905467pt;}
}




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