
    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_97a5811da05d6443df14e8a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_2feee8f2b1262e25a2bf697d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_3fef765d4778dad454251f6e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.726074;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_0f120e07961c685cab20d3d7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930176;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_7ba3958e2e8f3b0b698aa8af.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_d828a3a97d89d5e48b53731e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107422;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_89597be1665f1f12de4106af.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_be9bf06c80a62e47943395a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969238;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_cb77dd741b9004a8bad76291.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.769531;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_dab758d653976dc45b8224dd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_094317c21262d19ca536efcd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.983887;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_6258ce55c205da05608c1433.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966797;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_3445130b6528625213b2b375.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.983887;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.fff{font-family:fff;line-height:0.767578;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_beba797247e6ffd25011d42f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.948242;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);}
.v2{vertical-align:-103.680000px;}
.v6{vertical-align:-99.180000px;}
.v7{vertical-align:-85.500000px;}
.v3{vertical-align:-76.620000px;}
.v5{vertical-align:-22.560000px;}
.v1{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:22.560000px;}
.ls19{letter-spacing:-3.024000px;}
.ls1d{letter-spacing:-2.766000px;}
.ls47{letter-spacing:-2.034000px;}
.ls30{letter-spacing:-1.530000px;}
.lsd{letter-spacing:-1.512000px;}
.ls1e{letter-spacing:-1.488000px;}
.ls16{letter-spacing:-1.482000px;}
.ls9{letter-spacing:-1.476000px;}
.ls15{letter-spacing:-1.224000px;}
.ls18{letter-spacing:-1.026000px;}
.ls34{letter-spacing:-0.768000px;}
.ls35{letter-spacing:-0.744000px;}
.ls23{letter-spacing:-0.378000px;}
.ls6{letter-spacing:-0.261000px;}
.ls32{letter-spacing:-0.022500px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls3f{letter-spacing:0.022500px;}
.ls27{letter-spacing:0.090000px;}
.ls3b{letter-spacing:0.097500px;}
.ls4e{letter-spacing:0.243000px;}
.ls1f{letter-spacing:0.256200px;}
.ls24{letter-spacing:0.270000px;}
.lsf{letter-spacing:0.279000px;}
.ls4d{letter-spacing:0.324000px;}
.ls38{letter-spacing:0.486000px;}
.ls17{letter-spacing:0.513000px;}
.ls2c{letter-spacing:0.687300px;}
.ls4c{letter-spacing:0.690000px;}
.ls40{letter-spacing:0.744000px;}
.ls2d{letter-spacing:0.765000px;}
.ls28{letter-spacing:1.080000px;}
.ls4b{letter-spacing:1.233000px;}
.ls1a{letter-spacing:1.296000px;}
.ls14{letter-spacing:1.374000px;}
.ls3{letter-spacing:1.404000px;}
.ls2{letter-spacing:1.476000px;}
.ls22{letter-spacing:1.482000px;}
.ls26{letter-spacing:1.494000px;}
.ls4{letter-spacing:1.512000px;}
.ls4f{letter-spacing:1.656000px;}
.ls1c{letter-spacing:1.737000px;}
.lse{letter-spacing:1.740000px;}
.ls7{letter-spacing:1.842000px;}
.ls25{letter-spacing:1.854000px;}
.ls11{letter-spacing:1.908000px;}
.ls49{letter-spacing:2.160000px;}
.ls29{letter-spacing:2.250000px;}
.ls3a{letter-spacing:2.392500px;}
.ls10{letter-spacing:3.474000px;}
.ls42{letter-spacing:3.675000px;}
.ls3e{letter-spacing:3.732000px;}
.ls33{letter-spacing:3.735000px;}
.ls2a{letter-spacing:3.915000px;}
.ls1{letter-spacing:6.340500px;}
.ls31{letter-spacing:8.220000px;}
.ls50{letter-spacing:10.233000px;}
.ls20{letter-spacing:10.737000px;}
.ls12{letter-spacing:10.908000px;}
.ls46{letter-spacing:14.733000px;}
.ls1b{letter-spacing:15.408000px;}
.ls3d{letter-spacing:16.488000px;}
.ls48{letter-spacing:17.235000px;}
.ls2f{letter-spacing:35.205000px;}
.ls13{letter-spacing:37.737000px;}
.ls21{letter-spacing:48.108000px;}
.ls45{letter-spacing:55.737000px;}
.ls4a{letter-spacing:65.958000px;}
.lsa{letter-spacing:70.395000px;}
.ls3c{letter-spacing:75.138000px;}
.ls2e{letter-spacing:89.385000px;}
.lsb{letter-spacing:92.895000px;}
.lsc{letter-spacing:115.425000px;}
.ls44{letter-spacing:179.535000px;}
.ls39{letter-spacing:184.035000px;}
.ls36{letter-spacing:201.108000px;}
.ls43{letter-spacing:764.388000px;}
.ls5{letter-spacing:850.008000px;}
.ls41{letter-spacing:994.188000px;}
.ls37{letter-spacing:1030.188000px;}
.ls2b{letter-spacing:1187.988000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(118,113,113),0 0.015em rgb(118,113,113),0.015em 0 rgb(118,113,113),0 -0.015em  rgb(118,113,113);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(118,113,113);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-27.686700px;}
.ws22{word-spacing:-26.312700px;}
.ws11{word-spacing:-24.824700px;}
.ws23{word-spacing:-21.267000px;}
.ws1d{word-spacing:-21.015000px;}
.wsb{word-spacing:-19.737000px;}
.ws1f{word-spacing:-19.509000px;}
.ws20{word-spacing:-19.233000px;}
.ws1e{word-spacing:-18.787500px;}
.ws1a{word-spacing:-18.765000px;}
.ws1b{word-spacing:-18.742500px;}
.ws18{word-spacing:-18.513000px;}
.ws1c{word-spacing:-18.021000px;}
.wsf{word-spacing:-18.003000px;}
.ws21{word-spacing:-17.997000px;}
.ws12{word-spacing:-17.745000px;}
.ws25{word-spacing:-17.283000px;}
.ws19{word-spacing:-17.235000px;}
.wsc{word-spacing:-16.776000px;}
.ws6{word-spacing:-16.524000px;}
.ws16{word-spacing:-16.506000px;}
.ws2{word-spacing:-16.488000px;}
.ws4{word-spacing:-16.416000px;}
.ws8{word-spacing:-16.263000px;}
.wsd{word-spacing:-15.237000px;}
.ws1{word-spacing:-15.063000px;}
.wsa{word-spacing:-15.039000px;}
.ws17{word-spacing:-15.030000px;}
.ws3{word-spacing:-15.012000px;}
.ws15{word-spacing:-14.058000px;}
.ws5{word-spacing:-13.536000px;}
.ws7{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.497000px;}
.ws13{word-spacing:-12.204000px;}
.wse{word-spacing:-11.988000px;}
.ws14{word-spacing:-11.826000px;}
.ws24{word-spacing:-9.000000px;}
.ws0{word-spacing:0.000000px;}
._d{margin-left:-10.230000px;}
._1d{margin-left:-7.788300px;}
._a{margin-left:-6.653100px;}
._b{margin-left:-5.517600px;}
._e{margin-left:-3.949800px;}
._3{margin-left:-2.908800px;}
._1{margin-left:-1.514100px;}
._0{width:1.081500px;}
._2{width:2.762100px;}
._c{width:3.800700px;}
._9{width:4.860600px;}
._8{width:6.344700px;}
._7{width:8.115300px;}
._2d{width:9.125700px;}
._10{width:10.140000px;}
._f{width:11.934000px;}
._1c{width:12.950700px;}
._1b{width:14.554500px;}
._2e{width:15.627000px;}
._1e{width:17.773800px;}
._1a{width:18.852900px;}
._14{width:20.510700px;}
._21{width:22.437600px;}
._15{width:23.575500px;}
._17{width:24.621600px;}
._18{width:26.244000px;}
._13{width:29.090700px;}
._20{width:31.392000px;}
._16{width:33.120000px;}
._1f{width:34.667700px;}
._2b{width:35.970000px;}
._25{width:37.951800px;}
._27{width:43.813800px;}
._28{width:48.118200px;}
._22{width:51.623100px;}
._26{width:55.737000px;}
._24{width:64.707000px;}
._19{width:74.940000px;}
._2a{width:135.360000px;}
._2c{width:188.808300px;}
._2f{width:286.770000px;}
._5{width:342.699000px;}
._6{width:586.059000px;}
._29{width:838.947300px;}
._11{width:850.008000px;}
._23{width:1014.444900px;}
._4{width:1045.289100px;}
._12{width:1046.330100px;}
.fc1{color:rgb(0,0,0);}
.fc8{color:rgb(51,51,51);}
.fc2{color:rgb(5,62,128);}
.fc5{color:rgb(47,84,150);}
.fc0{color:rgb(118,113,113);}
.fcb{color:rgb(209,52,56);}
.fc7{color:rgb(33,33,33);}
.fc4{color:rgb(239,177,11);}
.fcc{color:rgb(5,99,193);}
.fce{color:rgb(0,139,254);}
.fcd{color:rgb(52,118,183);}
.fc3{color:transparent;}
.fc9{color:rgb(68,84,106);}
.fc6{color:rgb(0,0,255);}
.fca{color:rgb(31,55,99);}
.fsc{font-size:31.500000px;}
.fsa{font-size:36.000000px;}
.fs9{font-size:40.500000px;}
.fs5{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:58.500000px;}
.fs8{font-size:67.500000px;}
.fs4{font-size:72.000000px;}
.fsd{font-size:76.500000px;}
.fs6{font-size:85.650000px;}
.fs7{font-size:94.650000px;}
.fs2{font-size:108.150000px;}
.fs3{font-size:121.650000px;}
.fsb{font-size:144.150000px;}
.y0{bottom:0.000000px;}
.yf4{bottom:3.375000px;}
.yff{bottom:3.390000px;}
.y1dd{bottom:3.405000px;}
.yfb{bottom:3.420000px;}
.y3e{bottom:4.500000px;}
.yfa{bottom:4.545000px;}
.yf5{bottom:5.625000px;}
.y106{bottom:5.640000px;}
.y11d{bottom:6.750000px;}
.y19b{bottom:6.765000px;}
.y179{bottom:6.780000px;}
.y1f3{bottom:6.787500px;}
.y183{bottom:6.795000px;}
.yd{bottom:7.875000px;}
.y1f0{bottom:7.905000px;}
.y17e{bottom:7.920000px;}
.y34{bottom:10.140000px;}
.y36{bottom:11.250000px;}
.yb{bottom:11.295000px;}
.y7{bottom:12.375000px;}
.y13{bottom:15.780000px;}
.y22{bottom:16.875000px;}
.y33{bottom:16.890000px;}
.y14{bottom:16.905000px;}
.y1f{bottom:16.920000px;}
.y18{bottom:18.000000px;}
.y1d{bottom:18.015000px;}
.y27{bottom:18.030000px;}
.y25{bottom:18.045000px;}
.y2e{bottom:19.125000px;}
.y116{bottom:19.155000px;}
.yfe{bottom:19.170000px;}
.y31{bottom:20.250000px;}
.y101{bottom:20.265000px;}
.y10c{bottom:20.280000px;}
.y103{bottom:20.295000px;}
.y2d{bottom:21.375000px;}
.y105{bottom:21.390000px;}
.y1d0{bottom:21.405000px;}
.y189{bottom:21.412500px;}
.y3c{bottom:21.420000px;}
.y30{bottom:22.500000px;}
.y127{bottom:22.515000px;}
.y16{bottom:22.530000px;}
.y1a{bottom:22.545000px;}
.y1{bottom:23.625000px;}
.y38{bottom:25.920000px;}
.y1c9{bottom:30.420000px;}
.y17{bottom:34.905000px;}
.y39{bottom:34.920000px;}
.y10f{bottom:36.000000px;}
.y40{bottom:36.030000px;}
.y1c{bottom:36.045000px;}
.y11f{bottom:37.125000px;}
.y113{bottom:37.155000px;}
.yfd{bottom:37.170000px;}
.y115{bottom:38.250000px;}
.y112{bottom:38.280000px;}
.y3d{bottom:38.295000px;}
.y10b{bottom:39.405000px;}
.y1f8{bottom:40.500000px;}
.y1bb{bottom:40.530000px;}
.y188{bottom:40.537500px;}
.y1a6{bottom:40.545000px;}
.y1b0{bottom:41.625000px;}
.y198{bottom:41.655000px;}
.y1b3{bottom:41.670000px;}
.y1c8{bottom:49.545000px;}
.yf8{bottom:52.905000px;}
.y10e{bottom:52.920000px;}
.y119{bottom:52.950000px;}
.y111{bottom:54.030000px;}
.y129{bottom:54.045000px;}
.y118{bottom:54.075000px;}
.y10a{bottom:55.170000px;}
.y11{bottom:57.412500px;}
.ya{bottom:58.575000px;}
.y1b9{bottom:59.670000px;}
.y1bf{bottom:60.780000px;}
.y1af{bottom:60.795000px;}
.y1c1{bottom:60.825000px;}
.y6{bottom:66.465000px;}
.y109{bottom:69.825000px;}
.y1ae{bottom:78.795000px;}
.y9{bottom:93.495000px;}
.y114{bottom:109.237500px;}
.yb5{bottom:110.362500px;}
.y9a{bottom:111.487500px;}
.y99{bottom:115.987500px;}
.y18a{bottom:119.362500px;}
.y1bc{bottom:121.612500px;}
.y225{bottom:122.737500px;}
.y205{bottom:123.862500px;}
.yb4{bottom:126.112500px;}
.y98{bottom:129.487500px;}
.yb3{bottom:130.612500px;}
.y132{bottom:132.862500px;}
.y1ce{bottom:135.112500px;}
.y224{bottom:141.862500px;}
.ye6{bottom:142.987500px;}
.y151{bottom:144.112500px;}
.y97{bottom:145.237500px;}
.ydb{bottom:146.362500px;}
.y242{bottom:147.487500px;}
.y96{bottom:149.737500px;}
.y1cd{bottom:150.900000px;}
.y131{bottom:152.025000px;}
.y1a7{bottom:157.650000px;}
.y1e1{bottom:159.900000px;}
.ye5{bottom:161.025000px;}
.y95{bottom:162.150000px;}
.y204{bottom:163.275000px;}
.y150{bottom:164.400000px;}
.y264{bottom:165.525000px;}
.y241{bottom:166.650000px;}
.y1f2{bottom:167.775000px;}
.y130{bottom:170.025000px;}
.y1a5{bottom:171.150000px;}
.y94{bottom:177.900000px;}
.y16d{bottom:179.025000px;}
.yb2{bottom:180.150000px;}
.y93{bottom:182.400000px;}
.y1e0{bottom:183.525000px;}
.yb1{bottom:184.650000px;}
.y240{bottom:185.775000px;}
.ye4{bottom:189.150000px;}
.y187{bottom:190.275000px;}
.y1cc{bottom:191.400000px;}
.yda{bottom:193.695000px;}
.y92{bottom:195.945000px;}
.y16c{bottom:198.195000px;}
.y14f{bottom:199.320000px;}
.y223{bottom:200.445000px;}
.y203{bottom:202.695000px;}
.y263{bottom:203.820000px;}
.y23f{bottom:204.945000px;}
.y1f1{bottom:206.070000px;}
.y12f{bottom:208.320000px;}
.y110{bottom:210.570000px;}
.y91{bottom:211.695000px;}
.yd9{bottom:213.945000px;}
.y16b{bottom:216.195000px;}
.y14e{bottom:217.320000px;}
.y222{bottom:221.820000px;}
.y1df{bottom:222.945000px;}
.ye3{bottom:224.070000px;}
.y23e{bottom:225.195000px;}
.y90{bottom:226.320000px;}
.yd8{bottom:227.445000px;}
.y1a4{bottom:228.570000px;}
.y1ef{bottom:229.695000px;}
.y257{bottom:230.820000px;}
.y16a{bottom:235.350000px;}
.y14d{bottom:236.475000px;}
.y221{bottom:239.850000px;}
.y8f{bottom:242.100000px;}
.yd7{bottom:243.225000px;}
.y23d{bottom:244.350000px;}
.y8e{bottom:246.600000px;}
.y1cb{bottom:247.725000px;}
.y256{bottom:249.975000px;}
.ye2{bottom:251.100000px;}
.y1a3{bottom:252.225000px;}
.y169{bottom:253.350000px;}
.y12e{bottom:254.475000px;}
.yd6{bottom:258.975000px;}
.y8d{bottom:260.100000px;}
.y262{bottom:262.350000px;}
.y23c{bottom:264.600000px;}
.ye1{bottom:269.100000px;}
.y1de{bottom:270.225000px;}
.y14c{bottom:272.475000px;}
.yd5{bottom:273.600000px;}
.y186{bottom:277.005000px;}
.y10d{bottom:278.130000px;}
.y220{bottom:278.145000px;}
.y259{bottom:281.520000px;}
.y1ba{bottom:282.630000px;}
.y23b{bottom:283.755000px;}
.y12d{bottom:284.895000px;}
.y255{bottom:287.130000px;}
.yd4{bottom:289.380000px;}
.y14b{bottom:290.505000px;}
.y1a2{bottom:291.630000px;}
.y1b8{bottom:296.130000px;}
.y21f{bottom:297.255000px;}
.ye0{bottom:300.630000px;}
.y41{bottom:302.880000px;}
.y23a{bottom:304.005000px;}
.y1ca{bottom:305.130000px;}
.yd3{bottom:305.145000px;}
.y202{bottom:306.255000px;}
.y254{bottom:307.380000px;}
.yd2{bottom:309.630000px;}
.y1a1{bottom:315.255000px;}
.y21e{bottom:316.380000px;}
.y258{bottom:319.800000px;}
.y12c{bottom:322.050000px;}
.yd1{bottom:323.175000px;}
.y3f{bottom:324.300000px;}
.y253{bottom:326.550000px;}
.y14a{bottom:327.675000px;}
.y168{bottom:328.800000px;}
.y21d{bottom:336.675000px;}
.y1a0{bottom:338.925000px;}
.y12b{bottom:340.050000px;}
.yb0{bottom:341.175000px;}
.y1ee{bottom:342.300000px;}
.y185{bottom:343.425000px;}
.y108{bottom:344.550000px;}
.y201{bottom:345.675000px;}
.y149{bottom:356.925000px;}
.y1dc{bottom:358.050000px;}
.yaf{bottom:359.175000px;}
.y184{bottom:361.455000px;}
.y200{bottom:369.330000px;}
.y12a{bottom:369.345000px;}
.y1b7{bottom:372.705000px;}
.y148{bottom:374.955000px;}
.y8c{bottom:376.095000px;}
.y167{bottom:377.205000px;}
.yae{bottom:378.330000px;}
.y239{bottom:380.580000px;}
.y3b{bottom:382.830000px;}
.y1c7{bottom:383.955000px;}
.y128{bottom:385.080000px;}
.y252{bottom:389.595000px;}
.y8b{bottom:394.080000px;}
.y21c{bottom:395.205000px;}
.y1b6{bottom:396.330000px;}
.y166{bottom:396.345000px;}
.yad{bottom:397.455000px;}
.y1ed{bottom:399.705000px;}
.y238{bottom:399.720000px;}
.y182{bottom:401.955000px;}
.y147{bottom:404.250000px;}
.y19f{bottom:407.625000px;}
.y1ff{bottom:408.750000px;}
.y8a{bottom:413.250000px;}
.y165{bottom:414.375000px;}
.yac{bottom:415.500000px;}
.y1db{bottom:416.625000px;}
.y237{bottom:418.875000px;}
.y146{bottom:423.375000px;}
.y181{bottom:425.625000px;}
.y107{bottom:427.875000px;}
.y251{bottom:429.000000px;}
.y89{bottom:431.250000px;}
.y1fe{bottom:432.375000px;}
.y21b{bottom:433.500000px;}
.y3a{bottom:434.625000px;}
.y1b5{bottom:435.750000px;}
.y236{bottom:438.000000px;}
.y1da{bottom:440.250000px;}
.yab{bottom:443.625000px;}
.y104{bottom:444.780000px;}
.y5e{bottom:445.920000px;}
.y19e{bottom:447.030000px;}
.y250{bottom:448.155000px;}
.y1c6{bottom:450.405000px;}
.y88{bottom:450.420000px;}
.y126{bottom:451.530000px;}
.y21a{bottom:452.670000px;}
.y1fd{bottom:456.030000px;}
.y235{bottom:457.170000px;}
.y1b4{bottom:459.405000px;}
.y1ec{bottom:462.780000px;}
.yd0{bottom:465.030000px;}
.y37{bottom:466.155000px;}
.y24f{bottom:467.295000px;}
.y86{bottom:468.405000px;}
.y19d{bottom:470.655000px;}
.y219{bottom:471.780000px;}
.y87{bottom:472.920000px;}
.y5d{bottom:474.045000px;}
.yaa{bottom:477.420000px;}
.y102{bottom:478.530000px;}
.y1d9{bottom:479.655000px;}
.y145{bottom:481.905000px;}
.y1b2{bottom:483.030000px;}
.ycf{bottom:484.170000px;}
.y1eb{bottom:486.405000px;}
.y85{bottom:487.575000px;}
.y125{bottom:488.700000px;}
.y218{bottom:490.950000px;}
.y1fc{bottom:495.450000px;}
.ya9{bottom:496.575000px;}
.y164{bottom:497.700000px;}
.y5c{bottom:498.825000px;}
.y1d8{bottom:503.325000px;}
.y24e{bottom:506.700000px;}
.y1fb{bottom:508.950000px;}
.y19c{bottom:510.075000px;}
.y144{bottom:512.325000px;}
.ya8{bottom:514.575000px;}
.y35{bottom:515.700000px;}
.y234{bottom:516.825000px;}
.y5b{bottom:522.450000px;}
.y1d7{bottom:526.950000px;}
.y217{bottom:528.075000px;}
.y100{bottom:529.230000px;}
.y143{bottom:531.480000px;}
.yce{bottom:532.620000px;}
.y19a{bottom:533.730000px;}
.ya7{bottom:533.745000px;}
.y233{bottom:535.995000px;}
.y24d{bottom:538.230000px;}
.y163{bottom:546.120000px;}
.y32{bottom:547.230000px;}
.y5a{bottom:547.245000px;}
.y84{bottom:549.495000px;}
.y142{bottom:550.620000px;}
.ya6{bottom:551.730000px;}
.y261{bottom:552.870000px;}
.y180{bottom:555.105000px;}
.y199{bottom:557.355000px;}
.y1b1{bottom:557.370000px;}
.yfc{bottom:562.980000px;}
.y162{bottom:565.230000px;}
.y216{bottom:566.370000px;}
.y83{bottom:568.605000px;}
.ycd{bottom:569.745000px;}
.y1ad{bottom:570.900000px;}
.y59{bottom:572.025000px;}
.y17f{bottom:574.275000px;}
.y2f{bottom:577.650000px;}
.y1ea{bottom:579.900000px;}
.ya4{bottom:583.275000px;}
.y215{bottom:585.525000px;}
.y82{bottom:586.650000px;}
.ya5{bottom:587.775000px;}
.y124{bottom:588.900000px;}
.y260{bottom:590.025000px;}
.y1e9{bottom:593.400000px;}
.y58{bottom:595.650000px;}
.ya3{bottom:601.275000px;}
.y214{bottom:604.650000px;}
.y81{bottom:605.775000px;}
.y141{bottom:608.025000px;}
.y25f{bottom:609.150000px;}
.y17d{bottom:610.275000px;}
.y161{bottom:611.400000px;}
.y57{bottom:612.525000px;}
.y2c{bottom:614.820000px;}
.ycc{bottom:619.320000px;}
.ya2{bottom:620.445000px;}
.y80{bottom:623.820000px;}
.y197{bottom:626.070000px;}
.y140{bottom:627.195000px;}
.y25e{bottom:628.320000px;}
.yf9{bottom:630.570000px;}
.y17c{bottom:633.945000px;}
.y56{bottom:637.320000px;}
.ya1{bottom:638.445000px;}
.y160{bottom:641.820000px;}
.y7f{bottom:642.945000px;}
.y1c5{bottom:644.070000px;}
.y13f{bottom:645.195000px;}
.y25d{bottom:647.445000px;}
.y1fa{bottom:648.570000px;}
.ycb{bottom:649.695000px;}
.y2b{bottom:650.820000px;}
.y1e8{bottom:651.945000px;}
.y8{bottom:653.055000px;}
.y123{bottom:656.475000px;}
.ya0{bottom:657.600000px;}
.y55{bottom:660.975000px;}
.yf7{bottom:664.350000px;}
.y1ac{bottom:666.600000px;}
.yca{bottom:668.850000px;}
.y1d6{bottom:672.225000px;}
.y9f{bottom:675.600000px;}
.y15f{bottom:678.975000px;}
.y7d{bottom:680.100000px;}
.y17b{bottom:681.225000px;}
.y2a{bottom:682.350000px;}
.y13e{bottom:683.475000px;}
.y7e{bottom:684.600000px;}
.y54{bottom:685.725000px;}
.yc9{bottom:686.850000px;}
.y232{bottom:687.975000px;}
.y24c{bottom:689.100000px;}
.y1ab{bottom:690.225000px;}
.y9e{bottom:694.725000px;}
.y1d5{bottom:695.850000px;}
.y7b{bottom:698.130000px;}
.y213{bottom:699.270000px;}
.y7c{bottom:702.645000px;}
.y25c{bottom:704.880000px;}
.y122{bottom:706.005000px;}
.y231{bottom:707.130000px;}
.y196{bottom:708.255000px;}
.y53{bottom:709.395000px;}
.y29{bottom:712.755000px;}
.y9d{bottom:712.770000px;}
.y1e7{bottom:713.880000px;}
.y15e{bottom:716.145000px;}
.y7a{bottom:717.255000px;}
.yc7{bottom:718.380000px;}
.y13d{bottom:721.755000px;}
.yc8{bottom:722.895000px;}
.y17a{bottom:724.005000px;}
.y230{bottom:726.270000px;}
.y24b{bottom:728.505000px;}
.y1aa{bottom:729.630000px;}
.yf6{bottom:730.755000px;}
.y52{bottom:734.130000px;}
.y15d{bottom:735.255000px;}
.yc6{bottom:736.395000px;}
.y1e6{bottom:737.505000px;}
.ydf{bottom:738.630000px;}
.y13c{bottom:740.925000px;}
.y25b{bottom:742.050000px;}
.y28{bottom:744.300000px;}
.y195{bottom:746.550000px;}
.y79{bottom:747.675000px;}
.y9c{bottom:748.800000px;}
.y1c4{bottom:751.050000px;}
.y15c{bottom:753.300000px;}
.yc5{bottom:755.550000px;}
.y121{bottom:756.675000px;}
.y51{bottom:757.800000px;}
.y13b{bottom:758.925000px;}
.y1e5{bottom:761.175000px;}
.y22f{bottom:763.425000px;}
.y78{bottom:766.800000px;}
.yde{bottom:767.925000px;}
.y9b{bottom:770.175000px;}
.y15b{bottom:772.425000px;}
.y25a{bottom:773.550000px;}
.y26{bottom:775.800000px;}
.y1a9{bottom:776.925000px;}
.y13a{bottom:779.175000px;}
.y178{bottom:780.300000px;}
.yf3{bottom:781.455000px;}
.y50{bottom:782.580000px;}
.y77{bottom:784.830000px;}
.yc4{bottom:785.955000px;}
.y24a{bottom:788.205000px;}
.y120{bottom:790.455000px;}
.y194{bottom:793.830000px;}
.y212{bottom:794.955000px;}
.y139{bottom:797.205000px;}
.ydd{bottom:798.330000px;}
.y22e{bottom:801.705000px;}
.y76{bottom:803.955000px;}
.y4f{bottom:806.205000px;}
.y24{bottom:807.330000px;}
.y5{bottom:809.580000px;}
.y211{bottom:812.955000px;}
.yf2{bottom:817.455000px;}
.y22d{bottom:820.830000px;}
.y75{bottom:821.955000px;}
.yc3{bottom:823.125000px;}
.y11e{bottom:825.375000px;}
.y249{bottom:826.500000px;}
.ydc{bottom:828.750000px;}
.y4e{bottom:831.000000px;}
.y210{bottom:832.125000px;}
.yf1{bottom:833.250000px;}
.y193{bottom:836.625000px;}
.y23{bottom:838.875000px;}
.y22c{bottom:840.000000px;}
.y74{bottom:841.125000px;}
.yc2{bottom:842.250000px;}
.y171{bottom:846.750000px;}
.y138{bottom:847.875000px;}
.y1c3{bottom:849.000000px;}
.y20f{bottom:851.250000px;}
.y1f9{bottom:852.375000px;}
.y69{bottom:853.500000px;}
.y4d{bottom:855.750000px;}
.y1d4{bottom:856.875000px;}
.y1a8{bottom:858.000000px;}
.y73{bottom:859.125000px;}
.yc1{bottom:860.250000px;}
.y209{bottom:862.500000px;}
.y177{bottom:865.920000px;}
.y21{bottom:870.420000px;}
.y11c{bottom:874.920000px;}
.y192{bottom:877.155000px;}
.y15a{bottom:877.170000px;}
.yf0{bottom:878.295000px;}
.y4c{bottom:879.420000px;}
.y68{bottom:886.170000px;}
.y1c2{bottom:888.405000px;}
.y176{bottom:889.530000px;}
.yc0{bottom:889.545000px;}
.y72{bottom:890.670000px;}
.yef{bottom:895.170000px;}
.y22b{bottom:896.295000px;}
.y20{bottom:901.905000px;}
.y4b{bottom:904.170000px;}
.y248{bottom:905.295000px;}
.y71{bottom:908.700000px;}
.yee{bottom:912.075000px;}
.y67{bottom:913.200000px;}
.y22a{bottom:915.450000px;}
.y191{bottom:919.950000px;}
.y1f7{bottom:923.325000px;}
.y4{bottom:924.450000px;}
.y11b{bottom:925.575000px;}
.y159{bottom:926.700000px;}
.y4a{bottom:927.825000px;}
.y170{bottom:928.950000px;}
.y66{bottom:931.200000px;}
.y1e{bottom:933.450000px;}
.y1c0{bottom:935.700000px;}
.y190{bottom:939.075000px;}
.yed{bottom:940.200000px;}
.ybf{bottom:942.450000px;}
.y247{bottom:943.575000px;}
.y70{bottom:945.825000px;}
.y1f6{bottom:946.950000px;}
.y65{bottom:948.075000px;}
.y3{bottom:950.370000px;}
.y1e4{bottom:951.495000px;}
.y49{bottom:952.620000px;}
.y158{bottom:953.745000px;}
.y18f{bottom:954.855000px;}
.y208{bottom:955.995000px;}
.y229{bottom:957.120000px;}
.yec{bottom:959.370000px;}
.y175{bottom:960.495000px;}
.ybe{bottom:961.620000px;}
.y1b{bottom:963.855000px;}
.y246{bottom:963.870000px;}
.y6f{bottom:964.995000px;}
.y20e{bottom:968.370000px;}
.y1d3{bottom:971.730000px;}
.y1e3{bottom:975.105000px;}
.y11a{bottom:976.230000px;}
.y48{bottom:976.245000px;}
.y207{bottom:979.605000px;}
.ybd{bottom:979.620000px;}
.y6e{bottom:982.995000px;}
.y157{bottom:985.245000px;}
.y1f5{bottom:986.355000px;}
.y20d{bottom:987.495000px;}
.y18e{bottom:994.275000px;}
.y64{bottom:995.400000px;}
.y174{bottom:997.650000px;}
.ybc{bottom:998.775000px;}
.y47{bottom:1001.025000px;}
.y6d{bottom:1002.150000px;}
.yeb{bottom:1003.275000px;}
.y20c{bottom:1006.650000px;}
.y1f4{bottom:1010.025000px;}
.y1d2{bottom:1011.150000px;}
.y63{bottom:1012.275000px;}
.y19{bottom:1013.400000px;}
.y228{bottom:1014.525000px;}
.ybb{bottom:1016.775000px;}
.y18d{bottom:1017.900000px;}
.y156{bottom:1019.025000px;}
.y6c{bottom:1021.275000px;}
.y245{bottom:1022.400000px;}
.y46{bottom:1024.650000px;}
.y117{bottom:1025.775000px;}
.y137{bottom:1029.150000px;}
.y16f{bottom:1030.275000px;}
.y227{bottom:1032.525000px;}
.yea{bottom:1033.695000px;}
.y1d1{bottom:1034.820000px;}
.yba{bottom:1035.945000px;}
.y6b{bottom:1039.320000px;}
.y62{bottom:1040.445000px;}
.y244{bottom:1041.570000px;}
.y1be{bottom:1042.695000px;}
.y20b{bottom:1044.945000px;}
.y45{bottom:1049.445000px;}
.ye9{bottom:1051.695000px;}
.y155{bottom:1052.820000px;}
.y15{bottom:1053.945000px;}
.y16e{bottom:1057.320000px;}
.y61{bottom:1058.445000px;}
.y136{bottom:1060.695000px;}
.y243{bottom:1061.820000px;}
.y20a{bottom:1064.070000px;}
.y173{bottom:1066.320000px;}
.y154{bottom:1070.820000px;}
.y44{bottom:1073.070000px;}
.y60{bottom:1076.475000px;}
.y135{bottom:1078.725000px;}
.y18c{bottom:1080.975000px;}
.ye8{bottom:1083.225000px;}
.y6a{bottom:1085.475000px;}
.y1e2{bottom:1086.600000px;}
.y226{bottom:1089.975000px;}
.y153{bottom:1091.100000px;}
.yb9{bottom:1092.225000px;}
.y5f{bottom:1093.350000px;}
.y172{bottom:1094.475000px;}
.y134{bottom:1097.850000px;}
.y43{bottom:1098.975000px;}
.y1cf{bottom:1100.100000px;}
.ye7{bottom:1101.225000px;}
.y12{bottom:1103.475000px;}
.y18b{bottom:1104.600000px;}
.y152{bottom:1109.100000px;}
.yb8{bottom:1110.225000px;}
.y1bd{bottom:1120.380000px;}
.y42{bottom:1121.505000px;}
.y133{bottom:1126.005000px;}
.y206{bottom:1128.255000px;}
.yb6{bottom:1129.380000px;}
.yb7{bottom:1133.880000px;}
.y2{bottom:1145.130000px;}
.y10{bottom:1148.505000px;}
.yf{bottom:1172.175000px;}
.ye{bottom:1192.425000px;}
.yc{bottom:1218.330000px;}
.h27{height:16.875000px;}
.h2b{height:16.912500px;}
.h49{height:18.037500px;}
.h44{height:19.125000px;}
.h45{height:19.162500px;}
.h37{height:22.485000px;}
.h38{height:22.500000px;}
.h3d{height:22.522500px;}
.h3a{height:22.537500px;}
.h8{height:25.912500px;}
.h10{height:29.235000px;}
.h13{height:29.272500px;}
.hf{height:29.287500px;}
.h12{height:30.375000px;}
.h11{height:30.412500px;}
.h22{height:30.770508px;}
.h28{height:32.625000px;}
.h2d{height:32.662500px;}
.h14{height:33.750000px;}
.h15{height:34.875000px;}
.h34{height:36.037500px;}
.h46{height:37.147500px;}
.h39{height:37.162500px;}
.h23{height:37.546875px;}
.h3b{height:38.250000px;}
.hb{height:38.287500px;}
.h24{height:38.320312px;}
.hd{height:39.412500px;}
.h29{height:40.605469px;}
.h21{height:42.240234px;}
.h2a{height:43.505859px;}
.h36{height:44.446289px;}
.h35{height:44.760498px;}
.hc{height:47.272500px;}
.h16{height:47.287500px;}
.he{height:48.412500px;}
.h17{height:48.436523px;}
.h31{height:49.522500px;}
.h2e{height:49.537500px;}
.h32{height:49.575000px;}
.h42{height:49.801025px;}
.h18{height:50.662500px;}
.ha{height:51.626953px;}
.h9{height:51.750000px;}
.h26{height:52.472900px;}
.h2{height:55.700684px;}
.h48{height:56.272500px;}
.h3c{height:56.287500px;}
.h3{height:56.320312px;}
.h40{height:56.325000px;}
.h19{height:57.412500px;}
.h3e{height:57.450000px;}
.h4c{height:60.545654px;}
.h1e{height:61.013672px;}
.h2c{height:65.287500px;}
.h33{height:65.325000px;}
.h30{height:66.450000px;}
.h1c{height:67.137451px;}
.h1f{height:70.400391px;}
.h20{height:75.093750px;}
.h4a{height:75.435000px;}
.h41{height:75.450000px;}
.h47{height:76.522500px;}
.h43{height:76.575000px;}
.h7{height:77.732812px;}
.h4b{height:79.787109px;}
.h2f{height:82.200000px;}
.h5{height:87.257739px;}
.h1a{height:89.330273px;}
.h1b{height:90.120850px;}
.h3f{height:94.575000px;}
.h1d{height:98.716992px;}
.h25{height:108.957129px;}
.h4{height:111.487500px;}
.h6{height:120.487500px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.wc{width:29.287500px;}
.w11{width:30.412500px;}
.wd{width:31.537500px;}
.we{width:95.737500px;}
.w9{width:179.100000px;}
.w4{width:217.395000px;}
.w5{width:221.895000px;}
.wf{width:486.600000px;}
.w6{width:488.850000px;}
.wa{width:495.600000px;}
.w12{width:582.345000px;}
.wb{width:583.470000px;}
.w8{width:675.825000px;}
.w10{width:676.950000px;}
.w3{width:685.950000px;}
.w2{width:685.995000px;}
.w7{width:893.249973px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.875000px;}
.x6{left:11.287500px;}
.x36{left:27.037500px;}
.x2b{left:34.905000px;}
.x9{left:42.780000px;}
.x31{left:54.030000px;}
.x2c{left:61.950000px;}
.x3b{left:95.745000px;}
.x3e{left:96.870000px;}
.x5{left:102.487500px;}
.x4{left:105.899987px;}
.xb{left:108.149987px;}
.xc{left:109.275000px;}
.x23{left:112.649987px;}
.x1d{left:113.774987px;}
.x1c{left:114.899987px;}
.x8{left:116.025000px;}
.xf{left:125.024987px;}
.x11{left:135.187487px;}
.x10{left:140.812487px;}
.x2e{left:150.929987px;}
.x2d{left:162.179987px;}
.x3a{left:166.724987px;}
.x12{left:172.349987px;}
.x2f{left:177.974987px;}
.x17{left:184.724973px;}
.x30{left:189.224987px;}
.x18{left:190.349987px;}
.x35{left:203.895000px;}
.x27{left:227.549973px;}
.x28{left:233.174987px;}
.x2a{left:289.500000px;}
.xa{left:293.999987px;}
.x1f{left:314.249973px;}
.x20{left:318.794987px;}
.x1b{left:324.404987px;}
.x1{left:330.029987px;}
.xe{left:332.295000px;}
.x3d{left:385.244987px;}
.x13{left:396.479973px;}
.x14{left:402.119987px;}
.x2{left:446.069987px;}
.x15{left:499.019973px;}
.x16{left:504.629987px;}
.x7{left:533.880000px;}
.x24{left:576.719973px;}
.x25{left:582.344987px;}
.x37{left:691.620000px;}
.x32{left:692.745000px;}
.x21{left:705.119973px;}
.x22{left:710.774987px;}
.x33{left:723.150000px;}
.x39{left:724.275000px;}
.x34{left:753.570000px;}
.x38{left:754.695000px;}
.x3c{left:755.820000px;}
.x3f{left:774.974987px;}
.x19{left:776.099973px;}
.x1e{left:779.474987px;}
.x26{left:780.599973px;}
.x1a{left:781.724987px;}
.x3{left:786.224987px;}
.x29{left:790.724987px;}
@media print{
.v2{vertical-align:-92.160000pt;}
.v6{vertical-align:-88.160000pt;}
.v7{vertical-align:-76.000000pt;}
.v3{vertical-align:-68.106667pt;}
.v5{vertical-align:-20.053333pt;}
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:20.053333pt;}
.ls19{letter-spacing:-2.688000pt;}
.ls1d{letter-spacing:-2.458667pt;}
.ls47{letter-spacing:-1.808000pt;}
.ls30{letter-spacing:-1.360000pt;}
.lsd{letter-spacing:-1.344000pt;}
.ls1e{letter-spacing:-1.322667pt;}
.ls16{letter-spacing:-1.317333pt;}
.ls9{letter-spacing:-1.312000pt;}
.ls15{letter-spacing:-1.088000pt;}
.ls18{letter-spacing:-0.912000pt;}
.ls34{letter-spacing:-0.682667pt;}
.ls35{letter-spacing:-0.661333pt;}
.ls23{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:-0.232000pt;}
.ls32{letter-spacing:-0.020000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls3f{letter-spacing:0.020000pt;}
.ls27{letter-spacing:0.080000pt;}
.ls3b{letter-spacing:0.086667pt;}
.ls4e{letter-spacing:0.216000pt;}
.ls1f{letter-spacing:0.227733pt;}
.ls24{letter-spacing:0.240000pt;}
.lsf{letter-spacing:0.248000pt;}
.ls4d{letter-spacing:0.288000pt;}
.ls38{letter-spacing:0.432000pt;}
.ls17{letter-spacing:0.456000pt;}
.ls2c{letter-spacing:0.610933pt;}
.ls4c{letter-spacing:0.613333pt;}
.ls40{letter-spacing:0.661333pt;}
.ls2d{letter-spacing:0.680000pt;}
.ls28{letter-spacing:0.960000pt;}
.ls4b{letter-spacing:1.096000pt;}
.ls1a{letter-spacing:1.152000pt;}
.ls14{letter-spacing:1.221333pt;}
.ls3{letter-spacing:1.248000pt;}
.ls2{letter-spacing:1.312000pt;}
.ls22{letter-spacing:1.317333pt;}
.ls26{letter-spacing:1.328000pt;}
.ls4{letter-spacing:1.344000pt;}
.ls4f{letter-spacing:1.472000pt;}
.ls1c{letter-spacing:1.544000pt;}
.lse{letter-spacing:1.546667pt;}
.ls7{letter-spacing:1.637333pt;}
.ls25{letter-spacing:1.648000pt;}
.ls11{letter-spacing:1.696000pt;}
.ls49{letter-spacing:1.920000pt;}
.ls29{letter-spacing:2.000000pt;}
.ls3a{letter-spacing:2.126667pt;}
.ls10{letter-spacing:3.088000pt;}
.ls42{letter-spacing:3.266667pt;}
.ls3e{letter-spacing:3.317333pt;}
.ls33{letter-spacing:3.320000pt;}
.ls2a{letter-spacing:3.480000pt;}
.ls1{letter-spacing:5.636000pt;}
.ls31{letter-spacing:7.306667pt;}
.ls50{letter-spacing:9.096000pt;}
.ls20{letter-spacing:9.544000pt;}
.ls12{letter-spacing:9.696000pt;}
.ls46{letter-spacing:13.096000pt;}
.ls1b{letter-spacing:13.696000pt;}
.ls3d{letter-spacing:14.656000pt;}
.ls48{letter-spacing:15.320000pt;}
.ls2f{letter-spacing:31.293333pt;}
.ls13{letter-spacing:33.544000pt;}
.ls21{letter-spacing:42.762667pt;}
.ls45{letter-spacing:49.544000pt;}
.ls4a{letter-spacing:58.629333pt;}
.lsa{letter-spacing:62.573333pt;}
.ls3c{letter-spacing:66.789333pt;}
.ls2e{letter-spacing:79.453333pt;}
.lsb{letter-spacing:82.573333pt;}
.lsc{letter-spacing:102.600000pt;}
.ls44{letter-spacing:159.586667pt;}
.ls39{letter-spacing:163.586667pt;}
.ls36{letter-spacing:178.762667pt;}
.ls43{letter-spacing:679.456000pt;}
.ls5{letter-spacing:755.562667pt;}
.ls41{letter-spacing:883.722667pt;}
.ls37{letter-spacing:915.722667pt;}
.ls2b{letter-spacing:1055.989333pt;}
.ws9{word-spacing:-24.610400pt;}
.ws22{word-spacing:-23.389067pt;}
.ws11{word-spacing:-22.066400pt;}
.ws23{word-spacing:-18.904000pt;}
.ws1d{word-spacing:-18.680000pt;}
.wsb{word-spacing:-17.544000pt;}
.ws1f{word-spacing:-17.341333pt;}
.ws20{word-spacing:-17.096000pt;}
.ws1e{word-spacing:-16.700000pt;}
.ws1a{word-spacing:-16.680000pt;}
.ws1b{word-spacing:-16.660000pt;}
.ws18{word-spacing:-16.456000pt;}
.ws1c{word-spacing:-16.018667pt;}
.wsf{word-spacing:-16.002667pt;}
.ws21{word-spacing:-15.997333pt;}
.ws12{word-spacing:-15.773333pt;}
.ws25{word-spacing:-15.362667pt;}
.ws19{word-spacing:-15.320000pt;}
.wsc{word-spacing:-14.912000pt;}
.ws6{word-spacing:-14.688000pt;}
.ws16{word-spacing:-14.672000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws4{word-spacing:-14.592000pt;}
.ws8{word-spacing:-14.456000pt;}
.wsd{word-spacing:-13.544000pt;}
.ws1{word-spacing:-13.389333pt;}
.wsa{word-spacing:-13.368000pt;}
.ws17{word-spacing:-13.360000pt;}
.ws3{word-spacing:-13.344000pt;}
.ws15{word-spacing:-12.496000pt;}
.ws5{word-spacing:-12.032000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.997333pt;}
.ws13{word-spacing:-10.848000pt;}
.wse{word-spacing:-10.656000pt;}
.ws14{word-spacing:-10.512000pt;}
.ws24{word-spacing:-8.000000pt;}
.ws0{word-spacing:0.000000pt;}
._d{margin-left:-9.093333pt;}
._1d{margin-left:-6.922933pt;}
._a{margin-left:-5.913867pt;}
._b{margin-left:-4.904533pt;}
._e{margin-left:-3.510933pt;}
._3{margin-left:-2.585600pt;}
._1{margin-left:-1.345867pt;}
._0{width:0.961333pt;}
._2{width:2.455200pt;}
._c{width:3.378400pt;}
._9{width:4.320533pt;}
._8{width:5.639733pt;}
._7{width:7.213600pt;}
._2d{width:8.111733pt;}
._10{width:9.013333pt;}
._f{width:10.608000pt;}
._1c{width:11.511733pt;}
._1b{width:12.937333pt;}
._2e{width:13.890667pt;}
._1e{width:15.798933pt;}
._1a{width:16.758133pt;}
._14{width:18.231733pt;}
._21{width:19.944533pt;}
._15{width:20.956000pt;}
._17{width:21.885867pt;}
._18{width:23.328000pt;}
._13{width:25.858400pt;}
._20{width:27.904000pt;}
._16{width:29.440000pt;}
._1f{width:30.815733pt;}
._2b{width:31.973333pt;}
._25{width:33.734933pt;}
._27{width:38.945600pt;}
._28{width:42.771733pt;}
._22{width:45.887200pt;}
._26{width:49.544000pt;}
._24{width:57.517333pt;}
._19{width:66.613333pt;}
._2a{width:120.320000pt;}
._2c{width:167.829600pt;}
._2f{width:254.906667pt;}
._5{width:304.621333pt;}
._6{width:520.941333pt;}
._29{width:745.730933pt;}
._11{width:755.562667pt;}
._23{width:901.728800pt;}
._4{width:929.145867pt;}
._12{width:930.071200pt;}
.fsc{font-size:28.000000pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:36.000000pt;}
.fs5{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:52.000000pt;}
.fs8{font-size:60.000000pt;}
.fs4{font-size:64.000000pt;}
.fsd{font-size:68.000000pt;}
.fs6{font-size:76.133333pt;}
.fs7{font-size:84.133333pt;}
.fs2{font-size:96.133333pt;}
.fs3{font-size:108.133333pt;}
.fsb{font-size:128.133333pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:3.000000pt;}
.yff{bottom:3.013333pt;}
.y1dd{bottom:3.026667pt;}
.yfb{bottom:3.040000pt;}
.y3e{bottom:4.000000pt;}
.yfa{bottom:4.040000pt;}
.yf5{bottom:5.000000pt;}
.y106{bottom:5.013333pt;}
.y11d{bottom:6.000000pt;}
.y19b{bottom:6.013333pt;}
.y179{bottom:6.026667pt;}
.y1f3{bottom:6.033333pt;}
.y183{bottom:6.040000pt;}
.yd{bottom:7.000000pt;}
.y1f0{bottom:7.026667pt;}
.y17e{bottom:7.040000pt;}
.y34{bottom:9.013333pt;}
.y36{bottom:10.000000pt;}
.yb{bottom:10.040000pt;}
.y7{bottom:11.000000pt;}
.y13{bottom:14.026667pt;}
.y22{bottom:15.000000pt;}
.y33{bottom:15.013333pt;}
.y14{bottom:15.026667pt;}
.y1f{bottom:15.040000pt;}
.y18{bottom:16.000000pt;}
.y1d{bottom:16.013333pt;}
.y27{bottom:16.026667pt;}
.y25{bottom:16.040000pt;}
.y2e{bottom:17.000000pt;}
.y116{bottom:17.026667pt;}
.yfe{bottom:17.040000pt;}
.y31{bottom:18.000000pt;}
.y101{bottom:18.013333pt;}
.y10c{bottom:18.026667pt;}
.y103{bottom:18.040000pt;}
.y2d{bottom:19.000000pt;}
.y105{bottom:19.013333pt;}
.y1d0{bottom:19.026667pt;}
.y189{bottom:19.033333pt;}
.y3c{bottom:19.040000pt;}
.y30{bottom:20.000000pt;}
.y127{bottom:20.013333pt;}
.y16{bottom:20.026667pt;}
.y1a{bottom:20.040000pt;}
.y1{bottom:21.000000pt;}
.y38{bottom:23.040000pt;}
.y1c9{bottom:27.040000pt;}
.y17{bottom:31.026667pt;}
.y39{bottom:31.040000pt;}
.y10f{bottom:32.000000pt;}
.y40{bottom:32.026667pt;}
.y1c{bottom:32.040000pt;}
.y11f{bottom:33.000000pt;}
.y113{bottom:33.026667pt;}
.yfd{bottom:33.040000pt;}
.y115{bottom:34.000000pt;}
.y112{bottom:34.026667pt;}
.y3d{bottom:34.040000pt;}
.y10b{bottom:35.026667pt;}
.y1f8{bottom:36.000000pt;}
.y1bb{bottom:36.026667pt;}
.y188{bottom:36.033333pt;}
.y1a6{bottom:36.040000pt;}
.y1b0{bottom:37.000000pt;}
.y198{bottom:37.026667pt;}
.y1b3{bottom:37.040000pt;}
.y1c8{bottom:44.040000pt;}
.yf8{bottom:47.026667pt;}
.y10e{bottom:47.040000pt;}
.y119{bottom:47.066667pt;}
.y111{bottom:48.026667pt;}
.y129{bottom:48.040000pt;}
.y118{bottom:48.066667pt;}
.y10a{bottom:49.040000pt;}
.y11{bottom:51.033333pt;}
.ya{bottom:52.066667pt;}
.y1b9{bottom:53.040000pt;}
.y1bf{bottom:54.026667pt;}
.y1af{bottom:54.040000pt;}
.y1c1{bottom:54.066667pt;}
.y6{bottom:59.080000pt;}
.y109{bottom:62.066667pt;}
.y1ae{bottom:70.040000pt;}
.y9{bottom:83.106667pt;}
.y114{bottom:97.100000pt;}
.yb5{bottom:98.100000pt;}
.y9a{bottom:99.100000pt;}
.y99{bottom:103.100000pt;}
.y18a{bottom:106.100000pt;}
.y1bc{bottom:108.100000pt;}
.y225{bottom:109.100000pt;}
.y205{bottom:110.100000pt;}
.yb4{bottom:112.100000pt;}
.y98{bottom:115.100000pt;}
.yb3{bottom:116.100000pt;}
.y132{bottom:118.100000pt;}
.y1ce{bottom:120.100000pt;}
.y224{bottom:126.100000pt;}
.ye6{bottom:127.100000pt;}
.y151{bottom:128.100000pt;}
.y97{bottom:129.100000pt;}
.ydb{bottom:130.100000pt;}
.y242{bottom:131.100000pt;}
.y96{bottom:133.100000pt;}
.y1cd{bottom:134.133333pt;}
.y131{bottom:135.133333pt;}
.y1a7{bottom:140.133333pt;}
.y1e1{bottom:142.133333pt;}
.ye5{bottom:143.133333pt;}
.y95{bottom:144.133333pt;}
.y204{bottom:145.133333pt;}
.y150{bottom:146.133333pt;}
.y264{bottom:147.133333pt;}
.y241{bottom:148.133333pt;}
.y1f2{bottom:149.133333pt;}
.y130{bottom:151.133333pt;}
.y1a5{bottom:152.133333pt;}
.y94{bottom:158.133333pt;}
.y16d{bottom:159.133333pt;}
.yb2{bottom:160.133333pt;}
.y93{bottom:162.133333pt;}
.y1e0{bottom:163.133333pt;}
.yb1{bottom:164.133333pt;}
.y240{bottom:165.133333pt;}
.ye4{bottom:168.133333pt;}
.y187{bottom:169.133333pt;}
.y1cc{bottom:170.133333pt;}
.yda{bottom:172.173333pt;}
.y92{bottom:174.173333pt;}
.y16c{bottom:176.173333pt;}
.y14f{bottom:177.173333pt;}
.y223{bottom:178.173333pt;}
.y203{bottom:180.173333pt;}
.y263{bottom:181.173333pt;}
.y23f{bottom:182.173333pt;}
.y1f1{bottom:183.173333pt;}
.y12f{bottom:185.173333pt;}
.y110{bottom:187.173333pt;}
.y91{bottom:188.173333pt;}
.yd9{bottom:190.173333pt;}
.y16b{bottom:192.173333pt;}
.y14e{bottom:193.173333pt;}
.y222{bottom:197.173333pt;}
.y1df{bottom:198.173333pt;}
.ye3{bottom:199.173333pt;}
.y23e{bottom:200.173333pt;}
.y90{bottom:201.173333pt;}
.yd8{bottom:202.173333pt;}
.y1a4{bottom:203.173333pt;}
.y1ef{bottom:204.173333pt;}
.y257{bottom:205.173333pt;}
.y16a{bottom:209.200000pt;}
.y14d{bottom:210.200000pt;}
.y221{bottom:213.200000pt;}
.y8f{bottom:215.200000pt;}
.yd7{bottom:216.200000pt;}
.y23d{bottom:217.200000pt;}
.y8e{bottom:219.200000pt;}
.y1cb{bottom:220.200000pt;}
.y256{bottom:222.200000pt;}
.ye2{bottom:223.200000pt;}
.y1a3{bottom:224.200000pt;}
.y169{bottom:225.200000pt;}
.y12e{bottom:226.200000pt;}
.yd6{bottom:230.200000pt;}
.y8d{bottom:231.200000pt;}
.y262{bottom:233.200000pt;}
.y23c{bottom:235.200000pt;}
.ye1{bottom:239.200000pt;}
.y1de{bottom:240.200000pt;}
.y14c{bottom:242.200000pt;}
.yd5{bottom:243.200000pt;}
.y186{bottom:246.226667pt;}
.y10d{bottom:247.226667pt;}
.y220{bottom:247.240000pt;}
.y259{bottom:250.240000pt;}
.y1ba{bottom:251.226667pt;}
.y23b{bottom:252.226667pt;}
.y12d{bottom:253.240000pt;}
.y255{bottom:255.226667pt;}
.yd4{bottom:257.226667pt;}
.y14b{bottom:258.226667pt;}
.y1a2{bottom:259.226667pt;}
.y1b8{bottom:263.226667pt;}
.y21f{bottom:264.226667pt;}
.ye0{bottom:267.226667pt;}
.y41{bottom:269.226667pt;}
.y23a{bottom:270.226667pt;}
.y1ca{bottom:271.226667pt;}
.yd3{bottom:271.240000pt;}
.y202{bottom:272.226667pt;}
.y254{bottom:273.226667pt;}
.yd2{bottom:275.226667pt;}
.y1a1{bottom:280.226667pt;}
.y21e{bottom:281.226667pt;}
.y258{bottom:284.266667pt;}
.y12c{bottom:286.266667pt;}
.yd1{bottom:287.266667pt;}
.y3f{bottom:288.266667pt;}
.y253{bottom:290.266667pt;}
.y14a{bottom:291.266667pt;}
.y168{bottom:292.266667pt;}
.y21d{bottom:299.266667pt;}
.y1a0{bottom:301.266667pt;}
.y12b{bottom:302.266667pt;}
.yb0{bottom:303.266667pt;}
.y1ee{bottom:304.266667pt;}
.y185{bottom:305.266667pt;}
.y108{bottom:306.266667pt;}
.y201{bottom:307.266667pt;}
.y149{bottom:317.266667pt;}
.y1dc{bottom:318.266667pt;}
.yaf{bottom:319.266667pt;}
.y184{bottom:321.293333pt;}
.y200{bottom:328.293333pt;}
.y12a{bottom:328.306667pt;}
.y1b7{bottom:331.293333pt;}
.y148{bottom:333.293333pt;}
.y8c{bottom:334.306667pt;}
.y167{bottom:335.293333pt;}
.yae{bottom:336.293333pt;}
.y239{bottom:338.293333pt;}
.y3b{bottom:340.293333pt;}
.y1c7{bottom:341.293333pt;}
.y128{bottom:342.293333pt;}
.y252{bottom:346.306667pt;}
.y8b{bottom:350.293333pt;}
.y21c{bottom:351.293333pt;}
.y1b6{bottom:352.293333pt;}
.y166{bottom:352.306667pt;}
.yad{bottom:353.293333pt;}
.y1ed{bottom:355.293333pt;}
.y238{bottom:355.306667pt;}
.y182{bottom:357.293333pt;}
.y147{bottom:359.333333pt;}
.y19f{bottom:362.333333pt;}
.y1ff{bottom:363.333333pt;}
.y8a{bottom:367.333333pt;}
.y165{bottom:368.333333pt;}
.yac{bottom:369.333333pt;}
.y1db{bottom:370.333333pt;}
.y237{bottom:372.333333pt;}
.y146{bottom:376.333333pt;}
.y181{bottom:378.333333pt;}
.y107{bottom:380.333333pt;}
.y251{bottom:381.333333pt;}
.y89{bottom:383.333333pt;}
.y1fe{bottom:384.333333pt;}
.y21b{bottom:385.333333pt;}
.y3a{bottom:386.333333pt;}
.y1b5{bottom:387.333333pt;}
.y236{bottom:389.333333pt;}
.y1da{bottom:391.333333pt;}
.yab{bottom:394.333333pt;}
.y104{bottom:395.360000pt;}
.y5e{bottom:396.373333pt;}
.y19e{bottom:397.360000pt;}
.y250{bottom:398.360000pt;}
.y1c6{bottom:400.360000pt;}
.y88{bottom:400.373333pt;}
.y126{bottom:401.360000pt;}
.y21a{bottom:402.373333pt;}
.y1fd{bottom:405.360000pt;}
.y235{bottom:406.373333pt;}
.y1b4{bottom:408.360000pt;}
.y1ec{bottom:411.360000pt;}
.yd0{bottom:413.360000pt;}
.y37{bottom:414.360000pt;}
.y24f{bottom:415.373333pt;}
.y86{bottom:416.360000pt;}
.y19d{bottom:418.360000pt;}
.y219{bottom:419.360000pt;}
.y87{bottom:420.373333pt;}
.y5d{bottom:421.373333pt;}
.yaa{bottom:424.373333pt;}
.y102{bottom:425.360000pt;}
.y1d9{bottom:426.360000pt;}
.y145{bottom:428.360000pt;}
.y1b2{bottom:429.360000pt;}
.ycf{bottom:430.373333pt;}
.y1eb{bottom:432.360000pt;}
.y85{bottom:433.400000pt;}
.y125{bottom:434.400000pt;}
.y218{bottom:436.400000pt;}
.y1fc{bottom:440.400000pt;}
.ya9{bottom:441.400000pt;}
.y164{bottom:442.400000pt;}
.y5c{bottom:443.400000pt;}
.y1d8{bottom:447.400000pt;}
.y24e{bottom:450.400000pt;}
.y1fb{bottom:452.400000pt;}
.y19c{bottom:453.400000pt;}
.y144{bottom:455.400000pt;}
.ya8{bottom:457.400000pt;}
.y35{bottom:458.400000pt;}
.y234{bottom:459.400000pt;}
.y5b{bottom:464.400000pt;}
.y1d7{bottom:468.400000pt;}
.y217{bottom:469.400000pt;}
.y100{bottom:470.426667pt;}
.y143{bottom:472.426667pt;}
.yce{bottom:473.440000pt;}
.y19a{bottom:474.426667pt;}
.ya7{bottom:474.440000pt;}
.y233{bottom:476.440000pt;}
.y24d{bottom:478.426667pt;}
.y163{bottom:485.440000pt;}
.y32{bottom:486.426667pt;}
.y5a{bottom:486.440000pt;}
.y84{bottom:488.440000pt;}
.y142{bottom:489.440000pt;}
.ya6{bottom:490.426667pt;}
.y261{bottom:491.440000pt;}
.y180{bottom:493.426667pt;}
.y199{bottom:495.426667pt;}
.y1b1{bottom:495.440000pt;}
.yfc{bottom:500.426667pt;}
.y162{bottom:502.426667pt;}
.y216{bottom:503.440000pt;}
.y83{bottom:505.426667pt;}
.ycd{bottom:506.440000pt;}
.y1ad{bottom:507.466667pt;}
.y59{bottom:508.466667pt;}
.y17f{bottom:510.466667pt;}
.y2f{bottom:513.466667pt;}
.y1ea{bottom:515.466667pt;}
.ya4{bottom:518.466667pt;}
.y215{bottom:520.466667pt;}
.y82{bottom:521.466667pt;}
.ya5{bottom:522.466667pt;}
.y124{bottom:523.466667pt;}
.y260{bottom:524.466667pt;}
.y1e9{bottom:527.466667pt;}
.y58{bottom:529.466667pt;}
.ya3{bottom:534.466667pt;}
.y214{bottom:537.466667pt;}
.y81{bottom:538.466667pt;}
.y141{bottom:540.466667pt;}
.y25f{bottom:541.466667pt;}
.y17d{bottom:542.466667pt;}
.y161{bottom:543.466667pt;}
.y57{bottom:544.466667pt;}
.y2c{bottom:546.506667pt;}
.ycc{bottom:550.506667pt;}
.ya2{bottom:551.506667pt;}
.y80{bottom:554.506667pt;}
.y197{bottom:556.506667pt;}
.y140{bottom:557.506667pt;}
.y25e{bottom:558.506667pt;}
.yf9{bottom:560.506667pt;}
.y17c{bottom:563.506667pt;}
.y56{bottom:566.506667pt;}
.ya1{bottom:567.506667pt;}
.y160{bottom:570.506667pt;}
.y7f{bottom:571.506667pt;}
.y1c5{bottom:572.506667pt;}
.y13f{bottom:573.506667pt;}
.y25d{bottom:575.506667pt;}
.y1fa{bottom:576.506667pt;}
.ycb{bottom:577.506667pt;}
.y2b{bottom:578.506667pt;}
.y1e8{bottom:579.506667pt;}
.y8{bottom:580.493333pt;}
.y123{bottom:583.533333pt;}
.ya0{bottom:584.533333pt;}
.y55{bottom:587.533333pt;}
.yf7{bottom:590.533333pt;}
.y1ac{bottom:592.533333pt;}
.yca{bottom:594.533333pt;}
.y1d6{bottom:597.533333pt;}
.y9f{bottom:600.533333pt;}
.y15f{bottom:603.533333pt;}
.y7d{bottom:604.533333pt;}
.y17b{bottom:605.533333pt;}
.y2a{bottom:606.533333pt;}
.y13e{bottom:607.533333pt;}
.y7e{bottom:608.533333pt;}
.y54{bottom:609.533333pt;}
.yc9{bottom:610.533333pt;}
.y232{bottom:611.533333pt;}
.y24c{bottom:612.533333pt;}
.y1ab{bottom:613.533333pt;}
.y9e{bottom:617.533333pt;}
.y1d5{bottom:618.533333pt;}
.y7b{bottom:620.560000pt;}
.y213{bottom:621.573333pt;}
.y7c{bottom:624.573333pt;}
.y25c{bottom:626.560000pt;}
.y122{bottom:627.560000pt;}
.y231{bottom:628.560000pt;}
.y196{bottom:629.560000pt;}
.y53{bottom:630.573333pt;}
.y29{bottom:633.560000pt;}
.y9d{bottom:633.573333pt;}
.y1e7{bottom:634.560000pt;}
.y15e{bottom:636.573333pt;}
.y7a{bottom:637.560000pt;}
.yc7{bottom:638.560000pt;}
.y13d{bottom:641.560000pt;}
.yc8{bottom:642.573333pt;}
.y17a{bottom:643.560000pt;}
.y230{bottom:645.573333pt;}
.y24b{bottom:647.560000pt;}
.y1aa{bottom:648.560000pt;}
.yf6{bottom:649.560000pt;}
.y52{bottom:652.560000pt;}
.y15d{bottom:653.560000pt;}
.yc6{bottom:654.573333pt;}
.y1e6{bottom:655.560000pt;}
.ydf{bottom:656.560000pt;}
.y13c{bottom:658.600000pt;}
.y25b{bottom:659.600000pt;}
.y28{bottom:661.600000pt;}
.y195{bottom:663.600000pt;}
.y79{bottom:664.600000pt;}
.y9c{bottom:665.600000pt;}
.y1c4{bottom:667.600000pt;}
.y15c{bottom:669.600000pt;}
.yc5{bottom:671.600000pt;}
.y121{bottom:672.600000pt;}
.y51{bottom:673.600000pt;}
.y13b{bottom:674.600000pt;}
.y1e5{bottom:676.600000pt;}
.y22f{bottom:678.600000pt;}
.y78{bottom:681.600000pt;}
.yde{bottom:682.600000pt;}
.y9b{bottom:684.600000pt;}
.y15b{bottom:686.600000pt;}
.y25a{bottom:687.600000pt;}
.y26{bottom:689.600000pt;}
.y1a9{bottom:690.600000pt;}
.y13a{bottom:692.600000pt;}
.y178{bottom:693.600000pt;}
.yf3{bottom:694.626667pt;}
.y50{bottom:695.626667pt;}
.y77{bottom:697.626667pt;}
.yc4{bottom:698.626667pt;}
.y24a{bottom:700.626667pt;}
.y120{bottom:702.626667pt;}
.y194{bottom:705.626667pt;}
.y212{bottom:706.626667pt;}
.y139{bottom:708.626667pt;}
.ydd{bottom:709.626667pt;}
.y22e{bottom:712.626667pt;}
.y76{bottom:714.626667pt;}
.y4f{bottom:716.626667pt;}
.y24{bottom:717.626667pt;}
.y5{bottom:719.626667pt;}
.y211{bottom:722.626667pt;}
.yf2{bottom:726.626667pt;}
.y22d{bottom:729.626667pt;}
.y75{bottom:730.626667pt;}
.yc3{bottom:731.666667pt;}
.y11e{bottom:733.666667pt;}
.y249{bottom:734.666667pt;}
.ydc{bottom:736.666667pt;}
.y4e{bottom:738.666667pt;}
.y210{bottom:739.666667pt;}
.yf1{bottom:740.666667pt;}
.y193{bottom:743.666667pt;}
.y23{bottom:745.666667pt;}
.y22c{bottom:746.666667pt;}
.y74{bottom:747.666667pt;}
.yc2{bottom:748.666667pt;}
.y171{bottom:752.666667pt;}
.y138{bottom:753.666667pt;}
.y1c3{bottom:754.666667pt;}
.y20f{bottom:756.666667pt;}
.y1f9{bottom:757.666667pt;}
.y69{bottom:758.666667pt;}
.y4d{bottom:760.666667pt;}
.y1d4{bottom:761.666667pt;}
.y1a8{bottom:762.666667pt;}
.y73{bottom:763.666667pt;}
.yc1{bottom:764.666667pt;}
.y209{bottom:766.666667pt;}
.y177{bottom:769.706667pt;}
.y21{bottom:773.706667pt;}
.y11c{bottom:777.706667pt;}
.y192{bottom:779.693333pt;}
.y15a{bottom:779.706667pt;}
.yf0{bottom:780.706667pt;}
.y4c{bottom:781.706667pt;}
.y68{bottom:787.706667pt;}
.y1c2{bottom:789.693333pt;}
.y176{bottom:790.693333pt;}
.yc0{bottom:790.706667pt;}
.y72{bottom:791.706667pt;}
.yef{bottom:795.706667pt;}
.y22b{bottom:796.706667pt;}
.y20{bottom:801.693333pt;}
.y4b{bottom:803.706667pt;}
.y248{bottom:804.706667pt;}
.y71{bottom:807.733333pt;}
.yee{bottom:810.733333pt;}
.y67{bottom:811.733333pt;}
.y22a{bottom:813.733333pt;}
.y191{bottom:817.733333pt;}
.y1f7{bottom:820.733333pt;}
.y4{bottom:821.733333pt;}
.y11b{bottom:822.733333pt;}
.y159{bottom:823.733333pt;}
.y4a{bottom:824.733333pt;}
.y170{bottom:825.733333pt;}
.y66{bottom:827.733333pt;}
.y1e{bottom:829.733333pt;}
.y1c0{bottom:831.733333pt;}
.y190{bottom:834.733333pt;}
.yed{bottom:835.733333pt;}
.ybf{bottom:837.733333pt;}
.y247{bottom:838.733333pt;}
.y70{bottom:840.733333pt;}
.y1f6{bottom:841.733333pt;}
.y65{bottom:842.733333pt;}
.y3{bottom:844.773333pt;}
.y1e4{bottom:845.773333pt;}
.y49{bottom:846.773333pt;}
.y158{bottom:847.773333pt;}
.y18f{bottom:848.760000pt;}
.y208{bottom:849.773333pt;}
.y229{bottom:850.773333pt;}
.yec{bottom:852.773333pt;}
.y175{bottom:853.773333pt;}
.ybe{bottom:854.773333pt;}
.y1b{bottom:856.760000pt;}
.y246{bottom:856.773333pt;}
.y6f{bottom:857.773333pt;}
.y20e{bottom:860.773333pt;}
.y1d3{bottom:863.760000pt;}
.y1e3{bottom:866.760000pt;}
.y11a{bottom:867.760000pt;}
.y48{bottom:867.773333pt;}
.y207{bottom:870.760000pt;}
.ybd{bottom:870.773333pt;}
.y6e{bottom:873.773333pt;}
.y157{bottom:875.773333pt;}
.y1f5{bottom:876.760000pt;}
.y20d{bottom:877.773333pt;}
.y18e{bottom:883.800000pt;}
.y64{bottom:884.800000pt;}
.y174{bottom:886.800000pt;}
.ybc{bottom:887.800000pt;}
.y47{bottom:889.800000pt;}
.y6d{bottom:890.800000pt;}
.yeb{bottom:891.800000pt;}
.y20c{bottom:894.800000pt;}
.y1f4{bottom:897.800000pt;}
.y1d2{bottom:898.800000pt;}
.y63{bottom:899.800000pt;}
.y19{bottom:900.800000pt;}
.y228{bottom:901.800000pt;}
.ybb{bottom:903.800000pt;}
.y18d{bottom:904.800000pt;}
.y156{bottom:905.800000pt;}
.y6c{bottom:907.800000pt;}
.y245{bottom:908.800000pt;}
.y46{bottom:910.800000pt;}
.y117{bottom:911.800000pt;}
.y137{bottom:914.800000pt;}
.y16f{bottom:915.800000pt;}
.y227{bottom:917.800000pt;}
.yea{bottom:918.840000pt;}
.y1d1{bottom:919.840000pt;}
.yba{bottom:920.840000pt;}
.y6b{bottom:923.840000pt;}
.y62{bottom:924.840000pt;}
.y244{bottom:925.840000pt;}
.y1be{bottom:926.840000pt;}
.y20b{bottom:928.840000pt;}
.y45{bottom:932.840000pt;}
.ye9{bottom:934.840000pt;}
.y155{bottom:935.840000pt;}
.y15{bottom:936.840000pt;}
.y16e{bottom:939.840000pt;}
.y61{bottom:940.840000pt;}
.y136{bottom:942.840000pt;}
.y243{bottom:943.840000pt;}
.y20a{bottom:945.840000pt;}
.y173{bottom:947.840000pt;}
.y154{bottom:951.840000pt;}
.y44{bottom:953.840000pt;}
.y60{bottom:956.866667pt;}
.y135{bottom:958.866667pt;}
.y18c{bottom:960.866667pt;}
.ye8{bottom:962.866667pt;}
.y6a{bottom:964.866667pt;}
.y1e2{bottom:965.866667pt;}
.y226{bottom:968.866667pt;}
.y153{bottom:969.866667pt;}
.yb9{bottom:970.866667pt;}
.y5f{bottom:971.866667pt;}
.y172{bottom:972.866667pt;}
.y134{bottom:975.866667pt;}
.y43{bottom:976.866667pt;}
.y1cf{bottom:977.866667pt;}
.ye7{bottom:978.866667pt;}
.y12{bottom:980.866667pt;}
.y18b{bottom:981.866667pt;}
.y152{bottom:985.866667pt;}
.yb8{bottom:986.866667pt;}
.y1bd{bottom:995.893333pt;}
.y42{bottom:996.893333pt;}
.y133{bottom:1000.893333pt;}
.y206{bottom:1002.893333pt;}
.yb6{bottom:1003.893333pt;}
.yb7{bottom:1007.893333pt;}
.y2{bottom:1017.893333pt;}
.y10{bottom:1020.893333pt;}
.yf{bottom:1041.933333pt;}
.ye{bottom:1059.933333pt;}
.yc{bottom:1082.960000pt;}
.h27{height:15.000000pt;}
.h2b{height:15.033333pt;}
.h49{height:16.033333pt;}
.h44{height:17.000000pt;}
.h45{height:17.033333pt;}
.h37{height:19.986667pt;}
.h38{height:20.000000pt;}
.h3d{height:20.020000pt;}
.h3a{height:20.033333pt;}
.h8{height:23.033333pt;}
.h10{height:25.986667pt;}
.h13{height:26.020000pt;}
.hf{height:26.033333pt;}
.h12{height:27.000000pt;}
.h11{height:27.033333pt;}
.h22{height:27.351562pt;}
.h28{height:29.000000pt;}
.h2d{height:29.033333pt;}
.h14{height:30.000000pt;}
.h15{height:31.000000pt;}
.h34{height:32.033333pt;}
.h46{height:33.020000pt;}
.h39{height:33.033333pt;}
.h23{height:33.375000pt;}
.h3b{height:34.000000pt;}
.hb{height:34.033333pt;}
.h24{height:34.062500pt;}
.hd{height:35.033333pt;}
.h29{height:36.093750pt;}
.h21{height:37.546875pt;}
.h2a{height:38.671875pt;}
.h36{height:39.507812pt;}
.h35{height:39.787109pt;}
.hc{height:42.020000pt;}
.h16{height:42.033333pt;}
.he{height:43.033333pt;}
.h17{height:43.054688pt;}
.h31{height:44.020000pt;}
.h2e{height:44.033333pt;}
.h32{height:44.066667pt;}
.h42{height:44.267578pt;}
.h18{height:45.033333pt;}
.ha{height:45.890625pt;}
.h9{height:46.000000pt;}
.h26{height:46.642578pt;}
.h2{height:49.511719pt;}
.h48{height:50.020000pt;}
.h3c{height:50.033333pt;}
.h3{height:50.062500pt;}
.h40{height:50.066667pt;}
.h19{height:51.033333pt;}
.h3e{height:51.066667pt;}
.h4c{height:53.818359pt;}
.h1e{height:54.234375pt;}
.h2c{height:58.033333pt;}
.h33{height:58.066667pt;}
.h30{height:59.066667pt;}
.h1c{height:59.677734pt;}
.h1f{height:62.578125pt;}
.h20{height:66.750000pt;}
.h4a{height:67.053333pt;}
.h41{height:67.066667pt;}
.h47{height:68.020000pt;}
.h43{height:68.066667pt;}
.h7{height:69.095833pt;}
.h4b{height:70.921875pt;}
.h2f{height:73.066667pt;}
.h5{height:77.562435pt;}
.h1a{height:79.404688pt;}
.h1b{height:80.107422pt;}
.h3f{height:84.066667pt;}
.h1d{height:87.748438pt;}
.h25{height:96.850781pt;}
.h4{height:99.100000pt;}
.h6{height:107.100000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.wc{width:26.033333pt;}
.w11{width:27.033333pt;}
.wd{width:28.033333pt;}
.we{width:85.100000pt;}
.w9{width:159.200000pt;}
.w4{width:193.240000pt;}
.w5{width:197.240000pt;}
.wf{width:432.533333pt;}
.w6{width:434.533333pt;}
.wa{width:440.533333pt;}
.w12{width:517.640000pt;}
.wb{width:518.640000pt;}
.w8{width:600.733333pt;}
.w10{width:601.733333pt;}
.w3{width:609.733333pt;}
.w2{width:609.773333pt;}
.w7{width:793.999976pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.000000pt;}
.x6{left:10.033333pt;}
.x36{left:24.033333pt;}
.x2b{left:31.026667pt;}
.x9{left:38.026667pt;}
.x31{left:48.026667pt;}
.x2c{left:55.066667pt;}
.x3b{left:85.106667pt;}
.x3e{left:86.106667pt;}
.x5{left:91.100000pt;}
.x4{left:94.133322pt;}
.xb{left:96.133322pt;}
.xc{left:97.133333pt;}
.x23{left:100.133322pt;}
.x1d{left:101.133322pt;}
.x1c{left:102.133322pt;}
.x8{left:103.133333pt;}
.xf{left:111.133322pt;}
.x11{left:120.166655pt;}
.x10{left:125.166655pt;}
.x2e{left:134.159988pt;}
.x2d{left:144.159988pt;}
.x3a{left:148.199988pt;}
.x12{left:153.199988pt;}
.x2f{left:158.199988pt;}
.x17{left:164.199976pt;}
.x30{left:168.199988pt;}
.x18{left:169.199988pt;}
.x35{left:181.240000pt;}
.x27{left:202.266643pt;}
.x28{left:207.266655pt;}
.x2a{left:257.333333pt;}
.xa{left:261.333322pt;}
.x1f{left:279.333310pt;}
.x20{left:283.373322pt;}
.x1b{left:288.359988pt;}
.x1{left:293.359988pt;}
.xe{left:295.373333pt;}
.x3d{left:342.439988pt;}
.x13{left:352.426643pt;}
.x14{left:357.439988pt;}
.x2{left:396.506655pt;}
.x15{left:443.573310pt;}
.x16{left:448.559988pt;}
.x7{left:474.560000pt;}
.x24{left:512.639976pt;}
.x25{left:517.639988pt;}
.x37{left:614.773333pt;}
.x32{left:615.773333pt;}
.x21{left:626.773310pt;}
.x22{left:631.799988pt;}
.x33{left:642.800000pt;}
.x39{left:643.800000pt;}
.x34{left:669.840000pt;}
.x38{left:670.840000pt;}
.x3c{left:671.840000pt;}
.x3f{left:688.866655pt;}
.x19{left:689.866643pt;}
.x1e{left:692.866655pt;}
.x26{left:693.866643pt;}
.x1a{left:694.866655pt;}
.x3{left:698.866655pt;}
.x29{left:702.866655pt;}
}




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