
    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_275b465de7b97ba635283e36.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_03e30cb1ac05096bece607dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_44759ae0dd0ccf7ced430ba1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_a108a732e51dbef19428fa34.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_a12926c207225281a226b5d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;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_e87d6a6c9ae46af8c0b1a386.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.907227;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;}
.m5{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.439999px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:51.119980px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.399734px;}
.ls6{letter-spacing:8.324351px;}
.ls4{letter-spacing:10.485550px;}
.ls9{letter-spacing:18.410167px;}
.ls1{letter-spacing:20.571426px;}
.lsa{letter-spacing:23.560971px;}
.ls0{letter-spacing:29.936882px;}
.ls8{letter-spacing:32.098142px;}
.ls5{letter-spacing:35.700240px;}
.ls2{letter-spacing:38.581919px;}
.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;}
}
.ws4{word-spacing:-45.194342px;}
.ws1{word-spacing:-14.541294px;}
.ws0{word-spacing:-13.139995px;}
.ws2{word-spacing:-11.737975px;}
.ws5{word-spacing:-7.358217px;}
.ws3{word-spacing:0.000000px;}
._32{margin-left:-7.835622px;}
._f{margin-left:-2.185515px;}
._0{margin-left:-1.168938px;}
._1{width:1.240920px;}
._3{width:2.771637px;}
._9{width:3.780696px;}
._7{width:5.126975px;}
._a{width:6.532494px;}
._17{width:7.665784px;}
._4{width:8.722515px;}
._e{width:10.029188px;}
._5{width:11.346609px;}
._12{width:12.950020px;}
._2{width:15.018987px;}
._14{width:16.084776px;}
._8{width:17.281205px;}
._10{width:18.334938px;}
._11{width:19.561323px;}
._6{width:20.745836px;}
._b{width:21.754218px;}
._18{width:23.438561px;}
._c{width:24.932250px;}
._28{width:25.978568px;}
._d{width:26.991760px;}
._13{width:28.443260px;}
._1b{width:30.016036px;}
._16{width:31.022985px;}
._15{width:32.213850px;}
._29{width:33.214217px;}
._27{width:34.542189px;}
._21{width:35.681850px;}
._20{width:37.462864px;}
._2c{width:40.132438px;}
._1f{width:41.136701px;}
._1d{width:42.481562px;}
._1c{width:43.629115px;}
._1e{width:44.700464px;}
._1a{width:47.228436px;}
._19{width:48.461086px;}
._22{width:50.213570px;}
._23{width:51.284843px;}
._25{width:53.224054px;}
._24{width:54.612319px;}
._26{width:79.454231px;}
._2a{width:140.255955px;}
._2b{width:191.701358px;}
._2d{width:196.397584px;}
._30{width:268.905782px;}
._2e{width:341.815354px;}
._2f{width:379.943902px;}
._31{width:554.012727px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.432868px;}
.fs5{font-size:40.646144px;}
.fs4{font-size:46.951901px;}
.fs3{font-size:52.559979px;}
.fs2{font-size:58.165177px;}
.fs1{font-size:64.471174px;}
.fs0{font-size:140.158144px;}
.y0{bottom:0.000000px;}
.y115{bottom:0.179051px;}
.y113{bottom:0.179053px;}
.yb1{bottom:148.979940px;}
.y10b{bottom:152.579939px;}
.y143{bottom:159.239936px;}
.y8c{bottom:159.419936px;}
.ye4{bottom:161.939935px;}
.y1c5{bottom:162.479935px;}
.yb0{bottom:164.999934px;}
.y1c6{bottom:167.699933px;}
.y10a{bottom:168.419933px;}
.y142{bottom:175.079930px;}
.y8b{bottom:175.259930px;}
.y1c4{bottom:175.799930px;}
.ye3{bottom:177.959929px;}
.yaf{bottom:181.019928px;}
.y109{bottom:184.439926px;}
.y18b{bottom:187.859925px;}
.y1c3{bottom:189.299924px;}
.y141{bottom:191.099924px;}
.y8a{bottom:191.279923px;}
.ye2{bottom:193.979922px;}
.yae{bottom:196.859921px;}
.y168{bottom:197.039921px;}
.y18a{bottom:197.939921px;}
.y108{bottom:200.459920px;}
.y1c2{bottom:202.799919px;}
.y89{bottom:207.299917px;}
.ye1{bottom:209.819916px;}
.y140{bottom:211.799915px;}
.yad{bottom:212.879915px;}
.y167{bottom:213.059915px;}
.y1c1{bottom:216.119914px;}
.y107{bottom:216.299913px;}
.y88{bottom:223.139911px;}
.ye0{bottom:225.839910px;}
.yac{bottom:228.719909px;}
.y166{bottom:228.899908px;}
.y1c0{bottom:229.619908px;}
.y106{bottom:232.319907px;}
.y58{bottom:235.379906px;}
.y87{bottom:239.159904px;}
.y13f{bottom:241.319903px;}
.ydf{bottom:241.679903px;}
.y1bf{bottom:243.119903px;}
.y165{bottom:245.099902px;}
.y30{bottom:246.719901px;}
.y105{bottom:248.159901px;}
.y57{bottom:251.399899px;}
.yab{bottom:253.379899px;}
.y86{bottom:254.999898px;}
.y1be{bottom:256.439897px;}
.y13e{bottom:257.339897px;}
.yde{bottom:257.699897px;}
.y164{bottom:260.939896px;}
.y2f{bottom:262.739895px;}
.y104{bottom:264.179894px;}
.y1bd{bottom:269.939892px;}
.yaa{bottom:270.479892px;}
.y56{bottom:272.099891px;}
.y13d{bottom:273.179891px;}
.ydd{bottom:273.539891px;}
.y163{bottom:276.959889px;}
.y85{bottom:279.659888px;}
.y103{bottom:281.099888px;}
.y1bc{bottom:283.439887px;}
.ya9{bottom:286.319885px;}
.y2e{bottom:287.399885px;}
.y13c{bottom:289.199884px;}
.y162{bottom:292.799883px;}
.ydc{bottom:294.239882px;}
.y84{bottom:295.679882px;}
.y1bb{bottom:296.759881px;}
.y102{bottom:297.119881px;}
.y55{bottom:299.099880px;}
.y2d{bottom:303.419879px;}
.y13b{bottom:305.219878px;}
.y161{bottom:308.819876px;}
.y1ba{bottom:310.259876px;}
.y83{bottom:311.699875px;}
.y189{bottom:312.419875px;}
.y101{bottom:312.959875px;}
.y2c{bottom:319.259872px;}
.y13a{bottom:321.059872px;}
.y1b9{bottom:323.759870px;}
.ydb{bottom:323.939870px;}
.y160{bottom:324.839870px;}
.y82{bottom:327.539869px;}
.y100{bottom:328.979868px;}
.y188{bottom:329.339868px;}
.y54{bottom:330.239868px;}
.y2b{bottom:335.279866px;}
.ya8{bottom:336.359865px;}
.y139{bottom:337.079865px;}
.yda{bottom:339.779864px;}
.y15f{bottom:340.679864px;}
.y81{bottom:343.559863px;}
.yff{bottom:345.899862px;}
.y53{bottom:346.079862px;}
.y1b8{bottom:350.579860px;}
.y2a{bottom:351.299859px;}
.ya7{bottom:352.199859px;}
.y138{bottom:352.919859px;}
.yd9{bottom:355.799858px;}
.y15e{bottom:356.699857px;}
.y80{bottom:359.399856px;}
.yfe{bottom:361.919855px;}
.y52{bottom:362.099855px;}
.y187{bottom:362.819855px;}
.y1b7{bottom:364.079854px;}
.y29{bottom:367.139853px;}
.y137{bottom:368.939852px;}
.y15d{bottom:372.539851px;}
.y7f{bottom:375.419850px;}
.y1b6{bottom:377.399849px;}
.yd8{bottom:377.759849px;}
.yfd{bottom:377.939849px;}
.y51{bottom:378.119849px;}
.y186{bottom:379.559848px;}
.y28{bottom:383.159847px;}
.y136{bottom:384.779846px;}
.y15c{bottom:388.559845px;}
.y1b5{bottom:390.899844px;}
.y7e{bottom:391.259843px;}
.y50{bottom:393.959842px;}
.yfc{bottom:394.859842px;}
.y185{bottom:396.479841px;}
.y27{bottom:398.999840px;}
.y135{bottom:400.799840px;}
.y1b4{bottom:404.219838px;}
.y15b{bottom:404.399838px;}
.y7d{bottom:407.279837px;}
.yd7{bottom:408.899836px;}
.y4f{bottom:409.979836px;}
.yfb{bottom:410.879836px;}
.y184{bottom:413.219835px;}
.y26{bottom:415.019834px;}
.y1b3{bottom:417.539833px;}
.y15a{bottom:420.419832px;}
.y134{bottom:422.939831px;}
.yd6{bottom:424.739830px;}
.y4e{bottom:425.819830px;}
.yfa{bottom:426.719829px;}
.y183{bottom:429.959828px;}
.ya6{bottom:430.679828px;}
.y25{bottom:430.859828px;}
.y1b2{bottom:431.039828px;}
.y7c{bottom:431.939827px;}
.y159{bottom:436.439825px;}
.yd5{bottom:440.759824px;}
.y4d{bottom:441.839823px;}
.y1b1{bottom:444.359822px;}
.y24{bottom:446.879821px;}
.y7b{bottom:447.959821px;}
.yf9{bottom:449.759820px;}
.y182{bottom:451.019820px;}
.y158{bottom:452.279819px;}
.y133{bottom:454.079818px;}
.yd4{bottom:456.779817px;}
.y4c{bottom:457.679817px;}
.y1b0{bottom:457.859817px;}
.ya5{bottom:460.199816px;}
.y23{bottom:462.899815px;}
.y7a{bottom:463.799814px;}
.yf8{bottom:465.599814px;}
.y157{bottom:468.299813px;}
.y132{bottom:470.099812px;}
.y1af{bottom:471.359811px;}
.yd3{bottom:472.619811px;}
.y181{bottom:473.339811px;}
.ya4{bottom:476.219810px;}
.y22{bottom:478.919808px;}
.y79{bottom:479.819808px;}
.y4b{bottom:482.519807px;}
.y156{bottom:484.139806px;}
.y1ae{bottom:484.679806px;}
.y131{bottom:485.939806px;}
.yd2{bottom:488.639805px;}
.yf7{bottom:489.539804px;}
.y180{bottom:489.719804px;}
.ya3{bottom:492.059803px;}
.y21{bottom:494.939802px;}
.y78{bottom:495.839802px;}
.y1ad{bottom:498.179801px;}
.y4a{bottom:498.359801px;}
.y155{bottom:500.159800px;}
.y130{bottom:501.959799px;}
.yd1{bottom:504.479798px;}
.y17f{bottom:506.099798px;}
.ya2{bottom:508.079797px;}
.yf6{bottom:508.439797px;}
.y20{bottom:510.779796px;}
.y77{bottom:511.679795px;}
.y49{bottom:514.379794px;}
.y154{bottom:515.999794px;}
.y12f{bottom:517.799793px;}
.yd0{bottom:520.499792px;}
.y10f{bottom:520.679792px;}
.y17e{bottom:522.659791px;}
.ya1{bottom:523.919790px;}
.y1ac{bottom:524.999790px;}
.y1f{bottom:526.799789px;}
.y76{bottom:527.699789px;}
.y48{bottom:530.219788px;}
.y153{bottom:532.019787px;}
.y12e{bottom:533.819786px;}
.y110{bottom:534.899786px;}
.y10d{bottom:535.799786px;}
.ycf{bottom:536.339785px;}
.y17d{bottom:538.499785px;}
.ya0{bottom:539.939784px;}
.y1e{bottom:542.639783px;}
.y75{bottom:543.719783px;}
.y47{bottom:546.239782px;}
.y17c{bottom:551.279779px;}
.y1ab{bottom:551.999779px;}
.yce{bottom:552.539779px;}
.y12d{bottom:554.519778px;}
.y9f{bottom:555.779778px;}
.y152{bottom:555.959778px;}
.y10c{bottom:556.319777px;}
.y1d{bottom:558.659777px;}
.y74{bottom:559.739776px;}
.y46{bottom:562.079775px;}
.y1a9{bottom:565.319774px;}
.ycd{bottom:568.559773px;}
.y1aa{bottom:570.359772px;}
.y10e{bottom:571.079772px;}
.y9e{bottom:571.799771px;}
.y151{bottom:573.419771px;}
.y1c{bottom:574.679770px;}
.y17b{bottom:575.399770px;}
.y73{bottom:575.579770px;}
.y45{bottom:578.099769px;}
.y1a8{bottom:578.819768px;}
.y12c{bottom:584.039766px;}
.ycc{bottom:584.399766px;}
.y9d{bottom:587.819765px;}
.y1b{bottom:590.519764px;}
.y72{bottom:591.599763px;}
.y1a7{bottom:592.319763px;}
.y44{bottom:594.119762px;}
.y17a{bottom:597.719761px;}
.y12b{bottom:600.059760px;}
.ycb{bottom:600.419760px;}
.y9c{bottom:603.659759px;}
.yf5{bottom:604.019758px;}
.y1a6{bottom:605.639758px;}
.y1a{bottom:606.539757px;}
.y71{bottom:607.619757px;}
.y43{bottom:609.959756px;}
.y179{bottom:613.739755px;}
.y12a{bottom:615.899754px;}
.yca{bottom:616.259753px;}
.y1a5{bottom:619.139752px;}
.y9b{bottom:619.679752px;}
.yf4{bottom:620.039752px;}
.y42{bottom:625.979750px;}
.y70{bottom:627.959749px;}
.y19{bottom:628.319749px;}
.y178{bottom:629.759748px;}
.y129{bottom:631.919747px;}
.yc9{bottom:632.279747px;}
.y1a4{bottom:632.639747px;}
.y9a{bottom:635.519746px;}
.yf3{bottom:635.879746px;}
.y41{bottom:641.819743px;}
.y177{bottom:645.779742px;}
.y1a3{bottom:645.959742px;}
.y128{bottom:647.759741px;}
.y99{bottom:651.539739px;}
.yf2{bottom:651.899739px;}
.yc8{bottom:656.939737px;}
.y6f{bottom:657.659737px;}
.y40{bottom:657.839737px;}
.y1a2{bottom:659.459736px;}
.y176{bottom:661.619735px;}
.y127{bottom:663.779734px;}
.y18{bottom:664.859734px;}
.y98{bottom:667.379733px;}
.yf1{bottom:667.739733px;}
.yc7{bottom:672.959731px;}
.y3f{bottom:673.679731px;}
.y175{bottom:677.639729px;}
.y126{bottom:679.799728px;}
.y17{bottom:679.979728px;}
.y97{bottom:683.399727px;}
.yf0{bottom:683.759726px;}
.y1a1{bottom:686.279725px;}
.yc6{bottom:688.799724px;}
.y3e{bottom:689.699724px;}
.y174{bottom:693.479723px;}
.y150{bottom:694.559722px;}
.y96{bottom:699.419720px;}
.yef{bottom:699.779720px;}
.y125{bottom:700.319720px;}
.yc5{bottom:704.819718px;}
.y3d{bottom:705.719718px;}
.y173{bottom:709.499716px;}
.y16{bottom:709.679716px;}
.y14f{bottom:710.579716px;}
.y1a0{bottom:713.099715px;}
.y95{bottom:715.259714px;}
.yee{bottom:715.619714px;}
.yc4{bottom:720.659712px;}
.y3c{bottom:721.559711px;}
.y15{bottom:724.799710px;}
.y14e{bottom:726.419709px;}
.y124{bottom:726.959709px;}
.yed{bottom:731.639707px;}
.y172{bottom:733.439707px;}
.y94{bottom:735.959706px;}
.yc3{bottom:736.679705px;}
.y6e{bottom:737.579705px;}
.y14{bottom:739.739704px;}
.y19f{bottom:739.919704px;}
.y14d{bottom:742.439703px;}
.y123{bottom:742.979703px;}
.y171{bottom:743.519703px;}
.y3b{bottom:746.219702px;}
.yec{bottom:747.479701px;}
.yc2{bottom:752.519699px;}
.y6d{bottom:753.419699px;}
.y13{bottom:754.859698px;}
.y14c{bottom:758.639697px;}
.y122{bottom:758.999696px;}
.y19e{bottom:759.899696px;}
.y3a{bottom:762.419695px;}
.y93{bottom:762.959695px;}
.yeb{bottom:763.499695px;}
.yc1{bottom:768.539693px;}
.y6c{bottom:769.439692px;}
.y12{bottom:770.159692px;}
.y14b{bottom:774.479690px;}
.y121{bottom:774.839690px;}
.y39{bottom:778.439689px;}
.yea{bottom:779.339688px;}
.yc0{bottom:784.559686px;}
.y11{bottom:785.279686px;}
.y6b{bottom:785.459686px;}
.y19d{bottom:788.519685px;}
.y14a{bottom:790.499684px;}
.y120{bottom:790.859684px;}
.y92{bottom:794.099682px;}
.y38{bottom:794.279682px;}
.ye9{bottom:795.359682px;}
.y10{bottom:800.219680px;}
.ybf{bottom:800.399680px;}
.y6a{bottom:801.299679px;}
.y19c{bottom:805.259678px;}
.y149{bottom:806.339677px;}
.y11f{bottom:806.699677px;}
.y91{bottom:810.119676px;}
.y37{bottom:810.299676px;}
.ye8{bottom:811.379675px;}
.yf{bottom:815.339674px;}
.ybe{bottom:816.419673px;}
.y69{bottom:817.319673px;}
.y19b{bottom:822.179671px;}
.y148{bottom:822.359671px;}
.y11e{bottom:822.719671px;}
.y90{bottom:825.959670px;}
.y36{bottom:826.139670px;}
.ye7{bottom:827.219669px;}
.ye{bottom:830.639668px;}
.ybd{bottom:832.259667px;}
.y68{bottom:833.159667px;}
.y147{bottom:838.199665px;}
.y11d{bottom:838.559665px;}
.y8f{bottom:841.979663px;}
.y35{bottom:842.159663px;}
.y19a{bottom:844.679662px;}
.yd{bottom:845.579662px;}
.ybc{bottom:848.279661px;}
.y67{bottom:849.179660px;}
.ye6{bottom:851.159660px;}
.y8e{bottom:857.819657px;}
.y34{bottom:857.999657px;}
.y146{bottom:858.899656px;}
.y11c{bottom:859.259656px;}
.yc{bottom:860.699656px;}
.ye5{bottom:861.239656px;}
.ybb{bottom:864.299654px;}
.y112{bottom:867.180600px;}
.y114{bottom:871.860600px;}
.y66{bottom:873.839650px;}
.y33{bottom:874.019650px;}
.yb{bottom:875.819650px;}
.y199{bottom:875.999650px;}
.y170{bottom:877.439649px;}
.yba{bottom:880.139648px;}
.y145{bottom:887.699645px;}
.y11b{bottom:888.959644px;}
.y65{bottom:889.859644px;}
.y32{bottom:890.039644px;}
.ya{bottom:890.939644px;}
.y198{bottom:891.839643px;}
.y16f{bottom:893.639643px;}
.yb9{bottom:896.159642px;}
.y144{bottom:897.599641px;}
.y11a{bottom:904.799638px;}
.y64{bottom:905.699638px;}
.y31{bottom:905.879638px;}
.y9{bottom:906.059638px;}
.y197{bottom:907.859637px;}
.y16e{bottom:909.659636px;}
.yb8{bottom:911.999635px;}
.y119{bottom:920.819632px;}
.y63{bottom:921.719631px;}
.y8{bottom:922.259631px;}
.y196{bottom:923.699631px;}
.y16d{bottom:925.499630px;}
.yb7{bottom:928.019629px;}
.y118{bottom:936.659625px;}
.y62{bottom:937.559625px;}
.y7{bottom:938.819624px;}
.y195{bottom:939.719624px;}
.y16c{bottom:941.519623px;}
.yb6{bottom:943.859622px;}
.y111{bottom:947.819621px;}
.y61{bottom:953.579619px;}
.y6{bottom:955.739618px;}
.y117{bottom:957.359617px;}
.yb5{bottom:959.879616px;}
.y16b{bottom:962.039615px;}
.y60{bottom:969.419612px;}
.y194{bottom:971.579611px;}
.y5{bottom:972.479611px;}
.yb4{bottom:975.899610px;}
.y116{bottom:978.239609px;}
.y5f{bottom:985.439606px;}
.y193{bottom:987.599605px;}
.y4{bottom:989.219604px;}
.y16a{bottom:990.839604px;}
.yb3{bottom:991.739603px;}
.y8d{bottom:994.259602px;}
.y169{bottom:1000.919600px;}
.y192{bottom:1003.439599px;}
.y3{bottom:1009.199596px;}
.y5e{bottom:1010.099596px;}
.yb2{bottom:1012.439595px;}
.y191{bottom:1019.459592px;}
.y5d{bottom:1026.119590px;}
.y190{bottom:1035.299586px;}
.y5c{bottom:1041.959583px;}
.y18f{bottom:1051.319579px;}
.y2{bottom:1057.979577px;}
.y18e{bottom:1067.339573px;}
.y5b{bottom:1073.999570px;}
.y18d{bottom:1083.179567px;}
.y5a{bottom:1089.839564px;}
.y1{bottom:1098.299561px;}
.y18c{bottom:1105.319558px;}
.y59{bottom:1105.859558px;}
.h8{height:10.620000px;}
.hb{height:28.872379px;}
.h7{height:39.891967px;}
.hc{height:46.057798px;}
.h6{height:46.080723px;}
.h9{height:47.318713px;}
.h4{height:52.970604px;}
.h3{height:57.085940px;}
.h5{height:60.664462px;}
.h2{height:63.274932px;}
.ha{height:98.438692px;}
.h1{height:137.557553px;}
.h0{height:1263.000000px;}
.w3{width:5.400000px;}
.w4{width:19.620000px;}
.w2{width:21.600000px;}
.w1{width:48.420000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xe{left:74.519970px;}
.x12{left:95.399465px;}
.x42{left:96.839961px;}
.x3f{left:101.699959px;}
.x1{left:104.939958px;}
.x32{left:115.739954px;}
.x3d{left:123.479951px;}
.x2{left:128.519936px;}
.x1f{left:134.820231px;}
.x4{left:140.759944px;}
.x40{left:141.839967px;}
.x6{left:162.900002px;}
.x5{left:170.279991px;}
.x33{left:172.440512px;}
.x3{left:179.099928px;}
.x7{left:182.339923px;}
.xf{left:199.259920px;}
.x34{left:203.579919px;}
.x10{left:224.099910px;}
.x20{left:233.639907px;}
.x21{left:244.439902px;}
.x44{left:255.959898px;}
.x22{left:275.579890px;}
.x35{left:279.539888px;}
.x36{left:289.259884px;}
.x23{left:290.339884px;}
.x11{left:308.339877px;}
.x41{left:317.339952px;}
.x24{left:323.459871px;}
.x37{left:332.279867px;}
.x25{left:336.599865px;}
.x26{left:370.619852px;}
.x3c{left:372.959851px;}
.x43{left:375.299639px;}
.x3e{left:383.580319px;}
.x13{left:455.939215px;}
.x27{left:460.436697px;}
.x2d{left:470.159812px;}
.x14{left:476.819047px;}
.x2c{left:481.499807px;}
.x18{left:486.539831px;}
.x1e{left:497.160735px;}
.x28{left:499.319800px;}
.x19{left:520.379792px;}
.x30{left:525.960000px;}
.x39{left:527.939789px;}
.x15{left:530.637835px;}
.x31{left:545.400000px;}
.x16{left:561.959775px;}
.x9{left:566.639773px;}
.x45{left:578.159769px;}
.x2e{left:579.959768px;}
.xb{left:582.299708px;}
.x47{left:588.239765px;}
.xa{left:589.679697px;}
.x8{left:594.719762px;}
.x49{left:599.760458px;}
.xc{left:604.799646px;}
.x4a{left:609.299756px;}
.x46{left:613.079755px;}
.x2b{left:643.319736px;}
.x4d{left:647.279741px;}
.x4e{left:651.959739px;}
.x2a{left:654.479738px;}
.xd{left:656.459692px;}
.x1a{left:666.719733px;}
.x4b{left:674.999730px;}
.x2f{left:687.240000px;}
.x48{left:696.779721px;}
.x1b{left:702.719719px;}
.x1c{left:710.819716px;}
.x17{left:737.279705px;}
.x3a{left:744.299929px;}
.x4c{left:745.739702px;}
.x38{left:751.859172px;}
.x1d{left:779.039688px;}
.x3b{left:783.539687px;}
.x29{left:804.599509px;}
@media print{
.v1{vertical-align:-1.279999pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:45.439982pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.355319pt;}
.ls6{letter-spacing:7.399423pt;}
.ls4{letter-spacing:9.320489pt;}
.ls9{letter-spacing:16.364593pt;}
.ls1{letter-spacing:18.285712pt;}
.lsa{letter-spacing:20.943085pt;}
.ls0{letter-spacing:26.610562pt;}
.ls8{letter-spacing:28.531681pt;}
.ls5{letter-spacing:31.733547pt;}
.ls2{letter-spacing:34.295039pt;}
.ws4{word-spacing:-40.172749pt;}
.ws1{word-spacing:-12.925595pt;}
.ws0{word-spacing:-11.679995pt;}
.ws2{word-spacing:-10.433756pt;}
.ws5{word-spacing:-6.540637pt;}
.ws3{word-spacing:0.000000pt;}
._32{margin-left:-6.964998pt;}
._f{margin-left:-1.942680pt;}
._0{margin-left:-1.039056pt;}
._1{width:1.103040pt;}
._3{width:2.463677pt;}
._9{width:3.360619pt;}
._7{width:4.557311pt;}
._a{width:5.806662pt;}
._17{width:6.814030pt;}
._4{width:7.753346pt;}
._e{width:8.914834pt;}
._5{width:10.085875pt;}
._12{width:11.511129pt;}
._2{width:13.350211pt;}
._14{width:14.297579pt;}
._8{width:15.361072pt;}
._10{width:16.297723pt;}
._11{width:17.387843pt;}
._6{width:18.440743pt;}
._b{width:19.337083pt;}
._18{width:20.834277pt;}
._c{width:22.162000pt;}
._28{width:23.092061pt;}
._d{width:23.992676pt;}
._13{width:25.282897pt;}
._1b{width:26.680921pt;}
._16{width:27.575986pt;}
._15{width:28.634534pt;}
._29{width:29.523748pt;}
._27{width:30.704168pt;}
._21{width:31.717200pt;}
._20{width:33.300323pt;}
._2c{width:35.673278pt;}
._1f{width:36.565957pt;}
._1d{width:37.761388pt;}
._1c{width:38.781435pt;}
._1e{width:39.733746pt;}
._1a{width:41.980832pt;}
._19{width:43.076521pt;}
._22{width:44.634285pt;}
._23{width:45.586527pt;}
._25{width:47.310270pt;}
._24{width:48.544284pt;}
._26{width:70.625983pt;}
._2a{width:124.671960pt;}
._2b{width:170.401207pt;}
._2d{width:174.575630pt;}
._30{width:239.027362pt;}
._2e{width:303.835870pt;}
._2f{width:337.727913pt;}
._31{width:492.455757pt;}
.fs6{font-size:26.162550pt;}
.fs5{font-size:36.129906pt;}
.fs4{font-size:41.735023pt;}
.fs3{font-size:46.719981pt;}
.fs2{font-size:51.702379pt;}
.fs1{font-size:57.307710pt;}
.fs0{font-size:124.585017pt;}
.y0{bottom:0.000000pt;}
.y115{bottom:0.159157pt;}
.y113{bottom:0.159158pt;}
.yb1{bottom:132.426614pt;}
.y10b{bottom:135.626612pt;}
.y143{bottom:141.546610pt;}
.y8c{bottom:141.706610pt;}
.ye4{bottom:143.946609pt;}
.y1c5{bottom:144.426609pt;}
.yb0{bottom:146.666608pt;}
.y1c6{bottom:149.066607pt;}
.y10a{bottom:149.706607pt;}
.y142{bottom:155.626604pt;}
.y8b{bottom:155.786604pt;}
.y1c4{bottom:156.266604pt;}
.ye3{bottom:158.186603pt;}
.yaf{bottom:160.906602pt;}
.y109{bottom:163.946601pt;}
.y18b{bottom:166.986600pt;}
.y1c3{bottom:168.266599pt;}
.y141{bottom:169.866599pt;}
.y8a{bottom:170.026599pt;}
.ye2{bottom:172.426598pt;}
.yae{bottom:174.986597pt;}
.y168{bottom:175.146597pt;}
.y18a{bottom:175.946596pt;}
.y108{bottom:178.186595pt;}
.y1c2{bottom:180.266595pt;}
.y89{bottom:184.266593pt;}
.ye1{bottom:186.506592pt;}
.y140{bottom:188.266591pt;}
.yad{bottom:189.226591pt;}
.y167{bottom:189.386591pt;}
.y1c1{bottom:192.106590pt;}
.y107{bottom:192.266590pt;}
.y88{bottom:198.346587pt;}
.ye0{bottom:200.746586pt;}
.yac{bottom:203.306585pt;}
.y166{bottom:203.466585pt;}
.y1c0{bottom:204.106585pt;}
.y106{bottom:206.506584pt;}
.y58{bottom:209.226583pt;}
.y87{bottom:212.586582pt;}
.y13f{bottom:214.506581pt;}
.ydf{bottom:214.826581pt;}
.y1bf{bottom:216.106580pt;}
.y165{bottom:217.866580pt;}
.y30{bottom:219.306579pt;}
.y105{bottom:220.586578pt;}
.y57{bottom:223.466577pt;}
.yab{bottom:225.226577pt;}
.y86{bottom:226.666576pt;}
.y1be{bottom:227.946575pt;}
.y13e{bottom:228.746575pt;}
.yde{bottom:229.066575pt;}
.y164{bottom:231.946574pt;}
.y2f{bottom:233.546573pt;}
.y104{bottom:234.826573pt;}
.y1bd{bottom:239.946571pt;}
.yaa{bottom:240.426570pt;}
.y56{bottom:241.866570pt;}
.y13d{bottom:242.826570pt;}
.ydd{bottom:243.146569pt;}
.y163{bottom:246.186568pt;}
.y85{bottom:248.586567pt;}
.y103{bottom:249.866567pt;}
.y1bc{bottom:251.946566pt;}
.ya9{bottom:254.506565pt;}
.y2e{bottom:255.466564pt;}
.y13c{bottom:257.066564pt;}
.y162{bottom:260.266563pt;}
.ydc{bottom:261.546562pt;}
.y84{bottom:262.826562pt;}
.y1bb{bottom:263.786561pt;}
.y102{bottom:264.106561pt;}
.y55{bottom:265.866560pt;}
.y2d{bottom:269.706559pt;}
.y13b{bottom:271.306558pt;}
.y161{bottom:274.506557pt;}
.y1ba{bottom:275.786556pt;}
.y83{bottom:277.066556pt;}
.y189{bottom:277.706556pt;}
.y101{bottom:278.186555pt;}
.y2c{bottom:283.786553pt;}
.y13a{bottom:285.386553pt;}
.y1b9{bottom:287.786552pt;}
.ydb{bottom:287.946551pt;}
.y160{bottom:288.746551pt;}
.y82{bottom:291.146550pt;}
.y100{bottom:292.426550pt;}
.y188{bottom:292.746550pt;}
.y54{bottom:293.546549pt;}
.y2b{bottom:298.026547pt;}
.ya8{bottom:298.986547pt;}
.y139{bottom:299.626547pt;}
.yda{bottom:302.026546pt;}
.y15f{bottom:302.826546pt;}
.y81{bottom:305.386545pt;}
.yff{bottom:307.466544pt;}
.y53{bottom:307.626544pt;}
.y1b8{bottom:311.626542pt;}
.y2a{bottom:312.266542pt;}
.ya7{bottom:313.066541pt;}
.y138{bottom:313.706541pt;}
.yd9{bottom:316.266540pt;}
.y15e{bottom:317.066540pt;}
.y80{bottom:319.466539pt;}
.yfe{bottom:321.706538pt;}
.y52{bottom:321.866538pt;}
.y187{bottom:322.506538pt;}
.y1b7{bottom:323.626537pt;}
.y29{bottom:326.346536pt;}
.y137{bottom:327.946535pt;}
.y15d{bottom:331.146534pt;}
.y7f{bottom:333.706533pt;}
.y1b6{bottom:335.466532pt;}
.yd8{bottom:335.786532pt;}
.yfd{bottom:335.946532pt;}
.y51{bottom:336.106532pt;}
.y186{bottom:337.386532pt;}
.y28{bottom:340.586530pt;}
.y136{bottom:342.026530pt;}
.y15c{bottom:345.386529pt;}
.y1b5{bottom:347.466528pt;}
.y7e{bottom:347.786528pt;}
.y50{bottom:350.186527pt;}
.yfc{bottom:350.986526pt;}
.y185{bottom:352.426526pt;}
.y27{bottom:354.666525pt;}
.y135{bottom:356.266524pt;}
.y1b4{bottom:359.306523pt;}
.y15b{bottom:359.466523pt;}
.y7d{bottom:362.026522pt;}
.yd7{bottom:363.466521pt;}
.y4f{bottom:364.426521pt;}
.yfb{bottom:365.226521pt;}
.y184{bottom:367.306520pt;}
.y26{bottom:368.906519pt;}
.y1b3{bottom:371.146518pt;}
.y15a{bottom:373.706517pt;}
.y134{bottom:375.946516pt;}
.yd6{bottom:377.546516pt;}
.y4e{bottom:378.506515pt;}
.yfa{bottom:379.306515pt;}
.y183{bottom:382.186514pt;}
.ya6{bottom:382.826514pt;}
.y25{bottom:382.986513pt;}
.y1b2{bottom:383.146513pt;}
.y7c{bottom:383.946513pt;}
.y159{bottom:387.946511pt;}
.yd5{bottom:391.786510pt;}
.y4d{bottom:392.746510pt;}
.y1b1{bottom:394.986509pt;}
.y24{bottom:397.226508pt;}
.y7b{bottom:398.186507pt;}
.yf9{bottom:399.786507pt;}
.y182{bottom:400.906506pt;}
.y158{bottom:402.026506pt;}
.y133{bottom:403.626505pt;}
.yd4{bottom:406.026504pt;}
.y4c{bottom:406.826504pt;}
.y1b0{bottom:406.986504pt;}
.ya5{bottom:409.066503pt;}
.y23{bottom:411.466502pt;}
.y7a{bottom:412.266502pt;}
.yf8{bottom:413.866501pt;}
.y157{bottom:416.266500pt;}
.y132{bottom:417.866500pt;}
.y1af{bottom:418.986499pt;}
.yd3{bottom:420.106499pt;}
.y181{bottom:420.746498pt;}
.ya4{bottom:423.306497pt;}
.y22{bottom:425.706496pt;}
.y79{bottom:426.506496pt;}
.y4b{bottom:428.906495pt;}
.y156{bottom:430.346495pt;}
.y1ae{bottom:430.826494pt;}
.y131{bottom:431.946494pt;}
.yd2{bottom:434.346493pt;}
.yf7{bottom:435.146493pt;}
.y180{bottom:435.306493pt;}
.ya3{bottom:437.386492pt;}
.y21{bottom:439.946491pt;}
.y78{bottom:440.746490pt;}
.y1ad{bottom:442.826490pt;}
.y4a{bottom:442.986489pt;}
.y155{bottom:444.586489pt;}
.y130{bottom:446.186488pt;}
.yd1{bottom:448.426487pt;}
.y17f{bottom:449.866487pt;}
.ya2{bottom:451.626486pt;}
.yf6{bottom:451.946486pt;}
.y20{bottom:454.026485pt;}
.y77{bottom:454.826485pt;}
.y49{bottom:457.226484pt;}
.y154{bottom:458.666483pt;}
.y12f{bottom:460.266483pt;}
.yd0{bottom:462.666482pt;}
.y10f{bottom:462.826482pt;}
.y17e{bottom:464.586481pt;}
.ya1{bottom:465.706480pt;}
.y1ac{bottom:466.666480pt;}
.y1f{bottom:468.266479pt;}
.y76{bottom:469.066479pt;}
.y48{bottom:471.306478pt;}
.y153{bottom:472.906478pt;}
.y12e{bottom:474.506477pt;}
.y110{bottom:475.466476pt;}
.y10d{bottom:476.266476pt;}
.ycf{bottom:476.746476pt;}
.y17d{bottom:478.666475pt;}
.ya0{bottom:479.946475pt;}
.y1e{bottom:482.346474pt;}
.y75{bottom:483.306473pt;}
.y47{bottom:485.546472pt;}
.y17c{bottom:490.026471pt;}
.y1ab{bottom:490.666470pt;}
.yce{bottom:491.146470pt;}
.y12d{bottom:492.906470pt;}
.y9f{bottom:494.026469pt;}
.y152{bottom:494.186469pt;}
.y10c{bottom:494.506469pt;}
.y1d{bottom:496.586468pt;}
.y74{bottom:497.546468pt;}
.y46{bottom:499.626467pt;}
.y1a9{bottom:502.506466pt;}
.ycd{bottom:505.386465pt;}
.y1aa{bottom:506.986464pt;}
.y10e{bottom:507.626464pt;}
.y9e{bottom:508.266463pt;}
.y151{bottom:509.706463pt;}
.y1c{bottom:510.826462pt;}
.y17b{bottom:511.466462pt;}
.y73{bottom:511.626462pt;}
.y45{bottom:513.866461pt;}
.y1a8{bottom:514.506461pt;}
.y12c{bottom:519.146459pt;}
.ycc{bottom:519.466459pt;}
.y9d{bottom:522.506458pt;}
.y1b{bottom:524.906457pt;}
.y72{bottom:525.866456pt;}
.y1a7{bottom:526.506456pt;}
.y44{bottom:528.106455pt;}
.y17a{bottom:531.306454pt;}
.y12b{bottom:533.386453pt;}
.ycb{bottom:533.706453pt;}
.y9c{bottom:536.586452pt;}
.yf5{bottom:536.906452pt;}
.y1a6{bottom:538.346451pt;}
.y1a{bottom:539.146451pt;}
.y71{bottom:540.106451pt;}
.y43{bottom:542.186450pt;}
.y179{bottom:545.546448pt;}
.y12a{bottom:547.466448pt;}
.yca{bottom:547.786448pt;}
.y1a5{bottom:550.346447pt;}
.y9b{bottom:550.826446pt;}
.yf4{bottom:551.146446pt;}
.y42{bottom:556.426444pt;}
.y70{bottom:558.186443pt;}
.y19{bottom:558.506443pt;}
.y178{bottom:559.786443pt;}
.y129{bottom:561.706442pt;}
.yc9{bottom:562.026442pt;}
.y1a4{bottom:562.346442pt;}
.y9a{bottom:564.906441pt;}
.yf3{bottom:565.226441pt;}
.y41{bottom:570.506438pt;}
.y177{bottom:574.026437pt;}
.y1a3{bottom:574.186437pt;}
.y128{bottom:575.786436pt;}
.y99{bottom:579.146435pt;}
.yf2{bottom:579.466435pt;}
.yc8{bottom:583.946433pt;}
.y6f{bottom:584.586433pt;}
.y40{bottom:584.746433pt;}
.y1a2{bottom:586.186432pt;}
.y176{bottom:588.106431pt;}
.y127{bottom:590.026431pt;}
.y18{bottom:590.986430pt;}
.y98{bottom:593.226429pt;}
.yf1{bottom:593.546429pt;}
.yc7{bottom:598.186427pt;}
.y3f{bottom:598.826427pt;}
.y175{bottom:602.346426pt;}
.y126{bottom:604.266425pt;}
.y17{bottom:604.426425pt;}
.y97{bottom:607.466424pt;}
.yf0{bottom:607.786424pt;}
.y1a1{bottom:610.026423pt;}
.yc6{bottom:612.266422pt;}
.y3e{bottom:613.066421pt;}
.y174{bottom:616.426420pt;}
.y150{bottom:617.386420pt;}
.y96{bottom:621.706418pt;}
.yef{bottom:622.026418pt;}
.y125{bottom:622.506418pt;}
.yc5{bottom:626.506416pt;}
.y3d{bottom:627.306416pt;}
.y173{bottom:630.666414pt;}
.y16{bottom:630.826414pt;}
.y14f{bottom:631.626414pt;}
.y1a0{bottom:633.866413pt;}
.y95{bottom:635.786412pt;}
.yee{bottom:636.106412pt;}
.yc4{bottom:640.586410pt;}
.y3c{bottom:641.386410pt;}
.y15{bottom:644.266409pt;}
.y14e{bottom:645.706408pt;}
.y124{bottom:646.186408pt;}
.yed{bottom:650.346407pt;}
.y172{bottom:651.946406pt;}
.y94{bottom:654.186405pt;}
.yc3{bottom:654.826405pt;}
.y6e{bottom:655.626404pt;}
.y14{bottom:657.546404pt;}
.y19f{bottom:657.706404pt;}
.y14d{bottom:659.946403pt;}
.y123{bottom:660.426402pt;}
.y171{bottom:660.906402pt;}
.y3b{bottom:663.306401pt;}
.yec{bottom:664.426401pt;}
.yc2{bottom:668.906399pt;}
.y6d{bottom:669.706399pt;}
.y13{bottom:670.986398pt;}
.y14c{bottom:674.346397pt;}
.y122{bottom:674.666397pt;}
.y19e{bottom:675.466396pt;}
.y3a{bottom:677.706396pt;}
.y93{bottom:678.186395pt;}
.yeb{bottom:678.666395pt;}
.yc1{bottom:683.146393pt;}
.y6c{bottom:683.946393pt;}
.y12{bottom:684.586393pt;}
.y14b{bottom:688.426391pt;}
.y121{bottom:688.746391pt;}
.y39{bottom:691.946390pt;}
.yea{bottom:692.746390pt;}
.yc0{bottom:697.386388pt;}
.y11{bottom:698.026387pt;}
.y6b{bottom:698.186387pt;}
.y19d{bottom:700.906386pt;}
.y14a{bottom:702.666386pt;}
.y120{bottom:702.986385pt;}
.y92{bottom:705.866384pt;}
.y38{bottom:706.026384pt;}
.ye9{bottom:706.986384pt;}
.y10{bottom:711.306382pt;}
.ybf{bottom:711.466382pt;}
.y6a{bottom:712.266382pt;}
.y19c{bottom:715.786380pt;}
.y149{bottom:716.746380pt;}
.y11f{bottom:717.066380pt;}
.y91{bottom:720.106379pt;}
.y37{bottom:720.266379pt;}
.ye8{bottom:721.226378pt;}
.yf{bottom:724.746377pt;}
.ybe{bottom:725.706376pt;}
.y69{bottom:726.506376pt;}
.y19b{bottom:730.826374pt;}
.y148{bottom:730.986374pt;}
.y11e{bottom:731.306374pt;}
.y90{bottom:734.186373pt;}
.y36{bottom:734.346373pt;}
.ye7{bottom:735.306373pt;}
.ye{bottom:738.346371pt;}
.ybd{bottom:739.786371pt;}
.y68{bottom:740.586370pt;}
.y147{bottom:745.066369pt;}
.y11d{bottom:745.386369pt;}
.y8f{bottom:748.426367pt;}
.y35{bottom:748.586367pt;}
.y19a{bottom:750.826366pt;}
.yd{bottom:751.626366pt;}
.ybc{bottom:754.026365pt;}
.y67{bottom:754.826365pt;}
.ye6{bottom:756.586364pt;}
.y8e{bottom:762.506362pt;}
.y34{bottom:762.666362pt;}
.y146{bottom:763.466361pt;}
.y11c{bottom:763.786361pt;}
.yc{bottom:765.066361pt;}
.ye5{bottom:765.546360pt;}
.ybb{bottom:768.266359pt;}
.y112{bottom:770.827200pt;}
.y114{bottom:774.987200pt;}
.y66{bottom:776.746356pt;}
.y33{bottom:776.906356pt;}
.yb{bottom:778.506355pt;}
.y199{bottom:778.666355pt;}
.y170{bottom:779.946355pt;}
.yba{bottom:782.346354pt;}
.y145{bottom:789.066351pt;}
.y11b{bottom:790.186351pt;}
.y65{bottom:790.986350pt;}
.y32{bottom:791.146350pt;}
.ya{bottom:791.946350pt;}
.y198{bottom:792.746350pt;}
.y16f{bottom:794.346349pt;}
.yb9{bottom:796.586348pt;}
.y144{bottom:797.866348pt;}
.y11a{bottom:804.266345pt;}
.y64{bottom:805.066345pt;}
.y31{bottom:805.226345pt;}
.y9{bottom:805.386345pt;}
.y197{bottom:806.986344pt;}
.y16e{bottom:808.586343pt;}
.yb8{bottom:810.666342pt;}
.y119{bottom:818.506339pt;}
.y63{bottom:819.306339pt;}
.y8{bottom:819.786339pt;}
.y196{bottom:821.066338pt;}
.y16d{bottom:822.666338pt;}
.yb7{bottom:824.906337pt;}
.y118{bottom:832.586334pt;}
.y62{bottom:833.386333pt;}
.y7{bottom:834.506333pt;}
.y195{bottom:835.306333pt;}
.y16c{bottom:836.906332pt;}
.yb6{bottom:838.986331pt;}
.y111{bottom:842.506330pt;}
.y61{bottom:847.626328pt;}
.y6{bottom:849.546327pt;}
.y117{bottom:850.986326pt;}
.yb5{bottom:853.226325pt;}
.y16b{bottom:855.146325pt;}
.y60{bottom:861.706322pt;}
.y194{bottom:863.626321pt;}
.y5{bottom:864.426321pt;}
.yb4{bottom:867.466320pt;}
.y116{bottom:869.546319pt;}
.y5f{bottom:875.946316pt;}
.y193{bottom:877.866316pt;}
.y4{bottom:879.306315pt;}
.y16a{bottom:880.746314pt;}
.yb3{bottom:881.546314pt;}
.y8d{bottom:883.786313pt;}
.y169{bottom:889.706311pt;}
.y192{bottom:891.946310pt;}
.y3{bottom:897.066308pt;}
.y5e{bottom:897.866308pt;}
.yb2{bottom:899.946307pt;}
.y191{bottom:906.186304pt;}
.y5d{bottom:912.106302pt;}
.y190{bottom:920.266299pt;}
.y5c{bottom:926.186296pt;}
.y18f{bottom:934.506293pt;}
.y2{bottom:940.426290pt;}
.y18e{bottom:948.746287pt;}
.y5b{bottom:954.666285pt;}
.y18d{bottom:962.826282pt;}
.y5a{bottom:968.746279pt;}
.y1{bottom:976.266276pt;}
.y18c{bottom:982.506274pt;}
.y59{bottom:982.986273pt;}
.h8{height:9.440000pt;}
.hb{height:25.664337pt;}
.h7{height:35.459526pt;}
.hc{height:40.940265pt;}
.h6{height:40.960643pt;}
.h9{height:42.061078pt;}
.h4{height:47.084981pt;}
.h3{height:50.743058pt;}
.h5{height:53.923966pt;}
.h2{height:56.244384pt;}
.ha{height:87.501060pt;}
.h1{height:122.273381pt;}
.h0{height:1122.666667pt;}
.w3{width:4.800000pt;}
.w4{width:17.440000pt;}
.w2{width:19.200000pt;}
.w1{width:43.040000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xe{left:66.239974pt;}
.x12{left:84.799525pt;}
.x42{left:86.079966pt;}
.x3f{left:90.399964pt;}
.x1{left:93.279963pt;}
.x32{left:102.879959pt;}
.x3d{left:109.759956pt;}
.x2{left:114.239943pt;}
.x1f{left:119.840205pt;}
.x4{left:125.119950pt;}
.x40{left:126.079970pt;}
.x6{left:144.800002pt;}
.x5{left:151.359992pt;}
.x33{left:153.280455pt;}
.x3{left:159.199936pt;}
.x7{left:162.079932pt;}
.xf{left:177.119929pt;}
.x34{left:180.959928pt;}
.x10{left:199.199920pt;}
.x20{left:207.679917pt;}
.x21{left:217.279913pt;}
.x44{left:227.519909pt;}
.x22{left:244.959902pt;}
.x35{left:248.479901pt;}
.x36{left:257.119897pt;}
.x23{left:258.079897pt;}
.x11{left:274.079890pt;}
.x41{left:282.079958pt;}
.x24{left:287.519885pt;}
.x37{left:295.359882pt;}
.x25{left:299.199880pt;}
.x26{left:329.439868pt;}
.x3c{left:331.519867pt;}
.x43{left:333.599679pt;}
.x3e{left:340.960283pt;}
.x13{left:405.279302pt;}
.x27{left:409.277064pt;}
.x2d{left:417.919833pt;}
.x14{left:423.839153pt;}
.x2c{left:427.999829pt;}
.x18{left:432.479850pt;}
.x1e{left:441.920654pt;}
.x28{left:443.839822pt;}
.x19{left:462.559815pt;}
.x30{left:467.520000pt;}
.x39{left:469.279812pt;}
.x15{left:471.678076pt;}
.x31{left:484.800000pt;}
.x16{left:499.519800pt;}
.x9{left:503.679799pt;}
.x45{left:513.919794pt;}
.x2e{left:515.519794pt;}
.xb{left:517.599740pt;}
.x47{left:522.879791pt;}
.xa{left:524.159731pt;}
.x8{left:528.639789pt;}
.x49{left:533.120407pt;}
.xc{left:537.599685pt;}
.x4a{left:541.599783pt;}
.x46{left:544.959782pt;}
.x2b{left:571.839765pt;}
.x4d{left:575.359770pt;}
.x4e{left:579.519768pt;}
.x2a{left:581.759767pt;}
.xd{left:583.519726pt;}
.x1a{left:592.639763pt;}
.x4b{left:599.999760pt;}
.x2f{left:610.880000pt;}
.x48{left:619.359752pt;}
.x1b{left:624.639750pt;}
.x1c{left:631.839747pt;}
.x17{left:655.359738pt;}
.x3a{left:661.599937pt;}
.x4c{left:662.879735pt;}
.x38{left:668.319264pt;}
.x1d{left:692.479723pt;}
.x3b{left:696.479721pt;}
.x29{left:715.199564pt;}
}




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