
    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_851cd169a9a6b3ea331f2da7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b365dcd0c0aa59c5c085b6e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.372070;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2e5f4bce96fb7cb9598cc6ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7a1db0dc26dd737b508860b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_13a7023553ffdf3892f76d83.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_7688593273f19946f5b6a030.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.666000px;}
.ls9{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.513600px;}
.ls7{letter-spacing:0.828000px;}
.lsb{letter-spacing:0.900000px;}
.lse{letter-spacing:16.506720px;}
.lsd{letter-spacing:46.026720px;}
.ls8{letter-spacing:57.240000px;}
.ls2{letter-spacing:64.170720px;}
.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;}
}
.ws2{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-15.768000px;}
.ws6{word-spacing:-15.453600px;}
.ws5{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.580000px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.152000px;}
._0{width:1.195200px;}
._9{width:2.204400px;}
._2{width:3.259920px;}
._3{width:4.721040px;}
._4{width:5.725920px;}
._5{width:7.198800px;}
._7{width:8.831520px;}
._6{width:10.039680px;}
._a{width:11.041200px;}
._d{width:12.054960px;}
._8{width:13.804560px;}
._c{width:15.972480px;}
._b{width:17.449920px;}
._11{width:19.080000px;}
._17{width:20.122560px;}
._f{width:21.188160px;}
._e{width:22.230720px;}
._13{width:23.860800px;}
._12{width:24.979680px;}
._18{width:26.115120px;}
._19{width:27.668880px;}
._1b{width:30.292560px;}
._1a{width:31.320000px;}
._15{width:71.855760px;}
._16{width:150.312720px;}
._10{width:201.204000px;}
._14{width:746.264640px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yae{bottom:3.240000px;}
.yc1{bottom:3.420000px;}
.yc4{bottom:3.600000px;}
.yb0{bottom:3.780000px;}
.y116{bottom:3.810000px;}
.y101{bottom:3.816000px;}
.y5{bottom:4.500000px;}
.ye5{bottom:12.060000px;}
.yea{bottom:12.240000px;}
.yee{bottom:12.420000px;}
.ye6{bottom:20.700000px;}
.ye9{bottom:20.880000px;}
.yed{bottom:21.060000px;}
.y4{bottom:24.120000px;}
.y133{bottom:60.120000px;}
.y159{bottom:60.840000px;}
.ya8{bottom:61.200000px;}
.y162{bottom:61.560000px;}
.yc3{bottom:63.540000px;}
.y18c{bottom:73.440000px;}
.y67{bottom:74.160000px;}
.y132{bottom:77.400000px;}
.y158{bottom:77.940000px;}
.ya7{bottom:78.480000px;}
.y102{bottom:78.840000px;}
.yc2{bottom:85.140000px;}
.y43{bottom:89.640000px;}
.y18b{bottom:90.720000px;}
.y66{bottom:91.800000px;}
.y131{bottom:94.500000px;}
.y157{bottom:95.220000px;}
.y100{bottom:95.760000px;}
.ya6{bottom:96.120000px;}
.y42{bottom:106.956000px;}
.y18a{bottom:108.036000px;}
.y65{bottom:109.116000px;}
.y130{bottom:111.816000px;}
.y156{bottom:112.536000px;}
.ya5{bottom:113.436000px;}
.yff{bottom:117.576000px;}
.y41{bottom:124.236000px;}
.y189{bottom:125.316000px;}
.y64{bottom:126.216000px;}
.yc0{bottom:128.736000px;}
.y12f{bottom:129.096000px;}
.y155{bottom:129.816000px;}
.ya4{bottom:130.716000px;}
.yfe{bottom:139.176000px;}
.y188{bottom:142.416000px;}
.y40{bottom:142.596000px;}
.y63{bottom:143.496000px;}
.y12e{bottom:146.376000px;}
.y154{bottom:147.096000px;}
.ya3{bottom:147.816000px;}
.ybf{bottom:153.030000px;}
.y3f{bottom:159.690000px;}
.y153{bottom:160.590000px;}
.y62{bottom:160.770000px;}
.yfd{bottom:160.950000px;}
.y12d{bottom:163.650000px;}
.ya2{bottom:165.090000px;}
.ybe{bottom:170.310000px;}
.y3e{bottom:176.970000px;}
.y61{bottom:178.050000px;}
.y12c{bottom:180.930000px;}
.ya1{bottom:182.370000px;}
.yfc{bottom:182.730000px;}
.y14a{bottom:185.250000px;}
.ybd{bottom:187.590000px;}
.y187{bottom:194.250000px;}
.y3d{bottom:195.330000px;}
.y12b{bottom:198.030000px;}
.ya0{bottom:199.650000px;}
.y149{bottom:202.530000px;}
.yfb{bottom:204.510000px;}
.ybc{bottom:204.870000px;}
.y186{bottom:211.530000px;}
.y3c{bottom:212.610000px;}
.y12a{bottom:215.310000px;}
.y9f{bottom:216.930000px;}
.y148{bottom:219.450000px;}
.ybb{bottom:222.150000px;}
.yfa{bottom:228.810000px;}
.y60{bottom:229.350000px;}
.y3b{bottom:229.890000px;}
.y129{bottom:232.590000px;}
.y9e{bottom:233.670000px;}
.y161{bottom:234.030000px;}
.y147{bottom:237.090000px;}
.yba{bottom:239.430000px;}
.y185{bottom:245.910000px;}
.yf9{bottom:246.090000px;}
.y5f{bottom:246.990000px;}
.y3a{bottom:248.070000px;}
.y128{bottom:249.510000px;}
.y9d{bottom:251.310000px;}
.y146{bottom:254.370000px;}
.yb9{bottom:256.530000px;}
.y184{bottom:263.190000px;}
.yf8{bottom:263.370000px;}
.y5e{bottom:264.270000px;}
.y39{bottom:265.350000px;}
.y9c{bottom:268.590000px;}
.y127{bottom:271.290000px;}
.y145{bottom:271.650000px;}
.yb8{bottom:273.810000px;}
.y183{bottom:280.470000px;}
.yf7{bottom:280.650000px;}
.y5d{bottom:281.550000px;}
.y38{bottom:282.630000px;}
.y160{bottom:285.510000px;}
.y9b{bottom:285.870000px;}
.y144{bottom:288.750000px;}
.yb7{bottom:291.090000px;}
.y126{bottom:292.890000px;}
.y182{bottom:297.750000px;}
.yf6{bottom:297.930000px;}
.y5c{bottom:298.830000px;}
.y37{bottom:300.990000px;}
.y9a{bottom:303.150000px;}
.y143{bottom:306.030000px;}
.yb6{bottom:308.370000px;}
.y125{bottom:314.670000px;}
.yf5{bottom:315.030000px;}
.y5b{bottom:315.930000px;}
.y36{bottom:318.270000px;}
.y142{bottom:319.530000px;}
.y99{bottom:320.070000px;}
.y15f{bottom:320.430000px;}
.yb5{bottom:325.650000px;}
.yf4{bottom:332.310000px;}
.y5a{bottom:333.210000px;}
.y35{bottom:335.550000px;}
.y124{bottom:336.450000px;}
.y98{bottom:337.530000px;}
.yb4{bottom:342.390000px;}
.y181{bottom:349.410000px;}
.yf3{bottom:349.590000px;}
.y59{bottom:350.490000px;}
.y34{bottom:353.370000px;}
.y97{bottom:354.810000px;}
.y123{bottom:358.275000px;}
.yb3{bottom:364.215000px;}
.y180{bottom:366.735000px;}
.yf2{bottom:366.915000px;}
.y58{bottom:367.815000px;}
.y33{bottom:371.055000px;}
.y96{bottom:372.135000px;}
.y122{bottom:382.575000px;}
.y17f{bottom:384.015000px;}
.yf1{bottom:384.195000px;}
.y57{bottom:385.095000px;}
.yb2{bottom:385.995000px;}
.y32{bottom:388.335000px;}
.y95{bottom:389.415000px;}
.y121{bottom:399.855000px;}
.y17e{bottom:401.295000px;}
.yf0{bottom:401.475000px;}
.y56{bottom:402.375000px;}
.y31{bottom:405.615000px;}
.y94{bottom:406.695000px;}
.yb1{bottom:407.775000px;}
.yef{bottom:418.215000px;}
.y17d{bottom:418.575000px;}
.y55{bottom:419.115000px;}
.y30{bottom:422.895000px;}
.y93{bottom:423.975000px;}
.yaf{bottom:429.555000px;}
.y120{bottom:434.415000px;}
.y17c{bottom:435.675000px;}
.y54{bottom:436.755000px;}
.yec{bottom:439.995000px;}
.y2f{bottom:440.175000px;}
.y92{bottom:441.075000px;}
.yad{bottom:451.335000px;}
.y11f{bottom:451.695000px;}
.y17b{bottom:452.955000px;}
.y53{bottom:454.035000px;}
.y2e{bottom:457.275000px;}
.y91{bottom:458.355000px;}
.y11e{bottom:468.795000px;}
.y17a{bottom:470.235000px;}
.y52{bottom:472.395000px;}
.y2d{bottom:474.555000px;}
.y90{bottom:475.635000px;}
.yeb{bottom:479.055000px;}
.y11d{bottom:486.075000px;}
.y179{bottom:487.515000px;}
.y51{bottom:490.755000px;}
.y2c{bottom:491.835000px;}
.y8f{bottom:492.915000px;}
.ye8{bottom:500.835000px;}
.y11c{bottom:503.355000px;}
.y178{bottom:504.795000px;}
.y50{bottom:508.935000px;}
.y2b{bottom:509.115000px;}
.y8e{bottom:510.195000px;}
.y11b{bottom:520.635000px;}
.y177{bottom:522.075000px;}
.y4f{bottom:526.215000px;}
.y2a{bottom:526.395000px;}
.y8d{bottom:527.295000px;}
.y11a{bottom:537.915000px;}
.y176{bottom:539.175000px;}
.ye7{bottom:539.715000px;}
.y4e{bottom:543.135000px;}
.y29{bottom:543.495000px;}
.y8c{bottom:544.575000px;}
.y119{bottom:555.195000px;}
.y175{bottom:556.455000px;}
.y28{bottom:560.775000px;}
.ye4{bottom:561.495000px;}
.y8b{bottom:561.855000px;}
.y118{bottom:571.935000px;}
.y174{bottom:573.735000px;}
.y27{bottom:578.055000px;}
.y15e{bottom:578.775000px;}
.y8a{bottom:579.135000px;}
.y173{bottom:591.015000px;}
.y117{bottom:593.715000px;}
.y26{bottom:595.335000px;}
.y15d{bottom:596.055000px;}
.y89{bottom:596.415000px;}
.ye3{bottom:603.075000px;}
.y172{bottom:608.295000px;}
.y4d{bottom:612.435000px;}
.y25{bottom:612.615000px;}
.yac{bottom:613.335000px;}
.y88{bottom:613.695000px;}
.y115{bottom:615.495000px;}
.ye2{bottom:620.385000px;}
.y152{bottom:621.105000px;}
.y171{bottom:625.605000px;}
.y4c{bottom:629.745000px;}
.y24{bottom:629.925000px;}
.y87{bottom:630.825000px;}
.y114{bottom:637.305000px;}
.ye1{bottom:637.665000px;}
.y151{bottom:638.385000px;}
.y170{bottom:642.705000px;}
.y23{bottom:646.665000px;}
.y4b{bottom:647.025000px;}
.y86{bottom:648.105000px;}
.ye0{bottom:654.945000px;}
.y150{bottom:655.305000px;}
.y113{bottom:659.085000px;}
.y16f{bottom:659.985000px;}
.y4a{bottom:660.525000px;}
.y22{bottom:664.305000px;}
.y85{bottom:665.385000px;}
.ydf{bottom:672.225000px;}
.y14f{bottom:672.945000px;}
.y16e{bottom:676.905000px;}
.y112{bottom:680.685000px;}
.y21{bottom:681.585000px;}
.y84{bottom:682.665000px;}
.yde{bottom:689.325000px;}
.y14e{bottom:690.045000px;}
.y16d{bottom:694.545000px;}
.y20{bottom:698.865000px;}
.y83{bottom:699.945000px;}
.y111{bottom:705.165000px;}
.ydd{bottom:706.605000px;}
.y14d{bottom:707.325000px;}
.y16c{bottom:711.825000px;}
.y1f{bottom:716.145000px;}
.y15c{bottom:716.865000px;}
.y82{bottom:717.225000px;}
.y110{bottom:722.445000px;}
.ydc{bottom:723.885000px;}
.y14c{bottom:724.605000px;}
.y16b{bottom:730.005000px;}
.y1e{bottom:733.425000px;}
.y81{bottom:734.325000px;}
.y14b{bottom:738.105000px;}
.ydb{bottom:741.165000px;}
.y16a{bottom:747.285000px;}
.y1d{bottom:750.525000px;}
.yab{bottom:751.245000px;}
.y80{bottom:751.605000px;}
.y10f{bottom:756.825000px;}
.yda{bottom:758.445000px;}
.y169{bottom:765.645000px;}
.y1c{bottom:767.805000px;}
.y7f{bottom:768.885000px;}
.y10e{bottom:774.105000px;}
.yd9{bottom:775.725000px;}
.y168{bottom:782.925000px;}
.y1b{bottom:785.085000px;}
.y7e{bottom:786.165000px;}
.y10d{bottom:791.385000px;}
.yd8{bottom:792.465000px;}
.y167{bottom:801.285000px;}
.y1a{bottom:802.365000px;}
.y7d{bottom:803.445000px;}
.y10c{bottom:808.665000px;}
.yd7{bottom:814.245000px;}
.y166{bottom:818.565000px;}
.y19{bottom:819.645000px;}
.y7c{bottom:820.725000px;}
.y141{bottom:825.585000px;}
.y10b{bottom:825.945000px;}
.yd6{bottom:836.025000px;}
.y165{bottom:836.745000px;}
.y18{bottom:836.925000px;}
.y7b{bottom:837.825000px;}
.y10a{bottom:843.045000px;}
.y17{bottom:854.025000px;}
.y15b{bottom:854.745000px;}
.y7a{bottom:855.105000px;}
.yd5{bottom:857.805000px;}
.y109{bottom:860.325000px;}
.y16{bottom:871.305000px;}
.y15a{bottom:872.025000px;}
.y79{bottom:872.385000px;}
.y108{bottom:877.290000px;}
.y140{bottom:877.650000px;}
.yd4{bottom:879.630000px;}
.y15{bottom:888.270000px;}
.yaa{bottom:889.350000px;}
.y78{bottom:889.710000px;}
.y13f{bottom:894.570000px;}
.y107{bottom:899.070000px;}
.yd3{bottom:901.230000px;}
.y164{bottom:906.630000px;}
.y77{bottom:906.990000px;}
.y14{bottom:907.530000px;}
.y13e{bottom:912.210000px;}
.y106{bottom:920.850000px;}
.y76{bottom:924.090000px;}
.y13{bottom:925.350000px;}
.yd2{bottom:925.710000px;}
.y13d{bottom:929.490000px;}
.y75{bottom:941.370000px;}
.y12{bottom:942.630000px;}
.yd1{bottom:942.990000px;}
.y13c{bottom:946.590000px;}
.y74{bottom:958.650000px;}
.y11{bottom:959.910000px;}
.yd0{bottom:960.090000px;}
.y13b{bottom:963.870000px;}
.y105{bottom:964.230000px;}
.y73{bottom:975.930000px;}
.y10{bottom:977.190000px;}
.ycf{bottom:977.370000px;}
.y13a{bottom:981.150000px;}
.y104{bottom:986.010000px;}
.y72{bottom:993.210000px;}
.yf{bottom:994.290000px;}
.yce{bottom:994.650000px;}
.y139{bottom:998.430000px;}
.y71{bottom:1010.490000px;}
.ye{bottom:1011.570000px;}
.ycd{bottom:1011.930000px;}
.y138{bottom:1015.710000px;}
.ya9{bottom:1027.230000px;}
.y70{bottom:1027.590000px;}
.ycc{bottom:1029.210000px;}
.yd{bottom:1031.190000px;}
.y137{bottom:1032.990000px;}
.y6f{bottom:1044.870000px;}
.ycb{bottom:1046.490000px;}
.yc{bottom:1048.290000px;}
.y136{bottom:1049.730000px;}
.y6e{bottom:1062.150000px;}
.yca{bottom:1063.590000px;}
.yb{bottom:1065.570000px;}
.y135{bottom:1071.510000px;}
.y49{bottom:1078.350000px;}
.y6d{bottom:1079.430000px;}
.yc9{bottom:1080.870000px;}
.ya{bottom:1082.850000px;}
.y134{bottom:1093.290000px;}
.y48{bottom:1095.630000px;}
.y6c{bottom:1096.710000px;}
.yc8{bottom:1098.150000px;}
.y9{bottom:1100.490000px;}
.y47{bottom:1112.550000px;}
.y163{bottom:1113.630000px;}
.y6b{bottom:1113.990000px;}
.yc7{bottom:1115.070000px;}
.y8{bottom:1121.190000px;}
.y46{bottom:1130.010000px;}
.y6a{bottom:1131.090000px;}
.yc6{bottom:1136.880000px;}
.y7{bottom:1141.920000px;}
.y45{bottom:1147.320000px;}
.y69{bottom:1148.400000px;}
.yc5{bottom:1158.480000px;}
.y6{bottom:1162.620000px;}
.y44{bottom:1164.600000px;}
.y68{bottom:1165.320000px;}
.y103{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.ha{height:17.100000px;}
.hb{height:17.280000px;}
.hc{height:17.316000px;}
.he{height:34.380000px;}
.hd{height:34.560000px;}
.h8{height:41.726953px;}
.h3{height:58.621992px;}
.h6{height:58.651172px;}
.h2{height:59.614102px;}
.h7{height:60.226875px;}
.h9{height:61.423863px;}
.h4{height:65.884219px;}
.h5{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:77.940000px;}
.w3{width:77.976000px;}
.w4{width:78.120000px;}
.w5{width:78.156000px;}
.w11{width:98.496000px;}
.w17{width:104.796000px;}
.w1c{width:111.096000px;}
.w1f{width:112.680000px;}
.w16{width:113.616000px;}
.we{width:115.416000px;}
.w10{width:116.496000px;}
.w1e{width:116.856000px;}
.wb{width:118.656000px;}
.w1b{width:120.096000px;}
.w1a{width:121.680000px;}
.w13{width:122.256000px;}
.wf{width:123.120000px;}
.w14{width:123.156000px;}
.w15{width:123.840000px;}
.w20{width:124.056000px;}
.w19{width:124.956000px;}
.w26{width:125.280000px;}
.w8{width:125.316000px;}
.wd{width:130.536000px;}
.w9{width:131.040000px;}
.wa{width:131.616000px;}
.w24{width:135.396000px;}
.w2b{width:142.236000px;}
.w7{width:152.490000px;}
.w27{width:154.110000px;}
.w2a{width:155.190000px;}
.w2c{width:162.930000px;}
.w22{width:163.110000px;}
.w18{width:170.670000px;}
.wc{width:171.210000px;}
.w12{width:176.970000px;}
.w1d{width:180.750000px;}
.w23{width:200.910000px;}
.w28{width:245.775000px;}
.w25{width:255.675000px;}
.w21{width:264.495000px;}
.w29{width:295.095000px;}
.w2{width:385.815000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:1.260000px;}
.x24{left:4.500000px;}
.x48{left:5.580000px;}
.x27{left:7.380000px;}
.x34{left:9.540000px;}
.x44{left:10.800000px;}
.x5e{left:11.880000px;}
.x36{left:13.320000px;}
.x41{left:15.120000px;}
.x32{left:17.100000px;}
.x4f{left:18.540000px;}
.x3e{left:19.620000px;}
.x2d{left:20.700000px;}
.x54{left:22.140000px;}
.x14{left:23.970000px;}
.x1a{left:25.230000px;}
.x56{left:26.460000px;}
.x1d{left:29.010000px;}
.x2c{left:30.240000px;}
.x45{left:32.400000px;}
.x57{left:33.840000px;}
.x42{left:36.765000px;}
.x50{left:38.385000px;}
.x3b{left:39.456000px;}
.x22{left:41.040000px;}
.x46{left:42.885000px;}
.x4e{left:45.000000px;}
.x2b{left:46.260000px;}
.x30{left:47.736000px;}
.x21{left:48.780000px;}
.x3c{left:49.896000px;}
.x47{left:51.516000px;}
.x11{left:52.920000px;}
.x5{left:54.000000px;}
.x67{left:56.196000px;}
.x3a{left:57.780000px;}
.x49{left:59.796000px;}
.x39{left:61.425000px;}
.x2f{left:63.360000px;}
.x6c{left:64.476000px;}
.x69{left:65.520000px;}
.x5c{left:67.680000px;}
.x58{left:69.516000px;}
.x66{left:72.036000px;}
.x5f{left:77.076000px;}
.xf{left:81.000000px;}
.x6a{left:84.630000px;}
.x5d{left:86.580000px;}
.x60{left:92.556000px;}
.x64{left:98.505000px;}
.x65{left:102.285000px;}
.xe{left:108.036000px;}
.x19{left:114.870000px;}
.x1f{left:121.350000px;}
.x1e{left:137.190000px;}
.x1b{left:146.730000px;}
.x12{left:155.190000px;}
.x1c{left:157.170000px;}
.xb{left:187.590000px;}
.x23{left:203.430000px;}
.xa{left:214.410000px;}
.x6{left:220.350000px;}
.x4a{left:224.850000px;}
.x31{left:236.730000px;}
.xc{left:246.810000px;}
.x8{left:251.670000px;}
.x3{left:256.710000px;}
.x68{left:264.630000px;}
.x2{left:268.770000px;}
.x3d{left:286.095000px;}
.x20{left:299.775000px;}
.x7{left:305.895000px;}
.x61{left:310.755000px;}
.x59{left:328.035000px;}
.x25{left:331.095000px;}
.xd{left:353.055000px;}
.x2e{left:354.495000px;}
.x51{left:355.575000px;}
.x4b{left:357.735000px;}
.x1{left:360.075000px;}
.x3f{left:362.235000px;}
.x33{left:369.615000px;}
.x9{left:402.915000px;}
.x62{left:438.195000px;}
.x13{left:441.075000px;}
.x26{left:458.565000px;}
.x52{left:474.585000px;}
.x4c{left:485.025000px;}
.x35{left:487.365000px;}
.x5a{left:493.485000px;}
.x15{left:521.205000px;}
.x53{left:589.425000px;}
.x28{left:591.945000px;}
.x63{left:594.645000px;}
.x16{left:601.485000px;}
.x4d{left:608.865000px;}
.x37{left:612.645000px;}
.x40{left:613.725000px;}
.x6b{left:664.710000px;}
.x17{left:681.990000px;}
.x5b{left:696.570000px;}
.x55{left:715.650000px;}
.x29{left:725.730000px;}
.x43{left:729.690000px;}
.x38{left:731.490000px;}
.x18{left:762.270000px;}
.x6e{left:790.890000px;}
.x10{left:799.890000px;}
.x6d{left:806.550000px;}
.x4{left:812.130000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.592000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.456533pt;}
.ls7{letter-spacing:0.736000pt;}
.lsb{letter-spacing:0.800000pt;}
.lse{letter-spacing:14.672640pt;}
.lsd{letter-spacing:40.912640pt;}
.ls8{letter-spacing:50.880000pt;}
.ls2{letter-spacing:57.040640pt;}
.ws2{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.016000pt;}
.ws6{word-spacing:-13.736533pt;}
.ws5{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.062400pt;}
._9{width:1.959467pt;}
._2{width:2.897707pt;}
._3{width:4.196480pt;}
._4{width:5.089707pt;}
._5{width:6.398933pt;}
._7{width:7.850240pt;}
._6{width:8.924160pt;}
._a{width:9.814400pt;}
._d{width:10.715520pt;}
._8{width:12.270720pt;}
._c{width:14.197760pt;}
._b{width:15.511040pt;}
._11{width:16.960000pt;}
._17{width:17.886720pt;}
._f{width:18.833920pt;}
._e{width:19.760640pt;}
._13{width:21.209600pt;}
._12{width:22.204160pt;}
._18{width:23.213440pt;}
._19{width:24.594560pt;}
._1b{width:26.926720pt;}
._1a{width:27.840000pt;}
._15{width:63.871787pt;}
._16{width:133.611307pt;}
._10{width:178.848000pt;}
._14{width:663.346347pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:2.880000pt;}
.yc1{bottom:3.040000pt;}
.yc4{bottom:3.200000pt;}
.yb0{bottom:3.360000pt;}
.y116{bottom:3.386667pt;}
.y101{bottom:3.392000pt;}
.y5{bottom:4.000000pt;}
.ye5{bottom:10.720000pt;}
.yea{bottom:10.880000pt;}
.yee{bottom:11.040000pt;}
.ye6{bottom:18.400000pt;}
.ye9{bottom:18.560000pt;}
.yed{bottom:18.720000pt;}
.y4{bottom:21.440000pt;}
.y133{bottom:53.440000pt;}
.y159{bottom:54.080000pt;}
.ya8{bottom:54.400000pt;}
.y162{bottom:54.720000pt;}
.yc3{bottom:56.480000pt;}
.y18c{bottom:65.280000pt;}
.y67{bottom:65.920000pt;}
.y132{bottom:68.800000pt;}
.y158{bottom:69.280000pt;}
.ya7{bottom:69.760000pt;}
.y102{bottom:70.080000pt;}
.yc2{bottom:75.680000pt;}
.y43{bottom:79.680000pt;}
.y18b{bottom:80.640000pt;}
.y66{bottom:81.600000pt;}
.y131{bottom:84.000000pt;}
.y157{bottom:84.640000pt;}
.y100{bottom:85.120000pt;}
.ya6{bottom:85.440000pt;}
.y42{bottom:95.072000pt;}
.y18a{bottom:96.032000pt;}
.y65{bottom:96.992000pt;}
.y130{bottom:99.392000pt;}
.y156{bottom:100.032000pt;}
.ya5{bottom:100.832000pt;}
.yff{bottom:104.512000pt;}
.y41{bottom:110.432000pt;}
.y189{bottom:111.392000pt;}
.y64{bottom:112.192000pt;}
.yc0{bottom:114.432000pt;}
.y12f{bottom:114.752000pt;}
.y155{bottom:115.392000pt;}
.ya4{bottom:116.192000pt;}
.yfe{bottom:123.712000pt;}
.y188{bottom:126.592000pt;}
.y40{bottom:126.752000pt;}
.y63{bottom:127.552000pt;}
.y12e{bottom:130.112000pt;}
.y154{bottom:130.752000pt;}
.ya3{bottom:131.392000pt;}
.ybf{bottom:136.026667pt;}
.y3f{bottom:141.946667pt;}
.y153{bottom:142.746667pt;}
.y62{bottom:142.906667pt;}
.yfd{bottom:143.066667pt;}
.y12d{bottom:145.466667pt;}
.ya2{bottom:146.746667pt;}
.ybe{bottom:151.386667pt;}
.y3e{bottom:157.306667pt;}
.y61{bottom:158.266667pt;}
.y12c{bottom:160.826667pt;}
.ya1{bottom:162.106667pt;}
.yfc{bottom:162.426667pt;}
.y14a{bottom:164.666667pt;}
.ybd{bottom:166.746667pt;}
.y187{bottom:172.666667pt;}
.y3d{bottom:173.626667pt;}
.y12b{bottom:176.026667pt;}
.ya0{bottom:177.466667pt;}
.y149{bottom:180.026667pt;}
.yfb{bottom:181.786667pt;}
.ybc{bottom:182.106667pt;}
.y186{bottom:188.026667pt;}
.y3c{bottom:188.986667pt;}
.y12a{bottom:191.386667pt;}
.y9f{bottom:192.826667pt;}
.y148{bottom:195.066667pt;}
.ybb{bottom:197.466667pt;}
.yfa{bottom:203.386667pt;}
.y60{bottom:203.866667pt;}
.y3b{bottom:204.346667pt;}
.y129{bottom:206.746667pt;}
.y9e{bottom:207.706667pt;}
.y161{bottom:208.026667pt;}
.y147{bottom:210.746667pt;}
.yba{bottom:212.826667pt;}
.y185{bottom:218.586667pt;}
.yf9{bottom:218.746667pt;}
.y5f{bottom:219.546667pt;}
.y3a{bottom:220.506667pt;}
.y128{bottom:221.786667pt;}
.y9d{bottom:223.386667pt;}
.y146{bottom:226.106667pt;}
.yb9{bottom:228.026667pt;}
.y184{bottom:233.946667pt;}
.yf8{bottom:234.106667pt;}
.y5e{bottom:234.906667pt;}
.y39{bottom:235.866667pt;}
.y9c{bottom:238.746667pt;}
.y127{bottom:241.146667pt;}
.y145{bottom:241.466667pt;}
.yb8{bottom:243.386667pt;}
.y183{bottom:249.306667pt;}
.yf7{bottom:249.466667pt;}
.y5d{bottom:250.266667pt;}
.y38{bottom:251.226667pt;}
.y160{bottom:253.786667pt;}
.y9b{bottom:254.106667pt;}
.y144{bottom:256.666667pt;}
.yb7{bottom:258.746667pt;}
.y126{bottom:260.346667pt;}
.y182{bottom:264.666667pt;}
.yf6{bottom:264.826667pt;}
.y5c{bottom:265.626667pt;}
.y37{bottom:267.546667pt;}
.y9a{bottom:269.466667pt;}
.y143{bottom:272.026667pt;}
.yb6{bottom:274.106667pt;}
.y125{bottom:279.706667pt;}
.yf5{bottom:280.026667pt;}
.y5b{bottom:280.826667pt;}
.y36{bottom:282.906667pt;}
.y142{bottom:284.026667pt;}
.y99{bottom:284.506667pt;}
.y15f{bottom:284.826667pt;}
.yb5{bottom:289.466667pt;}
.yf4{bottom:295.386667pt;}
.y5a{bottom:296.186667pt;}
.y35{bottom:298.266667pt;}
.y124{bottom:299.066667pt;}
.y98{bottom:300.026667pt;}
.yb4{bottom:304.346667pt;}
.y181{bottom:310.586667pt;}
.yf3{bottom:310.746667pt;}
.y59{bottom:311.546667pt;}
.y34{bottom:314.106667pt;}
.y97{bottom:315.386667pt;}
.y123{bottom:318.466667pt;}
.yb3{bottom:323.746667pt;}
.y180{bottom:325.986667pt;}
.yf2{bottom:326.146667pt;}
.y58{bottom:326.946667pt;}
.y33{bottom:329.826667pt;}
.y96{bottom:330.786667pt;}
.y122{bottom:340.066667pt;}
.y17f{bottom:341.346667pt;}
.yf1{bottom:341.506667pt;}
.y57{bottom:342.306667pt;}
.yb2{bottom:343.106667pt;}
.y32{bottom:345.186667pt;}
.y95{bottom:346.146667pt;}
.y121{bottom:355.426667pt;}
.y17e{bottom:356.706667pt;}
.yf0{bottom:356.866667pt;}
.y56{bottom:357.666667pt;}
.y31{bottom:360.546667pt;}
.y94{bottom:361.506667pt;}
.yb1{bottom:362.466667pt;}
.yef{bottom:371.746667pt;}
.y17d{bottom:372.066667pt;}
.y55{bottom:372.546667pt;}
.y30{bottom:375.906667pt;}
.y93{bottom:376.866667pt;}
.yaf{bottom:381.826667pt;}
.y120{bottom:386.146667pt;}
.y17c{bottom:387.266667pt;}
.y54{bottom:388.226667pt;}
.yec{bottom:391.106667pt;}
.y2f{bottom:391.266667pt;}
.y92{bottom:392.066667pt;}
.yad{bottom:401.186667pt;}
.y11f{bottom:401.506667pt;}
.y17b{bottom:402.626667pt;}
.y53{bottom:403.586667pt;}
.y2e{bottom:406.466667pt;}
.y91{bottom:407.426667pt;}
.y11e{bottom:416.706667pt;}
.y17a{bottom:417.986667pt;}
.y52{bottom:419.906667pt;}
.y2d{bottom:421.826667pt;}
.y90{bottom:422.786667pt;}
.yeb{bottom:425.826667pt;}
.y11d{bottom:432.066667pt;}
.y179{bottom:433.346667pt;}
.y51{bottom:436.226667pt;}
.y2c{bottom:437.186667pt;}
.y8f{bottom:438.146667pt;}
.ye8{bottom:445.186667pt;}
.y11c{bottom:447.426667pt;}
.y178{bottom:448.706667pt;}
.y50{bottom:452.386667pt;}
.y2b{bottom:452.546667pt;}
.y8e{bottom:453.506667pt;}
.y11b{bottom:462.786667pt;}
.y177{bottom:464.066667pt;}
.y4f{bottom:467.746667pt;}
.y2a{bottom:467.906667pt;}
.y8d{bottom:468.706667pt;}
.y11a{bottom:478.146667pt;}
.y176{bottom:479.266667pt;}
.ye7{bottom:479.746667pt;}
.y4e{bottom:482.786667pt;}
.y29{bottom:483.106667pt;}
.y8c{bottom:484.066667pt;}
.y119{bottom:493.506667pt;}
.y175{bottom:494.626667pt;}
.y28{bottom:498.466667pt;}
.ye4{bottom:499.106667pt;}
.y8b{bottom:499.426667pt;}
.y118{bottom:508.386667pt;}
.y174{bottom:509.986667pt;}
.y27{bottom:513.826667pt;}
.y15e{bottom:514.466667pt;}
.y8a{bottom:514.786667pt;}
.y173{bottom:525.346667pt;}
.y117{bottom:527.746667pt;}
.y26{bottom:529.186667pt;}
.y15d{bottom:529.826667pt;}
.y89{bottom:530.146667pt;}
.ye3{bottom:536.066667pt;}
.y172{bottom:540.706667pt;}
.y4d{bottom:544.386667pt;}
.y25{bottom:544.546667pt;}
.yac{bottom:545.186667pt;}
.y88{bottom:545.506667pt;}
.y115{bottom:547.106667pt;}
.ye2{bottom:551.453333pt;}
.y152{bottom:552.093333pt;}
.y171{bottom:556.093333pt;}
.y4c{bottom:559.773333pt;}
.y24{bottom:559.933333pt;}
.y87{bottom:560.733333pt;}
.y114{bottom:566.493333pt;}
.ye1{bottom:566.813333pt;}
.y151{bottom:567.453333pt;}
.y170{bottom:571.293333pt;}
.y23{bottom:574.813333pt;}
.y4b{bottom:575.133333pt;}
.y86{bottom:576.093333pt;}
.ye0{bottom:582.173333pt;}
.y150{bottom:582.493333pt;}
.y113{bottom:585.853333pt;}
.y16f{bottom:586.653333pt;}
.y4a{bottom:587.133333pt;}
.y22{bottom:590.493333pt;}
.y85{bottom:591.453333pt;}
.ydf{bottom:597.533333pt;}
.y14f{bottom:598.173333pt;}
.y16e{bottom:601.693333pt;}
.y112{bottom:605.053333pt;}
.y21{bottom:605.853333pt;}
.y84{bottom:606.813333pt;}
.yde{bottom:612.733333pt;}
.y14e{bottom:613.373333pt;}
.y16d{bottom:617.373333pt;}
.y20{bottom:621.213333pt;}
.y83{bottom:622.173333pt;}
.y111{bottom:626.813333pt;}
.ydd{bottom:628.093333pt;}
.y14d{bottom:628.733333pt;}
.y16c{bottom:632.733333pt;}
.y1f{bottom:636.573333pt;}
.y15c{bottom:637.213333pt;}
.y82{bottom:637.533333pt;}
.y110{bottom:642.173333pt;}
.ydc{bottom:643.453333pt;}
.y14c{bottom:644.093333pt;}
.y16b{bottom:648.893333pt;}
.y1e{bottom:651.933333pt;}
.y81{bottom:652.733333pt;}
.y14b{bottom:656.093333pt;}
.ydb{bottom:658.813333pt;}
.y16a{bottom:664.253333pt;}
.y1d{bottom:667.133333pt;}
.yab{bottom:667.773333pt;}
.y80{bottom:668.093333pt;}
.y10f{bottom:672.733333pt;}
.yda{bottom:674.173333pt;}
.y169{bottom:680.573333pt;}
.y1c{bottom:682.493333pt;}
.y7f{bottom:683.453333pt;}
.y10e{bottom:688.093333pt;}
.yd9{bottom:689.533333pt;}
.y168{bottom:695.933333pt;}
.y1b{bottom:697.853333pt;}
.y7e{bottom:698.813333pt;}
.y10d{bottom:703.453333pt;}
.yd8{bottom:704.413333pt;}
.y167{bottom:712.253333pt;}
.y1a{bottom:713.213333pt;}
.y7d{bottom:714.173333pt;}
.y10c{bottom:718.813333pt;}
.yd7{bottom:723.773333pt;}
.y166{bottom:727.613333pt;}
.y19{bottom:728.573333pt;}
.y7c{bottom:729.533333pt;}
.y141{bottom:733.853333pt;}
.y10b{bottom:734.173333pt;}
.yd6{bottom:743.133333pt;}
.y165{bottom:743.773333pt;}
.y18{bottom:743.933333pt;}
.y7b{bottom:744.733333pt;}
.y10a{bottom:749.373333pt;}
.y17{bottom:759.133333pt;}
.y15b{bottom:759.773333pt;}
.y7a{bottom:760.093333pt;}
.yd5{bottom:762.493333pt;}
.y109{bottom:764.733333pt;}
.y16{bottom:774.493333pt;}
.y15a{bottom:775.133333pt;}
.y79{bottom:775.453333pt;}
.y108{bottom:779.813333pt;}
.y140{bottom:780.133333pt;}
.yd4{bottom:781.893333pt;}
.y15{bottom:789.573333pt;}
.yaa{bottom:790.533333pt;}
.y78{bottom:790.853333pt;}
.y13f{bottom:795.173333pt;}
.y107{bottom:799.173333pt;}
.yd3{bottom:801.093333pt;}
.y164{bottom:805.893333pt;}
.y77{bottom:806.213333pt;}
.y14{bottom:806.693333pt;}
.y13e{bottom:810.853333pt;}
.y106{bottom:818.533333pt;}
.y76{bottom:821.413333pt;}
.y13{bottom:822.533333pt;}
.yd2{bottom:822.853333pt;}
.y13d{bottom:826.213333pt;}
.y75{bottom:836.773333pt;}
.y12{bottom:837.893333pt;}
.yd1{bottom:838.213333pt;}
.y13c{bottom:841.413333pt;}
.y74{bottom:852.133333pt;}
.y11{bottom:853.253333pt;}
.yd0{bottom:853.413333pt;}
.y13b{bottom:856.773333pt;}
.y105{bottom:857.093333pt;}
.y73{bottom:867.493333pt;}
.y10{bottom:868.613333pt;}
.ycf{bottom:868.773333pt;}
.y13a{bottom:872.133333pt;}
.y104{bottom:876.453333pt;}
.y72{bottom:882.853333pt;}
.yf{bottom:883.813333pt;}
.yce{bottom:884.133333pt;}
.y139{bottom:887.493333pt;}
.y71{bottom:898.213333pt;}
.ye{bottom:899.173333pt;}
.ycd{bottom:899.493333pt;}
.y138{bottom:902.853333pt;}
.ya9{bottom:913.093333pt;}
.y70{bottom:913.413333pt;}
.ycc{bottom:914.853333pt;}
.yd{bottom:916.613333pt;}
.y137{bottom:918.213333pt;}
.y6f{bottom:928.773333pt;}
.ycb{bottom:930.213333pt;}
.yc{bottom:931.813333pt;}
.y136{bottom:933.093333pt;}
.y6e{bottom:944.133333pt;}
.yca{bottom:945.413333pt;}
.yb{bottom:947.173333pt;}
.y135{bottom:952.453333pt;}
.y49{bottom:958.533333pt;}
.y6d{bottom:959.493333pt;}
.yc9{bottom:960.773333pt;}
.ya{bottom:962.533333pt;}
.y134{bottom:971.813333pt;}
.y48{bottom:973.893333pt;}
.y6c{bottom:974.853333pt;}
.yc8{bottom:976.133333pt;}
.y9{bottom:978.213333pt;}
.y47{bottom:988.933333pt;}
.y163{bottom:989.893333pt;}
.y6b{bottom:990.213333pt;}
.yc7{bottom:991.173333pt;}
.y8{bottom:996.613333pt;}
.y46{bottom:1004.453333pt;}
.y6a{bottom:1005.413333pt;}
.yc6{bottom:1010.560000pt;}
.y7{bottom:1015.040000pt;}
.y45{bottom:1019.840000pt;}
.y69{bottom:1020.800000pt;}
.yc5{bottom:1029.760000pt;}
.y6{bottom:1033.440000pt;}
.y44{bottom:1035.200000pt;}
.y68{bottom:1035.840000pt;}
.y103{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.ha{height:15.200000pt;}
.hb{height:15.360000pt;}
.hc{height:15.392000pt;}
.he{height:30.560000pt;}
.hd{height:30.720000pt;}
.h8{height:37.090625pt;}
.h3{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2{height:52.990313pt;}
.h7{height:53.535000pt;}
.h9{height:54.598989pt;}
.h4{height:58.563750pt;}
.h5{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:69.280000pt;}
.w3{width:69.312000pt;}
.w4{width:69.440000pt;}
.w5{width:69.472000pt;}
.w11{width:87.552000pt;}
.w17{width:93.152000pt;}
.w1c{width:98.752000pt;}
.w1f{width:100.160000pt;}
.w16{width:100.992000pt;}
.we{width:102.592000pt;}
.w10{width:103.552000pt;}
.w1e{width:103.872000pt;}
.wb{width:105.472000pt;}
.w1b{width:106.752000pt;}
.w1a{width:108.160000pt;}
.w13{width:108.672000pt;}
.wf{width:109.440000pt;}
.w14{width:109.472000pt;}
.w15{width:110.080000pt;}
.w20{width:110.272000pt;}
.w19{width:111.072000pt;}
.w26{width:111.360000pt;}
.w8{width:111.392000pt;}
.wd{width:116.032000pt;}
.w9{width:116.480000pt;}
.wa{width:116.992000pt;}
.w24{width:120.352000pt;}
.w2b{width:126.432000pt;}
.w7{width:135.546667pt;}
.w27{width:136.986667pt;}
.w2a{width:137.946667pt;}
.w2c{width:144.826667pt;}
.w22{width:144.986667pt;}
.w18{width:151.706667pt;}
.wc{width:152.186667pt;}
.w12{width:157.306667pt;}
.w1d{width:160.666667pt;}
.w23{width:178.586667pt;}
.w28{width:218.466667pt;}
.w25{width:227.266667pt;}
.w21{width:235.106667pt;}
.w29{width:262.306667pt;}
.w2{width:342.946667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:1.120000pt;}
.x24{left:4.000000pt;}
.x48{left:4.960000pt;}
.x27{left:6.560000pt;}
.x34{left:8.480000pt;}
.x44{left:9.600000pt;}
.x5e{left:10.560000pt;}
.x36{left:11.840000pt;}
.x41{left:13.440000pt;}
.x32{left:15.200000pt;}
.x4f{left:16.480000pt;}
.x3e{left:17.440000pt;}
.x2d{left:18.400000pt;}
.x54{left:19.680000pt;}
.x14{left:21.306667pt;}
.x1a{left:22.426667pt;}
.x56{left:23.520000pt;}
.x1d{left:25.786667pt;}
.x2c{left:26.880000pt;}
.x45{left:28.800000pt;}
.x57{left:30.080000pt;}
.x42{left:32.680000pt;}
.x50{left:34.120000pt;}
.x3b{left:35.072000pt;}
.x22{left:36.480000pt;}
.x46{left:38.120000pt;}
.x4e{left:40.000000pt;}
.x2b{left:41.120000pt;}
.x30{left:42.432000pt;}
.x21{left:43.360000pt;}
.x3c{left:44.352000pt;}
.x47{left:45.792000pt;}
.x11{left:47.040000pt;}
.x5{left:48.000000pt;}
.x67{left:49.952000pt;}
.x3a{left:51.360000pt;}
.x49{left:53.152000pt;}
.x39{left:54.600000pt;}
.x2f{left:56.320000pt;}
.x6c{left:57.312000pt;}
.x69{left:58.240000pt;}
.x5c{left:60.160000pt;}
.x58{left:61.792000pt;}
.x66{left:64.032000pt;}
.x5f{left:68.512000pt;}
.xf{left:72.000000pt;}
.x6a{left:75.226667pt;}
.x5d{left:76.960000pt;}
.x60{left:82.272000pt;}
.x64{left:87.560000pt;}
.x65{left:90.920000pt;}
.xe{left:96.032000pt;}
.x19{left:102.106667pt;}
.x1f{left:107.866667pt;}
.x1e{left:121.946667pt;}
.x1b{left:130.426667pt;}
.x12{left:137.946667pt;}
.x1c{left:139.706667pt;}
.xb{left:166.746667pt;}
.x23{left:180.826667pt;}
.xa{left:190.586667pt;}
.x6{left:195.866667pt;}
.x4a{left:199.866667pt;}
.x31{left:210.426667pt;}
.xc{left:219.386667pt;}
.x8{left:223.706667pt;}
.x3{left:228.186667pt;}
.x68{left:235.226667pt;}
.x2{left:238.906667pt;}
.x3d{left:254.306667pt;}
.x20{left:266.466667pt;}
.x7{left:271.906667pt;}
.x61{left:276.226667pt;}
.x59{left:291.586667pt;}
.x25{left:294.306667pt;}
.xd{left:313.826667pt;}
.x2e{left:315.106667pt;}
.x51{left:316.066667pt;}
.x4b{left:317.986667pt;}
.x1{left:320.066667pt;}
.x3f{left:321.986667pt;}
.x33{left:328.546667pt;}
.x9{left:358.146667pt;}
.x62{left:389.506667pt;}
.x13{left:392.066667pt;}
.x26{left:407.613333pt;}
.x52{left:421.853333pt;}
.x4c{left:431.133333pt;}
.x35{left:433.213333pt;}
.x5a{left:438.653333pt;}
.x15{left:463.293333pt;}
.x53{left:523.933333pt;}
.x28{left:526.173333pt;}
.x63{left:528.573333pt;}
.x16{left:534.653333pt;}
.x4d{left:541.213333pt;}
.x37{left:544.573333pt;}
.x40{left:545.533333pt;}
.x6b{left:590.853333pt;}
.x17{left:606.213333pt;}
.x5b{left:619.173333pt;}
.x55{left:636.133333pt;}
.x29{left:645.093333pt;}
.x43{left:648.613333pt;}
.x38{left:650.213333pt;}
.x18{left:677.573333pt;}
.x6e{left:703.013333pt;}
.x10{left:711.013333pt;}
.x6d{left:716.933333pt;}
.x4{left:721.893333pt;}
}




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