
    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_a2f629650e301073dd816d45.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.768000;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_10ee8e98cf7089a1e93e7e29.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a04d05782f26c6a69bb41e0b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8cb76cc560b4c58a44f1629f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.771973;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_b6335f7fda5c066b253933a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006348;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_d64e4f27d6b870576e6c44a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.558000;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_31f73bd82fdc9e093ae1f281.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.994629;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:ff8;src:url('chunks/assets/font_76618140bd4f4919204c2d16.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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:ff9;src:url('chunks/assets/font_f1595b1eb699940d2bfc6480.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_99f684fcc177dff7a6e447fa.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.m2{transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281268,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m4{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;}
.ls5{letter-spacing:-2.040000px;}
.ls2{letter-spacing:-1.500000px;}
.ls7{letter-spacing:-0.911989px;}
.ls3{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.897589px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.030000px;}
.ls4{letter-spacing:0.600000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-15.600000px;}
.ws1{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.700000px;}
.ws6{word-spacing:-14.100000px;}
.wsa{word-spacing:-10.919688px;}
.ws0{word-spacing:-10.398804px;}
.ws5{word-spacing:0.000000px;}
.ws10{word-spacing:0.965972px;}
.ws15{word-spacing:35.159560px;}
.ws11{word-spacing:35.351558px;}
.ws14{word-spacing:35.495556px;}
.ws13{word-spacing:35.500356px;}
.ws12{word-spacing:35.692354px;}
.ws9{word-spacing:50.074655px;}
.ws4{word-spacing:50.219857px;}
.wsb{word-spacing:50.345258px;}
.ws8{word-spacing:50.351858px;}
.ws3{word-spacing:50.358458px;}
.wse{word-spacing:237.021037px;}
.wsf{word-spacing:251.036862px;}
.wsd{word-spacing:295.148311px;}
.wsc{word-spacing:555.434130px;}
._1c{margin-left:-5.244000px;}
._18{margin-left:-3.570000px;}
._0{margin-left:-2.289600px;}
._11{margin-left:-1.288800px;}
._2{width:1.314000px;}
._1{width:2.556013px;}
._6{width:3.599987px;}
._a{width:4.919400px;}
._b{width:6.804000px;}
._c{width:7.851600px;}
._f{width:9.521128px;}
._5{width:10.972800px;}
._4{width:12.047400px;}
._1a{width:13.254000px;}
._15{width:15.246000px;}
._14{width:16.284000px;}
._e{width:18.250800px;}
._7{width:19.505400px;}
._8{width:20.973600px;}
._9{width:22.117800px;}
._d{width:23.638800px;}
._10{width:24.768000px;}
._16{width:25.830000px;}
._17{width:26.886000px;}
._19{width:28.020000px;}
._22{width:29.280000px;}
._1f{width:30.600000px;}
._3b{width:31.731577px;}
._20{width:33.060000px;}
._3a{width:34.392000px;}
._39{width:35.448000px;}
._1e{width:37.284000px;}
._38{width:38.712000px;}
._1d{width:41.718000px;}
._2d{width:43.098000px;}
._1b{width:46.602000px;}
._2c{width:48.521400px;}
._21{width:51.480000px;}
._3{width:59.885400px;}
._12{width:67.590626px;}
._27{width:119.001296px;}
._33{width:143.647833px;}
._2b{width:176.575393px;}
._2a{width:189.247169px;}
._2f{width:193.659563px;}
._28{width:207.539806px;}
._13{width:215.815950px;}
._29{width:221.960009px;}
._32{width:232.203081px;}
._34{width:251.612855px;}
._35{width:263.516706px;}
._37{width:265.850660px;}
._36{width:288.458378px;}
._31{width:307.628155px;}
._30{width:309.356133px;}
._23{width:316.994343px;}
._24{width:453.099870px;}
._25{width:551.253909px;}
._2e{width:625.362132px;}
._26{width:739.195560px;}
.fc6{color:transparent;}
.fc5{color:rgb(166,168,171);}
.fc3{color:rgb(129,130,134);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(102,102,102);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(185,32,46);}
.fs5{font-size:27.996600px;}
.fsb{font-size:31.995000px;}
.fs3{font-size:39.995400px;}
.fs6{font-size:41.998800px;}
.fsa{font-size:47.999400px;}
.fs8{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs7{font-size:66.000600px;}
.fsc{font-size:71.999400px;}
.fs9{font-size:90.000000px;}
.fs1{font-size:120.000600px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:41.329050px;}
.y24{bottom:140.652984px;}
.y132{bottom:140.655000px;}
.ya9{bottom:140.658000px;}
.yf3{bottom:140.659500px;}
.y131{bottom:140.661000px;}
.ydc{bottom:140.664000px;}
.y6d{bottom:140.665500px;}
.y91{bottom:140.742000px;}
.y51{bottom:140.745000px;}
.y23{bottom:154.092600px;}
.y164{bottom:159.536701px;}
.yf2{bottom:161.659500px;}
.ya8{bottom:161.662500px;}
.ydb{bottom:161.664000px;}
.y6c{bottom:161.665500px;}
.y90{bottom:161.746500px;}
.y50{bottom:161.758500px;}
.y22{bottom:167.614050px;}
.y163{bottom:174.588113px;}
.y21{bottom:181.120930px;}
.ya7{bottom:182.667000px;}
.y130{bottom:182.670000px;}
.yda{bottom:182.677500px;}
.y8f{bottom:182.751000px;}
.y4f{bottom:182.758500px;}
.y6b{bottom:188.620500px;}
.y162{bottom:189.555525px;}
.y20{bottom:194.644543px;}
.yf1{bottom:203.670000px;}
.ya6{bottom:203.671500px;}
.y12f{bottom:203.674500px;}
.yd9{bottom:203.677500px;}
.y8e{bottom:203.755500px;}
.y4e{bottom:203.758500px;}
.y161{bottom:204.606937px;}
.y1f{bottom:208.084159px;}
.y160{bottom:219.574350px;}
.y1e{bottom:221.607773px;}
.yd8{bottom:224.680500px;}
.y4d{bottom:224.758500px;}
.y8d{bottom:224.761500px;}
.ya5{bottom:230.628000px;}
.y15f{bottom:234.540563px;}
.y1d{bottom:235.131386px;}
.y6a{bottom:241.726500px;}
.y8c{bottom:245.680500px;}
.y4c{bottom:245.683500px;}
.y12e{bottom:245.685000px;}
.y1a{bottom:248.650884px;}
.y1c{bottom:248.655000px;}
.y15e{bottom:249.593175px;}
.yd7{bottom:251.635500px;}
.y1b{bottom:253.332000px;}
.y19{bottom:262.090500px;}
.y69{bottom:262.726500px;}
.y15d{bottom:264.559388px;}
.y8b{bottom:266.685000px;}
.y12d{bottom:266.689500px;}
.y4b{bottom:266.697000px;}
.y18{bottom:266.769000px;}
.yf0{bottom:270.774000px;}
.ya4{bottom:273.913500px;}
.y15c{bottom:279.612000px;}
.y68{bottom:283.726500px;}
.y8a{bottom:287.689500px;}
.y12c{bottom:287.694000px;}
.y4a{bottom:287.697000px;}
.yd6{bottom:288.882000px;}
.yef{bottom:291.774000px;}
.y15b{bottom:294.578213px;}
.ya3{bottom:294.918000px;}
.y67{bottom:304.726500px;}
.y89{bottom:308.694000px;}
.y12b{bottom:308.698500px;}
.y49{bottom:308.701500px;}
.y15a{bottom:309.545626px;}
.yd5{bottom:309.904500px;}
.yee{bottom:312.783000px;}
.y2a{bottom:315.753000px;}
.y30{bottom:315.757500px;}
.ya2{bottom:315.922500px;}
.y159{bottom:324.597037px;}
.y66{bottom:325.726500px;}
.y88{bottom:329.698500px;}
.y48{bottom:329.701500px;}
.y12a{bottom:329.703000px;}
.yd4{bottom:330.904500px;}
.yed{bottom:333.819000px;}
.y2f{bottom:336.757500px;}
.ya1{bottom:336.927000px;}
.y29{bottom:337.782000px;}
.y158{bottom:339.564450px;}
.y65{bottom:346.726500px;}
.y87{bottom:350.703000px;}
.y47{bottom:350.706000px;}
.y129{bottom:350.707500px;}
.yd3{bottom:351.904500px;}
.y157{bottom:354.615862px;}
.yec{bottom:354.819000px;}
.y2e{bottom:357.766500px;}
.ya0{bottom:357.931500px;}
.y28{bottom:359.892000px;}
.y64{bottom:367.726500px;}
.y156{bottom:369.583275px;}
.y86{bottom:371.707500px;}
.y128{bottom:371.712000px;}
.y46{bottom:371.715000px;}
.yd2{bottom:372.904500px;}
.yeb{bottom:375.819000px;}
.y2d{bottom:378.766500px;}
.y9f{bottom:378.936000px;}
.y26{bottom:380.892000px;}
.y155{bottom:384.549488px;}
.y27{bottom:387.525000px;}
.y63{bottom:388.726500px;}
.y85{bottom:392.712000px;}
.y45{bottom:392.715000px;}
.y127{bottom:392.716500px;}
.yd1{bottom:393.904500px;}
.yea{bottom:396.819000px;}
.y154{bottom:399.602100px;}
.y2c{bottom:399.769500px;}
.y9e{bottom:405.978000px;}
.y62{bottom:409.726500px;}
.y84{bottom:413.716500px;}
.y126{bottom:413.721000px;}
.y44{bottom:413.728500px;}
.y153{bottom:414.568313px;}
.yd0{bottom:414.909000px;}
.ye9{bottom:417.819000px;}
.y2b{bottom:421.368000px;}
.y25{bottom:422.815500px;}
.y152{bottom:429.535726px;}
.y61{bottom:430.726500px;}
.y125{bottom:434.640000px;}
.y83{bottom:434.721000px;}
.y43{bottom:434.728500px;}
.ycf{bottom:435.913500px;}
.ye8{bottom:438.744000px;}
.y151{bottom:444.587138px;}
.y9d{bottom:449.263500px;}
.y60{bottom:451.740000px;}
.y81{bottom:453.259500px;}
.y124{bottom:455.646000px;}
.y82{bottom:455.725500px;}
.y80{bottom:455.727000px;}
.y42{bottom:455.737500px;}
.yce{bottom:456.942000px;}
.y150{bottom:459.554550px;}
.ye7{bottom:459.744000px;}
.y9c{bottom:470.266500px;}
.y5f{bottom:472.740000px;}
.y14f{bottom:474.605962px;}
.y123{bottom:476.650500px;}
.y7f{bottom:476.731500px;}
.y41{bottom:476.737500px;}
.ycd{bottom:477.867000px;}
.ye6{bottom:480.744000px;}
.y14e{bottom:489.573375px;}
.y9b{bottom:491.271000px;}
.y5e{bottom:493.740000px;}
.y7d{bottom:495.184500px;}
.y17{bottom:496.374000px;}
.y122{bottom:497.655000px;}
.y7e{bottom:497.736000px;}
.y40{bottom:497.737500px;}
.ycc{bottom:498.867000px;}
.ye5{bottom:501.744000px;}
.y14d{bottom:504.539588px;}
.y9a{bottom:512.275500px;}
.y5d{bottom:514.749000px;}
.y16{bottom:517.380000px;}
.y121{bottom:518.659500px;}
.y3f{bottom:518.742000px;}
.y14c{bottom:519.591000px;}
.ycb{bottom:519.867000px;}
.ye4{bottom:522.744000px;}
.y99{bottom:533.280000px;}
.y5c{bottom:535.749000px;}
.y15{bottom:538.372500px;}
.y120{bottom:539.664000px;}
.y7c{bottom:539.746500px;}
.y3e{bottom:539.755500px;}
.yca{bottom:540.867000px;}
.ye3{bottom:543.744000px;}
.y14b{bottom:548.079000px;}
.y98{bottom:554.284500px;}
.y5b{bottom:556.749000px;}
.y14{bottom:559.378500px;}
.y11f{bottom:560.668500px;}
.y7b{bottom:560.751000px;}
.y3d{bottom:560.755500px;}
.yc9{bottom:561.867000px;}
.ye2{bottom:570.789000px;}
.y97{bottom:575.289000px;}
.y5a{bottom:577.674000px;}
.y13{bottom:580.384500px;}
.y11e{bottom:581.673000px;}
.y3c{bottom:581.755500px;}
.yc8{bottom:582.867000px;}
.ye1{bottom:588.729000px;}
.y14a{bottom:592.471501px;}
.y96{bottom:596.293500px;}
.y59{bottom:598.701000px;}
.y12{bottom:601.390500px;}
.y11d{bottom:602.677500px;}
.y3b{bottom:602.755500px;}
.y7a{bottom:602.760000px;}
.yc7{bottom:603.867000px;}
.y149{bottom:607.438913px;}
.y95{bottom:617.298000px;}
.y58{bottom:619.701000px;}
.y11{bottom:622.315500px;}
.y79{bottom:623.679000px;}
.y11c{bottom:623.682000px;}
.y3a{bottom:623.689500px;}
.yc6{bottom:624.867000px;}
.ye0{bottom:628.884000px;}
.y148{bottom:631.504613px;}
.y94{bottom:638.302500px;}
.y57{bottom:640.701000px;}
.y10{bottom:643.321500px;}
.y78{bottom:644.683500px;}
.y11b{bottom:644.686500px;}
.y39{bottom:644.689500px;}
.y147{bottom:646.472025px;}
.ydf{bottom:649.884000px;}
.yc5{bottom:651.912000px;}
.y93{bottom:659.307000px;}
.y146{bottom:661.438238px;}
.y56{bottom:661.701000px;}
.yf{bottom:664.327500px;}
.y77{bottom:665.688000px;}
.y38{bottom:665.689500px;}
.y11a{bottom:665.691000px;}
.yde{bottom:670.884000px;}
.y145{bottom:676.490850px;}
.y55{bottom:682.701000px;}
.ye{bottom:685.327500px;}
.y92{bottom:686.265000px;}
.y76{bottom:686.692500px;}
.y37{bottom:686.694000px;}
.y119{bottom:686.695500px;}
.yc4{bottom:690.859500px;}
.ydd{bottom:691.884000px;}
.y144{bottom:700.471350px;}
.y54{bottom:703.701000px;}
.yd{bottom:706.333500px;}
.y118{bottom:707.700000px;}
.y36{bottom:707.703000px;}
.y143{bottom:715.438763px;}
.yc{bottom:727.339500px;}
.y35{bottom:728.703000px;}
.y117{bottom:728.704500px;}
.y53{bottom:730.743000px;}
.y142{bottom:739.504463px;}
.y178{bottom:739.674563px;}
.y108{bottom:747.751500px;}
.yb{bottom:748.345500px;}
.y116{bottom:749.709000px;}
.y34{bottom:749.712000px;}
.y107{bottom:752.428500px;}
.y141{bottom:754.471875px;}
.y177{bottom:754.727175px;}
.y106{bottom:761.187000px;}
.y105{bottom:765.864000px;}
.ya{bottom:769.351500px;}
.y52{bottom:769.692000px;}
.y176{bottom:769.693388px;}
.y33{bottom:770.712000px;}
.y115{bottom:770.713500px;}
.yc3{bottom:770.967000px;}
.y104{bottom:774.708000px;}
.yc2{bottom:775.644000px;}
.y140{bottom:778.452376px;}
.yc1{bottom:784.488000px;}
.y175{bottom:784.660801px;}
.yc0{bottom:789.165000px;}
.y9{bottom:790.351500px;}
.y114{bottom:791.719500px;}
.y13f{bottom:793.503788px;}
.y103{bottom:797.584500px;}
.y101{bottom:797.588461px;}
.ybf{bottom:798.009000px;}
.y174{bottom:799.712213px;}
.ybe{bottom:802.602000px;}
.y102{bottom:802.941000px;}
.y13e{bottom:808.471200px;}
.y8{bottom:811.357500px;}
.ybd{bottom:811.446000px;}
.y113{bottom:812.638500px;}
.y173{bottom:814.679626px;}
.ybc{bottom:816.123000px;}
.y100{bottom:818.252203px;}
.y13d{bottom:823.437413px;}
.ybb{bottom:824.967000px;}
.y172{bottom:829.731037px;}
.y7{bottom:832.363500px;}
.y112{bottom:833.643000px;}
.y13c{bottom:838.490025px;}
.yff{bottom:838.831945px;}
.y171{bottom:844.698450px;}
.yba{bottom:847.842000px;}
.yb8{bottom:847.843758px;}
.y74{bottom:852.699300px;}
.yb9{bottom:853.200000px;}
.y6{bottom:853.375500px;}
.y13b{bottom:853.456238px;}
.yfe{bottom:853.879757px;}
.y111{bottom:854.647500px;}
.y170{bottom:859.664663px;}
.yb7{bottom:868.507500px;}
.yb5{bottom:868.508016px;}
.y13a{bottom:868.508850px;}
.yb6{bottom:873.780000px;}
.yfd{bottom:874.459500px;}
.yfb{bottom:874.460016px;}
.y16f{bottom:874.717275px;}
.y73{bottom:875.230800px;}
.y110{bottom:875.652000px;}
.yfc{bottom:879.817500px;}
.yb4{bottom:889.087758px;}
.y16e{bottom:889.683488px;}
.y139{bottom:892.489350px;}
.yfa{bottom:895.123757px;}
.y10f{bottom:896.656500px;}
.y72{bottom:897.762300px;}
.y16d{bottom:904.650901px;}
.y138{bottom:907.456763px;}
.yb1{bottom:909.751457px;}
.yb3{bottom:909.751500px;}
.yb2{bottom:915.024000px;}
.yf9{bottom:915.703500px;}
.y10e{bottom:917.661000px;}
.y4{bottom:918.595500px;}
.y16c{bottom:919.702313px;}
.y71{bottom:920.212800px;}
.y137{bottom:922.508175px;}
.y32{bottom:924.555000px;}
.y5{bottom:925.312500px;}
.yb0{bottom:930.330000px;}
.yae{bottom:930.331758px;}
.y16b{bottom:934.669726px;}
.yaf{bottom:935.688000px;}
.y136{bottom:937.475588px;}
.y10d{bottom:938.665500px;}
.yf8{bottom:939.766884px;}
.yf4{bottom:939.770506px;}
.y70{bottom:942.747000px;}
.yf6{bottom:944.362500px;}
.y16a{bottom:949.721138px;}
.yad{bottom:950.995500px;}
.y135{bottom:952.441801px;}
.yf7{bottom:953.206500px;}
.yf5{bottom:953.210122px;}
.y10c{bottom:959.670000px;}
.y169{bottom:964.688550px;}
.y6f{bottom:965.197500px;}
.yab{bottom:974.976000px;}
.y3{bottom:976.331835px;}
.y134{bottom:976.507500px;}
.yac{bottom:979.653000px;}
.y168{bottom:979.654763px;}
.y10b{bottom:980.674500px;}
.y6e{bottom:993.769500px;}
.y167{bottom:994.707375px;}
.y10a{bottom:1001.679000px;}
.y2{bottom:1009.332000px;}
.y166{bottom:1009.673588px;}
.yaa{bottom:1010.947500px;}
.y109{bottom:1022.683500px;}
.y165{bottom:1024.725000px;}
.y1{bottom:1094.881500px;}
.y133{bottom:1108.480500px;}
.y75{bottom:1108.488000px;}
.h7{height:21.421227px;}
.h15{height:21.448567px;}
.h13{height:24.511794px;}
.h5{height:30.601949px;}
.hb{height:30.641007px;}
.h8{height:32.134824px;}
.h14{height:32.175838px;}
.he{height:34.945312px;}
.h17{height:36.726103px;}
.h12{height:36.772978px;}
.h6{height:41.317383px;}
.hf{height:41.370117px;}
.h10{height:41.375517px;}
.h4{height:45.908203px;}
.ha{height:45.966797px;}
.hc{height:45.972797px;}
.h9{height:50.144987px;}
.hd{height:50.499483px;}
.h18{height:54.702669px;}
.h11{height:68.378906px;}
.h16{height:68.408906px;}
.h3{height:91.816865px;}
.h2{height:108.576000px;}
.h0{height:1174.479000px;}
.h1{height:1174.500000px;}
.w0{width:877.435500px;}
.w1{width:877.500000px;}
.x0{left:0.000000px;}
.x19{left:85.464450px;}
.x3{left:89.971650px;}
.x49{left:92.097600px;}
.xc{left:94.393650px;}
.x2f{left:96.009300px;}
.x1a{left:100.516950px;}
.x31{left:101.959794px;}
.x12{left:105.023550px;}
.x25{left:106.469250px;}
.x1d{left:110.976300px;}
.x43{left:114.027206px;}
.x4b{left:118.969950px;}
.x2{left:122.966850px;}
.x1e{left:124.497600px;}
.x32{left:219.398938px;}
.x33{left:231.557591px;}
.x44{left:235.465688px;}
.xf{left:238.365000px;}
.x26{left:239.641500px;}
.x4{left:242.446500px;}
.x13{left:255.883500px;}
.x34{left:258.009000px;}
.x5{left:263.791500px;}
.x14{left:265.237500px;}
.x30{left:269.745000px;}
.x28{left:275.527500px;}
.x17{left:279.780000px;}
.x29{left:284.202000px;}
.x35{left:297.807000px;}
.x3d{left:319.068000px;}
.x21{left:323.235000px;}
.x36{left:335.563921px;}
.x45{left:352.743000px;}
.x22{left:355.635000px;}
.x1f{left:379.020000px;}
.x6{left:398.154000px;}
.x20{left:399.769500px;}
.x37{left:405.292429px;}
.x7{left:408.103500px;}
.x23{left:413.376000px;}
.x2a{left:414.991500px;}
.x2b{left:416.097000px;}
.x3e{left:418.648500px;}
.x24{left:419.754000px;}
.x2c{left:424.857000px;}
.x2d{left:429.619500px;}
.x2e{left:437.272500px;}
.x3f{left:442.035000px;}
.x1b{left:454.536000px;}
.x15{left:459.045000px;}
.x4a{left:461.080988px;}
.x1c{left:469.501500px;}
.x16{left:474.007500px;}
.x1{left:483.874500px;}
.x4c{left:487.953338px;}
.x40{left:504.453000px;}
.x46{left:507.855000px;}
.x38{left:520.946624px;}
.x8{left:527.925000px;}
.x27{left:536.343000px;}
.x47{left:538.129500px;}
.x9{left:539.235000px;}
.x41{left:541.530000px;}
.xd{left:588.387000px;}
.x39{left:590.591135px;}
.xe{left:593.235000px;}
.x3a{left:605.133219px;}
.x48{left:606.670500px;}
.x42{left:610.497000px;}
.x3b{left:668.572406px;}
.xa{left:701.490000px;}
.x3c{left:706.329328px;}
.x10{left:712.545000px;}
.x11{left:717.391500px;}
.xb{left:721.984500px;}
.x18{left:844.170000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.813333pt;}
.ls2{letter-spacing:-1.333333pt;}
.ls7{letter-spacing:-0.810657pt;}
.ls3{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.797857pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.026667pt;}
.ls4{letter-spacing:0.533333pt;}
.ws2{word-spacing:-13.866667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws7{word-spacing:-13.066667pt;}
.ws6{word-spacing:-12.533333pt;}
.wsa{word-spacing:-9.706389pt;}
.ws0{word-spacing:-9.243381pt;}
.ws5{word-spacing:0.000000pt;}
.ws10{word-spacing:0.858642pt;}
.ws15{word-spacing:31.252943pt;}
.ws11{word-spacing:31.423607pt;}
.ws14{word-spacing:31.551606pt;}
.ws13{word-spacing:31.555872pt;}
.ws12{word-spacing:31.726537pt;}
.ws9{word-spacing:44.510805pt;}
.ws4{word-spacing:44.639872pt;}
.wsb{word-spacing:44.751340pt;}
.ws8{word-spacing:44.757207pt;}
.ws3{word-spacing:44.763074pt;}
.wse{word-spacing:210.685366pt;}
.wsf{word-spacing:223.143877pt;}
.wsd{word-spacing:262.354054pt;}
.wsc{word-spacing:493.719227pt;}
._1c{margin-left:-4.661333pt;}
._18{margin-left:-3.173333pt;}
._0{margin-left:-2.035200pt;}
._11{margin-left:-1.145600pt;}
._2{width:1.168000pt;}
._1{width:2.272011pt;}
._6{width:3.199989pt;}
._a{width:4.372800pt;}
._b{width:6.048000pt;}
._c{width:6.979200pt;}
._f{width:8.463225pt;}
._5{width:9.753600pt;}
._4{width:10.708800pt;}
._1a{width:11.781333pt;}
._15{width:13.552000pt;}
._14{width:14.474667pt;}
._e{width:16.222933pt;}
._7{width:17.338133pt;}
._8{width:18.643200pt;}
._9{width:19.660267pt;}
._d{width:21.012267pt;}
._10{width:22.016000pt;}
._16{width:22.960000pt;}
._17{width:23.898667pt;}
._19{width:24.906667pt;}
._22{width:26.026667pt;}
._1f{width:27.200000pt;}
._3b{width:28.205846pt;}
._20{width:29.386667pt;}
._3a{width:30.570667pt;}
._39{width:31.509333pt;}
._1e{width:33.141333pt;}
._38{width:34.410667pt;}
._1d{width:37.082667pt;}
._2d{width:38.309333pt;}
._1b{width:41.424000pt;}
._2c{width:43.130133pt;}
._21{width:45.760000pt;}
._3{width:53.231467pt;}
._12{width:60.080557pt;}
._27{width:105.778930pt;}
._33{width:127.686963pt;}
._2b{width:156.955905pt;}
._2a{width:168.219705pt;}
._2f{width:172.141834pt;}
._28{width:184.479827pt;}
._13{width:191.836400pt;}
._29{width:197.297786pt;}
._32{width:206.402739pt;}
._34{width:223.655871pt;}
._35{width:234.237072pt;}
._37{width:236.311698pt;}
._36{width:256.407447pt;}
._31{width:273.447249pt;}
._30{width:274.983229pt;}
._23{width:281.772749pt;}
._24{width:402.755440pt;}
._25{width:490.003475pt;}
._2e{width:555.877451pt;}
._26{width:657.062720pt;}
.fs5{font-size:24.885867pt;}
.fsb{font-size:28.440000pt;}
.fs3{font-size:35.551467pt;}
.fs6{font-size:37.332267pt;}
.fsa{font-size:42.666133pt;}
.fs8{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs7{font-size:58.667200pt;}
.fsc{font-size:63.999467pt;}
.fs9{font-size:80.000000pt;}
.fs1{font-size:106.667200pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:36.736933pt;}
.y24{bottom:125.024875pt;}
.y132{bottom:125.026667pt;}
.ya9{bottom:125.029333pt;}
.yf3{bottom:125.030667pt;}
.y131{bottom:125.032000pt;}
.ydc{bottom:125.034667pt;}
.y6d{bottom:125.036000pt;}
.y91{bottom:125.104000pt;}
.y51{bottom:125.106667pt;}
.y23{bottom:136.971200pt;}
.y164{bottom:141.810401pt;}
.yf2{bottom:143.697333pt;}
.ya8{bottom:143.700000pt;}
.ydb{bottom:143.701333pt;}
.y6c{bottom:143.702667pt;}
.y90{bottom:143.774667pt;}
.y50{bottom:143.785333pt;}
.y22{bottom:148.990267pt;}
.y163{bottom:155.189433pt;}
.y21{bottom:160.996382pt;}
.ya7{bottom:162.370667pt;}
.y130{bottom:162.373333pt;}
.yda{bottom:162.380000pt;}
.y8f{bottom:162.445333pt;}
.y4f{bottom:162.452000pt;}
.y6b{bottom:167.662667pt;}
.y162{bottom:168.493800pt;}
.y20{bottom:173.017372pt;}
.yf1{bottom:181.040000pt;}
.ya6{bottom:181.041333pt;}
.y12f{bottom:181.044000pt;}
.yd9{bottom:181.046667pt;}
.y8e{bottom:181.116000pt;}
.y4e{bottom:181.118667pt;}
.y161{bottom:181.872833pt;}
.y1f{bottom:184.963697pt;}
.y160{bottom:195.177200pt;}
.y1e{bottom:196.984687pt;}
.yd8{bottom:199.716000pt;}
.y4d{bottom:199.785333pt;}
.y8d{bottom:199.788000pt;}
.ya5{bottom:205.002667pt;}
.y15f{bottom:208.480501pt;}
.y1d{bottom:209.005677pt;}
.y6a{bottom:214.868000pt;}
.y8c{bottom:218.382667pt;}
.y4c{bottom:218.385333pt;}
.y12e{bottom:218.386667pt;}
.y1a{bottom:221.023008pt;}
.y1c{bottom:221.026667pt;}
.y15e{bottom:221.860600pt;}
.yd7{bottom:223.676000pt;}
.y1b{bottom:225.184000pt;}
.y19{bottom:232.969333pt;}
.y69{bottom:233.534667pt;}
.y15d{bottom:235.163900pt;}
.y8b{bottom:237.053333pt;}
.y12d{bottom:237.057333pt;}
.y4b{bottom:237.064000pt;}
.y18{bottom:237.128000pt;}
.yf0{bottom:240.688000pt;}
.ya4{bottom:243.478667pt;}
.y15c{bottom:248.544000pt;}
.y68{bottom:252.201333pt;}
.y8a{bottom:255.724000pt;}
.y12c{bottom:255.728000pt;}
.y4a{bottom:255.730667pt;}
.yd6{bottom:256.784000pt;}
.yef{bottom:259.354667pt;}
.y15b{bottom:261.847300pt;}
.ya3{bottom:262.149333pt;}
.y67{bottom:270.868000pt;}
.y89{bottom:274.394667pt;}
.y12b{bottom:274.398667pt;}
.y49{bottom:274.401333pt;}
.y15a{bottom:275.151667pt;}
.yd5{bottom:275.470667pt;}
.yee{bottom:278.029333pt;}
.y2a{bottom:280.669333pt;}
.y30{bottom:280.673333pt;}
.ya2{bottom:280.820000pt;}
.y159{bottom:288.530700pt;}
.y66{bottom:289.534667pt;}
.y88{bottom:293.065333pt;}
.y48{bottom:293.068000pt;}
.y12a{bottom:293.069333pt;}
.yd4{bottom:294.137333pt;}
.yed{bottom:296.728000pt;}
.y2f{bottom:299.340000pt;}
.ya1{bottom:299.490667pt;}
.y29{bottom:300.250667pt;}
.y158{bottom:301.835067pt;}
.y65{bottom:308.201333pt;}
.y87{bottom:311.736000pt;}
.y47{bottom:311.738667pt;}
.y129{bottom:311.740000pt;}
.yd3{bottom:312.804000pt;}
.y157{bottom:315.214100pt;}
.yec{bottom:315.394667pt;}
.y2e{bottom:318.014667pt;}
.ya0{bottom:318.161333pt;}
.y28{bottom:319.904000pt;}
.y64{bottom:326.868000pt;}
.y156{bottom:328.518467pt;}
.y86{bottom:330.406667pt;}
.y128{bottom:330.410667pt;}
.y46{bottom:330.413333pt;}
.yd2{bottom:331.470667pt;}
.yeb{bottom:334.061333pt;}
.y2d{bottom:336.681333pt;}
.y9f{bottom:336.832000pt;}
.y26{bottom:338.570667pt;}
.y155{bottom:341.821767pt;}
.y27{bottom:344.466667pt;}
.y63{bottom:345.534667pt;}
.y85{bottom:349.077333pt;}
.y45{bottom:349.080000pt;}
.y127{bottom:349.081333pt;}
.yd1{bottom:350.137333pt;}
.yea{bottom:352.728000pt;}
.y154{bottom:355.201867pt;}
.y2c{bottom:355.350667pt;}
.y9e{bottom:360.869333pt;}
.y62{bottom:364.201333pt;}
.y84{bottom:367.748000pt;}
.y126{bottom:367.752000pt;}
.y44{bottom:367.758667pt;}
.y153{bottom:368.505167pt;}
.yd0{bottom:368.808000pt;}
.ye9{bottom:371.394667pt;}
.y2b{bottom:374.549333pt;}
.y25{bottom:375.836000pt;}
.y152{bottom:381.809534pt;}
.y61{bottom:382.868000pt;}
.y125{bottom:386.346667pt;}
.y83{bottom:386.418667pt;}
.y43{bottom:386.425333pt;}
.ycf{bottom:387.478667pt;}
.ye8{bottom:389.994667pt;}
.y151{bottom:395.188567pt;}
.y9d{bottom:399.345333pt;}
.y60{bottom:401.546667pt;}
.y81{bottom:402.897333pt;}
.y124{bottom:405.018667pt;}
.y82{bottom:405.089333pt;}
.y80{bottom:405.090667pt;}
.y42{bottom:405.100000pt;}
.yce{bottom:406.170667pt;}
.y150{bottom:408.492934pt;}
.ye7{bottom:408.661333pt;}
.y9c{bottom:418.014667pt;}
.y5f{bottom:420.213333pt;}
.y14f{bottom:421.871967pt;}
.y123{bottom:423.689333pt;}
.y7f{bottom:423.761333pt;}
.y41{bottom:423.766667pt;}
.ycd{bottom:424.770667pt;}
.ye6{bottom:427.328000pt;}
.y14e{bottom:435.176334pt;}
.y9b{bottom:436.685333pt;}
.y5e{bottom:438.880000pt;}
.y7d{bottom:440.164000pt;}
.y17{bottom:441.221333pt;}
.y122{bottom:442.360000pt;}
.y7e{bottom:442.432000pt;}
.y40{bottom:442.433333pt;}
.ycc{bottom:443.437333pt;}
.ye5{bottom:445.994667pt;}
.y14d{bottom:448.479634pt;}
.y9a{bottom:455.356000pt;}
.y5d{bottom:457.554667pt;}
.y16{bottom:459.893333pt;}
.y121{bottom:461.030667pt;}
.y3f{bottom:461.104000pt;}
.y14c{bottom:461.858667pt;}
.ycb{bottom:462.104000pt;}
.ye4{bottom:464.661333pt;}
.y99{bottom:474.026667pt;}
.y5c{bottom:476.221333pt;}
.y15{bottom:478.553333pt;}
.y120{bottom:479.701333pt;}
.y7c{bottom:479.774667pt;}
.y3e{bottom:479.782667pt;}
.yca{bottom:480.770667pt;}
.ye3{bottom:483.328000pt;}
.y14b{bottom:487.181333pt;}
.y98{bottom:492.697333pt;}
.y5b{bottom:494.888000pt;}
.y14{bottom:497.225333pt;}
.y11f{bottom:498.372000pt;}
.y7b{bottom:498.445333pt;}
.y3d{bottom:498.449333pt;}
.yc9{bottom:499.437333pt;}
.ye2{bottom:507.368000pt;}
.y97{bottom:511.368000pt;}
.y5a{bottom:513.488000pt;}
.y13{bottom:515.897333pt;}
.y11e{bottom:517.042667pt;}
.y3c{bottom:517.116000pt;}
.yc8{bottom:518.104000pt;}
.ye1{bottom:523.314667pt;}
.y14a{bottom:526.641334pt;}
.y96{bottom:530.038667pt;}
.y59{bottom:532.178667pt;}
.y12{bottom:534.569333pt;}
.y11d{bottom:535.713333pt;}
.y3b{bottom:535.782667pt;}
.y7a{bottom:535.786667pt;}
.yc7{bottom:536.770667pt;}
.y149{bottom:539.945701pt;}
.y95{bottom:548.709333pt;}
.y58{bottom:550.845333pt;}
.y11{bottom:553.169333pt;}
.y79{bottom:554.381333pt;}
.y11c{bottom:554.384000pt;}
.y3a{bottom:554.390667pt;}
.yc6{bottom:555.437333pt;}
.ye0{bottom:559.008000pt;}
.y148{bottom:561.337433pt;}
.y94{bottom:567.380000pt;}
.y57{bottom:569.512000pt;}
.y10{bottom:571.841333pt;}
.y78{bottom:573.052000pt;}
.y11b{bottom:573.054667pt;}
.y39{bottom:573.057333pt;}
.y147{bottom:574.641800pt;}
.ydf{bottom:577.674667pt;}
.yc5{bottom:579.477333pt;}
.y93{bottom:586.050667pt;}
.y146{bottom:587.945101pt;}
.y56{bottom:588.178667pt;}
.yf{bottom:590.513333pt;}
.y77{bottom:591.722667pt;}
.y38{bottom:591.724000pt;}
.y11a{bottom:591.725333pt;}
.yde{bottom:596.341333pt;}
.y145{bottom:601.325200pt;}
.y55{bottom:606.845333pt;}
.ye{bottom:609.180000pt;}
.y92{bottom:610.013333pt;}
.y76{bottom:610.393333pt;}
.y37{bottom:610.394667pt;}
.y119{bottom:610.396000pt;}
.yc4{bottom:614.097333pt;}
.ydd{bottom:615.008000pt;}
.y144{bottom:622.641200pt;}
.y54{bottom:625.512000pt;}
.yd{bottom:627.852000pt;}
.y118{bottom:629.066667pt;}
.y36{bottom:629.069333pt;}
.y143{bottom:635.945567pt;}
.yc{bottom:646.524000pt;}
.y35{bottom:647.736000pt;}
.y117{bottom:647.737333pt;}
.y53{bottom:649.549333pt;}
.y142{bottom:657.337300pt;}
.y178{bottom:657.488501pt;}
.y108{bottom:664.668000pt;}
.yb{bottom:665.196000pt;}
.y116{bottom:666.408000pt;}
.y34{bottom:666.410667pt;}
.y107{bottom:668.825333pt;}
.y141{bottom:670.641667pt;}
.y177{bottom:670.868600pt;}
.y106{bottom:676.610667pt;}
.y105{bottom:680.768000pt;}
.ya{bottom:683.868000pt;}
.y52{bottom:684.170667pt;}
.y176{bottom:684.171900pt;}
.y33{bottom:685.077333pt;}
.y115{bottom:685.078667pt;}
.yc3{bottom:685.304000pt;}
.y104{bottom:688.629333pt;}
.yc2{bottom:689.461333pt;}
.y140{bottom:691.957667pt;}
.yc1{bottom:697.322667pt;}
.y175{bottom:697.476267pt;}
.yc0{bottom:701.480000pt;}
.y9{bottom:702.534667pt;}
.y114{bottom:703.750667pt;}
.y13f{bottom:705.336700pt;}
.y103{bottom:708.964000pt;}
.y101{bottom:708.967521pt;}
.ybf{bottom:709.341333pt;}
.y174{bottom:710.855300pt;}
.ybe{bottom:713.424000pt;}
.y102{bottom:713.725333pt;}
.y13e{bottom:718.641067pt;}
.y8{bottom:721.206667pt;}
.ybd{bottom:721.285333pt;}
.y113{bottom:722.345333pt;}
.y173{bottom:724.159667pt;}
.ybc{bottom:725.442667pt;}
.y100{bottom:727.335291pt;}
.y13d{bottom:731.944367pt;}
.ybb{bottom:733.304000pt;}
.y172{bottom:737.538700pt;}
.y7{bottom:739.878667pt;}
.y112{bottom:741.016000pt;}
.y13c{bottom:745.324467pt;}
.yff{bottom:745.628396pt;}
.y171{bottom:750.843067pt;}
.yba{bottom:753.637333pt;}
.yb8{bottom:753.638896pt;}
.y74{bottom:757.954933pt;}
.yb9{bottom:758.400000pt;}
.y6{bottom:758.556000pt;}
.y13b{bottom:758.627767pt;}
.yfe{bottom:759.004229pt;}
.y111{bottom:759.686667pt;}
.y170{bottom:764.146367pt;}
.yb7{bottom:772.006667pt;}
.yb5{bottom:772.007125pt;}
.y13a{bottom:772.007867pt;}
.yb6{bottom:776.693333pt;}
.yfd{bottom:777.297333pt;}
.yfb{bottom:777.297792pt;}
.y16f{bottom:777.526467pt;}
.y73{bottom:777.982933pt;}
.y110{bottom:778.357333pt;}
.yfc{bottom:782.060000pt;}
.yb4{bottom:790.300230pt;}
.y16e{bottom:790.829767pt;}
.y139{bottom:793.323867pt;}
.yfa{bottom:795.665562pt;}
.y10f{bottom:797.028000pt;}
.y72{bottom:798.010933pt;}
.y16d{bottom:804.134134pt;}
.y138{bottom:806.628234pt;}
.yb1{bottom:808.667962pt;}
.yb3{bottom:808.668000pt;}
.yb2{bottom:813.354667pt;}
.yf9{bottom:813.958667pt;}
.y10e{bottom:815.698667pt;}
.y4{bottom:816.529333pt;}
.y16c{bottom:817.513167pt;}
.y71{bottom:817.966933pt;}
.y137{bottom:820.007267pt;}
.y32{bottom:821.826667pt;}
.y5{bottom:822.500000pt;}
.yb0{bottom:826.960000pt;}
.yae{bottom:826.961563pt;}
.y16b{bottom:830.817534pt;}
.yaf{bottom:831.722667pt;}
.y136{bottom:833.311634pt;}
.y10d{bottom:834.369333pt;}
.yf8{bottom:835.348341pt;}
.yf4{bottom:835.351561pt;}
.y70{bottom:837.997333pt;}
.yf6{bottom:839.433333pt;}
.y16a{bottom:844.196567pt;}
.yad{bottom:845.329333pt;}
.y135{bottom:846.614934pt;}
.yf7{bottom:847.294667pt;}
.yf5{bottom:847.297886pt;}
.y10c{bottom:853.040000pt;}
.y169{bottom:857.500934pt;}
.y6f{bottom:857.953333pt;}
.yab{bottom:866.645333pt;}
.y3{bottom:867.850520pt;}
.y134{bottom:868.006667pt;}
.yac{bottom:870.802667pt;}
.y168{bottom:870.804234pt;}
.y10b{bottom:871.710667pt;}
.y6e{bottom:883.350667pt;}
.y167{bottom:884.184334pt;}
.y10a{bottom:890.381333pt;}
.y2{bottom:897.184000pt;}
.y166{bottom:897.487634pt;}
.yaa{bottom:898.620000pt;}
.y109{bottom:909.052000pt;}
.y165{bottom:910.866667pt;}
.y1{bottom:973.228000pt;}
.y133{bottom:985.316000pt;}
.y75{bottom:985.322667pt;}
.h7{height:19.041090pt;}
.h15{height:19.065393pt;}
.h13{height:21.788262pt;}
.h5{height:27.201733pt;}
.hb{height:27.236451pt;}
.h8{height:28.564288pt;}
.h14{height:28.600745pt;}
.he{height:31.062500pt;}
.h17{height:32.645425pt;}
.h12{height:32.687091pt;}
.h6{height:36.726562pt;}
.hf{height:36.773438pt;}
.h10{height:36.778238pt;}
.h4{height:40.807292pt;}
.ha{height:40.859375pt;}
.hc{height:40.864708pt;}
.h9{height:44.573322pt;}
.hd{height:44.888429pt;}
.h18{height:48.624595pt;}
.h11{height:60.781250pt;}
.h16{height:60.807917pt;}
.h3{height:81.614991pt;}
.h2{height:96.512000pt;}
.h0{height:1043.981333pt;}
.h1{height:1044.000000pt;}
.w0{width:779.942667pt;}
.w1{width:780.000000pt;}
.x0{left:0.000000pt;}
.x19{left:75.968400pt;}
.x3{left:79.974800pt;}
.x49{left:81.864533pt;}
.xc{left:83.905467pt;}
.x2f{left:85.341600pt;}
.x1a{left:89.348400pt;}
.x31{left:90.630928pt;}
.x12{left:93.354267pt;}
.x25{left:94.639333pt;}
.x1d{left:98.645600pt;}
.x43{left:101.357516pt;}
.x4b{left:105.751067pt;}
.x2{left:109.303867pt;}
.x1e{left:110.664533pt;}
.x32{left:195.021279pt;}
.x33{left:205.828970pt;}
.x44{left:209.302834pt;}
.xf{left:211.880000pt;}
.x26{left:213.014667pt;}
.x4{left:215.508000pt;}
.x13{left:227.452000pt;}
.x34{left:229.341333pt;}
.x5{left:234.481333pt;}
.x14{left:235.766667pt;}
.x30{left:239.773333pt;}
.x28{left:244.913333pt;}
.x17{left:248.693333pt;}
.x29{left:252.624000pt;}
.x35{left:264.717333pt;}
.x3d{left:283.616000pt;}
.x21{left:287.320000pt;}
.x36{left:298.279041pt;}
.x45{left:313.549333pt;}
.x22{left:316.120000pt;}
.x1f{left:336.906667pt;}
.x6{left:353.914667pt;}
.x20{left:355.350667pt;}
.x37{left:360.259937pt;}
.x7{left:362.758667pt;}
.x23{left:367.445333pt;}
.x2a{left:368.881333pt;}
.x2b{left:369.864000pt;}
.x3e{left:372.132000pt;}
.x24{left:373.114667pt;}
.x2c{left:377.650667pt;}
.x2d{left:381.884000pt;}
.x2e{left:388.686667pt;}
.x3f{left:392.920000pt;}
.x1b{left:404.032000pt;}
.x15{left:408.040000pt;}
.x4a{left:409.849767pt;}
.x1c{left:417.334667pt;}
.x16{left:421.340000pt;}
.x1{left:430.110667pt;}
.x4c{left:433.736300pt;}
.x40{left:448.402667pt;}
.x46{left:451.426667pt;}
.x38{left:463.063666pt;}
.x8{left:469.266667pt;}
.x27{left:476.749333pt;}
.x47{left:478.337333pt;}
.x9{left:479.320000pt;}
.x41{left:481.360000pt;}
.xd{left:523.010667pt;}
.x39{left:524.969897pt;}
.xe{left:527.320000pt;}
.x3a{left:537.896195pt;}
.x48{left:539.262667pt;}
.x42{left:542.664000pt;}
.x3b{left:594.286583pt;}
.xa{left:623.546667pt;}
.x3c{left:627.848291pt;}
.x10{left:633.373333pt;}
.x11{left:637.681333pt;}
.xb{left:641.764000pt;}
.x18{left:750.373333pt;}
}




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