
    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_57495b4441d0f2534b200f57.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.974121;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_fc3ba61af241b358633b265e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_b60f5db9dcb5553e5566b15f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010254;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_99d371726cedd89717ef24d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937988;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_113d8449b784f86bf3ec80d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.005400px;}
.ls6{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.006600px;}
.ls2{letter-spacing:0.007200px;}
.ls4{letter-spacing:0.013200px;}
.ls1{letter-spacing:0.024000px;}
.lsa{letter-spacing:0.912000px;}
.ls8{letter-spacing:1.596000px;}
.lsb{letter-spacing:1.632000px;}
.ls7{letter-spacing:1.638000px;}
.ls9{letter-spacing:2.148000px;}
.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;}
}
.ws1{word-spacing:-30.024000px;}
.ws0{word-spacing:-22.500000px;}
.ws6{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.148000px;}
.wsa{word-spacing:-16.638000px;}
.wse{word-spacing:-16.632000px;}
.wsb{word-spacing:-16.596000px;}
.ws5{word-spacing:-16.513200px;}
.ws7{word-spacing:-16.506600px;}
.ws4{word-spacing:-16.500000px;}
.wsd{word-spacing:-15.912000px;}
.ws9{word-spacing:-15.006000px;}
.ws8{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
.wsf{word-spacing:4.276245px;}
._1e{margin-left:-16.899600px;}
._1f{margin-left:-15.576000px;}
._0{margin-left:-9.120000px;}
._16{margin-left:-3.960000px;}
._11{margin-left:-2.679600px;}
._d{margin-left:-1.485000px;}
._4{width:1.155000px;}
._a{width:2.864400px;}
._6{width:4.778400px;}
._8{width:6.454800px;}
._9{width:7.603200px;}
._1{width:9.188400px;}
._7{width:10.585200px;}
._c{width:11.655600px;}
._5{width:12.975600px;}
._14{width:13.978800px;}
._b{width:15.067800px;}
._2a{width:16.097400px;}
._15{width:17.681400px;}
._12{width:18.942000px;}
._1b{width:19.951800px;}
._3{width:21.410400px;}
._13{width:22.902000px;}
._f{width:23.951400px;}
._2{width:25.852200px;}
._24{width:26.921400px;}
._e{width:27.964200px;}
._17{width:29.449200px;}
._19{width:30.967200px;}
._1c{width:32.036400px;}
._26{width:33.043800px;}
._1d{width:34.207800px;}
._18{width:35.283600px;}
._28{width:36.300000px;}
._10{width:37.415400px;}
._21{width:38.491200px;}
._22{width:40.306200px;}
._23{width:41.580000px;}
._20{width:42.736200px;}
._27{width:44.014200px;}
._29{width:45.945000px;}
._2e{width:47.275800px;}
._2d{width:48.991800px;}
._30{width:50.556000px;}
._2b{width:53.097000px;}
._2f{width:55.195800px;}
._1a{width:56.403600px;}
._32{width:58.362000px;}
._31{width:64.836000px;}
._2c{width:114.400800px;}
._25{width:129.261000px;}
.fc3{color:transparent;}
.fc2{color:rgb(32,94,158);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:42.857160px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:120.000000px;}
.fs0{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y40{bottom:27.565350px;}
.y3f{bottom:43.765350px;}
.y37{bottom:56.834700px;}
.y3e{bottom:59.965350px;}
.y9e{bottom:60.295200px;}
.y23{bottom:111.521700px;}
.y18a{bottom:113.442900px;}
.y17e{bottom:114.562500px;}
.y157{bottom:118.559400px;}
.y171{bottom:119.338950px;}
.y188{bottom:119.806650px;}
.y100{bottom:119.891700px;}
.ybc{bottom:120.274350px;}
.y133{bottom:121.606650px;}
.y36{bottom:124.277550px;}
.y1e1{bottom:124.866450px;}
.y113{bottom:125.603550px;}
.y9d{bottom:126.850650px;}
.y74{bottom:127.318500px;}
.y22{bottom:131.321700px;}
.y189{bottom:131.442900px;}
.y1bd{bottom:133.370400px;}
.y17d{bottom:134.362500px;}
.y156{bottom:138.359400px;}
.y170{bottom:139.138950px;}
.y187{bottom:139.606650px;}
.yff{bottom:139.691700px;}
.ybb{bottom:140.074350px;}
.y132{bottom:141.406650px;}
.y35{bottom:144.077550px;}
.y112{bottom:145.403550px;}
.y9c{bottom:146.650650px;}
.y73{bottom:147.118500px;}
.y21{bottom:151.122000px;}
.y1bc{bottom:151.371000px;}
.y17c{bottom:154.162500px;}
.y155{bottom:158.160000px;}
.y16f{bottom:158.938500px;}
.y186{bottom:159.406500px;}
.yfe{bottom:159.492000px;}
.yba{bottom:159.874500px;}
.y131{bottom:161.206500px;}
.y34{bottom:163.878000px;}
.y111{bottom:165.204000px;}
.y9b{bottom:166.450500px;}
.y72{bottom:166.918500px;}
.y1e0{bottom:169.371000px;}
.y20{bottom:170.922000px;}
.y17b{bottom:173.962500px;}
.y14c{bottom:174.738000px;}
.y1bb{bottom:177.874500px;}
.y154{bottom:177.960000px;}
.y16e{bottom:178.738500px;}
.y185{bottom:179.206500px;}
.yfd{bottom:179.292000px;}
.yb9{bottom:179.674500px;}
.y130{bottom:181.006500px;}
.y33{bottom:183.678000px;}
.y110{bottom:185.004000px;}
.y9a{bottom:186.250500px;}
.y71{bottom:186.718500px;}
.y1df{bottom:187.371000px;}
.y1f{bottom:190.722000px;}
.y14b{bottom:190.938000px;}
.y17a{bottom:193.762500px;}
.y153{bottom:197.760000px;}
.y16d{bottom:198.538500px;}
.y184{bottom:199.006500px;}
.yfc{bottom:199.092000px;}
.yb8{bottom:199.474500px;}
.y12f{bottom:200.806500px;}
.y32{bottom:203.478000px;}
.y1ba{bottom:204.378000px;}
.y10f{bottom:204.804000px;}
.y99{bottom:206.050500px;}
.y70{bottom:206.518500px;}
.y14a{bottom:207.138000px;}
.y1e{bottom:210.522000px;}
.y179{bottom:213.562500px;}
.y1de{bottom:213.874500px;}
.y152{bottom:217.560000px;}
.y16c{bottom:218.338500px;}
.y183{bottom:218.806500px;}
.yfb{bottom:218.892000px;}
.yb7{bottom:219.274500px;}
.y12e{bottom:220.606500px;}
.y1b9{bottom:222.378000px;}
.y31{bottom:223.278000px;}
.y149{bottom:223.338000px;}
.y10e{bottom:224.604000px;}
.y98{bottom:225.850500px;}
.y6f{bottom:226.318500px;}
.y1d{bottom:230.322000px;}
.y1dd{bottom:231.874500px;}
.y178{bottom:233.362500px;}
.y151{bottom:237.360000px;}
.y16b{bottom:238.138500px;}
.y182{bottom:238.606500px;}
.yfa{bottom:238.692000px;}
.yb6{bottom:239.074500px;}
.y148{bottom:239.538000px;}
.y12d{bottom:240.406500px;}
.y30{bottom:243.078000px;}
.y10d{bottom:244.404000px;}
.y97{bottom:245.650500px;}
.y6e{bottom:246.118500px;}
.y1b8{bottom:248.881500px;}
.y1dc{bottom:249.874500px;}
.y1c{bottom:250.122000px;}
.y177{bottom:253.162500px;}
.y147{bottom:255.738000px;}
.y150{bottom:257.160000px;}
.y16a{bottom:257.938500px;}
.y181{bottom:258.406500px;}
.yf9{bottom:258.492000px;}
.yb5{bottom:258.874500px;}
.y12c{bottom:260.206500px;}
.y2f{bottom:262.878000px;}
.y10c{bottom:264.204000px;}
.y96{bottom:265.450500px;}
.y6d{bottom:265.918500px;}
.y1b7{bottom:266.881500px;}
.y1db{bottom:267.874500px;}
.y1b{bottom:269.922000px;}
.y176{bottom:272.962500px;}
.y14f{bottom:276.960000px;}
.y169{bottom:277.738500px;}
.y180{bottom:278.206500px;}
.yf8{bottom:278.292000px;}
.yb4{bottom:278.674500px;}
.y2e{bottom:282.678000px;}
.y10b{bottom:284.004000px;}
.y1b6{bottom:284.881500px;}
.y95{bottom:285.250500px;}
.y6c{bottom:285.718500px;}
.y1a{bottom:289.722000px;}
.y12b{bottom:292.762500px;}
.y1da{bottom:294.378000px;}
.y14e{bottom:296.760000px;}
.y168{bottom:297.538500px;}
.y17f{bottom:298.006500px;}
.yf7{bottom:298.092000px;}
.yb3{bottom:298.474500px;}
.y2d{bottom:302.478000px;}
.y1b5{bottom:302.881500px;}
.y10a{bottom:303.804000px;}
.y94{bottom:305.050500px;}
.y6b{bottom:305.518500px;}
.y19{bottom:309.522000px;}
.y1d9{bottom:312.378000px;}
.y12a{bottom:312.562500px;}
.y14d{bottom:316.560000px;}
.y138{bottom:317.806500px;}
.yf6{bottom:317.892000px;}
.yb2{bottom:318.274500px;}
.y1b4{bottom:320.881500px;}
.y2c{bottom:322.278000px;}
.y109{bottom:323.604000px;}
.y93{bottom:324.850500px;}
.y6a{bottom:325.318500px;}
.y18{bottom:329.322000px;}
.y167{bottom:330.094500px;}
.y1d8{bottom:330.378000px;}
.y129{bottom:332.362500px;}
.y137{bottom:337.606500px;}
.yf5{bottom:337.692000px;}
.yb1{bottom:338.074500px;}
.y2b{bottom:342.078000px;}
.y108{bottom:343.404000px;}
.y92{bottom:344.650500px;}
.y69{bottom:345.118500px;}
.y1b3{bottom:347.386500px;}
.y1d7{bottom:348.378000px;}
.y17{bottom:349.122000px;}
.y166{bottom:349.894500px;}
.yd3{bottom:350.830500px;}
.y128{bottom:352.162500px;}
.y136{bottom:357.406500px;}
.yf4{bottom:357.492000px;}
.yb0{bottom:357.874500px;}
.y2a{bottom:361.878000px;}
.y107{bottom:363.204000px;}
.y91{bottom:364.450500px;}
.y68{bottom:364.918500px;}
.y13d{bottom:365.230500px;}
.y1b2{bottom:365.386500px;}
.y1d6{bottom:366.378000px;}
.y16{bottom:368.922000px;}
.y165{bottom:369.694500px;}
.yd2{bottom:370.630500px;}
.y127{bottom:371.962500px;}
.y1f5{bottom:374.881500px;}
.y135{bottom:377.206500px;}
.yf3{bottom:377.292000px;}
.yaf{bottom:377.674500px;}
.y13c{bottom:381.430500px;}
.y29{bottom:381.678000px;}
.y106{bottom:383.004000px;}
.yee{bottom:384.250500px;}
.y175{bottom:384.454500px;}
.y67{bottom:384.718500px;}
.y206{bottom:385.837500px;}
.y15{bottom:388.722000px;}
.y164{bottom:389.494500px;}
.yd1{bottom:390.430500px;}
.y126{bottom:391.762500px;}
.y1b1{bottom:391.890000px;}
.y1d5{bottom:392.881500px;}
.y90{bottom:397.006500px;}
.yf2{bottom:397.092000px;}
.yae{bottom:397.474500px;}
.y13b{bottom:397.630500px;}
.y174{bottom:400.654500px;}
.y28{bottom:401.478000px;}
.y105{bottom:402.804000px;}
.y205{bottom:403.837500px;}
.yed{bottom:404.050500px;}
.y66{bottom:404.518500px;}
.y14{bottom:408.522000px;}
.y163{bottom:409.294500px;}
.y1b0{bottom:409.890000px;}
.yd0{bottom:410.230500px;}
.y1d4{bottom:410.881500px;}
.y125{bottom:411.562500px;}
.y13a{bottom:413.830500px;}
.y8f{bottom:416.806500px;}
.y173{bottom:416.854500px;}
.yf1{bottom:416.892000px;}
.yad{bottom:417.274500px;}
.y27{bottom:421.278000px;}
.y204{bottom:421.837500px;}
.y104{bottom:422.604000px;}
.yec{bottom:423.850500px;}
.y65{bottom:424.318500px;}
.y1af{bottom:427.890000px;}
.y13{bottom:428.322000px;}
.y1d3{bottom:428.881500px;}
.y162{bottom:429.094500px;}
.ycf{bottom:430.030500px;}
.y124{bottom:431.362500px;}
.y172{bottom:433.054500px;}
.y8e{bottom:436.606500px;}
.yf0{bottom:436.692000px;}
.yac{bottom:437.074500px;}
.y1f4{bottom:437.386500px;}
.y203{bottom:439.837500px;}
.y26{bottom:441.078000px;}
.y103{bottom:442.404000px;}
.yeb{bottom:443.650500px;}
.y64{bottom:444.118500px;}
.y139{bottom:446.230500px;}
.y12{bottom:448.122000px;}
.y161{bottom:448.894500px;}
.yce{bottom:449.830500px;}
.y123{bottom:451.162500px;}
.y1ae{bottom:454.393500px;}
.y1d2{bottom:455.386500px;}
.y8d{bottom:456.406500px;}
.yef{bottom:456.492000px;}
.yab{bottom:456.874500px;}
.y202{bottom:457.837500px;}
.y25{bottom:460.878000px;}
.y102{bottom:462.204000px;}
.yea{bottom:463.450500px;}
.y63{bottom:463.918500px;}
.y11{bottom:467.922000px;}
.y160{bottom:468.694500px;}
.ycd{bottom:469.630500px;}
.y122{bottom:470.962500px;}
.y1ad{bottom:472.393500px;}
.y1f3{bottom:473.386500px;}
.y201{bottom:475.837500px;}
.y8c{bottom:476.206500px;}
.yaa{bottom:476.674500px;}
.y24{bottom:480.678000px;}
.y1d1{bottom:481.890000px;}
.y101{bottom:482.004000px;}
.ye9{bottom:483.250500px;}
.y62{bottom:483.718500px;}
.y15f{bottom:488.494500px;}
.ycc{bottom:489.430500px;}
.y1ac{bottom:490.393500px;}
.y1f2{bottom:491.386500px;}
.y200{bottom:493.837500px;}
.y8b{bottom:496.006500px;}
.ya9{bottom:496.474500px;}
.y1d0{bottom:499.890000px;}
.y10{bottom:500.478000px;}
.ye8{bottom:503.050500px;}
.y61{bottom:503.518500px;}
.y1ab{bottom:508.393500px;}
.ycb{bottom:509.230500px;}
.y1f1{bottom:509.386500px;}
.y1ff{bottom:511.837500px;}
.y8a{bottom:515.806500px;}
.ya8{bottom:516.274500px;}
.y1cf{bottom:517.890000px;}
.yf{bottom:520.278000px;}
.y15e{bottom:521.050500px;}
.ye7{bottom:522.850500px;}
.y60{bottom:523.318500px;}
.y11a{bottom:524.634000px;}
.y1aa{bottom:526.393500px;}
.yca{bottom:529.030500px;}
.y1fe{bottom:529.837500px;}
.y89{bottom:535.606500px;}
.y1ce{bottom:535.890000px;}
.ya7{bottom:536.074500px;}
.ye{bottom:540.078000px;}
.y119{bottom:540.834000px;}
.ye6{bottom:542.650500px;}
.y146{bottom:542.914500px;}
.y5f{bottom:543.118500px;}
.y1a9{bottom:544.393500px;}
.y1fd{bottom:547.837500px;}
.yc9{bottom:548.830500px;}
.y1f0{bottom:553.890000px;}
.y121{bottom:554.068500px;}
.y88{bottom:555.406500px;}
.ya6{bottom:555.874500px;}
.y118{bottom:557.034000px;}
.y145{bottom:559.114500px;}
.yd{bottom:559.878000px;}
.y1cd{bottom:562.393500px;}
.ye5{bottom:562.450500px;}
.y5e{bottom:562.918500px;}
.y1fc{bottom:565.837500px;}
.yc8{bottom:568.630500px;}
.y120{bottom:570.268500px;}
.y1a8{bottom:570.898500px;}
.y1ef{bottom:571.890000px;}
.y117{bottom:573.234000px;}
.y87{bottom:575.206500px;}
.y144{bottom:575.314500px;}
.ya5{bottom:575.674500px;}
.yc{bottom:579.678000px;}
.y1cc{bottom:580.393500px;}
.ye4{bottom:582.250500px;}
.y5d{bottom:582.718500px;}
.y1fb{bottom:583.837500px;}
.y11f{bottom:586.468500px;}
.yc7{bottom:588.430500px;}
.y1a7{bottom:588.898500px;}
.y116{bottom:589.434000px;}
.y1ee{bottom:589.890000px;}
.y143{bottom:591.514500px;}
.y86{bottom:595.006500px;}
.ya4{bottom:595.474500px;}
.y1cb{bottom:598.393500px;}
.yb{bottom:599.478000px;}
.ye3{bottom:602.050500px;}
.y5c{bottom:602.518500px;}
.y11e{bottom:602.668500px;}
.y115{bottom:605.634000px;}
.y1a6{bottom:606.898500px;}
.y142{bottom:607.714500px;}
.y134{bottom:607.762500px;}
.y1ed{bottom:607.890000px;}
.yc6{bottom:608.230500px;}
.y1fa{bottom:614.593500px;}
.y85{bottom:614.806500px;}
.ya3{bottom:615.274500px;}
.y1ca{bottom:616.393500px;}
.y11d{bottom:618.868500px;}
.ya{bottom:619.278000px;}
.y114{bottom:621.834000px;}
.ye2{bottom:621.850500px;}
.y5b{bottom:622.318500px;}
.y141{bottom:623.914500px;}
.y1a5{bottom:624.898500px;}
.yc5{bottom:628.030500px;}
.y1ec{bottom:634.393500px;}
.y84{bottom:634.606500px;}
.y11c{bottom:635.068500px;}
.ya2{bottom:635.074500px;}
.y9{bottom:639.078000px;}
.y140{bottom:640.114500px;}
.ye1{bottom:641.650500px;}
.y5a{bottom:642.118500px;}
.y1a4{bottom:642.898500px;}
.yc4{bottom:647.830500px;}
.y11b{bottom:651.268500px;}
.y1eb{bottom:652.393500px;}
.y83{bottom:654.406500px;}
.ya1{bottom:654.874500px;}
.y8{bottom:658.878000px;}
.y1c9{bottom:660.898500px;}
.ye0{bottom:661.450500px;}
.y59{bottom:661.918500px;}
.yc3{bottom:667.630500px;}
.y1a3{bottom:669.402000px;}
.y82{bottom:674.206500px;}
.ya0{bottom:674.674500px;}
.y7{bottom:678.678000px;}
.y1c8{bottom:678.898500px;}
.ydf{bottom:681.250500px;}
.y58{bottom:681.718500px;}
.y1a2{bottom:687.402000px;}
.yc2{bottom:687.430500px;}
.y81{bottom:694.006500px;}
.y9f{bottom:694.474500px;}
.y1ea{bottom:696.898500px;}
.y6{bottom:698.478000px;}
.yde{bottom:701.050500px;}
.y15d{bottom:701.518500px;}
.y1a1{bottom:705.402000px;}
.yc1{bottom:707.230500px;}
.y13f{bottom:713.806500px;}
.y57{bottom:714.274500px;}
.y5{bottom:718.278000px;}
.ydd{bottom:720.850500px;}
.y15c{bottom:721.318500px;}
.y1c7{bottom:723.402000px;}
.y80{bottom:726.562500px;}
.yc0{bottom:727.030500px;}
.y1a0{bottom:731.905500px;}
.y56{bottom:734.074500px;}
.y4{bottom:738.078000px;}
.ydc{bottom:740.650500px;}
.y15b{bottom:741.118500px;}
.y1c6{bottom:741.402000px;}
.y13e{bottom:746.362500px;}
.ybf{bottom:746.830500px;}
.y19f{bottom:749.905500px;}
.y55{bottom:753.874500px;}
.y3{bottom:757.878000px;}
.y1f9{bottom:759.402000px;}
.ydb{bottom:760.450500px;}
.y15a{bottom:760.918500px;}
.ybe{bottom:766.630500px;}
.y19e{bottom:767.905500px;}
.y54{bottom:773.674500px;}
.yda{bottom:780.250500px;}
.y159{bottom:780.718500px;}
.y19d{bottom:785.905500px;}
.ybd{bottom:786.430500px;}
.y53{bottom:793.474500px;}
.y158{bottom:800.518500px;}
.y19c{bottom:803.905500px;}
.y7f{bottom:806.230500px;}
.yd9{bottom:812.806500px;}
.y52{bottom:813.274500px;}
.y19b{bottom:821.905500px;}
.y7e{bottom:826.030500px;}
.y51{bottom:833.074500px;}
.y19a{bottom:839.905500px;}
.y7d{bottom:845.830500px;}
.y1c5{bottom:848.409000px;}
.y50{bottom:852.874500px;}
.y1e9{bottom:857.905500px;}
.y3d{bottom:859.635000px;}
.y7c{bottom:865.630500px;}
.y199{bottom:866.409000px;}
.y4f{bottom:872.674500px;}
.y1f8{bottom:875.905500px;}
.y3c{bottom:877.635000px;}
.y198{bottom:884.409000px;}
.y7b{bottom:885.430500px;}
.y4e{bottom:892.474500px;}
.y1c4{bottom:892.914000px;}
.y1e8{bottom:902.409000px;}
.y7a{bottom:905.230500px;}
.y197{bottom:910.914000px;}
.y4d{bottom:912.274500px;}
.y3b{bottom:913.635000px;}
.y1e7{bottom:920.409000px;}
.y79{bottom:925.030500px;}
.y196{bottom:928.914000px;}
.y4c{bottom:932.074500px;}
.y1e6{bottom:938.409000px;}
.y78{bottom:944.830500px;}
.y195{bottom:946.914000px;}
.y4b{bottom:951.874500px;}
.y1c3{bottom:955.417500px;}
.y1f7{bottom:956.409000px;}
.y3a{bottom:956.835000px;}
.y77{bottom:964.630500px;}
.y1e5{bottom:964.914000px;}
.y4a{bottom:971.674500px;}
.y194{bottom:973.417500px;}
.y1e4{bottom:982.914000px;}
.y76{bottom:984.430500px;}
.y193{bottom:991.417500px;}
.y49{bottom:991.474500px;}
.y39{bottom:992.835000px;}
.y1e3{bottom:1000.914000px;}
.y75{bottom:1004.230500px;}
.y192{bottom:1009.417500px;}
.yd8{bottom:1011.274500px;}
.y1e2{bottom:1018.914000px;}
.y48{bottom:1024.030500px;}
.y191{bottom:1027.417500px;}
.y38{bottom:1028.835000px;}
.yd7{bottom:1031.074500px;}
.y1f6{bottom:1036.914000px;}
.y47{bottom:1043.830500px;}
.y190{bottom:1045.417500px;}
.yd6{bottom:1050.874500px;}
.y1c2{bottom:1053.921000px;}
.y18f{bottom:1063.417500px;}
.y46{bottom:1063.630500px;}
.yd5{bottom:1070.674500px;}
.y1c1{bottom:1071.921000px;}
.y18e{bottom:1081.417500px;}
.y45{bottom:1083.430500px;}
.y1c0{bottom:1089.921000px;}
.yd4{bottom:1090.474500px;}
.y18d{bottom:1099.417500px;}
.y2{bottom:1100.785500px;}
.y44{bottom:1103.230500px;}
.y1bf{bottom:1107.921000px;}
.y18c{bottom:1117.417500px;}
.y43{bottom:1123.030500px;}
.y1be{bottom:1125.921000px;}
.y42{bottom:1142.830500px;}
.y18b{bottom:1143.921000px;}
.y1{bottom:1159.671000px;}
.y41{bottom:1203.604500px;}
.ha{height:39.313477px;}
.h9{height:39.366211px;}
.h8{height:43.535156px;}
.hd{height:43.681641px;}
.hc{height:43.740234px;}
.h4{height:48.049805px;}
.h5{height:48.114258px;}
.h7{height:52.417969px;}
.hb{height:52.488281px;}
.h3{height:65.610352px;}
.h6{height:87.480469px;}
.h2{height:171.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:44.645700px;}
.xc{left:46.771650px;}
.x4{left:108.000000px;}
.x7{left:118.634250px;}
.x12{left:125.007900px;}
.x1{left:127.657350px;}
.x3{left:129.259800px;}
.x2{left:131.834700px;}
.x8{left:138.512250px;}
.x9{left:256.717500px;}
.xb{left:345.175500px;}
.xa{left:355.803000px;}
.x5{left:467.716500px;}
.x11{left:484.725000px;}
.xd{left:488.976000px;}
.xf{left:561.252000px;}
.x10{left:833.893500px;}
.x6{left:836.019000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.004800pt;}
.ls6{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.005867pt;}
.ls2{letter-spacing:0.006400pt;}
.ls4{letter-spacing:0.011733pt;}
.ls1{letter-spacing:0.021333pt;}
.lsa{letter-spacing:0.810667pt;}
.ls8{letter-spacing:1.418667pt;}
.lsb{letter-spacing:1.450667pt;}
.ls7{letter-spacing:1.456000pt;}
.ls9{letter-spacing:1.909333pt;}
.ws1{word-spacing:-26.688000pt;}
.ws0{word-spacing:-20.000000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.242667pt;}
.wsa{word-spacing:-14.789333pt;}
.wse{word-spacing:-14.784000pt;}
.wsb{word-spacing:-14.752000pt;}
.ws5{word-spacing:-14.678400pt;}
.ws7{word-spacing:-14.672533pt;}
.ws4{word-spacing:-14.666667pt;}
.wsd{word-spacing:-14.144000pt;}
.ws9{word-spacing:-13.338667pt;}
.ws8{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
.wsf{word-spacing:3.801107pt;}
._1e{margin-left:-15.021867pt;}
._1f{margin-left:-13.845333pt;}
._0{margin-left:-8.106667pt;}
._16{margin-left:-3.520000pt;}
._11{margin-left:-2.381867pt;}
._d{margin-left:-1.320000pt;}
._4{width:1.026667pt;}
._a{width:2.546133pt;}
._6{width:4.247467pt;}
._8{width:5.737600pt;}
._9{width:6.758400pt;}
._1{width:8.167467pt;}
._7{width:9.409067pt;}
._c{width:10.360533pt;}
._5{width:11.533867pt;}
._14{width:12.425600pt;}
._b{width:13.393600pt;}
._2a{width:14.308800pt;}
._15{width:15.716800pt;}
._12{width:16.837333pt;}
._1b{width:17.734933pt;}
._3{width:19.031467pt;}
._13{width:20.357333pt;}
._f{width:21.290133pt;}
._2{width:22.979733pt;}
._24{width:23.930133pt;}
._e{width:24.857067pt;}
._17{width:26.177067pt;}
._19{width:27.526400pt;}
._1c{width:28.476800pt;}
._26{width:29.372267pt;}
._1d{width:30.406933pt;}
._18{width:31.363200pt;}
._28{width:32.266667pt;}
._10{width:33.258133pt;}
._21{width:34.214400pt;}
._22{width:35.827733pt;}
._23{width:36.960000pt;}
._20{width:37.987733pt;}
._27{width:39.123733pt;}
._29{width:40.840000pt;}
._2e{width:42.022933pt;}
._2d{width:43.548267pt;}
._30{width:44.938667pt;}
._2b{width:47.197333pt;}
._2f{width:49.062933pt;}
._1a{width:50.136533pt;}
._32{width:51.877333pt;}
._31{width:57.632000pt;}
._2c{width:101.689600pt;}
._25{width:114.898667pt;}
.fs7{font-size:38.095253pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:106.666667pt;}
.fs0{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:24.502533pt;}
.y3f{bottom:38.902533pt;}
.y37{bottom:50.519733pt;}
.y3e{bottom:53.302533pt;}
.y9e{bottom:53.595733pt;}
.y23{bottom:99.130400pt;}
.y18a{bottom:100.838133pt;}
.y17e{bottom:101.833333pt;}
.y157{bottom:105.386133pt;}
.y171{bottom:106.079067pt;}
.y188{bottom:106.494800pt;}
.y100{bottom:106.570400pt;}
.ybc{bottom:106.910533pt;}
.y133{bottom:108.094800pt;}
.y36{bottom:110.468933pt;}
.y1e1{bottom:110.992400pt;}
.y113{bottom:111.647600pt;}
.y9d{bottom:112.756133pt;}
.y74{bottom:113.172000pt;}
.y22{bottom:116.730400pt;}
.y189{bottom:116.838133pt;}
.y1bd{bottom:118.551467pt;}
.y17d{bottom:119.433333pt;}
.y156{bottom:122.986133pt;}
.y170{bottom:123.679067pt;}
.y187{bottom:124.094800pt;}
.yff{bottom:124.170400pt;}
.ybb{bottom:124.510533pt;}
.y132{bottom:125.694800pt;}
.y35{bottom:128.068933pt;}
.y112{bottom:129.247600pt;}
.y9c{bottom:130.356133pt;}
.y73{bottom:130.772000pt;}
.y21{bottom:134.330667pt;}
.y1bc{bottom:134.552000pt;}
.y17c{bottom:137.033333pt;}
.y155{bottom:140.586667pt;}
.y16f{bottom:141.278667pt;}
.y186{bottom:141.694667pt;}
.yfe{bottom:141.770667pt;}
.yba{bottom:142.110667pt;}
.y131{bottom:143.294667pt;}
.y34{bottom:145.669333pt;}
.y111{bottom:146.848000pt;}
.y9b{bottom:147.956000pt;}
.y72{bottom:148.372000pt;}
.y1e0{bottom:150.552000pt;}
.y20{bottom:151.930667pt;}
.y17b{bottom:154.633333pt;}
.y14c{bottom:155.322667pt;}
.y1bb{bottom:158.110667pt;}
.y154{bottom:158.186667pt;}
.y16e{bottom:158.878667pt;}
.y185{bottom:159.294667pt;}
.yfd{bottom:159.370667pt;}
.yb9{bottom:159.710667pt;}
.y130{bottom:160.894667pt;}
.y33{bottom:163.269333pt;}
.y110{bottom:164.448000pt;}
.y9a{bottom:165.556000pt;}
.y71{bottom:165.972000pt;}
.y1df{bottom:166.552000pt;}
.y1f{bottom:169.530667pt;}
.y14b{bottom:169.722667pt;}
.y17a{bottom:172.233333pt;}
.y153{bottom:175.786667pt;}
.y16d{bottom:176.478667pt;}
.y184{bottom:176.894667pt;}
.yfc{bottom:176.970667pt;}
.yb8{bottom:177.310667pt;}
.y12f{bottom:178.494667pt;}
.y32{bottom:180.869333pt;}
.y1ba{bottom:181.669333pt;}
.y10f{bottom:182.048000pt;}
.y99{bottom:183.156000pt;}
.y70{bottom:183.572000pt;}
.y14a{bottom:184.122667pt;}
.y1e{bottom:187.130667pt;}
.y179{bottom:189.833333pt;}
.y1de{bottom:190.110667pt;}
.y152{bottom:193.386667pt;}
.y16c{bottom:194.078667pt;}
.y183{bottom:194.494667pt;}
.yfb{bottom:194.570667pt;}
.yb7{bottom:194.910667pt;}
.y12e{bottom:196.094667pt;}
.y1b9{bottom:197.669333pt;}
.y31{bottom:198.469333pt;}
.y149{bottom:198.522667pt;}
.y10e{bottom:199.648000pt;}
.y98{bottom:200.756000pt;}
.y6f{bottom:201.172000pt;}
.y1d{bottom:204.730667pt;}
.y1dd{bottom:206.110667pt;}
.y178{bottom:207.433333pt;}
.y151{bottom:210.986667pt;}
.y16b{bottom:211.678667pt;}
.y182{bottom:212.094667pt;}
.yfa{bottom:212.170667pt;}
.yb6{bottom:212.510667pt;}
.y148{bottom:212.922667pt;}
.y12d{bottom:213.694667pt;}
.y30{bottom:216.069333pt;}
.y10d{bottom:217.248000pt;}
.y97{bottom:218.356000pt;}
.y6e{bottom:218.772000pt;}
.y1b8{bottom:221.228000pt;}
.y1dc{bottom:222.110667pt;}
.y1c{bottom:222.330667pt;}
.y177{bottom:225.033333pt;}
.y147{bottom:227.322667pt;}
.y150{bottom:228.586667pt;}
.y16a{bottom:229.278667pt;}
.y181{bottom:229.694667pt;}
.yf9{bottom:229.770667pt;}
.yb5{bottom:230.110667pt;}
.y12c{bottom:231.294667pt;}
.y2f{bottom:233.669333pt;}
.y10c{bottom:234.848000pt;}
.y96{bottom:235.956000pt;}
.y6d{bottom:236.372000pt;}
.y1b7{bottom:237.228000pt;}
.y1db{bottom:238.110667pt;}
.y1b{bottom:239.930667pt;}
.y176{bottom:242.633333pt;}
.y14f{bottom:246.186667pt;}
.y169{bottom:246.878667pt;}
.y180{bottom:247.294667pt;}
.yf8{bottom:247.370667pt;}
.yb4{bottom:247.710667pt;}
.y2e{bottom:251.269333pt;}
.y10b{bottom:252.448000pt;}
.y1b6{bottom:253.228000pt;}
.y95{bottom:253.556000pt;}
.y6c{bottom:253.972000pt;}
.y1a{bottom:257.530667pt;}
.y12b{bottom:260.233333pt;}
.y1da{bottom:261.669333pt;}
.y14e{bottom:263.786667pt;}
.y168{bottom:264.478667pt;}
.y17f{bottom:264.894667pt;}
.yf7{bottom:264.970667pt;}
.yb3{bottom:265.310667pt;}
.y2d{bottom:268.869333pt;}
.y1b5{bottom:269.228000pt;}
.y10a{bottom:270.048000pt;}
.y94{bottom:271.156000pt;}
.y6b{bottom:271.572000pt;}
.y19{bottom:275.130667pt;}
.y1d9{bottom:277.669333pt;}
.y12a{bottom:277.833333pt;}
.y14d{bottom:281.386667pt;}
.y138{bottom:282.494667pt;}
.yf6{bottom:282.570667pt;}
.yb2{bottom:282.910667pt;}
.y1b4{bottom:285.228000pt;}
.y2c{bottom:286.469333pt;}
.y109{bottom:287.648000pt;}
.y93{bottom:288.756000pt;}
.y6a{bottom:289.172000pt;}
.y18{bottom:292.730667pt;}
.y167{bottom:293.417333pt;}
.y1d8{bottom:293.669333pt;}
.y129{bottom:295.433333pt;}
.y137{bottom:300.094667pt;}
.yf5{bottom:300.170667pt;}
.yb1{bottom:300.510667pt;}
.y2b{bottom:304.069333pt;}
.y108{bottom:305.248000pt;}
.y92{bottom:306.356000pt;}
.y69{bottom:306.772000pt;}
.y1b3{bottom:308.788000pt;}
.y1d7{bottom:309.669333pt;}
.y17{bottom:310.330667pt;}
.y166{bottom:311.017333pt;}
.yd3{bottom:311.849333pt;}
.y128{bottom:313.033333pt;}
.y136{bottom:317.694667pt;}
.yf4{bottom:317.770667pt;}
.yb0{bottom:318.110667pt;}
.y2a{bottom:321.669333pt;}
.y107{bottom:322.848000pt;}
.y91{bottom:323.956000pt;}
.y68{bottom:324.372000pt;}
.y13d{bottom:324.649333pt;}
.y1b2{bottom:324.788000pt;}
.y1d6{bottom:325.669333pt;}
.y16{bottom:327.930667pt;}
.y165{bottom:328.617333pt;}
.yd2{bottom:329.449333pt;}
.y127{bottom:330.633333pt;}
.y1f5{bottom:333.228000pt;}
.y135{bottom:335.294667pt;}
.yf3{bottom:335.370667pt;}
.yaf{bottom:335.710667pt;}
.y13c{bottom:339.049333pt;}
.y29{bottom:339.269333pt;}
.y106{bottom:340.448000pt;}
.yee{bottom:341.556000pt;}
.y175{bottom:341.737333pt;}
.y67{bottom:341.972000pt;}
.y206{bottom:342.966667pt;}
.y15{bottom:345.530667pt;}
.y164{bottom:346.217333pt;}
.yd1{bottom:347.049333pt;}
.y126{bottom:348.233333pt;}
.y1b1{bottom:348.346667pt;}
.y1d5{bottom:349.228000pt;}
.y90{bottom:352.894667pt;}
.yf2{bottom:352.970667pt;}
.yae{bottom:353.310667pt;}
.y13b{bottom:353.449333pt;}
.y174{bottom:356.137333pt;}
.y28{bottom:356.869333pt;}
.y105{bottom:358.048000pt;}
.y205{bottom:358.966667pt;}
.yed{bottom:359.156000pt;}
.y66{bottom:359.572000pt;}
.y14{bottom:363.130667pt;}
.y163{bottom:363.817333pt;}
.y1b0{bottom:364.346667pt;}
.yd0{bottom:364.649333pt;}
.y1d4{bottom:365.228000pt;}
.y125{bottom:365.833333pt;}
.y13a{bottom:367.849333pt;}
.y8f{bottom:370.494667pt;}
.y173{bottom:370.537333pt;}
.yf1{bottom:370.570667pt;}
.yad{bottom:370.910667pt;}
.y27{bottom:374.469333pt;}
.y204{bottom:374.966667pt;}
.y104{bottom:375.648000pt;}
.yec{bottom:376.756000pt;}
.y65{bottom:377.172000pt;}
.y1af{bottom:380.346667pt;}
.y13{bottom:380.730667pt;}
.y1d3{bottom:381.228000pt;}
.y162{bottom:381.417333pt;}
.ycf{bottom:382.249333pt;}
.y124{bottom:383.433333pt;}
.y172{bottom:384.937333pt;}
.y8e{bottom:388.094667pt;}
.yf0{bottom:388.170667pt;}
.yac{bottom:388.510667pt;}
.y1f4{bottom:388.788000pt;}
.y203{bottom:390.966667pt;}
.y26{bottom:392.069333pt;}
.y103{bottom:393.248000pt;}
.yeb{bottom:394.356000pt;}
.y64{bottom:394.772000pt;}
.y139{bottom:396.649333pt;}
.y12{bottom:398.330667pt;}
.y161{bottom:399.017333pt;}
.yce{bottom:399.849333pt;}
.y123{bottom:401.033333pt;}
.y1ae{bottom:403.905333pt;}
.y1d2{bottom:404.788000pt;}
.y8d{bottom:405.694667pt;}
.yef{bottom:405.770667pt;}
.yab{bottom:406.110667pt;}
.y202{bottom:406.966667pt;}
.y25{bottom:409.669333pt;}
.y102{bottom:410.848000pt;}
.yea{bottom:411.956000pt;}
.y63{bottom:412.372000pt;}
.y11{bottom:415.930667pt;}
.y160{bottom:416.617333pt;}
.ycd{bottom:417.449333pt;}
.y122{bottom:418.633333pt;}
.y1ad{bottom:419.905333pt;}
.y1f3{bottom:420.788000pt;}
.y201{bottom:422.966667pt;}
.y8c{bottom:423.294667pt;}
.yaa{bottom:423.710667pt;}
.y24{bottom:427.269333pt;}
.y1d1{bottom:428.346667pt;}
.y101{bottom:428.448000pt;}
.ye9{bottom:429.556000pt;}
.y62{bottom:429.972000pt;}
.y15f{bottom:434.217333pt;}
.ycc{bottom:435.049333pt;}
.y1ac{bottom:435.905333pt;}
.y1f2{bottom:436.788000pt;}
.y200{bottom:438.966667pt;}
.y8b{bottom:440.894667pt;}
.ya9{bottom:441.310667pt;}
.y1d0{bottom:444.346667pt;}
.y10{bottom:444.869333pt;}
.ye8{bottom:447.156000pt;}
.y61{bottom:447.572000pt;}
.y1ab{bottom:451.905333pt;}
.ycb{bottom:452.649333pt;}
.y1f1{bottom:452.788000pt;}
.y1ff{bottom:454.966667pt;}
.y8a{bottom:458.494667pt;}
.ya8{bottom:458.910667pt;}
.y1cf{bottom:460.346667pt;}
.yf{bottom:462.469333pt;}
.y15e{bottom:463.156000pt;}
.ye7{bottom:464.756000pt;}
.y60{bottom:465.172000pt;}
.y11a{bottom:466.341333pt;}
.y1aa{bottom:467.905333pt;}
.yca{bottom:470.249333pt;}
.y1fe{bottom:470.966667pt;}
.y89{bottom:476.094667pt;}
.y1ce{bottom:476.346667pt;}
.ya7{bottom:476.510667pt;}
.ye{bottom:480.069333pt;}
.y119{bottom:480.741333pt;}
.ye6{bottom:482.356000pt;}
.y146{bottom:482.590667pt;}
.y5f{bottom:482.772000pt;}
.y1a9{bottom:483.905333pt;}
.y1fd{bottom:486.966667pt;}
.yc9{bottom:487.849333pt;}
.y1f0{bottom:492.346667pt;}
.y121{bottom:492.505333pt;}
.y88{bottom:493.694667pt;}
.ya6{bottom:494.110667pt;}
.y118{bottom:495.141333pt;}
.y145{bottom:496.990667pt;}
.yd{bottom:497.669333pt;}
.y1cd{bottom:499.905333pt;}
.ye5{bottom:499.956000pt;}
.y5e{bottom:500.372000pt;}
.y1fc{bottom:502.966667pt;}
.yc8{bottom:505.449333pt;}
.y120{bottom:506.905333pt;}
.y1a8{bottom:507.465333pt;}
.y1ef{bottom:508.346667pt;}
.y117{bottom:509.541333pt;}
.y87{bottom:511.294667pt;}
.y144{bottom:511.390667pt;}
.ya5{bottom:511.710667pt;}
.yc{bottom:515.269333pt;}
.y1cc{bottom:515.905333pt;}
.ye4{bottom:517.556000pt;}
.y5d{bottom:517.972000pt;}
.y1fb{bottom:518.966667pt;}
.y11f{bottom:521.305333pt;}
.yc7{bottom:523.049333pt;}
.y1a7{bottom:523.465333pt;}
.y116{bottom:523.941333pt;}
.y1ee{bottom:524.346667pt;}
.y143{bottom:525.790667pt;}
.y86{bottom:528.894667pt;}
.ya4{bottom:529.310667pt;}
.y1cb{bottom:531.905333pt;}
.yb{bottom:532.869333pt;}
.ye3{bottom:535.156000pt;}
.y5c{bottom:535.572000pt;}
.y11e{bottom:535.705333pt;}
.y115{bottom:538.341333pt;}
.y1a6{bottom:539.465333pt;}
.y142{bottom:540.190667pt;}
.y134{bottom:540.233333pt;}
.y1ed{bottom:540.346667pt;}
.yc6{bottom:540.649333pt;}
.y1fa{bottom:546.305333pt;}
.y85{bottom:546.494667pt;}
.ya3{bottom:546.910667pt;}
.y1ca{bottom:547.905333pt;}
.y11d{bottom:550.105333pt;}
.ya{bottom:550.469333pt;}
.y114{bottom:552.741333pt;}
.ye2{bottom:552.756000pt;}
.y5b{bottom:553.172000pt;}
.y141{bottom:554.590667pt;}
.y1a5{bottom:555.465333pt;}
.yc5{bottom:558.249333pt;}
.y1ec{bottom:563.905333pt;}
.y84{bottom:564.094667pt;}
.y11c{bottom:564.505333pt;}
.ya2{bottom:564.510667pt;}
.y9{bottom:568.069333pt;}
.y140{bottom:568.990667pt;}
.ye1{bottom:570.356000pt;}
.y5a{bottom:570.772000pt;}
.y1a4{bottom:571.465333pt;}
.yc4{bottom:575.849333pt;}
.y11b{bottom:578.905333pt;}
.y1eb{bottom:579.905333pt;}
.y83{bottom:581.694667pt;}
.ya1{bottom:582.110667pt;}
.y8{bottom:585.669333pt;}
.y1c9{bottom:587.465333pt;}
.ye0{bottom:587.956000pt;}
.y59{bottom:588.372000pt;}
.yc3{bottom:593.449333pt;}
.y1a3{bottom:595.024000pt;}
.y82{bottom:599.294667pt;}
.ya0{bottom:599.710667pt;}
.y7{bottom:603.269333pt;}
.y1c8{bottom:603.465333pt;}
.ydf{bottom:605.556000pt;}
.y58{bottom:605.972000pt;}
.y1a2{bottom:611.024000pt;}
.yc2{bottom:611.049333pt;}
.y81{bottom:616.894667pt;}
.y9f{bottom:617.310667pt;}
.y1ea{bottom:619.465333pt;}
.y6{bottom:620.869333pt;}
.yde{bottom:623.156000pt;}
.y15d{bottom:623.572000pt;}
.y1a1{bottom:627.024000pt;}
.yc1{bottom:628.649333pt;}
.y13f{bottom:634.494667pt;}
.y57{bottom:634.910667pt;}
.y5{bottom:638.469333pt;}
.ydd{bottom:640.756000pt;}
.y15c{bottom:641.172000pt;}
.y1c7{bottom:643.024000pt;}
.y80{bottom:645.833333pt;}
.yc0{bottom:646.249333pt;}
.y1a0{bottom:650.582667pt;}
.y56{bottom:652.510667pt;}
.y4{bottom:656.069333pt;}
.ydc{bottom:658.356000pt;}
.y15b{bottom:658.772000pt;}
.y1c6{bottom:659.024000pt;}
.y13e{bottom:663.433333pt;}
.ybf{bottom:663.849333pt;}
.y19f{bottom:666.582667pt;}
.y55{bottom:670.110667pt;}
.y3{bottom:673.669333pt;}
.y1f9{bottom:675.024000pt;}
.ydb{bottom:675.956000pt;}
.y15a{bottom:676.372000pt;}
.ybe{bottom:681.449333pt;}
.y19e{bottom:682.582667pt;}
.y54{bottom:687.710667pt;}
.yda{bottom:693.556000pt;}
.y159{bottom:693.972000pt;}
.y19d{bottom:698.582667pt;}
.ybd{bottom:699.049333pt;}
.y53{bottom:705.310667pt;}
.y158{bottom:711.572000pt;}
.y19c{bottom:714.582667pt;}
.y7f{bottom:716.649333pt;}
.yd9{bottom:722.494667pt;}
.y52{bottom:722.910667pt;}
.y19b{bottom:730.582667pt;}
.y7e{bottom:734.249333pt;}
.y51{bottom:740.510667pt;}
.y19a{bottom:746.582667pt;}
.y7d{bottom:751.849333pt;}
.y1c5{bottom:754.141333pt;}
.y50{bottom:758.110667pt;}
.y1e9{bottom:762.582667pt;}
.y3d{bottom:764.120000pt;}
.y7c{bottom:769.449333pt;}
.y199{bottom:770.141333pt;}
.y4f{bottom:775.710667pt;}
.y1f8{bottom:778.582667pt;}
.y3c{bottom:780.120000pt;}
.y198{bottom:786.141333pt;}
.y7b{bottom:787.049333pt;}
.y4e{bottom:793.310667pt;}
.y1c4{bottom:793.701333pt;}
.y1e8{bottom:802.141333pt;}
.y7a{bottom:804.649333pt;}
.y197{bottom:809.701333pt;}
.y4d{bottom:810.910667pt;}
.y3b{bottom:812.120000pt;}
.y1e7{bottom:818.141333pt;}
.y79{bottom:822.249333pt;}
.y196{bottom:825.701333pt;}
.y4c{bottom:828.510667pt;}
.y1e6{bottom:834.141333pt;}
.y78{bottom:839.849333pt;}
.y195{bottom:841.701333pt;}
.y4b{bottom:846.110667pt;}
.y1c3{bottom:849.260000pt;}
.y1f7{bottom:850.141333pt;}
.y3a{bottom:850.520000pt;}
.y77{bottom:857.449333pt;}
.y1e5{bottom:857.701333pt;}
.y4a{bottom:863.710667pt;}
.y194{bottom:865.260000pt;}
.y1e4{bottom:873.701333pt;}
.y76{bottom:875.049333pt;}
.y193{bottom:881.260000pt;}
.y49{bottom:881.310667pt;}
.y39{bottom:882.520000pt;}
.y1e3{bottom:889.701333pt;}
.y75{bottom:892.649333pt;}
.y192{bottom:897.260000pt;}
.yd8{bottom:898.910667pt;}
.y1e2{bottom:905.701333pt;}
.y48{bottom:910.249333pt;}
.y191{bottom:913.260000pt;}
.y38{bottom:914.520000pt;}
.yd7{bottom:916.510667pt;}
.y1f6{bottom:921.701333pt;}
.y47{bottom:927.849333pt;}
.y190{bottom:929.260000pt;}
.yd6{bottom:934.110667pt;}
.y1c2{bottom:936.818667pt;}
.y18f{bottom:945.260000pt;}
.y46{bottom:945.449333pt;}
.yd5{bottom:951.710667pt;}
.y1c1{bottom:952.818667pt;}
.y18e{bottom:961.260000pt;}
.y45{bottom:963.049333pt;}
.y1c0{bottom:968.818667pt;}
.yd4{bottom:969.310667pt;}
.y18d{bottom:977.260000pt;}
.y2{bottom:978.476000pt;}
.y44{bottom:980.649333pt;}
.y1bf{bottom:984.818667pt;}
.y18c{bottom:993.260000pt;}
.y43{bottom:998.249333pt;}
.y1be{bottom:1000.818667pt;}
.y42{bottom:1015.849333pt;}
.y18b{bottom:1016.818667pt;}
.y1{bottom:1030.818667pt;}
.y41{bottom:1069.870667pt;}
.ha{height:34.945312pt;}
.h9{height:34.992188pt;}
.h8{height:38.697917pt;}
.hd{height:38.828125pt;}
.hc{height:38.880208pt;}
.h4{height:42.710938pt;}
.h5{height:42.768229pt;}
.h7{height:46.593750pt;}
.hb{height:46.656250pt;}
.h3{height:58.320312pt;}
.h6{height:77.760417pt;}
.h2{height:152.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:39.685067pt;}
.xc{left:41.574800pt;}
.x4{left:96.000000pt;}
.x7{left:105.452667pt;}
.x12{left:111.118133pt;}
.x1{left:113.473200pt;}
.x3{left:114.897600pt;}
.x2{left:117.186400pt;}
.x8{left:123.122000pt;}
.x9{left:228.193333pt;}
.xb{left:306.822667pt;}
.xa{left:316.269333pt;}
.x5{left:415.748000pt;}
.x11{left:430.866667pt;}
.xd{left:434.645333pt;}
.xf{left:498.890667pt;}
.x10{left:741.238667pt;}
.x6{left:743.128000pt;}
}




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