
    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_c8fb2af6e26184100921d58f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b470290d7f85b0ee754a88cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.129000;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_bc75400fc44ca605a1e1cbad.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.109000;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_b8792a8747a90cf4779c86e6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_2fac67131966ea38e30b6a10.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.000000;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;}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.388320px;}
.ls3{letter-spacing:34.015846px;}
.ls2{letter-spacing:64.273774px;}
.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;}
}
.ws2{word-spacing:-17.999993px;}
.ws0{word-spacing:-14.939994px;}
.ws3{word-spacing:-14.219994px;}
.ws1{word-spacing:0.000000px;}
._22{margin-left:-2.448094px;}
._3{margin-left:-1.205569px;}
._1{width:1.082568px;}
._d{width:2.138804px;}
._9{width:3.922102px;}
._a{width:5.704893px;}
._5{width:7.481813px;}
._6{width:8.664119px;}
._f{width:9.730873px;}
._b{width:10.831277px;}
._c{width:12.012428px;}
._2{width:13.109405px;}
._4{width:14.940375px;}
._10{width:16.083834px;}
._8{width:19.043234px;}
._e{width:20.069170px;}
._13{width:21.601278px;}
._23{width:22.780511px;}
._20{width:24.245665px;}
._14{width:25.290429px;}
._15{width:26.719468px;}
._21{width:27.818350px;}
._19{width:28.883164px;}
._1a{width:32.100290px;}
._1b{width:33.100549px;}
._1f{width:34.658430px;}
._16{width:35.730680px;}
._17{width:37.556067px;}
._1c{width:38.576485px;}
._11{width:39.935177px;}
._12{width:41.027931px;}
._7{width:45.869812px;}
._0{width:54.042386px;}
._18{width:58.948467px;}
._24{width:66.111374px;}
._1d{width:74.676049px;}
._1e{width:75.690471px;}
._25{width:79.368002px;}
._26{width:194.525202px;}
._27{width:197.590385px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.239981px;}
.fs6{font-size:56.879977px;}
.fs4{font-size:59.759976px;}
.fs0{font-size:71.999971px;}
.fs1{font-size:84.239966px;}
.fs2{font-size:95.759962px;}
.fs3{font-size:143.999942px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.720877px;}
.ybb{bottom:111.001456px;}
.yd6{bottom:114.061454px;}
.y121{bottom:118.920852px;}
.y8d{bottom:119.820852px;}
.y14f{bottom:132.061447px;}
.y134{bottom:136.561445px;}
.y70{bottom:136.921445px;}
.y18{bottom:138.361445px;}
.y34{bottom:139.801444px;}
.yba{bottom:142.141443px;}
.y119{bottom:149.161440px;}
.y8c{bottom:150.960840px;}
.yd5{bottom:154.021438px;}
.y53{bottom:154.920838px;}
.yf4{bottom:155.641438px;}
.y14e{bottom:163.021435px;}
.y6f{bottom:168.061433px;}
.yb9{bottom:173.101431px;}
.y133{bottom:176.701429px;}
.y33{bottom:179.941428px;}
.y118{bottom:180.301428px;}
.y17{bottom:181.021428px;}
.y8b{bottom:181.920827px;}
.y52{bottom:186.060826px;}
.yf3{bottom:193.261423px;}
.yd4{bottom:193.981422px;}
.y6e{bottom:199.021420px;}
.yb8{bottom:204.241418px;}
.y8a{bottom:213.060815px;}
.y117{bottom:215.941414px;}
.y132{bottom:216.661413px;}
.y51{bottom:217.020813px;}
.yf2{bottom:219.181412px;}
.y32{bottom:219.901412px;}
.y16{bottom:221.161412px;}
.y14d{bottom:225.121410px;}
.y6d{bottom:229.981408px;}
.yd3{bottom:234.121406px;}
.yb7{bottom:235.201406px;}
.y89{bottom:244.020802px;}
.y50{bottom:247.980801px;}
.yf1{bottom:252.121399px;}
.y100{bottom:252.481399px;}
.y14c{bottom:256.081398px;}
.y131{bottom:256.801397px;}
.y31{bottom:260.041396px;}
.y15{bottom:261.121396px;}
.yb6{bottom:266.341393px;}
.yd2{bottom:274.081390px;}
.y88{bottom:274.980790px;}
.y4f{bottom:288.120785px;}
.y6c{bottom:292.081383px;}
.yff{bottom:292.441383px;}
.y14b{bottom:296.221382px;}
.y130{bottom:296.761381px;}
.yb5{bottom:297.301381px;}
.y30{bottom:300.001380px;}
.y14{bottom:301.261379px;}
.y87{bottom:306.120778px;}
.yd1{bottom:314.221374px;}
.y4e{bottom:319.080772px;}
.y6b{bottom:323.221371px;}
.yb4{bottom:328.441369px;}
.yfe{bottom:332.581367px;}
.y14a{bottom:336.181366px;}
.y12f{bottom:336.901365px;}
.y86{bottom:337.080765px;}
.y2f{bottom:340.141364px;}
.y13{bottom:341.221364px;}
.y9f{bottom:346.080762px;}
.y4d{bottom:350.220760px;}
.y6a{bottom:354.181358px;}
.y149{bottom:367.321353px;}
.y85{bottom:368.220753px;}
.yb3{bottom:368.401353px;}
.yfd{bottom:372.541351px;}
.y12e{bottom:376.861349px;}
.y9e{bottom:377.220749px;}
.y162{bottom:379.380748px;}
.y2e{bottom:380.101348px;}
.y4c{bottom:381.180748px;}
.y12{bottom:381.361347px;}
.y69{bottom:385.321346px;}
.yd0{bottom:394.321342px;}
.y148{bottom:398.281341px;}
.y84{bottom:399.180740px;}
.yb2{bottom:399.541340px;}
.y10f{bottom:406.201338px;}
.y9d{bottom:408.180737px;}
.y2d{bottom:411.241336px;}
.y4b{bottom:412.320735px;}
.yfc{bottom:412.681335px;}
.y68{bottom:416.281333px;}
.y12d{bottom:417.001333px;}
.y11{bottom:419.161332px;}
.y161{bottom:419.520732px;}
.ycf{bottom:425.281330px;}
.y147{bottom:429.421328px;}
.y83{bottom:430.320728px;}
.yb1{bottom:430.501328px;}
.ye7{bottom:434.641326px;}
.y10e{bottom:437.161325px;}
.y9c{bottom:439.320724px;}
.y4a{bottom:443.280723px;}
.y10{bottom:444.901322px;}
.y67{bottom:447.421321px;}
.y2c{bottom:451.201320px;}
.yfb{bottom:452.641319px;}
.y12c{bottom:456.961317px;}
.y160{bottom:459.480716px;}
.y82{bottom:461.280715px;}
.yce{bottom:465.421314px;}
.y10d{bottom:468.301313px;}
.y146{bottom:469.381312px;}
.y9b{bottom:470.280712px;}
.yb0{bottom:470.641312px;}
.y49{bottom:474.420710px;}
.ye6{bottom:474.601310px;}
.y66{bottom:478.381309px;}
.yf{bottom:482.161307px;}
.yfa{bottom:490.441304px;}
.y2b{bottom:491.341303px;}
.y81{bottom:492.420703px;}
.yf0{bottom:495.481302px;}
.ycd{bottom:496.381301px;}
.y12b{bottom:497.101301px;}
.y10c{bottom:499.261300px;}
.y15f{bottom:499.620700px;}
.y120{bottom:501.241300px;}
.ybf{bottom:501.420699px;}
.yaf{bottom:501.601299px;}
.y48{bottom:505.380698px;}
.ye5{bottom:505.741298px;}
.y65{bottom:509.521296px;}
.y9a{bottom:510.420696px;}
.ye{bottom:522.121291px;}
.yf9{bottom:523.201291px;}
.y80{bottom:523.380691px;}
.ycc{bottom:527.521289px;}
.y2a{bottom:531.301287px;}
.y11f{bottom:532.201287px;}
.ybe{bottom:532.380687px;}
.yae{bottom:532.741287px;}
.yef{bottom:535.441286px;}
.y47{bottom:536.520685px;}
.y12a{bottom:537.061285px;}
.y10b{bottom:539.401284px;}
.y15e{bottom:539.580684px;}
.y145{bottom:540.481284px;}
.y99{bottom:541.380683px;}
.ye4{bottom:545.701282px;}
.y64{bottom:549.481280px;}
.yd{bottom:562.261275px;}
.y11e{bottom:563.341275px;}
.y7f{bottom:563.520675px;}
.yad{bottom:563.701275px;}
.y46{bottom:567.480673px;}
.ycb{bottom:567.481273px;}
.y10a{bottom:570.361272px;}
.y29{bottom:571.441271px;}
.y144{bottom:571.621271px;}
.y98{bottom:572.520671px;}
.y129{bottom:573.241271px;}
.yee{bottom:575.581270px;}
.y15d{bottom:579.360668px;}
.ye3{bottom:585.841266px;}
.y63{bottom:589.621264px;}
.y11d{bottom:594.301262px;}
.y7e{bottom:594.480662px;}
.yac{bottom:594.841262px;}
.y116{bottom:598.261261px;}
.y45{bottom:598.620661px;}
.yca{bottom:598.621261px;}
.yc{bottom:602.221259px;}
.y143{bottom:602.581259px;}
.y97{bottom:603.480659px;}
.y109{bottom:610.501256px;}
.y28{bottom:611.401255px;}
.yed{bottom:615.541254px;}
.y15c{bottom:619.320652px;}
.y62{bottom:620.581252px;}
.y11c{bottom:625.441250px;}
.y7d{bottom:625.620650px;}
.ye2{bottom:625.801250px;}
.y115{bottom:629.221248px;}
.yc9{bottom:629.581248px;}
.y142{bottom:633.721247px;}
.y96{bottom:634.620646px;}
.yab{bottom:634.801246px;}
.y44{bottom:638.580645px;}
.y27{bottom:642.541243px;}
.yb{bottom:647.221241px;}
.y108{bottom:650.461240px;}
.y61{bottom:651.721239px;}
.yec{bottom:655.501238px;}
.y7c{bottom:656.580637px;}
.ye1{bottom:656.941237px;}
.y15b{bottom:659.460636px;}
.y114{bottom:660.361236px;}
.yc8{bottom:660.721236px;}
.y11b{bottom:663.241235px;}
.y141{bottom:664.681234px;}
.y95{bottom:665.580634px;}
.y43{bottom:669.720632px;}
.yaa{bottom:672.241231px;}
.y26{bottom:673.501231px;}
.y107{bottom:681.601227px;}
.y60{bottom:682.681227px;}
.y7b{bottom:687.720625px;}
.ya{bottom:688.621225px;}
.y113{bottom:691.321223px;}
.yc7{bottom:691.681223px;}
.yeb{bottom:695.641222px;}
.y140{bottom:695.821222px;}
.y11a{bottom:696.001222px;}
.y94{bottom:696.720621px;}
.ye0{bottom:696.901221px;}
.y15a{bottom:699.420620px;}
.ya8{bottom:700.320620px;}
.ya9{bottom:700.321220px;}
.y42{bottom:700.680620px;}
.y25{bottom:704.641218px;}
.y106{bottom:712.561215px;}
.y5f{bottom:713.821214px;}
.y7a{bottom:718.680613px;}
.y93{bottom:727.680609px;}
.ydf{bottom:728.041209px;}
.y9{bottom:730.021208px;}
.y112{bottom:731.461207px;}
.y41{bottom:731.820607px;}
.yc6{bottom:731.821207px;}
.y24{bottom:735.601206px;}
.y13f{bottom:735.781206px;}
.y159{bottom:739.560604px;}
.ya7{bottom:740.820604px;}
.y5e{bottom:744.781202px;}
.y105{bottom:752.341199px;}
.y79{bottom:758.820596px;}
.yde{bottom:759.001196px;}
.y111{bottom:762.421195px;}
.y40{bottom:762.780595px;}
.yc5{bottom:762.781195px;}
.y92{bottom:767.820593px;}
.y23{bottom:775.561190px;}
.yea{bottom:775.741190px;}
.y5d{bottom:775.921190px;}
.y8{bottom:777.901189px;}
.y158{bottom:779.520588px;}
.ya6{bottom:780.780588px;}
.yf8{bottom:784.201186px;}
.y78{bottom:789.780584px;}
.ydd{bottom:789.961184px;}
.y104{bottom:792.301183px;}
.y3f{bottom:793.920582px;}
.yc4{bottom:793.921182px;}
.y110{bottom:798.241181px;}
.y91{bottom:798.780580px;}
.y22{bottom:806.701177px;}
.y5c{bottom:806.881177px;}
.ya5{bottom:811.920575px;}
.ye9{bottom:813.541175px;}
.yf7{bottom:815.161174px;}
.y157{bottom:819.660572px;}
.y77{bottom:820.920572px;}
.ydc{bottom:821.101172px;}
.y3e{bottom:824.880570px;}
.y7{bottom:825.601170px;}
.y90{bottom:829.920568px;}
.y103{bottom:832.801167px;}
.yc3{bottom:833.521167px;}
.y21{bottom:837.661165px;}
.y13e{bottom:838.021165px;}
.ya4{bottom:842.880563px;}
.ye8{bottom:846.481161px;}
.y5b{bottom:846.661161px;}
.y76{bottom:851.880559px;}
.ydb{bottom:852.061159px;}
.yf6{bottom:852.961159px;}
.y3d{bottom:856.020558px;}
.y156{bottom:859.620556px;}
.y8f{bottom:860.880556px;}
.y20{bottom:868.801152px;}
.y102{bottom:870.421152px;}
.yc1{bottom:873.660551px;}
.yc2{bottom:873.661151px;}
.ya3{bottom:874.020550px;}
.y13d{bottom:877.981149px;}
.y75{bottom:883.020547px;}
.y6{bottom:885.361146px;}
.yf5{bottom:885.721146px;}
.y5a{bottom:886.621145px;}
.y3c{bottom:886.980545px;}
.yda{bottom:891.841143px;}
.y8e{bottom:892.020543px;}
.y155{bottom:899.760540px;}
.y1f{bottom:899.761140px;}
.y101{bottom:903.361139px;}
.ya2{bottom:904.980538px;}
.yc0{bottom:913.620535px;}
.ybd{bottom:913.980534px;}
.y13c{bottom:918.121133px;}
.y74{bottom:922.980531px;}
.y59{bottom:926.761129px;}
.y3b{bottom:927.120529px;}
.yd9{bottom:929.641128px;}
.y1e{bottom:930.901128px;}
.ya1{bottom:936.120526px;}
.y154{bottom:939.720524px;}
.ybc{bottom:945.120522px;}
.y13b{bottom:949.081120px;}
.y73{bottom:954.120518px;}
.y128{bottom:955.381118px;}
.y5{bottom:956.461117px;}
.y1d{bottom:961.861115px;}
.y58{bottom:966.720513px;}
.y3a{bottom:967.080513px;}
.ya0{bottom:976.080510px;}
.y153{bottom:979.860508px;}
.y72{bottom:985.080506px;}
.y127{bottom:986.521105px;}
.y13a{bottom:989.221104px;}
.y1c{bottom:993.001103px;}
.y39{bottom:998.220501px;}
.y57{bottom:1007.220497px;}
.y71{bottom:1016.220494px;}
.y126{bottom:1017.481093px;}
.y152{bottom:1019.820492px;}
.y1b{bottom:1023.961090px;}
.y4{bottom:1027.561089px;}
.y38{bottom:1029.180488px;}
.y139{bottom:1029.181088px;}
.yd8{bottom:1038.180485px;}
.y56{bottom:1047.180481px;}
.y125{bottom:1048.621081px;}
.y1a{bottom:1055.101078px;}
.y151{bottom:1059.960476px;}
.y37{bottom:1060.320476px;}
.y138{bottom:1060.321076px;}
.yd7{bottom:1069.320472px;}
.y55{bottom:1078.320469px;}
.y124{bottom:1079.581068px;}
.y3{bottom:1089.301064px;}
.y19{bottom:1095.061062px;}
.y150{bottom:1099.920460px;}
.y137{bottom:1099.921060px;}
.y36{bottom:1100.280460px;}
.y54{bottom:1109.280456px;}
.y123{bottom:1117.381053px;}
.y2{bottom:1137.361045px;}
.y135{bottom:1140.060444px;}
.y136{bottom:1140.061044px;}
.y35{bottom:1140.420444px;}
.y122{bottom:1143.301043px;}
.hc{height:40.816064px;}
.h7{height:44.525502px;}
.hb{height:49.175980px;}
.h1{height:49.535980px;}
.ha{height:52.500219px;}
.h6{height:55.158458px;}
.h8{height:65.087974px;}
.h5{height:66.455973px;}
.h9{height:66.458373px;}
.h2{height:77.753489px;}
.h3{height:88.386445px;}
.h4{height:132.911947px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:127.619199px;}
.x44{left:141.119194px;}
.x45{left:144.719192px;}
.x7{left:148.139191px;}
.x48{left:154.619952px;}
.x46{left:157.679937px;}
.x29{left:180.719928px;}
.x31{left:195.119922px;}
.x37{left:197.819921px;}
.x2d{left:201.059920px;}
.x2e{left:204.659918px;}
.x38{left:208.621376px;}
.x2f{left:215.459914px;}
.x32{left:217.979913px;}
.x2a{left:222.120670px;}
.x33{left:226.619909px;}
.x34{left:229.679908px;}
.x3c{left:232.739907px;}
.x35{left:250.379900px;}
.x36{left:253.439899px;}
.x47{left:261.359895px;}
.x3a{left:270.899892px;}
.x8{left:282.419183px;}
.x2b{left:289.619795px;}
.x1a{left:300.959880px;}
.x49{left:313.020473px;}
.x30{left:334.439866px;}
.x4a{left:340.020423px;}
.x6{left:344.339802px;}
.x24{left:352.259232px;}
.x4{left:353.519859px;}
.xb{left:358.559857px;}
.x9{left:361.799257px;}
.x42{left:397.259841px;}
.x5{left:409.499840px;}
.xc{left:412.559835px;}
.xd{left:415.619834px;}
.x3d{left:419.040274px;}
.x3f{left:420.659832px;}
.x2c{left:426.422331px;}
.xe{left:436.319825px;}
.xf{left:439.559824px;}
.x2{left:446.399821px;}
.x28{left:473.039772px;}
.x1b{left:505.799798px;}
.x1c{left:508.859796px;}
.x10{left:511.199796px;}
.x11{left:514.259794px;}
.x1d{left:539.639784px;}
.x1e{left:542.699783px;}
.x12{left:545.039782px;}
.x13{left:548.099781px;}
.x3e{left:557.459777px;}
.x27{left:561.779209px;}
.x25{left:572.759172px;}
.x14{left:590.399764px;}
.x15{left:593.459763px;}
.x26{left:600.299103px;}
.x3b{left:606.779757px;}
.x41{left:613.259755px;}
.x16{left:614.339754px;}
.x17{left:617.399753px;}
.x40{left:629.819748px;}
.x39{left:653.399739px;}
.x1f{left:672.119731px;}
.x20{left:675.179730px;}
.x43{left:681.479727px;}
.x21{left:695.879722px;}
.x22{left:698.939720px;}
.x1{left:738.359705px;}
.x18{left:741.599703px;}
.x19{left:744.659702px;}
.xa{left:765.359694px;}
.x23{left:768.599693px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.345173pt;}
.ls3{letter-spacing:30.236308pt;}
.ls2{letter-spacing:57.132244pt;}
.ws2{word-spacing:-15.999994pt;}
.ws0{word-spacing:-13.279995pt;}
.ws3{word-spacing:-12.639995pt;}
.ws1{word-spacing:0.000000pt;}
._22{margin-left:-2.176083pt;}
._3{margin-left:-1.071617pt;}
._1{width:0.962282pt;}
._d{width:1.901159pt;}
._9{width:3.486312pt;}
._a{width:5.071016pt;}
._5{width:6.650501pt;}
._6{width:7.701439pt;}
._f{width:8.649665pt;}
._b{width:9.627802pt;}
._c{width:10.677714pt;}
._2{width:11.652805pt;}
._4{width:13.280333pt;}
._10{width:14.296741pt;}
._8{width:16.927319pt;}
._e{width:17.839262pt;}
._13{width:19.201136pt;}
._23{width:20.249343pt;}
._20{width:21.551702pt;}
._14{width:22.480382pt;}
._15{width:23.750638pt;}
._21{width:24.727422pt;}
._19{width:25.673924pt;}
._1a{width:28.533591pt;}
._1b{width:29.422710pt;}
._1f{width:30.807494pt;}
._16{width:31.760605pt;}
._17{width:33.383171pt;}
._1c{width:34.290209pt;}
._11{width:35.497935pt;}
._12{width:36.469272pt;}
._7{width:40.773166pt;}
._0{width:48.037677pt;}
._18{width:52.398637pt;}
._24{width:58.765666pt;}
._1d{width:66.378711pt;}
._1e{width:67.280418pt;}
._25{width:70.549335pt;}
._26{width:172.911291pt;}
._27{width:175.635898pt;}
.fs5{font-size:42.879983pt;}
.fs6{font-size:50.559980pt;}
.fs4{font-size:53.119979pt;}
.fs0{font-size:63.999974pt;}
.fs1{font-size:74.879970pt;}
.fs2{font-size:85.119966pt;}
.fs3{font-size:127.999949pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.307446pt;}
.ybb{bottom:98.667961pt;}
.yd6{bottom:101.387959pt;}
.y121{bottom:105.707424pt;}
.y8d{bottom:106.507424pt;}
.y14f{bottom:117.387953pt;}
.y134{bottom:121.387951pt;}
.y70{bottom:121.707951pt;}
.y18{bottom:122.987951pt;}
.y34{bottom:124.267950pt;}
.yba{bottom:126.347949pt;}
.y119{bottom:132.587947pt;}
.y8c{bottom:134.187413pt;}
.yd5{bottom:136.907945pt;}
.y53{bottom:137.707412pt;}
.yf4{bottom:138.347945pt;}
.y14e{bottom:144.907942pt;}
.y6f{bottom:149.387940pt;}
.yb9{bottom:153.867938pt;}
.y133{bottom:157.067937pt;}
.y33{bottom:159.947936pt;}
.y118{bottom:160.267936pt;}
.y17{bottom:160.907936pt;}
.y8b{bottom:161.707402pt;}
.y52{bottom:165.387401pt;}
.yf3{bottom:171.787931pt;}
.yd4{bottom:172.427931pt;}
.y6e{bottom:176.907929pt;}
.yb8{bottom:181.547927pt;}
.y8a{bottom:189.387391pt;}
.y117{bottom:191.947923pt;}
.y132{bottom:192.587923pt;}
.y51{bottom:192.907390pt;}
.yf2{bottom:194.827922pt;}
.y32{bottom:195.467922pt;}
.y16{bottom:196.587921pt;}
.y14d{bottom:200.107920pt;}
.y6d{bottom:204.427918pt;}
.yd3{bottom:208.107917pt;}
.yb7{bottom:209.067916pt;}
.y89{bottom:216.907380pt;}
.y50{bottom:220.427378pt;}
.yf1{bottom:224.107910pt;}
.y100{bottom:224.427910pt;}
.y14c{bottom:227.627909pt;}
.y131{bottom:228.267909pt;}
.y31{bottom:231.147908pt;}
.y15{bottom:232.107907pt;}
.yb6{bottom:236.747905pt;}
.yd2{bottom:243.627903pt;}
.y88{bottom:244.427369pt;}
.y4f{bottom:256.107364pt;}
.y6c{bottom:259.627896pt;}
.yff{bottom:259.947896pt;}
.y14b{bottom:263.307895pt;}
.y130{bottom:263.787894pt;}
.yb5{bottom:264.267894pt;}
.y30{bottom:266.667893pt;}
.y14{bottom:267.787893pt;}
.y87{bottom:272.107358pt;}
.yd1{bottom:279.307888pt;}
.y4e{bottom:283.627353pt;}
.y6b{bottom:287.307885pt;}
.yb4{bottom:291.947883pt;}
.yfe{bottom:295.627882pt;}
.y14a{bottom:298.827880pt;}
.y12f{bottom:299.467880pt;}
.y86{bottom:299.627347pt;}
.y2f{bottom:302.347879pt;}
.y13{bottom:303.307879pt;}
.y9f{bottom:307.627344pt;}
.y4d{bottom:311.307342pt;}
.y6a{bottom:314.827874pt;}
.y149{bottom:326.507869pt;}
.y85{bottom:327.307336pt;}
.yb3{bottom:327.467869pt;}
.yfd{bottom:331.147868pt;}
.y12e{bottom:334.987866pt;}
.y9e{bottom:335.307333pt;}
.y162{bottom:337.227332pt;}
.y2e{bottom:337.867865pt;}
.y4c{bottom:338.827331pt;}
.y12{bottom:338.987864pt;}
.y69{bottom:342.507863pt;}
.yd0{bottom:350.507860pt;}
.y148{bottom:354.027858pt;}
.y84{bottom:354.827325pt;}
.yb2{bottom:355.147858pt;}
.y10f{bottom:361.067856pt;}
.y9d{bottom:362.827322pt;}
.y2d{bottom:365.547854pt;}
.y4b{bottom:366.507320pt;}
.yfc{bottom:366.827853pt;}
.y68{bottom:370.027852pt;}
.y12d{bottom:370.667852pt;}
.y11{bottom:372.587851pt;}
.y161{bottom:372.907318pt;}
.ycf{bottom:378.027849pt;}
.y147{bottom:381.707847pt;}
.y83{bottom:382.507314pt;}
.yb1{bottom:382.667847pt;}
.ye7{bottom:386.347845pt;}
.y10e{bottom:388.587845pt;}
.y9c{bottom:390.507310pt;}
.y4a{bottom:394.027309pt;}
.y10{bottom:395.467842pt;}
.y67{bottom:397.707841pt;}
.y2c{bottom:401.067840pt;}
.yfb{bottom:402.347839pt;}
.y12c{bottom:406.187838pt;}
.y160{bottom:408.427303pt;}
.y82{bottom:410.027303pt;}
.yce{bottom:413.707835pt;}
.y10d{bottom:416.267833pt;}
.y146{bottom:417.227833pt;}
.y9b{bottom:418.027299pt;}
.yb0{bottom:418.347833pt;}
.y49{bottom:421.707298pt;}
.ye6{bottom:421.867831pt;}
.y66{bottom:425.227830pt;}
.yf{bottom:428.587829pt;}
.yfa{bottom:435.947826pt;}
.y2b{bottom:436.747825pt;}
.y81{bottom:437.707292pt;}
.yf0{bottom:440.427824pt;}
.ycd{bottom:441.227824pt;}
.y12b{bottom:441.867823pt;}
.y10c{bottom:443.787822pt;}
.y15f{bottom:444.107289pt;}
.y120{bottom:445.547822pt;}
.ybf{bottom:445.707288pt;}
.yaf{bottom:445.867822pt;}
.y48{bottom:449.227287pt;}
.ye5{bottom:449.547820pt;}
.y65{bottom:452.907819pt;}
.y9a{bottom:453.707285pt;}
.ye{bottom:464.107814pt;}
.yf9{bottom:465.067814pt;}
.y80{bottom:465.227281pt;}
.ycc{bottom:468.907812pt;}
.y2a{bottom:472.267811pt;}
.y11f{bottom:473.067811pt;}
.ybe{bottom:473.227277pt;}
.yae{bottom:473.547811pt;}
.yef{bottom:475.947810pt;}
.y47{bottom:476.907276pt;}
.y12a{bottom:477.387809pt;}
.y10b{bottom:479.467808pt;}
.y15e{bottom:479.627275pt;}
.y145{bottom:480.427808pt;}
.y99{bottom:481.227274pt;}
.ye4{bottom:485.067806pt;}
.y64{bottom:488.427805pt;}
.yd{bottom:499.787800pt;}
.y11e{bottom:500.747800pt;}
.y7f{bottom:500.907266pt;}
.yad{bottom:501.067800pt;}
.y46{bottom:504.427265pt;}
.ycb{bottom:504.427798pt;}
.y10a{bottom:506.987797pt;}
.y29{bottom:507.947797pt;}
.y144{bottom:508.107797pt;}
.y98{bottom:508.907263pt;}
.y129{bottom:509.547796pt;}
.yee{bottom:511.627795pt;}
.y15d{bottom:514.987261pt;}
.ye3{bottom:520.747792pt;}
.y63{bottom:524.107790pt;}
.y11d{bottom:528.267789pt;}
.y7e{bottom:528.427255pt;}
.yac{bottom:528.747789pt;}
.y116{bottom:531.787787pt;}
.y45{bottom:532.107254pt;}
.yca{bottom:532.107787pt;}
.yc{bottom:535.307786pt;}
.y143{bottom:535.627786pt;}
.y97{bottom:536.427252pt;}
.y109{bottom:542.667783pt;}
.y28{bottom:543.467783pt;}
.yed{bottom:547.147781pt;}
.y15c{bottom:550.507246pt;}
.y62{bottom:551.627779pt;}
.y11c{bottom:555.947778pt;}
.y7d{bottom:556.107244pt;}
.ye2{bottom:556.267777pt;}
.y115{bottom:559.307776pt;}
.yc9{bottom:559.627776pt;}
.y142{bottom:563.307775pt;}
.y96{bottom:564.107241pt;}
.yab{bottom:564.267774pt;}
.y44{bottom:567.627240pt;}
.y27{bottom:571.147772pt;}
.yb{bottom:575.307770pt;}
.y108{bottom:578.187769pt;}
.y61{bottom:579.307768pt;}
.yec{bottom:582.667767pt;}
.y7c{bottom:583.627233pt;}
.ye1{bottom:583.947766pt;}
.y15b{bottom:586.187232pt;}
.y114{bottom:586.987765pt;}
.yc8{bottom:587.307765pt;}
.y11b{bottom:589.547764pt;}
.y141{bottom:590.827764pt;}
.y95{bottom:591.627230pt;}
.y43{bottom:595.307229pt;}
.yaa{bottom:597.547761pt;}
.y26{bottom:598.667761pt;}
.y107{bottom:605.867758pt;}
.y60{bottom:606.827757pt;}
.y7b{bottom:611.307222pt;}
.ya{bottom:612.107755pt;}
.y113{bottom:614.507754pt;}
.yc7{bottom:614.827754pt;}
.yeb{bottom:618.347753pt;}
.y140{bottom:618.507753pt;}
.y11a{bottom:618.667753pt;}
.y94{bottom:619.307219pt;}
.ye0{bottom:619.467752pt;}
.y15a{bottom:621.707218pt;}
.ya8{bottom:622.507218pt;}
.ya9{bottom:622.507751pt;}
.y42{bottom:622.827218pt;}
.y25{bottom:626.347749pt;}
.y106{bottom:633.387747pt;}
.y5f{bottom:634.507746pt;}
.y7a{bottom:638.827211pt;}
.y93{bottom:646.827208pt;}
.ydf{bottom:647.147741pt;}
.y9{bottom:648.907740pt;}
.y112{bottom:650.187740pt;}
.y41{bottom:650.507206pt;}
.yc6{bottom:650.507740pt;}
.y24{bottom:653.867738pt;}
.y13f{bottom:654.027738pt;}
.y159{bottom:657.387204pt;}
.ya7{bottom:658.507203pt;}
.y5e{bottom:662.027735pt;}
.y105{bottom:668.747733pt;}
.y79{bottom:674.507197pt;}
.yde{bottom:674.667730pt;}
.y111{bottom:677.707729pt;}
.y40{bottom:678.027195pt;}
.yc5{bottom:678.027729pt;}
.y92{bottom:682.507194pt;}
.y23{bottom:689.387724pt;}
.yea{bottom:689.547724pt;}
.y5d{bottom:689.707724pt;}
.y8{bottom:691.467723pt;}
.y158{bottom:692.907190pt;}
.ya6{bottom:694.027189pt;}
.yf8{bottom:697.067721pt;}
.y78{bottom:702.027186pt;}
.ydd{bottom:702.187719pt;}
.y104{bottom:704.267718pt;}
.y3f{bottom:705.707184pt;}
.yc4{bottom:705.707718pt;}
.y110{bottom:709.547716pt;}
.y91{bottom:710.027183pt;}
.y22{bottom:717.067713pt;}
.y5c{bottom:717.227713pt;}
.ya5{bottom:721.707178pt;}
.ye9{bottom:723.147711pt;}
.yf7{bottom:724.587710pt;}
.y157{bottom:728.587175pt;}
.y77{bottom:729.707175pt;}
.ydc{bottom:729.867708pt;}
.y3e{bottom:733.227173pt;}
.y7{bottom:733.867706pt;}
.y90{bottom:737.707172pt;}
.y103{bottom:740.267704pt;}
.yc3{bottom:740.907704pt;}
.y21{bottom:744.587702pt;}
.y13e{bottom:744.907702pt;}
.ya4{bottom:749.227167pt;}
.ye8{bottom:752.427699pt;}
.y5b{bottom:752.587699pt;}
.y76{bottom:757.227164pt;}
.ydb{bottom:757.387697pt;}
.yf6{bottom:758.187697pt;}
.y3d{bottom:760.907162pt;}
.y156{bottom:764.107161pt;}
.y8f{bottom:765.227161pt;}
.y20{bottom:772.267691pt;}
.y102{bottom:773.707691pt;}
.yc1{bottom:776.587156pt;}
.yc2{bottom:776.587689pt;}
.ya3{bottom:776.907156pt;}
.y13d{bottom:780.427688pt;}
.y75{bottom:784.907153pt;}
.y6{bottom:786.987685pt;}
.yf5{bottom:787.307685pt;}
.y5a{bottom:788.107685pt;}
.y3c{bottom:788.427151pt;}
.yda{bottom:792.747683pt;}
.y8e{bottom:792.907150pt;}
.y155{bottom:799.787147pt;}
.y1f{bottom:799.787680pt;}
.y101{bottom:802.987679pt;}
.ya2{bottom:804.427145pt;}
.yc0{bottom:812.107142pt;}
.ybd{bottom:812.427142pt;}
.y13c{bottom:816.107674pt;}
.y74{bottom:820.427138pt;}
.y59{bottom:823.787670pt;}
.y3b{bottom:824.107137pt;}
.yd9{bottom:826.347669pt;}
.y1e{bottom:827.467669pt;}
.ya1{bottom:832.107134pt;}
.y154{bottom:835.307133pt;}
.ybc{bottom:840.107131pt;}
.y13b{bottom:843.627663pt;}
.y73{bottom:848.107127pt;}
.y128{bottom:849.227660pt;}
.y5{bottom:850.187660pt;}
.y1d{bottom:854.987658pt;}
.y58{bottom:859.307123pt;}
.y3a{bottom:859.627123pt;}
.ya0{bottom:867.627120pt;}
.y153{bottom:870.987118pt;}
.y72{bottom:875.627116pt;}
.y127{bottom:876.907649pt;}
.y13a{bottom:879.307648pt;}
.y1c{bottom:882.667647pt;}
.y39{bottom:887.307112pt;}
.y57{bottom:895.307109pt;}
.y71{bottom:903.307105pt;}
.y126{bottom:904.427638pt;}
.y152{bottom:906.507104pt;}
.y1b{bottom:910.187636pt;}
.y4{bottom:913.387635pt;}
.y38{bottom:914.827101pt;}
.y139{bottom:914.827634pt;}
.yd8{bottom:922.827098pt;}
.y56{bottom:930.827094pt;}
.y125{bottom:932.107627pt;}
.y1a{bottom:937.867625pt;}
.y151{bottom:942.187090pt;}
.y37{bottom:942.507090pt;}
.y138{bottom:942.507623pt;}
.yd7{bottom:950.507086pt;}
.y55{bottom:958.507083pt;}
.y124{bottom:959.627616pt;}
.y3{bottom:968.267613pt;}
.y19{bottom:973.387611pt;}
.y150{bottom:977.707076pt;}
.y137{bottom:977.707609pt;}
.y36{bottom:978.027075pt;}
.y54{bottom:986.027072pt;}
.y123{bottom:993.227603pt;}
.y2{bottom:1010.987596pt;}
.y135{bottom:1013.387061pt;}
.y136{bottom:1013.387595pt;}
.y35{bottom:1013.707061pt;}
.y122{bottom:1016.267593pt;}
.hc{height:36.280945pt;}
.h7{height:39.578224pt;}
.hb{height:43.711983pt;}
.h1{height:44.031982pt;}
.ha{height:46.666861pt;}
.h6{height:49.029740pt;}
.h8{height:57.855977pt;}
.h5{height:59.071976pt;}
.h9{height:59.074110pt;}
.h2{height:69.114212pt;}
.h3{height:78.565729pt;}
.h4{height:118.143953pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:113.439288pt;}
.x44{left:125.439283pt;}
.x45{left:128.639282pt;}
.x7{left:131.679281pt;}
.x48{left:137.439957pt;}
.x46{left:140.159944pt;}
.x29{left:160.639936pt;}
.x31{left:173.439931pt;}
.x37{left:175.839930pt;}
.x2d{left:178.719929pt;}
.x2e{left:181.919927pt;}
.x38{left:185.441224pt;}
.x2f{left:191.519923pt;}
.x32{left:193.759922pt;}
.x2a{left:197.440596pt;}
.x33{left:201.439919pt;}
.x34{left:204.159918pt;}
.x3c{left:206.879917pt;}
.x35{left:222.559911pt;}
.x36{left:225.279910pt;}
.x47{left:232.319907pt;}
.x3a{left:240.799904pt;}
.x8{left:251.039274pt;}
.x2b{left:257.439818pt;}
.x1a{left:267.519893pt;}
.x49{left:278.240421pt;}
.x30{left:297.279881pt;}
.x4a{left:302.240376pt;}
.x6{left:306.079824pt;}
.x24{left:313.119318pt;}
.x4{left:314.239874pt;}
.xb{left:318.719873pt;}
.x9{left:321.599340pt;}
.x42{left:353.119859pt;}
.x5{left:363.999857pt;}
.xc{left:366.719853pt;}
.xd{left:369.439852pt;}
.x3d{left:372.480243pt;}
.x3f{left:373.919850pt;}
.x2c{left:379.042072pt;}
.xe{left:387.839845pt;}
.xf{left:390.719844pt;}
.x2{left:396.799841pt;}
.x28{left:420.479798pt;}
.x1b{left:449.599820pt;}
.x1c{left:452.319819pt;}
.x10{left:454.399818pt;}
.x11{left:457.119817pt;}
.x1d{left:479.679808pt;}
.x1e{left:482.399807pt;}
.x12{left:484.479806pt;}
.x13{left:487.199805pt;}
.x3e{left:495.519802pt;}
.x27{left:499.359297pt;}
.x25{left:509.119264pt;}
.x14{left:524.799790pt;}
.x15{left:527.519789pt;}
.x26{left:533.599203pt;}
.x3b{left:539.359784pt;}
.x41{left:545.119782pt;}
.x16{left:546.079782pt;}
.x17{left:548.799780pt;}
.x40{left:559.839776pt;}
.x39{left:580.799768pt;}
.x1f{left:597.439761pt;}
.x20{left:600.159760pt;}
.x43{left:605.759758pt;}
.x21{left:618.559753pt;}
.x22{left:621.279751pt;}
.x1{left:656.319737pt;}
.x18{left:659.199736pt;}
.x19{left:661.919735pt;}
.xa{left:680.319728pt;}
.x23{left:683.199727pt;}
}




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