
    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_4717b2dce89285c35c6a9cfb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2c5c5288385aa171dd438a75.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_6491a14533063177eaad2e0f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_a527f1dc4fee9e6ccea68b1c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.848000;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_83f6d2b12fe5845164bd3ae1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.677734;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_17e69cad4ec1f2b6f1176fc8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a38f8501061031eabba4c5eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924316;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_f988eb43953e9732629c9f19.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4777be15d591dd51ee10fa50.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3238c89b8b234d4c1c22ed8a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d1e010f78f729135e13ca004.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.679688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c92e3b3ad52d2d7136c50f18.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_939212607242b5652b388855.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_fcdf8bdbc1e40bf4422dc0a3.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b380f9438d5f07f7587f1c99.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7a2ae4a529ed40dc1ccf957d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.078000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1cec36678786fa922b3473b5.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b2055deade31d883e57c38f9.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_59cd9228781a7187e72122ec.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_3a0d401ae49896c09e0d3e53.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_60f26d4b67f49702d79cda27.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.013000;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:ff16;src:url('chunks/assets/font_203517f52e5f7607cb6b63c5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.086000;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:ff17;src:url('chunks/assets/font_8ae3642f562d00145c92645a.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.078000;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:ff18;src:url('chunks/assets/font_c7e232960ae48637f5775328.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.969000;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:ff19;src:url('chunks/assets/font_03551e662aef2603248dc6f2.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.075000;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:ff1a;src:url('chunks/assets/font_8a22dded7b92812b75ec56d0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_83b819207b43b0f07d5fa1ba.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.085000;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:ff1c;src:url('chunks/assets/font_ce402c1b20919b51f1159557.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_3c84bf58bc2ebef128e0f360.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.086000;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:ff1e;src:url('chunks/assets/font_823ee34c0a46037a3ca6712b.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_82a64044fae00d49969c2f0d.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.002930;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:ff20;src:url('chunks/assets/font_a7d1f720215cdc09db2b24fe.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.972000;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:ff21;src:url('chunks/assets/font_781eff7578aa419cce161065.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.669922;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:ff22;src:url('chunks/assets/font_3579af4af3374a011dd39465.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.075000;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:ff23;src:url('chunks/assets/font_8dc9037789dc5d72ba4d178b.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_b97717a0c2cb39baea50aa60.woff2')format("woff");}.ff24{font-family:ff24;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls31{letter-spacing:-0.569088px;}
.ls2f{letter-spacing:-0.530784px;}
.ls40{letter-spacing:-0.423360px;}
.ls2d{letter-spacing:-0.383040px;}
.ls2e{letter-spacing:-0.344736px;}
.ls45{letter-spacing:-0.338688px;}
.ls49{letter-spacing:-0.326592px;}
.ls16{letter-spacing:-0.310464px;}
.ls47{letter-spacing:-0.308448px;}
.lse{letter-spacing:-0.291456px;}
.ls46{letter-spacing:-0.290304px;}
.ls30{letter-spacing:-0.273600px;}
.ls3d{letter-spacing:-0.266112px;}
.ls2c{letter-spacing:-0.262656px;}
.lsb{letter-spacing:-0.259776px;}
.ls3e{letter-spacing:-0.254016px;}
.ls13{letter-spacing:-0.247104px;}
.ls21{letter-spacing:-0.241920px;}
.ls11{letter-spacing:-0.240768px;}
.ls48{letter-spacing:-0.235872px;}
.ls44{letter-spacing:-0.229824px;}
.lsc{letter-spacing:-0.228096px;}
.ls4d{letter-spacing:-0.225216px;}
.ls1b{letter-spacing:-0.211968px;}
.ls3f{letter-spacing:-0.193536px;}
.ls15{letter-spacing:-0.190080px;}
.ls24{letter-spacing:-0.185472px;}
.ls29{letter-spacing:-0.184032px;}
.ls1d{letter-spacing:-0.178848px;}
.lsd{letter-spacing:-0.177408px;}
.ls2b{letter-spacing:-0.173808px;}
.ls22{letter-spacing:-0.172224px;}
.ls6{letter-spacing:-0.165600px;}
.ls43{letter-spacing:-0.163296px;}
.ls1e{letter-spacing:-0.158976px;}
.ls4{letter-spacing:-0.152352px;}
.ls5{letter-spacing:-0.145728px;}
.ls19{letter-spacing:-0.139104px;}
.ls10{letter-spacing:-0.133056px;}
.ls2a{letter-spacing:-0.132912px;}
.ls18{letter-spacing:-0.132480px;}
.ls1f{letter-spacing:-0.125856px;}
.ls42{letter-spacing:-0.120960px;}
.ls12{letter-spacing:-0.120384px;}
.ls1a{letter-spacing:-0.119232px;}
.ls23{letter-spacing:-0.112608px;}
.lsf{letter-spacing:-0.107712px;}
.ls9{letter-spacing:-0.105984px;}
.ls32{letter-spacing:-0.099360px;}
.ls17{letter-spacing:-0.092736px;}
.ls20{letter-spacing:-0.086112px;}
.ls1c{letter-spacing:-0.079488px;}
.ls33{letter-spacing:-0.072864px;}
.ls34{letter-spacing:-0.066240px;}
.ls38{letter-spacing:-0.059616px;}
.lsa{letter-spacing:-0.052992px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000576px;}
.ls4b{letter-spacing:0.038880px;}
.ls36{letter-spacing:0.054432px;}
.ls1{letter-spacing:0.101088px;}
.ls39{letter-spacing:0.116640px;}
.ls41{letter-spacing:0.155520px;}
.ls37{letter-spacing:0.171072px;}
.ls4a{letter-spacing:0.178848px;}
.ls3b{letter-spacing:0.209952px;}
.ls3{letter-spacing:0.275616px;}
.ls0{letter-spacing:0.334080px;}
.ls35{letter-spacing:3.254976px;}
.ls27{letter-spacing:8.564976px;}
.ls28{letter-spacing:8.565120px;}
.ls25{letter-spacing:9.978624px;}
.ls51{letter-spacing:10.488960px;}
.ls4e{letter-spacing:10.645920px;}
.ls26{letter-spacing:16.359840px;}
.ls8{letter-spacing:16.755840px;}
.ls52{letter-spacing:20.556000px;}
.ls4c{letter-spacing:35.690400px;}
.ls3c{letter-spacing:41.877360px;}
.ls3a{letter-spacing:62.352288px;}
.ls50{letter-spacing:91.059264px;}
.ls4f{letter-spacing:118.559520px;}
.ls14{letter-spacing:843.497280px;}
.ls53{letter-spacing:847.440000px;}
.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;}
}
.ws16{word-spacing:-22.012272px;}
.ws24{word-spacing:-17.044992px;}
.ws2b{word-spacing:-17.029440px;}
.ws23{word-spacing:-16.990560px;}
.ws36{word-spacing:-16.560000px;}
.ws27{word-spacing:-16.344000px;}
.ws3{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.719616px;}
.ws5{word-spacing:-15.662592px;}
.ws1d{word-spacing:-15.624000px;}
.ws4{word-spacing:-15.592896px;}
.ws2a{word-spacing:-15.168960px;}
.ws33{word-spacing:-15.089472px;}
.ws31{word-spacing:-15.056352px;}
.ws30{word-spacing:-15.043104px;}
.wse{word-spacing:-15.036480px;}
.ws15{word-spacing:-15.003360px;}
.ws37{word-spacing:-14.996736px;}
.ws8{word-spacing:-14.983488px;}
.ws34{word-spacing:-14.970240px;}
.ws38{word-spacing:-14.963616px;}
.ws12{word-spacing:-14.956992px;}
.ws1f{word-spacing:-14.937120px;}
.ws1e{word-spacing:-14.930496px;}
.wsd{word-spacing:-14.923872px;}
.ws9{word-spacing:-14.917248px;}
.ws13{word-spacing:-14.910624px;}
.ws14{word-spacing:-14.904000px;}
.wsf{word-spacing:-14.897376px;}
.ws7{word-spacing:-14.890752px;}
.ws10{word-spacing:-14.884128px;}
.wsc{word-spacing:-14.878080px;}
.ws32{word-spacing:-14.877504px;}
.wsa{word-spacing:-14.870880px;}
.ws11{word-spacing:-14.864256px;}
.wsb{word-spacing:-14.857632px;}
.ws25{word-spacing:-14.374080px;}
.ws2c{word-spacing:-14.287968px;}
.ws6{word-spacing:-14.281344px;}
.ws29{word-spacing:-14.268096px;}
.ws21{word-spacing:-14.215104px;}
.ws26{word-spacing:-14.201856px;}
.ws22{word-spacing:-14.188608px;}
.ws20{word-spacing:-14.162112px;}
.ws2f{word-spacing:-13.849920px;}
.ws2d{word-spacing:-13.620096px;}
.ws28{word-spacing:-13.426560px;}
.ws2e{word-spacing:-12.858048px;}
.ws19{word-spacing:-12.421440px;}
.ws17{word-spacing:-12.268224px;}
.ws1b{word-spacing:-12.257280px;}
.ws1a{word-spacing:-12.076704px;}
.ws18{word-spacing:-12.038400px;}
.ws1c{word-spacing:-11.961792px;}
.ws0{word-spacing:-0.178848px;}
.ws35{word-spacing:-0.066240px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-14.537088px;}
._7{margin-left:-13.314240px;}
._c{margin-left:-11.282688px;}
._8{margin-left:-9.568512px;}
._6{margin-left:-8.109216px;}
._d{margin-left:-7.003584px;}
._b{margin-left:-5.950656px;}
._e{margin-left:-4.702608px;}
._9{margin-left:-3.003264px;}
._0{margin-left:-1.439424px;}
._1{width:1.059840px;}
._21{width:2.158560px;}
._2{width:3.168000px;}
._17{width:4.200624px;}
._18{width:5.336352px;}
._4{width:6.399360px;}
._12{width:8.213760px;}
._f{width:10.137600px;}
._1b{width:11.805696px;}
._14{width:13.221504px;}
._1e{width:15.004800px;}
._3c{width:16.031808px;}
._3{width:17.124480px;}
._13{width:18.178560px;}
._16{width:19.226880px;}
._1a{width:20.681280px;}
._11{width:21.925440px;}
._10{width:23.051520px;}
._15{width:24.310080px;}
._5{width:25.868160px;}
._19{width:26.979840px;}
._20{width:28.208160px;}
._29{width:30.204000px;}
._1d{width:31.305600px;}
._25{width:32.482656px;}
._26{width:33.813648px;}
._1f{width:35.690400px;}
._28{width:37.087200px;}
._24{width:38.116800px;}
._2a{width:39.196800px;}
._2d{width:40.226400px;}
._31{width:41.342400px;}
._23{width:42.739200px;}
._27{width:43.804800px;}
._2b{width:45.352800px;}
._2e{width:47.347200px;}
._30{width:49.190400px;}
._2f{width:51.393744px;}
._1c{width:52.531200px;}
._22{width:53.611200px;}
._2c{width:56.678400px;}
._33{width:59.284800px;}
._32{width:60.410880px;}
._3b{width:90.333360px;}
._3a{width:91.676160px;}
._3d{width:98.648496px;}
._34{width:99.757440px;}
._37{width:106.778880px;}
._38{width:107.865504px;}
._39{width:118.900800px;}
._3f{width:143.656848px;}
._3e{width:144.923040px;}
._35{width:145.926720px;}
._36{width:320.469120px;}
.fc6{color:rgb(47,84,150);}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc1{color:rgb(28,72,86);}
.fc8{color:rgb(0,13,26);}
.fc7{color:rgb(89,89,89);}
.fc5{color:rgb(36,36,36);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs7{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:83.520000px;}
.fs8{font-size:90.720000px;}
.fs9{font-size:96.480000px;}
.fsa{font-size:102.240000px;}
.fs1{font-size:168.480000px;}
.y19{bottom:-30.840000px;}
.y0{bottom:0.000000px;}
.y18{bottom:12.000000px;}
.y1e{bottom:19.440000px;}
.y17{bottom:37.200000px;}
.y1d{bottom:38.160000px;}
.y1c{bottom:56.520000px;}
.y2{bottom:57.240000px;}
.y1{bottom:74.160000px;}
.y1b{bottom:75.240000px;}
.y166{bottom:93.600000px;}
.y1a{bottom:94.320000px;}
.y100{bottom:95.400000px;}
.yc1{bottom:96.480000px;}
.y1dd{bottom:97.560000px;}
.y118{bottom:98.640000px;}
.y43{bottom:100.440000px;}
.y13c{bottom:102.240000px;}
.y196{bottom:110.160000px;}
.y1b8{bottom:113.760000px;}
.y1b0{bottom:115.560000px;}
.yff{bottom:116.640000px;}
.y18b{bottom:117.000000px;}
.yc0{bottom:117.720000px;}
.y42{bottom:118.440000px;}
.ye5{bottom:119.520000px;}
.y1e8{bottom:121.680000px;}
.y152{bottom:124.560000px;}
.ya4{bottom:125.280000px;}
.y165{bottom:126.000000px;}
.y12a{bottom:127.440000px;}
.y17d{bottom:128.160000px;}
.y86{bottom:129.600000px;}
.y117{bottom:131.040000px;}
.y15{bottom:131.400000px;}
.y1d5{bottom:132.840000px;}
.y233{bottom:133.560000px;}
.y13b{bottom:134.640000px;}
.y223{bottom:136.080000px;}
.y41{bottom:136.440000px;}
.y1a5{bottom:136.800000px;}
.yfe{bottom:137.880000px;}
.ybf{bottom:139.320000px;}
.y1ce{bottom:140.760000px;}
.y195{bottom:142.560000px;}
.y20c{bottom:146.520000px;}
.ya3{bottom:146.880000px;}
.y172{bottom:149.400000px;}
.ye4{bottom:150.120000px;}
.y85{bottom:150.840000px;}
.y1dc{bottom:151.560000px;}
.y1b7{bottom:153.000000px;}
.y232{bottom:153.360000px;}
.y40{bottom:154.800000px;}
.y222{bottom:155.880000px;}
.y1f8{bottom:156.600000px;}
.y164{bottom:158.400000px;}
.yfd{bottom:159.480000px;}
.y129{bottom:159.840000px;}
.y17c{bottom:160.560000px;}
.yd8{bottom:161.640000px;}
.y116{bottom:163.440000px;}
.y1d4{bottom:165.240000px;}
.y14a{bottom:166.320000px;}
.y13a{bottom:167.040000px;}
.y1fe{bottom:167.400000px;}
.y1cd{bottom:167.760000px;}
.ya2{bottom:168.120000px;}
.y1a4{bottom:169.200000px;}
.y1af{bottom:169.560000px;}
.y1e7{bottom:172.080000px;}
.y84{bottom:172.440000px;}
.y3f{bottom:172.800000px;}
.y1be{bottom:174.240000px;}
.y194{bottom:174.960000px;}
.y221{bottom:175.680000px;}
.y1db{bottom:178.560000px;}
.ye3{bottom:180.720000px;}
.y171{bottom:181.800000px;}
.yd7{bottom:183.240000px;}
.y14{bottom:184.320000px;}
.y1f7{bottom:189.000000px;}
.yba{bottom:189.360000px;}
.y3e{bottom:190.800000px;}
.y128{bottom:192.240000px;}
.y17b{bottom:192.960000px;}
.y231{bottom:194.040000px;}
.y1cc{bottom:194.760000px;}
.y220{bottom:195.480000px;}
.y115{bottom:195.840000px;}
.y1ae{bottom:196.560000px;}
.ya1{bottom:196.920000px;}
.y149{bottom:198.720000px;}
.y139{bottom:199.440000px;}
.y1fd{bottom:199.800000px;}
.y83{bottom:201.240000px;}
.y1a3{bottom:201.600000px;}
.yfc{bottom:201.960000px;}
.y1da{bottom:205.560000px;}
.y1d3{bottom:206.280000px;}
.y1bd{bottom:206.640000px;}
.y13{bottom:207.000000px;}
.y193{bottom:207.360000px;}
.y3d{bottom:208.800000px;}
.ye2{bottom:211.320000px;}
.yd6{bottom:212.040000px;}
.y230{bottom:213.840000px;}
.y170{bottom:214.200000px;}
.y65{bottom:217.800000px;}
.ya0{bottom:218.520000px;}
.y1f6{bottom:221.400000px;}
.y1cb{bottom:221.760000px;}
.y82{bottom:222.480000px;}
.y163{bottom:223.200000px;}
.yfb{bottom:223.560000px;}
.y127{bottom:224.640000px;}
.y17a{bottom:225.360000px;}
.y3c{bottom:227.160000px;}
.y114{bottom:228.240000px;}
.y148{bottom:231.120000px;}
.y138{bottom:231.840000px;}
.y1fc{bottom:232.200000px;}
.y1d9{bottom:232.560000px;}
.yd5{bottom:233.280000px;}
.y22f{bottom:233.640000px;}
.y1a2{bottom:234.000000px;}
.y21f{bottom:236.160000px;}
.y1bc{bottom:239.040000px;}
.yb9{bottom:239.760000px;}
.ye1{bottom:241.920000px;}
.y1d2{bottom:243.360000px;}
.y64{bottom:243.720000px;}
.y81{bottom:244.080000px;}
.yfa{bottom:244.800000px;}
.y3b{bottom:245.160000px;}
.y16f{bottom:246.600000px;}
.y9f{bottom:247.320000px;}
.y192{bottom:248.040000px;}
.y1ca{bottom:248.760000px;}
.y12{bottom:249.120000px;}
.y1ad{bottom:250.560000px;}
.y1f5{bottom:253.800000px;}
.yd4{bottom:254.880000px;}
.y21e{bottom:255.960000px;}
.y126{bottom:257.040000px;}
.y179{bottom:257.760000px;}
.y1d8{bottom:259.560000px;}
.y113{bottom:260.640000px;}
.ybe{bottom:261.000000px;}
.y245{bottom:261.360000px;}
.y3a{bottom:263.160000px;}
.y147{bottom:263.520000px;}
.y137{bottom:264.240000px;}
.y1fb{bottom:264.600000px;}
.y80{bottom:265.320000px;}
.yf9{bottom:266.400000px;}
.y20b{bottom:267.840000px;}
.y63{bottom:268.560000px;}
.y1d1{bottom:270.360000px;}
.y1bb{bottom:271.440000px;}
.ye0{bottom:272.520000px;}
.y22e{bottom:274.680000px;}
.y1c9{bottom:275.760000px;}
.y1ac{bottom:277.560000px;}
.yd3{bottom:283.680000px;}
.y1d7{bottom:284.400000px;}
.y191{bottom:287.280000px;}
.yf8{bottom:287.640000px;}
.y62{bottom:289.440000px;}
.y9e{bottom:289.800000px;}
.y11{bottom:291.240000px;}
.y112{bottom:293.040000px;}
.y1d0{bottom:293.400000px;}
.y7f{bottom:294.120000px;}
.y22d{bottom:294.480000px;}
.y146{bottom:295.920000px;}
.y136{bottom:296.640000px;}
.y16e{bottom:297.000000px;}
.y1a1{bottom:298.800000px;}
.y1c8{bottom:302.760000px;}
.ydf{bottom:303.120000px;}
.y162{bottom:303.840000px;}
.y1f4{bottom:304.200000px;}
.y1ab{bottom:304.560000px;}
.yd2{bottom:304.920000px;}
.y20a{bottom:307.440000px;}
.y178{bottom:308.160000px;}
.yf7{bottom:308.880000px;}
.y61{bottom:309.960000px;}
.ybd{bottom:311.400000px;}
.y7e{bottom:315.360000px;}
.y21d{bottom:316.440000px;}
.y9d{bottom:318.960000px;}
.y1e6{bottom:319.680000px;}
.y13f{bottom:321.840000px;}
.y111{bottom:325.440000px;}
.yd1{bottom:326.160000px;}
.y151{bottom:327.960000px;}
.y145{bottom:328.320000px;}
.y16d{bottom:329.400000px;}
.y1c7{bottom:329.760000px;}
.yf6{bottom:330.120000px;}
.y60{bottom:330.840000px;}
.y1a0{bottom:331.200000px;}
.ybc{bottom:332.640000px;}
.y10{bottom:333.000000px;}
.yde{bottom:333.720000px;}
.y22c{bottom:335.160000px;}
.y244{bottom:335.880000px;}
.y161{bottom:336.240000px;}
.y1f3{bottom:336.600000px;}
.y135{bottom:338.040000px;}
.y39{bottom:338.400000px;}
.y9c{bottom:340.200000px;}
.y177{bottom:340.560000px;}
.y1aa{bottom:343.440000px;}
.y7d{bottom:344.520000px;}
.y209{bottom:348.120000px;}
.y5f{bottom:351.360000px;}
.y1e5{bottom:352.080000px;}
.y13e{bottom:354.240000px;}
.y150{bottom:354.960000px;}
.yd0{bottom:355.320000px;}
.y243{bottom:355.680000px;}
.y21c{bottom:356.040000px;}
.y38{bottom:356.760000px;}
.yb8{bottom:361.440000px;}
.y16c{bottom:361.800000px;}
.y125{bottom:363.240000px;}
.ydd{bottom:364.320000px;}
.y7c{bottom:365.760000px;}
.y110{bottom:366.840000px;}
.y208{bottom:367.920000px;}
.y160{bottom:368.640000px;}
.y9b{bottom:369.000000px;}
.y134{bottom:370.440000px;}
.y19f{bottom:371.880000px;}
.y5e{bottom:372.240000px;}
.y176{bottom:372.960000px;}
.y22b{bottom:374.760000px;}
.yf{bottom:375.120000px;}
.y37{bottom:375.480000px;}
.y1a9{bottom:375.840000px;}
.ycf{bottom:376.560000px;}
.yf5{bottom:379.440000px;}
.y18a{bottom:379.800000px;}
.yb7{bottom:383.040000px;}
.y1c6{bottom:383.760000px;}
.y7b{bottom:387.000000px;}
.y9a{bottom:390.240000px;}
.y5d{bottom:392.760000px;}
.y14f{bottom:393.840000px;}
.y16b{bottom:394.200000px;}
.ydc{bottom:394.920000px;}
.y124{bottom:395.640000px;}
.y36{bottom:396.360000px;}
.y21b{bottom:397.080000px;}
.yce{bottom:397.800000px;}
.y10f{bottom:399.240000px;}
.y190{bottom:401.040000px;}
.y1f2{bottom:401.400000px;}
.y1e4{bottom:402.480000px;}
.y133{bottom:402.840000px;}
.y175{bottom:405.360000px;}
.y1a8{bottom:408.240000px;}
.y207{bottom:408.960000px;}
.y144{bottom:409.680000px;}
.y1c5{bottom:410.760000px;}
.yb6{bottom:411.840000px;}
.y189{bottom:412.200000px;}
.y19e{bottom:412.560000px;}
.y5c{bottom:413.640000px;}
.y22a{bottom:415.440000px;}
.y7a{bottom:416.160000px;}
.y242{bottom:416.520000px;}
.y35{bottom:416.880000px;}
.ye{bottom:417.240000px;}
.y15f{bottom:419.040000px;}
.y99{bottom:419.400000px;}
.y14e{bottom:426.240000px;}
.y16a{bottom:426.600000px;}
.ycd{bottom:426.960000px;}
.y123{bottom:428.040000px;}
.y10e{bottom:431.640000px;}
.yb5{bottom:433.080000px;}
.y5b{bottom:433.440000px;}
.y1f1{bottom:433.800000px;}
.y1e3{bottom:434.880000px;}
.y132{bottom:435.240000px;}
.y241{bottom:436.320000px;}
.ydb{bottom:436.680000px;}
.y79{bottom:437.400000px;}
.y34{bottom:437.760000px;}
.y98{bottom:440.640000px;}
.yf4{bottom:441.000000px;}
.y18f{bottom:442.080000px;}
.y188{bottom:444.600000px;}
.y143{bottom:446.760000px;}
.ycc{bottom:448.200000px;}
.y206{bottom:449.640000px;}
.y15e{bottom:451.440000px;}
.y19d{bottom:455.400000px;}
.y21a{bottom:457.560000px;}
.y33{bottom:458.280000px;}
.y78{bottom:458.640000px;}
.yd{bottom:459.000000px;}
.y122{bottom:460.440000px;}
.yb4{bottom:461.880000px;}
.y10d{bottom:464.040000px;}
.y5a{bottom:464.400000px;}
.y1c4{bottom:464.760000px;}
.yf3{bottom:466.200000px;}
.y1e2{bottom:467.280000px;}
.y131{bottom:467.640000px;}
.y97{bottom:469.440000px;}
.yda{bottom:470.160000px;}
.y1a7{bottom:473.040000px;}
.y229{bottom:476.280000px;}
.y187{bottom:477.000000px;}
.y219{bottom:477.360000px;}
.y142{bottom:477.720000px;}
.y32{bottom:479.160000px;}
.y59{bottom:482.760000px;}
.yb3{bottom:483.480000px;}
.y15d{bottom:483.840000px;}
.y77{bottom:487.440000px;}
.y205{bottom:489.240000px;}
.y96{bottom:491.040000px;}
.y1fa{bottom:491.400000px;}
.y1c3{bottom:491.760000px;}
.yd9{bottom:492.840000px;}
.y228{bottom:496.080000px;}
.y10c{bottom:496.440000px;}
.y240{bottom:496.800000px;}
.y218{bottom:497.160000px;}
.ycb{bottom:498.240000px;}
.y1f0{bottom:498.600000px;}
.y31{bottom:499.680000px;}
.y130{bottom:500.040000px;}
.yc{bottom:501.120000px;}
.yb2{bottom:504.720000px;}
.y1a6{bottom:505.440000px;}
.y19c{bottom:505.800000px;}
.y76{bottom:509.040000px;}
.y186{bottom:509.400000px;}
.y174{bottom:510.840000px;}
.y95{bottom:512.280000px;}
.y15c{bottom:516.240000px;}
.y30{bottom:517.320000px;}
.y1c2{bottom:518.760000px;}
.y58{bottom:519.120000px;}
.yca{bottom:519.840000px;}
.yf2{bottom:522.000000px;}
.y14d{bottom:523.440000px;}
.y1f9{bottom:523.800000px;}
.y121{bottom:525.240000px;}
.y10b{bottom:528.840000px;}
.y204{bottom:529.920000px;}
.y75{bottom:530.280000px;}
.y1ef{bottom:531.000000px;}
.y173{bottom:532.080000px;}
.y12f{bottom:532.440000px;}
.yb1{bottom:533.520000px;}
.y2f{bottom:534.960000px;}
.y227{bottom:536.760000px;}
.y57{bottom:537.120000px;}
.y23f{bottom:537.480000px;}
.y217{bottom:537.840000px;}
.y1b6{bottom:538.560000px;}
.y94{bottom:541.080000px;}
.yb{bottom:543.240000px;}
.y1c1{bottom:545.760000px;}
.yf1{bottom:547.200000px;}
.y15b{bottom:548.640000px;}
.y203{bottom:549.720000px;}
.y2e{bottom:552.960000px;}
.yb0{bottom:555.120000px;}
.y56{bottom:555.480000px;}
.y14c{bottom:555.840000px;}
.y19b{bottom:556.200000px;}
.y1b5{bottom:556.560000px;}
.y23e{bottom:557.280000px;}
.y120{bottom:557.640000px;}
.y74{bottom:559.080000px;}
.y185{bottom:559.800000px;}
.y10a{bottom:561.240000px;}
.y93{bottom:562.320000px;}
.y1e1{bottom:564.480000px;}
.yc9{bottom:569.880000px;}
.y2d{bottom:570.960000px;}
.y1ee{bottom:571.680000px;}
.y1c0{bottom:572.760000px;}
.y55{bottom:573.480000px;}
.yf0{bottom:573.840000px;}
.yaf{bottom:576.360000px;}
.y23d{bottom:577.080000px;}
.y216{bottom:577.440000px;}
.y73{bottom:580.680000px;}
.y15a{bottom:581.040000px;}
.y1b4{bottom:583.560000px;}
.y92{bottom:583.920000px;}
.ya{bottom:585.000000px;}
.y14b{bottom:588.240000px;}
.y19a{bottom:588.600000px;}
.y2c{bottom:589.320000px;}
.y11f{bottom:590.040000px;}
.y202{bottom:590.760000px;}
.y54{bottom:591.480000px;}
.y184{bottom:592.200000px;}
.y109{bottom:593.640000px;}
.y1e0{bottom:596.880000px;}
.y215{bottom:597.240000px;}
.y1bf{bottom:599.760000px;}
.yef{bottom:603.000000px;}
.yae{bottom:605.160000px;}
.y12e{bottom:606.240000px;}
.y2b{bottom:608.040000px;}
.y72{bottom:609.480000px;}
.y53{bottom:609.840000px;}
.y1b3{bottom:610.560000px;}
.y91{bottom:612.720000px;}
.y159{bottom:613.440000px;}
.y226{bottom:617.040000px;}
.y23c{bottom:618.120000px;}
.yc8{bottom:620.280000px;}
.y18e{bottom:620.640000px;}
.y13d{bottom:622.080000px;}
.y11e{bottom:622.440000px;}
.y183{bottom:624.600000px;}
.y108{bottom:626.040000px;}
.y2a{bottom:626.400000px;}
.yad{bottom:626.760000px;}
.y9{bottom:627.120000px;}
.y52{bottom:627.840000px;}
.yee{bottom:628.200000px;}
.y71{bottom:630.720000px;}
.y90{bottom:633.960000px;}
.y141{bottom:637.560000px;}
.y23b{bottom:637.920000px;}
.y214{bottom:638.280000px;}
.y12d{bottom:638.640000px;}
.y199{bottom:639.000000px;}
.yc7{bottom:641.520000px;}
.y29{bottom:645.120000px;}
.y51{bottom:645.840000px;}
.yac{bottom:648.000000px;}
.y201{bottom:651.240000px;}
.y70{bottom:652.320000px;}
.y18d{bottom:653.040000px;}
.yed{bottom:654.840000px;}
.ybb{bottom:655.560000px;}
.y107{bottom:657.720000px;}
.y213{bottom:658.080000px;}
.y8f{bottom:663.120000px;}
.y28{bottom:664.200000px;}
.y140{bottom:664.560000px;}
.y8{bottom:669.240000px;}
.yc6{bottom:670.320000px;}
.y12c{bottom:671.040000px;}
.y198{bottom:671.400000px;}
.y182{bottom:675.000000px;}
.yab{bottom:676.800000px;}
.y23a{bottom:677.520000px;}
.y212{bottom:677.880000px;}
.y158{bottom:678.240000px;}
.y6f{bottom:681.120000px;}
.y1df{bottom:681.840000px;}
.y50{bottom:682.200000px;}
.yec{bottom:684.000000px;}
.y8e{bottom:684.360000px;}
.y27{bottom:685.440000px;}
.y11d{bottom:687.240000px;}
.y200{bottom:690.840000px;}
.yc5{bottom:691.920000px;}
.y1ba{bottom:696.240000px;}
.yaa{bottom:698.040000px;}
.y106{bottom:698.400000px;}
.y4f{bottom:700.200000px;}
.y6e{bottom:702.360000px;}
.y12b{bottom:703.440000px;}
.y26{bottom:704.160000px;}
.y8d{bottom:705.600000px;}
.y181{bottom:707.400000px;}
.yeb{bottom:709.200000px;}
.y157{bottom:710.640000px;}
.y7{bottom:711.000000px;}
.y197{bottom:712.080000px;}
.yc4{bottom:713.160000px;}
.y18c{bottom:717.840000px;}
.y239{bottom:718.200000px;}
.y4e{bottom:718.560000px;}
.ya9{bottom:719.640000px;}
.y25{bottom:722.520000px;}
.y1ff{bottom:725.400000px;}
.y1b9{bottom:728.640000px;}
.y1d6{bottom:729.360000px;}
.y6d{bottom:731.160000px;}
.y105{bottom:731.520000px;}
.y8c{bottom:734.400000px;}
.yea{bottom:735.840000px;}
.y4d{bottom:736.560000px;}
.y238{bottom:738.000000px;}
.y211{bottom:738.360000px;}
.y180{bottom:739.800000px;}
.y169{bottom:743.040000px;}
.ya8{bottom:748.440000px;}
.y1ed{bottom:750.240000px;}
.y11c{bottom:751.680000px;}
.y6c{bottom:752.760000px;}
.y6{bottom:753.120000px;}
.y4c{bottom:754.560000px;}
.y8b{bottom:756.000000px;}
.y237{bottom:757.800000px;}
.y210{bottom:758.160000px;}
.y156{bottom:761.040000px;}
.yc3{bottom:763.560000px;}
.y24{bottom:765.720000px;}
.ye9{bottom:768.240000px;}
.ya7{bottom:769.680000px;}
.y104{bottom:770.760000px;}
.y17f{bottom:772.200000px;}
.y4b{bottom:772.560000px;}
.y6b{bottom:774.000000px;}
.y168{bottom:775.440000px;}
.y8a{bottom:777.240000px;}
.y225{bottom:777.960000px;}
.y1ec{bottom:782.640000px;}
.yc2{bottom:784.800000px;}
.y4a{bottom:790.920000px;}
.y23{bottom:791.280000px;}
.y103{bottom:792.360000px;}
.y155{bottom:793.440000px;}
.y5{bottom:795.240000px;}
.y236{bottom:798.480000px;}
.ya6{bottom:798.840000px;}
.y11b{bottom:800.640000px;}
.y6a{bottom:802.800000px;}
.y17e{bottom:804.600000px;}
.y89{bottom:806.040000px;}
.y49{bottom:808.920000px;}
.y102{bottom:813.600000px;}
.y1eb{bottom:815.040000px;}
.y167{bottom:816.480000px;}
.y235{bottom:818.280000px;}
.y20f{bottom:818.640000px;}
.y69{bottom:824.400000px;}
.y154{bottom:825.840000px;}
.y48{bottom:826.920000px;}
.y88{bottom:827.640000px;}
.ye8{bottom:829.440000px;}
.y11a{bottom:833.040000px;}
.y101{bottom:835.200000px;}
.y22{bottom:835.560000px;}
.y4{bottom:837.000000px;}
.y224{bottom:838.440000px;}
.y47{bottom:845.280000px;}
.y68{bottom:845.640000px;}
.y1de{bottom:846.360000px;}
.ya5{bottom:848.880000px;}
.y1ea{bottom:855.720000px;}
.y21{bottom:856.440000px;}
.y153{bottom:858.240000px;}
.y20e{bottom:859.680000px;}
.ye7{bottom:860.040000px;}
.y46{bottom:863.280000px;}
.y1cf{bottom:864.360000px;}
.y119{bottom:865.440000px;}
.y1b2{bottom:873.360000px;}
.y20{bottom:876.960000px;}
.y87{bottom:877.680000px;}
.y67{bottom:878.760000px;}
.y3{bottom:879.120000px;}
.y20d{bottom:879.480000px;}
.y45{bottom:881.280000px;}
.ye6{bottom:890.640000px;}
.y1e9{bottom:896.400000px;}
.y1f{bottom:897.840000px;}
.y234{bottom:898.920000px;}
.y66{bottom:899.280000px;}
.y44{bottom:899.640000px;}
.y1b1{bottom:900.360000px;}
.y16{bottom:933.000000px;}
.hd{height:37.352813px;}
.h2{height:40.310156px;}
.hb{height:42.229688px;}
.hc{height:44.024063px;}
.h9{height:44.149219px;}
.h16{height:44.760960px;}
.h4{height:47.545313px;}
.h1b{height:47.988281px;}
.h1c{height:49.472640px;}
.h18{height:49.533120px;}
.h19{height:49.878281px;}
.h1a{height:50.863680px;}
.h8{height:51.827344px;}
.h10{height:54.184320px;}
.h12{height:54.250560px;}
.hf{height:55.177920px;}
.h5{height:57.000000px;}
.h11{height:58.896000px;}
.h15{height:59.976000px;}
.he{height:60.465234px;}
.ha{height:63.175781px;}
.h13{height:64.304297px;}
.h17{height:65.396160px;}
.h6{height:69.572160px;}
.h14{height:85.983840px;}
.h3{height:112.292578px;}
.h7{height:112.500000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:244.500000px;}
.w2{width:486.000000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:3.000000px;}
.x7{left:10.799928px;}
.xd{left:18.929076px;}
.x5{left:23.892696px;}
.xb{left:33.108756px;}
.xa{left:41.866332px;}
.xc{left:49.693344px;}
.x9{left:61.815300px;}
.x3{left:84.959856px;}
.x1a{left:92.362428px;}
.x6{left:101.790540px;}
.x29{left:111.959856px;}
.x28{left:116.834832px;}
.x4{left:126.000000px;}
.xf{left:128.475972px;}
.x1b{left:135.903060px;}
.x2a{left:138.959856px;}
.x2d{left:159.359976px;}
.x10{left:234.702036px;}
.x1c{left:246.176856px;}
.x15{left:257.743656px;}
.x13{left:271.923336px;}
.x12{left:280.680912px;}
.x16{left:285.494760px;}
.x14{left:288.507924px;}
.x11{left:300.629880px;}
.x26{left:317.009016px;}
.x27{left:319.226076px;}
.x21{left:329.105340px;}
.x18{left:332.382204px;}
.x19{left:335.590920px;}
.x2{left:339.106536px;}
.x24{left:340.458624px;}
.x1e{left:349.530012px;}
.xe{left:359.122176px;}
.x1{left:361.372320px;}
.x20{left:377.780760px;}
.x1d{left:426.038040px;}
.x25{left:448.141320px;}
.x23{left:454.099680px;}
.x22{left:462.937680px;}
.x1f{left:466.002000px;}
.x17{left:485.403480px;}
.x2c{left:516.960000px;}
.x2f{left:521.640000px;}
.x2e{left:632.160000px;}
.x2b{left:638.279640px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls31{letter-spacing:-0.505856pt;}
.ls2f{letter-spacing:-0.471808pt;}
.ls40{letter-spacing:-0.376320pt;}
.ls2d{letter-spacing:-0.340480pt;}
.ls2e{letter-spacing:-0.306432pt;}
.ls45{letter-spacing:-0.301056pt;}
.ls49{letter-spacing:-0.290304pt;}
.ls16{letter-spacing:-0.275968pt;}
.ls47{letter-spacing:-0.274176pt;}
.lse{letter-spacing:-0.259072pt;}
.ls46{letter-spacing:-0.258048pt;}
.ls30{letter-spacing:-0.243200pt;}
.ls3d{letter-spacing:-0.236544pt;}
.ls2c{letter-spacing:-0.233472pt;}
.lsb{letter-spacing:-0.230912pt;}
.ls3e{letter-spacing:-0.225792pt;}
.ls13{letter-spacing:-0.219648pt;}
.ls21{letter-spacing:-0.215040pt;}
.ls11{letter-spacing:-0.214016pt;}
.ls48{letter-spacing:-0.209664pt;}
.ls44{letter-spacing:-0.204288pt;}
.lsc{letter-spacing:-0.202752pt;}
.ls4d{letter-spacing:-0.200192pt;}
.ls1b{letter-spacing:-0.188416pt;}
.ls3f{letter-spacing:-0.172032pt;}
.ls15{letter-spacing:-0.168960pt;}
.ls24{letter-spacing:-0.164864pt;}
.ls29{letter-spacing:-0.163584pt;}
.ls1d{letter-spacing:-0.158976pt;}
.lsd{letter-spacing:-0.157696pt;}
.ls2b{letter-spacing:-0.154496pt;}
.ls22{letter-spacing:-0.153088pt;}
.ls6{letter-spacing:-0.147200pt;}
.ls43{letter-spacing:-0.145152pt;}
.ls1e{letter-spacing:-0.141312pt;}
.ls4{letter-spacing:-0.135424pt;}
.ls5{letter-spacing:-0.129536pt;}
.ls19{letter-spacing:-0.123648pt;}
.ls10{letter-spacing:-0.118272pt;}
.ls2a{letter-spacing:-0.118144pt;}
.ls18{letter-spacing:-0.117760pt;}
.ls1f{letter-spacing:-0.111872pt;}
.ls42{letter-spacing:-0.107520pt;}
.ls12{letter-spacing:-0.107008pt;}
.ls1a{letter-spacing:-0.105984pt;}
.ls23{letter-spacing:-0.100096pt;}
.lsf{letter-spacing:-0.095744pt;}
.ls9{letter-spacing:-0.094208pt;}
.ls32{letter-spacing:-0.088320pt;}
.ls17{letter-spacing:-0.082432pt;}
.ls20{letter-spacing:-0.076544pt;}
.ls1c{letter-spacing:-0.070656pt;}
.ls33{letter-spacing:-0.064768pt;}
.ls34{letter-spacing:-0.058880pt;}
.ls38{letter-spacing:-0.052992pt;}
.lsa{letter-spacing:-0.047104pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000512pt;}
.ls4b{letter-spacing:0.034560pt;}
.ls36{letter-spacing:0.048384pt;}
.ls1{letter-spacing:0.089856pt;}
.ls39{letter-spacing:0.103680pt;}
.ls41{letter-spacing:0.138240pt;}
.ls37{letter-spacing:0.152064pt;}
.ls4a{letter-spacing:0.158976pt;}
.ls3b{letter-spacing:0.186624pt;}
.ls3{letter-spacing:0.244992pt;}
.ls0{letter-spacing:0.296960pt;}
.ls35{letter-spacing:2.893312pt;}
.ls27{letter-spacing:7.613312pt;}
.ls28{letter-spacing:7.613440pt;}
.ls25{letter-spacing:8.869888pt;}
.ls51{letter-spacing:9.323520pt;}
.ls4e{letter-spacing:9.463040pt;}
.ls26{letter-spacing:14.542080pt;}
.ls8{letter-spacing:14.894080pt;}
.ls52{letter-spacing:18.272000pt;}
.ls4c{letter-spacing:31.724800pt;}
.ls3c{letter-spacing:37.224320pt;}
.ls3a{letter-spacing:55.424256pt;}
.ls50{letter-spacing:80.941568pt;}
.ls4f{letter-spacing:105.386240pt;}
.ls14{letter-spacing:749.775360pt;}
.ls53{letter-spacing:753.280000pt;}
.ws16{word-spacing:-19.566464pt;}
.ws24{word-spacing:-15.151104pt;}
.ws2b{word-spacing:-15.137280pt;}
.ws23{word-spacing:-15.102720pt;}
.ws36{word-spacing:-14.720000pt;}
.ws27{word-spacing:-14.528000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.972992pt;}
.ws5{word-spacing:-13.922304pt;}
.ws1d{word-spacing:-13.888000pt;}
.ws4{word-spacing:-13.860352pt;}
.ws2a{word-spacing:-13.483520pt;}
.ws33{word-spacing:-13.412864pt;}
.ws31{word-spacing:-13.383424pt;}
.ws30{word-spacing:-13.371648pt;}
.wse{word-spacing:-13.365760pt;}
.ws15{word-spacing:-13.336320pt;}
.ws37{word-spacing:-13.330432pt;}
.ws8{word-spacing:-13.318656pt;}
.ws34{word-spacing:-13.306880pt;}
.ws38{word-spacing:-13.300992pt;}
.ws12{word-spacing:-13.295104pt;}
.ws1f{word-spacing:-13.277440pt;}
.ws1e{word-spacing:-13.271552pt;}
.wsd{word-spacing:-13.265664pt;}
.ws9{word-spacing:-13.259776pt;}
.ws13{word-spacing:-13.253888pt;}
.ws14{word-spacing:-13.248000pt;}
.wsf{word-spacing:-13.242112pt;}
.ws7{word-spacing:-13.236224pt;}
.ws10{word-spacing:-13.230336pt;}
.wsc{word-spacing:-13.224960pt;}
.ws32{word-spacing:-13.224448pt;}
.wsa{word-spacing:-13.218560pt;}
.ws11{word-spacing:-13.212672pt;}
.wsb{word-spacing:-13.206784pt;}
.ws25{word-spacing:-12.776960pt;}
.ws2c{word-spacing:-12.700416pt;}
.ws6{word-spacing:-12.694528pt;}
.ws29{word-spacing:-12.682752pt;}
.ws21{word-spacing:-12.635648pt;}
.ws26{word-spacing:-12.623872pt;}
.ws22{word-spacing:-12.612096pt;}
.ws20{word-spacing:-12.588544pt;}
.ws2f{word-spacing:-12.311040pt;}
.ws2d{word-spacing:-12.106752pt;}
.ws28{word-spacing:-11.934720pt;}
.ws2e{word-spacing:-11.429376pt;}
.ws19{word-spacing:-11.041280pt;}
.ws17{word-spacing:-10.905088pt;}
.ws1b{word-spacing:-10.895360pt;}
.ws1a{word-spacing:-10.734848pt;}
.ws18{word-spacing:-10.700800pt;}
.ws1c{word-spacing:-10.632704pt;}
.ws0{word-spacing:-0.158976pt;}
.ws35{word-spacing:-0.058880pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-12.921856pt;}
._7{margin-left:-11.834880pt;}
._c{margin-left:-10.029056pt;}
._8{margin-left:-8.505344pt;}
._6{margin-left:-7.208192pt;}
._d{margin-left:-6.225408pt;}
._b{margin-left:-5.289472pt;}
._e{margin-left:-4.180096pt;}
._9{margin-left:-2.669568pt;}
._0{margin-left:-1.279488pt;}
._1{width:0.942080pt;}
._21{width:1.918720pt;}
._2{width:2.816000pt;}
._17{width:3.733888pt;}
._18{width:4.743424pt;}
._4{width:5.688320pt;}
._12{width:7.301120pt;}
._f{width:9.011200pt;}
._1b{width:10.493952pt;}
._14{width:11.752448pt;}
._1e{width:13.337600pt;}
._3c{width:14.250496pt;}
._3{width:15.221760pt;}
._13{width:16.158720pt;}
._16{width:17.090560pt;}
._1a{width:18.383360pt;}
._11{width:19.489280pt;}
._10{width:20.490240pt;}
._15{width:21.608960pt;}
._5{width:22.993920pt;}
._19{width:23.982080pt;}
._20{width:25.073920pt;}
._29{width:26.848000pt;}
._1d{width:27.827200pt;}
._25{width:28.873472pt;}
._26{width:30.056576pt;}
._1f{width:31.724800pt;}
._28{width:32.966400pt;}
._24{width:33.881600pt;}
._2a{width:34.841600pt;}
._2d{width:35.756800pt;}
._31{width:36.748800pt;}
._23{width:37.990400pt;}
._27{width:38.937600pt;}
._2b{width:40.313600pt;}
._2e{width:42.086400pt;}
._30{width:43.724800pt;}
._2f{width:45.683328pt;}
._1c{width:46.694400pt;}
._22{width:47.654400pt;}
._2c{width:50.380800pt;}
._33{width:52.697600pt;}
._32{width:53.698560pt;}
._3b{width:80.296320pt;}
._3a{width:81.489920pt;}
._3d{width:87.687552pt;}
._34{width:88.673280pt;}
._37{width:94.914560pt;}
._38{width:95.880448pt;}
._39{width:105.689600pt;}
._3f{width:127.694976pt;}
._3e{width:128.820480pt;}
._35{width:129.712640pt;}
._36{width:284.861440pt;}
.fs5{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs7{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.240000pt;}
.fs8{font-size:80.640000pt;}
.fs9{font-size:85.760000pt;}
.fsa{font-size:90.880000pt;}
.fs1{font-size:149.760000pt;}
.y19{bottom:-27.413333pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:10.666667pt;}
.y1e{bottom:17.280000pt;}
.y17{bottom:33.066667pt;}
.y1d{bottom:33.920000pt;}
.y1c{bottom:50.240000pt;}
.y2{bottom:50.880000pt;}
.y1{bottom:65.920000pt;}
.y1b{bottom:66.880000pt;}
.y166{bottom:83.200000pt;}
.y1a{bottom:83.840000pt;}
.y100{bottom:84.800000pt;}
.yc1{bottom:85.760000pt;}
.y1dd{bottom:86.720000pt;}
.y118{bottom:87.680000pt;}
.y43{bottom:89.280000pt;}
.y13c{bottom:90.880000pt;}
.y196{bottom:97.920000pt;}
.y1b8{bottom:101.120000pt;}
.y1b0{bottom:102.720000pt;}
.yff{bottom:103.680000pt;}
.y18b{bottom:104.000000pt;}
.yc0{bottom:104.640000pt;}
.y42{bottom:105.280000pt;}
.ye5{bottom:106.240000pt;}
.y1e8{bottom:108.160000pt;}
.y152{bottom:110.720000pt;}
.ya4{bottom:111.360000pt;}
.y165{bottom:112.000000pt;}
.y12a{bottom:113.280000pt;}
.y17d{bottom:113.920000pt;}
.y86{bottom:115.200000pt;}
.y117{bottom:116.480000pt;}
.y15{bottom:116.800000pt;}
.y1d5{bottom:118.080000pt;}
.y233{bottom:118.720000pt;}
.y13b{bottom:119.680000pt;}
.y223{bottom:120.960000pt;}
.y41{bottom:121.280000pt;}
.y1a5{bottom:121.600000pt;}
.yfe{bottom:122.560000pt;}
.ybf{bottom:123.840000pt;}
.y1ce{bottom:125.120000pt;}
.y195{bottom:126.720000pt;}
.y20c{bottom:130.240000pt;}
.ya3{bottom:130.560000pt;}
.y172{bottom:132.800000pt;}
.ye4{bottom:133.440000pt;}
.y85{bottom:134.080000pt;}
.y1dc{bottom:134.720000pt;}
.y1b7{bottom:136.000000pt;}
.y232{bottom:136.320000pt;}
.y40{bottom:137.600000pt;}
.y222{bottom:138.560000pt;}
.y1f8{bottom:139.200000pt;}
.y164{bottom:140.800000pt;}
.yfd{bottom:141.760000pt;}
.y129{bottom:142.080000pt;}
.y17c{bottom:142.720000pt;}
.yd8{bottom:143.680000pt;}
.y116{bottom:145.280000pt;}
.y1d4{bottom:146.880000pt;}
.y14a{bottom:147.840000pt;}
.y13a{bottom:148.480000pt;}
.y1fe{bottom:148.800000pt;}
.y1cd{bottom:149.120000pt;}
.ya2{bottom:149.440000pt;}
.y1a4{bottom:150.400000pt;}
.y1af{bottom:150.720000pt;}
.y1e7{bottom:152.960000pt;}
.y84{bottom:153.280000pt;}
.y3f{bottom:153.600000pt;}
.y1be{bottom:154.880000pt;}
.y194{bottom:155.520000pt;}
.y221{bottom:156.160000pt;}
.y1db{bottom:158.720000pt;}
.ye3{bottom:160.640000pt;}
.y171{bottom:161.600000pt;}
.yd7{bottom:162.880000pt;}
.y14{bottom:163.840000pt;}
.y1f7{bottom:168.000000pt;}
.yba{bottom:168.320000pt;}
.y3e{bottom:169.600000pt;}
.y128{bottom:170.880000pt;}
.y17b{bottom:171.520000pt;}
.y231{bottom:172.480000pt;}
.y1cc{bottom:173.120000pt;}
.y220{bottom:173.760000pt;}
.y115{bottom:174.080000pt;}
.y1ae{bottom:174.720000pt;}
.ya1{bottom:175.040000pt;}
.y149{bottom:176.640000pt;}
.y139{bottom:177.280000pt;}
.y1fd{bottom:177.600000pt;}
.y83{bottom:178.880000pt;}
.y1a3{bottom:179.200000pt;}
.yfc{bottom:179.520000pt;}
.y1da{bottom:182.720000pt;}
.y1d3{bottom:183.360000pt;}
.y1bd{bottom:183.680000pt;}
.y13{bottom:184.000000pt;}
.y193{bottom:184.320000pt;}
.y3d{bottom:185.600000pt;}
.ye2{bottom:187.840000pt;}
.yd6{bottom:188.480000pt;}
.y230{bottom:190.080000pt;}
.y170{bottom:190.400000pt;}
.y65{bottom:193.600000pt;}
.ya0{bottom:194.240000pt;}
.y1f6{bottom:196.800000pt;}
.y1cb{bottom:197.120000pt;}
.y82{bottom:197.760000pt;}
.y163{bottom:198.400000pt;}
.yfb{bottom:198.720000pt;}
.y127{bottom:199.680000pt;}
.y17a{bottom:200.320000pt;}
.y3c{bottom:201.920000pt;}
.y114{bottom:202.880000pt;}
.y148{bottom:205.440000pt;}
.y138{bottom:206.080000pt;}
.y1fc{bottom:206.400000pt;}
.y1d9{bottom:206.720000pt;}
.yd5{bottom:207.360000pt;}
.y22f{bottom:207.680000pt;}
.y1a2{bottom:208.000000pt;}
.y21f{bottom:209.920000pt;}
.y1bc{bottom:212.480000pt;}
.yb9{bottom:213.120000pt;}
.ye1{bottom:215.040000pt;}
.y1d2{bottom:216.320000pt;}
.y64{bottom:216.640000pt;}
.y81{bottom:216.960000pt;}
.yfa{bottom:217.600000pt;}
.y3b{bottom:217.920000pt;}
.y16f{bottom:219.200000pt;}
.y9f{bottom:219.840000pt;}
.y192{bottom:220.480000pt;}
.y1ca{bottom:221.120000pt;}
.y12{bottom:221.440000pt;}
.y1ad{bottom:222.720000pt;}
.y1f5{bottom:225.600000pt;}
.yd4{bottom:226.560000pt;}
.y21e{bottom:227.520000pt;}
.y126{bottom:228.480000pt;}
.y179{bottom:229.120000pt;}
.y1d8{bottom:230.720000pt;}
.y113{bottom:231.680000pt;}
.ybe{bottom:232.000000pt;}
.y245{bottom:232.320000pt;}
.y3a{bottom:233.920000pt;}
.y147{bottom:234.240000pt;}
.y137{bottom:234.880000pt;}
.y1fb{bottom:235.200000pt;}
.y80{bottom:235.840000pt;}
.yf9{bottom:236.800000pt;}
.y20b{bottom:238.080000pt;}
.y63{bottom:238.720000pt;}
.y1d1{bottom:240.320000pt;}
.y1bb{bottom:241.280000pt;}
.ye0{bottom:242.240000pt;}
.y22e{bottom:244.160000pt;}
.y1c9{bottom:245.120000pt;}
.y1ac{bottom:246.720000pt;}
.yd3{bottom:252.160000pt;}
.y1d7{bottom:252.800000pt;}
.y191{bottom:255.360000pt;}
.yf8{bottom:255.680000pt;}
.y62{bottom:257.280000pt;}
.y9e{bottom:257.600000pt;}
.y11{bottom:258.880000pt;}
.y112{bottom:260.480000pt;}
.y1d0{bottom:260.800000pt;}
.y7f{bottom:261.440000pt;}
.y22d{bottom:261.760000pt;}
.y146{bottom:263.040000pt;}
.y136{bottom:263.680000pt;}
.y16e{bottom:264.000000pt;}
.y1a1{bottom:265.600000pt;}
.y1c8{bottom:269.120000pt;}
.ydf{bottom:269.440000pt;}
.y162{bottom:270.080000pt;}
.y1f4{bottom:270.400000pt;}
.y1ab{bottom:270.720000pt;}
.yd2{bottom:271.040000pt;}
.y20a{bottom:273.280000pt;}
.y178{bottom:273.920000pt;}
.yf7{bottom:274.560000pt;}
.y61{bottom:275.520000pt;}
.ybd{bottom:276.800000pt;}
.y7e{bottom:280.320000pt;}
.y21d{bottom:281.280000pt;}
.y9d{bottom:283.520000pt;}
.y1e6{bottom:284.160000pt;}
.y13f{bottom:286.080000pt;}
.y111{bottom:289.280000pt;}
.yd1{bottom:289.920000pt;}
.y151{bottom:291.520000pt;}
.y145{bottom:291.840000pt;}
.y16d{bottom:292.800000pt;}
.y1c7{bottom:293.120000pt;}
.yf6{bottom:293.440000pt;}
.y60{bottom:294.080000pt;}
.y1a0{bottom:294.400000pt;}
.ybc{bottom:295.680000pt;}
.y10{bottom:296.000000pt;}
.yde{bottom:296.640000pt;}
.y22c{bottom:297.920000pt;}
.y244{bottom:298.560000pt;}
.y161{bottom:298.880000pt;}
.y1f3{bottom:299.200000pt;}
.y135{bottom:300.480000pt;}
.y39{bottom:300.800000pt;}
.y9c{bottom:302.400000pt;}
.y177{bottom:302.720000pt;}
.y1aa{bottom:305.280000pt;}
.y7d{bottom:306.240000pt;}
.y209{bottom:309.440000pt;}
.y5f{bottom:312.320000pt;}
.y1e5{bottom:312.960000pt;}
.y13e{bottom:314.880000pt;}
.y150{bottom:315.520000pt;}
.yd0{bottom:315.840000pt;}
.y243{bottom:316.160000pt;}
.y21c{bottom:316.480000pt;}
.y38{bottom:317.120000pt;}
.yb8{bottom:321.280000pt;}
.y16c{bottom:321.600000pt;}
.y125{bottom:322.880000pt;}
.ydd{bottom:323.840000pt;}
.y7c{bottom:325.120000pt;}
.y110{bottom:326.080000pt;}
.y208{bottom:327.040000pt;}
.y160{bottom:327.680000pt;}
.y9b{bottom:328.000000pt;}
.y134{bottom:329.280000pt;}
.y19f{bottom:330.560000pt;}
.y5e{bottom:330.880000pt;}
.y176{bottom:331.520000pt;}
.y22b{bottom:333.120000pt;}
.yf{bottom:333.440000pt;}
.y37{bottom:333.760000pt;}
.y1a9{bottom:334.080000pt;}
.ycf{bottom:334.720000pt;}
.yf5{bottom:337.280000pt;}
.y18a{bottom:337.600000pt;}
.yb7{bottom:340.480000pt;}
.y1c6{bottom:341.120000pt;}
.y7b{bottom:344.000000pt;}
.y9a{bottom:346.880000pt;}
.y5d{bottom:349.120000pt;}
.y14f{bottom:350.080000pt;}
.y16b{bottom:350.400000pt;}
.ydc{bottom:351.040000pt;}
.y124{bottom:351.680000pt;}
.y36{bottom:352.320000pt;}
.y21b{bottom:352.960000pt;}
.yce{bottom:353.600000pt;}
.y10f{bottom:354.880000pt;}
.y190{bottom:356.480000pt;}
.y1f2{bottom:356.800000pt;}
.y1e4{bottom:357.760000pt;}
.y133{bottom:358.080000pt;}
.y175{bottom:360.320000pt;}
.y1a8{bottom:362.880000pt;}
.y207{bottom:363.520000pt;}
.y144{bottom:364.160000pt;}
.y1c5{bottom:365.120000pt;}
.yb6{bottom:366.080000pt;}
.y189{bottom:366.400000pt;}
.y19e{bottom:366.720000pt;}
.y5c{bottom:367.680000pt;}
.y22a{bottom:369.280000pt;}
.y7a{bottom:369.920000pt;}
.y242{bottom:370.240000pt;}
.y35{bottom:370.560000pt;}
.ye{bottom:370.880000pt;}
.y15f{bottom:372.480000pt;}
.y99{bottom:372.800000pt;}
.y14e{bottom:378.880000pt;}
.y16a{bottom:379.200000pt;}
.ycd{bottom:379.520000pt;}
.y123{bottom:380.480000pt;}
.y10e{bottom:383.680000pt;}
.yb5{bottom:384.960000pt;}
.y5b{bottom:385.280000pt;}
.y1f1{bottom:385.600000pt;}
.y1e3{bottom:386.560000pt;}
.y132{bottom:386.880000pt;}
.y241{bottom:387.840000pt;}
.ydb{bottom:388.160000pt;}
.y79{bottom:388.800000pt;}
.y34{bottom:389.120000pt;}
.y98{bottom:391.680000pt;}
.yf4{bottom:392.000000pt;}
.y18f{bottom:392.960000pt;}
.y188{bottom:395.200000pt;}
.y143{bottom:397.120000pt;}
.ycc{bottom:398.400000pt;}
.y206{bottom:399.680000pt;}
.y15e{bottom:401.280000pt;}
.y19d{bottom:404.800000pt;}
.y21a{bottom:406.720000pt;}
.y33{bottom:407.360000pt;}
.y78{bottom:407.680000pt;}
.yd{bottom:408.000000pt;}
.y122{bottom:409.280000pt;}
.yb4{bottom:410.560000pt;}
.y10d{bottom:412.480000pt;}
.y5a{bottom:412.800000pt;}
.y1c4{bottom:413.120000pt;}
.yf3{bottom:414.400000pt;}
.y1e2{bottom:415.360000pt;}
.y131{bottom:415.680000pt;}
.y97{bottom:417.280000pt;}
.yda{bottom:417.920000pt;}
.y1a7{bottom:420.480000pt;}
.y229{bottom:423.360000pt;}
.y187{bottom:424.000000pt;}
.y219{bottom:424.320000pt;}
.y142{bottom:424.640000pt;}
.y32{bottom:425.920000pt;}
.y59{bottom:429.120000pt;}
.yb3{bottom:429.760000pt;}
.y15d{bottom:430.080000pt;}
.y77{bottom:433.280000pt;}
.y205{bottom:434.880000pt;}
.y96{bottom:436.480000pt;}
.y1fa{bottom:436.800000pt;}
.y1c3{bottom:437.120000pt;}
.yd9{bottom:438.080000pt;}
.y228{bottom:440.960000pt;}
.y10c{bottom:441.280000pt;}
.y240{bottom:441.600000pt;}
.y218{bottom:441.920000pt;}
.ycb{bottom:442.880000pt;}
.y1f0{bottom:443.200000pt;}
.y31{bottom:444.160000pt;}
.y130{bottom:444.480000pt;}
.yc{bottom:445.440000pt;}
.yb2{bottom:448.640000pt;}
.y1a6{bottom:449.280000pt;}
.y19c{bottom:449.600000pt;}
.y76{bottom:452.480000pt;}
.y186{bottom:452.800000pt;}
.y174{bottom:454.080000pt;}
.y95{bottom:455.360000pt;}
.y15c{bottom:458.880000pt;}
.y30{bottom:459.840000pt;}
.y1c2{bottom:461.120000pt;}
.y58{bottom:461.440000pt;}
.yca{bottom:462.080000pt;}
.yf2{bottom:464.000000pt;}
.y14d{bottom:465.280000pt;}
.y1f9{bottom:465.600000pt;}
.y121{bottom:466.880000pt;}
.y10b{bottom:470.080000pt;}
.y204{bottom:471.040000pt;}
.y75{bottom:471.360000pt;}
.y1ef{bottom:472.000000pt;}
.y173{bottom:472.960000pt;}
.y12f{bottom:473.280000pt;}
.yb1{bottom:474.240000pt;}
.y2f{bottom:475.520000pt;}
.y227{bottom:477.120000pt;}
.y57{bottom:477.440000pt;}
.y23f{bottom:477.760000pt;}
.y217{bottom:478.080000pt;}
.y1b6{bottom:478.720000pt;}
.y94{bottom:480.960000pt;}
.yb{bottom:482.880000pt;}
.y1c1{bottom:485.120000pt;}
.yf1{bottom:486.400000pt;}
.y15b{bottom:487.680000pt;}
.y203{bottom:488.640000pt;}
.y2e{bottom:491.520000pt;}
.yb0{bottom:493.440000pt;}
.y56{bottom:493.760000pt;}
.y14c{bottom:494.080000pt;}
.y19b{bottom:494.400000pt;}
.y1b5{bottom:494.720000pt;}
.y23e{bottom:495.360000pt;}
.y120{bottom:495.680000pt;}
.y74{bottom:496.960000pt;}
.y185{bottom:497.600000pt;}
.y10a{bottom:498.880000pt;}
.y93{bottom:499.840000pt;}
.y1e1{bottom:501.760000pt;}
.yc9{bottom:506.560000pt;}
.y2d{bottom:507.520000pt;}
.y1ee{bottom:508.160000pt;}
.y1c0{bottom:509.120000pt;}
.y55{bottom:509.760000pt;}
.yf0{bottom:510.080000pt;}
.yaf{bottom:512.320000pt;}
.y23d{bottom:512.960000pt;}
.y216{bottom:513.280000pt;}
.y73{bottom:516.160000pt;}
.y15a{bottom:516.480000pt;}
.y1b4{bottom:518.720000pt;}
.y92{bottom:519.040000pt;}
.ya{bottom:520.000000pt;}
.y14b{bottom:522.880000pt;}
.y19a{bottom:523.200000pt;}
.y2c{bottom:523.840000pt;}
.y11f{bottom:524.480000pt;}
.y202{bottom:525.120000pt;}
.y54{bottom:525.760000pt;}
.y184{bottom:526.400000pt;}
.y109{bottom:527.680000pt;}
.y1e0{bottom:530.560000pt;}
.y215{bottom:530.880000pt;}
.y1bf{bottom:533.120000pt;}
.yef{bottom:536.000000pt;}
.yae{bottom:537.920000pt;}
.y12e{bottom:538.880000pt;}
.y2b{bottom:540.480000pt;}
.y72{bottom:541.760000pt;}
.y53{bottom:542.080000pt;}
.y1b3{bottom:542.720000pt;}
.y91{bottom:544.640000pt;}
.y159{bottom:545.280000pt;}
.y226{bottom:548.480000pt;}
.y23c{bottom:549.440000pt;}
.yc8{bottom:551.360000pt;}
.y18e{bottom:551.680000pt;}
.y13d{bottom:552.960000pt;}
.y11e{bottom:553.280000pt;}
.y183{bottom:555.200000pt;}
.y108{bottom:556.480000pt;}
.y2a{bottom:556.800000pt;}
.yad{bottom:557.120000pt;}
.y9{bottom:557.440000pt;}
.y52{bottom:558.080000pt;}
.yee{bottom:558.400000pt;}
.y71{bottom:560.640000pt;}
.y90{bottom:563.520000pt;}
.y141{bottom:566.720000pt;}
.y23b{bottom:567.040000pt;}
.y214{bottom:567.360000pt;}
.y12d{bottom:567.680000pt;}
.y199{bottom:568.000000pt;}
.yc7{bottom:570.240000pt;}
.y29{bottom:573.440000pt;}
.y51{bottom:574.080000pt;}
.yac{bottom:576.000000pt;}
.y201{bottom:578.880000pt;}
.y70{bottom:579.840000pt;}
.y18d{bottom:580.480000pt;}
.yed{bottom:582.080000pt;}
.ybb{bottom:582.720000pt;}
.y107{bottom:584.640000pt;}
.y213{bottom:584.960000pt;}
.y8f{bottom:589.440000pt;}
.y28{bottom:590.400000pt;}
.y140{bottom:590.720000pt;}
.y8{bottom:594.880000pt;}
.yc6{bottom:595.840000pt;}
.y12c{bottom:596.480000pt;}
.y198{bottom:596.800000pt;}
.y182{bottom:600.000000pt;}
.yab{bottom:601.600000pt;}
.y23a{bottom:602.240000pt;}
.y212{bottom:602.560000pt;}
.y158{bottom:602.880000pt;}
.y6f{bottom:605.440000pt;}
.y1df{bottom:606.080000pt;}
.y50{bottom:606.400000pt;}
.yec{bottom:608.000000pt;}
.y8e{bottom:608.320000pt;}
.y27{bottom:609.280000pt;}
.y11d{bottom:610.880000pt;}
.y200{bottom:614.080000pt;}
.yc5{bottom:615.040000pt;}
.y1ba{bottom:618.880000pt;}
.yaa{bottom:620.480000pt;}
.y106{bottom:620.800000pt;}
.y4f{bottom:622.400000pt;}
.y6e{bottom:624.320000pt;}
.y12b{bottom:625.280000pt;}
.y26{bottom:625.920000pt;}
.y8d{bottom:627.200000pt;}
.y181{bottom:628.800000pt;}
.yeb{bottom:630.400000pt;}
.y157{bottom:631.680000pt;}
.y7{bottom:632.000000pt;}
.y197{bottom:632.960000pt;}
.yc4{bottom:633.920000pt;}
.y18c{bottom:638.080000pt;}
.y239{bottom:638.400000pt;}
.y4e{bottom:638.720000pt;}
.ya9{bottom:639.680000pt;}
.y25{bottom:642.240000pt;}
.y1ff{bottom:644.800000pt;}
.y1b9{bottom:647.680000pt;}
.y1d6{bottom:648.320000pt;}
.y6d{bottom:649.920000pt;}
.y105{bottom:650.240000pt;}
.y8c{bottom:652.800000pt;}
.yea{bottom:654.080000pt;}
.y4d{bottom:654.720000pt;}
.y238{bottom:656.000000pt;}
.y211{bottom:656.320000pt;}
.y180{bottom:657.600000pt;}
.y169{bottom:660.480000pt;}
.ya8{bottom:665.280000pt;}
.y1ed{bottom:666.880000pt;}
.y11c{bottom:668.160000pt;}
.y6c{bottom:669.120000pt;}
.y6{bottom:669.440000pt;}
.y4c{bottom:670.720000pt;}
.y8b{bottom:672.000000pt;}
.y237{bottom:673.600000pt;}
.y210{bottom:673.920000pt;}
.y156{bottom:676.480000pt;}
.yc3{bottom:678.720000pt;}
.y24{bottom:680.640000pt;}
.ye9{bottom:682.880000pt;}
.ya7{bottom:684.160000pt;}
.y104{bottom:685.120000pt;}
.y17f{bottom:686.400000pt;}
.y4b{bottom:686.720000pt;}
.y6b{bottom:688.000000pt;}
.y168{bottom:689.280000pt;}
.y8a{bottom:690.880000pt;}
.y225{bottom:691.520000pt;}
.y1ec{bottom:695.680000pt;}
.yc2{bottom:697.600000pt;}
.y4a{bottom:703.040000pt;}
.y23{bottom:703.360000pt;}
.y103{bottom:704.320000pt;}
.y155{bottom:705.280000pt;}
.y5{bottom:706.880000pt;}
.y236{bottom:709.760000pt;}
.ya6{bottom:710.080000pt;}
.y11b{bottom:711.680000pt;}
.y6a{bottom:713.600000pt;}
.y17e{bottom:715.200000pt;}
.y89{bottom:716.480000pt;}
.y49{bottom:719.040000pt;}
.y102{bottom:723.200000pt;}
.y1eb{bottom:724.480000pt;}
.y167{bottom:725.760000pt;}
.y235{bottom:727.360000pt;}
.y20f{bottom:727.680000pt;}
.y69{bottom:732.800000pt;}
.y154{bottom:734.080000pt;}
.y48{bottom:735.040000pt;}
.y88{bottom:735.680000pt;}
.ye8{bottom:737.280000pt;}
.y11a{bottom:740.480000pt;}
.y101{bottom:742.400000pt;}
.y22{bottom:742.720000pt;}
.y4{bottom:744.000000pt;}
.y224{bottom:745.280000pt;}
.y47{bottom:751.360000pt;}
.y68{bottom:751.680000pt;}
.y1de{bottom:752.320000pt;}
.ya5{bottom:754.560000pt;}
.y1ea{bottom:760.640000pt;}
.y21{bottom:761.280000pt;}
.y153{bottom:762.880000pt;}
.y20e{bottom:764.160000pt;}
.ye7{bottom:764.480000pt;}
.y46{bottom:767.360000pt;}
.y1cf{bottom:768.320000pt;}
.y119{bottom:769.280000pt;}
.y1b2{bottom:776.320000pt;}
.y20{bottom:779.520000pt;}
.y87{bottom:780.160000pt;}
.y67{bottom:781.120000pt;}
.y3{bottom:781.440000pt;}
.y20d{bottom:781.760000pt;}
.y45{bottom:783.360000pt;}
.ye6{bottom:791.680000pt;}
.y1e9{bottom:796.800000pt;}
.y1f{bottom:798.080000pt;}
.y234{bottom:799.040000pt;}
.y66{bottom:799.360000pt;}
.y44{bottom:799.680000pt;}
.y1b1{bottom:800.320000pt;}
.y16{bottom:829.333333pt;}
.hd{height:33.202500pt;}
.h2{height:35.831250pt;}
.hb{height:37.537500pt;}
.hc{height:39.132500pt;}
.h9{height:39.243750pt;}
.h16{height:39.787520pt;}
.h4{height:42.262500pt;}
.h1b{height:42.656250pt;}
.h1c{height:43.975680pt;}
.h18{height:44.029440pt;}
.h19{height:44.336250pt;}
.h1a{height:45.212160pt;}
.h8{height:46.068750pt;}
.h10{height:48.163840pt;}
.h12{height:48.222720pt;}
.hf{height:49.047040pt;}
.h5{height:50.666667pt;}
.h11{height:52.352000pt;}
.h15{height:53.312000pt;}
.he{height:53.746875pt;}
.ha{height:56.156250pt;}
.h13{height:57.159375pt;}
.h17{height:58.129920pt;}
.h6{height:61.841920pt;}
.h14{height:76.430080pt;}
.h3{height:99.815625pt;}
.h7{height:100.000000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:217.333333pt;}
.w2{width:432.000000pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:2.666667pt;}
.x7{left:9.599936pt;}
.xd{left:16.825845pt;}
.x5{left:21.237952pt;}
.xb{left:29.430005pt;}
.xa{left:37.214517pt;}
.xc{left:44.171861pt;}
.x9{left:54.946933pt;}
.x3{left:75.519872pt;}
.x1a{left:82.099936pt;}
.x6{left:90.480480pt;}
.x29{left:99.519872pt;}
.x28{left:103.853184pt;}
.x4{left:112.000000pt;}
.xf{left:114.200864pt;}
.x1b{left:120.802720pt;}
.x2a{left:123.519872pt;}
.x2d{left:141.653312pt;}
.x10{left:208.624032pt;}
.x1c{left:218.823872pt;}
.x15{left:229.105472pt;}
.x13{left:241.709632pt;}
.x12{left:249.494144pt;}
.x16{left:253.773120pt;}
.x14{left:256.451488pt;}
.x11{left:267.226560pt;}
.x26{left:281.785792pt;}
.x27{left:283.756512pt;}
.x21{left:292.538080pt;}
.x18{left:295.450848pt;}
.x19{left:298.303040pt;}
.x2{left:301.428032pt;}
.x24{left:302.629888pt;}
.x1e{left:310.693344pt;}
.xe{left:319.219712pt;}
.x1{left:321.219840pt;}
.x20{left:335.805120pt;}
.x1d{left:378.700480pt;}
.x25{left:398.347840pt;}
.x23{left:403.644160pt;}
.x22{left:411.500160pt;}
.x1f{left:414.224000pt;}
.x17{left:431.469760pt;}
.x2c{left:459.520000pt;}
.x2f{left:463.680000pt;}
.x2e{left:561.920000pt;}
.x2b{left:567.359680pt;}
}




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