
    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_931e9b85d8ee3eedf29741cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_16cda60bd21b57343df4385e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.207031;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_b4b632df380b1bdc4290f985.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_b0528a94d4b11e04c1847158.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_72aa24444fd00c3a21c615b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.844727;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_80d2acb208fb5d507e3134e6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.207031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.949020px;}
.v3{vertical-align:-19.980000px;}
.v7{vertical-align:-15.984000px;}
.vf{vertical-align:-13.973400px;}
.ve{vertical-align:-12.000000px;}
.v6{vertical-align:-7.980000px;}
.v9{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.987020px;}
.v4{vertical-align:3.996000px;}
.vc{vertical-align:5.982000px;}
.v8{vertical-align:7.969020px;}
.v12{vertical-align:10.018200px;}
.va{vertical-align:12.000000px;}
.v5{vertical-align:17.982000px;}
.v1{vertical-align:19.980000px;}
.v10{vertical-align:23.982000px;}
.vd{vertical-align:27.949020px;}
.v13{vertical-align:46.200000px;}
.v11{vertical-align:48.006000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000120px;}
.ls7{letter-spacing:0.000360px;}
.ls12{letter-spacing:0.001200px;}
.ls15{letter-spacing:0.001800px;}
.ls18{letter-spacing:0.002400px;}
.ls28{letter-spacing:0.003000px;}
.ls5{letter-spacing:0.006000px;}
.ls2a{letter-spacing:0.009000px;}
.ls1d{letter-spacing:0.015000px;}
.ls17{letter-spacing:0.015600px;}
.ls9{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.018600px;}
.ls4{letter-spacing:0.019200px;}
.ls2c{letter-spacing:0.021000px;}
.ls26{letter-spacing:0.046200px;}
.ls1{letter-spacing:0.450000px;}
.lsb{letter-spacing:0.510000px;}
.lsc{letter-spacing:0.600000px;}
.ls10{letter-spacing:1.530000px;}
.lsa{letter-spacing:1.731000px;}
.ls11{letter-spacing:1.980000px;}
.lse{letter-spacing:3.243600px;}
.ls8{letter-spacing:3.363000px;}
.ls0{letter-spacing:3.600000px;}
.ls6{letter-spacing:3.655200px;}
.lsf{letter-spacing:6.120000px;}
.ls31{letter-spacing:84.965484px;}
.ls2e{letter-spacing:102.509484px;}
.ls2b{letter-spacing:105.515484px;}
.ls2d{letter-spacing:105.665484px;}
.ls30{letter-spacing:110.096484px;}
.ls2f{letter-spacing:120.052884px;}
.ls29{letter-spacing:133.346484px;}
.ls27{letter-spacing:134.002884px;}
.ls25{letter-spacing:168.756000px;}
.ls23{letter-spacing:182.070000px;}
.ls16{letter-spacing:192.617466px;}
.ls1c{letter-spacing:192.618066px;}
.ls32{letter-spacing:193.409484px;}
.ls24{letter-spacing:195.426000px;}
.ls19{letter-spacing:197.190666px;}
.ls1b{letter-spacing:200.841066px;}
.ls14{letter-spacing:200.841666px;}
.ls13{letter-spacing:201.312666px;}
.ls1a{letter-spacing:201.313266px;}
.ls1e{letter-spacing:208.785066px;}
.ls1f{letter-spacing:459.049266px;}
.ls20{letter-spacing:701.541666px;}
.ls21{letter-spacing:944.053866px;}
.ls22{letter-spacing:1194.769866px;}
.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;}
}
.wsa{word-spacing:-60.000000px;}
.ws2{word-spacing:-17.952000px;}
.ws1e{word-spacing:-16.896000px;}
.ws3{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.390000px;}
.ws5{word-spacing:-15.000000px;}
.wsb{word-spacing:-14.784000px;}
.ws1c{word-spacing:-14.364000px;}
.ws9{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.000000px;}
.ws4{word-spacing:-8.745000px;}
.ws1b{word-spacing:-8.374212px;}
.ws8{word-spacing:-7.870500px;}
.ws7{word-spacing:-6.996000px;}
.ws1{word-spacing:0.000000px;}
.ws1f{word-spacing:37.086000px;}
.ws20{word-spacing:38.808000px;}
.ws22{word-spacing:48.090000px;}
.ws23{word-spacing:48.300000px;}
.ws1d{word-spacing:61.992000px;}
.ws12{word-spacing:63.672000px;}
.ws11{word-spacing:64.512000px;}
.ws15{word-spacing:100.380000px;}
.ws10{word-spacing:106.512000px;}
.ws1a{word-spacing:106.596000px;}
.wsd{word-spacing:117.348000px;}
.ws21{word-spacing:121.758000px;}
.wsc{word-spacing:126.882000px;}
.ws18{word-spacing:127.260000px;}
.ws16{word-spacing:140.574000px;}
.ws17{word-spacing:153.930000px;}
.ws14{word-spacing:153.972000px;}
.wse{word-spacing:161.238000px;}
.ws19{word-spacing:183.540000px;}
.ws13{word-spacing:634.578000px;}
.ws26{word-spacing:802.746000px;}
.ws24{word-spacing:933.954000px;}
.ws25{word-spacing:988.764000px;}
.wsf{word-spacing:1191.582000px;}
._12{margin-left:-18.586440px;}
._10{margin-left:-8.085000px;}
._3{margin-left:-6.696000px;}
._5{margin-left:-5.292000px;}
._0{margin-left:-3.960000px;}
._1{margin-left:-2.592000px;}
._2{margin-left:-1.440000px;}
._4{width:1.638000px;}
._8{width:3.375000px;}
._6{width:5.355000px;}
._7{width:7.110000px;}
._9{width:8.955000px;}
._a{width:9.990000px;}
._b{width:11.169000px;}
._e{width:12.597000px;}
._f{width:14.535000px;}
._11{width:15.912000px;}
._d{width:16.929000px;}
._c{width:19.431000px;}
._63{width:21.408000px;}
._6d{width:51.450000px;}
._ba{width:52.458000px;}
._6a{width:53.508000px;}
._64{width:57.582000px;}
._a5{width:62.160000px;}
._69{width:63.252000px;}
._104{width:66.234000px;}
._3c{width:72.408000px;}
._3b{width:76.776000px;}
._78{width:90.636000px;}
._1b{width:92.652000px;}
._82{width:101.430000px;}
._27{width:103.488000px;}
._7c{width:104.706000px;}
._1c{width:106.008000px;}
._f1{width:107.814000px;}
._bc{width:109.830000px;}
._6c{width:117.264000px;}
._20{width:130.200000px;}
._4f{width:131.334000px;}
._eb{width:134.526000px;}
._76{width:136.542000px;}
._17{width:141.666000px;}
._de{width:142.896000px;}
._15{width:151.200000px;}
._5b{width:154.056000px;}
._ef{width:155.442000px;}
._59{width:158.886000px;}
._67{width:163.254000px;}
._53{width:167.118000px;}
._6e{width:168.252000px;}
._5a{width:170.604000px;}
._2d{width:173.922000px;}
._16{width:175.980000px;}
._5c{width:177.618000px;}
._14{width:185.556000px;}
._1f{width:187.278000px;}
._4a{width:192.024000px;}
._3f{width:200.088000px;}
._60{width:204.414000px;}
._1d{width:205.554000px;}
._3e{width:207.648000px;}
._3a{width:213.444000px;}
._52{width:215.838000px;}
._df{width:219.786000px;}
._39{width:220.962000px;}
._66{width:232.932000px;}
._56{width:235.368000px;}
._44{width:236.376000px;}
._45{width:248.010000px;}
._47{width:250.488000px;}
._3d{width:254.640000px;}
._55{width:256.494000px;}
._57{width:259.644000px;}
._fe{width:261.294000px;}
._42{width:263.802000px;}
._51{width:267.204000px;}
._35{width:272.412000px;}
._33{width:275.730000px;}
._62{width:276.738000px;}
._48{width:291.936000px;}
._28{width:298.200000px;}
._38{width:302.058000px;}
._37{width:366.156000px;}
._36{width:368.214000px;}
._34{width:375.732000px;}
._40{width:394.542000px;}
._41{width:400.884000px;}
._21{width:408.450000px;}
._4c{width:418.698000px;}
._8e{width:426.258000px;}
._f9{width:428.838000px;}
._18{width:432.138000px;}
._92{width:443.916000px;}
._50{width:449.526000px;}
._61{width:460.908000px;}
._58{width:467.880000px;}
._8b{width:471.786000px;}
._5d{width:474.222000px;}
._4b{width:475.566000px;}
._4e{width:478.254000px;}
._d7{width:481.026000px;}
._7f{width:485.616000px;}
._32{width:487.074000px;}
._2b{width:500.754000px;}
._4d{width:503.622000px;}
._49{width:511.428000px;}
._31{width:514.962000px;}
._65{width:522.984000px;}
._8c{width:525.072000px;}
._30{width:529.536000px;}
._8f{width:530.922000px;}
._9c{width:533.148000px;}
._46{width:534.612000px;}
._70{width:545.286000px;}
._80{width:552.510000px;}
._43{width:555.654000px;}
._ab{width:559.578000px;}
._b5{width:563.670000px;}
._bb{width:567.198000px;}
._d0{width:568.260000px;}
._7b{width:572.334000px;}
._79{width:573.900000px;}
._af{width:575.160000px;}
._100{width:581.016000px;}
._c4{width:582.738000px;}
._b2{width:584.628000px;}
._d8{width:595.410000px;}
._29{width:596.820000px;}
._2e{width:599.676000px;}
._b6{width:603.768000px;}
._c9{width:605.358000px;}
._2c{width:608.076000px;}
._f6{width:609.264000px;}
._98{width:611.920200px;}
._2f{width:613.032000px;}
._c1{width:614.430000px;}
._54{width:616.434000px;}
._8d{width:623.406000px;}
._d5{width:625.518000px;}
._d6{width:627.270000px;}
._ad{width:629.454000px;}
._aa{width:633.264000px;}
._a9{width:636.972000px;}
._74{width:638.094000px;}
._cd{width:641.970000px;}
._c7{width:646.968000px;}
._8a{width:648.396000px;}
._cb{width:652.386000px;}
._1e{width:655.578000px;}
._81{width:657.846000px;}
._ff{width:660.240000px;}
._e2{width:663.306000px;}
._86{width:669.114000px;}
._ec{width:674.898000px;}
._f4{width:676.704000px;}
._19{width:678.804000px;}
._d9{width:680.496000px;}
._91{width:684.168000px;}
._f8{width:686.910000px;}
._6b{width:688.632000px;}
._e9{width:690.942000px;}
._23{width:695.814000px;}
._9f{width:697.788000px;}
._e6{width:700.968000px;}
._102{width:702.156000px;}
._ee{width:706.032000px;}
._a3{width:707.532000px;}
._5e{width:708.786000px;}
._71{width:714.810000px;}
._f2{width:718.284000px;}
._22{width:721.980000px;}
._96{width:724.920000px;}
._c3{width:728.208000px;}
._9d{width:730.170000px;}
._a0{width:731.838000px;}
._99{width:736.512000px;}
._e7{width:738.654000px;}
._b3{width:740.646000px;}
._e8{width:742.014000px;}
._26{width:743.064000px;}
._87{width:747.432000px;}
._25{width:752.514000px;}
._b1{width:756.840000px;}
._b4{width:758.424000px;}
._ce{width:760.326000px;}
._103{width:762.678000px;}
._a2{width:767.298000px;}
._fc{width:769.356000px;}
._da{width:774.774000px;}
._90{width:775.866000px;}
._2a{width:778.890000px;}
._9e{width:782.460000px;}
._bf{width:783.582000px;}
._97{width:785.526000px;}
._f3{width:786.828000px;}
._ae{width:787.860000px;}
._83{width:789.360000px;}
._c0{width:797.496000px;}
._b7{width:800.550000px;}
._a1{width:807.954000px;}
._e1{width:810.234000px;}
._89{width:811.314000px;}
._77{width:813.372000px;}
._dd{width:816.954000px;}
._ed{width:821.256000px;}
._d1{width:824.292000px;}
._9a{width:827.442000px;}
._a6{width:829.542000px;}
._9b{width:833.448000px;}
._e0{width:836.796000px;}
._88{width:837.942000px;}
._5f{width:839.412000px;}
._c5{width:842.016000px;}
._24{width:845.292000px;}
._84{width:846.594000px;}
._fd{width:849.030000px;}
._b9{width:850.446000px;}
._e3{width:853.722000px;}
._85{width:855.036000px;}
._c2{width:858.030000px;}
._101{width:859.668000px;}
._68{width:863.436000px;}
._72{width:866.376000px;}
._ca{width:875.574000px;}
._dc{width:877.002000px;}
._d4{width:880.080000px;}
._7a{width:882.180000px;}
._93{width:883.626000px;}
._a7{width:884.814000px;}
._6f{width:888.426000px;}
._d3{width:890.400000px;}
._a8{width:893.046000px;}
._b0{width:895.146000px;}
._ac{width:900.300000px;}
._a4{width:908.304000px;}
._94{width:910.224000px;}
._7e{width:911.274000px;}
._1a{width:915.852000px;}
._bd{width:919.296000px;}
._e5{width:922.236000px;}
._c6{width:923.244000px;}
._73{width:925.974000px;}
._db{width:930.048000px;}
._fb{width:932.232000px;}
._13{width:934.836000px;}
._be{width:935.844000px;}
._d2{width:942.270000px;}
._75{width:950.754000px;}
._cf{width:952.014000px;}
._f5{width:955.920000px;}
._e4{width:967.062000px;}
._c8{width:968.604000px;}
._f0{width:981.918000px;}
._b8{width:983.292000px;}
._95{width:989.940000px;}
._cc{width:995.526000px;}
._ea{width:997.332000px;}
._7d{width:999.306000px;}
._f7{width:1011.780000px;}
._fa{width:1023.384000px;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:24.486000px;}
.fsa{font-size:27.984000px;}
.fsb{font-size:31.482000px;}
.fs8{font-size:34.980000px;}
.fs6{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs3{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fsc{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:99.140700px;}
.ya4{bottom:99.140850px;}
.y10d{bottom:99.411150px;}
.y27{bottom:99.411450px;}
.y16b{bottom:100.371600px;}
.ya2{bottom:100.371750px;}
.y10b{bottom:100.661550px;}
.y25{bottom:100.661700px;}
.y64{bottom:170.609550px;}
.ya1{bottom:170.966550px;}
.y23a{bottom:175.559550px;}
.y1c0{bottom:176.170650px;}
.ycf{bottom:176.711550px;}
.y333{bottom:177.011850px;}
.y2fe{bottom:177.894750px;}
.y1f1{bottom:181.081650px;}
.y36c{bottom:182.675850px;}
.y10a{bottom:183.249000px;}
.y16a{bottom:183.934650px;}
.y2c1{bottom:184.026750px;}
.y196{bottom:184.432650px;}
.y63{bottom:185.603550px;}
.ya0{bottom:185.960550px;}
.y131{bottom:188.550150px;}
.y1bf{bottom:191.164650px;}
.yce{bottom:191.705550px;}
.y239{bottom:192.569550px;}
.y2fd{bottom:192.894750px;}
.y332{bottom:194.021850px;}
.y109{bottom:198.255000px;}
.y169{bottom:198.928650px;}
.y2c0{bottom:199.026750px;}
.y195{bottom:199.426650px;}
.y36b{bottom:199.685850px;}
.y62{bottom:200.597550px;}
.y9f{bottom:200.954550px;}
.y130{bottom:203.544150px;}
.y1be{bottom:206.158650px;}
.ycd{bottom:206.699550px;}
.y2fc{bottom:207.894750px;}
.y238{bottom:209.579550px;}
.y1f0{bottom:210.660150px;}
.y331{bottom:211.031850px;}
.y108{bottom:213.249000px;}
.y168{bottom:213.922650px;}
.y2bf{bottom:214.026750px;}
.y194{bottom:214.420650px;}
.y61{bottom:215.591550px;}
.y9e{bottom:215.948550px;}
.y36a{bottom:216.695850px;}
.y12f{bottom:218.538150px;}
.y1bd{bottom:221.152650px;}
.y2fb{bottom:222.894750px;}
.y1f{bottom:225.825000px;}
.y237{bottom:226.400550px;}
.y330{bottom:228.041850px;}
.y107{bottom:228.249000px;}
.y167{bottom:228.916650px;}
.y2be{bottom:229.026750px;}
.y193{bottom:229.414650px;}
.ycc{bottom:230.197800px;}
.y60{bottom:230.585550px;}
.y9d{bottom:230.942550px;}
.y12e{bottom:233.532150px;}
.y369{bottom:233.705850px;}
.y1bc{bottom:236.146650px;}
.y2fa{bottom:237.894750px;}
.y1ef{bottom:240.427650px;}
.y1e{bottom:240.829500px;}
.y106{bottom:243.255000px;}
.y166{bottom:243.910650px;}
.y2bd{bottom:244.026750px;}
.y192{bottom:244.408650px;}
.y32f{bottom:245.051850px;}
.ycb{bottom:245.203800px;}
.y5f{bottom:245.579550px;}
.y9c{bottom:245.936550px;}
.y12d{bottom:248.526150px;}
.y368{bottom:250.715850px;}
.y1bb{bottom:251.140650px;}
.y236{bottom:251.758050px;}
.y2f9{bottom:255.018750px;}
.y105{bottom:258.249000px;}
.y2bc{bottom:259.026750px;}
.y191{bottom:259.402650px;}
.yca{bottom:260.197800px;}
.y5e{bottom:260.573550px;}
.y9b{bottom:260.930550px;}
.y32e{bottom:262.061850px;}
.y12c{bottom:263.520150px;}
.y1ba{bottom:266.134650px;}
.y165{bottom:267.408900px;}
.y367{bottom:267.725850px;}
.y2f8{bottom:270.018750px;}
.y1ee{bottom:270.310650px;}
.y104{bottom:273.249000px;}
.y190{bottom:274.396650px;}
.yc9{bottom:275.210850px;}
.y5d{bottom:275.567550px;}
.y9a{bottom:275.924550px;}
.y2bb{bottom:276.150750px;}
.y235{bottom:277.115550px;}
.y12b{bottom:278.514150px;}
.y32d{bottom:278.987850px;}
.y1ed{bottom:282.312150px;}
.y164{bottom:282.402900px;}
.y366{bottom:284.735850px;}
.y2f7{bottom:285.018750px;}
.y103{bottom:288.243000px;}
.y18f{bottom:289.390650px;}
.y1b9{bottom:289.632900px;}
.yc8{bottom:290.204850px;}
.y5c{bottom:290.561550px;}
.y99{bottom:290.918550px;}
.y2ba{bottom:291.150750px;}
.y234{bottom:293.936550px;}
.y32c{bottom:295.997850px;}
.y163{bottom:297.396900px;}
.y2f6{bottom:300.018750px;}
.y365{bottom:301.745850px;}
.y12a{bottom:302.012400px;}
.y102{bottom:303.249000px;}
.y1d{bottom:304.904700px;}
.y5b{bottom:305.555550px;}
.y98{bottom:305.912550px;}
.y2b9{bottom:306.150750px;}
.y233{bottom:310.946550px;}
.y1ec{bottom:312.195150px;}
.y162{bottom:312.390900px;}
.y18e{bottom:312.888900px;}
.y32b{bottom:313.007850px;}
.y1b8{bottom:313.131150px;}
.yc7{bottom:313.703100px;}
.y2f5{bottom:315.018750px;}
.y129{bottom:317.006400px;}
.y101{bottom:318.260700px;}
.y364{bottom:318.755850px;}
.y36d{bottom:318.756900px;}
.y5a{bottom:320.549550px;}
.y97{bottom:320.906550px;}
.y2b8{bottom:321.150750px;}
.y161{bottom:327.384900px;}
.y18d{bottom:327.882900px;}
.y232{bottom:327.956550px;}
.y1b7{bottom:328.125150px;}
.yc6{bottom:328.697100px;}
.y32a{bottom:330.017850px;}
.y128{bottom:332.000400px;}
.y2f4{bottom:332.142750px;}
.y1c{bottom:332.658450px;}
.y100{bottom:333.254700px;}
.y59{bottom:335.543550px;}
.y363{bottom:335.766900px;}
.y96{bottom:335.900550px;}
.y2b7{bottom:336.150750px;}
.y1eb{bottom:341.962650px;}
.y160{bottom:342.378900px;}
.y18c{bottom:342.876900px;}
.y1b6{bottom:343.119150px;}
.y231{bottom:344.966550px;}
.y127{bottom:346.994400px;}
.y329{bottom:347.027850px;}
.y2f3{bottom:347.142750px;}
.y1b{bottom:347.654700px;}
.y58{bottom:350.537550px;}
.y95{bottom:350.894550px;}
.y362{bottom:352.682400px;}
.y2b6{bottom:353.274750px;}
.yff{bottom:356.752950px;}
.y15f{bottom:357.372900px;}
.y18b{bottom:357.870900px;}
.y1b5{bottom:358.113150px;}
.y230{bottom:361.976550px;}
.y126{bottom:361.988400px;}
.y2f2{bottom:362.142750px;}
.y1a{bottom:362.650950px;}
.y328{bottom:364.037850px;}
.y94{bottom:365.888550px;}
.y2b5{bottom:368.274750px;}
.y361{bottom:369.692400px;}
.yfe{bottom:371.746950px;}
.y18a{bottom:372.864900px;}
.y1b4{bottom:373.107150px;}
.y57{bottom:374.035800px;}
.y1ea{bottom:374.943150px;}
.y125{bottom:376.982400px;}
.y2f1{bottom:377.142750px;}
.y19{bottom:377.647200px;}
.y22f{bottom:378.986550px;}
.y15e{bottom:380.871150px;}
.y1e9{bottom:380.949150px;}
.y327{bottom:381.047850px;}
.y2b4{bottom:383.274750px;}
.y360{bottom:386.702400px;}
.yfd{bottom:386.752950px;}
.y189{bottom:387.858900px;}
.y1b3{bottom:388.101150px;}
.y56{bottom:389.029800px;}
.y93{bottom:389.386800px;}
.y124{bottom:391.976400px;}
.y2f0{bottom:392.142750px;}
.y18{bottom:392.643450px;}
.y15d{bottom:395.865150px;}
.y22e{bottom:395.996550px;}
.y326{bottom:398.057850px;}
.y2b3{bottom:398.274750px;}
.yfc{bottom:401.752950px;}
.y188{bottom:402.852900px;}
.y1b2{bottom:403.095150px;}
.y35f{bottom:403.712400px;}
.y55{bottom:404.023800px;}
.y92{bottom:404.380800px;}
.y17{bottom:407.639700px;}
.y2ef{bottom:409.266750px;}
.y15c{bottom:410.859150px;}
.y22d{bottom:413.006550px;}
.y325{bottom:415.067850px;}
.y2b2{bottom:415.398750px;}
.y123{bottom:415.474650px;}
.yfb{bottom:416.758950px;}
.y1e8{bottom:417.184650px;}
.y187{bottom:417.846900px;}
.y1b1{bottom:418.089150px;}
.y54{bottom:419.017800px;}
.y91{bottom:419.374800px;}
.y35e{bottom:420.722400px;}
.y16{bottom:422.635950px;}
.y2ee{bottom:424.266750px;}
.y15b{bottom:425.853150px;}
.y1e7{bottom:429.186150px;}
.y22c{bottom:430.016550px;}
.y2b1{bottom:430.398750px;}
.y122{bottom:430.468650px;}
.yfa{bottom:431.752950px;}
.y324{bottom:432.077850px;}
.y186{bottom:432.840900px;}
.y1b0{bottom:433.083150px;}
.y53{bottom:434.011800px;}
.y90{bottom:434.368800px;}
.y35d{bottom:437.732400px;}
.y2ed{bottom:439.266750px;}
.y15a{bottom:440.847150px;}
.y1e4{bottom:441.187650px;}
.y2b0{bottom:445.398750px;}
.y121{bottom:445.462650px;}
.yf9{bottom:446.764650px;}
.y22b{bottom:447.026550px;}
.y185{bottom:447.834900px;}
.y1af{bottom:448.077150px;}
.y52{bottom:449.005800px;}
.y323{bottom:449.087850px;}
.y8f{bottom:449.362800px;}
.y15{bottom:450.389700px;}
.yc5{bottom:452.977350px;}
.y1e6{bottom:453.189150px;}
.y2ec{bottom:454.266750px;}
.y35c{bottom:454.742400px;}
.y120{bottom:460.456650px;}
.yf8{bottom:461.758650px;}
.y2af{bottom:462.522750px;}
.y184{bottom:462.828900px;}
.y1ae{bottom:463.071150px;}
.y51{bottom:463.999800px;}
.y22a{bottom:464.036550px;}
.y159{bottom:464.345400px;}
.y8e{bottom:464.356800px;}
.y1e5{bottom:465.190650px;}
.y322{bottom:466.097850px;}
.yc4{bottom:467.971350px;}
.y2eb{bottom:469.266750px;}
.y35b{bottom:471.752400px;}
.y288{bottom:474.291600px;}
.y11f{bottom:475.450650px;}
.y2ae{bottom:477.522750px;}
.y183{bottom:477.822900px;}
.y1ad{bottom:478.065150px;}
.y50{bottom:478.993800px;}
.y158{bottom:479.339400px;}
.y8d{bottom:479.350800px;}
.y229{bottom:481.046550px;}
.yc3{bottom:482.977350px;}
.y321{bottom:483.107850px;}
.y2ea{bottom:484.266750px;}
.yf7{bottom:485.256900px;}
.y35a{bottom:488.762400px;}
.y11e{bottom:490.444650px;}
.y1e3{bottom:491.062650px;}
.y2ad{bottom:492.522750px;}
.y182{bottom:492.816900px;}
.y1ac{bottom:493.059150px;}
.y4f{bottom:493.987800px;}
.y8c{bottom:494.344800px;}
.yc2{bottom:497.977350px;}
.y228{bottom:498.056550px;}
.y320{bottom:500.117850px;}
.yf6{bottom:500.256900px;}
.y2e9{bottom:501.390750px;}
.y157{bottom:502.837650px;}
.y1e2{bottom:503.064150px;}
.y262{bottom:503.132100px;}
.y11d{bottom:505.438650px;}
.y359{bottom:505.772400px;}
.y14{bottom:505.897200px;}
.y181{bottom:507.810900px;}
.y1ab{bottom:508.053150px;}
.y4e{bottom:508.981800px;}
.y8b{bottom:509.338800px;}
.y2ac{bottom:509.646750px;}
.yc1{bottom:512.971350px;}
.y1df{bottom:515.065650px;}
.y227{bottom:515.066550px;}
.yf5{bottom:515.274900px;}
.y2e8{bottom:516.390750px;}
.y31f{bottom:517.127850px;}
.y287{bottom:517.271850px;}
.y156{bottom:517.831650px;}
.y261{bottom:518.126100px;}
.y358{bottom:522.782400px;}
.y180{bottom:522.804900px;}
.y1aa{bottom:523.047150px;}
.y4d{bottom:523.975800px;}
.y8a{bottom:524.332800px;}
.y2ab{bottom:524.646750px;}
.y1e1{bottom:527.067150px;}
.yc0{bottom:527.983350px;}
.y11c{bottom:528.936900px;}
.yf4{bottom:530.268900px;}
.y2e7{bottom:531.390750px;}
.y226{bottom:532.076550px;}
.y286{bottom:532.265850px;}
.y155{bottom:532.825650px;}
.y260{bottom:533.120100px;}
.y13{bottom:533.650950px;}
.y31e{bottom:534.137850px;}
.y1a9{bottom:538.041150px;}
.y4c{bottom:538.969800px;}
.y1e0{bottom:539.068650px;}
.y89{bottom:539.326800px;}
.y357{bottom:539.792400px;}
.y2aa{bottom:541.770750px;}
.ybf{bottom:542.977350px;}
.yf3{bottom:545.262900px;}
.y17f{bottom:546.303150px;}
.y2e6{bottom:546.390750px;}
.y285{bottom:547.259850px;}
.y154{bottom:547.819650px;}
.y25f{bottom:548.114100px;}
.y12{bottom:548.647200px;}
.y225{bottom:549.086550px;}
.y31d{bottom:551.147850px;}
.y1a8{bottom:553.035150px;}
.y88{bottom:554.320800px;}
.y2a9{bottom:556.770750px;}
.y356{bottom:556.802400px;}
.ybe{bottom:557.971650px;}
.yf2{bottom:560.256900px;}
.y17e{bottom:561.297150px;}
.y1de{bottom:561.685650px;}
.y284{bottom:562.253850px;}
.y4b{bottom:562.468050px;}
.y153{bottom:562.813650px;}
.y25e{bottom:563.108100px;}
.y2e5{bottom:563.514750px;}
.y11{bottom:563.643450px;}
.y11b{bottom:565.197900px;}
.y224{bottom:566.096550px;}
.y1dd{bottom:567.691650px;}
.y1a7{bottom:568.029150px;}
.y31c{bottom:568.157850px;}
.y87{bottom:569.314800px;}
.y2a8{bottom:571.770750px;}
.y355{bottom:573.812400px;}
.yf1{bottom:575.262900px;}
.y17d{bottom:576.291150px;}
.y283{bottom:577.247850px;}
.y4a{bottom:577.462050px;}
.y152{bottom:577.807650px;}
.y25d{bottom:578.102100px;}
.y2e4{bottom:578.514750px;}
.y10{bottom:578.639700px;}
.ybd{bottom:581.469900px;}
.y1a6{bottom:583.023150px;}
.y223{bottom:583.106550px;}
.y31b{bottom:585.167850px;}
.y2a7{bottom:588.894750px;}
.yf0{bottom:590.256900px;}
.y354{bottom:590.822400px;}
.y17c{bottom:591.285150px;}
.y282{bottom:592.241850px;}
.y49{bottom:592.456050px;}
.y151{bottom:592.801650px;}
.y86{bottom:592.813050px;}
.y25c{bottom:593.096100px;}
.yf{bottom:593.635950px;}
.y2e3{bottom:595.638750px;}
.y1dc{bottom:597.459150px;}
.y1a5{bottom:598.017150px;}
.y222{bottom:600.116550px;}
.y31a{bottom:602.177850px;}
.y2a6{bottom:603.894750px;}
.yef{bottom:605.256600px;}
.y17b{bottom:606.279150px;}
.y48{bottom:607.450050px;}
.y150{bottom:607.795650px;}
.y85{bottom:607.807050px;}
.y353{bottom:607.832400px;}
.y25b{bottom:608.090100px;}
.ye{bottom:608.632200px;}
.y2e2{bottom:610.638750px;}
.y1a4{bottom:613.011150px;}
.y281{bottom:615.740100px;}
.y221{bottom:617.126550px;}
.y2a5{bottom:618.894750px;}
.y319{bottom:619.187850px;}
.y17a{bottom:621.273150px;}
.y47{bottom:622.444050px;}
.y14f{bottom:622.789650px;}
.y84{bottom:622.801050px;}
.y25a{bottom:623.084100px;}
.yd{bottom:623.628450px;}
.y352{bottom:624.842400px;}
.y2e1{bottom:625.638750px;}
.y1db{bottom:627.531150px;}
.y1a3{bottom:628.005150px;}
.yee{bottom:628.766850px;}
.y280{bottom:631.486350px;}
.y2a4{bottom:633.894750px;}
.y220{bottom:633.947550px;}
.y318{bottom:636.197850px;}
.y179{bottom:636.267150px;}
.y46{bottom:637.438050px;}
.y14e{bottom:637.783650px;}
.y83{bottom:637.795050px;}
.y259{bottom:638.078100px;}
.yc{bottom:638.624700px;}
.y1da{bottom:639.532650px;}
.y2e0{bottom:640.638750px;}
.y351{bottom:641.852400px;}
.y1a2{bottom:642.999150px;}
.yed{bottom:643.760850px;}
.y27f{bottom:647.232600px;}
.y21f{bottom:650.092200px;}
.y2a3{bottom:651.018750px;}
.y178{bottom:651.261150px;}
.y45{bottom:652.432050px;}
.y14d{bottom:652.777650px;}
.y82{bottom:652.789050px;}
.y258{bottom:653.072100px;}
.y317{bottom:653.207850px;}
.y21e{bottom:656.098200px;}
.y2df{bottom:657.762750px;}
.y1a1{bottom:657.993150px;}
.yec{bottom:658.754850px;}
.y350{bottom:658.862400px;}
.y27e{bottom:662.978850px;}
.y2a2{bottom:666.018750px;}
.y177{bottom:666.255150px;}
.y44{bottom:667.426050px;}
.y14c{bottom:667.771650px;}
.y81{bottom:667.783050px;}
.y257{bottom:668.066100px;}
.y316{bottom:670.217850px;}
.y2de{bottom:672.762750px;}
.yeb{bottom:673.760850px;}
.y1d9{bottom:675.411150px;}
.y34f{bottom:675.872400px;}
.y27d{bottom:678.725100px;}
.y2a1{bottom:681.018750px;}
.y176{bottom:681.249150px;}
.y1d8{bottom:681.417150px;}
.y1a0{bottom:681.491400px;}
.y21d{bottom:681.938700px;}
.y43{bottom:682.420050px;}
.y14b{bottom:682.765650px;}
.y80{bottom:682.777050px;}
.y256{bottom:683.060100px;}
.y315{bottom:687.227850px;}
.y2dd{bottom:687.762750px;}
.yea{bottom:688.760400px;}
.y11a{bottom:689.472150px;}
.y34e{bottom:692.882400px;}
.y27c{bottom:694.471350px;}
.y2a0{bottom:696.018750px;}
.y175{bottom:696.243150px;}
.y19f{bottom:696.485400px;}
.y42{bottom:697.414050px;}
.ybc{bottom:697.500900px;}
.y14a{bottom:697.759650px;}
.y7f{bottom:697.771050px;}
.yb{bottom:698.633700px;}
.y2dc{bottom:702.762750px;}
.y314{bottom:704.237850px;}
.y119{bottom:704.466150px;}
.y255{bottom:706.558350px;}
.y1d7{bottom:707.394150px;}
.y21c{bottom:709.500900px;}
.y34d{bottom:709.892400px;}
.y27b{bottom:710.217600px;}
.y174{bottom:711.237150px;}
.y19e{bottom:711.479400px;}
.ye9{bottom:712.258650px;}
.y41{bottom:712.408050px;}
.ybb{bottom:712.494900px;}
.y149{bottom:712.753650px;}
.y7e{bottom:712.765050px;}
.y29f{bottom:713.142750px;}
.y1d6{bottom:713.400150px;}
.ya{bottom:713.638200px;}
.y2db{bottom:717.762750px;}
.y313{bottom:721.247850px;}
.y254{bottom:721.552350px;}
.y27a{bottom:725.963850px;}
.y173{bottom:726.231150px;}
.y19d{bottom:726.473400px;}
.y34c{bottom:726.902400px;}
.ye8{bottom:727.264800px;}
.y40{bottom:727.402050px;}
.yba{bottom:727.500900px;}
.y21b{bottom:727.503900px;}
.y148{bottom:727.747650px;}
.y7d{bottom:727.759050px;}
.y29e{bottom:728.142750px;}
.y9{bottom:728.642700px;}
.y2da{bottom:732.762750px;}
.y253{bottom:736.546350px;}
.y312{bottom:738.257850px;}
.y172{bottom:741.225150px;}
.y19c{bottom:741.467400px;}
.y279{bottom:741.710100px;}
.ye7{bottom:742.270800px;}
.y3f{bottom:742.396050px;}
.yb9{bottom:742.494900px;}
.y147{bottom:742.741650px;}
.y7c{bottom:742.753050px;}
.y29d{bottom:743.142750px;}
.y34b{bottom:743.912400px;}
.y1c7{bottom:749.255400px;}
.y2d9{bottom:749.886750px;}
.y252{bottom:751.540350px;}
.y311{bottom:755.267850px;}
.y19b{bottom:756.461400px;}
.ye6{bottom:757.264800px;}
.y3e{bottom:757.390050px;}
.y278{bottom:757.456350px;}
.yb8{bottom:757.606800px;}
.y29c{bottom:758.142750px;}
.y34a{bottom:760.922400px;}
.y171{bottom:764.723400px;}
.y2d8{bottom:764.886750px;}
.y205{bottom:765.894150px;}
.y146{bottom:766.239900px;}
.y7b{bottom:766.251300px;}
.y251{bottom:766.534350px;}
.y19a{bottom:771.455400px;}
.ye5{bottom:772.258800px;}
.y310{bottom:772.277850px;}
.y20{bottom:773.190000px;}
.y277{bottom:773.202600px;}
.y29b{bottom:775.266750px;}
.y349{bottom:777.932400px;}
.y21a{bottom:779.001150px;}
.y170{bottom:779.717400px;}
.y2d7{bottom:779.886750px;}
.y204{bottom:780.888150px;}
.y3d{bottom:780.888300px;}
.yb7{bottom:781.105050px;}
.y145{bottom:781.233900px;}
.y7a{bottom:781.245300px;}
.y250{bottom:781.528350px;}
.y199{bottom:786.449400px;}
.ye4{bottom:787.276350px;}
.y276{bottom:788.948850px;}
.y30f{bottom:789.287850px;}
.y29a{bottom:790.266750px;}
.y219{bottom:793.995150px;}
.y16f{bottom:794.711400px;}
.y2d6{bottom:794.886750px;}
.y348{bottom:794.942400px;}
.y203{bottom:795.882150px;}
.y3c{bottom:795.882300px;}
.yb6{bottom:796.099050px;}
.y144{bottom:796.227900px;}
.y79{bottom:796.239300px;}
.y24f{bottom:796.522350px;}
.ye3{bottom:802.270350px;}
.y275{bottom:804.695100px;}
.y299{bottom:805.266750px;}
.y30e{bottom:806.297850px;}
.y1d5{bottom:806.315850px;}
.y218{bottom:808.989150px;}
.y16e{bottom:809.705400px;}
.y198{bottom:809.947650px;}
.y202{bottom:810.876150px;}
.y3b{bottom:810.876300px;}
.yb5{bottom:811.093050px;}
.y143{bottom:811.221900px;}
.y78{bottom:811.233300px;}
.y347{bottom:811.952400px;}
.y2d5{bottom:812.010750px;}
.y24e{bottom:820.020600px;}
.y298{bottom:820.266750px;}
.y274{bottom:820.441350px;}
.y118{bottom:821.997900px;}
.y30d{bottom:823.307850px;}
.y217{bottom:823.983150px;}
.y16d{bottom:824.699400px;}
.y197{bottom:824.941650px;}
.ye2{bottom:825.768600px;}
.y201{bottom:825.870150px;}
.y3a{bottom:825.870300px;}
.yb4{bottom:826.087050px;}
.y142{bottom:826.215900px;}
.y77{bottom:826.227300px;}
.y2d4{bottom:827.010750px;}
.y346{bottom:828.962400px;}
.y8{bottom:830.083200px;}
.y24d{bottom:835.014600px;}
.y273{bottom:836.187600px;}
.y117{bottom:836.991900px;}
.y297{bottom:837.390750px;}
.y216{bottom:838.977150px;}
.y30c{bottom:840.317850px;}
.ye1{bottom:840.774600px;}
.y200{bottom:840.864150px;}
.y39{bottom:840.864300px;}
.yb3{bottom:841.081050px;}
.y141{bottom:841.209900px;}
.y76{bottom:841.221300px;}
.y2d3{bottom:842.010750px;}
.y345{bottom:845.972400px;}
.y7{bottom:846.578700px;}
.y24c{bottom:850.008600px;}
.y272{bottom:851.933850px;}
.y296{bottom:852.390750px;}
.y215{bottom:853.971150px;}
.ye0{bottom:855.768600px;}
.y1ff{bottom:855.858150px;}
.y38{bottom:855.858300px;}
.yb2{bottom:856.075050px;}
.y140{bottom:856.203900px;}
.y75{bottom:856.215300px;}
.y2d2{bottom:857.010750px;}
.y30b{bottom:857.327850px;}
.y1d3{bottom:857.332200px;}
.y1d4{bottom:860.829753px;}
.y344{bottom:862.982400px;}
.y6{bottom:863.074200px;}
.y24b{bottom:865.002600px;}
.y295{bottom:867.390750px;}
.y214{bottom:868.965150px;}
.ydf{bottom:870.762600px;}
.y1fe{bottom:870.852150px;}
.y37{bottom:870.852300px;}
.yb1{bottom:871.069050px;}
.y13f{bottom:871.197900px;}
.y74{bottom:871.209300px;}
.y2d1{bottom:874.134750px;}
.y30a{bottom:874.337850px;}
.y271{bottom:876.184350px;}
.y5{bottom:879.569700px;}
.y343{bottom:879.992400px;}
.y24a{bottom:879.996600px;}
.y1d1{bottom:882.844050px;}
.y213{bottom:883.959150px;}
.y294{bottom:884.514750px;}
.yde{bottom:885.774600px;}
.y1fd{bottom:885.846150px;}
.y36{bottom:885.846300px;}
.yb0{bottom:886.063050px;}
.y13e{bottom:886.191900px;}
.y73{bottom:886.203300px;}
.y1d2{bottom:886.341453px;}
.y2d0{bottom:889.134750px;}
.y309{bottom:891.347850px;}
.y270{bottom:891.930600px;}
.y249{bottom:894.990600px;}
.y342{bottom:897.002400px;}
.y212{bottom:898.953150px;}
.y293{bottom:899.514750px;}
.ydd{bottom:900.768600px;}
.y1fc{bottom:900.840150px;}
.y35{bottom:900.840300px;}
.yaf{bottom:901.057050px;}
.y13d{bottom:901.185900px;}
.y72{bottom:901.197300px;}
.y2cf{bottom:904.134750px;}
.y4{bottom:906.060450px;}
.y26f{bottom:907.676850px;}
.y1cf{bottom:908.355900px;}
.y308{bottom:908.357850px;}
.y248{bottom:909.984600px;}
.y1d0{bottom:911.853303px;}
.y211{bottom:913.947150px;}
.y341{bottom:914.012400px;}
.y292{bottom:914.514750px;}
.ydc{bottom:915.768600px;}
.y1fb{bottom:915.834150px;}
.y34{bottom:915.834300px;}
.yae{bottom:916.051050px;}
.y13c{bottom:916.179900px;}
.y71{bottom:916.191300px;}
.y2ce{bottom:921.258750px;}
.y26e{bottom:923.423100px;}
.y247{bottom:924.978600px;}
.y307{bottom:925.367850px;}
.y210{bottom:928.941150px;}
.y1fa{bottom:930.828150px;}
.y33{bottom:930.828300px;}
.ydb{bottom:930.848550px;}
.y340{bottom:931.022400px;}
.y70{bottom:931.185300px;}
.y291{bottom:931.638750px;}
.y1cd{bottom:933.867600px;}
.y2cd{bottom:936.258750px;}
.y1ce{bottom:937.365153px;}
.y26d{bottom:939.169350px;}
.yad{bottom:939.549300px;}
.y13b{bottom:939.678150px;}
.y246{bottom:939.972600px;}
.y306{bottom:942.377850px;}
.y1f9{bottom:945.822150px;}
.y32{bottom:945.822300px;}
.y6f{bottom:946.179300px;}
.y290{bottom:946.638750px;}
.y3{bottom:947.801250px;}
.y33f{bottom:948.032400px;}
.y2cc{bottom:951.258750px;}
.y20f{bottom:952.439400px;}
.yda{bottom:954.346800px;}
.y116{bottom:954.508650px;}
.yac{bottom:954.543300px;}
.y13a{bottom:954.672150px;}
.y26c{bottom:954.915600px;}
.y245{bottom:954.966600px;}
.y1cb{bottom:959.382600px;}
.y305{bottom:959.387850px;}
.y1f8{bottom:960.816150px;}
.y31{bottom:960.816300px;}
.y6e{bottom:961.173300px;}
.y28f{bottom:961.638750px;}
.y1cc{bottom:962.876853px;}
.y33e{bottom:965.042400px;}
.y2cb{bottom:966.258750px;}
.yd9{bottom:969.340800px;}
.y115{bottom:969.519150px;}
.yab{bottom:969.537300px;}
.y244{bottom:969.960600px;}
.y2{bottom:970.301250px;}
.y26b{bottom:970.661850px;}
.y1f7{bottom:975.810150px;}
.y30{bottom:975.810300px;}
.y20e{bottom:975.937650px;}
.y6d{bottom:976.167300px;}
.y304{bottom:976.397850px;}
.y28e{bottom:976.638750px;}
.y139{bottom:978.170400px;}
.y33d{bottom:982.052400px;}
.y2ca{bottom:983.382750px;}
.yd8{bottom:984.334800px;}
.yaa{bottom:984.531300px;}
.y1c9{bottom:984.891300px;}
.y243{bottom:984.954600px;}
.y26a{bottom:986.408100px;}
.y1ca{bottom:988.388703px;}
.y2f{bottom:990.804300px;}
.y20d{bottom:990.931650px;}
.y6c{bottom:991.161300px;}
.y28d{bottom:991.638750px;}
.y114{bottom:993.017400px;}
.y303{bottom:995.604450px;}
.y2c9{bottom:998.382750px;}
.y33c{bottom:999.062400px;}
.y1f6{bottom:999.308400px;}
.yd7{bottom:999.328800px;}
.ya9{bottom:999.525300px;}
.y242{bottom:999.948600px;}
.y269{bottom:1002.154350px;}
.y2e{bottom:1005.798300px;}
.y20c{bottom:1005.925650px;}
.y6b{bottom:1006.155300px;}
.y113{bottom:1008.011400px;}
.y300{bottom:1009.411950px;}
.y1c8{bottom:1010.406300px;}
.y24{bottom:1012.737000px;}
.y2c8{bottom:1013.382750px;}
.y1f5{bottom:1014.302400px;}
.yd6{bottom:1014.322800px;}
.y302{bottom:1014.336450px;}
.y138{bottom:1014.431400px;}
.ya8{bottom:1014.519300px;}
.y241{bottom:1014.942600px;}
.y28c{bottom:1015.159350px;}
.y2ff{bottom:1015.186950px;}
.y33b{bottom:1016.072400px;}
.y268{bottom:1017.900600px;}
.y2d{bottom:1020.792300px;}
.y20b{bottom:1020.919650px;}
.y6a{bottom:1021.149300px;}
.y301{bottom:1025.886450px;}
.y2c7{bottom:1028.382750px;}
.y1f4{bottom:1029.296400px;}
.yd5{bottom:1029.316800px;}
.y137{bottom:1029.425400px;}
.ya7{bottom:1029.513300px;}
.y240{bottom:1029.936600px;}
.y33a{bottom:1033.082400px;}
.y267{bottom:1033.646850px;}
.y2c{bottom:1035.786300px;}
.y20a{bottom:1035.913650px;}
.y1c6{bottom:1041.574650px;}
.y2c6{bottom:1043.382750px;}
.y112{bottom:1044.272400px;}
.y1f3{bottom:1044.290400px;}
.yd4{bottom:1044.310800px;}
.y136{bottom:1044.419400px;}
.y69{bottom:1044.647550px;}
.y23f{bottom:1044.930600px;}
.y266{bottom:1049.393100px;}
.y339{bottom:1050.092400px;}
.y2b{bottom:1050.780300px;}
.y209{bottom:1050.907650px;}
.y28b{bottom:1051.420350px;}
.ya6{bottom:1053.011550px;}
.y2c5{bottom:1058.382750px;}
.y111{bottom:1059.272400px;}
.y1f2{bottom:1059.284400px;}
.yd3{bottom:1059.304800px;}
.y135{bottom:1059.413400px;}
.y68{bottom:1059.641550px;}
.y23e{bottom:1059.924600px;}
.y265{bottom:1065.139350px;}
.y335{bottom:1065.774150px;}
.y2a{bottom:1065.774300px;}
.y208{bottom:1065.901650px;}
.y28a{bottom:1066.414350px;}
.y338{bottom:1067.102400px;}
.y110{bottom:1074.272400px;}
.y1c2{bottom:1074.278400px;}
.y1c5{bottom:1074.291150px;}
.yd2{bottom:1074.298800px;}
.y134{bottom:1074.407400px;}
.y67{bottom:1074.635550px;}
.y23d{bottom:1074.918600px;}
.y2c4{bottom:1075.506750px;}
.y334{bottom:1080.768150px;}
.y29{bottom:1080.768300px;}
.y264{bottom:1080.885600px;}
.y289{bottom:1081.408350px;}
.y337{bottom:1084.112400px;}
.y23{bottom:1088.397000px;}
.y10f{bottom:1089.272400px;}
.ya5{bottom:1089.272550px;}
.y1c4{bottom:1089.285150px;}
.yd1{bottom:1089.292800px;}
.y207{bottom:1089.399900px;}
.y133{bottom:1089.401400px;}
.y66{bottom:1089.629550px;}
.y23c{bottom:1089.912600px;}
.y2c3{bottom:1090.506750px;}
.y336{bottom:1101.122400px;}
.y10e{bottom:1104.266400px;}
.y28{bottom:1104.266550px;}
.y1c3{bottom:1104.279150px;}
.yd0{bottom:1104.286800px;}
.y206{bottom:1104.393900px;}
.y132{bottom:1104.395400px;}
.y65{bottom:1104.623550px;}
.y1c1{bottom:1104.753150px;}
.y23b{bottom:1104.906600px;}
.y263{bottom:1105.136100px;}
.y2c2{bottom:1105.506750px;}
.y22{bottom:1107.891750px;}
.y21{bottom:1127.386500px;}
.y16c{bottom:1171.363200px;}
.ya3{bottom:1171.363350px;}
.y10c{bottom:1171.469550px;}
.y26{bottom:1171.469850px;}
.he{height:20.038348px;}
.hd{height:20.394082px;}
.h10{height:28.042896px;}
.hf{height:28.043496px;}
.hc{height:34.371094px;}
.h8{height:36.017578px;}
.h14{height:39.281250px;}
.h6{height:41.736328px;}
.h4{height:42.020508px;}
.h18{height:42.033708px;}
.h17{height:42.356508px;}
.h19{height:42.398508px;}
.h5{height:45.021973px;}
.h2{height:48.023438px;}
.h9{height:51.024902px;}
.ha{height:53.656200px;}
.hb{height:53.929200px;}
.h15{height:65.120508px;}
.h11{height:66.002508px;}
.h13{height:66.024708px;}
.h3{height:72.035156px;}
.h7{height:78.038086px;}
.h16{height:88.220508px;}
.h12{height:90.026508px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.302600px;}
.x3a{left:110.551200px;}
.x25{left:114.865950px;}
.x37{left:117.999750px;}
.xe{left:119.055150px;}
.x2{left:120.974850px;}
.x5{left:123.680100px;}
.x12{left:127.549500px;}
.x24{left:129.864450px;}
.x22{left:131.007750px;}
.x36{left:134.547750px;}
.x23{left:138.813171px;}
.x13{left:140.299500px;}
.x41{left:153.515700px;}
.x35{left:157.989450px;}
.x7{left:163.044600px;}
.x3{left:170.762850px;}
.x34{left:174.799950px;}
.x29{left:178.065450px;}
.x17{left:192.656700px;}
.x18{left:201.379371px;}
.xd{left:204.742950px;}
.x26{left:229.641450px;}
.x11{left:237.216900px;}
.x19{left:262.120221px;}
.x42{left:277.318200px;}
.x4{left:289.312500px;}
.x16{left:297.761700px;}
.x2f{left:319.132950px;}
.x2c{left:320.781450px;}
.x2d{left:322.461450px;}
.x1a{left:324.804321px;}
.x2e{left:329.559450px;}
.xc{left:338.571450px;}
.x6{left:369.138600px;}
.x32{left:372.777450px;}
.x8{left:384.899100px;}
.x1b{left:387.483321px;}
.x27{left:400.318950px;}
.x40{left:424.810200px;}
.x3b{left:434.623200px;}
.x38{left:436.863750px;}
.x1c{left:448.111521px;}
.x30{left:455.380950px;}
.xf{left:461.328900px;}
.x10{left:474.078900px;}
.x39{left:477.903000px;}
.x15{left:482.597400px;}
.xa{left:491.290950px;}
.x14{left:495.336000px;}
.x3f{left:501.844200px;}
.x1d{left:509.647071px;}
.x3c{left:523.054200px;}
.xb{left:538.784700px;}
.x1e{left:570.388071px;}
.x1f{left:633.072021px;}
.x2b{left:658.786950px;}
.x2a{left:667.312950px;}
.x33{left:669.223950px;}
.x31{left:693.415950px;}
.x20{left:695.751021px;}
.x28{left:700.524450px;}
.x3e{left:706.720200px;}
.x3d{left:710.332200px;}
.x21{left:756.379221px;}
.x43{left:769.150800px;}
.x1{left:777.682050px;}
@media print{
.v2{vertical-align:-24.843573pt;}
.v3{vertical-align:-17.760000pt;}
.v7{vertical-align:-14.208000pt;}
.vf{vertical-align:-12.420800pt;}
.ve{vertical-align:-10.666667pt;}
.v6{vertical-align:-7.093333pt;}
.v9{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.766240pt;}
.v4{vertical-align:3.552000pt;}
.vc{vertical-align:5.317333pt;}
.v8{vertical-align:7.083573pt;}
.v12{vertical-align:8.905067pt;}
.va{vertical-align:10.666667pt;}
.v5{vertical-align:15.984000pt;}
.v1{vertical-align:17.760000pt;}
.v10{vertical-align:21.317333pt;}
.vd{vertical-align:24.843573pt;}
.v13{vertical-align:41.066667pt;}
.v11{vertical-align:42.672000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000107pt;}
.ls7{letter-spacing:0.000320pt;}
.ls12{letter-spacing:0.001067pt;}
.ls15{letter-spacing:0.001600pt;}
.ls18{letter-spacing:0.002133pt;}
.ls28{letter-spacing:0.002667pt;}
.ls5{letter-spacing:0.005333pt;}
.ls2a{letter-spacing:0.008000pt;}
.ls1d{letter-spacing:0.013333pt;}
.ls17{letter-spacing:0.013867pt;}
.ls9{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.016533pt;}
.ls4{letter-spacing:0.017067pt;}
.ls2c{letter-spacing:0.018667pt;}
.ls26{letter-spacing:0.041067pt;}
.ls1{letter-spacing:0.400000pt;}
.lsb{letter-spacing:0.453333pt;}
.lsc{letter-spacing:0.533333pt;}
.ls10{letter-spacing:1.360000pt;}
.lsa{letter-spacing:1.538667pt;}
.ls11{letter-spacing:1.760000pt;}
.lse{letter-spacing:2.883200pt;}
.ls8{letter-spacing:2.989333pt;}
.ls0{letter-spacing:3.200000pt;}
.ls6{letter-spacing:3.249067pt;}
.lsf{letter-spacing:5.440000pt;}
.ls31{letter-spacing:75.524875pt;}
.ls2e{letter-spacing:91.119541pt;}
.ls2b{letter-spacing:93.791541pt;}
.ls2d{letter-spacing:93.924875pt;}
.ls30{letter-spacing:97.863541pt;}
.ls2f{letter-spacing:106.713675pt;}
.ls29{letter-spacing:118.530208pt;}
.ls27{letter-spacing:119.113675pt;}
.ls25{letter-spacing:150.005333pt;}
.ls23{letter-spacing:161.840000pt;}
.ls16{letter-spacing:171.215525pt;}
.ls1c{letter-spacing:171.216059pt;}
.ls32{letter-spacing:171.919541pt;}
.ls24{letter-spacing:173.712000pt;}
.ls19{letter-spacing:175.280592pt;}
.ls1b{letter-spacing:178.525392pt;}
.ls14{letter-spacing:178.525925pt;}
.ls13{letter-spacing:178.944592pt;}
.ls1a{letter-spacing:178.945125pt;}
.ls1e{letter-spacing:185.586725pt;}
.ls1f{letter-spacing:408.043792pt;}
.ls20{letter-spacing:623.592592pt;}
.ls21{letter-spacing:839.158992pt;}
.ls22{letter-spacing:1062.017659pt;}
.wsa{word-spacing:-53.333333pt;}
.ws2{word-spacing:-15.957333pt;}
.ws1e{word-spacing:-15.018667pt;}
.ws3{word-spacing:-14.666667pt;}
.ws0{word-spacing:-13.680000pt;}
.ws5{word-spacing:-13.333333pt;}
.wsb{word-spacing:-13.141333pt;}
.ws1c{word-spacing:-12.768000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws6{word-spacing:-10.666667pt;}
.ws4{word-spacing:-7.773333pt;}
.ws1b{word-spacing:-7.443744pt;}
.ws8{word-spacing:-6.996000pt;}
.ws7{word-spacing:-6.218667pt;}
.ws1{word-spacing:0.000000pt;}
.ws1f{word-spacing:32.965333pt;}
.ws20{word-spacing:34.496000pt;}
.ws22{word-spacing:42.746667pt;}
.ws23{word-spacing:42.933333pt;}
.ws1d{word-spacing:55.104000pt;}
.ws12{word-spacing:56.597333pt;}
.ws11{word-spacing:57.344000pt;}
.ws15{word-spacing:89.226667pt;}
.ws10{word-spacing:94.677333pt;}
.ws1a{word-spacing:94.752000pt;}
.wsd{word-spacing:104.309333pt;}
.ws21{word-spacing:108.229333pt;}
.wsc{word-spacing:112.784000pt;}
.ws18{word-spacing:113.120000pt;}
.ws16{word-spacing:124.954667pt;}
.ws17{word-spacing:136.826667pt;}
.ws14{word-spacing:136.864000pt;}
.wse{word-spacing:143.322667pt;}
.ws19{word-spacing:163.146667pt;}
.ws13{word-spacing:564.069333pt;}
.ws26{word-spacing:713.552000pt;}
.ws24{word-spacing:830.181333pt;}
.ws25{word-spacing:878.901333pt;}
.wsf{word-spacing:1059.184000pt;}
._12{margin-left:-16.521280pt;}
._10{margin-left:-7.186667pt;}
._3{margin-left:-5.952000pt;}
._5{margin-left:-4.704000pt;}
._0{margin-left:-3.520000pt;}
._1{margin-left:-2.304000pt;}
._2{margin-left:-1.280000pt;}
._4{width:1.456000pt;}
._8{width:3.000000pt;}
._6{width:4.760000pt;}
._7{width:6.320000pt;}
._9{width:7.960000pt;}
._a{width:8.880000pt;}
._b{width:9.928000pt;}
._e{width:11.197333pt;}
._f{width:12.920000pt;}
._11{width:14.144000pt;}
._d{width:15.048000pt;}
._c{width:17.272000pt;}
._63{width:19.029333pt;}
._6d{width:45.733333pt;}
._ba{width:46.629333pt;}
._6a{width:47.562667pt;}
._64{width:51.184000pt;}
._a5{width:55.253333pt;}
._69{width:56.224000pt;}
._104{width:58.874667pt;}
._3c{width:64.362667pt;}
._3b{width:68.245333pt;}
._78{width:80.565333pt;}
._1b{width:82.357333pt;}
._82{width:90.160000pt;}
._27{width:91.989333pt;}
._7c{width:93.072000pt;}
._1c{width:94.229333pt;}
._f1{width:95.834667pt;}
._bc{width:97.626667pt;}
._6c{width:104.234667pt;}
._20{width:115.733333pt;}
._4f{width:116.741333pt;}
._eb{width:119.578667pt;}
._76{width:121.370667pt;}
._17{width:125.925333pt;}
._de{width:127.018667pt;}
._15{width:134.400000pt;}
._5b{width:136.938667pt;}
._ef{width:138.170667pt;}
._59{width:141.232000pt;}
._67{width:145.114667pt;}
._53{width:148.549333pt;}
._6e{width:149.557333pt;}
._5a{width:151.648000pt;}
._2d{width:154.597333pt;}
._16{width:156.426667pt;}
._5c{width:157.882667pt;}
._14{width:164.938667pt;}
._1f{width:166.469333pt;}
._4a{width:170.688000pt;}
._3f{width:177.856000pt;}
._60{width:181.701333pt;}
._1d{width:182.714667pt;}
._3e{width:184.576000pt;}
._3a{width:189.728000pt;}
._52{width:191.856000pt;}
._df{width:195.365333pt;}
._39{width:196.410667pt;}
._66{width:207.050667pt;}
._56{width:209.216000pt;}
._44{width:210.112000pt;}
._45{width:220.453333pt;}
._47{width:222.656000pt;}
._3d{width:226.346667pt;}
._55{width:227.994667pt;}
._57{width:230.794667pt;}
._fe{width:232.261333pt;}
._42{width:234.490667pt;}
._51{width:237.514667pt;}
._35{width:242.144000pt;}
._33{width:245.093333pt;}
._62{width:245.989333pt;}
._48{width:259.498667pt;}
._28{width:265.066667pt;}
._38{width:268.496000pt;}
._37{width:325.472000pt;}
._36{width:327.301333pt;}
._34{width:333.984000pt;}
._40{width:350.704000pt;}
._41{width:356.341333pt;}
._21{width:363.066667pt;}
._4c{width:372.176000pt;}
._8e{width:378.896000pt;}
._f9{width:381.189333pt;}
._18{width:384.122667pt;}
._92{width:394.592000pt;}
._50{width:399.578667pt;}
._61{width:409.696000pt;}
._58{width:415.893333pt;}
._8b{width:419.365333pt;}
._5d{width:421.530667pt;}
._4b{width:422.725333pt;}
._4e{width:425.114667pt;}
._d7{width:427.578667pt;}
._7f{width:431.658667pt;}
._32{width:432.954667pt;}
._2b{width:445.114667pt;}
._4d{width:447.664000pt;}
._49{width:454.602667pt;}
._31{width:457.744000pt;}
._65{width:464.874667pt;}
._8c{width:466.730667pt;}
._30{width:470.698667pt;}
._8f{width:471.930667pt;}
._9c{width:473.909333pt;}
._46{width:475.210667pt;}
._70{width:484.698667pt;}
._80{width:491.120000pt;}
._43{width:493.914667pt;}
._ab{width:497.402667pt;}
._b5{width:501.040000pt;}
._bb{width:504.176000pt;}
._d0{width:505.120000pt;}
._7b{width:508.741333pt;}
._79{width:510.133333pt;}
._af{width:511.253333pt;}
._100{width:516.458667pt;}
._c4{width:517.989333pt;}
._b2{width:519.669333pt;}
._d8{width:529.253333pt;}
._29{width:530.506667pt;}
._2e{width:533.045333pt;}
._b6{width:536.682667pt;}
._c9{width:538.096000pt;}
._2c{width:540.512000pt;}
._f6{width:541.568000pt;}
._98{width:543.929067pt;}
._2f{width:544.917333pt;}
._c1{width:546.160000pt;}
._54{width:547.941333pt;}
._8d{width:554.138667pt;}
._d5{width:556.016000pt;}
._d6{width:557.573333pt;}
._ad{width:559.514667pt;}
._aa{width:562.901333pt;}
._a9{width:566.197333pt;}
._74{width:567.194667pt;}
._cd{width:570.640000pt;}
._c7{width:575.082667pt;}
._8a{width:576.352000pt;}
._cb{width:579.898667pt;}
._1e{width:582.736000pt;}
._81{width:584.752000pt;}
._ff{width:586.880000pt;}
._e2{width:589.605333pt;}
._86{width:594.768000pt;}
._ec{width:599.909333pt;}
._f4{width:601.514667pt;}
._19{width:603.381333pt;}
._d9{width:604.885333pt;}
._91{width:608.149333pt;}
._f8{width:610.586667pt;}
._6b{width:612.117333pt;}
._e9{width:614.170667pt;}
._23{width:618.501333pt;}
._9f{width:620.256000pt;}
._e6{width:623.082667pt;}
._102{width:624.138667pt;}
._ee{width:627.584000pt;}
._a3{width:628.917333pt;}
._5e{width:630.032000pt;}
._71{width:635.386667pt;}
._f2{width:638.474667pt;}
._22{width:641.760000pt;}
._96{width:644.373333pt;}
._c3{width:647.296000pt;}
._9d{width:649.040000pt;}
._a0{width:650.522667pt;}
._99{width:654.677333pt;}
._e7{width:656.581333pt;}
._b3{width:658.352000pt;}
._e8{width:659.568000pt;}
._26{width:660.501333pt;}
._87{width:664.384000pt;}
._25{width:668.901333pt;}
._b1{width:672.746667pt;}
._b4{width:674.154667pt;}
._ce{width:675.845333pt;}
._103{width:677.936000pt;}
._a2{width:682.042667pt;}
._fc{width:683.872000pt;}
._da{width:688.688000pt;}
._90{width:689.658667pt;}
._2a{width:692.346667pt;}
._9e{width:695.520000pt;}
._bf{width:696.517333pt;}
._97{width:698.245333pt;}
._f3{width:699.402667pt;}
._ae{width:700.320000pt;}
._83{width:701.653333pt;}
._c0{width:708.885333pt;}
._b7{width:711.600000pt;}
._a1{width:718.181333pt;}
._e1{width:720.208000pt;}
._89{width:721.168000pt;}
._77{width:722.997333pt;}
._dd{width:726.181333pt;}
._ed{width:730.005333pt;}
._d1{width:732.704000pt;}
._9a{width:735.504000pt;}
._a6{width:737.370667pt;}
._9b{width:740.842667pt;}
._e0{width:743.818667pt;}
._88{width:744.837333pt;}
._5f{width:746.144000pt;}
._c5{width:748.458667pt;}
._24{width:751.370667pt;}
._84{width:752.528000pt;}
._fd{width:754.693333pt;}
._b9{width:755.952000pt;}
._e3{width:758.864000pt;}
._85{width:760.032000pt;}
._c2{width:762.693333pt;}
._101{width:764.149333pt;}
._68{width:767.498667pt;}
._72{width:770.112000pt;}
._ca{width:778.288000pt;}
._dc{width:779.557333pt;}
._d4{width:782.293333pt;}
._7a{width:784.160000pt;}
._93{width:785.445333pt;}
._a7{width:786.501333pt;}
._6f{width:789.712000pt;}
._d3{width:791.466667pt;}
._a8{width:793.818667pt;}
._b0{width:795.685333pt;}
._ac{width:800.266667pt;}
._a4{width:807.381333pt;}
._94{width:809.088000pt;}
._7e{width:810.021333pt;}
._1a{width:814.090667pt;}
._bd{width:817.152000pt;}
._e5{width:819.765333pt;}
._c6{width:820.661333pt;}
._73{width:823.088000pt;}
._db{width:826.709333pt;}
._fb{width:828.650667pt;}
._13{width:830.965333pt;}
._be{width:831.861333pt;}
._d2{width:837.573333pt;}
._75{width:845.114667pt;}
._cf{width:846.234667pt;}
._f5{width:849.706667pt;}
._e4{width:859.610667pt;}
._c8{width:860.981333pt;}
._f0{width:872.816000pt;}
._b8{width:874.037333pt;}
._95{width:879.946667pt;}
._cc{width:884.912000pt;}
._ea{width:886.517333pt;}
._7d{width:888.272000pt;}
._f7{width:899.360000pt;}
._fa{width:909.674667pt;}
.fsd{font-size:21.765333pt;}
.fsa{font-size:24.874667pt;}
.fsb{font-size:27.984000pt;}
.fs8{font-size:31.093333pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs3{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fsc{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:88.125067pt;}
.ya4{bottom:88.125200pt;}
.y10d{bottom:88.365467pt;}
.y27{bottom:88.365733pt;}
.y16b{bottom:89.219200pt;}
.ya2{bottom:89.219333pt;}
.y10b{bottom:89.476933pt;}
.y25{bottom:89.477067pt;}
.y64{bottom:151.652933pt;}
.ya1{bottom:151.970267pt;}
.y23a{bottom:156.052933pt;}
.y1c0{bottom:156.596133pt;}
.ycf{bottom:157.076933pt;}
.y333{bottom:157.343867pt;}
.y2fe{bottom:158.128667pt;}
.y1f1{bottom:160.961467pt;}
.y36c{bottom:162.378533pt;}
.y10a{bottom:162.888000pt;}
.y16a{bottom:163.497467pt;}
.y2c1{bottom:163.579333pt;}
.y196{bottom:163.940133pt;}
.y63{bottom:164.980933pt;}
.ya0{bottom:165.298267pt;}
.y131{bottom:167.600133pt;}
.y1bf{bottom:169.924133pt;}
.yce{bottom:170.404933pt;}
.y239{bottom:171.172933pt;}
.y2fd{bottom:171.462000pt;}
.y332{bottom:172.463867pt;}
.y109{bottom:176.226667pt;}
.y169{bottom:176.825467pt;}
.y2c0{bottom:176.912667pt;}
.y195{bottom:177.268133pt;}
.y36b{bottom:177.498533pt;}
.y62{bottom:178.308933pt;}
.y9f{bottom:178.626267pt;}
.y130{bottom:180.928133pt;}
.y1be{bottom:183.252133pt;}
.ycd{bottom:183.732933pt;}
.y2fc{bottom:184.795333pt;}
.y238{bottom:186.292933pt;}
.y1f0{bottom:187.253467pt;}
.y331{bottom:187.583867pt;}
.y108{bottom:189.554667pt;}
.y168{bottom:190.153467pt;}
.y2bf{bottom:190.246000pt;}
.y194{bottom:190.596133pt;}
.y61{bottom:191.636933pt;}
.y9e{bottom:191.954267pt;}
.y36a{bottom:192.618533pt;}
.y12f{bottom:194.256133pt;}
.y1bd{bottom:196.580133pt;}
.y2fb{bottom:198.128667pt;}
.y1f{bottom:200.733333pt;}
.y237{bottom:201.244933pt;}
.y330{bottom:202.703867pt;}
.y107{bottom:202.888000pt;}
.y167{bottom:203.481467pt;}
.y2be{bottom:203.579333pt;}
.y193{bottom:203.924133pt;}
.ycc{bottom:204.620267pt;}
.y60{bottom:204.964933pt;}
.y9d{bottom:205.282267pt;}
.y12e{bottom:207.584133pt;}
.y369{bottom:207.738533pt;}
.y1bc{bottom:209.908133pt;}
.y2fa{bottom:211.462000pt;}
.y1ef{bottom:213.713467pt;}
.y1e{bottom:214.070667pt;}
.y106{bottom:216.226667pt;}
.y166{bottom:216.809467pt;}
.y2bd{bottom:216.912667pt;}
.y192{bottom:217.252133pt;}
.y32f{bottom:217.823867pt;}
.ycb{bottom:217.958933pt;}
.y5f{bottom:218.292933pt;}
.y9c{bottom:218.610267pt;}
.y12d{bottom:220.912133pt;}
.y368{bottom:222.858533pt;}
.y1bb{bottom:223.236133pt;}
.y236{bottom:223.784933pt;}
.y2f9{bottom:226.683333pt;}
.y105{bottom:229.554667pt;}
.y2bc{bottom:230.246000pt;}
.y191{bottom:230.580133pt;}
.yca{bottom:231.286933pt;}
.y5e{bottom:231.620933pt;}
.y9b{bottom:231.938267pt;}
.y32e{bottom:232.943867pt;}
.y12c{bottom:234.240133pt;}
.y1ba{bottom:236.564133pt;}
.y165{bottom:237.696800pt;}
.y367{bottom:237.978533pt;}
.y2f8{bottom:240.016667pt;}
.y1ee{bottom:240.276133pt;}
.y104{bottom:242.888000pt;}
.y190{bottom:243.908133pt;}
.yc9{bottom:244.631867pt;}
.y5d{bottom:244.948933pt;}
.y9a{bottom:245.266267pt;}
.y2bb{bottom:245.467333pt;}
.y235{bottom:246.324933pt;}
.y12b{bottom:247.568133pt;}
.y32d{bottom:247.989200pt;}
.y1ed{bottom:250.944133pt;}
.y164{bottom:251.024800pt;}
.y366{bottom:253.098533pt;}
.y2f7{bottom:253.350000pt;}
.y103{bottom:256.216000pt;}
.y18f{bottom:257.236133pt;}
.y1b9{bottom:257.451467pt;}
.yc8{bottom:257.959867pt;}
.y5c{bottom:258.276933pt;}
.y99{bottom:258.594267pt;}
.y2ba{bottom:258.800667pt;}
.y234{bottom:261.276933pt;}
.y32c{bottom:263.109200pt;}
.y163{bottom:264.352800pt;}
.y2f6{bottom:266.683333pt;}
.y365{bottom:268.218533pt;}
.y12a{bottom:268.455467pt;}
.y102{bottom:269.554667pt;}
.y1d{bottom:271.026400pt;}
.y5b{bottom:271.604933pt;}
.y98{bottom:271.922267pt;}
.y2b9{bottom:272.134000pt;}
.y233{bottom:276.396933pt;}
.y1ec{bottom:277.506800pt;}
.y162{bottom:277.680800pt;}
.y18e{bottom:278.123467pt;}
.y32b{bottom:278.229200pt;}
.y1b8{bottom:278.338800pt;}
.yc7{bottom:278.847200pt;}
.y2f5{bottom:280.016667pt;}
.y129{bottom:281.783467pt;}
.y101{bottom:282.898400pt;}
.y364{bottom:283.338533pt;}
.y36d{bottom:283.339467pt;}
.y5a{bottom:284.932933pt;}
.y97{bottom:285.250267pt;}
.y2b8{bottom:285.467333pt;}
.y161{bottom:291.008800pt;}
.y18d{bottom:291.451467pt;}
.y232{bottom:291.516933pt;}
.y1b7{bottom:291.666800pt;}
.yc6{bottom:292.175200pt;}
.y32a{bottom:293.349200pt;}
.y128{bottom:295.111467pt;}
.y2f4{bottom:295.238000pt;}
.y1c{bottom:295.696400pt;}
.y100{bottom:296.226400pt;}
.y59{bottom:298.260933pt;}
.y363{bottom:298.459467pt;}
.y96{bottom:298.578267pt;}
.y2b7{bottom:298.800667pt;}
.y1eb{bottom:303.966800pt;}
.y160{bottom:304.336800pt;}
.y18c{bottom:304.779467pt;}
.y1b6{bottom:304.994800pt;}
.y231{bottom:306.636933pt;}
.y127{bottom:308.439467pt;}
.y329{bottom:308.469200pt;}
.y2f3{bottom:308.571333pt;}
.y1b{bottom:309.026400pt;}
.y58{bottom:311.588933pt;}
.y95{bottom:311.906267pt;}
.y362{bottom:313.495467pt;}
.y2b6{bottom:314.022000pt;}
.yff{bottom:317.113733pt;}
.y15f{bottom:317.664800pt;}
.y18b{bottom:318.107467pt;}
.y1b5{bottom:318.322800pt;}
.y230{bottom:321.756933pt;}
.y126{bottom:321.767467pt;}
.y2f2{bottom:321.904667pt;}
.y1a{bottom:322.356400pt;}
.y328{bottom:323.589200pt;}
.y94{bottom:325.234267pt;}
.y2b5{bottom:327.355333pt;}
.y361{bottom:328.615467pt;}
.yfe{bottom:330.441733pt;}
.y18a{bottom:331.435467pt;}
.y1b4{bottom:331.650800pt;}
.y57{bottom:332.476267pt;}
.y1ea{bottom:333.282800pt;}
.y125{bottom:335.095467pt;}
.y2f1{bottom:335.238000pt;}
.y19{bottom:335.686400pt;}
.y22f{bottom:336.876933pt;}
.y15e{bottom:338.552133pt;}
.y1e9{bottom:338.621467pt;}
.y327{bottom:338.709200pt;}
.y2b4{bottom:340.688667pt;}
.y360{bottom:343.735467pt;}
.yfd{bottom:343.780400pt;}
.y189{bottom:344.763467pt;}
.y1b3{bottom:344.978800pt;}
.y56{bottom:345.804267pt;}
.y93{bottom:346.121600pt;}
.y124{bottom:348.423467pt;}
.y2f0{bottom:348.571333pt;}
.y18{bottom:349.016400pt;}
.y15d{bottom:351.880133pt;}
.y22e{bottom:351.996933pt;}
.y326{bottom:353.829200pt;}
.y2b3{bottom:354.022000pt;}
.yfc{bottom:357.113733pt;}
.y188{bottom:358.091467pt;}
.y1b2{bottom:358.306800pt;}
.y35f{bottom:358.855467pt;}
.y55{bottom:359.132267pt;}
.y92{bottom:359.449600pt;}
.y17{bottom:362.346400pt;}
.y2ef{bottom:363.792667pt;}
.y15c{bottom:365.208133pt;}
.y22d{bottom:367.116933pt;}
.y325{bottom:368.949200pt;}
.y2b2{bottom:369.243333pt;}
.y123{bottom:369.310800pt;}
.yfb{bottom:370.452400pt;}
.y1e8{bottom:370.830800pt;}
.y187{bottom:371.419467pt;}
.y1b1{bottom:371.634800pt;}
.y54{bottom:372.460267pt;}
.y91{bottom:372.777600pt;}
.y35e{bottom:373.975467pt;}
.y16{bottom:375.676400pt;}
.y2ee{bottom:377.126000pt;}
.y15b{bottom:378.536133pt;}
.y1e7{bottom:381.498800pt;}
.y22c{bottom:382.236933pt;}
.y2b1{bottom:382.576667pt;}
.y122{bottom:382.638800pt;}
.yfa{bottom:383.780400pt;}
.y324{bottom:384.069200pt;}
.y186{bottom:384.747467pt;}
.y1b0{bottom:384.962800pt;}
.y53{bottom:385.788267pt;}
.y90{bottom:386.105600pt;}
.y35d{bottom:389.095467pt;}
.y2ed{bottom:390.459333pt;}
.y15a{bottom:391.864133pt;}
.y1e4{bottom:392.166800pt;}
.y2b0{bottom:395.910000pt;}
.y121{bottom:395.966800pt;}
.yf9{bottom:397.124133pt;}
.y22b{bottom:397.356933pt;}
.y185{bottom:398.075467pt;}
.y1af{bottom:398.290800pt;}
.y52{bottom:399.116267pt;}
.y323{bottom:399.189200pt;}
.y8f{bottom:399.433600pt;}
.y15{bottom:400.346400pt;}
.yc5{bottom:402.646533pt;}
.y1e6{bottom:402.834800pt;}
.y2ec{bottom:403.792667pt;}
.y35c{bottom:404.215467pt;}
.y120{bottom:409.294800pt;}
.yf8{bottom:410.452133pt;}
.y2af{bottom:411.131333pt;}
.y184{bottom:411.403467pt;}
.y1ae{bottom:411.618800pt;}
.y51{bottom:412.444267pt;}
.y22a{bottom:412.476933pt;}
.y159{bottom:412.751467pt;}
.y8e{bottom:412.761600pt;}
.y1e5{bottom:413.502800pt;}
.y322{bottom:414.309200pt;}
.yc4{bottom:415.974533pt;}
.y2eb{bottom:417.126000pt;}
.y35b{bottom:419.335467pt;}
.y288{bottom:421.592533pt;}
.y11f{bottom:422.622800pt;}
.y2ae{bottom:424.464667pt;}
.y183{bottom:424.731467pt;}
.y1ad{bottom:424.946800pt;}
.y50{bottom:425.772267pt;}
.y158{bottom:426.079467pt;}
.y8d{bottom:426.089600pt;}
.y229{bottom:427.596933pt;}
.yc3{bottom:429.313200pt;}
.y321{bottom:429.429200pt;}
.y2ea{bottom:430.459333pt;}
.yf7{bottom:431.339467pt;}
.y35a{bottom:434.455467pt;}
.y11e{bottom:435.950800pt;}
.y1e3{bottom:436.500133pt;}
.y2ad{bottom:437.798000pt;}
.y182{bottom:438.059467pt;}
.y1ac{bottom:438.274800pt;}
.y4f{bottom:439.100267pt;}
.y8c{bottom:439.417600pt;}
.yc2{bottom:442.646533pt;}
.y228{bottom:442.716933pt;}
.y320{bottom:444.549200pt;}
.yf6{bottom:444.672800pt;}
.y2e9{bottom:445.680667pt;}
.y157{bottom:446.966800pt;}
.y1e2{bottom:447.168133pt;}
.y262{bottom:447.228533pt;}
.y11d{bottom:449.278800pt;}
.y359{bottom:449.575467pt;}
.y14{bottom:449.686400pt;}
.y181{bottom:451.387467pt;}
.y1ab{bottom:451.602800pt;}
.y4e{bottom:452.428267pt;}
.y8b{bottom:452.745600pt;}
.y2ac{bottom:453.019333pt;}
.yc1{bottom:455.974533pt;}
.y1df{bottom:457.836133pt;}
.y227{bottom:457.836933pt;}
.yf5{bottom:458.022133pt;}
.y2e8{bottom:459.014000pt;}
.y31f{bottom:459.669200pt;}
.y287{bottom:459.797200pt;}
.y156{bottom:460.294800pt;}
.y261{bottom:460.556533pt;}
.y358{bottom:464.695467pt;}
.y180{bottom:464.715467pt;}
.y1aa{bottom:464.930800pt;}
.y4d{bottom:465.756267pt;}
.y8a{bottom:466.073600pt;}
.y2ab{bottom:466.352667pt;}
.y1e1{bottom:468.504133pt;}
.yc0{bottom:469.318533pt;}
.y11c{bottom:470.166133pt;}
.yf4{bottom:471.350133pt;}
.y2e7{bottom:472.347333pt;}
.y226{bottom:472.956933pt;}
.y286{bottom:473.125200pt;}
.y155{bottom:473.622800pt;}
.y260{bottom:473.884533pt;}
.y13{bottom:474.356400pt;}
.y31e{bottom:474.789200pt;}
.y1a9{bottom:478.258800pt;}
.y4c{bottom:479.084267pt;}
.y1e0{bottom:479.172133pt;}
.y89{bottom:479.401600pt;}
.y357{bottom:479.815467pt;}
.y2aa{bottom:481.574000pt;}
.ybf{bottom:482.646533pt;}
.yf3{bottom:484.678133pt;}
.y17f{bottom:485.602800pt;}
.y2e6{bottom:485.680667pt;}
.y285{bottom:486.453200pt;}
.y154{bottom:486.950800pt;}
.y25f{bottom:487.212533pt;}
.y12{bottom:487.686400pt;}
.y225{bottom:488.076933pt;}
.y31d{bottom:489.909200pt;}
.y1a8{bottom:491.586800pt;}
.y88{bottom:492.729600pt;}
.y2a9{bottom:494.907333pt;}
.y356{bottom:494.935467pt;}
.ybe{bottom:495.974800pt;}
.yf2{bottom:498.006133pt;}
.y17e{bottom:498.930800pt;}
.y1de{bottom:499.276133pt;}
.y284{bottom:499.781200pt;}
.y4b{bottom:499.971600pt;}
.y153{bottom:500.278800pt;}
.y25e{bottom:500.540533pt;}
.y2e5{bottom:500.902000pt;}
.y11{bottom:501.016400pt;}
.y11b{bottom:502.398133pt;}
.y224{bottom:503.196933pt;}
.y1dd{bottom:504.614800pt;}
.y1a7{bottom:504.914800pt;}
.y31c{bottom:505.029200pt;}
.y87{bottom:506.057600pt;}
.y2a8{bottom:508.240667pt;}
.y355{bottom:510.055467pt;}
.yf1{bottom:511.344800pt;}
.y17d{bottom:512.258800pt;}
.y283{bottom:513.109200pt;}
.y4a{bottom:513.299600pt;}
.y152{bottom:513.606800pt;}
.y25d{bottom:513.868533pt;}
.y2e4{bottom:514.235333pt;}
.y10{bottom:514.346400pt;}
.ybd{bottom:516.862133pt;}
.y1a6{bottom:518.242800pt;}
.y223{bottom:518.316933pt;}
.y31b{bottom:520.149200pt;}
.y2a7{bottom:523.462000pt;}
.yf0{bottom:524.672800pt;}
.y354{bottom:525.175467pt;}
.y17c{bottom:525.586800pt;}
.y282{bottom:526.437200pt;}
.y49{bottom:526.627600pt;}
.y151{bottom:526.934800pt;}
.y86{bottom:526.944933pt;}
.y25c{bottom:527.196533pt;}
.yf{bottom:527.676400pt;}
.y2e3{bottom:529.456667pt;}
.y1dc{bottom:531.074800pt;}
.y1a5{bottom:531.570800pt;}
.y222{bottom:533.436933pt;}
.y31a{bottom:535.269200pt;}
.y2a6{bottom:536.795333pt;}
.yef{bottom:538.005867pt;}
.y17b{bottom:538.914800pt;}
.y48{bottom:539.955600pt;}
.y150{bottom:540.262800pt;}
.y85{bottom:540.272933pt;}
.y353{bottom:540.295467pt;}
.y25b{bottom:540.524533pt;}
.ye{bottom:541.006400pt;}
.y2e2{bottom:542.790000pt;}
.y1a4{bottom:544.898800pt;}
.y281{bottom:547.324533pt;}
.y221{bottom:548.556933pt;}
.y2a5{bottom:550.128667pt;}
.y319{bottom:550.389200pt;}
.y17a{bottom:552.242800pt;}
.y47{bottom:553.283600pt;}
.y14f{bottom:553.590800pt;}
.y84{bottom:553.600933pt;}
.y25a{bottom:553.852533pt;}
.yd{bottom:554.336400pt;}
.y352{bottom:555.415467pt;}
.y2e1{bottom:556.123333pt;}
.y1db{bottom:557.805467pt;}
.y1a3{bottom:558.226800pt;}
.yee{bottom:558.903867pt;}
.y280{bottom:561.321200pt;}
.y2a4{bottom:563.462000pt;}
.y220{bottom:563.508933pt;}
.y318{bottom:565.509200pt;}
.y179{bottom:565.570800pt;}
.y46{bottom:566.611600pt;}
.y14e{bottom:566.918800pt;}
.y83{bottom:566.928933pt;}
.y259{bottom:567.180533pt;}
.yc{bottom:567.666400pt;}
.y1da{bottom:568.473467pt;}
.y2e0{bottom:569.456667pt;}
.y351{bottom:570.535467pt;}
.y1a2{bottom:571.554800pt;}
.yed{bottom:572.231867pt;}
.y27f{bottom:575.317867pt;}
.y21f{bottom:577.859733pt;}
.y2a3{bottom:578.683333pt;}
.y178{bottom:578.898800pt;}
.y45{bottom:579.939600pt;}
.y14d{bottom:580.246800pt;}
.y82{bottom:580.256933pt;}
.y258{bottom:580.508533pt;}
.y317{bottom:580.629200pt;}
.y21e{bottom:583.198400pt;}
.y2df{bottom:584.678000pt;}
.y1a1{bottom:584.882800pt;}
.yec{bottom:585.559867pt;}
.y350{bottom:585.655467pt;}
.y27e{bottom:589.314533pt;}
.y2a2{bottom:592.016667pt;}
.y177{bottom:592.226800pt;}
.y44{bottom:593.267600pt;}
.y14c{bottom:593.574800pt;}
.y81{bottom:593.584933pt;}
.y257{bottom:593.836533pt;}
.y316{bottom:595.749200pt;}
.y2de{bottom:598.011333pt;}
.yeb{bottom:598.898533pt;}
.y1d9{bottom:600.365467pt;}
.y34f{bottom:600.775467pt;}
.y27d{bottom:603.311200pt;}
.y2a1{bottom:605.350000pt;}
.y176{bottom:605.554800pt;}
.y1d8{bottom:605.704133pt;}
.y1a0{bottom:605.770133pt;}
.y21d{bottom:606.167733pt;}
.y43{bottom:606.595600pt;}
.y14b{bottom:606.902800pt;}
.y80{bottom:606.912933pt;}
.y256{bottom:607.164533pt;}
.y315{bottom:610.869200pt;}
.y2dd{bottom:611.344667pt;}
.yea{bottom:612.231467pt;}
.y11a{bottom:612.864133pt;}
.y34e{bottom:615.895467pt;}
.y27c{bottom:617.307867pt;}
.y2a0{bottom:618.683333pt;}
.y175{bottom:618.882800pt;}
.y19f{bottom:619.098133pt;}
.y42{bottom:619.923600pt;}
.ybc{bottom:620.000800pt;}
.y14a{bottom:620.230800pt;}
.y7f{bottom:620.240933pt;}
.yb{bottom:621.007733pt;}
.y2dc{bottom:624.678000pt;}
.y314{bottom:625.989200pt;}
.y119{bottom:626.192133pt;}
.y255{bottom:628.051867pt;}
.y1d7{bottom:628.794800pt;}
.y21c{bottom:630.667467pt;}
.y34d{bottom:631.015467pt;}
.y27b{bottom:631.304533pt;}
.y174{bottom:632.210800pt;}
.y19e{bottom:632.426133pt;}
.ye9{bottom:633.118800pt;}
.y41{bottom:633.251600pt;}
.ybb{bottom:633.328800pt;}
.y149{bottom:633.558800pt;}
.y7e{bottom:633.568933pt;}
.y29f{bottom:633.904667pt;}
.y1d6{bottom:634.133467pt;}
.ya{bottom:634.345067pt;}
.y2db{bottom:638.011333pt;}
.y313{bottom:641.109200pt;}
.y254{bottom:641.379867pt;}
.y27a{bottom:645.301200pt;}
.y173{bottom:645.538800pt;}
.y19d{bottom:645.754133pt;}
.y34c{bottom:646.135467pt;}
.ye8{bottom:646.457600pt;}
.y40{bottom:646.579600pt;}
.yba{bottom:646.667467pt;}
.y21b{bottom:646.670133pt;}
.y148{bottom:646.886800pt;}
.y7d{bottom:646.896933pt;}
.y29e{bottom:647.238000pt;}
.y9{bottom:647.682400pt;}
.y2da{bottom:651.344667pt;}
.y253{bottom:654.707867pt;}
.y312{bottom:656.229200pt;}
.y172{bottom:658.866800pt;}
.y19c{bottom:659.082133pt;}
.y279{bottom:659.297867pt;}
.ye7{bottom:659.796267pt;}
.y3f{bottom:659.907600pt;}
.yb9{bottom:659.995467pt;}
.y147{bottom:660.214800pt;}
.y7c{bottom:660.224933pt;}
.y29d{bottom:660.571333pt;}
.y34b{bottom:661.255467pt;}
.y1c7{bottom:666.004800pt;}
.y2d9{bottom:666.566000pt;}
.y252{bottom:668.035867pt;}
.y311{bottom:671.349200pt;}
.y19b{bottom:672.410133pt;}
.ye6{bottom:673.124267pt;}
.y3e{bottom:673.235600pt;}
.y278{bottom:673.294533pt;}
.yb8{bottom:673.428267pt;}
.y29c{bottom:673.904667pt;}
.y34a{bottom:676.375467pt;}
.y171{bottom:679.754133pt;}
.y2d8{bottom:679.899333pt;}
.y205{bottom:680.794800pt;}
.y146{bottom:681.102133pt;}
.y7b{bottom:681.112267pt;}
.y251{bottom:681.363867pt;}
.y19a{bottom:685.738133pt;}
.ye5{bottom:686.452267pt;}
.y310{bottom:686.469200pt;}
.y20{bottom:687.280000pt;}
.y277{bottom:687.291200pt;}
.y29b{bottom:689.126000pt;}
.y349{bottom:691.495467pt;}
.y21a{bottom:692.445467pt;}
.y170{bottom:693.082133pt;}
.y2d7{bottom:693.232667pt;}
.y204{bottom:694.122800pt;}
.y3d{bottom:694.122933pt;}
.yb7{bottom:694.315600pt;}
.y145{bottom:694.430133pt;}
.y7a{bottom:694.440267pt;}
.y250{bottom:694.691867pt;}
.y199{bottom:699.066133pt;}
.ye4{bottom:699.801200pt;}
.y276{bottom:701.287867pt;}
.y30f{bottom:701.589200pt;}
.y29a{bottom:702.459333pt;}
.y219{bottom:705.773467pt;}
.y16f{bottom:706.410133pt;}
.y2d6{bottom:706.566000pt;}
.y348{bottom:706.615467pt;}
.y203{bottom:707.450800pt;}
.y3c{bottom:707.450933pt;}
.yb6{bottom:707.643600pt;}
.y144{bottom:707.758133pt;}
.y79{bottom:707.768267pt;}
.y24f{bottom:708.019867pt;}
.ye3{bottom:713.129200pt;}
.y275{bottom:715.284533pt;}
.y299{bottom:715.792667pt;}
.y30e{bottom:716.709200pt;}
.y1d5{bottom:716.725200pt;}
.y218{bottom:719.101467pt;}
.y16e{bottom:719.738133pt;}
.y198{bottom:719.953467pt;}
.y202{bottom:720.778800pt;}
.y3b{bottom:720.778933pt;}
.yb5{bottom:720.971600pt;}
.y143{bottom:721.086133pt;}
.y78{bottom:721.096267pt;}
.y347{bottom:721.735467pt;}
.y2d5{bottom:721.787333pt;}
.y24e{bottom:728.907200pt;}
.y298{bottom:729.126000pt;}
.y274{bottom:729.281200pt;}
.y118{bottom:730.664800pt;}
.y30d{bottom:731.829200pt;}
.y217{bottom:732.429467pt;}
.y16d{bottom:733.066133pt;}
.y197{bottom:733.281467pt;}
.ye2{bottom:734.016533pt;}
.y201{bottom:734.106800pt;}
.y3a{bottom:734.106933pt;}
.yb4{bottom:734.299600pt;}
.y142{bottom:734.414133pt;}
.y77{bottom:734.424267pt;}
.y2d4{bottom:735.120667pt;}
.y346{bottom:736.855467pt;}
.y8{bottom:737.851733pt;}
.y24d{bottom:742.235200pt;}
.y273{bottom:743.277867pt;}
.y117{bottom:743.992800pt;}
.y297{bottom:744.347333pt;}
.y216{bottom:745.757467pt;}
.y30c{bottom:746.949200pt;}
.ye1{bottom:747.355200pt;}
.y200{bottom:747.434800pt;}
.y39{bottom:747.434933pt;}
.yb3{bottom:747.627600pt;}
.y141{bottom:747.742133pt;}
.y76{bottom:747.752267pt;}
.y2d3{bottom:748.454000pt;}
.y345{bottom:751.975467pt;}
.y7{bottom:752.514400pt;}
.y24c{bottom:755.563200pt;}
.y272{bottom:757.274533pt;}
.y296{bottom:757.680667pt;}
.y215{bottom:759.085467pt;}
.ye0{bottom:760.683200pt;}
.y1ff{bottom:760.762800pt;}
.y38{bottom:760.762933pt;}
.yb2{bottom:760.955600pt;}
.y140{bottom:761.070133pt;}
.y75{bottom:761.080267pt;}
.y2d2{bottom:761.787333pt;}
.y30b{bottom:762.069200pt;}
.y1d3{bottom:762.073067pt;}
.y1d4{bottom:765.182003pt;}
.y344{bottom:767.095467pt;}
.y6{bottom:767.177067pt;}
.y24b{bottom:768.891200pt;}
.y295{bottom:771.014000pt;}
.y214{bottom:772.413467pt;}
.ydf{bottom:774.011200pt;}
.y1fe{bottom:774.090800pt;}
.y37{bottom:774.090933pt;}
.yb1{bottom:774.283600pt;}
.y13f{bottom:774.398133pt;}
.y74{bottom:774.408267pt;}
.y2d1{bottom:777.008667pt;}
.y30a{bottom:777.189200pt;}
.y271{bottom:778.830533pt;}
.y5{bottom:781.839733pt;}
.y343{bottom:782.215467pt;}
.y24a{bottom:782.219200pt;}
.y1d1{bottom:784.750267pt;}
.y213{bottom:785.741467pt;}
.y294{bottom:786.235333pt;}
.yde{bottom:787.355200pt;}
.y1fd{bottom:787.418800pt;}
.y36{bottom:787.418933pt;}
.yb0{bottom:787.611600pt;}
.y13e{bottom:787.726133pt;}
.y73{bottom:787.736267pt;}
.y1d2{bottom:787.859069pt;}
.y2d0{bottom:790.342000pt;}
.y309{bottom:792.309200pt;}
.y270{bottom:792.827200pt;}
.y249{bottom:795.547200pt;}
.y342{bottom:797.335467pt;}
.y212{bottom:799.069467pt;}
.y293{bottom:799.568667pt;}
.ydd{bottom:800.683200pt;}
.y1fc{bottom:800.746800pt;}
.y35{bottom:800.746933pt;}
.yaf{bottom:800.939600pt;}
.y13d{bottom:801.054133pt;}
.y72{bottom:801.064267pt;}
.y2cf{bottom:803.675333pt;}
.y4{bottom:805.387067pt;}
.y26f{bottom:806.823867pt;}
.y1cf{bottom:807.427467pt;}
.y308{bottom:807.429200pt;}
.y248{bottom:808.875200pt;}
.y1d0{bottom:810.536269pt;}
.y211{bottom:812.397467pt;}
.y341{bottom:812.455467pt;}
.y292{bottom:812.902000pt;}
.ydc{bottom:814.016533pt;}
.y1fb{bottom:814.074800pt;}
.y34{bottom:814.074933pt;}
.yae{bottom:814.267600pt;}
.y13c{bottom:814.382133pt;}
.y71{bottom:814.392267pt;}
.y2ce{bottom:818.896667pt;}
.y26e{bottom:820.820533pt;}
.y247{bottom:822.203200pt;}
.y307{bottom:822.549200pt;}
.y210{bottom:825.725467pt;}
.y1fa{bottom:827.402800pt;}
.y33{bottom:827.402933pt;}
.ydb{bottom:827.420933pt;}
.y340{bottom:827.575467pt;}
.y70{bottom:827.720267pt;}
.y291{bottom:828.123333pt;}
.y1cd{bottom:830.104533pt;}
.y2cd{bottom:832.230000pt;}
.y1ce{bottom:833.213469pt;}
.y26d{bottom:834.817200pt;}
.yad{bottom:835.154933pt;}
.y13b{bottom:835.269467pt;}
.y246{bottom:835.531200pt;}
.y306{bottom:837.669200pt;}
.y1f9{bottom:840.730800pt;}
.y32{bottom:840.730933pt;}
.y6f{bottom:841.048267pt;}
.y290{bottom:841.456667pt;}
.y3{bottom:842.490000pt;}
.y33f{bottom:842.695467pt;}
.y2cc{bottom:845.563333pt;}
.y20f{bottom:846.612800pt;}
.yda{bottom:848.308267pt;}
.y116{bottom:848.452133pt;}
.yac{bottom:848.482933pt;}
.y13a{bottom:848.597467pt;}
.y26c{bottom:848.813867pt;}
.y245{bottom:848.859200pt;}
.y1cb{bottom:852.784533pt;}
.y305{bottom:852.789200pt;}
.y1f8{bottom:854.058800pt;}
.y31{bottom:854.058933pt;}
.y6e{bottom:854.376267pt;}
.y28f{bottom:854.790000pt;}
.y1cc{bottom:855.890536pt;}
.y33e{bottom:857.815467pt;}
.y2cb{bottom:858.896667pt;}
.yd9{bottom:861.636267pt;}
.y115{bottom:861.794800pt;}
.yab{bottom:861.810933pt;}
.y244{bottom:862.187200pt;}
.y2{bottom:862.490000pt;}
.y26b{bottom:862.810533pt;}
.y1f7{bottom:867.386800pt;}
.y30{bottom:867.386933pt;}
.y20e{bottom:867.500133pt;}
.y6d{bottom:867.704267pt;}
.y304{bottom:867.909200pt;}
.y28e{bottom:868.123333pt;}
.y139{bottom:869.484800pt;}
.y33d{bottom:872.935467pt;}
.y2ca{bottom:874.118000pt;}
.yd8{bottom:874.964267pt;}
.yaa{bottom:875.138933pt;}
.y1c9{bottom:875.458933pt;}
.y243{bottom:875.515200pt;}
.y26a{bottom:876.807200pt;}
.y1ca{bottom:878.567736pt;}
.y2f{bottom:880.714933pt;}
.y20d{bottom:880.828133pt;}
.y6c{bottom:881.032267pt;}
.y28d{bottom:881.456667pt;}
.y114{bottom:882.682133pt;}
.y303{bottom:884.981733pt;}
.y2c9{bottom:887.451333pt;}
.y33c{bottom:888.055467pt;}
.y1f6{bottom:888.274133pt;}
.yd7{bottom:888.292267pt;}
.ya9{bottom:888.466933pt;}
.y242{bottom:888.843200pt;}
.y269{bottom:890.803867pt;}
.y2e{bottom:894.042933pt;}
.y20c{bottom:894.156133pt;}
.y6b{bottom:894.360267pt;}
.y113{bottom:896.010133pt;}
.y300{bottom:897.255067pt;}
.y1c8{bottom:898.138933pt;}
.y24{bottom:900.210667pt;}
.y2c8{bottom:900.784667pt;}
.y1f5{bottom:901.602133pt;}
.yd6{bottom:901.620267pt;}
.y302{bottom:901.632400pt;}
.y138{bottom:901.716800pt;}
.ya8{bottom:901.794933pt;}
.y241{bottom:902.171200pt;}
.y28c{bottom:902.363867pt;}
.y2ff{bottom:902.388400pt;}
.y33b{bottom:903.175467pt;}
.y268{bottom:904.800533pt;}
.y2d{bottom:907.370933pt;}
.y20b{bottom:907.484133pt;}
.y6a{bottom:907.688267pt;}
.y301{bottom:911.899067pt;}
.y2c7{bottom:914.118000pt;}
.y1f4{bottom:914.930133pt;}
.yd5{bottom:914.948267pt;}
.y137{bottom:915.044800pt;}
.ya7{bottom:915.122933pt;}
.y240{bottom:915.499200pt;}
.y33a{bottom:918.295467pt;}
.y267{bottom:918.797200pt;}
.y2c{bottom:920.698933pt;}
.y20a{bottom:920.812133pt;}
.y1c6{bottom:925.844133pt;}
.y2c6{bottom:927.451333pt;}
.y112{bottom:928.242133pt;}
.y1f3{bottom:928.258133pt;}
.yd4{bottom:928.276267pt;}
.y136{bottom:928.372800pt;}
.y69{bottom:928.575600pt;}
.y23f{bottom:928.827200pt;}
.y266{bottom:932.793867pt;}
.y339{bottom:933.415467pt;}
.y2b{bottom:934.026933pt;}
.y209{bottom:934.140133pt;}
.y28b{bottom:934.595867pt;}
.ya6{bottom:936.010267pt;}
.y2c5{bottom:940.784667pt;}
.y111{bottom:941.575467pt;}
.y1f2{bottom:941.586133pt;}
.yd3{bottom:941.604267pt;}
.y135{bottom:941.700800pt;}
.y68{bottom:941.903600pt;}
.y23e{bottom:942.155200pt;}
.y265{bottom:946.790533pt;}
.y335{bottom:947.354800pt;}
.y2a{bottom:947.354933pt;}
.y208{bottom:947.468133pt;}
.y28a{bottom:947.923867pt;}
.y338{bottom:948.535467pt;}
.y110{bottom:954.908800pt;}
.y1c2{bottom:954.914133pt;}
.y1c5{bottom:954.925467pt;}
.yd2{bottom:954.932267pt;}
.y134{bottom:955.028800pt;}
.y67{bottom:955.231600pt;}
.y23d{bottom:955.483200pt;}
.y2c4{bottom:956.006000pt;}
.y334{bottom:960.682800pt;}
.y29{bottom:960.682933pt;}
.y264{bottom:960.787200pt;}
.y289{bottom:961.251867pt;}
.y337{bottom:963.655467pt;}
.y23{bottom:967.464000pt;}
.y10f{bottom:968.242133pt;}
.ya5{bottom:968.242267pt;}
.y1c4{bottom:968.253467pt;}
.yd1{bottom:968.260267pt;}
.y207{bottom:968.355467pt;}
.y133{bottom:968.356800pt;}
.y66{bottom:968.559600pt;}
.y23c{bottom:968.811200pt;}
.y2c3{bottom:969.339333pt;}
.y336{bottom:978.775467pt;}
.y10e{bottom:981.570133pt;}
.y28{bottom:981.570267pt;}
.y1c3{bottom:981.581467pt;}
.yd0{bottom:981.588267pt;}
.y206{bottom:981.683467pt;}
.y132{bottom:981.684800pt;}
.y65{bottom:981.887600pt;}
.y1c1{bottom:982.002800pt;}
.y23b{bottom:982.139200pt;}
.y263{bottom:982.343200pt;}
.y2c2{bottom:982.672667pt;}
.y22{bottom:984.792667pt;}
.y21{bottom:1002.121333pt;}
.y16c{bottom:1041.211733pt;}
.ya3{bottom:1041.211867pt;}
.y10c{bottom:1041.306267pt;}
.y26{bottom:1041.306533pt;}
.he{height:17.811865pt;}
.hd{height:18.128073pt;}
.h10{height:24.927018pt;}
.hf{height:24.927552pt;}
.hc{height:30.552083pt;}
.h8{height:32.015625pt;}
.h14{height:34.916667pt;}
.h6{height:37.098958pt;}
.h4{height:37.351562pt;}
.h18{height:37.363296pt;}
.h17{height:37.650229pt;}
.h19{height:37.687562pt;}
.h5{height:40.019531pt;}
.h2{height:42.687500pt;}
.h9{height:45.355469pt;}
.ha{height:47.694400pt;}
.hb{height:47.937067pt;}
.h15{height:57.884896pt;}
.h11{height:58.668896pt;}
.h13{height:58.688629pt;}
.h3{height:64.031250pt;}
.h7{height:69.367188pt;}
.h16{height:78.418229pt;}
.h12{height:80.023563pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.491200pt;}
.x3a{left:98.267733pt;}
.x25{left:102.103067pt;}
.x37{left:104.888667pt;}
.xe{left:105.826800pt;}
.x2{left:107.533200pt;}
.x5{left:109.937867pt;}
.x12{left:113.377333pt;}
.x24{left:115.435067pt;}
.x22{left:116.451333pt;}
.x36{left:119.598000pt;}
.x23{left:123.389485pt;}
.x13{left:124.710667pt;}
.x41{left:136.458400pt;}
.x35{left:140.435067pt;}
.x7{left:144.928533pt;}
.x3{left:151.789200pt;}
.x34{left:155.377733pt;}
.x29{left:158.280400pt;}
.x17{left:171.250400pt;}
.x18{left:179.003885pt;}
.xd{left:181.993733pt;}
.x26{left:204.125733pt;}
.x11{left:210.859467pt;}
.x19{left:232.995752pt;}
.x42{left:246.505067pt;}
.x4{left:257.166667pt;}
.x16{left:264.677067pt;}
.x2f{left:283.673733pt;}
.x2c{left:285.139067pt;}
.x2d{left:286.632400pt;}
.x1a{left:288.714952pt;}
.x2e{left:292.941733pt;}
.xc{left:300.952400pt;}
.x6{left:328.123200pt;}
.x32{left:331.357733pt;}
.x8{left:342.132533pt;}
.x1b{left:344.429619pt;}
.x27{left:355.839067pt;}
.x40{left:377.609067pt;}
.x3b{left:386.331733pt;}
.x38{left:388.323333pt;}
.x1c{left:398.321352pt;}
.x30{left:404.783067pt;}
.xf{left:410.070133pt;}
.x10{left:421.403467pt;}
.x39{left:424.802667pt;}
.x15{left:428.975467pt;}
.xa{left:436.703067pt;}
.x14{left:440.298667pt;}
.x3f{left:446.083733pt;}
.x1d{left:453.019619pt;}
.x3c{left:464.937067pt;}
.xb{left:478.919733pt;}
.x1e{left:507.011619pt;}
.x1f{left:562.730685pt;}
.x2b{left:585.588400pt;}
.x2a{left:593.167067pt;}
.x33{left:594.865733pt;}
.x31{left:616.369733pt;}
.x20{left:618.445352pt;}
.x28{left:622.688400pt;}
.x3e{left:628.195733pt;}
.x3d{left:631.406400pt;}
.x21{left:672.337085pt;}
.x43{left:683.689600pt;}
.x1{left:691.272933pt;}
}




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