
    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_41c9856c38d16dedab3abb45.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.164062;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_e9cb0d38812fcc69b6be4207.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.881836;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_eac95536c2b1e62d9b9c13c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.680664;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_fbc490b36e682f7f5390a7f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.007812;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-28.200000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.400000px;}
.v1{vertical-align:27.600000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.048000px;}
.ls0{letter-spacing:0.096000px;}
.ls7{letter-spacing:2.976000px;}
.ls6{letter-spacing:11.976000px;}
.ls9{letter-spacing:12.576000px;}
.ls8{letter-spacing:14.976000px;}
.ls5{letter-spacing:15.576000px;}
.ls3{letter-spacing:19.776000px;}
.ls4{letter-spacing:29.286000px;}
.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;}
}
.ws8{word-spacing:-30.432000px;}
.ws4{word-spacing:-26.628000px;}
.ws1{word-spacing:-22.824000px;}
.ws5{word-spacing:-19.020000px;}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.264000px;}
.ws6{word-spacing:-13.314000px;}
.ws7{word-spacing:-10.500000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-4.896000px;}
._1{margin-left:-3.264000px;}
._2{margin-left:-2.112000px;}
._4{margin-left:-1.056000px;}
._3{width:1.080000px;}
._7{width:2.580000px;}
._c{width:3.780000px;}
._5{width:5.100000px;}
._6{width:6.120000px;}
._8{width:8.100000px;}
._9{width:9.120000px;}
._17{width:10.248000px;}
._b{width:11.400000px;}
._14{width:12.744000px;}
._e{width:14.400000px;}
._12{width:15.624000px;}
._a{width:17.040000px;}
._f{width:18.504000px;}
._1b{width:19.632000px;}
._d{width:21.024000px;}
._1d{width:23.928000px;}
._16{width:25.248000px;}
._15{width:26.352000px;}
._1a{width:27.432000px;}
._18{width:28.704000px;}
._24{width:29.952000px;}
._22{width:31.920000px;}
._1e{width:33.168000px;}
._13{width:34.848000px;}
._1c{width:35.928000px;}
._1f{width:37.152000px;}
._2d{width:38.376000px;}
._21{width:39.576000px;}
._19{width:41.784000px;}
._10{width:43.632000px;}
._11{width:44.928000px;}
._20{width:48.024000px;}
._23{width:50.064000px;}
._2a{width:52.560000px;}
._27{width:61.272000px;}
._31{width:62.664000px;}
._30{width:63.792000px;}
._2b{width:75.720000px;}
._32{width:125.640000px;}
._25{width:137.448000px;}
._26{width:138.576000px;}
._2e{width:210.888000px;}
._29{width:217.944000px;}
._2f{width:423.576000px;}
._28{width:434.928000px;}
._2c{width:1007.352000px;}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(90,90,90);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:34.800000px;}
.fs5{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y25{bottom:110.191500px;}
.y24{bottom:157.891500px;}
.y133{bottom:159.091500px;}
.y7f{bottom:159.691500px;}
.yf4{bottom:163.291500px;}
.yd5{bottom:166.741500px;}
.y146{bottom:173.341500px;}
.y8f{bottom:173.491500px;}
.ye0{bottom:173.641500px;}
.y121{bottom:173.791500px;}
.y167{bottom:174.991500px;}
.y120{bottom:177.541500px;}
.y132{bottom:179.791500px;}
.y99{bottom:180.091500px;}
.y4f{bottom:180.841500px;}
.yb7{bottom:187.441500px;}
.y1a1{bottom:188.791500px;}
.y7e{bottom:191.191500px;}
.yf3{bottom:194.791500px;}
.y166{bottom:195.991500px;}
.y98{bottom:197.491500px;}
.yd4{bottom:198.241500px;}
.y23{bottom:204.841500px;}
.y8e{bottom:205.141500px;}
.y4e{bottom:205.291500px;}
.y11f{bottom:209.041500px;}
.y187{bottom:211.591500px;}
.y1a0{bottom:212.941500px;}
.y131{bottom:215.641500px;}
.y6b{bottom:215.791500px;}
.y165{bottom:216.991500px;}
.yb6{bottom:218.941500px;}
.y7d{bottom:222.691500px;}
.y22{bottom:226.141500px;}
.yf2{bottom:226.291500px;}
.yd3{bottom:229.741500px;}
.y186{bottom:235.741500px;}
.y145{bottom:236.341500px;}
.y8d{bottom:236.641500px;}
.y97{bottom:236.791500px;}
.y19f{bottom:237.091500px;}
.y11e{bottom:240.541500px;}
.y130{bottom:247.141500px;}
.y6a{bottom:247.291500px;}
.yb5{bottom:250.441500px;}
.y7c{bottom:254.191500px;}
.y4d{bottom:257.641500px;}
.yf1{bottom:257.791500px;}
.y164{bottom:258.991500px;}
.y185{bottom:259.891500px;}
.y19e{bottom:261.241500px;}
.yf7{bottom:264.991500px;}
.y21{bottom:265.591500px;}
.y8c{bottom:268.141500px;}
.y96{bottom:268.291500px;}
.yd2{bottom:271.141500px;}
.y11d{bottom:272.191500px;}
.y144{bottom:278.341500px;}
.y12f{bottom:278.641500px;}
.y69{bottom:278.791500px;}
.yb4{bottom:281.941500px;}
.y7b{bottom:285.691500px;}
.yd1{bottom:288.691500px;}
.y4c{bottom:289.141500px;}
.yf0{bottom:289.291500px;}
.yf6{bottom:289.441500px;}
.y163{bottom:290.491500px;}
.y20{bottom:291.841500px;}
.y184{bottom:296.791500px;}
.y8b{bottom:299.641500px;}
.yfd{bottom:299.791500px;}
.y11c{bottom:303.691500px;}
.yd0{bottom:306.091500px;}
.y19d{bottom:309.541500px;}
.y143{bottom:309.841500px;}
.y12e{bottom:310.141500px;}
.y68{bottom:310.291500px;}
.yb3{bottom:313.441500px;}
.y7a{bottom:317.191500px;}
.y1f{bottom:317.941500px;}
.y4b{bottom:320.641500px;}
.yef{bottom:320.791500px;}
.y183{bottom:320.941500px;}
.y162{bottom:321.991500px;}
.ycf{bottom:323.641500px;}
.y8a{bottom:331.141500px;}
.yfc{bottom:331.291500px;}
.y19c{bottom:333.691500px;}
.y11b{bottom:335.191500px;}
.yce{bottom:341.041500px;}
.y142{bottom:341.341500px;}
.y12d{bottom:341.641500px;}
.y67{bottom:341.791500px;}
.y1e{bottom:344.191500px;}
.yb2{bottom:344.941500px;}
.y182{bottom:345.091500px;}
.y79{bottom:348.691500px;}
.y4a{bottom:352.141500px;}
.ycd{bottom:358.591500px;}
.y161{bottom:358.891500px;}
.y89{bottom:362.641500px;}
.yee{bottom:362.791500px;}
.y11a{bottom:366.691500px;}
.y181{bottom:369.241500px;}
.y1d{bottom:370.291500px;}
.y19b{bottom:370.591500px;}
.y141{bottom:372.841500px;}
.y12c{bottom:373.141500px;}
.y66{bottom:373.291500px;}
.ycc{bottom:375.991500px;}
.yb1{bottom:376.441500px;}
.y78{bottom:380.191500px;}
.y160{bottom:383.041500px;}
.y49{bottom:383.641500px;}
.y103{bottom:383.791500px;}
.y180{bottom:393.391500px;}
.ycb{bottom:393.541500px;}
.y88{bottom:394.141500px;}
.yed{bottom:394.291500px;}
.y19a{bottom:394.741500px;}
.y1c{bottom:396.541500px;}
.y119{bottom:398.191500px;}
.y12b{bottom:404.641500px;}
.y65{bottom:404.791500px;}
.y15f{bottom:407.191500px;}
.yb0{bottom:407.941500px;}
.yca{bottom:410.941500px;}
.y77{bottom:411.691500px;}
.y140{bottom:414.841500px;}
.y48{bottom:415.141500px;}
.y102{bottom:415.291500px;}
.y17f{bottom:417.541500px;}
.y199{bottom:418.891500px;}
.y1b{bottom:422.641500px;}
.y87{bottom:425.641500px;}
.yec{bottom:425.791500px;}
.y118{bottom:429.691500px;}
.y12a{bottom:436.141500px;}
.y64{bottom:436.291500px;}
.yaf{bottom:439.441500px;}
.y76{bottom:443.191500px;}
.y15e{bottom:444.091500px;}
.y13f{bottom:446.341500px;}
.y47{bottom:446.641500px;}
.y101{bottom:446.791500px;}
.y1a{bottom:448.891500px;}
.yc9{bottom:450.241500px;}
.y17e{bottom:454.441500px;}
.y198{bottom:455.791500px;}
.y86{bottom:457.141500px;}
.yeb{bottom:457.291500px;}
.y129{bottom:467.641500px;}
.y63{bottom:467.791500px;}
.ydf{bottom:467.941500px;}
.y15d{bottom:468.241500px;}
.yae{bottom:470.941500px;}
.y117{bottom:471.691500px;}
.y75{bottom:474.691500px;}
.y19{bottom:474.991500px;}
.y46{bottom:478.141500px;}
.y100{bottom:478.291500px;}
.y17d{bottom:478.591500px;}
.y197{bottom:479.941500px;}
.y13e{bottom:488.341500px;}
.y85{bottom:488.641500px;}
.yea{bottom:488.791500px;}
.yc8{bottom:492.241500px;}
.y128{bottom:499.141500px;}
.y62{bottom:499.291500px;}
.y18{bottom:501.241500px;}
.y17c{bottom:502.741500px;}
.y116{bottom:503.191500px;}
.y74{bottom:506.191500px;}
.y45{bottom:509.641500px;}
.yff{bottom:509.791500px;}
.y15c{bottom:510.241500px;}
.yad{bottom:512.941500px;}
.y196{bottom:516.841500px;}
.y13d{bottom:519.841500px;}
.y84{bottom:520.141500px;}
.yde{bottom:520.291500px;}
.yc7{bottom:523.741500px;}
.y17b{bottom:526.891500px;}
.y17{bottom:527.341500px;}
.y61{bottom:530.791500px;}
.y115{bottom:534.691500px;}
.y73{bottom:537.691500px;}
.y195{bottom:540.991500px;}
.y44{bottom:541.141500px;}
.yfe{bottom:541.291500px;}
.y15b{bottom:541.741500px;}
.yac{bottom:544.441500px;}
.y13c{bottom:551.341500px;}
.y83{bottom:551.641500px;}
.ydd{bottom:551.791500px;}
.y16{bottom:553.591500px;}
.yc6{bottom:555.241500px;}
.y60{bottom:562.291500px;}
.y17a{bottom:563.791500px;}
.y194{bottom:565.141500px;}
.y114{bottom:566.191500px;}
.y72{bottom:569.191500px;}
.y43{bottom:572.641500px;}
.yf5{bottom:572.791500px;}
.y15a{bottom:573.241500px;}
.yab{bottom:575.941500px;}
.y15{bottom:579.691500px;}
.y13b{bottom:582.841500px;}
.y82{bottom:583.141500px;}
.ydc{bottom:583.291500px;}
.yc5{bottom:586.741500px;}
.y179{bottom:587.941500px;}
.y193{bottom:589.291500px;}
.ye9{bottom:593.791500px;}
.y113{bottom:597.691500px;}
.y71{bottom:600.691500px;}
.y42{bottom:604.141500px;}
.y5f{bottom:604.291500px;}
.y159{bottom:604.741500px;}
.y14{bottom:605.941500px;}
.yaa{bottom:607.441500px;}
.y178{bottom:612.091500px;}
.y13a{bottom:614.341500px;}
.y81{bottom:614.641500px;}
.ydb{bottom:614.791500px;}
.yc4{bottom:618.241500px;}
.y13{bottom:624.091500px;}
.ye8{bottom:625.291500px;}
.y192{bottom:626.191500px;}
.y112{bottom:629.191500px;}
.y5e{bottom:635.791500px;}
.y177{bottom:636.241500px;}
.ya9{bottom:638.941500px;}
.y70{bottom:642.691500px;}
.y127{bottom:645.691500px;}
.y139{bottom:645.841500px;}
.y41{bottom:646.141500px;}
.yda{bottom:646.291500px;}
.y158{bottom:646.741500px;}
.yc3{bottom:649.741500px;}
.y191{bottom:650.341500px;}
.ye7{bottom:656.791500px;}
.y176{bottom:660.391500px;}
.y111{bottom:660.691500px;}
.y126{bottom:663.091500px;}
.y5d{bottom:667.291500px;}
.ya8{bottom:670.441500px;}
.y6f{bottom:674.191500px;}
.y190{bottom:674.491500px;}
.y40{bottom:677.641500px;}
.yd9{bottom:677.791500px;}
.y157{bottom:678.241500px;}
.y125{bottom:680.641500px;}
.yc2{bottom:681.241500px;}
.y138{bottom:687.841500px;}
.yfb{bottom:688.291500px;}
.y110{bottom:692.191500px;}
.y12{bottom:693.241500px;}
.y175{bottom:697.291500px;}
.y124{bottom:698.041500px;}
.y18f{bottom:698.641500px;}
.y95{bottom:698.791500px;}
.ya7{bottom:701.941500px;}
.y6e{bottom:705.691500px;}
.y11{bottom:709.141500px;}
.y5c{bottom:709.291500px;}
.y156{bottom:709.741500px;}
.yc1{bottom:712.741500px;}
.y123{bottom:715.591500px;}
.y137{bottom:719.341500px;}
.yfa{bottom:719.791500px;}
.y80{bottom:719.941500px;}
.y174{bottom:721.441500px;}
.y10{bottom:725.191500px;}
.y34{bottom:725.641500px;}
.y94{bottom:730.291500px;}
.y122{bottom:732.991500px;}
.y10f{bottom:734.191500px;}
.y3f{bottom:740.641500px;}
.y5b{bottom:740.791500px;}
.yf{bottom:741.091500px;}
.y155{bottom:741.241500px;}
.ya6{bottom:743.491500px;}
.yc0{bottom:744.241500px;}
.y173{bottom:745.591500px;}
.y33{bottom:746.941500px;}
.y136{bottom:750.841500px;}
.yf9{bottom:751.291500px;}
.y6d{bottom:751.441500px;}
.y14b{bottom:758.491500px;}
.ye{bottom:759.691500px;}
.ya5{bottom:760.891500px;}
.y93{bottom:761.791500px;}
.y10e{bottom:765.691500px;}
.y172{bottom:769.741500px;}
.y18e{bottom:771.091500px;}
.y3e{bottom:772.141500px;}
.y5a{bottom:772.291500px;}
.ybf{bottom:775.741500px;}
.ya4{bottom:778.441500px;}
.y135{bottom:782.341500px;}
.yf8{bottom:782.791500px;}
.y154{bottom:783.241500px;}
.y32{bottom:786.391500px;}
.y14a{bottom:789.991500px;}
.y92{bottom:793.291500px;}
.y18d{bottom:795.241500px;}
.ya3{bottom:795.841500px;}
.y10d{bottom:797.191500px;}
.y59{bottom:803.791500px;}
.yd{bottom:804.991500px;}
.y171{bottom:806.641500px;}
.ybe{bottom:807.241500px;}
.y31{bottom:812.641500px;}
.ya2{bottom:813.391500px;}
.y3d{bottom:814.141500px;}
.yd8{bottom:814.291500px;}
.y153{bottom:814.741500px;}
.yc{bottom:821.041500px;}
.ye6{bottom:824.791500px;}
.y134{bottom:824.941500px;}
.y10c{bottom:828.691500px;}
.y170{bottom:830.791500px;}
.y149{bottom:831.991500px;}
.y58{bottom:835.291500px;}
.yb{bottom:836.941500px;}
.y30{bottom:838.741500px;}
.y18c{bottom:843.541500px;}
.y3c{bottom:845.641500px;}
.yd7{bottom:845.791500px;}
.y152{bottom:846.241500px;}
.ybd{bottom:849.241500px;}
.ya1{bottom:852.541500px;}
.ya{bottom:852.991500px;}
.y16f{bottom:854.941500px;}
.ye5{bottom:856.291500px;}
.y10b{bottom:860.191500px;}
.y148{bottom:863.491500px;}
.y2f{bottom:864.991500px;}
.y57{bottom:866.791500px;}
.y18b{bottom:867.691500px;}
.y9{bottom:868.891500px;}
.y3b{bottom:877.141500px;}
.yd6{bottom:877.291500px;}
.y151{bottom:877.741500px;}
.ybc{bottom:880.741500px;}
.ya0{bottom:884.041500px;}
.y8{bottom:884.941500px;}
.y147{bottom:885.241500px;}
.ye4{bottom:887.791500px;}
.y2e{bottom:891.091500px;}
.y10a{bottom:891.691500px;}
.y16e{bottom:891.841500px;}
.y56{bottom:898.291500px;}
.y7{bottom:900.841500px;}
.y3a{bottom:908.641500px;}
.y91{bottom:908.791500px;}
.y150{bottom:909.241500px;}
.ybb{bottom:912.241500px;}
.y9f{bottom:915.541500px;}
.y16d{bottom:915.991500px;}
.y2d{bottom:917.341500px;}
.ye3{bottom:919.291500px;}
.y6{bottom:919.441500px;}
.y109{bottom:923.191500px;}
.y18a{bottom:928.741500px;}
.y55{bottom:929.791500px;}
.y39{bottom:940.141500px;}
.y90{bottom:940.291500px;}
.y2c{bottom:943.441500px;}
.yba{bottom:943.741500px;}
.y9e{bottom:947.041500px;}
.y14f{bottom:951.241500px;}
.y189{bottom:952.891500px;}
.y54{bottom:961.291500px;}
.y16c{bottom:964.291500px;}
.y108{bottom:965.191500px;}
.y2b{bottom:969.691500px;}
.y5{bottom:970.141500px;}
.y38{bottom:971.641500px;}
.y6c{bottom:971.791500px;}
.y188{bottom:977.041500px;}
.y9d{bottom:978.541500px;}
.y14e{bottom:982.741500px;}
.y16b{bottom:988.441500px;}
.yb9{bottom:989.491500px;}
.ye2{bottom:992.791500px;}
.y4{bottom:994.291500px;}
.y2a{bottom:995.791500px;}
.y107{bottom:996.691500px;}
.y37{bottom:1003.141500px;}
.y53{bottom:1003.291500px;}
.y9c{bottom:1010.041500px;}
.y1a3{bottom:1012.591500px;}
.yb8{bottom:1013.941500px;}
.y14d{bottom:1014.241500px;}
.y29{bottom:1022.041500px;}
.ye1{bottom:1024.291500px;}
.y16a{bottom:1025.341500px;}
.y106{bottom:1028.191500px;}
.y36{bottom:1034.641500px;}
.y52{bottom:1034.791500px;}
.y1a2{bottom:1036.741500px;}
.y3{bottom:1040.491500px;}
.y9b{bottom:1041.541500px;}
.y14c{bottom:1045.741500px;}
.y28{bottom:1048.141500px;}
.y169{bottom:1049.491500px;}
.y51{bottom:1066.291500px;}
.y2{bottom:1068.391500px;}
.y105{bottom:1070.491500px;}
.y168{bottom:1073.641500px;}
.y27{bottom:1074.391500px;}
.y35{bottom:1076.941500px;}
.y9a{bottom:1083.091500px;}
.y104{bottom:1094.941500px;}
.y50{bottom:1097.791500px;}
.y26{bottom:1100.491500px;}
.ha{height:27.993164px;}
.h5{height:44.554688px;}
.h7{height:47.988281px;}
.h6{height:55.693359px;}
.h9{height:55.702148px;}
.h4{height:66.832031px;}
.h8{height:77.970703px;}
.h3{height:89.109375px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.950000px;}
.x9{left:132.000000px;}
.x8{left:135.600000px;}
.x6{left:142.050000px;}
.x1{left:145.050000px;}
.x2{left:150.450000px;}
.x7{left:156.000000px;}
.xc{left:158.250000px;}
.xd{left:163.200000px;}
.x11{left:170.250000px;}
.x10{left:212.850000px;}
.x4{left:272.100000px;}
.xa{left:399.150000px;}
.xb{left:597.600000px;}
.x5{left:611.250000px;}
.xe{left:626.700000px;}
.x12{left:724.650000px;}
.xf{left:733.650000px;}
@media print{
.v3{vertical-align:-25.066667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.800000pt;}
.v1{vertical-align:24.533333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.042667pt;}
.ls0{letter-spacing:0.085333pt;}
.ls7{letter-spacing:2.645333pt;}
.ls6{letter-spacing:10.645333pt;}
.ls9{letter-spacing:11.178667pt;}
.ls8{letter-spacing:13.312000pt;}
.ls5{letter-spacing:13.845333pt;}
.ls3{letter-spacing:17.578667pt;}
.ls4{letter-spacing:26.032000pt;}
.ws8{word-spacing:-27.050667pt;}
.ws4{word-spacing:-23.669333pt;}
.ws1{word-spacing:-20.288000pt;}
.ws5{word-spacing:-16.906667pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.568000pt;}
.ws6{word-spacing:-11.834667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-4.352000pt;}
._1{margin-left:-2.901333pt;}
._2{margin-left:-1.877333pt;}
._4{margin-left:-0.938667pt;}
._3{width:0.960000pt;}
._7{width:2.293333pt;}
._c{width:3.360000pt;}
._5{width:4.533333pt;}
._6{width:5.440000pt;}
._8{width:7.200000pt;}
._9{width:8.106667pt;}
._17{width:9.109333pt;}
._b{width:10.133333pt;}
._14{width:11.328000pt;}
._e{width:12.800000pt;}
._12{width:13.888000pt;}
._a{width:15.146667pt;}
._f{width:16.448000pt;}
._1b{width:17.450667pt;}
._d{width:18.688000pt;}
._1d{width:21.269333pt;}
._16{width:22.442667pt;}
._15{width:23.424000pt;}
._1a{width:24.384000pt;}
._18{width:25.514667pt;}
._24{width:26.624000pt;}
._22{width:28.373333pt;}
._1e{width:29.482667pt;}
._13{width:30.976000pt;}
._1c{width:31.936000pt;}
._1f{width:33.024000pt;}
._2d{width:34.112000pt;}
._21{width:35.178667pt;}
._19{width:37.141333pt;}
._10{width:38.784000pt;}
._11{width:39.936000pt;}
._20{width:42.688000pt;}
._23{width:44.501333pt;}
._2a{width:46.720000pt;}
._27{width:54.464000pt;}
._31{width:55.701333pt;}
._30{width:56.704000pt;}
._2b{width:67.306667pt;}
._32{width:111.680000pt;}
._25{width:122.176000pt;}
._26{width:123.178667pt;}
._2e{width:187.456000pt;}
._29{width:193.728000pt;}
._2f{width:376.512000pt;}
._28{width:386.602667pt;}
._2c{width:895.424000pt;}
.fs6{font-size:30.933333pt;}
.fs5{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y25{bottom:97.948000pt;}
.y24{bottom:140.348000pt;}
.y133{bottom:141.414667pt;}
.y7f{bottom:141.948000pt;}
.yf4{bottom:145.148000pt;}
.yd5{bottom:148.214667pt;}
.y146{bottom:154.081333pt;}
.y8f{bottom:154.214667pt;}
.ye0{bottom:154.348000pt;}
.y121{bottom:154.481333pt;}
.y167{bottom:155.548000pt;}
.y120{bottom:157.814667pt;}
.y132{bottom:159.814667pt;}
.y99{bottom:160.081333pt;}
.y4f{bottom:160.748000pt;}
.yb7{bottom:166.614667pt;}
.y1a1{bottom:167.814667pt;}
.y7e{bottom:169.948000pt;}
.yf3{bottom:173.148000pt;}
.y166{bottom:174.214667pt;}
.y98{bottom:175.548000pt;}
.yd4{bottom:176.214667pt;}
.y23{bottom:182.081333pt;}
.y8e{bottom:182.348000pt;}
.y4e{bottom:182.481333pt;}
.y11f{bottom:185.814667pt;}
.y187{bottom:188.081333pt;}
.y1a0{bottom:189.281333pt;}
.y131{bottom:191.681333pt;}
.y6b{bottom:191.814667pt;}
.y165{bottom:192.881333pt;}
.yb6{bottom:194.614667pt;}
.y7d{bottom:197.948000pt;}
.y22{bottom:201.014667pt;}
.yf2{bottom:201.148000pt;}
.yd3{bottom:204.214667pt;}
.y186{bottom:209.548000pt;}
.y145{bottom:210.081333pt;}
.y8d{bottom:210.348000pt;}
.y97{bottom:210.481333pt;}
.y19f{bottom:210.748000pt;}
.y11e{bottom:213.814667pt;}
.y130{bottom:219.681333pt;}
.y6a{bottom:219.814667pt;}
.yb5{bottom:222.614667pt;}
.y7c{bottom:225.948000pt;}
.y4d{bottom:229.014667pt;}
.yf1{bottom:229.148000pt;}
.y164{bottom:230.214667pt;}
.y185{bottom:231.014667pt;}
.y19e{bottom:232.214667pt;}
.yf7{bottom:235.548000pt;}
.y21{bottom:236.081333pt;}
.y8c{bottom:238.348000pt;}
.y96{bottom:238.481333pt;}
.yd2{bottom:241.014667pt;}
.y11d{bottom:241.948000pt;}
.y144{bottom:247.414667pt;}
.y12f{bottom:247.681333pt;}
.y69{bottom:247.814667pt;}
.yb4{bottom:250.614667pt;}
.y7b{bottom:253.948000pt;}
.yd1{bottom:256.614667pt;}
.y4c{bottom:257.014667pt;}
.yf0{bottom:257.148000pt;}
.yf6{bottom:257.281333pt;}
.y163{bottom:258.214667pt;}
.y20{bottom:259.414667pt;}
.y184{bottom:263.814667pt;}
.y8b{bottom:266.348000pt;}
.yfd{bottom:266.481333pt;}
.y11c{bottom:269.948000pt;}
.yd0{bottom:272.081333pt;}
.y19d{bottom:275.148000pt;}
.y143{bottom:275.414667pt;}
.y12e{bottom:275.681333pt;}
.y68{bottom:275.814667pt;}
.yb3{bottom:278.614667pt;}
.y7a{bottom:281.948000pt;}
.y1f{bottom:282.614667pt;}
.y4b{bottom:285.014667pt;}
.yef{bottom:285.148000pt;}
.y183{bottom:285.281333pt;}
.y162{bottom:286.214667pt;}
.ycf{bottom:287.681333pt;}
.y8a{bottom:294.348000pt;}
.yfc{bottom:294.481333pt;}
.y19c{bottom:296.614667pt;}
.y11b{bottom:297.948000pt;}
.yce{bottom:303.148000pt;}
.y142{bottom:303.414667pt;}
.y12d{bottom:303.681333pt;}
.y67{bottom:303.814667pt;}
.y1e{bottom:305.948000pt;}
.yb2{bottom:306.614667pt;}
.y182{bottom:306.748000pt;}
.y79{bottom:309.948000pt;}
.y4a{bottom:313.014667pt;}
.ycd{bottom:318.748000pt;}
.y161{bottom:319.014667pt;}
.y89{bottom:322.348000pt;}
.yee{bottom:322.481333pt;}
.y11a{bottom:325.948000pt;}
.y181{bottom:328.214667pt;}
.y1d{bottom:329.148000pt;}
.y19b{bottom:329.414667pt;}
.y141{bottom:331.414667pt;}
.y12c{bottom:331.681333pt;}
.y66{bottom:331.814667pt;}
.ycc{bottom:334.214667pt;}
.yb1{bottom:334.614667pt;}
.y78{bottom:337.948000pt;}
.y160{bottom:340.481333pt;}
.y49{bottom:341.014667pt;}
.y103{bottom:341.148000pt;}
.y180{bottom:349.681333pt;}
.ycb{bottom:349.814667pt;}
.y88{bottom:350.348000pt;}
.yed{bottom:350.481333pt;}
.y19a{bottom:350.881333pt;}
.y1c{bottom:352.481333pt;}
.y119{bottom:353.948000pt;}
.y12b{bottom:359.681333pt;}
.y65{bottom:359.814667pt;}
.y15f{bottom:361.948000pt;}
.yb0{bottom:362.614667pt;}
.yca{bottom:365.281333pt;}
.y77{bottom:365.948000pt;}
.y140{bottom:368.748000pt;}
.y48{bottom:369.014667pt;}
.y102{bottom:369.148000pt;}
.y17f{bottom:371.148000pt;}
.y199{bottom:372.348000pt;}
.y1b{bottom:375.681333pt;}
.y87{bottom:378.348000pt;}
.yec{bottom:378.481333pt;}
.y118{bottom:381.948000pt;}
.y12a{bottom:387.681333pt;}
.y64{bottom:387.814667pt;}
.yaf{bottom:390.614667pt;}
.y76{bottom:393.948000pt;}
.y15e{bottom:394.748000pt;}
.y13f{bottom:396.748000pt;}
.y47{bottom:397.014667pt;}
.y101{bottom:397.148000pt;}
.y1a{bottom:399.014667pt;}
.yc9{bottom:400.214667pt;}
.y17e{bottom:403.948000pt;}
.y198{bottom:405.148000pt;}
.y86{bottom:406.348000pt;}
.yeb{bottom:406.481333pt;}
.y129{bottom:415.681333pt;}
.y63{bottom:415.814667pt;}
.ydf{bottom:415.948000pt;}
.y15d{bottom:416.214667pt;}
.yae{bottom:418.614667pt;}
.y117{bottom:419.281333pt;}
.y75{bottom:421.948000pt;}
.y19{bottom:422.214667pt;}
.y46{bottom:425.014667pt;}
.y100{bottom:425.148000pt;}
.y17d{bottom:425.414667pt;}
.y197{bottom:426.614667pt;}
.y13e{bottom:434.081333pt;}
.y85{bottom:434.348000pt;}
.yea{bottom:434.481333pt;}
.yc8{bottom:437.548000pt;}
.y128{bottom:443.681333pt;}
.y62{bottom:443.814667pt;}
.y18{bottom:445.548000pt;}
.y17c{bottom:446.881333pt;}
.y116{bottom:447.281333pt;}
.y74{bottom:449.948000pt;}
.y45{bottom:453.014667pt;}
.yff{bottom:453.148000pt;}
.y15c{bottom:453.548000pt;}
.yad{bottom:455.948000pt;}
.y196{bottom:459.414667pt;}
.y13d{bottom:462.081333pt;}
.y84{bottom:462.348000pt;}
.yde{bottom:462.481333pt;}
.yc7{bottom:465.548000pt;}
.y17b{bottom:468.348000pt;}
.y17{bottom:468.748000pt;}
.y61{bottom:471.814667pt;}
.y115{bottom:475.281333pt;}
.y73{bottom:477.948000pt;}
.y195{bottom:480.881333pt;}
.y44{bottom:481.014667pt;}
.yfe{bottom:481.148000pt;}
.y15b{bottom:481.548000pt;}
.yac{bottom:483.948000pt;}
.y13c{bottom:490.081333pt;}
.y83{bottom:490.348000pt;}
.ydd{bottom:490.481333pt;}
.y16{bottom:492.081333pt;}
.yc6{bottom:493.548000pt;}
.y60{bottom:499.814667pt;}
.y17a{bottom:501.148000pt;}
.y194{bottom:502.348000pt;}
.y114{bottom:503.281333pt;}
.y72{bottom:505.948000pt;}
.y43{bottom:509.014667pt;}
.yf5{bottom:509.148000pt;}
.y15a{bottom:509.548000pt;}
.yab{bottom:511.948000pt;}
.y15{bottom:515.281333pt;}
.y13b{bottom:518.081333pt;}
.y82{bottom:518.348000pt;}
.ydc{bottom:518.481333pt;}
.yc5{bottom:521.548000pt;}
.y179{bottom:522.614667pt;}
.y193{bottom:523.814667pt;}
.ye9{bottom:527.814667pt;}
.y113{bottom:531.281333pt;}
.y71{bottom:533.948000pt;}
.y42{bottom:537.014667pt;}
.y5f{bottom:537.148000pt;}
.y159{bottom:537.548000pt;}
.y14{bottom:538.614667pt;}
.yaa{bottom:539.948000pt;}
.y178{bottom:544.081333pt;}
.y13a{bottom:546.081333pt;}
.y81{bottom:546.348000pt;}
.ydb{bottom:546.481333pt;}
.yc4{bottom:549.548000pt;}
.y13{bottom:554.748000pt;}
.ye8{bottom:555.814667pt;}
.y192{bottom:556.614667pt;}
.y112{bottom:559.281333pt;}
.y5e{bottom:565.148000pt;}
.y177{bottom:565.548000pt;}
.ya9{bottom:567.948000pt;}
.y70{bottom:571.281333pt;}
.y127{bottom:573.948000pt;}
.y139{bottom:574.081333pt;}
.y41{bottom:574.348000pt;}
.yda{bottom:574.481333pt;}
.y158{bottom:574.881333pt;}
.yc3{bottom:577.548000pt;}
.y191{bottom:578.081333pt;}
.ye7{bottom:583.814667pt;}
.y176{bottom:587.014667pt;}
.y111{bottom:587.281333pt;}
.y126{bottom:589.414667pt;}
.y5d{bottom:593.148000pt;}
.ya8{bottom:595.948000pt;}
.y6f{bottom:599.281333pt;}
.y190{bottom:599.548000pt;}
.y40{bottom:602.348000pt;}
.yd9{bottom:602.481333pt;}
.y157{bottom:602.881333pt;}
.y125{bottom:605.014667pt;}
.yc2{bottom:605.548000pt;}
.y138{bottom:611.414667pt;}
.yfb{bottom:611.814667pt;}
.y110{bottom:615.281333pt;}
.y12{bottom:616.214667pt;}
.y175{bottom:619.814667pt;}
.y124{bottom:620.481333pt;}
.y18f{bottom:621.014667pt;}
.y95{bottom:621.148000pt;}
.ya7{bottom:623.948000pt;}
.y6e{bottom:627.281333pt;}
.y11{bottom:630.348000pt;}
.y5c{bottom:630.481333pt;}
.y156{bottom:630.881333pt;}
.yc1{bottom:633.548000pt;}
.y123{bottom:636.081333pt;}
.y137{bottom:639.414667pt;}
.yfa{bottom:639.814667pt;}
.y80{bottom:639.948000pt;}
.y174{bottom:641.281333pt;}
.y10{bottom:644.614667pt;}
.y34{bottom:645.014667pt;}
.y94{bottom:649.148000pt;}
.y122{bottom:651.548000pt;}
.y10f{bottom:652.614667pt;}
.y3f{bottom:658.348000pt;}
.y5b{bottom:658.481333pt;}
.yf{bottom:658.748000pt;}
.y155{bottom:658.881333pt;}
.ya6{bottom:660.881333pt;}
.yc0{bottom:661.548000pt;}
.y173{bottom:662.748000pt;}
.y33{bottom:663.948000pt;}
.y136{bottom:667.414667pt;}
.yf9{bottom:667.814667pt;}
.y6d{bottom:667.948000pt;}
.y14b{bottom:674.214667pt;}
.ye{bottom:675.281333pt;}
.ya5{bottom:676.348000pt;}
.y93{bottom:677.148000pt;}
.y10e{bottom:680.614667pt;}
.y172{bottom:684.214667pt;}
.y18e{bottom:685.414667pt;}
.y3e{bottom:686.348000pt;}
.y5a{bottom:686.481333pt;}
.ybf{bottom:689.548000pt;}
.ya4{bottom:691.948000pt;}
.y135{bottom:695.414667pt;}
.yf8{bottom:695.814667pt;}
.y154{bottom:696.214667pt;}
.y32{bottom:699.014667pt;}
.y14a{bottom:702.214667pt;}
.y92{bottom:705.148000pt;}
.y18d{bottom:706.881333pt;}
.ya3{bottom:707.414667pt;}
.y10d{bottom:708.614667pt;}
.y59{bottom:714.481333pt;}
.yd{bottom:715.548000pt;}
.y171{bottom:717.014667pt;}
.ybe{bottom:717.548000pt;}
.y31{bottom:722.348000pt;}
.ya2{bottom:723.014667pt;}
.y3d{bottom:723.681333pt;}
.yd8{bottom:723.814667pt;}
.y153{bottom:724.214667pt;}
.yc{bottom:729.814667pt;}
.ye6{bottom:733.148000pt;}
.y134{bottom:733.281333pt;}
.y10c{bottom:736.614667pt;}
.y170{bottom:738.481333pt;}
.y149{bottom:739.548000pt;}
.y58{bottom:742.481333pt;}
.yb{bottom:743.948000pt;}
.y30{bottom:745.548000pt;}
.y18c{bottom:749.814667pt;}
.y3c{bottom:751.681333pt;}
.yd7{bottom:751.814667pt;}
.y152{bottom:752.214667pt;}
.ybd{bottom:754.881333pt;}
.ya1{bottom:757.814667pt;}
.ya{bottom:758.214667pt;}
.y16f{bottom:759.948000pt;}
.ye5{bottom:761.148000pt;}
.y10b{bottom:764.614667pt;}
.y148{bottom:767.548000pt;}
.y2f{bottom:768.881333pt;}
.y57{bottom:770.481333pt;}
.y18b{bottom:771.281333pt;}
.y9{bottom:772.348000pt;}
.y3b{bottom:779.681333pt;}
.yd6{bottom:779.814667pt;}
.y151{bottom:780.214667pt;}
.ybc{bottom:782.881333pt;}
.ya0{bottom:785.814667pt;}
.y8{bottom:786.614667pt;}
.y147{bottom:786.881333pt;}
.ye4{bottom:789.148000pt;}
.y2e{bottom:792.081333pt;}
.y10a{bottom:792.614667pt;}
.y16e{bottom:792.748000pt;}
.y56{bottom:798.481333pt;}
.y7{bottom:800.748000pt;}
.y3a{bottom:807.681333pt;}
.y91{bottom:807.814667pt;}
.y150{bottom:808.214667pt;}
.ybb{bottom:810.881333pt;}
.y9f{bottom:813.814667pt;}
.y16d{bottom:814.214667pt;}
.y2d{bottom:815.414667pt;}
.ye3{bottom:817.148000pt;}
.y6{bottom:817.281333pt;}
.y109{bottom:820.614667pt;}
.y18a{bottom:825.548000pt;}
.y55{bottom:826.481333pt;}
.y39{bottom:835.681333pt;}
.y90{bottom:835.814667pt;}
.y2c{bottom:838.614667pt;}
.yba{bottom:838.881333pt;}
.y9e{bottom:841.814667pt;}
.y14f{bottom:845.548000pt;}
.y189{bottom:847.014667pt;}
.y54{bottom:854.481333pt;}
.y16c{bottom:857.148000pt;}
.y108{bottom:857.948000pt;}
.y2b{bottom:861.948000pt;}
.y5{bottom:862.348000pt;}
.y38{bottom:863.681333pt;}
.y6c{bottom:863.814667pt;}
.y188{bottom:868.481333pt;}
.y9d{bottom:869.814667pt;}
.y14e{bottom:873.548000pt;}
.y16b{bottom:878.614667pt;}
.yb9{bottom:879.548000pt;}
.ye2{bottom:882.481333pt;}
.y4{bottom:883.814667pt;}
.y2a{bottom:885.148000pt;}
.y107{bottom:885.948000pt;}
.y37{bottom:891.681333pt;}
.y53{bottom:891.814667pt;}
.y9c{bottom:897.814667pt;}
.y1a3{bottom:900.081333pt;}
.yb8{bottom:901.281333pt;}
.y14d{bottom:901.548000pt;}
.y29{bottom:908.481333pt;}
.ye1{bottom:910.481333pt;}
.y16a{bottom:911.414667pt;}
.y106{bottom:913.948000pt;}
.y36{bottom:919.681333pt;}
.y52{bottom:919.814667pt;}
.y1a2{bottom:921.548000pt;}
.y3{bottom:924.881333pt;}
.y9b{bottom:925.814667pt;}
.y14c{bottom:929.548000pt;}
.y28{bottom:931.681333pt;}
.y169{bottom:932.881333pt;}
.y51{bottom:947.814667pt;}
.y2{bottom:949.681333pt;}
.y105{bottom:951.548000pt;}
.y168{bottom:954.348000pt;}
.y27{bottom:955.014667pt;}
.y35{bottom:957.281333pt;}
.y9a{bottom:962.748000pt;}
.y104{bottom:973.281333pt;}
.y50{bottom:975.814667pt;}
.y26{bottom:978.214667pt;}
.ha{height:24.882812pt;}
.h5{height:39.604167pt;}
.h7{height:42.656250pt;}
.h6{height:49.505208pt;}
.h9{height:49.513021pt;}
.h4{height:59.406250pt;}
.h8{height:69.307292pt;}
.h3{height:79.208333pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.733333pt;}
.x9{left:117.333333pt;}
.x8{left:120.533333pt;}
.x6{left:126.266667pt;}
.x1{left:128.933333pt;}
.x2{left:133.733333pt;}
.x7{left:138.666667pt;}
.xc{left:140.666667pt;}
.xd{left:145.066667pt;}
.x11{left:151.333333pt;}
.x10{left:189.200000pt;}
.x4{left:241.866667pt;}
.xa{left:354.800000pt;}
.xb{left:531.200000pt;}
.x5{left:543.333333pt;}
.xe{left:557.066667pt;}
.x12{left:644.133333pt;}
.xf{left:652.133333pt;}
}




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