
    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_2532300ab17b0493c5b4dc17.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.109863;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_e78d5383f6411ff82b60aba4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.187012;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_431a578b3d2b988df23f79a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.183105;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_e9227ed89ae1fd04e7060e90.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008301;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_5331386ea3805ae6be5ca2ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.906250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a86e46411e2aab0b12146a50.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.882812;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;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000600px;}
.ls4{letter-spacing:0.005400px;}
.ls7{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.006600px;}
.ls1{letter-spacing:0.007200px;}
.ls3{letter-spacing:0.013200px;}
.ls6{letter-spacing:1.686000px;}
.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;}
}
.ws6{word-spacing:-66.000000px;}
.ws7{word-spacing:-43.758000px;}
.ws3{word-spacing:-30.000000px;}
.ws0{word-spacing:-22.500000px;}
.ws5{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.686000px;}
.ws8{word-spacing:-16.513200px;}
.ws1{word-spacing:-16.500000px;}
.wsa{word-spacing:-15.000000px;}
.ws9{word-spacing:-13.505400px;}
.ws2{word-spacing:-13.500000px;}
.wsc{word-spacing:-10.714290px;}
.ws4{word-spacing:0.000000px;}
.wsd{word-spacing:4.276245px;}
._0{margin-left:-9.120000px;}
._14{margin-left:-3.676200px;}
._a{margin-left:-2.283600px;}
._8{margin-left:-1.260600px;}
._b{width:1.491600px;}
._4{width:2.659800px;}
._6{width:4.217400px;}
._3{width:5.425200px;}
._c{width:7.279800px;}
._1{width:9.188400px;}
._5{width:10.315800px;}
._f{width:11.457600px;}
._d{width:13.450800px;}
._2{width:14.652000px;}
._1e{width:15.879600px;}
._7{width:17.760600px;}
._12{width:18.909000px;}
._2b{width:19.980000px;}
._10{width:21.007800px;}
._24{width:22.213800px;}
._1a{width:23.220000px;}
._e{width:24.832800px;}
._11{width:26.056800px;}
._13{width:27.284400px;}
._1c{width:28.657200px;}
._20{width:29.917800px;}
._1b{width:31.762800px;}
._15{width:32.808600px;}
._26{width:33.883800px;}
._22{width:35.329800px;}
._23{width:37.303200px;}
._1f{width:38.841000px;}
._19{width:40.411800px;}
._17{width:42.266400px;}
._1d{width:43.995600px;}
._16{width:47.718000px;}
._27{width:51.394200px;}
._28{width:55.169400px;}
._9{width:56.357400px;}
._25{width:62.330400px;}
._29{width:66.481800px;}
._18{width:72.124800px;}
._21{width:80.599200px;}
._2a{width:105.210000px;}
.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;}
.fs4{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs5{font-size:120.000000px;}
.fs0{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:45.565350px;}
.y47{bottom:56.834700px;}
.y9d{bottom:60.295200px;}
.y48{bottom:61.765350px;}
.y14e{bottom:113.442900px;}
.y24{bottom:113.726550px;}
.y10f{bottom:113.770800px;}
.y83{bottom:114.562500px;}
.y9c{bottom:116.506350px;}
.y11e{bottom:117.156300px;}
.y181{bottom:124.866450px;}
.yfc{bottom:125.603550px;}
.yec{bottom:126.850650px;}
.y13c{bottom:127.318500px;}
.y46{bottom:127.556250px;}
.ybb{bottom:127.793100px;}
.y10e{bottom:129.970800px;}
.y14d{bottom:131.442900px;}
.y23{bottom:133.526550px;}
.y82{bottom:134.362500px;}
.y9b{bottom:136.306350px;}
.y11d{bottom:136.956300px;}
.y180{bottom:142.866450px;}
.yfb{bottom:145.403550px;}
.y10d{bottom:146.170800px;}
.yeb{bottom:146.650650px;}
.y13b{bottom:147.118500px;}
.y45{bottom:147.356250px;}
.yba{bottom:147.593100px;}
.yc2{bottom:150.250500px;}
.y22{bottom:153.327000px;}
.y81{bottom:154.162500px;}
.y9a{bottom:156.106500px;}
.y11c{bottom:156.756000px;}
.yfa{bottom:165.204000px;}
.yc1{bottom:166.450500px;}
.y13a{bottom:166.918500px;}
.y44{bottom:167.155500px;}
.yb9{bottom:167.392500px;}
.y17f{bottom:169.371000px;}
.y21{bottom:173.127000px;}
.y80{bottom:173.962500px;}
.y99{bottom:175.906500px;}
.y11b{bottom:176.556000px;}
.yc0{bottom:182.650500px;}
.yf9{bottom:185.004000px;}
.yea{bottom:186.250500px;}
.y139{bottom:186.718500px;}
.y43{bottom:186.955500px;}
.y17e{bottom:187.371000px;}
.y20{bottom:192.927000px;}
.y7f{bottom:193.762500px;}
.y98{bottom:195.706500px;}
.y11a{bottom:196.356000px;}
.ybf{bottom:198.850500px;}
.yb8{bottom:199.948500px;}
.yf8{bottom:204.804000px;}
.y17d{bottom:205.371000px;}
.ye9{bottom:206.050500px;}
.y138{bottom:206.518500px;}
.y42{bottom:206.755500px;}
.y1f{bottom:212.727000px;}
.y7e{bottom:213.562500px;}
.ybe{bottom:215.050500px;}
.y97{bottom:215.506500px;}
.y119{bottom:216.156000px;}
.yb7{bottom:219.748500px;}
.yf7{bottom:224.604000px;}
.ye8{bottom:225.850500px;}
.y137{bottom:226.318500px;}
.y41{bottom:226.555500px;}
.y17c{bottom:231.874500px;}
.y1e{bottom:232.527000px;}
.y7d{bottom:233.362500px;}
.y96{bottom:235.306500px;}
.y118{bottom:235.956000px;}
.yb6{bottom:239.548500px;}
.yf6{bottom:244.404000px;}
.ye7{bottom:245.650500px;}
.y136{bottom:246.118500px;}
.y40{bottom:246.355500px;}
.y17b{bottom:249.874500px;}
.y1d{bottom:252.327000px;}
.y7c{bottom:253.162500px;}
.y95{bottom:255.106500px;}
.y117{bottom:255.756000px;}
.y14b{bottom:258.874500px;}
.yb5{bottom:259.348500px;}
.yf5{bottom:264.204000px;}
.ye6{bottom:265.450500px;}
.y135{bottom:265.918500px;}
.y3f{bottom:266.155500px;}
.y17a{bottom:267.874500px;}
.y1c{bottom:272.127000px;}
.y7b{bottom:272.962500px;}
.y94{bottom:274.906500px;}
.y116{bottom:275.556000px;}
.y14a{bottom:278.674500px;}
.yb4{bottom:279.148500px;}
.yf4{bottom:284.004000px;}
.ye5{bottom:285.250500px;}
.y134{bottom:285.718500px;}
.y3e{bottom:285.955500px;}
.y1b{bottom:291.927000px;}
.y7a{bottom:292.762500px;}
.y179{bottom:294.378000px;}
.y93{bottom:294.706500px;}
.y115{bottom:295.356000px;}
.y149{bottom:298.474500px;}
.yb3{bottom:298.948500px;}
.ye4{bottom:305.050500px;}
.y133{bottom:305.518500px;}
.y3d{bottom:305.755500px;}
.y1a{bottom:311.727000px;}
.y178{bottom:312.378000px;}
.y79{bottom:312.562500px;}
.y114{bottom:315.156000px;}
.yf3{bottom:316.560000px;}
.y14c{bottom:317.806500px;}
.y148{bottom:318.274500px;}
.yb2{bottom:318.748500px;}
.ye3{bottom:324.850500px;}
.y132{bottom:325.318500px;}
.y3c{bottom:325.555500px;}
.y177{bottom:330.378000px;}
.y19{bottom:331.527000px;}
.y78{bottom:332.362500px;}
.y113{bottom:334.956000px;}
.yf2{bottom:336.360000px;}
.y147{bottom:338.074500px;}
.yb1{bottom:338.548500px;}
.ye2{bottom:344.650500px;}
.y131{bottom:345.118500px;}
.y3b{bottom:345.355500px;}
.y18{bottom:351.327000px;}
.y77{bottom:352.162500px;}
.yf1{bottom:356.160000px;}
.y176{bottom:356.881500px;}
.y146{bottom:357.874500px;}
.yb0{bottom:358.348500px;}
.ye1{bottom:364.450500px;}
.y130{bottom:364.918500px;}
.y3a{bottom:365.155500px;}
.y112{bottom:367.512000px;}
.ya0{bottom:367.734000px;}
.y17{bottom:371.127000px;}
.y76{bottom:371.962500px;}
.y175{bottom:374.881500px;}
.yf0{bottom:375.960000px;}
.y145{bottom:377.674500px;}
.yaf{bottom:378.148500px;}
.y9f{bottom:383.934000px;}
.ye0{bottom:384.250500px;}
.y12f{bottom:384.718500px;}
.y39{bottom:384.955500px;}
.y111{bottom:389.112000px;}
.y75{bottom:391.762500px;}
.yef{bottom:395.760000px;}
.y144{bottom:397.474500px;}
.yae{bottom:397.948500px;}
.y9e{bottom:400.134000px;}
.y174{bottom:401.386500px;}
.y16{bottom:403.683000px;}
.ydf{bottom:404.050500px;}
.y12e{bottom:404.518500px;}
.y38{bottom:404.755500px;}
.y110{bottom:410.712000px;}
.y74{bottom:411.562500px;}
.yee{bottom:415.560000px;}
.y143{bottom:417.274500px;}
.yad{bottom:417.748500px;}
.y173{bottom:419.386500px;}
.y15{bottom:423.483000px;}
.yde{bottom:423.850500px;}
.y12d{bottom:424.318500px;}
.y37{bottom:424.555500px;}
.y1a6{bottom:425.281500px;}
.y191{bottom:428.881500px;}
.y73{bottom:431.362500px;}
.yed{bottom:435.360000px;}
.y142{bottom:437.074500px;}
.y172{bottom:437.386500px;}
.y1a5{bottom:443.281500px;}
.y14{bottom:443.283000px;}
.ydd{bottom:443.650500px;}
.y12c{bottom:444.118500px;}
.y36{bottom:444.355500px;}
.yac{bottom:450.304500px;}
.y72{bottom:451.162500px;}
.y171{bottom:455.386500px;}
.y141{bottom:456.874500px;}
.y1a4{bottom:461.281500px;}
.y13{bottom:463.083000px;}
.ydc{bottom:463.450500px;}
.y35{bottom:464.155500px;}
.yab{bottom:470.104500px;}
.y71{bottom:470.962500px;}
.y190{bottom:473.386500px;}
.y12b{bottom:476.674500px;}
.y1a3{bottom:479.281500px;}
.y170{bottom:481.890000px;}
.y12{bottom:482.883000px;}
.y34{bottom:483.955500px;}
.yaa{bottom:489.904500px;}
.y70{bottom:490.762500px;}
.y18f{bottom:491.386500px;}
.ydb{bottom:496.006500px;}
.y12a{bottom:496.474500px;}
.y1a2{bottom:497.281500px;}
.y16f{bottom:499.890000px;}
.y11{bottom:502.683000px;}
.y33{bottom:503.755500px;}
.yff{bottom:506.512500px;}
.ya9{bottom:509.704500px;}
.y6f{bottom:510.562500px;}
.y1a1{bottom:515.281500px;}
.yda{bottom:515.806500px;}
.y129{bottom:516.274500px;}
.y16e{bottom:517.890000px;}
.y10{bottom:522.483000px;}
.yfe{bottom:522.712500px;}
.y140{bottom:523.020000px;}
.y32{bottom:523.555500px;}
.ya8{bottom:529.504500px;}
.y6e{bottom:530.362500px;}
.y1a0{bottom:533.281500px;}
.yd9{bottom:535.606500px;}
.y18e{bottom:535.890000px;}
.y128{bottom:536.074500px;}
.yfd{bottom:538.912500px;}
.y13f{bottom:539.220000px;}
.yf{bottom:542.283000px;}
.y31{bottom:543.355500px;}
.y16d{bottom:544.393500px;}
.ya7{bottom:549.304500px;}
.y19f{bottom:551.281500px;}
.yd8{bottom:555.406500px;}
.y13e{bottom:555.420000px;}
.y127{bottom:555.874500px;}
.ye{bottom:562.083000px;}
.y16c{bottom:562.393500px;}
.y6d{bottom:562.918500px;}
.y30{bottom:563.155500px;}
.ya6{bottom:569.104500px;}
.y19e{bottom:569.281500px;}
.y13d{bottom:571.620000px;}
.yd7{bottom:575.206500px;}
.y126{bottom:575.674500px;}
.y16b{bottom:580.393500px;}
.yd{bottom:581.883000px;}
.y6c{bottom:582.718500px;}
.y2f{bottom:582.955500px;}
.y10a{bottom:586.650000px;}
.y19d{bottom:587.281500px;}
.ya5{bottom:588.904500px;}
.yd6{bottom:595.006500px;}
.y125{bottom:595.474500px;}
.y16a{bottom:598.393500px;}
.yc{bottom:601.683000px;}
.y6b{bottom:602.518500px;}
.y19c{bottom:605.281500px;}
.y109{bottom:606.450000px;}
.ya4{bottom:608.704500px;}
.yd5{bottom:614.806500px;}
.y124{bottom:615.274500px;}
.y2e{bottom:615.511500px;}
.y169{bottom:616.393500px;}
.yb{bottom:621.483000px;}
.y6a{bottom:622.318500px;}
.y19b{bottom:623.281500px;}
.y108{bottom:626.250000px;}
.ya3{bottom:628.504500px;}
.y18d{bottom:634.393500px;}
.yd4{bottom:634.606500px;}
.y123{bottom:635.074500px;}
.y2d{bottom:635.311500px;}
.y19a{bottom:641.281500px;}
.ya{bottom:641.283000px;}
.y69{bottom:642.118500px;}
.y168{bottom:642.898500px;}
.y107{bottom:646.050000px;}
.ya2{bottom:648.304500px;}
.yd3{bottom:654.406500px;}
.y122{bottom:654.874500px;}
.y2c{bottom:655.111500px;}
.y199{bottom:659.281500px;}
.y167{bottom:660.898500px;}
.y9{bottom:661.083000px;}
.y68{bottom:661.918500px;}
.y106{bottom:665.850000px;}
.ya1{bottom:668.104500px;}
.y121{bottom:674.674500px;}
.y2b{bottom:674.911500px;}
.y18c{bottom:678.898500px;}
.y8{bottom:680.883000px;}
.y67{bottom:681.718500px;}
.y105{bottom:685.650000px;}
.yd2{bottom:686.962500px;}
.y166{bottom:687.402000px;}
.y198{bottom:690.037500px;}
.y120{bottom:694.474500px;}
.y2a{bottom:694.711500px;}
.y7{bottom:700.683000px;}
.y66{bottom:701.518500px;}
.y165{bottom:705.402000px;}
.y104{bottom:705.450000px;}
.y11f{bottom:714.274500px;}
.y29{bottom:714.511500px;}
.y6{bottom:720.483000px;}
.y164{bottom:723.402000px;}
.y103{bottom:725.250000px;}
.y65{bottom:734.074500px;}
.y28{bottom:734.311500px;}
.y5{bottom:740.283000px;}
.y163{bottom:741.402000px;}
.y102{bottom:745.050000px;}
.ybd{bottom:749.437500px;}
.y18b{bottom:749.905500px;}
.y197{bottom:753.349500px;}
.y64{bottom:753.874500px;}
.y27{bottom:754.111500px;}
.y162{bottom:759.402000px;}
.y4{bottom:760.083000px;}
.y101{bottom:764.850000px;}
.yd1{bottom:766.630500px;}
.y18a{bottom:767.905500px;}
.y196{bottom:771.349500px;}
.y63{bottom:773.674500px;}
.y26{bottom:773.911500px;}
.y100{bottom:784.650000px;}
.y161{bottom:785.905500px;}
.yd0{bottom:786.430500px;}
.y195{bottom:789.349500px;}
.y3{bottom:792.639000px;}
.y62{bottom:793.474500px;}
.y25{bottom:793.711500px;}
.y160{bottom:803.905500px;}
.ycf{bottom:806.230500px;}
.y194{bottom:807.349500px;}
.y61{bottom:813.274500px;}
.y15f{bottom:821.905500px;}
.y193{bottom:825.349500px;}
.yce{bottom:826.030500px;}
.y60{bottom:833.074500px;}
.y15e{bottom:839.905500px;}
.ycd{bottom:845.830500px;}
.y92{bottom:848.157000px;}
.y189{bottom:848.409000px;}
.y5f{bottom:852.874500px;}
.y192{bottom:856.105500px;}
.y4f{bottom:859.635000px;}
.y10c{bottom:860.950500px;}
.ycc{bottom:865.630500px;}
.y15d{bottom:866.409000px;}
.y91{bottom:867.957000px;}
.y5e{bottom:872.674500px;}
.y10b{bottom:877.150500px;}
.y4e{bottom:877.635000px;}
.y15c{bottom:884.409000px;}
.ycb{bottom:885.430500px;}
.y90{bottom:887.757000px;}
.y5d{bottom:892.474500px;}
.y15b{bottom:902.409000px;}
.yca{bottom:905.230500px;}
.y8f{bottom:907.557000px;}
.y188{bottom:910.914000px;}
.y5c{bottom:912.274500px;}
.y4d{bottom:913.635000px;}
.y15a{bottom:920.409000px;}
.yc9{bottom:925.030500px;}
.y8e{bottom:927.357000px;}
.y187{bottom:928.914000px;}
.y5b{bottom:932.074500px;}
.yc8{bottom:944.830500px;}
.y159{bottom:946.914000px;}
.y8d{bottom:947.157000px;}
.y5a{bottom:951.874500px;}
.y4c{bottom:956.835000px;}
.yc7{bottom:964.630500px;}
.y158{bottom:964.914000px;}
.y8c{bottom:966.957000px;}
.y59{bottom:971.674500px;}
.y186{bottom:973.417500px;}
.y157{bottom:982.914000px;}
.yc6{bottom:984.430500px;}
.y8b{bottom:986.757000px;}
.y185{bottom:991.417500px;}
.y58{bottom:991.474500px;}
.y4b{bottom:992.835000px;}
.yc5{bottom:1004.230500px;}
.y8a{bottom:1006.557000px;}
.y156{bottom:1009.417500px;}
.y57{bottom:1011.274500px;}
.yc4{bottom:1024.030500px;}
.y89{bottom:1026.357000px;}
.y155{bottom:1027.417500px;}
.y4a{bottom:1028.835000px;}
.y56{bottom:1031.074500px;}
.yc3{bottom:1043.830500px;}
.y154{bottom:1045.417500px;}
.y88{bottom:1046.157000px;}
.y153{bottom:1063.417500px;}
.y55{bottom:1063.630500px;}
.y87{bottom:1065.957000px;}
.y184{bottom:1071.921000px;}
.y152{bottom:1081.417500px;}
.y54{bottom:1083.430500px;}
.y183{bottom:1089.921000px;}
.y86{bottom:1098.513000px;}
.y151{bottom:1099.417500px;}
.y2{bottom:1100.785500px;}
.y53{bottom:1103.230500px;}
.y182{bottom:1107.921000px;}
.y85{bottom:1120.113000px;}
.y52{bottom:1123.030500px;}
.y150{bottom:1125.921000px;}
.y84{bottom:1141.713000px;}
.y51{bottom:1142.830500px;}
.y14f{bottom:1143.921000px;}
.y1{bottom:1159.671000px;}
.ybc{bottom:1204.654500px;}
.y50{bottom:1204.695000px;}
.h7{height:48.858398px;}
.he{height:50.683594px;}
.hc{height:54.199219px;}
.hd{height:54.287109px;}
.h6{height:55.751953px;}
.h5{height:59.715820px;}
.h4{height:60.820312px;}
.hb{height:65.144531px;}
.h3{height:76.025391px;}
.ha{height:87.597656px;}
.h9{height:101.367188px;}
.h2{height:171.000000px;}
.h8{height:1262.834646px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:0.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:44.645700px;}
.xf{left:46.771650px;}
.x3{left:108.000000px;}
.x12{left:125.007900px;}
.x1{left:127.657350px;}
.x4{left:129.259800px;}
.x2{left:131.834700px;}
.xa{left:138.094650px;}
.x9{left:148.187400px;}
.xd{left:196.696500px;}
.xc{left:350.551500px;}
.xe{left:367.654500px;}
.xb{left:413.551500px;}
.x5{left:467.716500px;}
.x13{left:484.725000px;}
.x6{left:488.976000px;}
.x11{left:551.607000px;}
.x8{left:825.643500px;}
.x7{left:827.769000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000533pt;}
.ls4{letter-spacing:0.004800pt;}
.ls7{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.005867pt;}
.ls1{letter-spacing:0.006400pt;}
.ls3{letter-spacing:0.011733pt;}
.ls6{letter-spacing:1.498667pt;}
.ws6{word-spacing:-58.666667pt;}
.ws7{word-spacing:-38.896000pt;}
.ws3{word-spacing:-26.666667pt;}
.ws0{word-spacing:-20.000000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.832000pt;}
.ws8{word-spacing:-14.678400pt;}
.ws1{word-spacing:-14.666667pt;}
.wsa{word-spacing:-13.333333pt;}
.ws9{word-spacing:-12.004800pt;}
.ws2{word-spacing:-12.000000pt;}
.wsc{word-spacing:-9.523813pt;}
.ws4{word-spacing:0.000000pt;}
.wsd{word-spacing:3.801107pt;}
._0{margin-left:-8.106667pt;}
._14{margin-left:-3.267733pt;}
._a{margin-left:-2.029867pt;}
._8{margin-left:-1.120533pt;}
._b{width:1.325867pt;}
._4{width:2.364267pt;}
._6{width:3.748800pt;}
._3{width:4.822400pt;}
._c{width:6.470933pt;}
._1{width:8.167467pt;}
._5{width:9.169600pt;}
._f{width:10.184533pt;}
._d{width:11.956267pt;}
._2{width:13.024000pt;}
._1e{width:14.115200pt;}
._7{width:15.787200pt;}
._12{width:16.808000pt;}
._2b{width:17.760000pt;}
._10{width:18.673600pt;}
._24{width:19.745600pt;}
._1a{width:20.640000pt;}
._e{width:22.073600pt;}
._11{width:23.161600pt;}
._13{width:24.252800pt;}
._1c{width:25.473067pt;}
._20{width:26.593600pt;}
._1b{width:28.233600pt;}
._15{width:29.163200pt;}
._26{width:30.118933pt;}
._22{width:31.404267pt;}
._23{width:33.158400pt;}
._1f{width:34.525333pt;}
._19{width:35.921600pt;}
._17{width:37.570133pt;}
._1d{width:39.107200pt;}
._16{width:42.416000pt;}
._27{width:45.683733pt;}
._28{width:49.039467pt;}
._9{width:50.095467pt;}
._25{width:55.404800pt;}
._29{width:59.094933pt;}
._18{width:64.110933pt;}
._21{width:71.643733pt;}
._2a{width:93.520000pt;}
.fs7{font-size:38.095253pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs5{font-size:106.666667pt;}
.fs0{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:40.502533pt;}
.y47{bottom:50.519733pt;}
.y9d{bottom:53.595733pt;}
.y48{bottom:54.902533pt;}
.y14e{bottom:100.838133pt;}
.y24{bottom:101.090267pt;}
.y10f{bottom:101.129600pt;}
.y83{bottom:101.833333pt;}
.y9c{bottom:103.561200pt;}
.y11e{bottom:104.138933pt;}
.y181{bottom:110.992400pt;}
.yfc{bottom:111.647600pt;}
.yec{bottom:112.756133pt;}
.y13c{bottom:113.172000pt;}
.y46{bottom:113.383333pt;}
.ybb{bottom:113.593867pt;}
.y10e{bottom:115.529600pt;}
.y14d{bottom:116.838133pt;}
.y23{bottom:118.690267pt;}
.y82{bottom:119.433333pt;}
.y9b{bottom:121.161200pt;}
.y11d{bottom:121.738933pt;}
.y180{bottom:126.992400pt;}
.yfb{bottom:129.247600pt;}
.y10d{bottom:129.929600pt;}
.yeb{bottom:130.356133pt;}
.y13b{bottom:130.772000pt;}
.y45{bottom:130.983333pt;}
.yba{bottom:131.193867pt;}
.yc2{bottom:133.556000pt;}
.y22{bottom:136.290667pt;}
.y81{bottom:137.033333pt;}
.y9a{bottom:138.761333pt;}
.y11c{bottom:139.338667pt;}
.yfa{bottom:146.848000pt;}
.yc1{bottom:147.956000pt;}
.y13a{bottom:148.372000pt;}
.y44{bottom:148.582667pt;}
.yb9{bottom:148.793333pt;}
.y17f{bottom:150.552000pt;}
.y21{bottom:153.890667pt;}
.y80{bottom:154.633333pt;}
.y99{bottom:156.361333pt;}
.y11b{bottom:156.938667pt;}
.yc0{bottom:162.356000pt;}
.yf9{bottom:164.448000pt;}
.yea{bottom:165.556000pt;}
.y139{bottom:165.972000pt;}
.y43{bottom:166.182667pt;}
.y17e{bottom:166.552000pt;}
.y20{bottom:171.490667pt;}
.y7f{bottom:172.233333pt;}
.y98{bottom:173.961333pt;}
.y11a{bottom:174.538667pt;}
.ybf{bottom:176.756000pt;}
.yb8{bottom:177.732000pt;}
.yf8{bottom:182.048000pt;}
.y17d{bottom:182.552000pt;}
.ye9{bottom:183.156000pt;}
.y138{bottom:183.572000pt;}
.y42{bottom:183.782667pt;}
.y1f{bottom:189.090667pt;}
.y7e{bottom:189.833333pt;}
.ybe{bottom:191.156000pt;}
.y97{bottom:191.561333pt;}
.y119{bottom:192.138667pt;}
.yb7{bottom:195.332000pt;}
.yf7{bottom:199.648000pt;}
.ye8{bottom:200.756000pt;}
.y137{bottom:201.172000pt;}
.y41{bottom:201.382667pt;}
.y17c{bottom:206.110667pt;}
.y1e{bottom:206.690667pt;}
.y7d{bottom:207.433333pt;}
.y96{bottom:209.161333pt;}
.y118{bottom:209.738667pt;}
.yb6{bottom:212.932000pt;}
.yf6{bottom:217.248000pt;}
.ye7{bottom:218.356000pt;}
.y136{bottom:218.772000pt;}
.y40{bottom:218.982667pt;}
.y17b{bottom:222.110667pt;}
.y1d{bottom:224.290667pt;}
.y7c{bottom:225.033333pt;}
.y95{bottom:226.761333pt;}
.y117{bottom:227.338667pt;}
.y14b{bottom:230.110667pt;}
.yb5{bottom:230.532000pt;}
.yf5{bottom:234.848000pt;}
.ye6{bottom:235.956000pt;}
.y135{bottom:236.372000pt;}
.y3f{bottom:236.582667pt;}
.y17a{bottom:238.110667pt;}
.y1c{bottom:241.890667pt;}
.y7b{bottom:242.633333pt;}
.y94{bottom:244.361333pt;}
.y116{bottom:244.938667pt;}
.y14a{bottom:247.710667pt;}
.yb4{bottom:248.132000pt;}
.yf4{bottom:252.448000pt;}
.ye5{bottom:253.556000pt;}
.y134{bottom:253.972000pt;}
.y3e{bottom:254.182667pt;}
.y1b{bottom:259.490667pt;}
.y7a{bottom:260.233333pt;}
.y179{bottom:261.669333pt;}
.y93{bottom:261.961333pt;}
.y115{bottom:262.538667pt;}
.y149{bottom:265.310667pt;}
.yb3{bottom:265.732000pt;}
.ye4{bottom:271.156000pt;}
.y133{bottom:271.572000pt;}
.y3d{bottom:271.782667pt;}
.y1a{bottom:277.090667pt;}
.y178{bottom:277.669333pt;}
.y79{bottom:277.833333pt;}
.y114{bottom:280.138667pt;}
.yf3{bottom:281.386667pt;}
.y14c{bottom:282.494667pt;}
.y148{bottom:282.910667pt;}
.yb2{bottom:283.332000pt;}
.ye3{bottom:288.756000pt;}
.y132{bottom:289.172000pt;}
.y3c{bottom:289.382667pt;}
.y177{bottom:293.669333pt;}
.y19{bottom:294.690667pt;}
.y78{bottom:295.433333pt;}
.y113{bottom:297.738667pt;}
.yf2{bottom:298.986667pt;}
.y147{bottom:300.510667pt;}
.yb1{bottom:300.932000pt;}
.ye2{bottom:306.356000pt;}
.y131{bottom:306.772000pt;}
.y3b{bottom:306.982667pt;}
.y18{bottom:312.290667pt;}
.y77{bottom:313.033333pt;}
.yf1{bottom:316.586667pt;}
.y176{bottom:317.228000pt;}
.y146{bottom:318.110667pt;}
.yb0{bottom:318.532000pt;}
.ye1{bottom:323.956000pt;}
.y130{bottom:324.372000pt;}
.y3a{bottom:324.582667pt;}
.y112{bottom:326.677333pt;}
.ya0{bottom:326.874667pt;}
.y17{bottom:329.890667pt;}
.y76{bottom:330.633333pt;}
.y175{bottom:333.228000pt;}
.yf0{bottom:334.186667pt;}
.y145{bottom:335.710667pt;}
.yaf{bottom:336.132000pt;}
.y9f{bottom:341.274667pt;}
.ye0{bottom:341.556000pt;}
.y12f{bottom:341.972000pt;}
.y39{bottom:342.182667pt;}
.y111{bottom:345.877333pt;}
.y75{bottom:348.233333pt;}
.yef{bottom:351.786667pt;}
.y144{bottom:353.310667pt;}
.yae{bottom:353.732000pt;}
.y9e{bottom:355.674667pt;}
.y174{bottom:356.788000pt;}
.y16{bottom:358.829333pt;}
.ydf{bottom:359.156000pt;}
.y12e{bottom:359.572000pt;}
.y38{bottom:359.782667pt;}
.y110{bottom:365.077333pt;}
.y74{bottom:365.833333pt;}
.yee{bottom:369.386667pt;}
.y143{bottom:370.910667pt;}
.yad{bottom:371.332000pt;}
.y173{bottom:372.788000pt;}
.y15{bottom:376.429333pt;}
.yde{bottom:376.756000pt;}
.y12d{bottom:377.172000pt;}
.y37{bottom:377.382667pt;}
.y1a6{bottom:378.028000pt;}
.y191{bottom:381.228000pt;}
.y73{bottom:383.433333pt;}
.yed{bottom:386.986667pt;}
.y142{bottom:388.510667pt;}
.y172{bottom:388.788000pt;}
.y1a5{bottom:394.028000pt;}
.y14{bottom:394.029333pt;}
.ydd{bottom:394.356000pt;}
.y12c{bottom:394.772000pt;}
.y36{bottom:394.982667pt;}
.yac{bottom:400.270667pt;}
.y72{bottom:401.033333pt;}
.y171{bottom:404.788000pt;}
.y141{bottom:406.110667pt;}
.y1a4{bottom:410.028000pt;}
.y13{bottom:411.629333pt;}
.ydc{bottom:411.956000pt;}
.y35{bottom:412.582667pt;}
.yab{bottom:417.870667pt;}
.y71{bottom:418.633333pt;}
.y190{bottom:420.788000pt;}
.y12b{bottom:423.710667pt;}
.y1a3{bottom:426.028000pt;}
.y170{bottom:428.346667pt;}
.y12{bottom:429.229333pt;}
.y34{bottom:430.182667pt;}
.yaa{bottom:435.470667pt;}
.y70{bottom:436.233333pt;}
.y18f{bottom:436.788000pt;}
.ydb{bottom:440.894667pt;}
.y12a{bottom:441.310667pt;}
.y1a2{bottom:442.028000pt;}
.y16f{bottom:444.346667pt;}
.y11{bottom:446.829333pt;}
.y33{bottom:447.782667pt;}
.yff{bottom:450.233333pt;}
.ya9{bottom:453.070667pt;}
.y6f{bottom:453.833333pt;}
.y1a1{bottom:458.028000pt;}
.yda{bottom:458.494667pt;}
.y129{bottom:458.910667pt;}
.y16e{bottom:460.346667pt;}
.y10{bottom:464.429333pt;}
.yfe{bottom:464.633333pt;}
.y140{bottom:464.906667pt;}
.y32{bottom:465.382667pt;}
.ya8{bottom:470.670667pt;}
.y6e{bottom:471.433333pt;}
.y1a0{bottom:474.028000pt;}
.yd9{bottom:476.094667pt;}
.y18e{bottom:476.346667pt;}
.y128{bottom:476.510667pt;}
.yfd{bottom:479.033333pt;}
.y13f{bottom:479.306667pt;}
.yf{bottom:482.029333pt;}
.y31{bottom:482.982667pt;}
.y16d{bottom:483.905333pt;}
.ya7{bottom:488.270667pt;}
.y19f{bottom:490.028000pt;}
.yd8{bottom:493.694667pt;}
.y13e{bottom:493.706667pt;}
.y127{bottom:494.110667pt;}
.ye{bottom:499.629333pt;}
.y16c{bottom:499.905333pt;}
.y6d{bottom:500.372000pt;}
.y30{bottom:500.582667pt;}
.ya6{bottom:505.870667pt;}
.y19e{bottom:506.028000pt;}
.y13d{bottom:508.106667pt;}
.yd7{bottom:511.294667pt;}
.y126{bottom:511.710667pt;}
.y16b{bottom:515.905333pt;}
.yd{bottom:517.229333pt;}
.y6c{bottom:517.972000pt;}
.y2f{bottom:518.182667pt;}
.y10a{bottom:521.466667pt;}
.y19d{bottom:522.028000pt;}
.ya5{bottom:523.470667pt;}
.yd6{bottom:528.894667pt;}
.y125{bottom:529.310667pt;}
.y16a{bottom:531.905333pt;}
.yc{bottom:534.829333pt;}
.y6b{bottom:535.572000pt;}
.y19c{bottom:538.028000pt;}
.y109{bottom:539.066667pt;}
.ya4{bottom:541.070667pt;}
.yd5{bottom:546.494667pt;}
.y124{bottom:546.910667pt;}
.y2e{bottom:547.121333pt;}
.y169{bottom:547.905333pt;}
.yb{bottom:552.429333pt;}
.y6a{bottom:553.172000pt;}
.y19b{bottom:554.028000pt;}
.y108{bottom:556.666667pt;}
.ya3{bottom:558.670667pt;}
.y18d{bottom:563.905333pt;}
.yd4{bottom:564.094667pt;}
.y123{bottom:564.510667pt;}
.y2d{bottom:564.721333pt;}
.y19a{bottom:570.028000pt;}
.ya{bottom:570.029333pt;}
.y69{bottom:570.772000pt;}
.y168{bottom:571.465333pt;}
.y107{bottom:574.266667pt;}
.ya2{bottom:576.270667pt;}
.yd3{bottom:581.694667pt;}
.y122{bottom:582.110667pt;}
.y2c{bottom:582.321333pt;}
.y199{bottom:586.028000pt;}
.y167{bottom:587.465333pt;}
.y9{bottom:587.629333pt;}
.y68{bottom:588.372000pt;}
.y106{bottom:591.866667pt;}
.ya1{bottom:593.870667pt;}
.y121{bottom:599.710667pt;}
.y2b{bottom:599.921333pt;}
.y18c{bottom:603.465333pt;}
.y8{bottom:605.229333pt;}
.y67{bottom:605.972000pt;}
.y105{bottom:609.466667pt;}
.yd2{bottom:610.633333pt;}
.y166{bottom:611.024000pt;}
.y198{bottom:613.366667pt;}
.y120{bottom:617.310667pt;}
.y2a{bottom:617.521333pt;}
.y7{bottom:622.829333pt;}
.y66{bottom:623.572000pt;}
.y165{bottom:627.024000pt;}
.y104{bottom:627.066667pt;}
.y11f{bottom:634.910667pt;}
.y29{bottom:635.121333pt;}
.y6{bottom:640.429333pt;}
.y164{bottom:643.024000pt;}
.y103{bottom:644.666667pt;}
.y65{bottom:652.510667pt;}
.y28{bottom:652.721333pt;}
.y5{bottom:658.029333pt;}
.y163{bottom:659.024000pt;}
.y102{bottom:662.266667pt;}
.ybd{bottom:666.166667pt;}
.y18b{bottom:666.582667pt;}
.y197{bottom:669.644000pt;}
.y64{bottom:670.110667pt;}
.y27{bottom:670.321333pt;}
.y162{bottom:675.024000pt;}
.y4{bottom:675.629333pt;}
.y101{bottom:679.866667pt;}
.yd1{bottom:681.449333pt;}
.y18a{bottom:682.582667pt;}
.y196{bottom:685.644000pt;}
.y63{bottom:687.710667pt;}
.y26{bottom:687.921333pt;}
.y100{bottom:697.466667pt;}
.y161{bottom:698.582667pt;}
.yd0{bottom:699.049333pt;}
.y195{bottom:701.644000pt;}
.y3{bottom:704.568000pt;}
.y62{bottom:705.310667pt;}
.y25{bottom:705.521333pt;}
.y160{bottom:714.582667pt;}
.ycf{bottom:716.649333pt;}
.y194{bottom:717.644000pt;}
.y61{bottom:722.910667pt;}
.y15f{bottom:730.582667pt;}
.y193{bottom:733.644000pt;}
.yce{bottom:734.249333pt;}
.y60{bottom:740.510667pt;}
.y15e{bottom:746.582667pt;}
.ycd{bottom:751.849333pt;}
.y92{bottom:753.917333pt;}
.y189{bottom:754.141333pt;}
.y5f{bottom:758.110667pt;}
.y192{bottom:760.982667pt;}
.y4f{bottom:764.120000pt;}
.y10c{bottom:765.289333pt;}
.ycc{bottom:769.449333pt;}
.y15d{bottom:770.141333pt;}
.y91{bottom:771.517333pt;}
.y5e{bottom:775.710667pt;}
.y10b{bottom:779.689333pt;}
.y4e{bottom:780.120000pt;}
.y15c{bottom:786.141333pt;}
.ycb{bottom:787.049333pt;}
.y90{bottom:789.117333pt;}
.y5d{bottom:793.310667pt;}
.y15b{bottom:802.141333pt;}
.yca{bottom:804.649333pt;}
.y8f{bottom:806.717333pt;}
.y188{bottom:809.701333pt;}
.y5c{bottom:810.910667pt;}
.y4d{bottom:812.120000pt;}
.y15a{bottom:818.141333pt;}
.yc9{bottom:822.249333pt;}
.y8e{bottom:824.317333pt;}
.y187{bottom:825.701333pt;}
.y5b{bottom:828.510667pt;}
.yc8{bottom:839.849333pt;}
.y159{bottom:841.701333pt;}
.y8d{bottom:841.917333pt;}
.y5a{bottom:846.110667pt;}
.y4c{bottom:850.520000pt;}
.yc7{bottom:857.449333pt;}
.y158{bottom:857.701333pt;}
.y8c{bottom:859.517333pt;}
.y59{bottom:863.710667pt;}
.y186{bottom:865.260000pt;}
.y157{bottom:873.701333pt;}
.yc6{bottom:875.049333pt;}
.y8b{bottom:877.117333pt;}
.y185{bottom:881.260000pt;}
.y58{bottom:881.310667pt;}
.y4b{bottom:882.520000pt;}
.yc5{bottom:892.649333pt;}
.y8a{bottom:894.717333pt;}
.y156{bottom:897.260000pt;}
.y57{bottom:898.910667pt;}
.yc4{bottom:910.249333pt;}
.y89{bottom:912.317333pt;}
.y155{bottom:913.260000pt;}
.y4a{bottom:914.520000pt;}
.y56{bottom:916.510667pt;}
.yc3{bottom:927.849333pt;}
.y154{bottom:929.260000pt;}
.y88{bottom:929.917333pt;}
.y153{bottom:945.260000pt;}
.y55{bottom:945.449333pt;}
.y87{bottom:947.517333pt;}
.y184{bottom:952.818667pt;}
.y152{bottom:961.260000pt;}
.y54{bottom:963.049333pt;}
.y183{bottom:968.818667pt;}
.y86{bottom:976.456000pt;}
.y151{bottom:977.260000pt;}
.y2{bottom:978.476000pt;}
.y53{bottom:980.649333pt;}
.y182{bottom:984.818667pt;}
.y85{bottom:995.656000pt;}
.y52{bottom:998.249333pt;}
.y150{bottom:1000.818667pt;}
.y84{bottom:1014.856000pt;}
.y51{bottom:1015.849333pt;}
.y14f{bottom:1016.818667pt;}
.y1{bottom:1030.818667pt;}
.ybc{bottom:1070.804000pt;}
.y50{bottom:1070.840000pt;}
.h7{height:43.429688pt;}
.he{height:45.052083pt;}
.hc{height:48.177083pt;}
.hd{height:48.255208pt;}
.h6{height:49.557292pt;}
.h5{height:53.080729pt;}
.h4{height:54.062500pt;}
.hb{height:57.906250pt;}
.h3{height:67.578125pt;}
.ha{height:77.864583pt;}
.h9{height:90.104167pt;}
.h2{height:152.000000pt;}
.h8{height:1122.519685pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:0.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:39.685067pt;}
.xf{left:41.574800pt;}
.x3{left:96.000000pt;}
.x12{left:111.118133pt;}
.x1{left:113.473200pt;}
.x4{left:114.897600pt;}
.x2{left:117.186400pt;}
.xa{left:122.750800pt;}
.x9{left:131.722133pt;}
.xd{left:174.841333pt;}
.xc{left:311.601333pt;}
.xe{left:326.804000pt;}
.xb{left:367.601333pt;}
.x5{left:415.748000pt;}
.x13{left:430.866667pt;}
.x6{left:434.645333pt;}
.x11{left:490.317333pt;}
.x8{left:733.905333pt;}
.x7{left:735.794667pt;}
}




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