
    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_82e8c7474d8390bb0b153f40.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_baa0274232f81e6d42d0be5d.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_1c37ccaafc25b2aa96303399.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_20511a5bc585368569c12b8e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.898438;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_18300b432f731469c1fb21ec.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.006600px;}
.ls3{letter-spacing:0.007200px;}
.ls8{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.013200px;}
.ls5{letter-spacing:0.192000px;}
.ls7{letter-spacing:1.068000px;}
.ls6{letter-spacing:4.002000px;}
.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:-66.000000px;}
.ws0{word-spacing:-22.500000px;}
.wsa{word-spacing:-19.002000px;}
.ws7{word-spacing:-18.007200px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.506600px;}
.ws2{word-spacing:-16.500000px;}
.wsc{word-spacing:-16.068000px;}
.ws9{word-spacing:-15.192000px;}
.wsb{word-spacing:-15.006000px;}
.ws8{word-spacing:-15.000000px;}
.ws4{word-spacing:-13.500000px;}
.wsd{word-spacing:-10.714290px;}
.ws5{word-spacing:0.000000px;}
.wse{word-spacing:4.276245px;}
._0{margin-left:-9.120000px;}
._3{margin-left:-3.273600px;}
._7{margin-left:-1.663200px;}
._11{width:1.003200px;}
._12{width:2.013000px;}
._6{width:3.042600px;}
._c{width:4.956600px;}
._d{width:6.318600px;}
._8{width:7.464600px;}
._1{width:9.188400px;}
._2{width:10.242000px;}
._a{width:11.253000px;}
._e{width:12.790800px;}
._9{width:14.262600px;}
._16{width:15.265800px;}
._29{width:16.300200px;}
._b{width:18.255600px;}
._10{width:19.265400px;}
._18{width:20.361000px;}
._4{width:21.773400px;}
._1e{width:23.727000px;}
._1c{width:25.759800px;}
._15{width:27.654000px;}
._20{width:28.738200px;}
._5{width:30.340200px;}
._14{width:31.785600px;}
._17{width:32.802000px;}
._23{width:34.438800px;}
._1a{width:35.673000px;}
._19{width:36.854400px;}
._25{width:38.148000px;}
._26{width:39.468000px;}
._f{width:41.085000px;}
._24{width:42.108000px;}
._1f{width:43.164000px;}
._13{width:44.338800px;}
._27{width:46.510200px;}
._1b{width:47.612400px;}
._22{width:63.690000px;}
._1d{width:65.359800px;}
._28{width:82.328400px;}
._21{width:114.463800px;}
.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;}
.fs3{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:120.000000px;}
.fs0{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:27.925350px;}
.y42{bottom:44.125350px;}
.y3a{bottom:56.834700px;}
.y66{bottom:60.295200px;}
.y41{bottom:60.325350px;}
.y166{bottom:108.099900px;}
.y83{bottom:113.531550px;}
.y18f{bottom:114.158100px;}
.y174{bottom:115.144050px;}
.y17e{bottom:115.350900px;}
.y68{bottom:115.903200px;}
.y13c{bottom:116.282400px;}
.y1d7{bottom:116.731050px;}
.y23{bottom:117.319050px;}
.y19f{bottom:117.691350px;}
.y131{bottom:118.732950px;}
.y98{bottom:118.775550px;}
.yef{bottom:119.338950px;}
.y1bb{bottom:125.776950px;}
.yc9{bottom:126.850650px;}
.y165{bottom:127.899900px;}
.y39{bottom:129.607200px;}
.y18e{bottom:130.358100px;}
.y67{bottom:132.103200px;}
.y82{bottom:133.331550px;}
.y173{bottom:134.944050px;}
.y22{bottom:137.119050px;}
.y19e{bottom:137.491350px;}
.y130{bottom:138.532950px;}
.y97{bottom:138.575550px;}
.yee{bottom:139.138950px;}
.y1d6{bottom:143.235000px;}
.y1ba{bottom:145.576950px;}
.yc8{bottom:146.650650px;}
.y164{bottom:147.699900px;}
.y38{bottom:149.407200px;}
.y81{bottom:153.132000px;}
.y172{bottom:154.744500px;}
.y21{bottom:156.919500px;}
.y19d{bottom:157.291500px;}
.y12f{bottom:158.332500px;}
.y96{bottom:158.376000px;}
.yed{bottom:158.938500px;}
.yff{bottom:159.406500px;}
.y1d5{bottom:161.235000px;}
.y1b9{bottom:165.376500px;}
.yc7{bottom:166.450500px;}
.y163{bottom:167.500500px;}
.y37{bottom:169.207500px;}
.y80{bottom:172.932000px;}
.y171{bottom:174.544500px;}
.y20{bottom:176.719500px;}
.y19c{bottom:177.091500px;}
.y12e{bottom:178.132500px;}
.y95{bottom:178.176000px;}
.yec{bottom:178.738500px;}
.yfe{bottom:179.206500px;}
.y1d4{bottom:179.235000px;}
.y1b8{bottom:185.176500px;}
.yc6{bottom:186.250500px;}
.y162{bottom:187.300500px;}
.y36{bottom:189.007500px;}
.y7f{bottom:192.732000px;}
.y170{bottom:194.344500px;}
.y1f{bottom:196.519500px;}
.y19b{bottom:196.891500px;}
.y1d3{bottom:197.235000px;}
.y12d{bottom:197.932500px;}
.y94{bottom:197.976000px;}
.yfd{bottom:199.006500px;}
.y1b7{bottom:204.976500px;}
.yc5{bottom:206.050500px;}
.y161{bottom:207.100500px;}
.y35{bottom:208.807500px;}
.yeb{bottom:211.294500px;}
.y16f{bottom:214.144500px;}
.y1d2{bottom:215.235000px;}
.y1e{bottom:216.319500px;}
.y19a{bottom:216.691500px;}
.y12c{bottom:217.732500px;}
.y93{bottom:217.776000px;}
.yfc{bottom:218.806500px;}
.y1b6{bottom:224.776500px;}
.y7e{bottom:225.288000px;}
.yc4{bottom:225.850500px;}
.y160{bottom:226.900500px;}
.y34{bottom:228.607500px;}
.y1d1{bottom:233.235000px;}
.y16e{bottom:233.944500px;}
.y1d{bottom:236.119500px;}
.y199{bottom:236.491500px;}
.y12b{bottom:237.532500px;}
.y92{bottom:237.576000px;}
.yfb{bottom:238.606500px;}
.y1b5{bottom:244.576500px;}
.y7d{bottom:245.088000px;}
.yc3{bottom:245.650500px;}
.y15f{bottom:246.700500px;}
.y33{bottom:248.407500px;}
.y1d0{bottom:251.235000px;}
.y16d{bottom:253.744500px;}
.y1c{bottom:255.919500px;}
.y198{bottom:256.291500px;}
.y12a{bottom:257.332500px;}
.y91{bottom:257.376000px;}
.yea{bottom:258.406500px;}
.y1b4{bottom:264.376500px;}
.y7c{bottom:264.888000px;}
.yc2{bottom:265.450500px;}
.y15e{bottom:266.500500px;}
.y32{bottom:268.207500px;}
.y1b{bottom:275.719500px;}
.y197{bottom:276.091500px;}
.y129{bottom:277.132500px;}
.y90{bottom:277.176000px;}
.y1cf{bottom:277.738500px;}
.ye9{bottom:278.206500px;}
.y1b3{bottom:284.176500px;}
.y7b{bottom:284.688000px;}
.yc1{bottom:285.250500px;}
.y15d{bottom:286.300500px;}
.y31{bottom:288.007500px;}
.y1a{bottom:295.519500px;}
.y1ce{bottom:295.738500px;}
.y128{bottom:296.932500px;}
.y8f{bottom:296.976000px;}
.ye8{bottom:298.006500px;}
.y1b2{bottom:303.976500px;}
.y7a{bottom:304.488000px;}
.yc0{bottom:305.050500px;}
.y15c{bottom:306.100500px;}
.y30{bottom:307.807500px;}
.y1cd{bottom:313.738500px;}
.y19{bottom:315.319500px;}
.y127{bottom:316.732500px;}
.y8e{bottom:316.776000px;}
.ye7{bottom:317.806500px;}
.y1b1{bottom:323.776500px;}
.y79{bottom:324.288000px;}
.ybf{bottom:324.850500px;}
.y15b{bottom:325.900500px;}
.y2f{bottom:327.607500px;}
.y1cc{bottom:331.738500px;}
.y18{bottom:335.119500px;}
.y126{bottom:336.532500px;}
.y8d{bottom:336.576000px;}
.ye6{bottom:337.606500px;}
.y1b0{bottom:343.576500px;}
.y78{bottom:344.088000px;}
.ybe{bottom:344.650500px;}
.y15a{bottom:345.700500px;}
.y2e{bottom:347.407500px;}
.y125{bottom:356.332500px;}
.y8c{bottom:356.376000px;}
.ye5{bottom:357.406500px;}
.y1cb{bottom:358.243500px;}
.y1af{bottom:363.376500px;}
.y77{bottom:363.888000px;}
.ybd{bottom:364.450500px;}
.y159{bottom:365.500500px;}
.y2d{bottom:367.207500px;}
.y17{bottom:367.675500px;}
.y1a1{bottom:369.609000px;}
.y124{bottom:376.132500px;}
.y8b{bottom:376.176000px;}
.y1ca{bottom:376.243500px;}
.ye4{bottom:377.206500px;}
.y1ae{bottom:383.176500px;}
.y76{bottom:383.688000px;}
.ybc{bottom:384.250500px;}
.y158{bottom:385.300500px;}
.y1a0{bottom:385.809000px;}
.y2c{bottom:387.007500px;}
.y16{bottom:387.475500px;}
.y1c9{bottom:394.243500px;}
.y123{bottom:395.932500px;}
.y8a{bottom:395.976000px;}
.ye3{bottom:397.006500px;}
.y1ad{bottom:402.976500px;}
.y75{bottom:403.488000px;}
.ybb{bottom:404.050500px;}
.y188{bottom:404.518500px;}
.y157{bottom:405.100500px;}
.y2b{bottom:406.807500px;}
.y15{bottom:407.275500px;}
.y1c8{bottom:412.243500px;}
.y122{bottom:415.732500px;}
.y89{bottom:415.776000px;}
.ye2{bottom:416.806500px;}
.y1ac{bottom:422.776500px;}
.yba{bottom:423.850500px;}
.y187{bottom:424.318500px;}
.y156{bottom:424.900500px;}
.y2a{bottom:426.607500px;}
.y14{bottom:427.075500px;}
.y121{bottom:435.532500px;}
.y88{bottom:435.576000px;}
.y74{bottom:436.044000px;}
.ye1{bottom:436.606500px;}
.y1c7{bottom:438.747000px;}
.y1ab{bottom:442.576500px;}
.yb9{bottom:443.650500px;}
.y186{bottom:444.118500px;}
.y16c{bottom:444.700500px;}
.y29{bottom:446.407500px;}
.y13{bottom:446.875500px;}
.y120{bottom:455.332500px;}
.y87{bottom:455.376000px;}
.y73{bottom:455.844000px;}
.ye0{bottom:456.406500px;}
.y1c6{bottom:456.747000px;}
.y155{bottom:457.456500px;}
.y1aa{bottom:462.376500px;}
.yb8{bottom:463.450500px;}
.y185{bottom:463.918500px;}
.y16b{bottom:464.500500px;}
.y28{bottom:466.207500px;}
.y12{bottom:466.675500px;}
.y18d{bottom:469.162500px;}
.y11f{bottom:475.132500px;}
.y86{bottom:475.176000px;}
.y72{bottom:475.644000px;}
.ydf{bottom:476.206500px;}
.y154{bottom:477.256500px;}
.y1a9{bottom:482.176500px;}
.yb7{bottom:483.250500px;}
.y184{bottom:483.718500px;}
.y16a{bottom:484.300500px;}
.y27{bottom:486.007500px;}
.y11{bottom:486.475500px;}
.y217{bottom:487.801500px;}
.y85{bottom:494.976000px;}
.y71{bottom:495.444000px;}
.yde{bottom:496.006500px;}
.y153{bottom:497.056500px;}
.y1c5{bottom:501.250500px;}
.y1a8{bottom:501.976500px;}
.yb6{bottom:503.050500px;}
.y183{bottom:503.518500px;}
.y169{bottom:504.100500px;}
.y216{bottom:505.801500px;}
.y26{bottom:505.807500px;}
.y10{bottom:506.275500px;}
.y11e{bottom:507.688500px;}
.y1f8{bottom:508.393500px;}
.y70{bottom:515.244000px;}
.yfa{bottom:515.806500px;}
.y18c{bottom:516.274500px;}
.y152{bottom:516.856500px;}
.y1c4{bottom:519.250500px;}
.y1a7{bottom:521.776500px;}
.yb5{bottom:522.850500px;}
.y182{bottom:523.318500px;}
.y215{bottom:523.801500px;}
.y168{bottom:523.900500px;}
.y25{bottom:525.607500px;}
.yf{bottom:526.075500px;}
.y1f7{bottom:526.393500px;}
.y84{bottom:527.532000px;}
.ydd{bottom:528.562500px;}
.yf9{bottom:535.606500px;}
.y18b{bottom:536.074500px;}
.y151{bottom:536.656500px;}
.y1c3{bottom:537.250500px;}
.y1a6{bottom:541.576500px;}
.y214{bottom:541.801500px;}
.y181{bottom:543.118500px;}
.y167{bottom:543.700500px;}
.y1f6{bottom:544.393500px;}
.y6f{bottom:547.798500px;}
.ydc{bottom:548.362500px;}
.y11d{bottom:554.800500px;}
.y1c2{bottom:555.250500px;}
.yb4{bottom:555.406500px;}
.y18a{bottom:555.874500px;}
.y150{bottom:556.456500px;}
.y24{bottom:558.163500px;}
.ye{bottom:558.631500px;}
.y213{bottom:559.801500px;}
.y1a5{bottom:561.376500px;}
.y1f5{bottom:562.393500px;}
.y180{bottom:562.918500px;}
.y6e{bottom:567.598500px;}
.y17b{bottom:567.891000px;}
.ydb{bottom:568.162500px;}
.y1c1{bottom:573.250500px;}
.y11c{bottom:574.600500px;}
.yf8{bottom:575.206500px;}
.y189{bottom:575.674500px;}
.y14f{bottom:576.256500px;}
.y212{bottom:577.801500px;}
.yd{bottom:578.431500px;}
.y1a4{bottom:581.176500px;}
.y149{bottom:581.644500px;}
.y17f{bottom:582.718500px;}
.y6d{bottom:587.398500px;}
.y17a{bottom:587.691000px;}
.yda{bottom:587.962500px;}
.y1f4{bottom:588.898500px;}
.y11b{bottom:594.400500px;}
.y65{bottom:595.006500px;}
.y60{bottom:595.474500px;}
.y211{bottom:595.801500px;}
.y14e{bottom:596.056500px;}
.yc{bottom:598.231500px;}
.y1c0{bottom:599.754000px;}
.y1a3{bottom:600.976500px;}
.y148{bottom:601.444500px;}
.yb3{bottom:602.518500px;}
.y1f3{bottom:606.898500px;}
.y6c{bottom:607.198500px;}
.y179{bottom:607.491000px;}
.yd9{bottom:607.762500px;}
.y196{bottom:608.230500px;}
.y210{bottom:613.801500px;}
.y11a{bottom:614.200500px;}
.y64{bottom:614.806500px;}
.y5f{bottom:615.274500px;}
.y14d{bottom:615.856500px;}
.y1bf{bottom:617.754000px;}
.yb{bottom:618.031500px;}
.y147{bottom:621.244500px;}
.yb2{bottom:622.318500px;}
.y1f2{bottom:624.898500px;}
.y6b{bottom:626.998500px;}
.y178{bottom:627.291000px;}
.yd8{bottom:627.562500px;}
.y195{bottom:628.030500px;}
.y20f{bottom:631.801500px;}
.y1a2{bottom:633.532500px;}
.y119{bottom:634.000500px;}
.y63{bottom:634.606500px;}
.y5e{bottom:635.074500px;}
.y14c{bottom:635.656500px;}
.y1be{bottom:635.754000px;}
.ya{bottom:637.831500px;}
.y146{bottom:641.044500px;}
.yb1{bottom:642.118500px;}
.y1f1{bottom:642.898500px;}
.y6a{bottom:646.798500px;}
.y177{bottom:647.091000px;}
.yd7{bottom:647.362500px;}
.y194{bottom:647.830500px;}
.y20e{bottom:649.801500px;}
.y1bd{bottom:653.754000px;}
.y118{bottom:653.800500px;}
.y62{bottom:654.406500px;}
.y5d{bottom:654.874500px;}
.y14b{bottom:655.456500px;}
.y9{bottom:657.631500px;}
.y145{bottom:660.844500px;}
.yb0{bottom:661.918500px;}
.y69{bottom:666.598500px;}
.y176{bottom:666.891000px;}
.yd6{bottom:667.162500px;}
.y193{bottom:667.630500px;}
.y20d{bottom:667.801500px;}
.y1f0{bottom:669.402000px;}
.y1bc{bottom:671.754000px;}
.y117{bottom:673.600500px;}
.y13b{bottom:674.206500px;}
.y5c{bottom:674.674500px;}
.y14a{bottom:675.256500px;}
.y8{bottom:677.431500px;}
.y144{bottom:680.644500px;}
.yaf{bottom:681.718500px;}
.y61{bottom:686.962500px;}
.y1ef{bottom:687.402000px;}
.y192{bottom:687.430500px;}
.y116{bottom:693.400500px;}
.y13a{bottom:694.006500px;}
.y5b{bottom:694.474500px;}
.y7{bottom:697.231500px;}
.y20c{bottom:698.556000px;}
.y143{bottom:700.444500px;}
.yae{bottom:701.518500px;}
.y1ee{bottom:705.402000px;}
.yd5{bottom:706.762500px;}
.y191{bottom:707.230500px;}
.y115{bottom:713.200500px;}
.y139{bottom:713.806500px;}
.y5a{bottom:714.274500px;}
.y6{bottom:717.031500px;}
.y142{bottom:720.244500px;}
.yad{bottom:721.318500px;}
.y1ed{bottom:723.402000px;}
.yd4{bottom:726.562500px;}
.y190{bottom:727.030500px;}
.y114{bottom:733.000500px;}
.y138{bottom:733.606500px;}
.yf7{bottom:734.074500px;}
.y5{bottom:736.831500px;}
.y141{bottom:740.044500px;}
.yac{bottom:741.118500px;}
.y1ec{bottom:741.402000px;}
.y17d{bottom:742.188000px;}
.yd3{bottom:746.362500px;}
.y59{bottom:746.830500px;}
.y9a{bottom:750.070500px;}
.y175{bottom:750.775500px;}
.y113{bottom:752.800500px;}
.y137{bottom:753.406500px;}
.yf6{bottom:753.874500px;}
.y4{bottom:756.631500px;}
.y17c{bottom:758.388000px;}
.y140{bottom:759.844500px;}
.yab{bottom:760.918500px;}
.y20b{bottom:761.868000px;}
.yd2{bottom:766.162500px;}
.y58{bottom:766.630500px;}
.y1eb{bottom:767.905500px;}
.y112{bottom:772.600500px;}
.y136{bottom:773.206500px;}
.yf5{bottom:773.674500px;}
.y3{bottom:776.431500px;}
.y13f{bottom:779.644500px;}
.y20a{bottom:779.868000px;}
.yaa{bottom:780.718500px;}
.y1ea{bottom:785.905500px;}
.yd1{bottom:785.962500px;}
.y57{bottom:786.430500px;}
.y111{bottom:792.400500px;}
.y135{bottom:793.006500px;}
.yf4{bottom:793.474500px;}
.y209{bottom:797.868000px;}
.y13e{bottom:799.444500px;}
.ya9{bottom:800.518500px;}
.y1e9{bottom:803.905500px;}
.yd0{bottom:805.762500px;}
.y56{bottom:806.230500px;}
.y110{bottom:812.200500px;}
.y134{bottom:812.806500px;}
.yf3{bottom:813.274500px;}
.y208{bottom:815.868000px;}
.y13d{bottom:819.244500px;}
.ya8{bottom:820.318500px;}
.ycf{bottom:825.562500px;}
.y55{bottom:826.030500px;}
.y1e8{bottom:830.409000px;}
.y10f{bottom:832.000500px;}
.y133{bottom:832.606500px;}
.yf2{bottom:833.074500px;}
.y207{bottom:833.868000px;}
.ya7{bottom:840.118500px;}
.yce{bottom:845.362500px;}
.y54{bottom:845.830500px;}
.y1e7{bottom:848.409000px;}
.y10e{bottom:851.800500px;}
.y206{bottom:851.868000px;}
.y132{bottom:852.406500px;}
.yf1{bottom:852.874500px;}
.y40{bottom:859.635000px;}
.ya6{bottom:859.918500px;}
.ycd{bottom:865.162500px;}
.y53{bottom:865.630500px;}
.y1e6{bottom:866.409000px;}
.y205{bottom:869.868000px;}
.y10d{bottom:871.600500px;}
.yf0{bottom:872.674500px;}
.y3f{bottom:877.635000px;}
.ycc{bottom:884.962500px;}
.y52{bottom:885.430500px;}
.y204{bottom:887.868000px;}
.y10c{bottom:891.400500px;}
.ya5{bottom:892.474500px;}
.y1e5{bottom:892.914000px;}
.ycb{bottom:904.762500px;}
.y51{bottom:905.230500px;}
.y1e4{bottom:910.914000px;}
.y10b{bottom:911.200500px;}
.ya4{bottom:912.274500px;}
.y3e{bottom:913.635000px;}
.y203{bottom:918.624000px;}
.y50{bottom:925.030500px;}
.y1e3{bottom:928.914000px;}
.y10a{bottom:931.000500px;}
.ya3{bottom:932.074500px;}
.yca{bottom:937.318500px;}
.y4f{bottom:944.830500px;}
.y1e2{bottom:946.914000px;}
.y109{bottom:950.800500px;}
.ya2{bottom:951.874500px;}
.y3d{bottom:956.835000px;}
.y4e{bottom:964.630500px;}
.y1e1{bottom:964.914000px;}
.y108{bottom:970.600500px;}
.ya1{bottom:971.674500px;}
.y202{bottom:973.432500px;}
.y4d{bottom:984.430500px;}
.y107{bottom:990.400500px;}
.y1e0{bottom:991.417500px;}
.y201{bottom:991.432500px;}
.ya0{bottom:991.474500px;}
.y3c{bottom:992.835000px;}
.y4c{bottom:1004.230500px;}
.y1df{bottom:1009.417500px;}
.y200{bottom:1009.432500px;}
.y106{bottom:1010.200500px;}
.y9f{bottom:1011.274500px;}
.y4b{bottom:1024.030500px;}
.y1de{bottom:1027.417500px;}
.y1ff{bottom:1027.432500px;}
.y3b{bottom:1028.835000px;}
.y105{bottom:1030.000500px;}
.y9e{bottom:1031.074500px;}
.y4a{bottom:1043.830500px;}
.y1dd{bottom:1045.417500px;}
.y1fe{bottom:1045.432500px;}
.y104{bottom:1049.800500px;}
.y9d{bottom:1050.874500px;}
.y1fd{bottom:1063.432500px;}
.y49{bottom:1063.630500px;}
.y103{bottom:1069.600500px;}
.y9c{bottom:1070.674500px;}
.y1dc{bottom:1071.921000px;}
.y48{bottom:1083.430500px;}
.y102{bottom:1089.400500px;}
.y1db{bottom:1089.921000px;}
.y1fc{bottom:1089.936000px;}
.y9b{bottom:1090.474500px;}
.y2{bottom:1100.785500px;}
.y47{bottom:1103.230500px;}
.y1da{bottom:1107.921000px;}
.y1fb{bottom:1107.936000px;}
.y101{bottom:1109.200500px;}
.y46{bottom:1123.030500px;}
.y1d9{bottom:1125.921000px;}
.y1fa{bottom:1125.936000px;}
.y100{bottom:1141.756500px;}
.y45{bottom:1142.830500px;}
.y1d8{bottom:1143.921000px;}
.y1f9{bottom:1143.936000px;}
.y1{bottom:1159.671000px;}
.y99{bottom:1203.561000px;}
.y44{bottom:1203.604500px;}
.hd{height:39.313477px;}
.hc{height:39.366211px;}
.hb{height:43.535156px;}
.h10{height:43.681641px;}
.hf{height:43.740234px;}
.h4{height:48.049805px;}
.h7{height:48.114258px;}
.ha{height:52.417969px;}
.h6{height:52.488281px;}
.he{height:52.558594px;}
.h5{height:53.109375px;}
.h3{height:65.610352px;}
.h8{height:87.480469px;}
.h9{height:87.597656px;}
.h2{height:171.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:44.645700px;}
.xe{left:46.771650px;}
.x4{left:108.000000px;}
.x9{left:116.070750px;}
.x8{left:125.306550px;}
.x1{left:127.657350px;}
.x3{left:129.259800px;}
.x2{left:131.834700px;}
.xa{left:212.670000px;}
.xc{left:323.199000px;}
.xd{left:335.944500px;}
.xb{left:382.363500px;}
.x5{left:467.716500px;}
.x12{left:484.725000px;}
.x6{left:488.976000px;}
.x10{left:521.709000px;}
.x11{left:833.893500px;}
.x7{left:836.019000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.005867pt;}
.ls3{letter-spacing:0.006400pt;}
.ls8{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.011733pt;}
.ls5{letter-spacing:0.170667pt;}
.ls7{letter-spacing:0.949333pt;}
.ls6{letter-spacing:3.557333pt;}
.ws1{word-spacing:-58.666667pt;}
.ws0{word-spacing:-20.000000pt;}
.wsa{word-spacing:-16.890667pt;}
.ws7{word-spacing:-16.006400pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.672533pt;}
.ws2{word-spacing:-14.666667pt;}
.wsc{word-spacing:-14.282667pt;}
.ws9{word-spacing:-13.504000pt;}
.wsb{word-spacing:-13.338667pt;}
.ws8{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.000000pt;}
.wsd{word-spacing:-9.523813pt;}
.ws5{word-spacing:0.000000pt;}
.wse{word-spacing:3.801107pt;}
._0{margin-left:-8.106667pt;}
._3{margin-left:-2.909867pt;}
._7{margin-left:-1.478400pt;}
._11{width:0.891733pt;}
._12{width:1.789333pt;}
._6{width:2.704533pt;}
._c{width:4.405867pt;}
._d{width:5.616533pt;}
._8{width:6.635200pt;}
._1{width:8.167467pt;}
._2{width:9.104000pt;}
._a{width:10.002667pt;}
._e{width:11.369600pt;}
._9{width:12.677867pt;}
._16{width:13.569600pt;}
._29{width:14.489067pt;}
._b{width:16.227200pt;}
._10{width:17.124800pt;}
._18{width:18.098667pt;}
._4{width:19.354133pt;}
._1e{width:21.090667pt;}
._1c{width:22.897600pt;}
._15{width:24.581333pt;}
._20{width:25.545067pt;}
._5{width:26.969067pt;}
._14{width:28.253867pt;}
._17{width:29.157333pt;}
._23{width:30.612267pt;}
._1a{width:31.709333pt;}
._19{width:32.759467pt;}
._25{width:33.909333pt;}
._26{width:35.082667pt;}
._f{width:36.520000pt;}
._24{width:37.429333pt;}
._1f{width:38.368000pt;}
._13{width:39.412267pt;}
._27{width:41.342400pt;}
._1b{width:42.322133pt;}
._22{width:56.613333pt;}
._1d{width:58.097600pt;}
._28{width:73.180800pt;}
._21{width:101.745600pt;}
.fs7{font-size:38.095253pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:106.666667pt;}
.fs0{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:24.822533pt;}
.y42{bottom:39.222533pt;}
.y3a{bottom:50.519733pt;}
.y66{bottom:53.595733pt;}
.y41{bottom:53.622533pt;}
.y166{bottom:96.088800pt;}
.y83{bottom:100.916933pt;}
.y18f{bottom:101.473867pt;}
.y174{bottom:102.350267pt;}
.y17e{bottom:102.534133pt;}
.y68{bottom:103.025067pt;}
.y13c{bottom:103.362133pt;}
.y1d7{bottom:103.760933pt;}
.y23{bottom:104.283600pt;}
.y19f{bottom:104.614533pt;}
.y131{bottom:105.540400pt;}
.y98{bottom:105.578267pt;}
.yef{bottom:106.079067pt;}
.y1bb{bottom:111.801733pt;}
.yc9{bottom:112.756133pt;}
.y165{bottom:113.688800pt;}
.y39{bottom:115.206400pt;}
.y18e{bottom:115.873867pt;}
.y67{bottom:117.425067pt;}
.y82{bottom:118.516933pt;}
.y173{bottom:119.950267pt;}
.y22{bottom:121.883600pt;}
.y19e{bottom:122.214533pt;}
.y130{bottom:123.140400pt;}
.y97{bottom:123.178267pt;}
.yee{bottom:123.679067pt;}
.y1d6{bottom:127.320000pt;}
.y1ba{bottom:129.401733pt;}
.yc8{bottom:130.356133pt;}
.y164{bottom:131.288800pt;}
.y38{bottom:132.806400pt;}
.y81{bottom:136.117333pt;}
.y172{bottom:137.550667pt;}
.y21{bottom:139.484000pt;}
.y19d{bottom:139.814667pt;}
.y12f{bottom:140.740000pt;}
.y96{bottom:140.778667pt;}
.yed{bottom:141.278667pt;}
.yff{bottom:141.694667pt;}
.y1d5{bottom:143.320000pt;}
.y1b9{bottom:147.001333pt;}
.yc7{bottom:147.956000pt;}
.y163{bottom:148.889333pt;}
.y37{bottom:150.406667pt;}
.y80{bottom:153.717333pt;}
.y171{bottom:155.150667pt;}
.y20{bottom:157.084000pt;}
.y19c{bottom:157.414667pt;}
.y12e{bottom:158.340000pt;}
.y95{bottom:158.378667pt;}
.yec{bottom:158.878667pt;}
.yfe{bottom:159.294667pt;}
.y1d4{bottom:159.320000pt;}
.y1b8{bottom:164.601333pt;}
.yc6{bottom:165.556000pt;}
.y162{bottom:166.489333pt;}
.y36{bottom:168.006667pt;}
.y7f{bottom:171.317333pt;}
.y170{bottom:172.750667pt;}
.y1f{bottom:174.684000pt;}
.y19b{bottom:175.014667pt;}
.y1d3{bottom:175.320000pt;}
.y12d{bottom:175.940000pt;}
.y94{bottom:175.978667pt;}
.yfd{bottom:176.894667pt;}
.y1b7{bottom:182.201333pt;}
.yc5{bottom:183.156000pt;}
.y161{bottom:184.089333pt;}
.y35{bottom:185.606667pt;}
.yeb{bottom:187.817333pt;}
.y16f{bottom:190.350667pt;}
.y1d2{bottom:191.320000pt;}
.y1e{bottom:192.284000pt;}
.y19a{bottom:192.614667pt;}
.y12c{bottom:193.540000pt;}
.y93{bottom:193.578667pt;}
.yfc{bottom:194.494667pt;}
.y1b6{bottom:199.801333pt;}
.y7e{bottom:200.256000pt;}
.yc4{bottom:200.756000pt;}
.y160{bottom:201.689333pt;}
.y34{bottom:203.206667pt;}
.y1d1{bottom:207.320000pt;}
.y16e{bottom:207.950667pt;}
.y1d{bottom:209.884000pt;}
.y199{bottom:210.214667pt;}
.y12b{bottom:211.140000pt;}
.y92{bottom:211.178667pt;}
.yfb{bottom:212.094667pt;}
.y1b5{bottom:217.401333pt;}
.y7d{bottom:217.856000pt;}
.yc3{bottom:218.356000pt;}
.y15f{bottom:219.289333pt;}
.y33{bottom:220.806667pt;}
.y1d0{bottom:223.320000pt;}
.y16d{bottom:225.550667pt;}
.y1c{bottom:227.484000pt;}
.y198{bottom:227.814667pt;}
.y12a{bottom:228.740000pt;}
.y91{bottom:228.778667pt;}
.yea{bottom:229.694667pt;}
.y1b4{bottom:235.001333pt;}
.y7c{bottom:235.456000pt;}
.yc2{bottom:235.956000pt;}
.y15e{bottom:236.889333pt;}
.y32{bottom:238.406667pt;}
.y1b{bottom:245.084000pt;}
.y197{bottom:245.414667pt;}
.y129{bottom:246.340000pt;}
.y90{bottom:246.378667pt;}
.y1cf{bottom:246.878667pt;}
.ye9{bottom:247.294667pt;}
.y1b3{bottom:252.601333pt;}
.y7b{bottom:253.056000pt;}
.yc1{bottom:253.556000pt;}
.y15d{bottom:254.489333pt;}
.y31{bottom:256.006667pt;}
.y1a{bottom:262.684000pt;}
.y1ce{bottom:262.878667pt;}
.y128{bottom:263.940000pt;}
.y8f{bottom:263.978667pt;}
.ye8{bottom:264.894667pt;}
.y1b2{bottom:270.201333pt;}
.y7a{bottom:270.656000pt;}
.yc0{bottom:271.156000pt;}
.y15c{bottom:272.089333pt;}
.y30{bottom:273.606667pt;}
.y1cd{bottom:278.878667pt;}
.y19{bottom:280.284000pt;}
.y127{bottom:281.540000pt;}
.y8e{bottom:281.578667pt;}
.ye7{bottom:282.494667pt;}
.y1b1{bottom:287.801333pt;}
.y79{bottom:288.256000pt;}
.ybf{bottom:288.756000pt;}
.y15b{bottom:289.689333pt;}
.y2f{bottom:291.206667pt;}
.y1cc{bottom:294.878667pt;}
.y18{bottom:297.884000pt;}
.y126{bottom:299.140000pt;}
.y8d{bottom:299.178667pt;}
.ye6{bottom:300.094667pt;}
.y1b0{bottom:305.401333pt;}
.y78{bottom:305.856000pt;}
.ybe{bottom:306.356000pt;}
.y15a{bottom:307.289333pt;}
.y2e{bottom:308.806667pt;}
.y125{bottom:316.740000pt;}
.y8c{bottom:316.778667pt;}
.ye5{bottom:317.694667pt;}
.y1cb{bottom:318.438667pt;}
.y1af{bottom:323.001333pt;}
.y77{bottom:323.456000pt;}
.ybd{bottom:323.956000pt;}
.y159{bottom:324.889333pt;}
.y2d{bottom:326.406667pt;}
.y17{bottom:326.822667pt;}
.y1a1{bottom:328.541333pt;}
.y124{bottom:334.340000pt;}
.y8b{bottom:334.378667pt;}
.y1ca{bottom:334.438667pt;}
.ye4{bottom:335.294667pt;}
.y1ae{bottom:340.601333pt;}
.y76{bottom:341.056000pt;}
.ybc{bottom:341.556000pt;}
.y158{bottom:342.489333pt;}
.y1a0{bottom:342.941333pt;}
.y2c{bottom:344.006667pt;}
.y16{bottom:344.422667pt;}
.y1c9{bottom:350.438667pt;}
.y123{bottom:351.940000pt;}
.y8a{bottom:351.978667pt;}
.ye3{bottom:352.894667pt;}
.y1ad{bottom:358.201333pt;}
.y75{bottom:358.656000pt;}
.ybb{bottom:359.156000pt;}
.y188{bottom:359.572000pt;}
.y157{bottom:360.089333pt;}
.y2b{bottom:361.606667pt;}
.y15{bottom:362.022667pt;}
.y1c8{bottom:366.438667pt;}
.y122{bottom:369.540000pt;}
.y89{bottom:369.578667pt;}
.ye2{bottom:370.494667pt;}
.y1ac{bottom:375.801333pt;}
.yba{bottom:376.756000pt;}
.y187{bottom:377.172000pt;}
.y156{bottom:377.689333pt;}
.y2a{bottom:379.206667pt;}
.y14{bottom:379.622667pt;}
.y121{bottom:387.140000pt;}
.y88{bottom:387.178667pt;}
.y74{bottom:387.594667pt;}
.ye1{bottom:388.094667pt;}
.y1c7{bottom:389.997333pt;}
.y1ab{bottom:393.401333pt;}
.yb9{bottom:394.356000pt;}
.y186{bottom:394.772000pt;}
.y16c{bottom:395.289333pt;}
.y29{bottom:396.806667pt;}
.y13{bottom:397.222667pt;}
.y120{bottom:404.740000pt;}
.y87{bottom:404.778667pt;}
.y73{bottom:405.194667pt;}
.ye0{bottom:405.694667pt;}
.y1c6{bottom:405.997333pt;}
.y155{bottom:406.628000pt;}
.y1aa{bottom:411.001333pt;}
.yb8{bottom:411.956000pt;}
.y185{bottom:412.372000pt;}
.y16b{bottom:412.889333pt;}
.y28{bottom:414.406667pt;}
.y12{bottom:414.822667pt;}
.y18d{bottom:417.033333pt;}
.y11f{bottom:422.340000pt;}
.y86{bottom:422.378667pt;}
.y72{bottom:422.794667pt;}
.ydf{bottom:423.294667pt;}
.y154{bottom:424.228000pt;}
.y1a9{bottom:428.601333pt;}
.yb7{bottom:429.556000pt;}
.y184{bottom:429.972000pt;}
.y16a{bottom:430.489333pt;}
.y27{bottom:432.006667pt;}
.y11{bottom:432.422667pt;}
.y217{bottom:433.601333pt;}
.y85{bottom:439.978667pt;}
.y71{bottom:440.394667pt;}
.yde{bottom:440.894667pt;}
.y153{bottom:441.828000pt;}
.y1c5{bottom:445.556000pt;}
.y1a8{bottom:446.201333pt;}
.yb6{bottom:447.156000pt;}
.y183{bottom:447.572000pt;}
.y169{bottom:448.089333pt;}
.y216{bottom:449.601333pt;}
.y26{bottom:449.606667pt;}
.y10{bottom:450.022667pt;}
.y11e{bottom:451.278667pt;}
.y1f8{bottom:451.905333pt;}
.y70{bottom:457.994667pt;}
.yfa{bottom:458.494667pt;}
.y18c{bottom:458.910667pt;}
.y152{bottom:459.428000pt;}
.y1c4{bottom:461.556000pt;}
.y1a7{bottom:463.801333pt;}
.yb5{bottom:464.756000pt;}
.y182{bottom:465.172000pt;}
.y215{bottom:465.601333pt;}
.y168{bottom:465.689333pt;}
.y25{bottom:467.206667pt;}
.yf{bottom:467.622667pt;}
.y1f7{bottom:467.905333pt;}
.y84{bottom:468.917333pt;}
.ydd{bottom:469.833333pt;}
.yf9{bottom:476.094667pt;}
.y18b{bottom:476.510667pt;}
.y151{bottom:477.028000pt;}
.y1c3{bottom:477.556000pt;}
.y1a6{bottom:481.401333pt;}
.y214{bottom:481.601333pt;}
.y181{bottom:482.772000pt;}
.y167{bottom:483.289333pt;}
.y1f6{bottom:483.905333pt;}
.y6f{bottom:486.932000pt;}
.ydc{bottom:487.433333pt;}
.y11d{bottom:493.156000pt;}
.y1c2{bottom:493.556000pt;}
.yb4{bottom:493.694667pt;}
.y18a{bottom:494.110667pt;}
.y150{bottom:494.628000pt;}
.y24{bottom:496.145333pt;}
.ye{bottom:496.561333pt;}
.y213{bottom:497.601333pt;}
.y1a5{bottom:499.001333pt;}
.y1f5{bottom:499.905333pt;}
.y180{bottom:500.372000pt;}
.y6e{bottom:504.532000pt;}
.y17b{bottom:504.792000pt;}
.ydb{bottom:505.033333pt;}
.y1c1{bottom:509.556000pt;}
.y11c{bottom:510.756000pt;}
.yf8{bottom:511.294667pt;}
.y189{bottom:511.710667pt;}
.y14f{bottom:512.228000pt;}
.y212{bottom:513.601333pt;}
.yd{bottom:514.161333pt;}
.y1a4{bottom:516.601333pt;}
.y149{bottom:517.017333pt;}
.y17f{bottom:517.972000pt;}
.y6d{bottom:522.132000pt;}
.y17a{bottom:522.392000pt;}
.yda{bottom:522.633333pt;}
.y1f4{bottom:523.465333pt;}
.y11b{bottom:528.356000pt;}
.y65{bottom:528.894667pt;}
.y60{bottom:529.310667pt;}
.y211{bottom:529.601333pt;}
.y14e{bottom:529.828000pt;}
.yc{bottom:531.761333pt;}
.y1c0{bottom:533.114667pt;}
.y1a3{bottom:534.201333pt;}
.y148{bottom:534.617333pt;}
.yb3{bottom:535.572000pt;}
.y1f3{bottom:539.465333pt;}
.y6c{bottom:539.732000pt;}
.y179{bottom:539.992000pt;}
.yd9{bottom:540.233333pt;}
.y196{bottom:540.649333pt;}
.y210{bottom:545.601333pt;}
.y11a{bottom:545.956000pt;}
.y64{bottom:546.494667pt;}
.y5f{bottom:546.910667pt;}
.y14d{bottom:547.428000pt;}
.y1bf{bottom:549.114667pt;}
.yb{bottom:549.361333pt;}
.y147{bottom:552.217333pt;}
.yb2{bottom:553.172000pt;}
.y1f2{bottom:555.465333pt;}
.y6b{bottom:557.332000pt;}
.y178{bottom:557.592000pt;}
.yd8{bottom:557.833333pt;}
.y195{bottom:558.249333pt;}
.y20f{bottom:561.601333pt;}
.y1a2{bottom:563.140000pt;}
.y119{bottom:563.556000pt;}
.y63{bottom:564.094667pt;}
.y5e{bottom:564.510667pt;}
.y14c{bottom:565.028000pt;}
.y1be{bottom:565.114667pt;}
.ya{bottom:566.961333pt;}
.y146{bottom:569.817333pt;}
.yb1{bottom:570.772000pt;}
.y1f1{bottom:571.465333pt;}
.y6a{bottom:574.932000pt;}
.y177{bottom:575.192000pt;}
.yd7{bottom:575.433333pt;}
.y194{bottom:575.849333pt;}
.y20e{bottom:577.601333pt;}
.y1bd{bottom:581.114667pt;}
.y118{bottom:581.156000pt;}
.y62{bottom:581.694667pt;}
.y5d{bottom:582.110667pt;}
.y14b{bottom:582.628000pt;}
.y9{bottom:584.561333pt;}
.y145{bottom:587.417333pt;}
.yb0{bottom:588.372000pt;}
.y69{bottom:592.532000pt;}
.y176{bottom:592.792000pt;}
.yd6{bottom:593.033333pt;}
.y193{bottom:593.449333pt;}
.y20d{bottom:593.601333pt;}
.y1f0{bottom:595.024000pt;}
.y1bc{bottom:597.114667pt;}
.y117{bottom:598.756000pt;}
.y13b{bottom:599.294667pt;}
.y5c{bottom:599.710667pt;}
.y14a{bottom:600.228000pt;}
.y8{bottom:602.161333pt;}
.y144{bottom:605.017333pt;}
.yaf{bottom:605.972000pt;}
.y61{bottom:610.633333pt;}
.y1ef{bottom:611.024000pt;}
.y192{bottom:611.049333pt;}
.y116{bottom:616.356000pt;}
.y13a{bottom:616.894667pt;}
.y5b{bottom:617.310667pt;}
.y7{bottom:619.761333pt;}
.y20c{bottom:620.938667pt;}
.y143{bottom:622.617333pt;}
.yae{bottom:623.572000pt;}
.y1ee{bottom:627.024000pt;}
.yd5{bottom:628.233333pt;}
.y191{bottom:628.649333pt;}
.y115{bottom:633.956000pt;}
.y139{bottom:634.494667pt;}
.y5a{bottom:634.910667pt;}
.y6{bottom:637.361333pt;}
.y142{bottom:640.217333pt;}
.yad{bottom:641.172000pt;}
.y1ed{bottom:643.024000pt;}
.yd4{bottom:645.833333pt;}
.y190{bottom:646.249333pt;}
.y114{bottom:651.556000pt;}
.y138{bottom:652.094667pt;}
.yf7{bottom:652.510667pt;}
.y5{bottom:654.961333pt;}
.y141{bottom:657.817333pt;}
.yac{bottom:658.772000pt;}
.y1ec{bottom:659.024000pt;}
.y17d{bottom:659.722667pt;}
.yd3{bottom:663.433333pt;}
.y59{bottom:663.849333pt;}
.y9a{bottom:666.729333pt;}
.y175{bottom:667.356000pt;}
.y113{bottom:669.156000pt;}
.y137{bottom:669.694667pt;}
.yf6{bottom:670.110667pt;}
.y4{bottom:672.561333pt;}
.y17c{bottom:674.122667pt;}
.y140{bottom:675.417333pt;}
.yab{bottom:676.372000pt;}
.y20b{bottom:677.216000pt;}
.yd2{bottom:681.033333pt;}
.y58{bottom:681.449333pt;}
.y1eb{bottom:682.582667pt;}
.y112{bottom:686.756000pt;}
.y136{bottom:687.294667pt;}
.yf5{bottom:687.710667pt;}
.y3{bottom:690.161333pt;}
.y13f{bottom:693.017333pt;}
.y20a{bottom:693.216000pt;}
.yaa{bottom:693.972000pt;}
.y1ea{bottom:698.582667pt;}
.yd1{bottom:698.633333pt;}
.y57{bottom:699.049333pt;}
.y111{bottom:704.356000pt;}
.y135{bottom:704.894667pt;}
.yf4{bottom:705.310667pt;}
.y209{bottom:709.216000pt;}
.y13e{bottom:710.617333pt;}
.ya9{bottom:711.572000pt;}
.y1e9{bottom:714.582667pt;}
.yd0{bottom:716.233333pt;}
.y56{bottom:716.649333pt;}
.y110{bottom:721.956000pt;}
.y134{bottom:722.494667pt;}
.yf3{bottom:722.910667pt;}
.y208{bottom:725.216000pt;}
.y13d{bottom:728.217333pt;}
.ya8{bottom:729.172000pt;}
.ycf{bottom:733.833333pt;}
.y55{bottom:734.249333pt;}
.y1e8{bottom:738.141333pt;}
.y10f{bottom:739.556000pt;}
.y133{bottom:740.094667pt;}
.yf2{bottom:740.510667pt;}
.y207{bottom:741.216000pt;}
.ya7{bottom:746.772000pt;}
.yce{bottom:751.433333pt;}
.y54{bottom:751.849333pt;}
.y1e7{bottom:754.141333pt;}
.y10e{bottom:757.156000pt;}
.y206{bottom:757.216000pt;}
.y132{bottom:757.694667pt;}
.yf1{bottom:758.110667pt;}
.y40{bottom:764.120000pt;}
.ya6{bottom:764.372000pt;}
.ycd{bottom:769.033333pt;}
.y53{bottom:769.449333pt;}
.y1e6{bottom:770.141333pt;}
.y205{bottom:773.216000pt;}
.y10d{bottom:774.756000pt;}
.yf0{bottom:775.710667pt;}
.y3f{bottom:780.120000pt;}
.ycc{bottom:786.633333pt;}
.y52{bottom:787.049333pt;}
.y204{bottom:789.216000pt;}
.y10c{bottom:792.356000pt;}
.ya5{bottom:793.310667pt;}
.y1e5{bottom:793.701333pt;}
.ycb{bottom:804.233333pt;}
.y51{bottom:804.649333pt;}
.y1e4{bottom:809.701333pt;}
.y10b{bottom:809.956000pt;}
.ya4{bottom:810.910667pt;}
.y3e{bottom:812.120000pt;}
.y203{bottom:816.554667pt;}
.y50{bottom:822.249333pt;}
.y1e3{bottom:825.701333pt;}
.y10a{bottom:827.556000pt;}
.ya3{bottom:828.510667pt;}
.yca{bottom:833.172000pt;}
.y4f{bottom:839.849333pt;}
.y1e2{bottom:841.701333pt;}
.y109{bottom:845.156000pt;}
.ya2{bottom:846.110667pt;}
.y3d{bottom:850.520000pt;}
.y4e{bottom:857.449333pt;}
.y1e1{bottom:857.701333pt;}
.y108{bottom:862.756000pt;}
.ya1{bottom:863.710667pt;}
.y202{bottom:865.273333pt;}
.y4d{bottom:875.049333pt;}
.y107{bottom:880.356000pt;}
.y1e0{bottom:881.260000pt;}
.y201{bottom:881.273333pt;}
.ya0{bottom:881.310667pt;}
.y3c{bottom:882.520000pt;}
.y4c{bottom:892.649333pt;}
.y1df{bottom:897.260000pt;}
.y200{bottom:897.273333pt;}
.y106{bottom:897.956000pt;}
.y9f{bottom:898.910667pt;}
.y4b{bottom:910.249333pt;}
.y1de{bottom:913.260000pt;}
.y1ff{bottom:913.273333pt;}
.y3b{bottom:914.520000pt;}
.y105{bottom:915.556000pt;}
.y9e{bottom:916.510667pt;}
.y4a{bottom:927.849333pt;}
.y1dd{bottom:929.260000pt;}
.y1fe{bottom:929.273333pt;}
.y104{bottom:933.156000pt;}
.y9d{bottom:934.110667pt;}
.y1fd{bottom:945.273333pt;}
.y49{bottom:945.449333pt;}
.y103{bottom:950.756000pt;}
.y9c{bottom:951.710667pt;}
.y1dc{bottom:952.818667pt;}
.y48{bottom:963.049333pt;}
.y102{bottom:968.356000pt;}
.y1db{bottom:968.818667pt;}
.y1fc{bottom:968.832000pt;}
.y9b{bottom:969.310667pt;}
.y2{bottom:978.476000pt;}
.y47{bottom:980.649333pt;}
.y1da{bottom:984.818667pt;}
.y1fb{bottom:984.832000pt;}
.y101{bottom:985.956000pt;}
.y46{bottom:998.249333pt;}
.y1d9{bottom:1000.818667pt;}
.y1fa{bottom:1000.832000pt;}
.y100{bottom:1014.894667pt;}
.y45{bottom:1015.849333pt;}
.y1d8{bottom:1016.818667pt;}
.y1f9{bottom:1016.832000pt;}
.y1{bottom:1030.818667pt;}
.y99{bottom:1069.832000pt;}
.y44{bottom:1069.870667pt;}
.hd{height:34.945312pt;}
.hc{height:34.992188pt;}
.hb{height:38.697917pt;}
.h10{height:38.828125pt;}
.hf{height:38.880208pt;}
.h4{height:42.710938pt;}
.h7{height:42.768229pt;}
.ha{height:46.593750pt;}
.h6{height:46.656250pt;}
.he{height:46.718750pt;}
.h5{height:47.208333pt;}
.h3{height:58.320312pt;}
.h8{height:77.760417pt;}
.h9{height:77.864583pt;}
.h2{height:152.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:39.685067pt;}
.xe{left:41.574800pt;}
.x4{left:96.000000pt;}
.x9{left:103.174000pt;}
.x8{left:111.383600pt;}
.x1{left:113.473200pt;}
.x3{left:114.897600pt;}
.x2{left:117.186400pt;}
.xa{left:189.040000pt;}
.xc{left:287.288000pt;}
.xd{left:298.617333pt;}
.xb{left:339.878667pt;}
.x5{left:415.748000pt;}
.x12{left:430.866667pt;}
.x6{left:434.645333pt;}
.x10{left:463.741333pt;}
.x11{left:741.238667pt;}
.x7{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; }
  