
    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_01479a66910ffbcb5db08ea4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5aa995b413c1cb7f55bb84a1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_76bb3022dbaf657206d60e4d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b988d91961ed1a85318c305e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_61273ea24db7c2a6d4940db7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_745133b9475a4377cfb0cd4f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.774000px;}
.ls6{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.900000px;}
.ls12{letter-spacing:11.466720px;}
.ls10{letter-spacing:41.682720px;}
.ls4{letter-spacing:46.026720px;}
.ls3{letter-spacing:636.840000px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.246600px;}
.wsa{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-7.888320px;}
._5{margin-left:-6.742080px;}
._15{margin-left:-5.315040px;}
._11{margin-left:-4.183200px;}
._c{margin-left:-2.748960px;}
._2{margin-left:-1.321920px;}
._1{width:1.290720px;}
._3{width:2.923680px;}
._7{width:4.500000px;}
._8{width:5.916240px;}
._10{width:6.954960px;}
._9{width:7.971840px;}
._12{width:9.466080px;}
._d{width:10.697040px;}
._e{width:11.808960px;}
._14{width:13.290720px;}
._13{width:16.130640px;}
._16{width:17.244000px;}
._a{width:18.430080px;}
._b{width:19.727040px;}
._26{width:21.053280px;}
._f{width:22.589280px;}
._24{width:24.143040px;}
._23{width:25.398000px;}
._25{width:27.274560px;}
._20{width:31.307040px;}
._19{width:32.815440px;}
._17{width:34.804320px;}
._18{width:35.834160px;}
._1c{width:42.011280px;}
._21{width:47.270160px;}
._2a{width:64.273680px;}
._29{width:65.377440px;}
._1d{width:78.166080px;}
._6{width:136.122000px;}
._1f{width:161.710560px;}
._28{width:166.216560px;}
._27{width:167.682480px;}
._22{width:171.630720px;}
._1e{width:179.997120px;}
._1a{width:195.140400px;}
._1b{width:252.246960px;}
._4{width:748.236000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:3.240000px;}
.y167{bottom:11.880000px;}
.ya4{bottom:20.340000px;}
.y9f{bottom:20.520000px;}
.y155{bottom:20.550000px;}
.ya2{bottom:20.565000px;}
.y16a{bottom:29.160000px;}
.yb{bottom:36.720000px;}
.y16b{bottom:37.800000px;}
.ya{bottom:55.260000px;}
.y9{bottom:70.776000px;}
.y124{bottom:111.816000px;}
.y41{bottom:115.056000px;}
.ydd{bottom:116.136000px;}
.yc8{bottom:118.116000px;}
.y78{bottom:119.556000px;}
.y10c{bottom:125.676000px;}
.y197{bottom:127.296000px;}
.ye3{bottom:127.476000px;}
.y9a{bottom:128.916000px;}
.y40{bottom:132.336000px;}
.ydc{bottom:133.416000px;}
.y14c{bottom:135.216000px;}
.yc7{bottom:135.396000px;}
.y77{bottom:136.836000px;}
.y165{bottom:142.416000px;}
.y10b{bottom:142.956000px;}
.ye2{bottom:144.576000px;}
.y99{bottom:146.016000px;}
.y123{bottom:146.196000px;}
.y3f{bottom:149.616000px;}
.ydb{bottom:150.690000px;}
.y14b{bottom:152.490000px;}
.yc6{bottom:152.670000px;}
.y76{bottom:154.110000px;}
.y164{bottom:159.690000px;}
.y10a{bottom:160.230000px;}
.ye1{bottom:161.850000px;}
.y98{bottom:163.290000px;}
.y122{bottom:163.470000px;}
.y3e{bottom:166.890000px;}
.yda{bottom:167.790000px;}
.y14a{bottom:169.770000px;}
.yc5{bottom:169.950000px;}
.y75{bottom:171.390000px;}
.ye0{bottom:175.890000px;}
.y163{bottom:176.970000px;}
.y109{bottom:177.510000px;}
.y196{bottom:179.130000px;}
.y97{bottom:180.570000px;}
.y121{bottom:180.750000px;}
.y3d{bottom:183.990000px;}
.yd9{bottom:185.070000px;}
.y149{bottom:187.050000px;}
.yc4{bottom:187.230000px;}
.y74{bottom:188.490000px;}
.y162{bottom:194.250000px;}
.y108{bottom:194.610000px;}
.y120{bottom:194.790000px;}
.y195{bottom:196.410000px;}
.y96{bottom:197.850000px;}
.y148{bottom:201.090000px;}
.y3c{bottom:201.270000px;}
.yd8{bottom:202.350000px;}
.yc3{bottom:204.510000px;}
.y73{bottom:205.770000px;}
.y161{bottom:211.530000px;}
.y107{bottom:211.890000px;}
.y194{bottom:213.690000px;}
.y95{bottom:215.130000px;}
.y3b{bottom:218.550000px;}
.yd7{bottom:219.630000px;}
.yc2{bottom:221.610000px;}
.y72{bottom:223.050000px;}
.ya6{bottom:224.310000px;}
.y160{bottom:228.810000px;}
.y106{bottom:229.170000px;}
.y193{bottom:230.790000px;}
.y94{bottom:232.410000px;}
.y3a{bottom:235.830000px;}
.yd6{bottom:236.910000px;}
.yc1{bottom:238.890000px;}
.y71{bottom:240.330000px;}
.y15f{bottom:245.910000px;}
.y105{bottom:246.450000px;}
.y192{bottom:248.070000px;}
.y93{bottom:249.510000px;}
.y39{bottom:253.110000px;}
.yd5{bottom:254.190000px;}
.yc0{bottom:256.170000px;}
.y70{bottom:257.610000px;}
.ya5{bottom:259.590000px;}
.y15e{bottom:259.950000px;}
.y104{bottom:263.730000px;}
.y191{bottom:265.350000px;}
.y92{bottom:266.790000px;}
.y38{bottom:270.390000px;}
.yd4{bottom:271.290000px;}
.ybf{bottom:273.450000px;}
.y6f{bottom:274.890000px;}
.y103{bottom:281.010000px;}
.y190{bottom:282.630000px;}
.y91{bottom:284.070000px;}
.y37{bottom:287.490000px;}
.yd3{bottom:288.570000px;}
.ybe{bottom:290.730000px;}
.y6e{bottom:291.990000px;}
.ya3{bottom:294.870000px;}
.y102{bottom:298.110000px;}
.y18f{bottom:299.910000px;}
.y90{bottom:301.350000px;}
.y36{bottom:304.770000px;}
.yd2{bottom:305.850000px;}
.ybd{bottom:308.010000px;}
.y6d{bottom:309.270000px;}
.y101{bottom:315.390000px;}
.y18e{bottom:317.010000px;}
.y8f{bottom:318.630000px;}
.y35{bottom:322.050000px;}
.yd1{bottom:323.130000px;}
.ybc{bottom:325.110000px;}
.y6c{bottom:326.550000px;}
.ya1{bottom:329.970000px;}
.y100{bottom:332.670000px;}
.y18d{bottom:334.290000px;}
.y8e{bottom:335.910000px;}
.y34{bottom:339.375000px;}
.yd0{bottom:340.455000px;}
.ybb{bottom:342.435000px;}
.y6b{bottom:343.875000px;}
.yff{bottom:349.995000px;}
.y135{bottom:351.255000px;}
.y18c{bottom:351.615000px;}
.y8d{bottom:353.055000px;}
.y33{bottom:356.655000px;}
.ycf{bottom:357.555000px;}
.yba{bottom:359.715000px;}
.y6a{bottom:361.155000px;}
.ya0{bottom:365.295000px;}
.yfe{bottom:367.275000px;}
.y134{bottom:368.535000px;}
.y18b{bottom:368.895000px;}
.y8c{bottom:370.335000px;}
.y32{bottom:373.755000px;}
.yce{bottom:374.835000px;}
.yb9{bottom:376.995000px;}
.y69{bottom:378.255000px;}
.yfd{bottom:384.555000px;}
.y133{bottom:385.815000px;}
.y18a{bottom:386.175000px;}
.y8b{bottom:387.615000px;}
.y31{bottom:391.035000px;}
.ycd{bottom:392.115000px;}
.yb8{bottom:394.275000px;}
.y68{bottom:395.535000px;}
.y9e{bottom:400.575000px;}
.yfc{bottom:401.655000px;}
.y132{bottom:402.915000px;}
.y189{bottom:403.455000px;}
.y8a{bottom:404.895000px;}
.y30{bottom:408.315000px;}
.ycc{bottom:409.395000px;}
.yb7{bottom:411.375000px;}
.y67{bottom:412.815000px;}
.y147{bottom:418.035000px;}
.yfb{bottom:418.935000px;}
.y131{bottom:420.195000px;}
.y188{bottom:420.555000px;}
.y89{bottom:422.175000px;}
.y2f{bottom:425.595000px;}
.ycb{bottom:426.675000px;}
.yb6{bottom:428.655000px;}
.y66{bottom:430.095000px;}
.y146{bottom:435.315000px;}
.yfa{bottom:436.215000px;}
.y130{bottom:437.475000px;}
.y187{bottom:437.835000px;}
.y9d{bottom:439.095000px;}
.y88{bottom:439.275000px;}
.y2e{bottom:442.875000px;}
.yca{bottom:443.955000px;}
.yb5{bottom:445.935000px;}
.y65{bottom:447.375000px;}
.y145{bottom:452.595000px;}
.yf9{bottom:453.495000px;}
.y12f{bottom:454.755000px;}
.y186{bottom:455.115000px;}
.y9c{bottom:456.375000px;}
.y87{bottom:456.555000px;}
.y15d{bottom:457.815000px;}
.y2d{bottom:460.155000px;}
.y1a5{bottom:461.055000px;}
.yc9{bottom:461.775000px;}
.yb4{bottom:463.215000px;}
.y64{bottom:464.655000px;}
.y144{bottom:469.875000px;}
.y9b{bottom:470.415000px;}
.yf8{bottom:470.775000px;}
.y12e{bottom:472.035000px;}
.y185{bottom:472.395000px;}
.y86{bottom:473.835000px;}
.y15c{bottom:475.095000px;}
.y2c{bottom:477.255000px;}
.y1a4{bottom:478.335000px;}
.yb3{bottom:480.495000px;}
.y63{bottom:481.755000px;}
.y143{bottom:486.975000px;}
.yf7{bottom:487.875000px;}
.y12d{bottom:489.315000px;}
.y184{bottom:489.675000px;}
.y85{bottom:491.115000px;}
.y15b{bottom:492.375000px;}
.y1a3{bottom:495.615000px;}
.y2b{bottom:496.875000px;}
.yb2{bottom:497.775000px;}
.y62{bottom:499.035000px;}
.y142{bottom:504.255000px;}
.yf6{bottom:505.155000px;}
.y12c{bottom:506.415000px;}
.y183{bottom:506.955000px;}
.y84{bottom:508.395000px;}
.y15a{bottom:509.655000px;}
.y1a2{bottom:512.895000px;}
.y2a{bottom:514.155000px;}
.yb1{bottom:514.875000px;}
.y61{bottom:516.315000px;}
.y141{bottom:521.535000px;}
.yf5{bottom:522.435000px;}
.y12b{bottom:523.695000px;}
.y182{bottom:524.055000px;}
.y83{bottom:525.675000px;}
.y159{bottom:526.755000px;}
.y1a1{bottom:530.175000px;}
.y29{bottom:531.255000px;}
.yb0{bottom:532.155000px;}
.y60{bottom:533.595000px;}
.y140{bottom:538.815000px;}
.yf4{bottom:539.715000px;}
.y82{bottom:540.435000px;}
.y12a{bottom:540.975000px;}
.y181{bottom:541.335000px;}
.y158{bottom:544.035000px;}
.y1a0{bottom:547.455000px;}
.y28{bottom:548.535000px;}
.yaf{bottom:549.435000px;}
.y5f{bottom:550.875000px;}
.y13f{bottom:556.095000px;}
.yf3{bottom:556.995000px;}
.y129{bottom:558.255000px;}
.y81{bottom:558.435000px;}
.y180{bottom:558.615000px;}
.y11f{bottom:560.955000px;}
.y157{bottom:561.315000px;}
.ydf{bottom:564.555000px;}
.y27{bottom:565.815000px;}
.yae{bottom:566.715000px;}
.y5e{bottom:568.155000px;}
.y13e{bottom:573.375000px;}
.yf2{bottom:574.275000px;}
.y128{bottom:575.535000px;}
.y17f{bottom:575.895000px;}
.y80{bottom:576.435000px;}
.y11e{bottom:578.055000px;}
.y156{bottom:578.595000px;}
.y19f{bottom:581.835000px;}
.yde{bottom:582.555000px;}
.y26{bottom:583.095000px;}
.yad{bottom:583.995000px;}
.y5d{bottom:585.255000px;}
.y13d{bottom:590.475000px;}
.yf1{bottom:591.375000px;}
.y127{bottom:592.815000px;}
.y17e{bottom:593.175000px;}
.y154{bottom:593.355000px;}
.y7f{bottom:594.435000px;}
.y11d{bottom:595.335000px;}
.y19e{bottom:599.115000px;}
.y25{bottom:600.375000px;}
.yac{bottom:601.275000px;}
.y5c{bottom:602.535000px;}
.y13c{bottom:607.785000px;}
.yf0{bottom:608.685000px;}
.y126{bottom:609.945000px;}
.y17d{bottom:610.485000px;}
.y7e{bottom:612.465000px;}
.y11c{bottom:612.645000px;}
.y19d{bottom:616.425000px;}
.y24{bottom:617.685000px;}
.yab{bottom:618.405000px;}
.y5b{bottom:619.845000px;}
.y125{bottom:623.985000px;}
.y13b{bottom:625.065000px;}
.yef{bottom:625.965000px;}
.y17c{bottom:627.585000px;}
.y153{bottom:628.665000px;}
.y11b{bottom:629.925000px;}
.y7c{bottom:630.465000px;}
.y19c{bottom:633.705000px;}
.y23{bottom:634.785000px;}
.yaa{bottom:635.685000px;}
.y5a{bottom:637.125000px;}
.y13a{bottom:642.345000px;}
.yee{bottom:643.245000px;}
.y17b{bottom:644.865000px;}
.y11a{bottom:647.205000px;}
.y19b{bottom:650.985000px;}
.y7b{bottom:651.705000px;}
.y22{bottom:652.065000px;}
.ya9{bottom:652.965000px;}
.y59{bottom:654.405000px;}
.y139{bottom:659.625000px;}
.yed{bottom:660.525000px;}
.y17a{bottom:662.145000px;}
.y152{bottom:663.945000px;}
.y119{bottom:664.485000px;}
.ya8{bottom:667.005000px;}
.y19a{bottom:668.085000px;}
.y21{bottom:669.345000px;}
.y7a{bottom:669.525000px;}
.y58{bottom:671.685000px;}
.y138{bottom:676.905000px;}
.yec{bottom:677.805000px;}
.y179{bottom:679.425000px;}
.y118{bottom:681.585000px;}
.y199{bottom:685.365000px;}
.y79{bottom:686.265000px;}
.y20{bottom:686.625000px;}
.y57{bottom:688.785000px;}
.y137{bottom:694.005000px;}
.yeb{bottom:694.905000px;}
.y178{bottom:696.705000px;}
.y117{bottom:698.865000px;}
.y151{bottom:699.045000px;}
.y198{bottom:703.365000px;}
.y1f{bottom:703.905000px;}
.y56{bottom:706.065000px;}
.y136{bottom:708.045000px;}
.yea{bottom:712.185000px;}
.y177{bottom:713.805000px;}
.y116{bottom:716.145000px;}
.y1e{bottom:721.005000px;}
.y55{bottom:723.345000px;}
.ye9{bottom:729.465000px;}
.y176{bottom:731.085000px;}
.y115{bottom:733.425000px;}
.y150{bottom:734.325000px;}
.y1d{bottom:738.285000px;}
.y54{bottom:740.625000px;}
.ye8{bottom:746.745000px;}
.y175{bottom:748.365000px;}
.y114{bottom:750.705000px;}
.y1c{bottom:755.565000px;}
.y53{bottom:757.905000px;}
.ye7{bottom:764.025000px;}
.y174{bottom:765.645000px;}
.y113{bottom:767.805000px;}
.y14f{bottom:769.605000px;}
.y1b{bottom:772.845000px;}
.y52{bottom:775.005000px;}
.ye6{bottom:781.305000px;}
.y173{bottom:782.925000px;}
.y112{bottom:785.085000px;}
.y1a{bottom:790.125000px;}
.y51{bottom:792.285000px;}
.ye5{bottom:798.405000px;}
.y172{bottom:800.205000px;}
.y111{bottom:803.085000px;}
.y14e{bottom:804.885000px;}
.y19{bottom:807.405000px;}
.y50{bottom:809.565000px;}
.ye4{bottom:812.445000px;}
.y171{bottom:817.305000px;}
.y110{bottom:820.545000px;}
.y18{bottom:824.505000px;}
.y4f{bottom:826.845000px;}
.y170{bottom:835.305000px;}
.y10f{bottom:838.545000px;}
.y14d{bottom:840.165000px;}
.y17{bottom:841.785000px;}
.y4e{bottom:844.125000px;}
.y16f{bottom:855.285000px;}
.y10e{bottom:856.545000px;}
.y16{bottom:859.065000px;}
.y4d{bottom:861.405000px;}
.y16e{bottom:870.045000px;}
.y16d{bottom:873.510000px;}
.y10d{bottom:874.590000px;}
.y15{bottom:876.390000px;}
.y4c{bottom:878.550000px;}
.y14{bottom:894.390000px;}
.y4b{bottom:895.830000px;}
.y16c{bottom:912.210000px;}
.y4a{bottom:913.110000px;}
.y13{bottom:914.370000px;}
.y169{bottom:915.450000px;}
.y49{bottom:930.390000px;}
.y12{bottom:933.810000px;}
.y48{bottom:947.670000px;}
.y11{bottom:951.450000px;}
.y47{bottom:964.950000px;}
.y10{bottom:970.530000px;}
.y168{bottom:971.430000px;}
.y166{bottom:974.670000px;}
.y46{bottom:982.050000px;}
.yf{bottom:989.070000px;}
.y45{bottom:999.330000px;}
.ye{bottom:1007.070000px;}
.y44{bottom:1016.610000px;}
.yd{bottom:1027.770000px;}
.ya7{bottom:1030.470000px;}
.y43{bottom:1033.890000px;}
.yc{bottom:1048.290000px;}
.y42{bottom:1051.170000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1088.250000px;}
.y6{bottom:1104.090000px;}
.y5{bottom:1121.910000px;}
.y4{bottom:1138.680000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h14{height:2.010938px;}
.hb{height:17.100000px;}
.hc{height:17.136000px;}
.h10{height:17.280000px;}
.h11{height:17.316000px;}
.hf{height:34.380000px;}
.h12{height:34.416000px;}
.hd{height:34.560000px;}
.he{height:34.596000px;}
.h6{height:37.705078px;}
.h13{height:41.220000px;}
.h17{height:41.256000px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.h9{height:43.506914px;}
.h3{height:46.251562px;}
.h8{height:46.736719px;}
.ha{height:48.496641px;}
.h18{height:49.255313px;}
.h4{height:50.800781px;}
.h15{height:51.840000px;}
.h16{height:58.500000px;}
.h7{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:83.556000px;}
.w6{width:93.420000px;}
.w9{width:108.396000px;}
.wa{width:110.340000px;}
.w18{width:127.080000px;}
.wf{width:130.680000px;}
.w8{width:135.540000px;}
.w13{width:136.980000px;}
.wd{width:137.520000px;}
.w11{width:137.556000px;}
.w16{width:147.600000px;}
.wb{width:155.550000px;}
.w3{width:158.400000px;}
.w7{width:158.790000px;}
.wc{width:162.750000px;}
.w5{width:163.830000px;}
.we{width:164.370000px;}
.w10{width:195.150000px;}
.w12{width:210.090000px;}
.w17{width:505.725000px;}
.w14{width:516.345000px;}
.w19{width:526.245000px;}
.w15{width:675.645000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x44{left:2.880000px;}
.x13{left:7.740000px;}
.x3d{left:9.180000px;}
.x36{left:15.480000px;}
.x3f{left:20.160000px;}
.x41{left:21.825000px;}
.x42{left:27.540000px;}
.x3c{left:32.394000px;}
.x32{left:33.480000px;}
.x40{left:40.854000px;}
.x45{left:43.245000px;}
.x37{left:53.670000px;}
.x34{left:69.165000px;}
.x39{left:81.945000px;}
.x1{left:108.035987px;}
.x8{left:109.835987px;}
.x3e{left:112.365000px;}
.x3b{left:118.836000px;}
.x2{left:123.155987px;}
.x1a{left:125.495987px;}
.x48{left:135.035987px;}
.x4{left:158.429987px;}
.x49{left:162.029987px;}
.x23{left:163.469987px;}
.x7{left:165.449987px;}
.x9{left:179.849987px;}
.x18{left:211.169987px;}
.x47{left:214.949987px;}
.xf{left:222.869987px;}
.x33{left:240.150000px;}
.x1c{left:245.010000px;}
.x43{left:248.070000px;}
.x3a{left:258.689987px;}
.x14{left:267.870000px;}
.x2d{left:268.949987px;}
.x2b{left:275.789987px;}
.x24{left:279.254987px;}
.x29{left:295.275000px;}
.x2f{left:303.554987px;}
.x20{left:305.714987px;}
.x21{left:308.414987px;}
.x28{left:326.054987px;}
.x1b{left:336.854987px;}
.x11{left:338.294987px;}
.x31{left:341.174987px;}
.x15{left:352.155000px;}
.x1d{left:354.315000px;}
.x26{left:358.094987px;}
.x12{left:363.854987px;}
.xc{left:366.734987px;}
.xb{left:376.094987px;}
.x46{left:382.574987px;}
.xe{left:386.534987px;}
.x6{left:396.434987px;}
.xd{left:397.514987px;}
.x5{left:412.274987px;}
.x2a{left:433.515000px;}
.x35{left:436.035000px;}
.xa{left:446.474987px;}
.x1e{left:465.375000px;}
.x16{left:516.705000px;}
.x3{left:518.504987px;}
.x38{left:574.305000px;}
.x17{left:610.845000px;}
.x2e{left:613.004987px;}
.x1f{left:621.645000px;}
.x30{left:714.389987px;}
.x27{left:725.729987px;}
.x2c{left:727.889987px;}
.x22{left:740.309987px;}
.x19{left:773.069987px;}
.x10{left:780.989987px;}
.x25{left:783.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.688000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls12{letter-spacing:10.192640pt;}
.ls10{letter-spacing:37.051307pt;}
.ls4{letter-spacing:40.912640pt;}
.ls3{letter-spacing:566.080000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.552533pt;}
.wsa{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-7.011840pt;}
._5{margin-left:-5.992960pt;}
._15{margin-left:-4.724480pt;}
._11{margin-left:-3.718400pt;}
._c{margin-left:-2.443520pt;}
._2{margin-left:-1.175040pt;}
._1{width:1.147307pt;}
._3{width:2.598827pt;}
._7{width:4.000000pt;}
._8{width:5.258880pt;}
._10{width:6.182187pt;}
._9{width:7.086080pt;}
._12{width:8.414293pt;}
._d{width:9.508480pt;}
._e{width:10.496853pt;}
._14{width:11.813973pt;}
._13{width:14.338347pt;}
._16{width:15.328000pt;}
._a{width:16.382293pt;}
._b{width:17.535147pt;}
._26{width:18.714027pt;}
._f{width:20.079360pt;}
._24{width:21.460480pt;}
._23{width:22.576000pt;}
._25{width:24.244053pt;}
._20{width:27.828480pt;}
._19{width:29.169280pt;}
._17{width:30.937173pt;}
._18{width:31.852587pt;}
._1c{width:37.343360pt;}
._21{width:42.017920pt;}
._2a{width:57.132160pt;}
._29{width:58.113280pt;}
._1d{width:69.480960pt;}
._6{width:120.997333pt;}
._1f{width:143.742720pt;}
._28{width:147.748053pt;}
._27{width:149.051093pt;}
._22{width:152.560640pt;}
._1e{width:159.997440pt;}
._1a{width:173.458133pt;}
._1b{width:224.219520pt;}
._4{width:665.098667pt;}
.fs4{font-size:2.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:2.880000pt;}
.y167{bottom:10.560000pt;}
.ya4{bottom:18.080000pt;}
.y9f{bottom:18.240000pt;}
.y155{bottom:18.266667pt;}
.ya2{bottom:18.280000pt;}
.y16a{bottom:25.920000pt;}
.yb{bottom:32.640000pt;}
.y16b{bottom:33.600000pt;}
.ya{bottom:49.120000pt;}
.y9{bottom:62.912000pt;}
.y124{bottom:99.392000pt;}
.y41{bottom:102.272000pt;}
.ydd{bottom:103.232000pt;}
.yc8{bottom:104.992000pt;}
.y78{bottom:106.272000pt;}
.y10c{bottom:111.712000pt;}
.y197{bottom:113.152000pt;}
.ye3{bottom:113.312000pt;}
.y9a{bottom:114.592000pt;}
.y40{bottom:117.632000pt;}
.ydc{bottom:118.592000pt;}
.y14c{bottom:120.192000pt;}
.yc7{bottom:120.352000pt;}
.y77{bottom:121.632000pt;}
.y165{bottom:126.592000pt;}
.y10b{bottom:127.072000pt;}
.ye2{bottom:128.512000pt;}
.y99{bottom:129.792000pt;}
.y123{bottom:129.952000pt;}
.y3f{bottom:132.992000pt;}
.ydb{bottom:133.946667pt;}
.y14b{bottom:135.546667pt;}
.yc6{bottom:135.706667pt;}
.y76{bottom:136.986667pt;}
.y164{bottom:141.946667pt;}
.y10a{bottom:142.426667pt;}
.ye1{bottom:143.866667pt;}
.y98{bottom:145.146667pt;}
.y122{bottom:145.306667pt;}
.y3e{bottom:148.346667pt;}
.yda{bottom:149.146667pt;}
.y14a{bottom:150.906667pt;}
.yc5{bottom:151.066667pt;}
.y75{bottom:152.346667pt;}
.ye0{bottom:156.346667pt;}
.y163{bottom:157.306667pt;}
.y109{bottom:157.786667pt;}
.y196{bottom:159.226667pt;}
.y97{bottom:160.506667pt;}
.y121{bottom:160.666667pt;}
.y3d{bottom:163.546667pt;}
.yd9{bottom:164.506667pt;}
.y149{bottom:166.266667pt;}
.yc4{bottom:166.426667pt;}
.y74{bottom:167.546667pt;}
.y162{bottom:172.666667pt;}
.y108{bottom:172.986667pt;}
.y120{bottom:173.146667pt;}
.y195{bottom:174.586667pt;}
.y96{bottom:175.866667pt;}
.y148{bottom:178.746667pt;}
.y3c{bottom:178.906667pt;}
.yd8{bottom:179.866667pt;}
.yc3{bottom:181.786667pt;}
.y73{bottom:182.906667pt;}
.y161{bottom:188.026667pt;}
.y107{bottom:188.346667pt;}
.y194{bottom:189.946667pt;}
.y95{bottom:191.226667pt;}
.y3b{bottom:194.266667pt;}
.yd7{bottom:195.226667pt;}
.yc2{bottom:196.986667pt;}
.y72{bottom:198.266667pt;}
.ya6{bottom:199.386667pt;}
.y160{bottom:203.386667pt;}
.y106{bottom:203.706667pt;}
.y193{bottom:205.146667pt;}
.y94{bottom:206.586667pt;}
.y3a{bottom:209.626667pt;}
.yd6{bottom:210.586667pt;}
.yc1{bottom:212.346667pt;}
.y71{bottom:213.626667pt;}
.y15f{bottom:218.586667pt;}
.y105{bottom:219.066667pt;}
.y192{bottom:220.506667pt;}
.y93{bottom:221.786667pt;}
.y39{bottom:224.986667pt;}
.yd5{bottom:225.946667pt;}
.yc0{bottom:227.706667pt;}
.y70{bottom:228.986667pt;}
.ya5{bottom:230.746667pt;}
.y15e{bottom:231.066667pt;}
.y104{bottom:234.426667pt;}
.y191{bottom:235.866667pt;}
.y92{bottom:237.146667pt;}
.y38{bottom:240.346667pt;}
.yd4{bottom:241.146667pt;}
.ybf{bottom:243.066667pt;}
.y6f{bottom:244.346667pt;}
.y103{bottom:249.786667pt;}
.y190{bottom:251.226667pt;}
.y91{bottom:252.506667pt;}
.y37{bottom:255.546667pt;}
.yd3{bottom:256.506667pt;}
.ybe{bottom:258.426667pt;}
.y6e{bottom:259.546667pt;}
.ya3{bottom:262.106667pt;}
.y102{bottom:264.986667pt;}
.y18f{bottom:266.586667pt;}
.y90{bottom:267.866667pt;}
.y36{bottom:270.906667pt;}
.yd2{bottom:271.866667pt;}
.ybd{bottom:273.786667pt;}
.y6d{bottom:274.906667pt;}
.y101{bottom:280.346667pt;}
.y18e{bottom:281.786667pt;}
.y8f{bottom:283.226667pt;}
.y35{bottom:286.266667pt;}
.yd1{bottom:287.226667pt;}
.ybc{bottom:288.986667pt;}
.y6c{bottom:290.266667pt;}
.ya1{bottom:293.306667pt;}
.y100{bottom:295.706667pt;}
.y18d{bottom:297.146667pt;}
.y8e{bottom:298.586667pt;}
.y34{bottom:301.666667pt;}
.yd0{bottom:302.626667pt;}
.ybb{bottom:304.386667pt;}
.y6b{bottom:305.666667pt;}
.yff{bottom:311.106667pt;}
.y135{bottom:312.226667pt;}
.y18c{bottom:312.546667pt;}
.y8d{bottom:313.826667pt;}
.y33{bottom:317.026667pt;}
.ycf{bottom:317.826667pt;}
.yba{bottom:319.746667pt;}
.y6a{bottom:321.026667pt;}
.ya0{bottom:324.706667pt;}
.yfe{bottom:326.466667pt;}
.y134{bottom:327.586667pt;}
.y18b{bottom:327.906667pt;}
.y8c{bottom:329.186667pt;}
.y32{bottom:332.226667pt;}
.yce{bottom:333.186667pt;}
.yb9{bottom:335.106667pt;}
.y69{bottom:336.226667pt;}
.yfd{bottom:341.826667pt;}
.y133{bottom:342.946667pt;}
.y18a{bottom:343.266667pt;}
.y8b{bottom:344.546667pt;}
.y31{bottom:347.586667pt;}
.ycd{bottom:348.546667pt;}
.yb8{bottom:350.466667pt;}
.y68{bottom:351.586667pt;}
.y9e{bottom:356.066667pt;}
.yfc{bottom:357.026667pt;}
.y132{bottom:358.146667pt;}
.y189{bottom:358.626667pt;}
.y8a{bottom:359.906667pt;}
.y30{bottom:362.946667pt;}
.ycc{bottom:363.906667pt;}
.yb7{bottom:365.666667pt;}
.y67{bottom:366.946667pt;}
.y147{bottom:371.586667pt;}
.yfb{bottom:372.386667pt;}
.y131{bottom:373.506667pt;}
.y188{bottom:373.826667pt;}
.y89{bottom:375.266667pt;}
.y2f{bottom:378.306667pt;}
.ycb{bottom:379.266667pt;}
.yb6{bottom:381.026667pt;}
.y66{bottom:382.306667pt;}
.y146{bottom:386.946667pt;}
.yfa{bottom:387.746667pt;}
.y130{bottom:388.866667pt;}
.y187{bottom:389.186667pt;}
.y9d{bottom:390.306667pt;}
.y88{bottom:390.466667pt;}
.y2e{bottom:393.666667pt;}
.yca{bottom:394.626667pt;}
.yb5{bottom:396.386667pt;}
.y65{bottom:397.666667pt;}
.y145{bottom:402.306667pt;}
.yf9{bottom:403.106667pt;}
.y12f{bottom:404.226667pt;}
.y186{bottom:404.546667pt;}
.y9c{bottom:405.666667pt;}
.y87{bottom:405.826667pt;}
.y15d{bottom:406.946667pt;}
.y2d{bottom:409.026667pt;}
.y1a5{bottom:409.826667pt;}
.yc9{bottom:410.466667pt;}
.yb4{bottom:411.746667pt;}
.y64{bottom:413.026667pt;}
.y144{bottom:417.666667pt;}
.y9b{bottom:418.146667pt;}
.yf8{bottom:418.466667pt;}
.y12e{bottom:419.586667pt;}
.y185{bottom:419.906667pt;}
.y86{bottom:421.186667pt;}
.y15c{bottom:422.306667pt;}
.y2c{bottom:424.226667pt;}
.y1a4{bottom:425.186667pt;}
.yb3{bottom:427.106667pt;}
.y63{bottom:428.226667pt;}
.y143{bottom:432.866667pt;}
.yf7{bottom:433.666667pt;}
.y12d{bottom:434.946667pt;}
.y184{bottom:435.266667pt;}
.y85{bottom:436.546667pt;}
.y15b{bottom:437.666667pt;}
.y1a3{bottom:440.546667pt;}
.y2b{bottom:441.666667pt;}
.yb2{bottom:442.466667pt;}
.y62{bottom:443.586667pt;}
.y142{bottom:448.226667pt;}
.yf6{bottom:449.026667pt;}
.y12c{bottom:450.146667pt;}
.y183{bottom:450.626667pt;}
.y84{bottom:451.906667pt;}
.y15a{bottom:453.026667pt;}
.y1a2{bottom:455.906667pt;}
.y2a{bottom:457.026667pt;}
.yb1{bottom:457.666667pt;}
.y61{bottom:458.946667pt;}
.y141{bottom:463.586667pt;}
.yf5{bottom:464.386667pt;}
.y12b{bottom:465.506667pt;}
.y182{bottom:465.826667pt;}
.y83{bottom:467.266667pt;}
.y159{bottom:468.226667pt;}
.y1a1{bottom:471.266667pt;}
.y29{bottom:472.226667pt;}
.yb0{bottom:473.026667pt;}
.y60{bottom:474.306667pt;}
.y140{bottom:478.946667pt;}
.yf4{bottom:479.746667pt;}
.y82{bottom:480.386667pt;}
.y12a{bottom:480.866667pt;}
.y181{bottom:481.186667pt;}
.y158{bottom:483.586667pt;}
.y1a0{bottom:486.626667pt;}
.y28{bottom:487.586667pt;}
.yaf{bottom:488.386667pt;}
.y5f{bottom:489.666667pt;}
.y13f{bottom:494.306667pt;}
.yf3{bottom:495.106667pt;}
.y129{bottom:496.226667pt;}
.y81{bottom:496.386667pt;}
.y180{bottom:496.546667pt;}
.y11f{bottom:498.626667pt;}
.y157{bottom:498.946667pt;}
.ydf{bottom:501.826667pt;}
.y27{bottom:502.946667pt;}
.yae{bottom:503.746667pt;}
.y5e{bottom:505.026667pt;}
.y13e{bottom:509.666667pt;}
.yf2{bottom:510.466667pt;}
.y128{bottom:511.586667pt;}
.y17f{bottom:511.906667pt;}
.y80{bottom:512.386667pt;}
.y11e{bottom:513.826667pt;}
.y156{bottom:514.306667pt;}
.y19f{bottom:517.186667pt;}
.yde{bottom:517.826667pt;}
.y26{bottom:518.306667pt;}
.yad{bottom:519.106667pt;}
.y5d{bottom:520.226667pt;}
.y13d{bottom:524.866667pt;}
.yf1{bottom:525.666667pt;}
.y127{bottom:526.946667pt;}
.y17e{bottom:527.266667pt;}
.y154{bottom:527.426667pt;}
.y7f{bottom:528.386667pt;}
.y11d{bottom:529.186667pt;}
.y19e{bottom:532.546667pt;}
.y25{bottom:533.666667pt;}
.yac{bottom:534.466667pt;}
.y5c{bottom:535.586667pt;}
.y13c{bottom:540.253333pt;}
.yf0{bottom:541.053333pt;}
.y126{bottom:542.173333pt;}
.y17d{bottom:542.653333pt;}
.y7e{bottom:544.413333pt;}
.y11c{bottom:544.573333pt;}
.y19d{bottom:547.933333pt;}
.y24{bottom:549.053333pt;}
.yab{bottom:549.693333pt;}
.y5b{bottom:550.973333pt;}
.y125{bottom:554.653333pt;}
.y13b{bottom:555.613333pt;}
.yef{bottom:556.413333pt;}
.y17c{bottom:557.853333pt;}
.y153{bottom:558.813333pt;}
.y11b{bottom:559.933333pt;}
.y7c{bottom:560.413333pt;}
.y19c{bottom:563.293333pt;}
.y23{bottom:564.253333pt;}
.yaa{bottom:565.053333pt;}
.y5a{bottom:566.333333pt;}
.y13a{bottom:570.973333pt;}
.yee{bottom:571.773333pt;}
.y17b{bottom:573.213333pt;}
.y11a{bottom:575.293333pt;}
.y19b{bottom:578.653333pt;}
.y7b{bottom:579.293333pt;}
.y22{bottom:579.613333pt;}
.ya9{bottom:580.413333pt;}
.y59{bottom:581.693333pt;}
.y139{bottom:586.333333pt;}
.yed{bottom:587.133333pt;}
.y17a{bottom:588.573333pt;}
.y152{bottom:590.173333pt;}
.y119{bottom:590.653333pt;}
.ya8{bottom:592.893333pt;}
.y19a{bottom:593.853333pt;}
.y21{bottom:594.973333pt;}
.y7a{bottom:595.133333pt;}
.y58{bottom:597.053333pt;}
.y138{bottom:601.693333pt;}
.yec{bottom:602.493333pt;}
.y179{bottom:603.933333pt;}
.y118{bottom:605.853333pt;}
.y199{bottom:609.213333pt;}
.y79{bottom:610.013333pt;}
.y20{bottom:610.333333pt;}
.y57{bottom:612.253333pt;}
.y137{bottom:616.893333pt;}
.yeb{bottom:617.693333pt;}
.y178{bottom:619.293333pt;}
.y117{bottom:621.213333pt;}
.y151{bottom:621.373333pt;}
.y198{bottom:625.213333pt;}
.y1f{bottom:625.693333pt;}
.y56{bottom:627.613333pt;}
.y136{bottom:629.373333pt;}
.yea{bottom:633.053333pt;}
.y177{bottom:634.493333pt;}
.y116{bottom:636.573333pt;}
.y1e{bottom:640.893333pt;}
.y55{bottom:642.973333pt;}
.ye9{bottom:648.413333pt;}
.y176{bottom:649.853333pt;}
.y115{bottom:651.933333pt;}
.y150{bottom:652.733333pt;}
.y1d{bottom:656.253333pt;}
.y54{bottom:658.333333pt;}
.ye8{bottom:663.773333pt;}
.y175{bottom:665.213333pt;}
.y114{bottom:667.293333pt;}
.y1c{bottom:671.613333pt;}
.y53{bottom:673.693333pt;}
.ye7{bottom:679.133333pt;}
.y174{bottom:680.573333pt;}
.y113{bottom:682.493333pt;}
.y14f{bottom:684.093333pt;}
.y1b{bottom:686.973333pt;}
.y52{bottom:688.893333pt;}
.ye6{bottom:694.493333pt;}
.y173{bottom:695.933333pt;}
.y112{bottom:697.853333pt;}
.y1a{bottom:702.333333pt;}
.y51{bottom:704.253333pt;}
.ye5{bottom:709.693333pt;}
.y172{bottom:711.293333pt;}
.y111{bottom:713.853333pt;}
.y14e{bottom:715.453333pt;}
.y19{bottom:717.693333pt;}
.y50{bottom:719.613333pt;}
.ye4{bottom:722.173333pt;}
.y171{bottom:726.493333pt;}
.y110{bottom:729.373333pt;}
.y18{bottom:732.893333pt;}
.y4f{bottom:734.973333pt;}
.y170{bottom:742.493333pt;}
.y10f{bottom:745.373333pt;}
.y14d{bottom:746.813333pt;}
.y17{bottom:748.253333pt;}
.y4e{bottom:750.333333pt;}
.y16f{bottom:760.253333pt;}
.y10e{bottom:761.373333pt;}
.y16{bottom:763.613333pt;}
.y4d{bottom:765.693333pt;}
.y16e{bottom:773.373333pt;}
.y16d{bottom:776.453333pt;}
.y10d{bottom:777.413333pt;}
.y15{bottom:779.013333pt;}
.y4c{bottom:780.933333pt;}
.y14{bottom:795.013333pt;}
.y4b{bottom:796.293333pt;}
.y16c{bottom:810.853333pt;}
.y4a{bottom:811.653333pt;}
.y13{bottom:812.773333pt;}
.y169{bottom:813.733333pt;}
.y49{bottom:827.013333pt;}
.y12{bottom:830.053333pt;}
.y48{bottom:842.373333pt;}
.y11{bottom:845.733333pt;}
.y47{bottom:857.733333pt;}
.y10{bottom:862.693333pt;}
.y168{bottom:863.493333pt;}
.y166{bottom:866.373333pt;}
.y46{bottom:872.933333pt;}
.yf{bottom:879.173333pt;}
.y45{bottom:888.293333pt;}
.ye{bottom:895.173333pt;}
.y44{bottom:903.653333pt;}
.yd{bottom:913.573333pt;}
.ya7{bottom:915.973333pt;}
.y43{bottom:919.013333pt;}
.yc{bottom:931.813333pt;}
.y42{bottom:934.373333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:967.333333pt;}
.y6{bottom:981.413333pt;}
.y5{bottom:997.253333pt;}
.y4{bottom:1012.160000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h14{height:1.787500pt;}
.hb{height:15.200000pt;}
.hc{height:15.232000pt;}
.h10{height:15.360000pt;}
.h11{height:15.392000pt;}
.hf{height:30.560000pt;}
.h12{height:30.592000pt;}
.hd{height:30.720000pt;}
.he{height:30.752000pt;}
.h6{height:33.515625pt;}
.h13{height:36.640000pt;}
.h17{height:36.672000pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.h9{height:38.672812pt;}
.h3{height:41.112500pt;}
.h8{height:41.543750pt;}
.ha{height:43.108125pt;}
.h18{height:43.782500pt;}
.h4{height:45.156250pt;}
.h15{height:46.080000pt;}
.h16{height:52.000000pt;}
.h7{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:74.272000pt;}
.w6{width:83.040000pt;}
.w9{width:96.352000pt;}
.wa{width:98.080000pt;}
.w18{width:112.960000pt;}
.wf{width:116.160000pt;}
.w8{width:120.480000pt;}
.w13{width:121.760000pt;}
.wd{width:122.240000pt;}
.w11{width:122.272000pt;}
.w16{width:131.200000pt;}
.wb{width:138.266667pt;}
.w3{width:140.800000pt;}
.w7{width:141.146667pt;}
.wc{width:144.666667pt;}
.w5{width:145.626667pt;}
.we{width:146.106667pt;}
.w10{width:173.466667pt;}
.w12{width:186.746667pt;}
.w17{width:449.533333pt;}
.w14{width:458.973333pt;}
.w19{width:467.773333pt;}
.w15{width:600.573333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x44{left:2.560000pt;}
.x13{left:6.880000pt;}
.x3d{left:8.160000pt;}
.x36{left:13.760000pt;}
.x3f{left:17.920000pt;}
.x41{left:19.400000pt;}
.x42{left:24.480000pt;}
.x3c{left:28.794667pt;}
.x32{left:29.760000pt;}
.x40{left:36.314667pt;}
.x45{left:38.440000pt;}
.x37{left:47.706667pt;}
.x34{left:61.480000pt;}
.x39{left:72.840000pt;}
.x1{left:96.031988pt;}
.x8{left:97.631988pt;}
.x3e{left:99.880000pt;}
.x3b{left:105.632000pt;}
.x2{left:109.471988pt;}
.x1a{left:111.551988pt;}
.x48{left:120.031988pt;}
.x4{left:140.826655pt;}
.x49{left:144.026655pt;}
.x23{left:145.306655pt;}
.x7{left:147.066655pt;}
.x9{left:159.866655pt;}
.x18{left:187.706655pt;}
.x47{left:191.066655pt;}
.xf{left:198.106655pt;}
.x33{left:213.466667pt;}
.x1c{left:217.786667pt;}
.x43{left:220.506667pt;}
.x3a{left:229.946655pt;}
.x14{left:238.106667pt;}
.x2d{left:239.066655pt;}
.x2b{left:245.146655pt;}
.x24{left:248.226655pt;}
.x29{left:262.466667pt;}
.x2f{left:269.826655pt;}
.x20{left:271.746655pt;}
.x21{left:274.146655pt;}
.x28{left:289.826655pt;}
.x1b{left:299.426655pt;}
.x11{left:300.706655pt;}
.x31{left:303.266655pt;}
.x15{left:313.026667pt;}
.x1d{left:314.946667pt;}
.x26{left:318.306655pt;}
.x12{left:323.426655pt;}
.xc{left:325.986655pt;}
.xb{left:334.306655pt;}
.x46{left:340.066655pt;}
.xe{left:343.586655pt;}
.x6{left:352.386655pt;}
.xd{left:353.346655pt;}
.x5{left:366.466655pt;}
.x2a{left:385.346667pt;}
.x35{left:387.586667pt;}
.xa{left:396.866655pt;}
.x1e{left:413.666667pt;}
.x16{left:459.293333pt;}
.x3{left:460.893322pt;}
.x38{left:510.493333pt;}
.x17{left:542.973333pt;}
.x2e{left:544.893322pt;}
.x1f{left:552.573333pt;}
.x30{left:635.013322pt;}
.x27{left:645.093322pt;}
.x2c{left:647.013322pt;}
.x22{left:658.053322pt;}
.x19{left:687.173322pt;}
.x10{left:694.213322pt;}
.x25{left:696.453322pt;}
}




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