
    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_df22e716e82c97c1b2357a22.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_95adc564290b8d7b77104ee9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.212000;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_feb0360c37029043369375ec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.849000;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_87f6829d287a25f5d1904cf2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.212000;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_12ba835f0e60673cdf4cac33.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.742000;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_4bbe62dba395daafa572b576.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.197000;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_82ae8bcbed53d1053ed2f581.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.071000;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_642f33af109e8d231c029b05.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c66599f0c73484fbdef6c4f8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.987793;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_549e791cbb3dac027734a462.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.987793;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_e1465cafdec0b68eeb62f246.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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_4303baa50cd6c6bb608eccd6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.212000;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_7fb5cef0cb96e1cdfad13562.woff2')format("woff");}.fff{font-family:fff;line-height:1.435059;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_b6f5c761de33c824eb9c2293.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.808000;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_3ba45ad2995de53baee75361.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.776855;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_7da334dffe4f967c85b34d21.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.752441;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.003906;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_68ce948d8f074fe4363c8738.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.222658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222658,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.223078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223078,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m4{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.258774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258774,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.260575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260575,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.261550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261550,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261725,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;}
.ls1f{letter-spacing:-0.900000px;}
.ls1c{letter-spacing:-0.786000px;}
.ls14{letter-spacing:-0.525000px;}
.ls24{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.324000px;}
.ls13{letter-spacing:-0.312600px;}
.ls1a{letter-spacing:-0.309600px;}
.ls1e{letter-spacing:-0.303000px;}
.ls19{letter-spacing:-0.301200px;}
.ls11{letter-spacing:-0.247800px;}
.lse{letter-spacing:-0.233400px;}
.ls12{letter-spacing:-0.191400px;}
.ls23{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.138000px;}
.ls27{letter-spacing:-0.126000px;}
.ls21{letter-spacing:-0.090000px;}
.ls1d{letter-spacing:-0.086400px;}
.ls8{letter-spacing:-0.072000px;}
.ls28{letter-spacing:-0.000001px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.090000px;}
.ls20{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.130323px;}
.ls15{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.229200px;}
.ls7{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.336000px;}
.lsa{letter-spacing:0.338895px;}
.ls10{letter-spacing:0.350400px;}
.ls16{letter-spacing:0.421200px;}
.ls26{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.630000px;}
.ls17{letter-spacing:0.864000px;}
.ls25{letter-spacing:0.900000px;}
.lsb{letter-spacing:1.527974px;}
.ls1b{letter-spacing:4.206000px;}
.lsd{letter-spacing:9.964080px;}
.lsc{letter-spacing:1298.652000px;}
.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;}
}
.ws14{word-spacing:-17.808480px;}
.ws16{word-spacing:-16.185120px;}
.ws20{word-spacing:-16.092000px;}
.ws1b{word-spacing:-16.002000px;}
.ws19{word-spacing:-15.869520px;}
.ws17{word-spacing:-15.654720px;}
.ws12{word-spacing:-15.594240px;}
.ws15{word-spacing:-15.264000px;}
.ws13{word-spacing:-14.996040px;}
.ws22{word-spacing:-14.958000px;}
.ws1c{word-spacing:-14.742000px;}
.ws9{word-spacing:-14.454000px;}
.ws7{word-spacing:-14.418000px;}
.ws8{word-spacing:-14.346000px;}
.ws21{word-spacing:-14.328000px;}
.ws1e{word-spacing:-14.238000px;}
.ws1d{word-spacing:-14.094000px;}
.ws1f{word-spacing:-14.058000px;}
.ws18{word-spacing:-13.632000px;}
.ws1a{word-spacing:-13.518000px;}
.ws5{word-spacing:-12.970080px;}
.ws4{word-spacing:-12.880080px;}
.ws6{word-spacing:-12.742080px;}
.ws11{word-spacing:-10.568880px;}
.ws10{word-spacing:-9.705480px;}
.ws3{word-spacing:-9.612000px;}
.ws2{word-spacing:-9.288000px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.150000px;}
.wse{word-spacing:0.252000px;}
.wsa{word-spacing:0.300000px;}
.wsd{word-spacing:0.348000px;}
.wsb{word-spacing:0.402000px;}
.wsf{word-spacing:0.480000px;}
.ws1{word-spacing:2927.178857px;}
._b{margin-left:-4.197840px;}
._a{margin-left:-2.403120px;}
._0{margin-left:-1.296000px;}
._1{width:1.140000px;}
._6{width:2.346000px;}
._4{width:3.926447px;}
._9{width:5.123811px;}
._c{width:6.603211px;}
._d{width:7.990029px;}
._17{width:9.561600px;}
._12{width:10.584000px;}
._13{width:11.647200px;}
._10{width:13.279440px;}
._11{width:14.434080px;}
._30{width:15.876000px;}
._18{width:17.542800px;}
._19{width:18.702720px;}
._23{width:19.775520px;}
._e{width:21.460560px;}
._f{width:22.900800px;}
._28{width:23.991840px;}
._14{width:25.498800px;}
._15{width:27.272880px;}
._16{width:28.637536px;}
._1e{width:30.021216px;}
._2f{width:32.400000px;}
._7{width:34.208401px;}
._8{width:35.345995px;}
._5{width:43.570800px;}
._21{width:46.295760px;}
._2{width:48.262753px;}
._3{width:49.527118px;}
._34{width:59.184000px;}
._35{width:61.032000px;}
._2b{width:71.550000px;}
._2c{width:72.564000px;}
._2d{width:74.682000px;}
._2e{width:75.816000px;}
._38{width:76.944000px;}
._39{width:78.204003px;}
._31{width:79.326000px;}
._20{width:80.889236px;}
._29{width:82.208292px;}
._25{width:88.842000px;}
._24{width:96.080640px;}
._22{width:98.445840px;}
._26{width:101.058589px;}
._37{width:119.718000px;}
._36{width:124.146000px;}
._27{width:132.668498px;}
._3a{width:135.867502px;}
._1a{width:145.976640px;}
._1f{width:153.173778px;}
._32{width:154.836222px;}
._33{width:156.209778px;}
._1b{width:162.039600px;}
._1c{width:180.788640px;}
._1d{width:187.748160px;}
._3b{width:277.236000px;}
._2a{width:1058.292000px;}
.fc4{color:rgb(111,110,110);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(224,120,44);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fsb{font-size:62.991941px;}
.fs1{font-size:63.000000px;}
.fsc{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y148{bottom:4.680000px;}
.y14e{bottom:4.860000px;}
.y177{bottom:5.040000px;}
.y191{bottom:5.220000px;}
.y178{bottom:5.760000px;}
.y14a{bottom:6.660000px;}
.y17a{bottom:9.000000px;}
.y18d{bottom:9.540000px;}
.y17b{bottom:10.485000px;}
.y1b2{bottom:10.620000px;}
.y16e{bottom:11.160000px;}
.y4d{bottom:11.340000px;}
.y1ac{bottom:14.760000px;}
.y171{bottom:14.940000px;}
.y1b0{bottom:15.300000px;}
.y176{bottom:15.480000px;}
.y190{bottom:19.440000px;}
.y1aa{bottom:21.240000px;}
.y170{bottom:21.420000px;}
.y175{bottom:24.840000px;}
.y147{bottom:25.020000px;}
.y1ab{bottom:25.065000px;}
.y1ae{bottom:29.520000px;}
.y173{bottom:30.060000px;}
.y4c{bottom:31.680000px;}
.y7{bottom:35.925007px;}
.y146{bottom:36.720000px;}
.y6{bottom:66.525004px;}
.y28{bottom:76.716000px;}
.y6f{bottom:77.076000px;}
.y27{bottom:91.296000px;}
.y5{bottom:97.125005px;}
.y26{bottom:105.876000px;}
.y1b7{bottom:111.276000px;}
.y208{bottom:111.636000px;}
.ybd{bottom:114.696000px;}
.y100{bottom:116.496000px;}
.y19e{bottom:119.376000px;}
.yee{bottom:120.456000px;}
.y144{bottom:121.896000px;}
.y124{bottom:122.436000px;}
.y16c{bottom:124.776000px;}
.y1e1{bottom:126.576000px;}
.y207{bottom:127.476000px;}
.y1b6{bottom:128.736000px;}
.y25{bottom:129.276000px;}
.y245{bottom:129.636000px;}
.ybc{bottom:132.336000px;}
.yff{bottom:133.056000px;}
.y8e{bottom:135.036000px;}
.y1cc{bottom:135.576000px;}
.yed{bottom:139.176000px;}
.y24{bottom:139.264499px;}
.y123{bottom:139.896000px;}
.y206{bottom:143.136000px;}
.y1e0{bottom:144.216000px;}
.y16b{bottom:145.476000px;}
.y19d{bottom:145.656000px;}
.yfe{bottom:146.376000px;}
.y22f{bottom:147.996000px;}
.y143{bottom:148.176000px;}
.ybb{bottom:149.796000px;}
.y1b5{bottom:156.090000px;}
.yec{bottom:156.810000px;}
.y1df{bottom:161.670000px;}
.y1cb{bottom:161.850000px;}
.y8d{bottom:162.030000px;}
.y142{bottom:165.630000px;}
.y16a{bottom:166.170000px;}
.yba{bottom:167.250000px;}
.y4a{bottom:170.130000px;}
.y19c{bottom:171.750000px;}
.yeb{bottom:174.270000px;}
.y1b4{bottom:174.630000px;}
.y205{bottom:177.330000px;}
.y1de{bottom:179.130000px;}
.y244{bottom:179.670000px;}
.y22e{bottom:182.190000px;}
.y141{bottom:183.090000px;}
.yb9{bottom:184.890000px;}
.y169{bottom:186.870000px;}
.y1ca{bottom:187.950000px;}
.y8c{bottom:189.030000px;}
.y1b3{bottom:192.990000px;}
.y204{bottom:193.170000px;}
.y243{bottom:195.330000px;}
.y1b{bottom:196.933500px;}
.y49{bottom:197.130000px;}
.y19b{bottom:198.030000px;}
.yea{bottom:200.550000px;}
.yb8{bottom:202.350000px;}
.y168{bottom:204.870000px;}
.y1dd{bottom:205.410000px;}
.y1b1{bottom:206.850000px;}
.y140{bottom:209.370000px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.y1c9{bottom:214.230000px;}
.y122{bottom:214.950000px;}
.y8b{bottom:216.030000px;}
.ye9{bottom:218.010000px;}
.yb7{bottom:219.810000px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.y167{bottom:222.510000px;}
.y1dc{bottom:222.870000px;}
.y19a{bottom:224.310000px;}
.y13f{bottom:227.010000px;}
.y203{bottom:227.370000px;}
.y48{bottom:228.090000px;}
.y242{bottom:229.530000px;}
.y22d{bottom:232.230000px;}
.y121{bottom:232.410000px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.y1ad{bottom:235.470000px;}
.ye8{bottom:235.650000px;}
.yb6{bottom:237.450000px;}
.y166{bottom:239.970000px;}
.y1c8{bottom:240.510000px;}
.y202{bottom:243.210000px;}
.y13e{bottom:244.470000px;}
.y241{bottom:245.370000px;}
.y22c{bottom:248.070000px;}
.y199{bottom:250.590000px;}
.ye7{bottom:253.110000px;}
.yb5{bottom:254.910000px;}
.y8a{bottom:255.630000px;}
.y1db{bottom:257.970000px;}
.y120{bottom:258.690000px;}
.y201{bottom:258.870000px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.y13d{bottom:261.930000px;}
.y1af{bottom:265.170000px;}
.y165{bottom:266.250000px;}
.y1c7{bottom:266.790000px;}
.y198{bottom:268.050000px;}
.ye6{bottom:270.570000px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.yb4{bottom:272.550000px;}
.y200{bottom:274.710000px;}
.y11f{bottom:276.150000px;}
.y240{bottom:279.570000px;}
.y47{bottom:281.730000px;}
.y22b{bottom:282.270000px;}
.y89{bottom:282.630000px;}
.y164{bottom:283.710000px;}
.y1da{bottom:284.250000px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.y197{bottom:285.690000px;}
.ye5{bottom:288.030000px;}
.yb3{bottom:290.010000px;}
.y13c{bottom:290.370000px;}
.y1c6{bottom:292.890000px;}
.y11e{bottom:293.790000px;}
.y23f{bottom:295.410000px;}
.y22a{bottom:298.110000px;}
.y163{bottom:301.170000px;}
.y1d9{bottom:301.710000px;}
.y196{bottom:303.150000px;}
.y46{bottom:306.030000px;}
.yb2{bottom:307.470000px;}
.y1ff{bottom:308.910000px;}
.y88{bottom:309.630000px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.y11d{bottom:311.250000px;}
.y229{bottom:313.770000px;}
.y1a9{bottom:315.030000px;}
.y13b{bottom:315.210000px;}
.ye4{bottom:316.470000px;}
.y1c5{bottom:319.170000px;}
.y1d8{bottom:319.350000px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.y1fe{bottom:324.750000px;}
.y162{bottom:327.450000px;}
.y228{bottom:329.610000px;}
.y45{bottom:333.390000px;}
.yb1{bottom:335.910000px;}
.y1d7{bottom:336.810000px;}
.y11c{bottom:337.530000px;}
.y195{bottom:339.735000px;}
.ye3{bottom:340.635000px;}
.y13a{bottom:341.535000px;}
.y1c4{bottom:345.495000px;}
.y12{bottom:348.133500px;}
.y87{bottom:349.455000px;}
.y1d6{bottom:354.495000px;}
.y161{bottom:354.855000px;}
.y11b{bottom:355.035000px;}
.y1fd{bottom:356.295000px;}
.y139{bottom:358.995000px;}
.yb0{bottom:359.355000px;}
.y194{bottom:360.795000px;}
.y227{bottom:363.855000px;}
.y1a8{bottom:365.115000px;}
.y1c3{bottom:371.775000px;}
.y1d5{bottom:371.955000px;}
.y11a{bottom:372.495000px;}
.y160{bottom:372.675000px;}
.y86{bottom:376.455000px;}
.y138{bottom:376.635000px;}
.ye2{bottom:376.995000px;}
.y193{bottom:379.155000px;}
.y226{bottom:379.695000px;}
.yaf{bottom:383.475000px;}
.y11{bottom:386.785499px;}
.y44{bottom:387.075000px;}
.y1c2{bottom:389.235000px;}
.y119{bottom:390.135000px;}
.y1fc{bottom:391.035000px;}
.y192{bottom:393.015000px;}
.y137{bottom:394.095000px;}
.ye1{bottom:394.455000px;}
.y23e{bottom:395.535000px;}
.y15f{bottom:397.335000px;}
.y1a7{bottom:399.495000px;}
.y1d4{bottom:400.215000px;}
.yae{bottom:401.115000px;}
.y85{bottom:403.455000px;}
.y1c1{bottom:406.875000px;}
.y118{bottom:407.595000px;}
.y10{bottom:408.044999px;}
.y43{bottom:411.375000px;}
.ye0{bottom:411.915000px;}
.y225{bottom:413.895000px;}
.y136{bottom:416.235000px;}
.y255{bottom:416.595000px;}
.y1fb{bottom:417.315000px;}
.yad{bottom:418.575000px;}
.y1a6{bottom:419.115000px;}
.y15e{bottom:420.375000px;}
.y18f{bottom:421.635000px;}
.y1c0{bottom:424.335000px;}
.y117{bottom:425.055000px;}
.y224{bottom:429.735000px;}
.y254{bottom:432.435000px;}
.y42{bottom:435.675000px;}
.yac{bottom:436.035000px;}
.ydf{bottom:438.195000px;}
.y1bf{bottom:441.975000px;}
.y84{bottom:443.235000px;}
.y1fa{bottom:443.595000px;}
.y1a5{bottom:445.395000px;}
.y15d{bottom:448.095000px;}
.y116{bottom:451.335000px;}
.yab{bottom:453.675000px;}
.yde{bottom:455.835000px;}
.y1be{bottom:459.435000px;}
.y1f9{bottom:461.235000px;}
.y41{bottom:463.035000px;}
.y223{bottom:463.935000px;}
.y253{bottom:466.635000px;}
.yfd{bottom:467.535000px;}
.y115{bottom:468.975000px;}
.y83{bottom:470.235000px;}
.yaa{bottom:471.135000px;}
.ydd{bottom:473.295000px;}
.y15c{bottom:475.815000px;}
.y1bd{bottom:476.895000px;}
.y1f8{bottom:478.695000px;}
.y23d{bottom:479.595000px;}
.y222{bottom:479.775000px;}
.y1a4{bottom:480.495000px;}
.y18e{bottom:481.035000px;}
.y252{bottom:482.295000px;}
.yf{bottom:484.864502px;}
.y114{bottom:486.435000px;}
.yfc{bottom:487.155000px;}
.ya9{bottom:488.775000px;}
.ydc{bottom:490.755000px;}
.y23c{bottom:495.435000px;}
.y82{bottom:497.235000px;}
.y251{bottom:498.135000px;}
.ye{bottom:502.864502px;}
.y135{bottom:503.535000px;}
.y1d3{bottom:504.075000px;}
.yfb{bottom:504.795000px;}
.y1f7{bottom:504.975000px;}
.ya8{bottom:506.235000px;}
.y1a3{bottom:506.775000px;}
.ydb{bottom:508.395000px;}
.y113{bottom:508.575000px;}
.y18c{bottom:510.735000px;}
.y1bc{bottom:513.615000px;}
.y221{bottom:513.975000px;}
.y40{bottom:516.675000px;}
.yd{bottom:520.864502px;}
.y134{bottom:521.175000px;}
.y1d2{bottom:521.535000px;}
.yfa{bottom:522.255000px;}
.y1f6{bottom:522.435000px;}
.ya7{bottom:523.695000px;}
.y81{bottom:524.235000px;}
.yda{bottom:525.855000px;}
.y220{bottom:529.635000px;}
.y15b{bottom:531.255000px;}
.y250{bottom:532.335000px;}
.y1bb{bottom:534.495000px;}
.y133{bottom:538.635000px;}
.yc{bottom:538.864499px;}
.y1f5{bottom:539.895000px;}
.y3f{bottom:540.975000px;}
.ya6{bottom:541.335000px;}
.y1a2{bottom:541.695000px;}
.yd9{bottom:543.495000px;}
.yf9{bottom:544.395000px;}
.y18b{bottom:545.115000px;}
.y23b{bottom:545.475000px;}
.y24f{bottom:548.175000px;}
.y1d1{bottom:552.855000px;}
.y80{bottom:555.195000px;}
.yb{bottom:556.864499px;}
.y132{bottom:557.175000px;}
.ya5{bottom:558.795000px;}
.y15a{bottom:558.975000px;}
.yd8{bottom:560.955000px;}
.y23a{bottom:561.315000px;}
.y21f{bottom:564.015000px;}
.y18a{bottom:564.735000px;}
.y3e{bottom:565.275000px;}
.y1f4{bottom:566.175000px;}
.y112{bottom:567.615000px;}
.y1d0{bottom:569.595000px;}
.yf8{bottom:574.815000px;}
.yd7{bottom:578.415000px;}
.y24e{bottom:582.375000px;}
.y1f3{bottom:583.815000px;}
.ya4{bottom:585.075000px;}
.y159{bottom:586.875000px;}
.y189{bottom:591.015000px;}
.yf7{bottom:592.275000px;}
.y3d{bottom:592.635000px;}
.y131{bottom:593.355000px;}
.y239{bottom:595.515000px;}
.yd6{bottom:595.875000px;}
.y21e{bottom:598.215000px;}
.y1a1{bottom:599.295000px;}
.y1f2{bottom:601.275000px;}
.ya3{bottom:602.535000px;}
.y7f{bottom:605.985000px;}
.y111{bottom:607.245000px;}
.y188{bottom:608.685000px;}
.y238{bottom:611.385000px;}
.y21d{bottom:613.905000px;}
.y158{bottom:614.625000px;}
.yf6{bottom:618.585000px;}
.y1f1{bottom:618.945000px;}
.y130{bottom:619.665000px;}
.ya2{bottom:620.205000px;}
.yd5{bottom:622.185000px;}
.y187{bottom:626.145000px;}
.y7e{bottom:626.325000px;}
.y21c{bottom:629.745000px;}
.yf5{bottom:636.045000px;}
.y1f0{bottom:636.405000px;}
.y12f{bottom:637.125000px;}
.ya1{bottom:637.665000px;}
.yd4{bottom:639.825000px;}
.y157{bottom:642.345000px;}
.ya{bottom:645.510000px;}
.y237{bottom:645.585000px;}
.y3c{bottom:646.305000px;}
.y24d{bottom:648.105000px;}
.y186{bottom:652.425000px;}
.yf4{bottom:653.685000px;}
.y110{bottom:654.585000px;}
.ya0{bottom:655.305000px;}
.yd3{bottom:657.285000px;}
.y236{bottom:661.245000px;}
.y1ef{bottom:662.685000px;}
.y21b{bottom:663.945000px;}
.y7d{bottom:664.305000px;}
.y9{bottom:666.771000px;}
.y185{bottom:669.885000px;}
.y156{bottom:670.065000px;}
.y3b{bottom:670.605000px;}
.yf3{bottom:671.145000px;}
.y10f{bottom:672.045000px;}
.y9f{bottom:672.765000px;}
.yd2{bottom:674.925000px;}
.y21a{bottom:679.785000px;}
.y1ee{bottom:680.145000px;}
.y12e{bottom:680.865000px;}
.y184{bottom:687.525000px;}
.yf2{bottom:688.605000px;}
.y10e{bottom:689.685000px;}
.y9e{bottom:690.225000px;}
.y7c{bottom:691.305000px;}
.yd1{bottom:692.385000px;}
.y3a{bottom:694.905000px;}
.y219{bottom:695.445000px;}
.y1ed{bottom:697.605000px;}
.y155{bottom:697.785000px;}
.y12d{bottom:698.505000px;}
.y183{bottom:704.985000px;}
.y10d{bottom:707.145000px;}
.y9d{bottom:707.685000px;}
.yd0{bottom:709.845000px;}
.y218{bottom:711.285000px;}
.y24c{bottom:713.985000px;}
.y1ec{bottom:715.245000px;}
.yf1{bottom:715.965000px;}
.y7b{bottom:718.305000px;}
.y39{bottom:722.265000px;}
.y154{bottom:725.505000px;}
.y8{bottom:726.298500px;}
.y235{bottom:727.125000px;}
.ycf{bottom:727.485000px;}
.y24b{bottom:729.825000px;}
.y182{bottom:731.265000px;}
.y1eb{bottom:732.705000px;}
.y10c{bottom:733.425000px;}
.y9c{bottom:733.965000px;}
.yf0{bottom:734.505000px;}
.yce{bottom:744.945000px;}
.y7a{bottom:745.305000px;}
.y217{bottom:745.485000px;}
.yef{bottom:747.645000px;}
.y181{bottom:748.725000px;}
.y1ea{bottom:750.165000px;}
.y10b{bottom:750.885000px;}
.y9b{bottom:751.605000px;}
.y4{bottom:752.599495px;}
.y153{bottom:753.405000px;}
.y1ba{bottom:756.105000px;}
.y12c{bottom:759.705000px;}
.y216{bottom:761.325000px;}
.y38{bottom:762.945000px;}
.y24a{bottom:764.025000px;}
.y180{bottom:766.185000px;}
.y10a{bottom:768.525000px;}
.y9a{bottom:769.065000px;}
.ycd{bottom:773.385000px;}
.y1e9{bottom:776.445000px;}
.y215{bottom:777.165000px;}
.y12b{bottom:777.345000px;}
.y249{bottom:779.685000px;}
.y152{bottom:781.125000px;}
.y17f{bottom:783.645000px;}
.y79{bottom:785.085000px;}
.y109{bottom:785.985000px;}
.y99{bottom:786.705000px;}
.y1cf{bottom:791.205000px;}
.y1e8{bottom:794.085000px;}
.y12a{bottom:794.805000px;}
.y248{bottom:795.525000px;}
.ycc{bottom:796.785000px;}
.y37{bottom:798.945000px;}
.y108{bottom:803.445000px;}
.y98{bottom:804.165000px;}
.y151{bottom:808.845000px;}
.y17e{bottom:811.185000px;}
.y214{bottom:811.365000px;}
.y1e7{bottom:811.545000px;}
.y78{bottom:812.085000px;}
.y129{bottom:812.265000px;}
.y1a0{bottom:814.785000px;}
.ycb{bottom:820.905000px;}
.y97{bottom:821.625000px;}
.y213{bottom:827.025000px;}
.y1e6{bottom:829.185000px;}
.y17d{bottom:829.545000px;}
.y247{bottom:829.725000px;}
.y36{bottom:834.945000px;}
.y150{bottom:836.565000px;}
.yca{bottom:838.365000px;}
.y128{bottom:838.545000px;}
.y77{bottom:839.085000px;}
.y96{bottom:839.265000px;}
.y234{bottom:842.865000px;}
.y246{bottom:845.565000px;}
.y1e5{bottom:846.645000px;}
.y107{bottom:847.185000px;}
.y17c{bottom:847.905000px;}
.yc9{bottom:856.005000px;}
.y127{bottom:856.185000px;}
.y95{bottom:856.725000px;}
.y233{bottom:858.705000px;}
.y212{bottom:861.225000px;}
.y179{bottom:861.945000px;}
.y14f{bottom:864.285000px;}
.y106{bottom:864.825000px;}
.y76{bottom:866.085000px;}
.y35{bottom:870.945000px;}
.yc8{bottom:873.510000px;}
.y126{bottom:873.690000px;}
.y1e4{bottom:874.950000px;}
.y211{bottom:877.110000px;}
.y3{bottom:879.369000px;}
.y105{bottom:882.330000px;}
.y94{bottom:885.210000px;}
.y172{bottom:890.430000px;}
.yc7{bottom:890.970000px;}
.y14d{bottom:892.050000px;}
.y232{bottom:892.950000px;}
.y125{bottom:895.650000px;}
.y104{bottom:899.790000px;}
.y34{bottom:905.370000px;}
.y75{bottom:905.910000px;}
.y231{bottom:908.790000px;}
.y210{bottom:911.310000px;}
.yc6{bottom:917.250000px;}
.y93{bottom:918.330000px;}
.y14c{bottom:919.950000px;}
.y174{bottom:921.030000px;}
.y103{bottom:926.070000px;}
.y20f{bottom:927.150000px;}
.y74{bottom:932.910000px;}
.yc5{bottom:934.890000px;}
.y33{bottom:939.930000px;}
.y20e{bottom:942.990000px;}
.y102{bottom:943.710000px;}
.y2{bottom:945.126001px;}
.y14b{bottom:947.670000px;}
.yc4{bottom:952.350000px;}
.y92{bottom:957.930000px;}
.y230{bottom:958.650000px;}
.y73{bottom:959.910000px;}
.y101{bottom:961.170000px;}
.y1{bottom:966.726000px;}
.yc3{bottom:969.990000px;}
.y16f{bottom:970.890000px;}
.y149{bottom:975.390000px;}
.y1b9{bottom:976.470000px;}
.y20d{bottom:977.190000px;}
.y1e3{bottom:978.810000px;}
.y72{bottom:986.910000px;}
.yc2{bottom:987.450000px;}
.y20c{bottom:992.850000px;}
.y1b8{bottom:996.270000px;}
.y91{bottom:997.530000px;}
.y145{bottom:999.870000px;}
.yc1{bottom:1004.910000px;}
.y20b{bottom:1008.690000px;}
.y1ce{bottom:1011.570000px;}
.y32{bottom:1012.464000px;}
.y1e2{bottom:1013.730000px;}
.y16d{bottom:1020.930000px;}
.yc0{bottom:1022.550000px;}
.y71{bottom:1026.510000px;}
.y90{bottom:1028.130000px;}
.y31{bottom:1028.907000px;}
.y19f{bottom:1029.030000px;}
.y1cd{bottom:1031.190000px;}
.ybf{bottom:1040.010000px;}
.y20a{bottom:1042.890000px;}
.y30{bottom:1045.350000px;}
.y70{bottom:1053.510000px;}
.y8f{bottom:1055.310000px;}
.ybe{bottom:1057.470000px;}
.y209{bottom:1058.730000px;}
.y2f{bottom:1061.793000px;}
.y6e{bottom:1071.330000px;}
.y6d{bottom:1072.590000px;}
.y6c{bottom:1074.030000px;}
.y6b{bottom:1075.290000px;}
.y6a{bottom:1076.730000px;}
.y69{bottom:1077.990000px;}
.y2e{bottom:1078.236000px;}
.y68{bottom:1079.430000px;}
.y67{bottom:1080.690000px;}
.y66{bottom:1082.130000px;}
.y65{bottom:1083.390000px;}
.y64{bottom:1084.830000px;}
.y63{bottom:1086.090000px;}
.y62{bottom:1087.530000px;}
.y61{bottom:1088.790000px;}
.y60{bottom:1093.830000px;}
.y2d{bottom:1094.679000px;}
.y2c{bottom:1111.122000px;}
.y5f{bottom:1113.090000px;}
.y2b{bottom:1127.565000px;}
.y5e{bottom:1131.090000px;}
.y2a{bottom:1144.008000px;}
.y5d{bottom:1150.200000px;}
.y29{bottom:1160.451000px;}
.y5c{bottom:1169.460000px;}
.y4b{bottom:1175.760000px;}
.y5b{bottom:1190.700000px;}
.y5a{bottom:1191.960000px;}
.y59{bottom:1193.400000px;}
.y58{bottom:1194.660000px;}
.y57{bottom:1196.100000px;}
.y56{bottom:1197.360000px;}
.y55{bottom:1198.800000px;}
.y54{bottom:1200.060000px;}
.y53{bottom:1201.500000px;}
.y52{bottom:1202.760000px;}
.y51{bottom:1204.200000px;}
.y50{bottom:1205.460000px;}
.y4f{bottom:1206.900000px;}
.y4e{bottom:1208.160000px;}
.h20{height:23.040000px;}
.h21{height:27.720000px;}
.h23{height:27.756000px;}
.h22{height:27.900000px;}
.h2a{height:28.800000px;}
.h26{height:28.980000px;}
.h29{height:29.880000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.hc{height:33.912000px;}
.h15{height:37.781719px;}
.h14{height:38.586240px;}
.h1b{height:41.317383px;}
.h18{height:42.292969px;}
.h19{height:43.254000px;}
.hd{height:45.442080px;}
.h7{height:45.960000px;}
.h13{height:46.080000px;}
.h16{height:46.804219px;}
.h31{height:47.808000px;}
.h11{height:47.867760px;}
.h1d{height:47.980898px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h28{height:49.140000px;}
.h2e{height:49.176000px;}
.h1e{height:49.320000px;}
.h24{height:49.335485px;}
.h30{height:49.583118px;}
.h1c{height:49.896000px;}
.hb{height:50.868000px;}
.h2{height:55.152000px;}
.h17{height:55.503491px;}
.h1f{height:56.214844px;}
.h12{height:56.293920px;}
.h2b{height:58.500000px;}
.h25{height:61.423863px;}
.h2c{height:65.884219px;}
.h10{height:67.824000px;}
.h2d{height:68.084282px;}
.h1a{height:74.953125px;}
.hf{height:76.416480px;}
.h5{height:78.132000px;}
.h2f{height:78.840000px;}
.h27{height:79.740000px;}
.he{height:88.482240px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.ha{height:1263.060000px;}
.w9{width:104.976000px;}
.w26{width:120.996000px;}
.w24{width:121.716000px;}
.w27{width:122.040000px;}
.w19{width:122.760000px;}
.w14{width:123.696000px;}
.w1e{width:124.416000px;}
.w11{width:124.596000px;}
.w1b{width:125.136000px;}
.w25{width:127.116000px;}
.w12{width:127.296000px;}
.we{width:127.440000px;}
.w23{width:127.620000px;}
.wf{width:127.656000px;}
.w13{width:129.996000px;}
.w10{width:130.716000px;}
.wa{width:132.696000px;}
.w7{width:138.240000px;}
.w8{width:138.276000px;}
.w6{width:148.896000px;}
.w1d{width:150.690000px;}
.w1c{width:151.230000px;}
.w1a{width:151.590000px;}
.w15{width:153.030000px;}
.wd{width:153.390000px;}
.w1f{width:160.590000px;}
.w18{width:160.950000px;}
.w28{width:162.570000px;}
.w22{width:162.930000px;}
.w21{width:244.470000px;}
.wb{width:255.090000px;}
.w20{width:255.270000px;}
.wc{width:255.315000px;}
.w16{width:274.350000px;}
.w17{width:276.735000px;}
.w4{width:606.345000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w5{width:893.339987px;}
.w3{width:893.340000px;}
.x0{left:0.000000px;}
.x1a{left:1.440000px;}
.x44{left:8.100000px;}
.x45{left:16.560000px;}
.x5e{left:24.660000px;}
.x41{left:27.540000px;}
.x67{left:28.800000px;}
.x5f{left:30.105000px;}
.x3c{left:32.400000px;}
.x49{left:34.560000px;}
.x4c{left:35.640000px;}
.x3e{left:37.470000px;}
.x43{left:39.240000px;}
.x4f{left:40.500000px;}
.x50{left:42.840000px;}
.x48{left:48.240000px;}
.x70{left:49.860000px;}
.x46{left:51.120000px;}
.x4e{left:52.200000px;}
.x3f{left:53.310000px;}
.x47{left:54.570000px;}
.x4a{left:55.830000px;}
.x4d{left:57.240000px;}
.x4b{left:59.250000px;}
.x60{left:60.870000px;}
.x73{left:62.685000px;}
.x5c{left:63.714000px;}
.x61{left:65.370000px;}
.x72{left:67.365000px;}
.x1b{left:69.114000px;}
.x3a{left:74.334000px;}
.x65{left:75.825000px;}
.x5b{left:77.760000px;}
.x68{left:79.950000px;}
.x5{left:81.036000px;}
.x1c{left:83.154000px;}
.x19{left:88.236000px;}
.x7{left:89.316000px;}
.x8{left:91.656000px;}
.x6{left:93.456000px;}
.x59{left:94.890000px;}
.x51{left:96.885000px;}
.x1{left:102.045000px;}
.x28{left:103.535987px;}
.x2{left:106.297500px;}
.x2a{left:107.675987px;}
.x37{left:108.935987px;}
.x55{left:110.735987px;}
.x39{left:115.956000px;}
.x52{left:124.590000px;}
.x22{left:126.035987px;}
.x57{left:127.614000px;}
.x2e{left:129.815987px;}
.x17{left:131.796000px;}
.x18{left:134.136000px;}
.x29{left:135.215987px;}
.x25{left:144.215987px;}
.x2f{left:146.195987px;}
.x35{left:156.989987px;}
.x1d{left:182.919000px;}
.x1e{left:197.139000px;}
.x53{left:198.749987px;}
.x4{left:203.484001px;}
.x6f{left:208.650000px;}
.x64{left:214.230000px;}
.x31{left:230.789987px;}
.x5d{left:243.030000px;}
.x3b{left:264.855000px;}
.xa{left:301.035000px;}
.x2b{left:308.954987px;}
.x56{left:323.894987px;}
.x24{left:326.954987px;}
.x6a{left:332.174987px;}
.x6c{left:335.054987px;}
.x6d{left:336.315000px;}
.x12{left:340.455000px;}
.x38{left:355.934987px;}
.x62{left:365.835000px;}
.x58{left:370.695000px;}
.x54{left:374.474987px;}
.x33{left:384.914987px;}
.x3d{left:403.095000px;}
.x2d{left:406.694987px;}
.x34{left:446.684987px;}
.x3{left:454.959000px;}
.x71{left:458.025000px;}
.x1f{left:501.234000px;}
.x36{left:511.304987px;}
.x20{left:516.174000px;}
.x66{left:517.425000px;}
.xe{left:538.845000px;}
.xb{left:540.285000px;}
.x40{left:541.365000px;}
.x13{left:544.785000px;}
.xf{left:549.645000px;}
.x15{left:577.545000px;}
.x6e{left:580.785000px;}
.x30{left:595.949987px;}
.x23{left:605.309987px;}
.xc{left:609.630000px;}
.x14{left:620.970000px;}
.x5a{left:626.010000px;}
.xd{left:637.890000px;}
.x63{left:642.570000px;}
.x42{left:646.350000px;}
.x16{left:648.330000px;}
.x9{left:652.470000px;}
.x10{left:662.190000px;}
.x11{left:682.710000px;}
.x32{left:718.349987px;}
.x2c{left:778.319987px;}
.x6b{left:787.139987px;}
.x26{left:799.199987px;}
.x27{left:806.219987px;}
.x69{left:810.719987px;}
.x21{left:813.959987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-0.800000pt;}
.ls1c{letter-spacing:-0.698667pt;}
.ls14{letter-spacing:-0.466667pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.288000pt;}
.ls13{letter-spacing:-0.277867pt;}
.ls1a{letter-spacing:-0.275200pt;}
.ls1e{letter-spacing:-0.269333pt;}
.ls19{letter-spacing:-0.267733pt;}
.ls11{letter-spacing:-0.220267pt;}
.lse{letter-spacing:-0.207467pt;}
.ls12{letter-spacing:-0.170133pt;}
.ls23{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.122667pt;}
.ls27{letter-spacing:-0.112000pt;}
.ls21{letter-spacing:-0.080000pt;}
.ls1d{letter-spacing:-0.076800pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls28{letter-spacing:-0.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.080000pt;}
.ls20{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.115843pt;}
.ls15{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.203733pt;}
.ls7{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.298667pt;}
.lsa{letter-spacing:0.301240pt;}
.ls10{letter-spacing:0.311467pt;}
.ls16{letter-spacing:0.374400pt;}
.ls26{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.560000pt;}
.ls17{letter-spacing:0.768000pt;}
.ls25{letter-spacing:0.800000pt;}
.lsb{letter-spacing:1.358199pt;}
.ls1b{letter-spacing:3.738667pt;}
.lsd{letter-spacing:8.856960pt;}
.lsc{letter-spacing:1154.357333pt;}
.ws14{word-spacing:-15.829760pt;}
.ws16{word-spacing:-14.386773pt;}
.ws20{word-spacing:-14.304000pt;}
.ws1b{word-spacing:-14.224000pt;}
.ws19{word-spacing:-14.106240pt;}
.ws17{word-spacing:-13.915307pt;}
.ws12{word-spacing:-13.861547pt;}
.ws15{word-spacing:-13.568000pt;}
.ws13{word-spacing:-13.329813pt;}
.ws22{word-spacing:-13.296000pt;}
.ws1c{word-spacing:-13.104000pt;}
.ws9{word-spacing:-12.848000pt;}
.ws7{word-spacing:-12.816000pt;}
.ws8{word-spacing:-12.752000pt;}
.ws21{word-spacing:-12.736000pt;}
.ws1e{word-spacing:-12.656000pt;}
.ws1d{word-spacing:-12.528000pt;}
.ws1f{word-spacing:-12.496000pt;}
.ws18{word-spacing:-12.117333pt;}
.ws1a{word-spacing:-12.016000pt;}
.ws5{word-spacing:-11.528960pt;}
.ws4{word-spacing:-11.448960pt;}
.ws6{word-spacing:-11.326293pt;}
.ws11{word-spacing:-9.394560pt;}
.ws10{word-spacing:-8.627093pt;}
.ws3{word-spacing:-8.544000pt;}
.ws2{word-spacing:-8.256000pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.133333pt;}
.wse{word-spacing:0.224000pt;}
.wsa{word-spacing:0.266667pt;}
.wsd{word-spacing:0.309333pt;}
.wsb{word-spacing:0.357333pt;}
.wsf{word-spacing:0.426667pt;}
.ws1{word-spacing:2601.936762pt;}
._b{margin-left:-3.731413pt;}
._a{margin-left:-2.136107pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.013333pt;}
._6{width:2.085333pt;}
._4{width:3.490175pt;}
._9{width:4.554499pt;}
._c{width:5.869521pt;}
._d{width:7.102248pt;}
._17{width:8.499200pt;}
._12{width:9.408000pt;}
._13{width:10.353067pt;}
._10{width:11.803947pt;}
._11{width:12.830293pt;}
._30{width:14.112000pt;}
._18{width:15.593600pt;}
._19{width:16.624640pt;}
._23{width:17.578240pt;}
._e{width:19.076053pt;}
._f{width:20.356267pt;}
._28{width:21.326080pt;}
._14{width:22.665600pt;}
._15{width:24.242560pt;}
._16{width:25.455588pt;}
._1e{width:26.685525pt;}
._2f{width:28.800000pt;}
._7{width:30.407468pt;}
._8{width:31.418662pt;}
._5{width:38.729600pt;}
._21{width:41.151787pt;}
._2{width:42.900225pt;}
._3{width:44.024105pt;}
._34{width:52.608000pt;}
._35{width:54.250667pt;}
._2b{width:63.600000pt;}
._2c{width:64.501333pt;}
._2d{width:66.384000pt;}
._2e{width:67.392000pt;}
._38{width:68.394667pt;}
._39{width:69.514669pt;}
._31{width:70.512000pt;}
._20{width:71.901543pt;}
._29{width:73.074037pt;}
._25{width:78.970667pt;}
._24{width:85.405013pt;}
._22{width:87.507413pt;}
._26{width:89.829857pt;}
._37{width:106.416000pt;}
._36{width:110.352000pt;}
._27{width:117.927554pt;}
._3a{width:120.771113pt;}
._1a{width:129.757013pt;}
._1f{width:136.154469pt;}
._32{width:137.632198pt;}
._33{width:138.853136pt;}
._1b{width:144.035200pt;}
._1c{width:160.701013pt;}
._1d{width:166.887253pt;}
._3b{width:246.432000pt;}
._2a{width:940.704000pt;}
.fs6{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fsb{font-size:55.992837pt;}
.fs1{font-size:56.000000pt;}
.fsc{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y148{bottom:4.160000pt;}
.y14e{bottom:4.320000pt;}
.y177{bottom:4.480000pt;}
.y191{bottom:4.640000pt;}
.y178{bottom:5.120000pt;}
.y14a{bottom:5.920000pt;}
.y17a{bottom:8.000000pt;}
.y18d{bottom:8.480000pt;}
.y17b{bottom:9.320000pt;}
.y1b2{bottom:9.440000pt;}
.y16e{bottom:9.920000pt;}
.y4d{bottom:10.080000pt;}
.y1ac{bottom:13.120000pt;}
.y171{bottom:13.280000pt;}
.y1b0{bottom:13.600000pt;}
.y176{bottom:13.760000pt;}
.y190{bottom:17.280000pt;}
.y1aa{bottom:18.880000pt;}
.y170{bottom:19.040000pt;}
.y175{bottom:22.080000pt;}
.y147{bottom:22.240000pt;}
.y1ab{bottom:22.280000pt;}
.y1ae{bottom:26.240000pt;}
.y173{bottom:26.720000pt;}
.y4c{bottom:28.160000pt;}
.y7{bottom:31.933340pt;}
.y146{bottom:32.640000pt;}
.y6{bottom:59.133337pt;}
.y28{bottom:68.192000pt;}
.y6f{bottom:68.512000pt;}
.y27{bottom:81.152000pt;}
.y5{bottom:86.333337pt;}
.y26{bottom:94.112000pt;}
.y1b7{bottom:98.912000pt;}
.y208{bottom:99.232000pt;}
.ybd{bottom:101.952000pt;}
.y100{bottom:103.552000pt;}
.y19e{bottom:106.112000pt;}
.yee{bottom:107.072000pt;}
.y144{bottom:108.352000pt;}
.y124{bottom:108.832000pt;}
.y16c{bottom:110.912000pt;}
.y1e1{bottom:112.512000pt;}
.y207{bottom:113.312000pt;}
.y1b6{bottom:114.432000pt;}
.y25{bottom:114.912000pt;}
.y245{bottom:115.232000pt;}
.ybc{bottom:117.632000pt;}
.yff{bottom:118.272000pt;}
.y8e{bottom:120.032000pt;}
.y1cc{bottom:120.512000pt;}
.yed{bottom:123.712000pt;}
.y24{bottom:123.790666pt;}
.y123{bottom:124.352000pt;}
.y206{bottom:127.232000pt;}
.y1e0{bottom:128.192000pt;}
.y16b{bottom:129.312000pt;}
.y19d{bottom:129.472000pt;}
.yfe{bottom:130.112000pt;}
.y22f{bottom:131.552000pt;}
.y143{bottom:131.712000pt;}
.ybb{bottom:133.152000pt;}
.y1b5{bottom:138.746667pt;}
.yec{bottom:139.386667pt;}
.y1df{bottom:143.706667pt;}
.y1cb{bottom:143.866667pt;}
.y8d{bottom:144.026667pt;}
.y142{bottom:147.226667pt;}
.y16a{bottom:147.706667pt;}
.yba{bottom:148.666667pt;}
.y4a{bottom:151.226667pt;}
.y19c{bottom:152.666667pt;}
.yeb{bottom:154.906667pt;}
.y1b4{bottom:155.226667pt;}
.y205{bottom:157.626667pt;}
.y1de{bottom:159.226667pt;}
.y244{bottom:159.706667pt;}
.y22e{bottom:161.946667pt;}
.y141{bottom:162.746667pt;}
.yb9{bottom:164.346667pt;}
.y169{bottom:166.106667pt;}
.y1ca{bottom:167.066667pt;}
.y8c{bottom:168.026667pt;}
.y1b3{bottom:171.546667pt;}
.y204{bottom:171.706667pt;}
.y243{bottom:173.626667pt;}
.y1b{bottom:175.052000pt;}
.y49{bottom:175.226667pt;}
.y19b{bottom:176.026667pt;}
.yea{bottom:178.266667pt;}
.yb8{bottom:179.866667pt;}
.y168{bottom:182.106667pt;}
.y1dd{bottom:182.586667pt;}
.y1b1{bottom:183.866667pt;}
.y140{bottom:186.106667pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.y1c9{bottom:190.426667pt;}
.y122{bottom:191.066667pt;}
.y8b{bottom:192.026667pt;}
.ye9{bottom:193.786667pt;}
.yb7{bottom:195.386667pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.y167{bottom:197.786667pt;}
.y1dc{bottom:198.106667pt;}
.y19a{bottom:199.386667pt;}
.y13f{bottom:201.786667pt;}
.y203{bottom:202.106667pt;}
.y48{bottom:202.746667pt;}
.y242{bottom:204.026667pt;}
.y22d{bottom:206.426667pt;}
.y121{bottom:206.586667pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.y1ad{bottom:209.306667pt;}
.ye8{bottom:209.466667pt;}
.yb6{bottom:211.066667pt;}
.y166{bottom:213.306667pt;}
.y1c8{bottom:213.786667pt;}
.y202{bottom:216.186667pt;}
.y13e{bottom:217.306667pt;}
.y241{bottom:218.106667pt;}
.y22c{bottom:220.506667pt;}
.y199{bottom:222.746667pt;}
.ye7{bottom:224.986667pt;}
.yb5{bottom:226.586667pt;}
.y8a{bottom:227.226667pt;}
.y1db{bottom:229.306667pt;}
.y120{bottom:229.946667pt;}
.y201{bottom:230.106667pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.y13d{bottom:232.826667pt;}
.y1af{bottom:235.706667pt;}
.y165{bottom:236.666667pt;}
.y1c7{bottom:237.146667pt;}
.y198{bottom:238.266667pt;}
.ye6{bottom:240.506667pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.yb4{bottom:242.266667pt;}
.y200{bottom:244.186667pt;}
.y11f{bottom:245.466667pt;}
.y240{bottom:248.506667pt;}
.y47{bottom:250.426667pt;}
.y22b{bottom:250.906667pt;}
.y89{bottom:251.226667pt;}
.y164{bottom:252.186667pt;}
.y1da{bottom:252.666667pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.y197{bottom:253.946667pt;}
.ye5{bottom:256.026667pt;}
.yb3{bottom:257.786667pt;}
.y13c{bottom:258.106667pt;}
.y1c6{bottom:260.346667pt;}
.y11e{bottom:261.146667pt;}
.y23f{bottom:262.586667pt;}
.y22a{bottom:264.986667pt;}
.y163{bottom:267.706667pt;}
.y1d9{bottom:268.186667pt;}
.y196{bottom:269.466667pt;}
.y46{bottom:272.026667pt;}
.yb2{bottom:273.306667pt;}
.y1ff{bottom:274.586667pt;}
.y88{bottom:275.226667pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.y11d{bottom:276.666667pt;}
.y229{bottom:278.906667pt;}
.y1a9{bottom:280.026667pt;}
.y13b{bottom:280.186667pt;}
.ye4{bottom:281.306667pt;}
.y1c5{bottom:283.706667pt;}
.y1d8{bottom:283.866667pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.y1fe{bottom:288.666667pt;}
.y162{bottom:291.066667pt;}
.y228{bottom:292.986667pt;}
.y45{bottom:296.346667pt;}
.yb1{bottom:298.586667pt;}
.y1d7{bottom:299.386667pt;}
.y11c{bottom:300.026667pt;}
.y195{bottom:301.986667pt;}
.ye3{bottom:302.786667pt;}
.y13a{bottom:303.586667pt;}
.y1c4{bottom:307.106667pt;}
.y12{bottom:309.452000pt;}
.y87{bottom:310.626667pt;}
.y1d6{bottom:315.106667pt;}
.y161{bottom:315.426667pt;}
.y11b{bottom:315.586667pt;}
.y1fd{bottom:316.706667pt;}
.y139{bottom:319.106667pt;}
.yb0{bottom:319.426667pt;}
.y194{bottom:320.706667pt;}
.y227{bottom:323.426667pt;}
.y1a8{bottom:324.546667pt;}
.y1c3{bottom:330.466667pt;}
.y1d5{bottom:330.626667pt;}
.y11a{bottom:331.106667pt;}
.y160{bottom:331.266667pt;}
.y86{bottom:334.626667pt;}
.y138{bottom:334.786667pt;}
.ye2{bottom:335.106667pt;}
.y193{bottom:337.026667pt;}
.y226{bottom:337.506667pt;}
.yaf{bottom:340.866667pt;}
.y11{bottom:343.809333pt;}
.y44{bottom:344.066667pt;}
.y1c2{bottom:345.986667pt;}
.y119{bottom:346.786667pt;}
.y1fc{bottom:347.586667pt;}
.y192{bottom:349.346667pt;}
.y137{bottom:350.306667pt;}
.ye1{bottom:350.626667pt;}
.y23e{bottom:351.586667pt;}
.y15f{bottom:353.186667pt;}
.y1a7{bottom:355.106667pt;}
.y1d4{bottom:355.746667pt;}
.yae{bottom:356.546667pt;}
.y85{bottom:358.626667pt;}
.y1c1{bottom:361.666667pt;}
.y118{bottom:362.306667pt;}
.y10{bottom:362.706666pt;}
.y43{bottom:365.666667pt;}
.ye0{bottom:366.146667pt;}
.y225{bottom:367.906667pt;}
.y136{bottom:369.986667pt;}
.y255{bottom:370.306667pt;}
.y1fb{bottom:370.946667pt;}
.yad{bottom:372.066667pt;}
.y1a6{bottom:372.546667pt;}
.y15e{bottom:373.666667pt;}
.y18f{bottom:374.786667pt;}
.y1c0{bottom:377.186667pt;}
.y117{bottom:377.826667pt;}
.y224{bottom:381.986667pt;}
.y254{bottom:384.386667pt;}
.y42{bottom:387.266667pt;}
.yac{bottom:387.586667pt;}
.ydf{bottom:389.506667pt;}
.y1bf{bottom:392.866667pt;}
.y84{bottom:393.986667pt;}
.y1fa{bottom:394.306667pt;}
.y1a5{bottom:395.906667pt;}
.y15d{bottom:398.306667pt;}
.y116{bottom:401.186667pt;}
.yab{bottom:403.266667pt;}
.yde{bottom:405.186667pt;}
.y1be{bottom:408.386667pt;}
.y1f9{bottom:409.986667pt;}
.y41{bottom:411.586667pt;}
.y223{bottom:412.386667pt;}
.y253{bottom:414.786667pt;}
.yfd{bottom:415.586667pt;}
.y115{bottom:416.866667pt;}
.y83{bottom:417.986667pt;}
.yaa{bottom:418.786667pt;}
.ydd{bottom:420.706667pt;}
.y15c{bottom:422.946667pt;}
.y1bd{bottom:423.906667pt;}
.y1f8{bottom:425.506667pt;}
.y23d{bottom:426.306667pt;}
.y222{bottom:426.466667pt;}
.y1a4{bottom:427.106667pt;}
.y18e{bottom:427.586667pt;}
.y252{bottom:428.706667pt;}
.yf{bottom:430.990669pt;}
.y114{bottom:432.386667pt;}
.yfc{bottom:433.026667pt;}
.ya9{bottom:434.466667pt;}
.ydc{bottom:436.226667pt;}
.y23c{bottom:440.386667pt;}
.y82{bottom:441.986667pt;}
.y251{bottom:442.786667pt;}
.ye{bottom:446.990669pt;}
.y135{bottom:447.586667pt;}
.y1d3{bottom:448.066667pt;}
.yfb{bottom:448.706667pt;}
.y1f7{bottom:448.866667pt;}
.ya8{bottom:449.986667pt;}
.y1a3{bottom:450.466667pt;}
.ydb{bottom:451.906667pt;}
.y113{bottom:452.066667pt;}
.y18c{bottom:453.986667pt;}
.y1bc{bottom:456.546667pt;}
.y221{bottom:456.866667pt;}
.y40{bottom:459.266667pt;}
.yd{bottom:462.990669pt;}
.y134{bottom:463.266667pt;}
.y1d2{bottom:463.586667pt;}
.yfa{bottom:464.226667pt;}
.y1f6{bottom:464.386667pt;}
.ya7{bottom:465.506667pt;}
.y81{bottom:465.986667pt;}
.yda{bottom:467.426667pt;}
.y220{bottom:470.786667pt;}
.y15b{bottom:472.226667pt;}
.y250{bottom:473.186667pt;}
.y1bb{bottom:475.106667pt;}
.y133{bottom:478.786667pt;}
.yc{bottom:478.990666pt;}
.y1f5{bottom:479.906667pt;}
.y3f{bottom:480.866667pt;}
.ya6{bottom:481.186667pt;}
.y1a2{bottom:481.506667pt;}
.yd9{bottom:483.106667pt;}
.yf9{bottom:483.906667pt;}
.y18b{bottom:484.546667pt;}
.y23b{bottom:484.866667pt;}
.y24f{bottom:487.266667pt;}
.y1d1{bottom:491.426667pt;}
.y80{bottom:493.506667pt;}
.yb{bottom:494.990666pt;}
.y132{bottom:495.266667pt;}
.ya5{bottom:496.706667pt;}
.y15a{bottom:496.866667pt;}
.yd8{bottom:498.626667pt;}
.y23a{bottom:498.946667pt;}
.y21f{bottom:501.346667pt;}
.y18a{bottom:501.986667pt;}
.y3e{bottom:502.466667pt;}
.y1f4{bottom:503.266667pt;}
.y112{bottom:504.546667pt;}
.y1d0{bottom:506.306667pt;}
.yf8{bottom:510.946667pt;}
.yd7{bottom:514.146667pt;}
.y24e{bottom:517.666667pt;}
.y1f3{bottom:518.946667pt;}
.ya4{bottom:520.066667pt;}
.y159{bottom:521.666667pt;}
.y189{bottom:525.346667pt;}
.yf7{bottom:526.466667pt;}
.y3d{bottom:526.786667pt;}
.y131{bottom:527.426667pt;}
.y239{bottom:529.346667pt;}
.yd6{bottom:529.666667pt;}
.y21e{bottom:531.746667pt;}
.y1a1{bottom:532.706667pt;}
.y1f2{bottom:534.466667pt;}
.ya3{bottom:535.586667pt;}
.y7f{bottom:538.653333pt;}
.y111{bottom:539.773333pt;}
.y188{bottom:541.053333pt;}
.y238{bottom:543.453333pt;}
.y21d{bottom:545.693333pt;}
.y158{bottom:546.333333pt;}
.yf6{bottom:549.853333pt;}
.y1f1{bottom:550.173333pt;}
.y130{bottom:550.813333pt;}
.ya2{bottom:551.293333pt;}
.yd5{bottom:553.053333pt;}
.y187{bottom:556.573333pt;}
.y7e{bottom:556.733333pt;}
.y21c{bottom:559.773333pt;}
.yf5{bottom:565.373333pt;}
.y1f0{bottom:565.693333pt;}
.y12f{bottom:566.333333pt;}
.ya1{bottom:566.813333pt;}
.yd4{bottom:568.733333pt;}
.y157{bottom:570.973333pt;}
.ya{bottom:573.786667pt;}
.y237{bottom:573.853333pt;}
.y3c{bottom:574.493333pt;}
.y24d{bottom:576.093333pt;}
.y186{bottom:579.933333pt;}
.yf4{bottom:581.053333pt;}
.y110{bottom:581.853333pt;}
.ya0{bottom:582.493333pt;}
.yd3{bottom:584.253333pt;}
.y236{bottom:587.773333pt;}
.y1ef{bottom:589.053333pt;}
.y21b{bottom:590.173333pt;}
.y7d{bottom:590.493333pt;}
.y9{bottom:592.685334pt;}
.y185{bottom:595.453333pt;}
.y156{bottom:595.613333pt;}
.y3b{bottom:596.093333pt;}
.yf3{bottom:596.573333pt;}
.y10f{bottom:597.373333pt;}
.y9f{bottom:598.013333pt;}
.yd2{bottom:599.933333pt;}
.y21a{bottom:604.253333pt;}
.y1ee{bottom:604.573333pt;}
.y12e{bottom:605.213333pt;}
.y184{bottom:611.133333pt;}
.yf2{bottom:612.093333pt;}
.y10e{bottom:613.053333pt;}
.y9e{bottom:613.533333pt;}
.y7c{bottom:614.493333pt;}
.yd1{bottom:615.453333pt;}
.y3a{bottom:617.693333pt;}
.y219{bottom:618.173333pt;}
.y1ed{bottom:620.093333pt;}
.y155{bottom:620.253333pt;}
.y12d{bottom:620.893333pt;}
.y183{bottom:626.653333pt;}
.y10d{bottom:628.573333pt;}
.y9d{bottom:629.053333pt;}
.yd0{bottom:630.973333pt;}
.y218{bottom:632.253333pt;}
.y24c{bottom:634.653333pt;}
.y1ec{bottom:635.773333pt;}
.yf1{bottom:636.413333pt;}
.y7b{bottom:638.493333pt;}
.y39{bottom:642.013333pt;}
.y154{bottom:644.893333pt;}
.y8{bottom:645.598667pt;}
.y235{bottom:646.333333pt;}
.ycf{bottom:646.653333pt;}
.y24b{bottom:648.733333pt;}
.y182{bottom:650.013333pt;}
.y1eb{bottom:651.293333pt;}
.y10c{bottom:651.933333pt;}
.y9c{bottom:652.413333pt;}
.yf0{bottom:652.893333pt;}
.yce{bottom:662.173333pt;}
.y7a{bottom:662.493333pt;}
.y217{bottom:662.653333pt;}
.yef{bottom:664.573333pt;}
.y181{bottom:665.533333pt;}
.y1ea{bottom:666.813333pt;}
.y10b{bottom:667.453333pt;}
.y9b{bottom:668.093333pt;}
.y4{bottom:668.977329pt;}
.y153{bottom:669.693333pt;}
.y1ba{bottom:672.093333pt;}
.y12c{bottom:675.293333pt;}
.y216{bottom:676.733333pt;}
.y38{bottom:678.173333pt;}
.y24a{bottom:679.133333pt;}
.y180{bottom:681.053333pt;}
.y10a{bottom:683.133333pt;}
.y9a{bottom:683.613333pt;}
.ycd{bottom:687.453333pt;}
.y1e9{bottom:690.173333pt;}
.y215{bottom:690.813333pt;}
.y12b{bottom:690.973333pt;}
.y249{bottom:693.053333pt;}
.y152{bottom:694.333333pt;}
.y17f{bottom:696.573333pt;}
.y79{bottom:697.853333pt;}
.y109{bottom:698.653333pt;}
.y99{bottom:699.293333pt;}
.y1cf{bottom:703.293333pt;}
.y1e8{bottom:705.853333pt;}
.y12a{bottom:706.493333pt;}
.y248{bottom:707.133333pt;}
.ycc{bottom:708.253333pt;}
.y37{bottom:710.173333pt;}
.y108{bottom:714.173333pt;}
.y98{bottom:714.813333pt;}
.y151{bottom:718.973333pt;}
.y17e{bottom:721.053333pt;}
.y214{bottom:721.213333pt;}
.y1e7{bottom:721.373333pt;}
.y78{bottom:721.853333pt;}
.y129{bottom:722.013333pt;}
.y1a0{bottom:724.253333pt;}
.ycb{bottom:729.693333pt;}
.y97{bottom:730.333333pt;}
.y213{bottom:735.133333pt;}
.y1e6{bottom:737.053333pt;}
.y17d{bottom:737.373333pt;}
.y247{bottom:737.533333pt;}
.y36{bottom:742.173333pt;}
.y150{bottom:743.613333pt;}
.yca{bottom:745.213333pt;}
.y128{bottom:745.373333pt;}
.y77{bottom:745.853333pt;}
.y96{bottom:746.013333pt;}
.y234{bottom:749.213333pt;}
.y246{bottom:751.613333pt;}
.y1e5{bottom:752.573333pt;}
.y107{bottom:753.053333pt;}
.y17c{bottom:753.693333pt;}
.yc9{bottom:760.893333pt;}
.y127{bottom:761.053333pt;}
.y95{bottom:761.533333pt;}
.y233{bottom:763.293333pt;}
.y212{bottom:765.533333pt;}
.y179{bottom:766.173333pt;}
.y14f{bottom:768.253333pt;}
.y106{bottom:768.733333pt;}
.y76{bottom:769.853333pt;}
.y35{bottom:774.173333pt;}
.yc8{bottom:776.453333pt;}
.y126{bottom:776.613333pt;}
.y1e4{bottom:777.733333pt;}
.y211{bottom:779.653333pt;}
.y3{bottom:781.661334pt;}
.y105{bottom:784.293333pt;}
.y94{bottom:786.853333pt;}
.y172{bottom:791.493333pt;}
.yc7{bottom:791.973333pt;}
.y14d{bottom:792.933333pt;}
.y232{bottom:793.733333pt;}
.y125{bottom:796.133333pt;}
.y104{bottom:799.813333pt;}
.y34{bottom:804.773333pt;}
.y75{bottom:805.253333pt;}
.y231{bottom:807.813333pt;}
.y210{bottom:810.053333pt;}
.yc6{bottom:815.333333pt;}
.y93{bottom:816.293333pt;}
.y14c{bottom:817.733333pt;}
.y174{bottom:818.693333pt;}
.y103{bottom:823.173333pt;}
.y20f{bottom:824.133333pt;}
.y74{bottom:829.253333pt;}
.yc5{bottom:831.013333pt;}
.y33{bottom:835.493333pt;}
.y20e{bottom:838.213333pt;}
.y102{bottom:838.853333pt;}
.y2{bottom:840.112001pt;}
.y14b{bottom:842.373333pt;}
.yc4{bottom:846.533333pt;}
.y92{bottom:851.493333pt;}
.y230{bottom:852.133333pt;}
.y73{bottom:853.253333pt;}
.y101{bottom:854.373333pt;}
.y1{bottom:859.312000pt;}
.yc3{bottom:862.213333pt;}
.y16f{bottom:863.013333pt;}
.y149{bottom:867.013333pt;}
.y1b9{bottom:867.973333pt;}
.y20d{bottom:868.613333pt;}
.y1e3{bottom:870.053333pt;}
.y72{bottom:877.253333pt;}
.yc2{bottom:877.733333pt;}
.y20c{bottom:882.533333pt;}
.y1b8{bottom:885.573333pt;}
.y91{bottom:886.693333pt;}
.y145{bottom:888.773333pt;}
.yc1{bottom:893.253333pt;}
.y20b{bottom:896.613333pt;}
.y1ce{bottom:899.173333pt;}
.y32{bottom:899.968000pt;}
.y1e2{bottom:901.093333pt;}
.y16d{bottom:907.493333pt;}
.yc0{bottom:908.933333pt;}
.y71{bottom:912.453333pt;}
.y90{bottom:913.893333pt;}
.y31{bottom:914.584000pt;}
.y19f{bottom:914.693333pt;}
.y1cd{bottom:916.613333pt;}
.ybf{bottom:924.453333pt;}
.y20a{bottom:927.013333pt;}
.y30{bottom:929.200000pt;}
.y70{bottom:936.453333pt;}
.y8f{bottom:938.053333pt;}
.ybe{bottom:939.973333pt;}
.y209{bottom:941.093333pt;}
.y2f{bottom:943.816000pt;}
.y6e{bottom:952.293333pt;}
.y6d{bottom:953.413333pt;}
.y6c{bottom:954.693333pt;}
.y6b{bottom:955.813333pt;}
.y6a{bottom:957.093333pt;}
.y69{bottom:958.213333pt;}
.y2e{bottom:958.432000pt;}
.y68{bottom:959.493333pt;}
.y67{bottom:960.613333pt;}
.y66{bottom:961.893333pt;}
.y65{bottom:963.013333pt;}
.y64{bottom:964.293333pt;}
.y63{bottom:965.413333pt;}
.y62{bottom:966.693333pt;}
.y61{bottom:967.813333pt;}
.y60{bottom:972.293333pt;}
.y2d{bottom:973.048000pt;}
.y2c{bottom:987.664000pt;}
.y5f{bottom:989.413333pt;}
.y2b{bottom:1002.280000pt;}
.y5e{bottom:1005.413333pt;}
.y2a{bottom:1016.896000pt;}
.y5d{bottom:1022.400000pt;}
.y29{bottom:1031.512000pt;}
.y5c{bottom:1039.520000pt;}
.y4b{bottom:1045.120000pt;}
.y5b{bottom:1058.400000pt;}
.y5a{bottom:1059.520000pt;}
.y59{bottom:1060.800000pt;}
.y58{bottom:1061.920000pt;}
.y57{bottom:1063.200000pt;}
.y56{bottom:1064.320000pt;}
.y55{bottom:1065.600000pt;}
.y54{bottom:1066.720000pt;}
.y53{bottom:1068.000000pt;}
.y52{bottom:1069.120000pt;}
.y51{bottom:1070.400000pt;}
.y50{bottom:1071.520000pt;}
.y4f{bottom:1072.800000pt;}
.y4e{bottom:1073.920000pt;}
.h20{height:20.480000pt;}
.h21{height:24.640000pt;}
.h23{height:24.672000pt;}
.h22{height:24.800000pt;}
.h2a{height:25.600000pt;}
.h26{height:25.760000pt;}
.h29{height:26.560000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.hc{height:30.144000pt;}
.h15{height:33.583750pt;}
.h14{height:34.298880pt;}
.h1b{height:36.726562pt;}
.h18{height:37.593750pt;}
.h19{height:38.448000pt;}
.hd{height:40.392960pt;}
.h7{height:40.853333pt;}
.h13{height:40.960000pt;}
.h16{height:41.603750pt;}
.h31{height:42.496000pt;}
.h11{height:42.549120pt;}
.h1d{height:42.649687pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h28{height:43.680000pt;}
.h2e{height:43.712000pt;}
.h1e{height:43.840000pt;}
.h24{height:43.853765pt;}
.h30{height:44.073883pt;}
.h1c{height:44.352000pt;}
.hb{height:45.216000pt;}
.h2{height:49.024000pt;}
.h17{height:49.336436pt;}
.h1f{height:49.968750pt;}
.h12{height:50.039040pt;}
.h2b{height:52.000000pt;}
.h25{height:54.598989pt;}
.h2c{height:58.563750pt;}
.h10{height:60.288000pt;}
.h2d{height:60.519362pt;}
.h1a{height:66.625000pt;}
.hf{height:67.925760pt;}
.h5{height:69.450667pt;}
.h2f{height:70.080000pt;}
.h27{height:70.880000pt;}
.he{height:78.650880pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.ha{height:1122.720000pt;}
.w9{width:93.312000pt;}
.w26{width:107.552000pt;}
.w24{width:108.192000pt;}
.w27{width:108.480000pt;}
.w19{width:109.120000pt;}
.w14{width:109.952000pt;}
.w1e{width:110.592000pt;}
.w11{width:110.752000pt;}
.w1b{width:111.232000pt;}
.w25{width:112.992000pt;}
.w12{width:113.152000pt;}
.we{width:113.280000pt;}
.w23{width:113.440000pt;}
.wf{width:113.472000pt;}
.w13{width:115.552000pt;}
.w10{width:116.192000pt;}
.wa{width:117.952000pt;}
.w7{width:122.880000pt;}
.w8{width:122.912000pt;}
.w6{width:132.352000pt;}
.w1d{width:133.946667pt;}
.w1c{width:134.426667pt;}
.w1a{width:134.746667pt;}
.w15{width:136.026667pt;}
.wd{width:136.346667pt;}
.w1f{width:142.746667pt;}
.w18{width:143.066667pt;}
.w28{width:144.506667pt;}
.w22{width:144.826667pt;}
.w21{width:217.306667pt;}
.wb{width:226.746667pt;}
.w20{width:226.906667pt;}
.wc{width:226.946667pt;}
.w16{width:243.866667pt;}
.w17{width:245.986667pt;}
.w4{width:538.973333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w5{width:794.079988pt;}
.w3{width:794.080000pt;}
.x0{left:0.000000pt;}
.x1a{left:1.280000pt;}
.x44{left:7.200000pt;}
.x45{left:14.720000pt;}
.x5e{left:21.920000pt;}
.x41{left:24.480000pt;}
.x67{left:25.600000pt;}
.x5f{left:26.760000pt;}
.x3c{left:28.800000pt;}
.x49{left:30.720000pt;}
.x4c{left:31.680000pt;}
.x3e{left:33.306667pt;}
.x43{left:34.880000pt;}
.x4f{left:36.000000pt;}
.x50{left:38.080000pt;}
.x48{left:42.880000pt;}
.x70{left:44.320000pt;}
.x46{left:45.440000pt;}
.x4e{left:46.400000pt;}
.x3f{left:47.386667pt;}
.x47{left:48.506667pt;}
.x4a{left:49.626667pt;}
.x4d{left:50.880000pt;}
.x4b{left:52.666667pt;}
.x60{left:54.106667pt;}
.x73{left:55.720000pt;}
.x5c{left:56.634667pt;}
.x61{left:58.106667pt;}
.x72{left:59.880000pt;}
.x1b{left:61.434667pt;}
.x3a{left:66.074667pt;}
.x65{left:67.400000pt;}
.x5b{left:69.120000pt;}
.x68{left:71.066667pt;}
.x5{left:72.032000pt;}
.x1c{left:73.914667pt;}
.x19{left:78.432000pt;}
.x7{left:79.392000pt;}
.x8{left:81.472000pt;}
.x6{left:83.072000pt;}
.x59{left:84.346667pt;}
.x51{left:86.120000pt;}
.x1{left:90.706667pt;}
.x28{left:92.031988pt;}
.x2{left:94.486667pt;}
.x2a{left:95.711988pt;}
.x37{left:96.831988pt;}
.x55{left:98.431988pt;}
.x39{left:103.072000pt;}
.x52{left:110.746667pt;}
.x22{left:112.031988pt;}
.x57{left:113.434667pt;}
.x2e{left:115.391988pt;}
.x17{left:117.152000pt;}
.x18{left:119.232000pt;}
.x29{left:120.191988pt;}
.x25{left:128.191988pt;}
.x2f{left:129.951988pt;}
.x35{left:139.546655pt;}
.x1d{left:162.594667pt;}
.x1e{left:175.234667pt;}
.x53{left:176.666655pt;}
.x4{left:180.874667pt;}
.x6f{left:185.466667pt;}
.x64{left:190.426667pt;}
.x31{left:205.146655pt;}
.x5d{left:216.026667pt;}
.x3b{left:235.426667pt;}
.xa{left:267.586667pt;}
.x2b{left:274.626655pt;}
.x56{left:287.906655pt;}
.x24{left:290.626655pt;}
.x6a{left:295.266655pt;}
.x6c{left:297.826655pt;}
.x6d{left:298.946667pt;}
.x12{left:302.626667pt;}
.x38{left:316.386655pt;}
.x62{left:325.186667pt;}
.x58{left:329.506667pt;}
.x54{left:332.866655pt;}
.x33{left:342.146655pt;}
.x3d{left:358.306667pt;}
.x2d{left:361.506655pt;}
.x34{left:397.053321pt;}
.x3{left:404.408000pt;}
.x71{left:407.133333pt;}
.x1f{left:445.541333pt;}
.x36{left:454.493321pt;}
.x20{left:458.821333pt;}
.x66{left:459.933333pt;}
.xe{left:478.973333pt;}
.xb{left:480.253333pt;}
.x40{left:481.213333pt;}
.x13{left:484.253333pt;}
.xf{left:488.573333pt;}
.x15{left:513.373333pt;}
.x6e{left:516.253333pt;}
.x30{left:529.733322pt;}
.x23{left:538.053322pt;}
.xc{left:541.893333pt;}
.x14{left:551.973333pt;}
.x5a{left:556.453333pt;}
.xd{left:567.013333pt;}
.x63{left:571.173333pt;}
.x42{left:574.533333pt;}
.x16{left:576.293333pt;}
.x9{left:579.973333pt;}
.x10{left:588.613333pt;}
.x11{left:606.853333pt;}
.x32{left:638.533321pt;}
.x2c{left:691.839988pt;}
.x6b{left:699.679988pt;}
.x26{left:710.399988pt;}
.x27{left:716.639988pt;}
.x69{left:720.639988pt;}
.x21{left:723.519988pt;}
}




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