
    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_699f3019f508dde769c0775f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.766602;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_47ea281b2a4ef9bbcc739d64.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.977539;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_ac9619cc356b1b81640f63d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.800293;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_93428fcc2b90f69535dcba55.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172363;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_b21989cedc6cbcecb7516234.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_8e0a1ceb199ea28a071f150a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_8e5a0112a4678da694df856a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_09875f1884157e924c8b9244.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_ad5cfb869a635a8926863c49.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_588191b1bcfb6c93fe000101.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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_aec2fcf58689215220b7863d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_b947bd6cebd0ce09f4ba4cd8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls9{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.058320px;}
.ls8{letter-spacing:-0.000001px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.269400px;}
.ls11{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.720000px;}
.lsc{letter-spacing:4.320000px;}
.lse{letter-spacing:20.160000px;}
.ls14{letter-spacing:33.984000px;}
.ls13{letter-spacing:38.304000px;}
.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;}
}
.wsb{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.712000px;}
.ws3{word-spacing:-16.272000px;}
.ws9{word-spacing:-15.199800px;}
.ws4{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.447440px;}
.wsd{word-spacing:-12.329400px;}
.ws8{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
.wsa{word-spacing:128.900520px;}
._d{margin-left:-4.752000px;}
._c{margin-left:-3.744000px;}
._7{margin-left:-2.500858px;}
._0{margin-left:-1.243142px;}
._1{width:1.238842px;}
._3{width:2.592000px;}
._4{width:3.843475px;}
._6{width:5.635142px;}
._5{width:6.696000px;}
._9{width:8.328000px;}
._a{width:9.513158px;}
._b{width:10.884000px;}
._12{width:12.600000px;}
._e{width:14.040000px;}
._f{width:15.192000px;}
._13{width:16.939142px;}
._8{width:19.728000px;}
._16{width:21.492000px;}
._15{width:22.500000px;}
._18{width:23.688000px;}
._17{width:24.948000px;}
._1d{width:26.604000px;}
._1b{width:27.720000px;}
._1c{width:28.728000px;}
._19{width:29.880000px;}
._11{width:31.567142px;}
._10{width:33.048000px;}
._1e{width:37.512000px;}
._1f{width:39.132000px;}
._1a{width:139.368000px;}
._20{width:142.848000px;}
._2{width:146.082865px;}
._14{width:197.976000px;}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(0,176,240);}
.fc6{color:rgb(17,17,17);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs7{font-size:18.000000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs1{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.yd8{bottom:3.960000px;}
.yce{bottom:15.660000px;}
.yd0{bottom:15.840000px;}
.yd7{bottom:24.660000px;}
.y4{bottom:68.580000px;}
.yb3{bottom:112.896000px;}
.y37{bottom:120.816000px;}
.yfb{bottom:127.656000px;}
.y97{bottom:130.536000px;}
.yca{bottom:131.796000px;}
.y132{bottom:133.776000px;}
.y11a{bottom:133.956000px;}
.y185{bottom:136.116000px;}
.y59{bottom:139.356000px;}
.y36{bottom:141.516000px;}
.yb2{bottom:143.856000px;}
.y14d{bottom:147.456000px;}
.y79{bottom:149.616000px;}
.ydf{bottom:153.390000px;}
.yfa{bottom:158.610000px;}
.y96{bottom:161.490000px;}
.y35{bottom:162.210000px;}
.yc9{bottom:162.930000px;}
.y131{bottom:164.730000px;}
.y119{bottom:165.090000px;}
.y58{bottom:170.310000px;}
.yb1{bottom:174.990000px;}
.y184{bottom:177.870000px;}
.y14c{bottom:178.590000px;}
.y78{bottom:180.750000px;}
.y34{bottom:182.910000px;}
.y160{bottom:185.790000px;}
.yf9{bottom:189.750000px;}
.yc8{bottom:193.890000px;}
.y130{bottom:195.870000px;}
.y118{bottom:196.050000px;}
.y183{bottom:198.570000px;}
.y57{bottom:201.450000px;}
.y33{bottom:203.610000px;}
.yb0{bottom:205.950000px;}
.y15f{bottom:206.490000px;}
.y14b{bottom:209.550000px;}
.y77{bottom:211.710000px;}
.yde{bottom:212.790000px;}
.y95{bottom:213.510000px;}
.y182{bottom:219.270000px;}
.yf8{bottom:220.710000px;}
.y32{bottom:224.310000px;}
.yc7{bottom:225.030000px;}
.y12f{bottom:226.830000px;}
.y117{bottom:227.190000px;}
.y56{bottom:232.410000px;}
.yaf{bottom:237.090000px;}
.y181{bottom:239.970000px;}
.y14a{bottom:240.690000px;}
.y76{bottom:242.850000px;}
.y94{bottom:244.650000px;}
.y31{bottom:245.010000px;}
.y15e{bottom:247.890000px;}
.yf7{bottom:251.850000px;}
.yc6{bottom:255.990000px;}
.y12e{bottom:257.970000px;}
.y116{bottom:258.150000px;}
.y180{bottom:260.670000px;}
.y55{bottom:263.550000px;}
.y30{bottom:265.710000px;}
.yae{bottom:268.050000px;}
.y15d{bottom:268.590000px;}
.y149{bottom:271.650000px;}
.ydd{bottom:272.190000px;}
.yc5{bottom:273.630000px;}
.y75{bottom:273.810000px;}
.y93{bottom:275.610000px;}
.y17f{bottom:279.390000px;}
.yc4{bottom:281.910000px;}
.y2f{bottom:286.410000px;}
.y115{bottom:289.290000px;}
.y17e{bottom:291.630000px;}
.y54{bottom:294.510000px;}
.yad{bottom:299.190000px;}
.yf6{bottom:300.810000px;}
.yc3{bottom:302.610000px;}
.y148{bottom:302.790000px;}
.y74{bottom:304.950000px;}
.y92{bottom:306.750000px;}
.y2e{bottom:307.110000px;}
.y12d{bottom:309.990000px;}
.y17d{bottom:312.330000px;}
.y53{bottom:325.650000px;}
.y2d{bottom:327.810000px;}
.y114{bottom:327.990000px;}
.yac{bottom:330.150000px;}
.y15c{bottom:330.690000px;}
.ydc{bottom:331.590000px;}
.yf5{bottom:331.950000px;}
.yc2{bottom:333.750000px;}
.y73{bottom:335.910000px;}
.y91{bottom:337.755000px;}
.y12c{bottom:340.995000px;}
.y17c{bottom:341.715000px;}
.y113{bottom:348.015000px;}
.y2c{bottom:348.555000px;}
.y52{bottom:356.655000px;}
.yab{bottom:361.335000px;}
.y17b{bottom:362.415000px;}
.yf4{bottom:362.955000px;}
.y147{bottom:364.935000px;}
.y72{bottom:367.095000px;}
.y90{bottom:368.895000px;}
.y2b{bottom:369.255000px;}
.y12b{bottom:372.135000px;}
.y15b{bottom:372.315000px;}
.yc1{bottom:382.755000px;}
.y17a{bottom:383.115000px;}
.y112{bottom:387.435000px;}
.y51{bottom:387.795000px;}
.y2a{bottom:389.955000px;}
.ydb{bottom:391.035000px;}
.yaa{bottom:392.295000px;}
.yf3{bottom:394.095000px;}
.y146{bottom:395.895000px;}
.y71{bottom:398.055000px;}
.y8f{bottom:399.855000px;}
.y12a{bottom:403.095000px;}
.y179{bottom:403.815000px;}
.y111{bottom:404.715000px;}
.y29{bottom:410.655000px;}
.y15a{bottom:414.075000px;}
.y50{bottom:418.755000px;}
.y110{bottom:421.995000px;}
.y178{bottom:422.715000px;}
.ya9{bottom:423.435000px;}
.y145{bottom:427.035000px;}
.y70{bottom:429.195000px;}
.y8e{bottom:430.995000px;}
.y28{bottom:431.355000px;}
.yc0{bottom:431.895000px;}
.y159{bottom:434.775000px;}
.y177{bottom:434.955000px;}
.yf2{bottom:435.855000px;}
.y10f{bottom:439.275000px;}
.y4f{bottom:449.895000px;}
.yda{bottom:450.435000px;}
.y27{bottom:452.055000px;}
.ya8{bottom:454.395000px;}
.y129{bottom:455.295000px;}
.y158{bottom:455.475000px;}
.y176{bottom:455.655000px;}
.y10e{bottom:456.375000px;}
.y144{bottom:457.995000px;}
.y6f{bottom:460.155000px;}
.y8d{bottom:461.955000px;}
.yf1{bottom:466.995000px;}
.ybf{bottom:470.595000px;}
.y26{bottom:472.755000px;}
.y10d{bottom:473.655000px;}
.y157{bottom:476.175000px;}
.y175{bottom:476.355000px;}
.y4e{bottom:480.855000px;}
.ya7{bottom:485.355000px;}
.y128{bottom:486.255000px;}
.yd9{bottom:486.615000px;}
.y143{bottom:489.135000px;}
.y6e{bottom:491.295000px;}
.y8c{bottom:493.095000px;}
.y25{bottom:493.455000px;}
.y156{bottom:496.875000px;}
.y174{bottom:497.055000px;}
.yf0{bottom:497.955000px;}
.ybe{bottom:501.555000px;}
.y10c{bottom:502.095000px;}
.y4d{bottom:511.995000px;}
.y24{bottom:514.155000px;}
.ya6{bottom:516.495000px;}
.y127{bottom:517.395000px;}
.y155{bottom:517.575000px;}
.y173{bottom:517.755000px;}
.y142{bottom:520.095000px;}
.y6d{bottom:522.255000px;}
.y8b{bottom:524.055000px;}
.yef{bottom:528.915000px;}
.ybd{bottom:532.695000px;}
.y10b{bottom:533.055000px;}
.yd6{bottom:534.315000px;}
.y23{bottom:534.855000px;}
.y154{bottom:538.275000px;}
.y172{bottom:538.455000px;}
.y4c{bottom:542.955000px;}
.ya5{bottom:547.455000px;}
.y126{bottom:548.355000px;}
.y141{bottom:551.235000px;}
.y6c{bottom:553.395000px;}
.y8a{bottom:555.195000px;}
.y22{bottom:555.555000px;}
.y153{bottom:558.975000px;}
.y171{bottom:559.155000px;}
.yee{bottom:560.055000px;}
.ybc{bottom:563.655000px;}
.y4b{bottom:574.095000px;}
.y21{bottom:576.255000px;}
.y170{bottom:577.875000px;}
.ya4{bottom:578.595000px;}
.y125{bottom:579.495000px;}
.y152{bottom:579.675000px;}
.y10a{bottom:582.195000px;}
.y6b{bottom:584.355000px;}
.y89{bottom:586.155000px;}
.y16f{bottom:590.115000px;}
.yed{bottom:591.015000px;}
.ybb{bottom:594.795000px;}
.y20{bottom:596.955000px;}
.yd5{bottom:598.395000px;}
.y151{bottom:600.375000px;}
.y4a{bottom:605.085000px;}
.ya3{bottom:609.585000px;}
.y124{bottom:610.485000px;}
.y16e{bottom:610.845000px;}
.y140{bottom:613.365000px;}
.y7a{bottom:615.525000px;}
.y88{bottom:617.145000px;}
.y1f{bottom:617.685000px;}
.y109{bottom:620.205000px;}
.y150{bottom:621.105000px;}
.yec{bottom:622.185000px;}
.y6a{bottom:625.785000px;}
.y16d{bottom:631.545000px;}
.y49{bottom:636.225000px;}
.yd4{bottom:637.125000px;}
.y108{bottom:637.305000px;}
.y1e{bottom:638.385000px;}
.ya2{bottom:640.725000px;}
.y123{bottom:641.625000px;}
.y14f{bottom:641.805000px;}
.y69{bottom:646.485000px;}
.y16c{bottom:652.245000px;}
.yeb{bottom:653.145000px;}
.y107{bottom:654.585000px;}
.yba{bottom:656.925000px;}
.y1d{bottom:659.085000px;}
.y13f{bottom:662.325000px;}
.y14e{bottom:662.505000px;}
.y48{bottom:667.185000px;}
.y87{bottom:669.345000px;}
.ya1{bottom:671.685000px;}
.y106{bottom:671.865000px;}
.y68{bottom:677.625000px;}
.yd3{bottom:678.345000px;}
.y1c{bottom:679.065000px;}
.yb9{bottom:687.885000px;}
.y105{bottom:689.145000px;}
.y122{bottom:690.585000px;}
.yea{bottom:691.845000px;}
.y16b{bottom:692.745000px;}
.y1b{bottom:696.165000px;}
.y47{bottom:698.145000px;}
.y86{bottom:700.305000px;}
.ya0{bottom:702.825000px;}
.y104{bottom:706.425000px;}
.y67{bottom:708.585000px;}
.ye9{bottom:709.485000px;}
.yd2{bottom:710.745000px;}
.y13e{bottom:711.465000px;}
.y16a{bottom:713.445000px;}
.y1a{bottom:714.165000px;}
.yb8{bottom:718.845000px;}
.y121{bottom:721.545000px;}
.yd1{bottom:728.205000px;}
.y46{bottom:729.285000px;}
.y85{bottom:731.445000px;}
.y9f{bottom:733.785000px;}
.y169{bottom:734.145000px;}
.y19{bottom:734.865000px;}
.y66{bottom:739.545000px;}
.y13d{bottom:742.425000px;}
.ye8{bottom:748.185000px;}
.yb7{bottom:749.985000px;}
.y120{bottom:752.685000px;}
.y168{bottom:754.845000px;}
.y18{bottom:755.565000px;}
.y45{bottom:760.245000px;}
.ycf{bottom:761.505000px;}
.y84{bottom:762.405000px;}
.y103{bottom:762.945000px;}
.y9e{bottom:764.925000px;}
.y65{bottom:770.685000px;}
.y13c{bottom:773.565000px;}
.y167{bottom:775.545000px;}
.y17{bottom:776.265000px;}
.yb6{bottom:780.945000px;}
.y11f{bottom:783.645000px;}
.ye7{bottom:786.885000px;}
.y44{bottom:791.385000px;}
.y83{bottom:793.545000px;}
.y9d{bottom:795.885000px;}
.y166{bottom:796.245000px;}
.y16{bottom:796.965000px;}
.y64{bottom:801.645000px;}
.y102{bottom:804.345000px;}
.y13b{bottom:804.525000px;}
.yb5{bottom:812.085000px;}
.ycd{bottom:812.805000px;}
.y11e{bottom:814.785000px;}
.y15{bottom:817.665000px;}
.y43{bottom:822.345000px;}
.y82{bottom:824.505000px;}
.ye6{bottom:825.585000px;}
.y9c{bottom:827.025000px;}
.y63{bottom:832.785000px;}
.y13a{bottom:835.665000px;}
.y165{bottom:837.825000px;}
.y14{bottom:838.365000px;}
.y101{bottom:842.325000px;}
.yb4{bottom:843.045000px;}
.y11d{bottom:845.745000px;}
.y42{bottom:853.485000px;}
.y81{bottom:855.645000px;}
.y9b{bottom:857.985000px;}
.y164{bottom:858.525000px;}
.y13{bottom:859.065000px;}
.y100{bottom:859.605000px;}
.y62{bottom:863.745000px;}
.ye5{bottom:864.285000px;}
.y139{bottom:866.625000px;}
.yff{bottom:876.930000px;}
.y12{bottom:879.810000px;}
.y41{bottom:884.490000px;}
.y80{bottom:886.650000px;}
.y9a{bottom:889.170000px;}
.yfe{bottom:894.210000px;}
.y61{bottom:894.930000px;}
.y138{bottom:897.810000px;}
.y163{bottom:900.330000px;}
.y11{bottom:901.410000px;}
.ye4{bottom:903.030000px;}
.y11c{bottom:907.890000px;}
.yfd{bottom:911.490000px;}
.y40{bottom:915.630000px;}
.y7f{bottom:917.790000px;}
.ycc{bottom:921.030000px;}
.y10{bottom:922.470000px;}
.y60{bottom:925.890000px;}
.yfc{bottom:928.770000px;}
.y99{bottom:930.750000px;}
.y11b{bottom:939.030000px;}
.ye3{bottom:941.730000px;}
.yf{bottom:943.170000px;}
.y3f{bottom:946.590000px;}
.y137{bottom:946.770000px;}
.y5f{bottom:957.030000px;}
.y7e{bottom:959.370000px;}
.y162{bottom:962.430000px;}
.ye{bottom:963.870000px;}
.y98{bottom:969.630000px;}
.ycb{bottom:969.990000px;}
.y3e{bottom:977.730000px;}
.ye2{bottom:980.430000px;}
.yd{bottom:984.570000px;}
.y5e{bottom:987.990000px;}
.y7d{bottom:1001.130000px;}
.yc{bottom:1005.270000px;}
.y3d{bottom:1008.690000px;}
.y136{bottom:1008.870000px;}
.y5d{bottom:1019.130000px;}
.ye1{bottom:1019.850000px;}
.yb{bottom:1025.970000px;}
.y7c{bottom:1032.090000px;}
.y3c{bottom:1039.830000px;}
.ya{bottom:1046.670000px;}
.y5c{bottom:1050.090000px;}
.y161{bottom:1060.530000px;}
.y7b{bottom:1063.230000px;}
.y9{bottom:1067.370000px;}
.y3b{bottom:1070.790000px;}
.y135{bottom:1070.970000px;}
.y5b{bottom:1081.230000px;}
.ye0{bottom:1083.930000px;}
.y8{bottom:1088.070000px;}
.y3a{bottom:1101.930000px;}
.y7{bottom:1108.590000px;}
.y5a{bottom:1112.190000px;}
.y39{bottom:1122.630000px;}
.y6{bottom:1127.130000px;}
.y134{bottom:1140.660000px;}
.y38{bottom:1143.360000px;}
.y5{bottom:1144.800000px;}
.y133{bottom:1158.660000px;}
.y3{bottom:1162.800000px;}
.y2{bottom:1180.260000px;}
.y1{bottom:1217.520000px;}
.h1a{height:4.021875px;}
.h10{height:12.568359px;}
.he{height:12.700195px;}
.h1d{height:21.114844px;}
.h1c{height:25.136719px;}
.h13{height:32.580000px;}
.h17{height:38.520000px;}
.h16{height:38.700000px;}
.h18{height:38.736000px;}
.h2{height:40.790039px;}
.h19{height:41.726953px;}
.h7{height:42.164648px;}
.h4{height:45.386260px;}
.h15{height:46.080000px;}
.h6{height:46.736719px;}
.h9{height:50.273438px;}
.h11{height:50.400000px;}
.h12{height:50.580000px;}
.h8{height:50.800781px;}
.hc{height:50.941406px;}
.h1b{height:52.417969px;}
.hd{height:54.295313px;}
.h5{height:56.900391px;}
.ha{height:58.429688px;}
.h14{height:59.400000px;}
.hf{height:61.043203px;}
.h3{height:70.802565px;}
.hb{height:71.613281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:17.280000px;}
.wa{width:52.920000px;}
.w9{width:59.220000px;}
.wd{width:62.640000px;}
.wb{width:67.176000px;}
.w7{width:99.900000px;}
.w8{width:103.176000px;}
.wf{width:104.940000px;}
.w6{width:111.816000px;}
.we{width:120.996000px;}
.w10{width:124.236000px;}
.w4{width:223.050000px;}
.w5{width:224.130000px;}
.w3{width:227.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x25{left:9.540000px;}
.x28{left:10.980000px;}
.x1e{left:12.420000px;}
.x29{left:13.500000px;}
.x1b{left:14.580000px;}
.x2a{left:18.585000px;}
.x23{left:20.025000px;}
.x20{left:32.940000px;}
.x2d{left:35.460000px;}
.x1d{left:36.540000px;}
.x27{left:40.170000px;}
.x22{left:44.145000px;}
.x33{left:59.580000px;}
.x30{left:65.520000px;}
.x35{left:70.020000px;}
.x2f{left:77.610000px;}
.x34{left:79.230000px;}
.x31{left:85.170000px;}
.x32{left:88.020000px;}
.x36{left:89.670000px;}
.x1{left:108.035987px;}
.x3{left:113.975987px;}
.xf{left:120.455987px;}
.xa{left:131.435987px;}
.x11{left:133.055987px;}
.x45{left:138.095987px;}
.x2{left:142.775987px;}
.x7{left:155.189987px;}
.x13{left:162.029987px;}
.x3d{left:163.109987px;}
.x39{left:164.189987px;}
.x40{left:165.269987px;}
.x44{left:166.529987px;}
.x37{left:168.329987px;}
.x3f{left:169.409987px;}
.x6{left:171.569987px;}
.xd{left:176.069987px;}
.x38{left:178.949987px;}
.x3b{left:180.389987px;}
.x3a{left:181.649987px;}
.x41{left:187.049987px;}
.x43{left:189.029987px;}
.x46{left:192.089987px;}
.x3c{left:214.769987px;}
.x2b{left:216.029987px;}
.x18{left:218.190000px;}
.x12{left:224.309987px;}
.x42{left:283.214987px;}
.x19{left:330.915000px;}
.x16{left:336.495000px;}
.x2c{left:338.475000px;}
.x3e{left:364.034987px;}
.x5{left:367.274987px;}
.x14{left:387.434987px;}
.x8{left:394.094987px;}
.xc{left:404.174987px;}
.x10{left:418.214987px;}
.x9{left:420.734987px;}
.x1a{left:431.535000px;}
.xe{left:437.834987px;}
.x2e{left:444.135000px;}
.x4{left:446.474987px;}
.xb{left:527.504987px;}
.x1c{left:535.605000px;}
.x17{left:560.265000px;}
.x1f{left:595.545000px;}
.x21{left:649.185000px;}
.x24{left:716.370000px;}
.x26{left:734.010000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.051840pt;}
.ls8{letter-spacing:-0.000001pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.239467pt;}
.ls11{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.640000pt;}
.lsc{letter-spacing:3.840000pt;}
.lse{letter-spacing:17.920000pt;}
.ls14{letter-spacing:30.208000pt;}
.ls13{letter-spacing:34.048000pt;}
.wsb{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.464000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws0{word-spacing:-11.953280pt;}
.wsd{word-spacing:-10.959467pt;}
.ws8{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
.wsa{word-spacing:114.578240pt;}
._d{margin-left:-4.224000pt;}
._c{margin-left:-3.328000pt;}
._7{margin-left:-2.222985pt;}
._0{margin-left:-1.105015pt;}
._1{width:1.101192pt;}
._3{width:2.304000pt;}
._4{width:3.416423pt;}
._6{width:5.009015pt;}
._5{width:5.952000pt;}
._9{width:7.402667pt;}
._a{width:8.456141pt;}
._b{width:9.674667pt;}
._12{width:11.200000pt;}
._e{width:12.480000pt;}
._f{width:13.504000pt;}
._13{width:15.057015pt;}
._8{width:17.536000pt;}
._16{width:19.104000pt;}
._15{width:20.000000pt;}
._18{width:21.056000pt;}
._17{width:22.176000pt;}
._1d{width:23.648000pt;}
._1b{width:24.640000pt;}
._1c{width:25.536000pt;}
._19{width:26.560000pt;}
._11{width:28.059682pt;}
._10{width:29.376000pt;}
._1e{width:33.344000pt;}
._1f{width:34.784000pt;}
._1a{width:123.882667pt;}
._20{width:126.976000pt;}
._2{width:129.851436pt;}
._14{width:175.978667pt;}
.fs9{font-size:5.120000pt;}
.fs7{font-size:16.000000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs1{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:3.520000pt;}
.yce{bottom:13.920000pt;}
.yd0{bottom:14.080000pt;}
.yd7{bottom:21.920000pt;}
.y4{bottom:60.960000pt;}
.yb3{bottom:100.352000pt;}
.y37{bottom:107.392000pt;}
.yfb{bottom:113.472000pt;}
.y97{bottom:116.032000pt;}
.yca{bottom:117.152000pt;}
.y132{bottom:118.912000pt;}
.y11a{bottom:119.072000pt;}
.y185{bottom:120.992000pt;}
.y59{bottom:123.872000pt;}
.y36{bottom:125.792000pt;}
.yb2{bottom:127.872000pt;}
.y14d{bottom:131.072000pt;}
.y79{bottom:132.992000pt;}
.ydf{bottom:136.346667pt;}
.yfa{bottom:140.986667pt;}
.y96{bottom:143.546667pt;}
.y35{bottom:144.186667pt;}
.yc9{bottom:144.826667pt;}
.y131{bottom:146.426667pt;}
.y119{bottom:146.746667pt;}
.y58{bottom:151.386667pt;}
.yb1{bottom:155.546667pt;}
.y184{bottom:158.106667pt;}
.y14c{bottom:158.746667pt;}
.y78{bottom:160.666667pt;}
.y34{bottom:162.586667pt;}
.y160{bottom:165.146667pt;}
.yf9{bottom:168.666667pt;}
.yc8{bottom:172.346667pt;}
.y130{bottom:174.106667pt;}
.y118{bottom:174.266667pt;}
.y183{bottom:176.506667pt;}
.y57{bottom:179.066667pt;}
.y33{bottom:180.986667pt;}
.yb0{bottom:183.066667pt;}
.y15f{bottom:183.546667pt;}
.y14b{bottom:186.266667pt;}
.y77{bottom:188.186667pt;}
.yde{bottom:189.146667pt;}
.y95{bottom:189.786667pt;}
.y182{bottom:194.906667pt;}
.yf8{bottom:196.186667pt;}
.y32{bottom:199.386667pt;}
.yc7{bottom:200.026667pt;}
.y12f{bottom:201.626667pt;}
.y117{bottom:201.946667pt;}
.y56{bottom:206.586667pt;}
.yaf{bottom:210.746667pt;}
.y181{bottom:213.306667pt;}
.y14a{bottom:213.946667pt;}
.y76{bottom:215.866667pt;}
.y94{bottom:217.466667pt;}
.y31{bottom:217.786667pt;}
.y15e{bottom:220.346667pt;}
.yf7{bottom:223.866667pt;}
.yc6{bottom:227.546667pt;}
.y12e{bottom:229.306667pt;}
.y116{bottom:229.466667pt;}
.y180{bottom:231.706667pt;}
.y55{bottom:234.266667pt;}
.y30{bottom:236.186667pt;}
.yae{bottom:238.266667pt;}
.y15d{bottom:238.746667pt;}
.y149{bottom:241.466667pt;}
.ydd{bottom:241.946667pt;}
.yc5{bottom:243.226667pt;}
.y75{bottom:243.386667pt;}
.y93{bottom:244.986667pt;}
.y17f{bottom:248.346667pt;}
.yc4{bottom:250.586667pt;}
.y2f{bottom:254.586667pt;}
.y115{bottom:257.146667pt;}
.y17e{bottom:259.226667pt;}
.y54{bottom:261.786667pt;}
.yad{bottom:265.946667pt;}
.yf6{bottom:267.386667pt;}
.yc3{bottom:268.986667pt;}
.y148{bottom:269.146667pt;}
.y74{bottom:271.066667pt;}
.y92{bottom:272.666667pt;}
.y2e{bottom:272.986667pt;}
.y12d{bottom:275.546667pt;}
.y17d{bottom:277.626667pt;}
.y53{bottom:289.466667pt;}
.y2d{bottom:291.386667pt;}
.y114{bottom:291.546667pt;}
.yac{bottom:293.466667pt;}
.y15c{bottom:293.946667pt;}
.ydc{bottom:294.746667pt;}
.yf5{bottom:295.066667pt;}
.yc2{bottom:296.666667pt;}
.y73{bottom:298.586667pt;}
.y91{bottom:300.226667pt;}
.y12c{bottom:303.106667pt;}
.y17c{bottom:303.746667pt;}
.y113{bottom:309.346667pt;}
.y2c{bottom:309.826667pt;}
.y52{bottom:317.026667pt;}
.yab{bottom:321.186667pt;}
.y17b{bottom:322.146667pt;}
.yf4{bottom:322.626667pt;}
.y147{bottom:324.386667pt;}
.y72{bottom:326.306667pt;}
.y90{bottom:327.906667pt;}
.y2b{bottom:328.226667pt;}
.y12b{bottom:330.786667pt;}
.y15b{bottom:330.946667pt;}
.yc1{bottom:340.226667pt;}
.y17a{bottom:340.546667pt;}
.y112{bottom:344.386667pt;}
.y51{bottom:344.706667pt;}
.y2a{bottom:346.626667pt;}
.ydb{bottom:347.586667pt;}
.yaa{bottom:348.706667pt;}
.yf3{bottom:350.306667pt;}
.y146{bottom:351.906667pt;}
.y71{bottom:353.826667pt;}
.y8f{bottom:355.426667pt;}
.y12a{bottom:358.306667pt;}
.y179{bottom:358.946667pt;}
.y111{bottom:359.746667pt;}
.y29{bottom:365.026667pt;}
.y15a{bottom:368.066667pt;}
.y50{bottom:372.226667pt;}
.y110{bottom:375.106667pt;}
.y178{bottom:375.746667pt;}
.ya9{bottom:376.386667pt;}
.y145{bottom:379.586667pt;}
.y70{bottom:381.506667pt;}
.y8e{bottom:383.106667pt;}
.y28{bottom:383.426667pt;}
.yc0{bottom:383.906667pt;}
.y159{bottom:386.466667pt;}
.y177{bottom:386.626667pt;}
.yf2{bottom:387.426667pt;}
.y10f{bottom:390.466667pt;}
.y4f{bottom:399.906667pt;}
.yda{bottom:400.386667pt;}
.y27{bottom:401.826667pt;}
.ya8{bottom:403.906667pt;}
.y129{bottom:404.706667pt;}
.y158{bottom:404.866667pt;}
.y176{bottom:405.026667pt;}
.y10e{bottom:405.666667pt;}
.y144{bottom:407.106667pt;}
.y6f{bottom:409.026667pt;}
.y8d{bottom:410.626667pt;}
.yf1{bottom:415.106667pt;}
.ybf{bottom:418.306667pt;}
.y26{bottom:420.226667pt;}
.y10d{bottom:421.026667pt;}
.y157{bottom:423.266667pt;}
.y175{bottom:423.426667pt;}
.y4e{bottom:427.426667pt;}
.ya7{bottom:431.426667pt;}
.y128{bottom:432.226667pt;}
.yd9{bottom:432.546667pt;}
.y143{bottom:434.786667pt;}
.y6e{bottom:436.706667pt;}
.y8c{bottom:438.306667pt;}
.y25{bottom:438.626667pt;}
.y156{bottom:441.666667pt;}
.y174{bottom:441.826667pt;}
.yf0{bottom:442.626667pt;}
.ybe{bottom:445.826667pt;}
.y10c{bottom:446.306667pt;}
.y4d{bottom:455.106667pt;}
.y24{bottom:457.026667pt;}
.ya6{bottom:459.106667pt;}
.y127{bottom:459.906667pt;}
.y155{bottom:460.066667pt;}
.y173{bottom:460.226667pt;}
.y142{bottom:462.306667pt;}
.y6d{bottom:464.226667pt;}
.y8b{bottom:465.826667pt;}
.yef{bottom:470.146667pt;}
.ybd{bottom:473.506667pt;}
.y10b{bottom:473.826667pt;}
.yd6{bottom:474.946667pt;}
.y23{bottom:475.426667pt;}
.y154{bottom:478.466667pt;}
.y172{bottom:478.626667pt;}
.y4c{bottom:482.626667pt;}
.ya5{bottom:486.626667pt;}
.y126{bottom:487.426667pt;}
.y141{bottom:489.986667pt;}
.y6c{bottom:491.906667pt;}
.y8a{bottom:493.506667pt;}
.y22{bottom:493.826667pt;}
.y153{bottom:496.866667pt;}
.y171{bottom:497.026667pt;}
.yee{bottom:497.826667pt;}
.ybc{bottom:501.026667pt;}
.y4b{bottom:510.306667pt;}
.y21{bottom:512.226667pt;}
.y170{bottom:513.666667pt;}
.ya4{bottom:514.306667pt;}
.y125{bottom:515.106667pt;}
.y152{bottom:515.266667pt;}
.y10a{bottom:517.506667pt;}
.y6b{bottom:519.426667pt;}
.y89{bottom:521.026667pt;}
.y16f{bottom:524.546667pt;}
.yed{bottom:525.346667pt;}
.ybb{bottom:528.706667pt;}
.y20{bottom:530.626667pt;}
.yd5{bottom:531.906667pt;}
.y151{bottom:533.666667pt;}
.y4a{bottom:537.853333pt;}
.ya3{bottom:541.853333pt;}
.y124{bottom:542.653333pt;}
.y16e{bottom:542.973333pt;}
.y140{bottom:545.213333pt;}
.y7a{bottom:547.133333pt;}
.y88{bottom:548.573333pt;}
.y1f{bottom:549.053333pt;}
.y109{bottom:551.293333pt;}
.y150{bottom:552.093333pt;}
.yec{bottom:553.053333pt;}
.y6a{bottom:556.253333pt;}
.y16d{bottom:561.373333pt;}
.y49{bottom:565.533333pt;}
.yd4{bottom:566.333333pt;}
.y108{bottom:566.493333pt;}
.y1e{bottom:567.453333pt;}
.ya2{bottom:569.533333pt;}
.y123{bottom:570.333333pt;}
.y14f{bottom:570.493333pt;}
.y69{bottom:574.653333pt;}
.y16c{bottom:579.773333pt;}
.yeb{bottom:580.573333pt;}
.y107{bottom:581.853333pt;}
.yba{bottom:583.933333pt;}
.y1d{bottom:585.853333pt;}
.y13f{bottom:588.733333pt;}
.y14e{bottom:588.893333pt;}
.y48{bottom:593.053333pt;}
.y87{bottom:594.973333pt;}
.ya1{bottom:597.053333pt;}
.y106{bottom:597.213333pt;}
.y68{bottom:602.333333pt;}
.yd3{bottom:602.973333pt;}
.y1c{bottom:603.613333pt;}
.yb9{bottom:611.453333pt;}
.y105{bottom:612.573333pt;}
.y122{bottom:613.853333pt;}
.yea{bottom:614.973333pt;}
.y16b{bottom:615.773333pt;}
.y1b{bottom:618.813333pt;}
.y47{bottom:620.573333pt;}
.y86{bottom:622.493333pt;}
.ya0{bottom:624.733333pt;}
.y104{bottom:627.933333pt;}
.y67{bottom:629.853333pt;}
.ye9{bottom:630.653333pt;}
.yd2{bottom:631.773333pt;}
.y13e{bottom:632.413333pt;}
.y16a{bottom:634.173333pt;}
.y1a{bottom:634.813333pt;}
.yb8{bottom:638.973333pt;}
.y121{bottom:641.373333pt;}
.yd1{bottom:647.293333pt;}
.y46{bottom:648.253333pt;}
.y85{bottom:650.173333pt;}
.y9f{bottom:652.253333pt;}
.y169{bottom:652.573333pt;}
.y19{bottom:653.213333pt;}
.y66{bottom:657.373333pt;}
.y13d{bottom:659.933333pt;}
.ye8{bottom:665.053333pt;}
.yb7{bottom:666.653333pt;}
.y120{bottom:669.053333pt;}
.y168{bottom:670.973333pt;}
.y18{bottom:671.613333pt;}
.y45{bottom:675.773333pt;}
.ycf{bottom:676.893333pt;}
.y84{bottom:677.693333pt;}
.y103{bottom:678.173333pt;}
.y9e{bottom:679.933333pt;}
.y65{bottom:685.053333pt;}
.y13c{bottom:687.613333pt;}
.y167{bottom:689.373333pt;}
.y17{bottom:690.013333pt;}
.yb6{bottom:694.173333pt;}
.y11f{bottom:696.573333pt;}
.ye7{bottom:699.453333pt;}
.y44{bottom:703.453333pt;}
.y83{bottom:705.373333pt;}
.y9d{bottom:707.453333pt;}
.y166{bottom:707.773333pt;}
.y16{bottom:708.413333pt;}
.y64{bottom:712.573333pt;}
.y102{bottom:714.973333pt;}
.y13b{bottom:715.133333pt;}
.yb5{bottom:721.853333pt;}
.ycd{bottom:722.493333pt;}
.y11e{bottom:724.253333pt;}
.y15{bottom:726.813333pt;}
.y43{bottom:730.973333pt;}
.y82{bottom:732.893333pt;}
.ye6{bottom:733.853333pt;}
.y9c{bottom:735.133333pt;}
.y63{bottom:740.253333pt;}
.y13a{bottom:742.813333pt;}
.y165{bottom:744.733333pt;}
.y14{bottom:745.213333pt;}
.y101{bottom:748.733333pt;}
.yb4{bottom:749.373333pt;}
.y11d{bottom:751.773333pt;}
.y42{bottom:758.653333pt;}
.y81{bottom:760.573333pt;}
.y9b{bottom:762.653333pt;}
.y164{bottom:763.133333pt;}
.y13{bottom:763.613333pt;}
.y100{bottom:764.093333pt;}
.y62{bottom:767.773333pt;}
.ye5{bottom:768.253333pt;}
.y139{bottom:770.333333pt;}
.yff{bottom:779.493333pt;}
.y12{bottom:782.053333pt;}
.y41{bottom:786.213333pt;}
.y80{bottom:788.133333pt;}
.y9a{bottom:790.373333pt;}
.yfe{bottom:794.853333pt;}
.y61{bottom:795.493333pt;}
.y138{bottom:798.053333pt;}
.y163{bottom:800.293333pt;}
.y11{bottom:801.253333pt;}
.ye4{bottom:802.693333pt;}
.y11c{bottom:807.013333pt;}
.yfd{bottom:810.213333pt;}
.y40{bottom:813.893333pt;}
.y7f{bottom:815.813333pt;}
.ycc{bottom:818.693333pt;}
.y10{bottom:819.973333pt;}
.y60{bottom:823.013333pt;}
.yfc{bottom:825.573333pt;}
.y99{bottom:827.333333pt;}
.y11b{bottom:834.693333pt;}
.ye3{bottom:837.093333pt;}
.yf{bottom:838.373333pt;}
.y3f{bottom:841.413333pt;}
.y137{bottom:841.573333pt;}
.y5f{bottom:850.693333pt;}
.y7e{bottom:852.773333pt;}
.y162{bottom:855.493333pt;}
.ye{bottom:856.773333pt;}
.y98{bottom:861.893333pt;}
.ycb{bottom:862.213333pt;}
.y3e{bottom:869.093333pt;}
.ye2{bottom:871.493333pt;}
.yd{bottom:875.173333pt;}
.y5e{bottom:878.213333pt;}
.y7d{bottom:889.893333pt;}
.yc{bottom:893.573333pt;}
.y3d{bottom:896.613333pt;}
.y136{bottom:896.773333pt;}
.y5d{bottom:905.893333pt;}
.ye1{bottom:906.533333pt;}
.yb{bottom:911.973333pt;}
.y7c{bottom:917.413333pt;}
.y3c{bottom:924.293333pt;}
.ya{bottom:930.373333pt;}
.y5c{bottom:933.413333pt;}
.y161{bottom:942.693333pt;}
.y7b{bottom:945.093333pt;}
.y9{bottom:948.773333pt;}
.y3b{bottom:951.813333pt;}
.y135{bottom:951.973333pt;}
.y5b{bottom:961.093333pt;}
.ye0{bottom:963.493333pt;}
.y8{bottom:967.173333pt;}
.y3a{bottom:979.493333pt;}
.y7{bottom:985.413333pt;}
.y5a{bottom:988.613333pt;}
.y39{bottom:997.893333pt;}
.y6{bottom:1001.893333pt;}
.y134{bottom:1013.920000pt;}
.y38{bottom:1016.320000pt;}
.y5{bottom:1017.600000pt;}
.y133{bottom:1029.920000pt;}
.y3{bottom:1033.600000pt;}
.y2{bottom:1049.120000pt;}
.y1{bottom:1082.240000pt;}
.h1a{height:3.575000pt;}
.h10{height:11.171875pt;}
.he{height:11.289062pt;}
.h1d{height:18.768750pt;}
.h1c{height:22.343750pt;}
.h13{height:28.960000pt;}
.h17{height:34.240000pt;}
.h16{height:34.400000pt;}
.h18{height:34.432000pt;}
.h2{height:36.257812pt;}
.h19{height:37.090625pt;}
.h7{height:37.479688pt;}
.h4{height:40.343342pt;}
.h15{height:40.960000pt;}
.h6{height:41.543750pt;}
.h9{height:44.687500pt;}
.h11{height:44.800000pt;}
.h12{height:44.960000pt;}
.h8{height:45.156250pt;}
.hc{height:45.281250pt;}
.h1b{height:46.593750pt;}
.hd{height:48.262500pt;}
.h5{height:50.578125pt;}
.ha{height:51.937500pt;}
.h14{height:52.800000pt;}
.hf{height:54.260625pt;}
.h3{height:62.935614pt;}
.hb{height:63.656250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:15.360000pt;}
.wa{width:47.040000pt;}
.w9{width:52.640000pt;}
.wd{width:55.680000pt;}
.wb{width:59.712000pt;}
.w7{width:88.800000pt;}
.w8{width:91.712000pt;}
.wf{width:93.280000pt;}
.w6{width:99.392000pt;}
.we{width:107.552000pt;}
.w10{width:110.432000pt;}
.w4{width:198.266667pt;}
.w5{width:199.226667pt;}
.w3{width:201.786667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x25{left:8.480000pt;}
.x28{left:9.760000pt;}
.x1e{left:11.040000pt;}
.x29{left:12.000000pt;}
.x1b{left:12.960000pt;}
.x2a{left:16.520000pt;}
.x23{left:17.800000pt;}
.x20{left:29.280000pt;}
.x2d{left:31.520000pt;}
.x1d{left:32.480000pt;}
.x27{left:35.706667pt;}
.x22{left:39.240000pt;}
.x33{left:52.960000pt;}
.x30{left:58.240000pt;}
.x35{left:62.240000pt;}
.x2f{left:68.986667pt;}
.x34{left:70.426667pt;}
.x31{left:75.706667pt;}
.x32{left:78.240000pt;}
.x36{left:79.706667pt;}
.x1{left:96.031988pt;}
.x3{left:101.311988pt;}
.xf{left:107.071988pt;}
.xa{left:116.831988pt;}
.x11{left:118.271988pt;}
.x45{left:122.751988pt;}
.x2{left:126.911988pt;}
.x7{left:137.946655pt;}
.x13{left:144.026655pt;}
.x3d{left:144.986655pt;}
.x39{left:145.946655pt;}
.x40{left:146.906655pt;}
.x44{left:148.026655pt;}
.x37{left:149.626655pt;}
.x3f{left:150.586655pt;}
.x6{left:152.506655pt;}
.xd{left:156.506655pt;}
.x38{left:159.066655pt;}
.x3b{left:160.346655pt;}
.x3a{left:161.466655pt;}
.x41{left:166.266655pt;}
.x43{left:168.026655pt;}
.x46{left:170.746655pt;}
.x3c{left:190.906655pt;}
.x2b{left:192.026655pt;}
.x18{left:193.946667pt;}
.x12{left:199.386655pt;}
.x42{left:251.746655pt;}
.x19{left:294.146667pt;}
.x16{left:299.106667pt;}
.x2c{left:300.866667pt;}
.x3e{left:323.586655pt;}
.x5{left:326.466655pt;}
.x14{left:344.386655pt;}
.x8{left:350.306655pt;}
.xc{left:359.266655pt;}
.x10{left:371.746655pt;}
.x9{left:373.986655pt;}
.x1a{left:383.586667pt;}
.xe{left:389.186655pt;}
.x2e{left:394.786667pt;}
.x4{left:396.866655pt;}
.xb{left:468.893322pt;}
.x1c{left:476.093333pt;}
.x17{left:498.013333pt;}
.x1f{left:529.373333pt;}
.x21{left:577.053333pt;}
.x24{left:636.773333pt;}
.x26{left:652.453333pt;}
}




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