
    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_fb40ce46db18ccfea261e55e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.891000;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_c103b0bff16a264772bcdfc6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.940000;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_ed343db9c031d7f209113ab8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.489000;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_97eadec0d0d59191f7ee2aae.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.146000;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_242183793f21cc16530c61a8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.089000;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_9e940bf18a0e43256332cda9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.987000;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_dd6d323fdf78541ff105e67d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.998000;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_367423531153beaf3d626d16.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982000;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_6dcac1a58e55ecc52763fa87.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.858000;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_2bf858a6e9ea7bce500ce1df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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:ffb;src:url('chunks/assets/font_e032562bdfe39dd611136760.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.693000;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:ffc;src:url('chunks/assets/font_c219dc1b87e22ddf6de22599.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666000;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:ffd;src:url('chunks/assets/font_d5691803df6a5d4693238945.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v4{vertical-align:-21.978000px;}
.v6{vertical-align:-19.954200px;}
.v2{vertical-align:-17.982000px;}
.v7{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.976000px;}
.v5{vertical-align:21.986400px;}
.v1{vertical-align:23.976000px;}
.v8{vertical-align:27.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000109px;}
.ls1{letter-spacing:0.000240px;}
.ls4{letter-spacing:0.198000px;}
.ls5{letter-spacing:0.264000px;}
.ls2{letter-spacing:5.676000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws62{word-spacing:-15.000000px;}
.ws1{word-spacing:-12.600000px;}
.ws2{word-spacing:-10.494000px;}
.ws2b{word-spacing:-9.619500px;}
.ws2d{word-spacing:-8.745000px;}
.ws3{word-spacing:-7.870500px;}
.ws16{word-spacing:-3.168000px;}
.ws44{word-spacing:-2.970000px;}
.ws52{word-spacing:-2.838000px;}
.ws27{word-spacing:-2.772000px;}
.ws39{word-spacing:-2.640000px;}
.ws40{word-spacing:-2.574000px;}
.ws4b{word-spacing:-2.376000px;}
.ws31{word-spacing:-2.310000px;}
.ws41{word-spacing:-2.244000px;}
.ws42{word-spacing:-2.178000px;}
.ws3d{word-spacing:-1.914000px;}
.ws25{word-spacing:-1.716000px;}
.ws45{word-spacing:-1.650000px;}
.ws9{word-spacing:-1.566000px;}
.ws33{word-spacing:-1.452000px;}
.ws34{word-spacing:-1.188000px;}
.ws24{word-spacing:-1.122000px;}
.ws3c{word-spacing:-0.924000px;}
.ws6{word-spacing:-0.918000px;}
.wsd{word-spacing:-0.810000px;}
.ws4e{word-spacing:-0.726000px;}
.ws5d{word-spacing:-0.672000px;}
.ws30{word-spacing:-0.660000px;}
.ws49{word-spacing:-0.066000px;}
.ws4{word-spacing:0.000000px;}
.ws5b{word-spacing:0.198000px;}
.ws51{word-spacing:0.264000px;}
.ws2a{word-spacing:0.330000px;}
.wsb{word-spacing:0.378000px;}
.ws10{word-spacing:0.396000px;}
.ws3f{word-spacing:0.792000px;}
.ws1a{word-spacing:0.924000px;}
.ws28{word-spacing:1.056000px;}
.ws32{word-spacing:1.188000px;}
.ws35{word-spacing:1.320000px;}
.ws1f{word-spacing:1.386000px;}
.ws4a{word-spacing:1.518000px;}
.wsa{word-spacing:1.782000px;}
.ws26{word-spacing:1.848000px;}
.ws37{word-spacing:2.112000px;}
.ws4f{word-spacing:2.442000px;}
.wsc{word-spacing:2.484000px;}
.ws58{word-spacing:2.508000px;}
.ws2f{word-spacing:2.706000px;}
.ws11{word-spacing:2.970000px;}
.ws48{word-spacing:3.168000px;}
.ws5f{word-spacing:3.432000px;}
.ws12{word-spacing:3.498000px;}
.ws1c{word-spacing:3.564000px;}
.ws18{word-spacing:3.696000px;}
.ws53{word-spacing:3.762000px;}
.ws8{word-spacing:3.888000px;}
.ws57{word-spacing:3.894000px;}
.ws47{word-spacing:3.960000px;}
.ws1b{word-spacing:4.092000px;}
.ws38{word-spacing:4.158000px;}
.ws15{word-spacing:4.290000px;}
.ws3e{word-spacing:4.422000px;}
.ws21{word-spacing:4.620000px;}
.ws3a{word-spacing:4.752000px;}
.ws43{word-spacing:4.884000px;}
.ws2e{word-spacing:4.950000px;}
.wsf{word-spacing:5.082000px;}
.ws17{word-spacing:5.214000px;}
.ws14{word-spacing:5.346000px;}
.ws20{word-spacing:5.412000px;}
.ws4c{word-spacing:5.610000px;}
.ws29{word-spacing:5.742000px;}
.ws56{word-spacing:5.874000px;}
.ws60{word-spacing:6.138000px;}
.ws46{word-spacing:6.204000px;}
.ws36{word-spacing:6.336000px;}
.wse{word-spacing:6.468000px;}
.ws55{word-spacing:6.534000px;}
.ws4d{word-spacing:6.666000px;}
.ws22{word-spacing:6.732000px;}
.ws19{word-spacing:6.798000px;}
.ws13{word-spacing:6.864000px;}
.ws5e{word-spacing:6.930000px;}
.ws5{word-spacing:7.614000px;}
.ws54{word-spacing:7.656000px;}
.ws1d{word-spacing:7.854000px;}
.ws7{word-spacing:8.316000px;}
.ws5a{word-spacing:8.382000px;}
.ws61{word-spacing:9.108000px;}
.ws3b{word-spacing:9.306000px;}
.ws1e{word-spacing:9.636000px;}
.ws2c{word-spacing:11.880000px;}
.ws23{word-spacing:13.398000px;}
.ws59{word-spacing:15.708000px;}
.ws5c{word-spacing:320.598000px;}
.ws50{word-spacing:741.096000px;}
._3{margin-left:-6.633000px;}
._6{margin-left:-5.373000px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.024000px;}
._0{margin-left:-1.350480px;}
._4{width:1.188000px;}
._5{width:234.630000px;}
.fc1{color:rgb(0,1,1);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:27.984000px;}
.fs6{font-size:31.482000px;}
.fsb{font-size:34.980000px;}
.fs9{font-size:36.000000px;}
.fsa{font-size:38.478000px;}
.fs4{font-size:41.976000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:50.400000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:38.795100px;}
.y1e{bottom:91.156200px;}
.y51{bottom:91.834050px;}
.yae{bottom:92.343900px;}
.y6a{bottom:94.988100px;}
.y15a{bottom:95.778750px;}
.y50{bottom:105.334050px;}
.yad{bottom:110.043900px;}
.y159{bottom:110.778750px;}
.y1d{bottom:112.606200px;}
.y14e{bottom:112.810350px;}
.y4f{bottom:118.834050px;}
.y69{bottom:123.834600px;}
.y8b{bottom:124.420350px;}
.y12c{bottom:125.093550px;}
.y158{bottom:125.778750px;}
.y14d{bottom:131.260350px;}
.y1c{bottom:133.000200px;}
.y157{bottom:140.778750px;}
.yfc{bottom:141.948000px;}
.y8a{bottom:141.970350px;}
.y68{bottom:142.284600px;}
.yac{bottom:144.753900px;}
.y12b{bottom:146.098050px;}
.y14c{bottom:149.710350px;}
.yd3{bottom:151.482450px;}
.y1b{bottom:153.394200px;}
.y89{bottom:159.520350px;}
.yab{bottom:162.453900px;}
.yfb{bottom:163.398000px;}
.yd1{bottom:164.982450px;}
.y12a{bottom:167.102550px;}
.y1a{bottom:173.788200px;}
.y67{bottom:177.744600px;}
.yd0{bottom:178.482450px;}
.yaa{bottom:180.153900px;}
.yfa{bottom:184.848000px;}
.y14b{bottom:187.660350px;}
.y129{bottom:188.107050px;}
.yd2{bottom:191.982450px;}
.y88{bottom:194.080350px;}
.ya9{bottom:197.853900px;}
.y19{bottom:202.692150px;}
.y14a{bottom:206.110350px;}
.yf9{bottom:206.298000px;}
.y3f{bottom:208.060800px;}
.y128{bottom:209.111550px;}
.y87{bottom:211.630350px;}
.y66{bottom:213.204600px;}
.ycd{bottom:214.626450px;}
.ycf{bottom:216.462450px;}
.ya8{bottom:224.027850px;}
.y149{bottom:224.560350px;}
.yf8{bottom:227.748000px;}
.ycc{bottom:228.126450px;}
.y86{bottom:229.180350px;}
.y3e{bottom:229.510800px;}
.yce{bottom:229.962450px;}
.y127{bottom:230.116050px;}
.y65{bottom:231.654600px;}
.y148{bottom:243.010350px;}
.ya7{bottom:244.735350px;}
.y85{bottom:246.730350px;}
.yf7{bottom:249.198000px;}
.y64{bottom:250.104600px;}
.ycb{bottom:250.770450px;}
.y3d{bottom:250.960800px;}
.y126{bottom:251.120550px;}
.yca{bottom:264.270450px;}
.ya6{bottom:265.442850px;}
.yf6{bottom:270.648000px;}
.y125{bottom:272.125050px;}
.y3c{bottom:272.410800px;}
.y84{bottom:272.739300px;}
.y147{bottom:276.085350px;}
.yc9{bottom:277.770450px;}
.y18{bottom:284.473200px;}
.y63{bottom:285.564600px;}
.ya5{bottom:286.150350px;}
.yc8{bottom:291.270450px;}
.yf5{bottom:292.098000px;}
.y124{bottom:293.129550px;}
.y83{bottom:293.743800px;}
.y3b{bottom:293.860800px;}
.y146{bottom:294.535350px;}
.y17{bottom:299.471700px;}
.y4e{bottom:303.600150px;}
.y62{bottom:304.014600px;}
.ya4{bottom:306.857850px;}
.yc7{bottom:312.078300px;}
.y145{bottom:312.985350px;}
.yf4{bottom:313.548000px;}
.y123{bottom:314.134050px;}
.y82{bottom:314.748300px;}
.y3a{bottom:315.310800px;}
.y61{bottom:322.464600px;}
.y4d{bottom:324.901650px;}
.y16{bottom:327.227550px;}
.yf3{bottom:334.998000px;}
.y81{bottom:335.752800px;}
.ya3{bottom:336.061800px;}
.y39{bottom:336.760800px;}
.y122{bottom:343.638000px;}
.y4c{bottom:345.906150px;}
.y144{bottom:347.980350px;}
.y60{bottom:349.418550px;}
.yc6{bottom:351.442050px;}
.yf2{bottom:356.448000px;}
.y80{bottom:356.757300px;}
.y38{bottom:358.210800px;}
.y15{bottom:369.514500px;}
.y5f{bottom:370.868550px;}
.yc5{bottom:372.892050px;}
.y7f{bottom:377.761800px;}
.yf1{bottom:377.898000px;}
.y37{bottom:379.660800px;}
.y143{bottom:382.975350px;}
.y14{bottom:386.011500px;}
.y5e{bottom:392.318550px;}
.yc4{bottom:394.342050px;}
.ya2{bottom:396.427050px;}
.y4b{bottom:397.414050px;}
.y7e{bottom:398.766300px;}
.yf0{bottom:399.348000px;}
.y36{bottom:401.110800px;}
.y13{bottom:402.508500px;}
.y121{bottom:408.430350px;}
.y4a{bottom:410.914050px;}
.y5d{bottom:413.768550px;}
.ya1{bottom:417.431550px;}
.y12{bottom:419.005500px;}
.y142{bottom:419.020350px;}
.y7d{bottom:419.770800px;}
.yef{bottom:420.798000px;}
.y120{bottom:421.930350px;}
.y35{bottom:422.560800px;}
.yc3{bottom:424.285350px;}
.y49{bottom:424.414050px;}
.y5c{bottom:435.218550px;}
.y11{bottom:435.502500px;}
.y141{bottom:437.470350px;}
.ya0{bottom:438.139050px;}
.y7c{bottom:440.775300px;}
.yee{bottom:442.248000px;}
.y34{bottom:444.010800px;}
.y10{bottom:451.999500px;}
.y140{bottom:455.920350px;}
.y5b{bottom:456.668550px;}
.y9f{bottom:458.846550px;}
.yc2{bottom:459.745350px;}
.y7b{bottom:461.779800px;}
.yed{bottom:463.698000px;}
.y33{bottom:465.460800px;}
.yf{bottom:468.496500px;}
.y13f{bottom:474.370350px;}
.y11f{bottom:474.814350px;}
.yc1{bottom:478.195350px;}
.y9e{bottom:479.554050px;}
.y7a{bottom:482.784300px;}
.ye{bottom:484.993500px;}
.yec{bottom:485.148000px;}
.y5a{bottom:486.620400px;}
.y32{bottom:486.910800px;}
.y11d{bottom:488.314350px;}
.y13e{bottom:492.820350px;}
.y9d{bottom:500.261550px;}
.yd{bottom:501.490500px;}
.y11c{bottom:501.814350px;}
.y59{bottom:505.070400px;}
.yeb{bottom:506.598000px;}
.y31{bottom:508.360800px;}
.y13d{bottom:511.270350px;}
.y79{bottom:512.288250px;}
.yc0{bottom:513.655350px;}
.y11b{bottom:515.314350px;}
.yc{bottom:517.987500px;}
.y9c{bottom:520.969050px;}
.y58{bottom:523.520400px;}
.yea{bottom:528.048000px;}
.y11e{bottom:528.814350px;}
.y30{bottom:529.810800px;}
.ybf{bottom:532.105350px;}
.y9b{bottom:541.676550px;}
.yb{bottom:547.243350px;}
.y13c{bottom:549.220350px;}
.ye9{bottom:549.498000px;}
.y11a{bottom:549.622350px;}
.y2f{bottom:551.260800px;}
.y57{bottom:558.980400px;}
.y9a{bottom:562.384050px;}
.y119{bottom:563.122350px;}
.ybe{bottom:567.565350px;}
.y13b{bottom:567.670350px;}
.ye8{bottom:570.948000px;}
.y2e{bottom:572.710800px;}
.y78{bottom:572.785350px;}
.y118{bottom:576.622350px;}
.y56{bottom:577.430400px;}
.y99{bottom:583.091550px;}
.ybd{bottom:586.015350px;}
.y13a{bottom:586.120350px;}
.y117{bottom:590.122350px;}
.ye7{bottom:592.398000px;}
.y77{bottom:594.235350px;}
.y55{bottom:595.880400px;}
.y2d{bottom:602.664750px;}
.y116{bottom:603.622350px;}
.y98{bottom:603.799050px;}
.ybc{bottom:604.465350px;}
.y139{bottom:604.570350px;}
.ye6{bottom:613.848000px;}
.y54{bottom:614.330400px;}
.y76{bottom:615.239850px;}
.y48{bottom:616.060800px;}
.y115{bottom:617.122350px;}
.y2c{bottom:620.664750px;}
.ybb{bottom:622.915350px;}
.y97{bottom:624.506550px;}
.y114{bottom:630.622350px;}
.y138{bottom:632.770350px;}
.y53{bottom:632.780400px;}
.y75{bottom:636.244350px;}
.y47{bottom:637.065300px;}
.yba{bottom:641.365350px;}
.ye5{bottom:643.801950px;}
.y113{bottom:644.122350px;}
.y96{bottom:645.214050px;}
.y137{bottom:651.220350px;}
.y74{bottom:657.248850px;}
.y112{bottom:657.622350px;}
.y46{bottom:658.069800px;}
.y52{bottom:659.734350px;}
.yb9{bottom:659.815350px;}
.ye4{bottom:661.801950px;}
.y3{bottom:663.330750px;}
.y107{bottom:664.366350px;}
.y95{bottom:665.921550px;}
.y111{bottom:671.122350px;}
.y106{bottom:677.866350px;}
.y73{bottom:678.253350px;}
.yb8{bottom:678.265350px;}
.y45{bottom:679.074300px;}
.y2b{bottom:681.184350px;}
.y110{bottom:684.622350px;}
.y94{bottom:686.629050px;}
.y136{bottom:689.170350px;}
.y2{bottom:690.330750px;}
.y10f{bottom:698.122350px;}
.y72{bottom:699.257850px;}
.y44{bottom:700.078800px;}
.y2a{bottom:702.634350px;}
.y93{bottom:707.336550px;}
.y135{bottom:707.620350px;}
.y10e{bottom:711.622350px;}
.yb7{bottom:713.725350px;}
.y156{bottom:719.282700px;}
.y43{bottom:721.083300px;}
.y29{bottom:724.084350px;}
.y10d{bottom:725.122350px;}
.y134{bottom:726.070350px;}
.y92{bottom:728.044050px;}
.y71{bottom:728.761800px;}
.ye3{bottom:730.828350px;}
.yb6{bottom:732.175350px;}
.y155{bottom:737.732700px;}
.y10c{bottom:738.622350px;}
.ye2{bottom:744.328350px;}
.y133{bottom:744.520350px;}
.y28{bottom:745.534350px;}
.y70{bottom:746.761800px;}
.y91{bottom:748.751550px;}
.yb5{bottom:750.625350px;}
.y10b{bottom:752.122350px;}
.y154{bottom:756.182700px;}
.y10a{bottom:765.622350px;}
.y27{bottom:766.984350px;}
.y42{bottom:767.335350px;}
.yb4{bottom:769.075350px;}
.y90{bottom:769.459050px;}
.y132{bottom:772.720350px;}
.y109{bottom:779.122350px;}
.y41{bottom:780.835350px;}
.yb3{bottom:787.525350px;}
.y26{bottom:788.434350px;}
.ya{bottom:788.878350px;}
.ye1{bottom:789.712350px;}
.y8f{bottom:790.166550px;}
.y131{bottom:791.170350px;}
.y108{bottom:792.622350px;}
.y153{bottom:794.132700px;}
.y40{bottom:794.335350px;}
.ydd{bottom:796.456350px;}
.ye0{bottom:803.212350px;}
.y9{bottom:803.878350px;}
.yb2{bottom:805.975350px;}
.y6f{bottom:807.272550px;}
.y25{bottom:809.884350px;}
.ydc{bottom:809.956350px;}
.y8e{bottom:810.874050px;}
.y152{bottom:812.582700px;}
.y105{bottom:813.418350px;}
.ydf{bottom:816.712350px;}
.y101{bottom:820.162350px;}
.y8{bottom:823.372350px;}
.ydb{bottom:823.456350px;}
.y130{bottom:824.245350px;}
.y104{bottom:826.918350px;}
.y6e{bottom:828.277050px;}
.yde{bottom:830.212350px;}
.y151{bottom:831.032700px;}
.y24{bottom:831.334350px;}
.y8d{bottom:831.581550px;}
.y100{bottom:833.662350px;}
.y103{bottom:840.418350px;}
.yb1{bottom:841.435350px;}
.y7{bottom:842.383800px;}
.y12f{bottom:842.695350px;}
.yff{bottom:847.162350px;}
.y6d{bottom:849.281550px;}
.y150{bottom:849.482700px;}
.yda{bottom:852.112350px;}
.y23{bottom:852.784350px;}
.y102{bottom:853.918350px;}
.yd6{bottom:858.316350px;}
.y6{bottom:858.880800px;}
.yb0{bottom:859.885350px;}
.y8c{bottom:860.785350px;}
.y12e{bottom:861.145350px;}
.yd9{bottom:865.612350px;}
.yd5{bottom:871.816350px;}
.y22{bottom:874.234350px;}
.y14f{bottom:877.682700px;}
.yfe{bottom:878.201850px;}
.yaf{bottom:878.335350px;}
.y6c{bottom:878.785350px;}
.yd8{bottom:879.112350px;}
.y5{bottom:879.632700px;}
.yfd{bottom:884.951850px;}
.yd4{bottom:885.316350px;}
.yd7{bottom:892.612350px;}
.y21{bottom:895.684350px;}
.y4{bottom:896.132700px;}
.y6b{bottom:896.785350px;}
.y12d{bottom:899.479500px;}
.y1f{bottom:951.905700px;}
.y20{bottom:971.390700px;}
.h6{height:23.359644px;}
.h11{height:24.000000px;}
.hc{height:24.552000px;}
.hb{height:26.244000px;}
.h2{height:32.544000px;}
.h13{height:35.616000px;}
.h15{height:35.664000px;}
.h12{height:37.476000px;}
.hd{height:39.984000px;}
.h9{height:40.122000px;}
.h7{height:41.335644px;}
.h8{height:41.640000px;}
.h5{height:44.982000px;}
.he{height:49.980000px;}
.h10{height:50.005800px;}
.hf{height:50.036862px;}
.ha{height:54.978000px;}
.h4{height:64.080000px;}
.h14{height:64.476000px;}
.h3{height:74.952000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:106.299150px;}
.x26{left:112.493700px;}
.x18{left:114.736500px;}
.x15{left:118.707300px;}
.x1a{left:121.588500px;}
.x1f{left:123.065700px;}
.x17{left:125.128500px;}
.x4{left:127.559100px;}
.x19{left:128.992500px;}
.x1b{left:131.866650px;}
.x16{left:134.344500px;}
.x42{left:140.319150px;}
.x6{left:148.818900px;}
.x8{left:150.780450px;}
.x14{left:175.818900px;}
.x20{left:182.237700px;}
.x2e{left:186.953700px;}
.x29{left:190.625700px;}
.x2c{left:192.197700px;}
.x2b{left:193.469700px;}
.x10{left:194.823900px;}
.x12{left:197.481450px;}
.x2f{left:199.553700px;}
.x2{left:200.917950px;}
.x2a{left:202.505700px;}
.xd{left:204.651900px;}
.x2d{left:207.869700px;}
.x1d{left:214.034250px;}
.x27{left:216.053700px;}
.x3{left:217.630950px;}
.x28{left:220.829700px;}
.xc{left:224.524350px;}
.xf{left:235.275900px;}
.xe{left:237.543900px;}
.x11{left:241.587900px;}
.x40{left:246.485700px;}
.xb{left:265.780350px;}
.x13{left:282.381450px;}
.x1c{left:286.234650px;}
.x41{left:290.537700px;}
.x7{left:310.020600px;}
.x9{left:334.218450px;}
.x5{left:335.220150px;}
.x1{left:353.653500px;}
.x34{left:359.261700px;}
.x33{left:360.845700px;}
.x3d{left:361.985700px;}
.x36{left:363.029700px;}
.x21{left:364.673700px;}
.x3c{left:366.125700px;}
.x35{left:367.541700px;}
.x30{left:371.105700px;}
.x31{left:373.169700px;}
.x32{left:378.125700px;}
.x1e{left:396.230250px;}
.x3e{left:494.177700px;}
.x38{left:495.773700px;}
.x37{left:497.861700px;}
.x3b{left:499.193700px;}
.x3a{left:500.237700px;}
.x39{left:501.677700px;}
.x24{left:504.245700px;}
.x23{left:506.693700px;}
.x3f{left:509.741700px;}
.x25{left:511.757700px;}
.x22{left:515.741700px;}
@media print{
.v4{vertical-align:-19.536000pt;}
.v6{vertical-align:-17.737067pt;}
.v2{vertical-align:-15.984000pt;}
.v7{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.978667pt;}
.v5{vertical-align:19.543467pt;}
.v1{vertical-align:21.312000pt;}
.v8{vertical-align:24.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000097pt;}
.ls1{letter-spacing:0.000213pt;}
.ls4{letter-spacing:0.176000pt;}
.ls5{letter-spacing:0.234667pt;}
.ls2{letter-spacing:5.045333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws62{word-spacing:-13.333333pt;}
.ws1{word-spacing:-11.200000pt;}
.ws2{word-spacing:-9.328000pt;}
.ws2b{word-spacing:-8.550667pt;}
.ws2d{word-spacing:-7.773333pt;}
.ws3{word-spacing:-6.996000pt;}
.ws16{word-spacing:-2.816000pt;}
.ws44{word-spacing:-2.640000pt;}
.ws52{word-spacing:-2.522667pt;}
.ws27{word-spacing:-2.464000pt;}
.ws39{word-spacing:-2.346667pt;}
.ws40{word-spacing:-2.288000pt;}
.ws4b{word-spacing:-2.112000pt;}
.ws31{word-spacing:-2.053333pt;}
.ws41{word-spacing:-1.994667pt;}
.ws42{word-spacing:-1.936000pt;}
.ws3d{word-spacing:-1.701333pt;}
.ws25{word-spacing:-1.525333pt;}
.ws45{word-spacing:-1.466667pt;}
.ws9{word-spacing:-1.392000pt;}
.ws33{word-spacing:-1.290667pt;}
.ws34{word-spacing:-1.056000pt;}
.ws24{word-spacing:-0.997333pt;}
.ws3c{word-spacing:-0.821333pt;}
.ws6{word-spacing:-0.816000pt;}
.wsd{word-spacing:-0.720000pt;}
.ws4e{word-spacing:-0.645333pt;}
.ws5d{word-spacing:-0.597333pt;}
.ws30{word-spacing:-0.586667pt;}
.ws49{word-spacing:-0.058667pt;}
.ws4{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.176000pt;}
.ws51{word-spacing:0.234667pt;}
.ws2a{word-spacing:0.293333pt;}
.wsb{word-spacing:0.336000pt;}
.ws10{word-spacing:0.352000pt;}
.ws3f{word-spacing:0.704000pt;}
.ws1a{word-spacing:0.821333pt;}
.ws28{word-spacing:0.938667pt;}
.ws32{word-spacing:1.056000pt;}
.ws35{word-spacing:1.173333pt;}
.ws1f{word-spacing:1.232000pt;}
.ws4a{word-spacing:1.349333pt;}
.wsa{word-spacing:1.584000pt;}
.ws26{word-spacing:1.642667pt;}
.ws37{word-spacing:1.877333pt;}
.ws4f{word-spacing:2.170667pt;}
.wsc{word-spacing:2.208000pt;}
.ws58{word-spacing:2.229333pt;}
.ws2f{word-spacing:2.405333pt;}
.ws11{word-spacing:2.640000pt;}
.ws48{word-spacing:2.816000pt;}
.ws5f{word-spacing:3.050667pt;}
.ws12{word-spacing:3.109333pt;}
.ws1c{word-spacing:3.168000pt;}
.ws18{word-spacing:3.285333pt;}
.ws53{word-spacing:3.344000pt;}
.ws8{word-spacing:3.456000pt;}
.ws57{word-spacing:3.461333pt;}
.ws47{word-spacing:3.520000pt;}
.ws1b{word-spacing:3.637333pt;}
.ws38{word-spacing:3.696000pt;}
.ws15{word-spacing:3.813333pt;}
.ws3e{word-spacing:3.930667pt;}
.ws21{word-spacing:4.106667pt;}
.ws3a{word-spacing:4.224000pt;}
.ws43{word-spacing:4.341333pt;}
.ws2e{word-spacing:4.400000pt;}
.wsf{word-spacing:4.517333pt;}
.ws17{word-spacing:4.634667pt;}
.ws14{word-spacing:4.752000pt;}
.ws20{word-spacing:4.810667pt;}
.ws4c{word-spacing:4.986667pt;}
.ws29{word-spacing:5.104000pt;}
.ws56{word-spacing:5.221333pt;}
.ws60{word-spacing:5.456000pt;}
.ws46{word-spacing:5.514667pt;}
.ws36{word-spacing:5.632000pt;}
.wse{word-spacing:5.749333pt;}
.ws55{word-spacing:5.808000pt;}
.ws4d{word-spacing:5.925333pt;}
.ws22{word-spacing:5.984000pt;}
.ws19{word-spacing:6.042667pt;}
.ws13{word-spacing:6.101333pt;}
.ws5e{word-spacing:6.160000pt;}
.ws5{word-spacing:6.768000pt;}
.ws54{word-spacing:6.805333pt;}
.ws1d{word-spacing:6.981333pt;}
.ws7{word-spacing:7.392000pt;}
.ws5a{word-spacing:7.450667pt;}
.ws61{word-spacing:8.096000pt;}
.ws3b{word-spacing:8.272000pt;}
.ws1e{word-spacing:8.565333pt;}
.ws2c{word-spacing:10.560000pt;}
.ws23{word-spacing:11.909333pt;}
.ws59{word-spacing:13.962667pt;}
.ws5c{word-spacing:284.976000pt;}
.ws50{word-spacing:658.752000pt;}
._3{margin-left:-5.896000pt;}
._6{margin-left:-4.776000pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.688000pt;}
._0{margin-left:-1.200427pt;}
._4{width:1.056000pt;}
._5{width:208.560000pt;}
.fsc{font-size:24.874667pt;}
.fs6{font-size:27.984000pt;}
.fsb{font-size:31.093333pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:34.202667pt;}
.fs4{font-size:37.312000pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:44.800000pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:34.484533pt;}
.y1e{bottom:81.027733pt;}
.y51{bottom:81.630267pt;}
.yae{bottom:82.083467pt;}
.y6a{bottom:84.433867pt;}
.y15a{bottom:85.136667pt;}
.y50{bottom:93.630267pt;}
.yad{bottom:97.816800pt;}
.y159{bottom:98.470000pt;}
.y1d{bottom:100.094400pt;}
.y14e{bottom:100.275867pt;}
.y4f{bottom:105.630267pt;}
.y69{bottom:110.075200pt;}
.y8b{bottom:110.595867pt;}
.y12c{bottom:111.194267pt;}
.y158{bottom:111.803333pt;}
.y14d{bottom:116.675867pt;}
.y1c{bottom:118.222400pt;}
.y157{bottom:125.136667pt;}
.yfc{bottom:126.176000pt;}
.y8a{bottom:126.195867pt;}
.y68{bottom:126.475200pt;}
.yac{bottom:128.670133pt;}
.y12b{bottom:129.864933pt;}
.y14c{bottom:133.075867pt;}
.yd3{bottom:134.651067pt;}
.y1b{bottom:136.350400pt;}
.y89{bottom:141.795867pt;}
.yab{bottom:144.403467pt;}
.yfb{bottom:145.242667pt;}
.yd1{bottom:146.651067pt;}
.y12a{bottom:148.535600pt;}
.y1a{bottom:154.478400pt;}
.y67{bottom:157.995200pt;}
.yd0{bottom:158.651067pt;}
.yaa{bottom:160.136800pt;}
.yfa{bottom:164.309333pt;}
.y14b{bottom:166.809200pt;}
.y129{bottom:167.206267pt;}
.yd2{bottom:170.651067pt;}
.y88{bottom:172.515867pt;}
.ya9{bottom:175.870133pt;}
.y19{bottom:180.170800pt;}
.y14a{bottom:183.209200pt;}
.yf9{bottom:183.376000pt;}
.y3f{bottom:184.942933pt;}
.y128{bottom:185.876933pt;}
.y87{bottom:188.115867pt;}
.y66{bottom:189.515200pt;}
.ycd{bottom:190.779067pt;}
.ycf{bottom:192.411067pt;}
.ya8{bottom:199.135867pt;}
.y149{bottom:199.609200pt;}
.yf8{bottom:202.442667pt;}
.ycc{bottom:202.779067pt;}
.y86{bottom:203.715867pt;}
.y3e{bottom:204.009600pt;}
.yce{bottom:204.411067pt;}
.y127{bottom:204.547600pt;}
.y65{bottom:205.915200pt;}
.y148{bottom:216.009200pt;}
.ya7{bottom:217.542533pt;}
.y85{bottom:219.315867pt;}
.yf7{bottom:221.509333pt;}
.y64{bottom:222.315200pt;}
.ycb{bottom:222.907067pt;}
.y3d{bottom:223.076267pt;}
.y126{bottom:223.218267pt;}
.yca{bottom:234.907067pt;}
.ya6{bottom:235.949200pt;}
.yf6{bottom:240.576000pt;}
.y125{bottom:241.888933pt;}
.y3c{bottom:242.142933pt;}
.y84{bottom:242.434933pt;}
.y147{bottom:245.409200pt;}
.yc9{bottom:246.907067pt;}
.y18{bottom:252.865067pt;}
.y63{bottom:253.835200pt;}
.ya5{bottom:254.355867pt;}
.yc8{bottom:258.907067pt;}
.yf5{bottom:259.642667pt;}
.y124{bottom:260.559600pt;}
.y83{bottom:261.105600pt;}
.y3b{bottom:261.209600pt;}
.y146{bottom:261.809200pt;}
.y17{bottom:266.197067pt;}
.y4e{bottom:269.866800pt;}
.y62{bottom:270.235200pt;}
.ya4{bottom:272.762533pt;}
.yc7{bottom:277.402933pt;}
.y145{bottom:278.209200pt;}
.yf4{bottom:278.709333pt;}
.y123{bottom:279.230267pt;}
.y82{bottom:279.776267pt;}
.y3a{bottom:280.276267pt;}
.y61{bottom:286.635200pt;}
.y4d{bottom:288.801467pt;}
.y16{bottom:290.868933pt;}
.yf3{bottom:297.776000pt;}
.y81{bottom:298.446933pt;}
.ya3{bottom:298.721600pt;}
.y39{bottom:299.342933pt;}
.y122{bottom:305.456000pt;}
.y4c{bottom:307.472133pt;}
.y144{bottom:309.315867pt;}
.y60{bottom:310.594267pt;}
.yc6{bottom:312.392933pt;}
.yf2{bottom:316.842667pt;}
.y80{bottom:317.117600pt;}
.y38{bottom:318.409600pt;}
.y15{bottom:328.457333pt;}
.y5f{bottom:329.660933pt;}
.yc5{bottom:331.459600pt;}
.y7f{bottom:335.788267pt;}
.yf1{bottom:335.909333pt;}
.y37{bottom:337.476267pt;}
.y143{bottom:340.422533pt;}
.y14{bottom:343.121333pt;}
.y5e{bottom:348.727600pt;}
.yc4{bottom:350.526267pt;}
.ya2{bottom:352.379600pt;}
.y4b{bottom:353.256933pt;}
.y7e{bottom:354.458933pt;}
.yf0{bottom:354.976000pt;}
.y36{bottom:356.542933pt;}
.y13{bottom:357.785333pt;}
.y121{bottom:363.049200pt;}
.y4a{bottom:365.256933pt;}
.y5d{bottom:367.794267pt;}
.ya1{bottom:371.050267pt;}
.y12{bottom:372.449333pt;}
.y142{bottom:372.462533pt;}
.y7d{bottom:373.129600pt;}
.yef{bottom:374.042667pt;}
.y120{bottom:375.049200pt;}
.y35{bottom:375.609600pt;}
.yc3{bottom:377.142533pt;}
.y49{bottom:377.256933pt;}
.y5c{bottom:386.860933pt;}
.y11{bottom:387.113333pt;}
.y141{bottom:388.862533pt;}
.ya0{bottom:389.456933pt;}
.y7c{bottom:391.800267pt;}
.yee{bottom:393.109333pt;}
.y34{bottom:394.676267pt;}
.y10{bottom:401.777333pt;}
.y140{bottom:405.262533pt;}
.y5b{bottom:405.927600pt;}
.y9f{bottom:407.863600pt;}
.yc2{bottom:408.662533pt;}
.y7b{bottom:410.470933pt;}
.yed{bottom:412.176000pt;}
.y33{bottom:413.742933pt;}
.yf{bottom:416.441333pt;}
.y13f{bottom:421.662533pt;}
.y11f{bottom:422.057200pt;}
.yc1{bottom:425.062533pt;}
.y9e{bottom:426.270267pt;}
.y7a{bottom:429.141600pt;}
.ye{bottom:431.105333pt;}
.yec{bottom:431.242667pt;}
.y5a{bottom:432.551467pt;}
.y32{bottom:432.809600pt;}
.y11d{bottom:434.057200pt;}
.y13e{bottom:438.062533pt;}
.y9d{bottom:444.676933pt;}
.yd{bottom:445.769333pt;}
.y11c{bottom:446.057200pt;}
.y59{bottom:448.951467pt;}
.yeb{bottom:450.309333pt;}
.y31{bottom:451.876267pt;}
.y13d{bottom:454.462533pt;}
.y79{bottom:455.367333pt;}
.yc0{bottom:456.582533pt;}
.y11b{bottom:458.057200pt;}
.yc{bottom:460.433333pt;}
.y9c{bottom:463.083600pt;}
.y58{bottom:465.351467pt;}
.yea{bottom:469.376000pt;}
.y11e{bottom:470.057200pt;}
.y30{bottom:470.942933pt;}
.ybf{bottom:472.982533pt;}
.y9b{bottom:481.490267pt;}
.yb{bottom:486.438533pt;}
.y13c{bottom:488.195867pt;}
.ye9{bottom:488.442667pt;}
.y11a{bottom:488.553200pt;}
.y2f{bottom:490.009600pt;}
.y57{bottom:496.871467pt;}
.y9a{bottom:499.896933pt;}
.y119{bottom:500.553200pt;}
.ybe{bottom:504.502533pt;}
.y13b{bottom:504.595867pt;}
.ye8{bottom:507.509333pt;}
.y2e{bottom:509.076267pt;}
.y78{bottom:509.142533pt;}
.y118{bottom:512.553200pt;}
.y56{bottom:513.271467pt;}
.y99{bottom:518.303600pt;}
.ybd{bottom:520.902533pt;}
.y13a{bottom:520.995867pt;}
.y117{bottom:524.553200pt;}
.ye7{bottom:526.576000pt;}
.y77{bottom:528.209200pt;}
.y55{bottom:529.671467pt;}
.y2d{bottom:535.702000pt;}
.y116{bottom:536.553200pt;}
.y98{bottom:536.710267pt;}
.ybc{bottom:537.302533pt;}
.y139{bottom:537.395867pt;}
.ye6{bottom:545.642667pt;}
.y54{bottom:546.071467pt;}
.y76{bottom:546.879867pt;}
.y48{bottom:547.609600pt;}
.y115{bottom:548.553200pt;}
.y2c{bottom:551.702000pt;}
.ybb{bottom:553.702533pt;}
.y97{bottom:555.116933pt;}
.y114{bottom:560.553200pt;}
.y138{bottom:562.462533pt;}
.y53{bottom:562.471467pt;}
.y75{bottom:565.550533pt;}
.y47{bottom:566.280267pt;}
.yba{bottom:570.102533pt;}
.ye5{bottom:572.268400pt;}
.y113{bottom:572.553200pt;}
.y96{bottom:573.523600pt;}
.y137{bottom:578.862533pt;}
.y74{bottom:584.221200pt;}
.y112{bottom:584.553200pt;}
.y46{bottom:584.950933pt;}
.y52{bottom:586.430533pt;}
.yb9{bottom:586.502533pt;}
.ye4{bottom:588.268400pt;}
.y3{bottom:589.627333pt;}
.y107{bottom:590.547867pt;}
.y95{bottom:591.930267pt;}
.y111{bottom:596.553200pt;}
.y106{bottom:602.547867pt;}
.y73{bottom:602.891867pt;}
.yb8{bottom:602.902533pt;}
.y45{bottom:603.621600pt;}
.y2b{bottom:605.497200pt;}
.y110{bottom:608.553200pt;}
.y94{bottom:610.336933pt;}
.y136{bottom:612.595867pt;}
.y2{bottom:613.627333pt;}
.y10f{bottom:620.553200pt;}
.y72{bottom:621.562533pt;}
.y44{bottom:622.292267pt;}
.y2a{bottom:624.563867pt;}
.y93{bottom:628.743600pt;}
.y135{bottom:628.995867pt;}
.y10e{bottom:632.553200pt;}
.yb7{bottom:634.422533pt;}
.y156{bottom:639.362400pt;}
.y43{bottom:640.962933pt;}
.y29{bottom:643.630533pt;}
.y10d{bottom:644.553200pt;}
.y134{bottom:645.395867pt;}
.y92{bottom:647.150267pt;}
.y71{bottom:647.788267pt;}
.ye3{bottom:649.625200pt;}
.yb6{bottom:650.822533pt;}
.y155{bottom:655.762400pt;}
.y10c{bottom:656.553200pt;}
.ye2{bottom:661.625200pt;}
.y133{bottom:661.795867pt;}
.y28{bottom:662.697200pt;}
.y70{bottom:663.788267pt;}
.y91{bottom:665.556933pt;}
.yb5{bottom:667.222533pt;}
.y10b{bottom:668.553200pt;}
.y154{bottom:672.162400pt;}
.y10a{bottom:680.553200pt;}
.y27{bottom:681.763867pt;}
.y42{bottom:682.075867pt;}
.yb4{bottom:683.622533pt;}
.y90{bottom:683.963600pt;}
.y132{bottom:686.862533pt;}
.y109{bottom:692.553200pt;}
.y41{bottom:694.075867pt;}
.yb3{bottom:700.022533pt;}
.y26{bottom:700.830533pt;}
.ya{bottom:701.225200pt;}
.ye1{bottom:701.966533pt;}
.y8f{bottom:702.370267pt;}
.y131{bottom:703.262533pt;}
.y108{bottom:704.553200pt;}
.y153{bottom:705.895733pt;}
.y40{bottom:706.075867pt;}
.ydd{bottom:707.961200pt;}
.ye0{bottom:713.966533pt;}
.y9{bottom:714.558533pt;}
.yb2{bottom:716.422533pt;}
.y6f{bottom:717.575600pt;}
.y25{bottom:719.897200pt;}
.ydc{bottom:719.961200pt;}
.y8e{bottom:720.776933pt;}
.y152{bottom:722.295733pt;}
.y105{bottom:723.038533pt;}
.ydf{bottom:725.966533pt;}
.y101{bottom:729.033200pt;}
.y8{bottom:731.886533pt;}
.ydb{bottom:731.961200pt;}
.y130{bottom:732.662533pt;}
.y104{bottom:735.038533pt;}
.y6e{bottom:736.246267pt;}
.yde{bottom:737.966533pt;}
.y151{bottom:738.695733pt;}
.y24{bottom:738.963867pt;}
.y8d{bottom:739.183600pt;}
.y100{bottom:741.033200pt;}
.y103{bottom:747.038533pt;}
.yb1{bottom:747.942533pt;}
.y7{bottom:748.785600pt;}
.y12f{bottom:749.062533pt;}
.yff{bottom:753.033200pt;}
.y6d{bottom:754.916933pt;}
.y150{bottom:755.095733pt;}
.yda{bottom:757.433200pt;}
.y23{bottom:758.030533pt;}
.y102{bottom:759.038533pt;}
.yd6{bottom:762.947867pt;}
.y6{bottom:763.449600pt;}
.yb0{bottom:764.342533pt;}
.y8c{bottom:765.142533pt;}
.y12e{bottom:765.462533pt;}
.yd9{bottom:769.433200pt;}
.yd5{bottom:774.947867pt;}
.y22{bottom:777.097200pt;}
.y14f{bottom:780.162400pt;}
.yfe{bottom:780.623867pt;}
.yaf{bottom:780.742533pt;}
.y6c{bottom:781.142533pt;}
.yd8{bottom:781.433200pt;}
.y5{bottom:781.895733pt;}
.yfd{bottom:786.623867pt;}
.yd4{bottom:786.947867pt;}
.yd7{bottom:793.433200pt;}
.y21{bottom:796.163867pt;}
.y4{bottom:796.562400pt;}
.y6b{bottom:797.142533pt;}
.y12d{bottom:799.537333pt;}
.y1f{bottom:846.138400pt;}
.y20{bottom:863.458400pt;}
.h6{height:20.764128pt;}
.h11{height:21.333333pt;}
.hc{height:21.824000pt;}
.hb{height:23.328000pt;}
.h2{height:28.928000pt;}
.h13{height:31.658667pt;}
.h15{height:31.701333pt;}
.h12{height:33.312000pt;}
.hd{height:35.541333pt;}
.h9{height:35.664000pt;}
.h7{height:36.742795pt;}
.h8{height:37.013333pt;}
.h5{height:39.984000pt;}
.he{height:44.426667pt;}
.h10{height:44.449600pt;}
.hf{height:44.477211pt;}
.ha{height:48.869333pt;}
.h4{height:56.960000pt;}
.h14{height:57.312000pt;}
.h3{height:66.624000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:94.488133pt;}
.x26{left:99.994400pt;}
.x18{left:101.988000pt;}
.x15{left:105.517600pt;}
.x1a{left:108.078667pt;}
.x1f{left:109.391733pt;}
.x17{left:111.225333pt;}
.x4{left:113.385867pt;}
.x19{left:114.660000pt;}
.x1b{left:117.214800pt;}
.x16{left:119.417333pt;}
.x42{left:124.728133pt;}
.x6{left:132.283467pt;}
.x8{left:134.027067pt;}
.x14{left:156.283467pt;}
.x20{left:161.989067pt;}
.x2e{left:166.181067pt;}
.x29{left:169.445067pt;}
.x2c{left:170.842400pt;}
.x2b{left:171.973067pt;}
.x10{left:173.176800pt;}
.x12{left:175.539067pt;}
.x2f{left:177.381067pt;}
.x2{left:178.593733pt;}
.x2a{left:180.005067pt;}
.xd{left:181.912800pt;}
.x2d{left:184.773067pt;}
.x1d{left:190.252667pt;}
.x27{left:192.047733pt;}
.x3{left:193.449733pt;}
.x28{left:196.293067pt;}
.xc{left:199.577200pt;}
.xf{left:209.134133pt;}
.xe{left:211.150133pt;}
.x11{left:214.744800pt;}
.x40{left:219.098400pt;}
.xb{left:236.249200pt;}
.x13{left:251.005733pt;}
.x1c{left:254.430800pt;}
.x41{left:258.255733pt;}
.x7{left:275.573867pt;}
.x9{left:297.083067pt;}
.x5{left:297.973467pt;}
.x1{left:314.358667pt;}
.x34{left:319.343733pt;}
.x33{left:320.751733pt;}
.x3d{left:321.765067pt;}
.x36{left:322.693067pt;}
.x21{left:324.154400pt;}
.x3c{left:325.445067pt;}
.x35{left:326.703733pt;}
.x30{left:329.871733pt;}
.x31{left:331.706400pt;}
.x32{left:336.111733pt;}
.x1e{left:352.204667pt;}
.x3e{left:439.269067pt;}
.x38{left:440.687733pt;}
.x37{left:442.543733pt;}
.x3b{left:443.727733pt;}
.x3a{left:444.655733pt;}
.x39{left:445.935733pt;}
.x24{left:448.218400pt;}
.x23{left:450.394400pt;}
.x3f{left:453.103733pt;}
.x25{left:454.895733pt;}
.x22{left:458.437067pt;}
}




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