
    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_ac58afbd16b7737e36ac2e6e.woff')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_fc6ae72501abc3be2e365832.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4a8abfd3e8a3ff5e428cb439.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_98633a446f01facb6a7cb6b3.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2a1854aea0ea13319da53037.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a8141ec46e8a5524a6cebb58.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f19e389a4b7b10eb94cdaed7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.891113;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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.666000px;}
.ls7{letter-spacing:-0.413400px;}
.ls4{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.106800px;}
.ls3{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.186480px;}
.lsd{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.666000px;}
.lsc{letter-spacing:0.828000px;}
.ls16{letter-spacing:0.876000px;}
.ls12{letter-spacing:0.978000px;}
.ls18{letter-spacing:1.080000px;}
.ls14{letter-spacing:16.506720px;}
.ls13{letter-spacing:46.026720px;}
.ls6{letter-spacing:64.170720px;}
.lsa{letter-spacing:201.204000px;}
.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:-59.760000px;}
.wsd{word-spacing:-16.020000px;}
.wsa{word-spacing:-15.816000px;}
.wsc{word-spacing:-15.606000px;}
.ws4{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.274000px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-2.087280px;}
._2{margin-left:-1.080000px;}
._0{width:1.195200px;}
._3{width:2.681520px;}
._1{width:3.765840px;}
._9{width:5.378400px;}
._4{width:6.872400px;}
._6{width:8.831520px;}
._5{width:10.039680px;}
._a{width:11.175600px;}
._e{width:12.778320px;}
._7{width:13.804560px;}
._b{width:16.673040px;}
._c{width:18.585360px;}
._d{width:19.783920px;}
._f{width:21.459840px;}
._11{width:23.171520px;}
._10{width:24.800400px;}
._8{width:201.204000px;}
._12{width:600.724560px;}
._13{width:724.873440px;}
.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:72.000000px;}
.y15b{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.yd2{bottom:3.240000px;}
.ybd{bottom:3.420000px;}
.yc3{bottom:3.600000px;}
.ybf{bottom:3.780000px;}
.y172{bottom:3.816000px;}
.y5{bottom:3.960000px;}
.y157{bottom:12.060000px;}
.y158{bottom:20.700000px;}
.y4{bottom:24.660000px;}
.y104{bottom:60.120000px;}
.y45{bottom:60.480000px;}
.yb6{bottom:60.840000px;}
.y1a4{bottom:61.200000px;}
.yad{bottom:61.560000px;}
.y19c{bottom:62.280000px;}
.y135{bottom:69.840000px;}
.yd7{bottom:71.640000px;}
.y173{bottom:73.980000px;}
.y84{bottom:74.520000px;}
.y103{bottom:77.400000px;}
.y44{bottom:77.760000px;}
.yb5{bottom:78.120000px;}
.y1a3{bottom:78.480000px;}
.yac{bottom:78.840000px;}
.y19b{bottom:79.200000px;}
.y134{bottom:87.120000px;}
.y83{bottom:91.800000px;}
.yd6{bottom:93.420000px;}
.y102{bottom:94.500000px;}
.y43{bottom:95.040000px;}
.yb4{bottom:95.220000px;}
.y171{bottom:95.760000px;}
.yab{bottom:96.120000px;}
.y19a{bottom:96.480000px;}
.y133{bottom:104.436000px;}
.y82{bottom:109.116000px;}
.y101{bottom:111.816000px;}
.y42{bottom:112.356000px;}
.yb3{bottom:112.536000px;}
.yaa{bottom:113.436000px;}
.y199{bottom:114.156000px;}
.yd5{bottom:115.236000px;}
.y170{bottom:117.576000px;}
.y132{bottom:121.536000px;}
.y81{bottom:126.396000px;}
.y100{bottom:129.096000px;}
.y41{bottom:129.636000px;}
.yb2{bottom:129.816000px;}
.ya9{bottom:130.716000px;}
.y198{bottom:131.256000px;}
.yd4{bottom:137.016000px;}
.y131{bottom:138.456000px;}
.y16f{bottom:141.876000px;}
.y80{bottom:143.496000px;}
.yff{bottom:146.376000px;}
.y40{bottom:146.916000px;}
.yb1{bottom:147.096000px;}
.y1a2{bottom:147.456000px;}
.ya8{bottom:147.816000px;}
.y197{bottom:148.536000px;}
.y130{bottom:156.090000px;}
.yd3{bottom:158.790000px;}
.y16e{bottom:159.150000px;}
.y7f{bottom:160.770000px;}
.yfe{bottom:163.650000px;}
.y3f{bottom:164.010000px;}
.yb0{bottom:164.370000px;}
.ya7{bottom:165.090000px;}
.y196{bottom:165.810000px;}
.y12f{bottom:173.370000px;}
.y16d{bottom:176.430000px;}
.y7e{bottom:178.050000px;}
.yd1{bottom:180.570000px;}
.y3e{bottom:181.290000px;}
.ya6{bottom:182.370000px;}
.y195{bottom:183.090000px;}
.y12e{bottom:190.650000px;}
.y16c{bottom:193.530000px;}
.yaf{bottom:195.150000px;}
.y7d{bottom:195.330000px;}
.y3d{bottom:198.570000px;}
.ya5{bottom:199.650000px;}
.y194{bottom:200.370000px;}
.yfd{bottom:202.170000px;}
.yd0{bottom:204.870000px;}
.y12d{bottom:207.930000px;}
.y16b{bottom:210.450000px;}
.y7c{bottom:212.610000px;}
.y3c{bottom:215.850000px;}
.ya4{bottom:216.930000px;}
.y193{bottom:217.650000px;}
.ycf{bottom:222.150000px;}
.yfc{bottom:223.950000px;}
.y12c{bottom:225.030000px;}
.y16a{bottom:228.090000px;}
.y7b{bottom:229.890000px;}
.y3b{bottom:233.130000px;}
.y1a1{bottom:233.670000px;}
.ya3{bottom:234.030000px;}
.y192{bottom:234.390000px;}
.yce{bottom:239.430000px;}
.y12b{bottom:242.310000px;}
.y169{bottom:245.370000px;}
.yfb{bottom:245.730000px;}
.y7a{bottom:246.990000px;}
.y3a{bottom:250.230000px;}
.ya2{bottom:251.310000px;}
.y191{bottom:252.030000px;}
.ycd{bottom:256.170000px;}
.y12a{bottom:259.590000px;}
.y168{bottom:262.650000px;}
.y79{bottom:264.270000px;}
.y190{bottom:265.530000px;}
.y39{bottom:267.510000px;}
.ya1{bottom:268.590000px;}
.ycc{bottom:273.810000px;}
.y129{bottom:276.870000px;}
.y167{bottom:279.930000px;}
.y78{bottom:281.550000px;}
.y38{bottom:284.790000px;}
.ya0{bottom:285.870000px;}
.yfa{bottom:289.290000px;}
.ycb{bottom:291.090000px;}
.y128{bottom:293.790000px;}
.y166{bottom:297.030000px;}
.y77{bottom:298.830000px;}
.y37{bottom:302.070000px;}
.y9f{bottom:303.150000px;}
.yca{bottom:308.370000px;}
.yf9{bottom:313.590000px;}
.y165{bottom:314.310000px;}
.y127{bottom:315.390000px;}
.y76{bottom:315.750000px;}
.y36{bottom:318.990000px;}
.y9e{bottom:320.430000px;}
.yc9{bottom:325.650000px;}
.yf8{bottom:330.870000px;}
.y164{bottom:331.590000px;}
.y75{bottom:333.210000px;}
.y35{bottom:336.630000px;}
.y9d{bottom:337.530000px;}
.y126{bottom:339.870000px;}
.yc8{bottom:342.930000px;}
.yf7{bottom:348.150000px;}
.y163{bottom:348.870000px;}
.y74{bottom:350.490000px;}
.y34{bottom:353.730000px;}
.y9c{bottom:354.810000px;}
.y125{bottom:357.195000px;}
.yc7{bottom:360.075000px;}
.yf6{bottom:365.475000px;}
.y162{bottom:366.195000px;}
.y73{bottom:367.815000px;}
.y33{bottom:371.055000px;}
.y9b{bottom:371.775000px;}
.y1a0{bottom:372.135000px;}
.y124{bottom:374.475000px;}
.yc6{bottom:377.355000px;}
.yf5{bottom:382.215000px;}
.y161{bottom:383.475000px;}
.y72{bottom:385.095000px;}
.y32{bottom:388.335000px;}
.y9a{bottom:389.415000px;}
.y123{bottom:391.215000px;}
.yc5{bottom:394.635000px;}
.yf4{bottom:399.855000px;}
.y160{bottom:400.575000px;}
.y71{bottom:402.375000px;}
.y31{bottom:405.615000px;}
.y99{bottom:406.695000px;}
.y122{bottom:408.855000px;}
.yc4{bottom:411.555000px;}
.yf3{bottom:417.135000px;}
.y15f{bottom:417.855000px;}
.y70{bottom:419.295000px;}
.y30{bottom:422.895000px;}
.y98{bottom:423.975000px;}
.y121{bottom:426.135000px;}
.yc2{bottom:433.335000px;}
.yf2{bottom:434.415000px;}
.y15e{bottom:434.775000px;}
.y6f{bottom:436.755000px;}
.y2f{bottom:440.175000px;}
.y97{bottom:441.075000px;}
.y120{bottom:443.415000px;}
.yf1{bottom:451.695000px;}
.y6e{bottom:454.035000px;}
.yc1{bottom:454.935000px;}
.y15d{bottom:456.555000px;}
.y2e{bottom:457.275000px;}
.y96{bottom:458.355000px;}
.y11f{bottom:460.695000px;}
.yf0{bottom:468.795000px;}
.y6d{bottom:471.315000px;}
.y2d{bottom:474.555000px;}
.y95{bottom:475.635000px;}
.yc0{bottom:476.715000px;}
.y11e{bottom:477.795000px;}
.y15c{bottom:478.335000px;}
.yef{bottom:486.075000px;}
.y6c{bottom:488.595000px;}
.y2c{bottom:491.835000px;}
.y94{bottom:492.915000px;}
.y11d{bottom:495.075000px;}
.ybe{bottom:498.495000px;}
.y15a{bottom:499.935000px;}
.yee{bottom:503.355000px;}
.y6b{bottom:505.875000px;}
.y2b{bottom:508.755000px;}
.y93{bottom:510.195000px;}
.y11c{bottom:512.355000px;}
.ybc{bottom:520.275000px;}
.y159{bottom:521.715000px;}
.y6a{bottom:523.155000px;}
.y2a{bottom:526.395000px;}
.y92{bottom:527.295000px;}
.y11b{bottom:529.635000px;}
.y69{bottom:540.255000px;}
.yed{bottom:542.055000px;}
.y29{bottom:543.495000px;}
.y91{bottom:544.575000px;}
.y11a{bottom:546.555000px;}
.y68{bottom:557.535000px;}
.y28{bottom:560.775000px;}
.y90{bottom:561.855000px;}
.yec{bottom:563.835000px;}
.y119{bottom:568.335000px;}
.y67{bottom:574.815000px;}
.y27{bottom:578.055000px;}
.y19f{bottom:578.775000px;}
.y8f{bottom:579.135000px;}
.y156{bottom:585.075000px;}
.yeb{bottom:585.435000px;}
.y118{bottom:589.935000px;}
.y66{bottom:592.095000px;}
.y26{bottom:594.975000px;}
.y8e{bottom:596.415000px;}
.y155{bottom:602.355000px;}
.yea{bottom:607.215000px;}
.y65{bottom:609.015000px;}
.y117{bottom:611.715000px;}
.y25{bottom:612.615000px;}
.y8d{bottom:613.695000px;}
.y154{bottom:619.665000px;}
.y64{bottom:626.685000px;}
.ye9{bottom:629.025000px;}
.y24{bottom:629.925000px;}
.ybb{bottom:630.465000px;}
.y8c{bottom:630.825000px;}
.y116{bottom:633.525000px;}
.y153{bottom:636.945000px;}
.y63{bottom:643.785000px;}
.y23{bottom:647.025000px;}
.y8b{bottom:648.105000px;}
.ye8{bottom:653.325000px;}
.y152{bottom:654.225000px;}
.y115{bottom:657.825000px;}
.y62{bottom:662.145000px;}
.y22{bottom:664.305000px;}
.y8a{bottom:665.385000px;}
.y151{bottom:670.965000px;}
.y114{bottom:675.105000px;}
.y18f{bottom:679.605000px;}
.y61{bottom:680.505000px;}
.y21{bottom:681.585000px;}
.yba{bottom:682.305000px;}
.y89{bottom:682.665000px;}
.ye7{bottom:687.885000px;}
.y150{bottom:688.605000px;}
.y113{bottom:692.385000px;}
.y18e{bottom:696.885000px;}
.y20{bottom:698.865000px;}
.y88{bottom:699.945000px;}
.ye6{bottom:705.165000px;}
.y14f{bottom:705.885000px;}
.y112{bottom:709.305000px;}
.y18d{bottom:714.165000px;}
.y1f{bottom:716.145000px;}
.y60{bottom:716.865000px;}
.yb9{bottom:717.225000px;}
.ye5{bottom:722.085000px;}
.y14e{bottom:723.165000px;}
.y111{bottom:726.945000px;}
.y18c{bottom:731.445000px;}
.y1e{bottom:733.425000px;}
.y5f{bottom:734.325000px;}
.ye4{bottom:739.725000px;}
.y14d{bottom:740.445000px;}
.y110{bottom:744.225000px;}
.y18b{bottom:748.725000px;}
.y1d{bottom:750.525000px;}
.yb8{bottom:751.245000px;}
.y5e{bottom:751.605000px;}
.ye3{bottom:756.825000px;}
.y14c{bottom:757.365000px;}
.y10f{bottom:761.325000px;}
.y18a{bottom:765.465000px;}
.y1c{bottom:767.805000px;}
.y5d{bottom:768.885000px;}
.ye2{bottom:774.105000px;}
.y14b{bottom:774.825000px;}
.y10e{bottom:778.605000px;}
.y189{bottom:783.105000px;}
.y1b{bottom:785.085000px;}
.y19e{bottom:785.805000px;}
.y5c{bottom:786.165000px;}
.ye1{bottom:791.385000px;}
.y14a{bottom:792.105000px;}
.y10d{bottom:795.885000px;}
.y188{bottom:800.385000px;}
.y1a{bottom:802.365000px;}
.y87{bottom:803.085000px;}
.y5b{bottom:803.445000px;}
.ye0{bottom:808.665000px;}
.y149{bottom:809.385000px;}
.y10c{bottom:813.165000px;}
.y187{bottom:817.305000px;}
.y19{bottom:819.645000px;}
.y5a{bottom:820.725000px;}
.ydf{bottom:825.945000px;}
.y148{bottom:826.665000px;}
.y10b{bottom:830.445000px;}
.y186{bottom:834.945000px;}
.y18{bottom:836.925000px;}
.yb7{bottom:837.465000px;}
.y59{bottom:837.825000px;}
.yde{bottom:843.045000px;}
.y147{bottom:843.945000px;}
.y10a{bottom:847.545000px;}
.y185{bottom:852.045000px;}
.y17{bottom:854.025000px;}
.y58{bottom:855.105000px;}
.ydd{bottom:859.965000px;}
.y146{bottom:861.045000px;}
.y109{bottom:864.465000px;}
.y184{bottom:869.325000px;}
.y16{bottom:870.945000px;}
.y57{bottom:872.385000px;}
.y145{bottom:878.370000px;}
.ydc{bottom:881.790000px;}
.y108{bottom:886.290000px;}
.y183{bottom:886.650000px;}
.y56{bottom:889.710000px;}
.y15{bottom:890.250000px;}
.y144{bottom:895.650000px;}
.ydb{bottom:903.570000px;}
.y182{bottom:903.930000px;}
.y55{bottom:906.630000px;}
.y86{bottom:906.990000px;}
.y14{bottom:908.070000px;}
.y143{bottom:912.930000px;}
.y181{bottom:921.210000px;}
.y54{bottom:924.090000px;}
.y13{bottom:925.350000px;}
.y107{bottom:929.850000px;}
.y142{bottom:930.210000px;}
.y180{bottom:938.490000px;}
.y53{bottom:941.370000px;}
.y12{bottom:942.630000px;}
.yda{bottom:947.130000px;}
.y141{bottom:947.490000px;}
.y106{bottom:951.630000px;}
.y17f{bottom:955.590000px;}
.y52{bottom:958.650000px;}
.y11{bottom:959.910000px;}
.y140{bottom:964.590000px;}
.yd9{bottom:968.730000px;}
.y17e{bottom:972.870000px;}
.y19d{bottom:975.570000px;}
.y51{bottom:975.930000px;}
.y10{bottom:977.190000px;}
.y13f{bottom:981.870000px;}
.y17d{bottom:990.150000px;}
.y50{bottom:993.210000px;}
.yf{bottom:994.290000px;}
.y13e{bottom:999.150000px;}
.y17c{bottom:1007.430000px;}
.yae{bottom:1010.130000px;}
.y4f{bottom:1010.490000px;}
.ye{bottom:1013.910000px;}
.y13d{bottom:1016.430000px;}
.y17b{bottom:1024.710000px;}
.y4e{bottom:1027.230000px;}
.y85{bottom:1027.590000px;}
.yd{bottom:1031.190000px;}
.y13c{bottom:1033.710000px;}
.y17a{bottom:1041.990000px;}
.yd8{bottom:1044.510000px;}
.y4d{bottom:1044.870000px;}
.yc{bottom:1048.290000px;}
.y13b{bottom:1050.990000px;}
.y179{bottom:1059.090000px;}
.y4c{bottom:1062.150000px;}
.yb{bottom:1065.570000px;}
.y13a{bottom:1068.090000px;}
.y178{bottom:1076.370000px;}
.y4b{bottom:1079.430000px;}
.ya{bottom:1082.850000px;}
.y139{bottom:1085.370000px;}
.y177{bottom:1093.290000px;}
.y4a{bottom:1096.710000px;}
.y9{bottom:1100.490000px;}
.y138{bottom:1102.650000px;}
.y49{bottom:1113.990000px;}
.y176{bottom:1115.070000px;}
.y137{bottom:1119.570000px;}
.y8{bottom:1121.190000px;}
.y48{bottom:1131.090000px;}
.y175{bottom:1136.880000px;}
.y136{bottom:1141.380000px;}
.y7{bottom:1141.920000px;}
.y47{bottom:1148.400000px;}
.y174{bottom:1158.480000px;}
.y6{bottom:1162.620000px;}
.y105{bottom:1165.320000px;}
.y46{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.h9{height:17.100000px;}
.h8{height:17.280000px;}
.ha{height:17.316000px;}
.hb{height:34.560000px;}
.h6{height:41.726953px;}
.h2{height:58.621992px;}
.h4{height:58.651172px;}
.h5{height:60.226875px;}
.h7{height:61.423863px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w22{width:39.276000px;}
.w2e{width:54.180000px;}
.w2f{width:54.360000px;}
.w25{width:64.116000px;}
.w30{width:68.436000px;}
.w2c{width:68.580000px;}
.w1c{width:69.120000px;}
.w18{width:91.440000px;}
.w12{width:115.776000px;}
.w29{width:123.516000px;}
.w6{width:125.316000px;}
.w23{width:125.640000px;}
.w1b{width:127.476000px;}
.w28{width:128.376000px;}
.w2{width:130.356000px;}
.w2d{width:131.076000px;}
.w27{width:132.516000px;}
.w26{width:133.740000px;}
.wa{width:137.016000px;}
.we{width:140.976000px;}
.w9{width:147.996000px;}
.w17{width:151.950000px;}
.w5{width:165.090000px;}
.w1f{width:170.490000px;}
.w2a{width:194.070000px;}
.w10{width:194.970000px;}
.wd{width:198.210000px;}
.w13{width:201.090000px;}
.w19{width:205.770000px;}
.wb{width:206.670000px;}
.wf{width:211.530000px;}
.w21{width:215.130000px;}
.w14{width:217.650000px;}
.w11{width:233.175000px;}
.w8{width:235.110000px;}
.w4{width:237.675000px;}
.w1d{width:238.395000px;}
.wc{width:238.755000px;}
.w15{width:239.295000px;}
.w3{width:244.290000px;}
.w1e{width:268.095000px;}
.w7{width:272.415000px;}
.w16{width:331.635000px;}
.w20{width:344.595000px;}
.w1a{width:346.035000px;}
.w2b{width:399.345000px;}
.w24{width:400.425000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:1.080000px;}
.x42{left:6.300000px;}
.x43{left:7.560000px;}
.x45{left:11.160000px;}
.x46{left:12.600000px;}
.x4b{left:14.220000px;}
.x16{left:16.560000px;}
.x14{left:17.640000px;}
.x19{left:19.800000px;}
.x20{left:21.420000px;}
.x33{left:23.220000px;}
.x2c{left:25.380000px;}
.x3f{left:26.820000px;}
.x1e{left:27.900000px;}
.x74{left:29.160000px;}
.x6b{left:30.600000px;}
.x27{left:31.680000px;}
.x32{left:33.120000px;}
.x2f{left:34.560000px;}
.x25{left:36.540000px;}
.x4a{left:38.736000px;}
.x23{left:39.996000px;}
.x3b{left:41.265000px;}
.x12{left:42.516000px;}
.x5e{left:44.640000px;}
.x1f{left:45.936000px;}
.x37{left:47.916000px;}
.x36{left:49.356000px;}
.x3e{left:51.156000px;}
.x22{left:52.920000px;}
.x5{left:54.000000px;}
.x40{left:56.160000px;}
.x5b{left:57.285000px;}
.x52{left:59.040000px;}
.x71{left:61.560000px;}
.x70{left:64.110000px;}
.x2b{left:66.600000px;}
.x61{left:69.336000px;}
.x62{left:72.180000px;}
.x1d{left:75.060000px;}
.x51{left:76.716000px;}
.x1c{left:78.660000px;}
.x53{left:79.920000px;}
.xf{left:81.000000px;}
.x55{left:82.296000px;}
.x5a{left:83.916000px;}
.x54{left:88.416000px;}
.x3d{left:90.030000px;}
.x35{left:91.440000px;}
.x47{left:93.060000px;}
.x68{left:94.356000px;}
.x34{left:95.805000px;}
.x3c{left:98.325000px;}
.x7a{left:99.750000px;}
.x48{left:101.370000px;}
.x7b{left:105.150000px;}
.x49{left:106.425000px;}
.x10{left:108.036000px;}
.x2a{left:109.980000px;}
.x1b{left:111.450000px;}
.x1a{left:114.525000px;}
.xe{left:117.396000px;}
.x6a{left:119.196000px;}
.x67{left:121.890000px;}
.x60{left:126.360000px;}
.x29{left:128.565000px;}
.x4d{left:137.910000px;}
.x57{left:145.110000px;}
.x69{left:154.290000px;}
.x79{left:162.030000px;}
.x73{left:169.050000px;}
.x41{left:174.270000px;}
.x24{left:180.390000px;}
.x13{left:187.050000px;}
.x2e{left:192.270000px;}
.x38{left:196.050000px;}
.x8{left:197.850000px;}
.x6{left:205.230000px;}
.xb{left:207.210000px;}
.x7{left:210.090000px;}
.x72{left:213.510000px;}
.x56{left:237.810000px;}
.xc{left:248.610000px;}
.x5c{left:254.010000px;}
.x6c{left:255.270000px;}
.x3{left:256.710000px;}
.x63{left:260.310000px;}
.x2{left:268.770000px;}
.x64{left:270.390000px;}
.x4c{left:277.275000px;}
.x2d{left:280.695000px;}
.x21{left:291.135000px;}
.x1{left:304.995000px;}
.x65{left:312.015000px;}
.x5d{left:323.175000px;}
.xd{left:353.055000px;}
.xa{left:377.355000px;}
.x4e{left:386.715000px;}
.x6d{left:390.135000px;}
.x30{left:401.295000px;}
.x39{left:409.935000px;}
.x9{left:429.555000px;}
.x15{left:433.515000px;}
.x66{left:439.995000px;}
.x26{left:455.145000px;}
.x5f{left:495.825000px;}
.x6e{left:520.665000px;}
.x75{left:525.345000px;}
.x58{left:530.745000px;}
.x4f{left:541.005000px;}
.x44{left:597.705000px;}
.x59{left:602.025000px;}
.x3a{left:607.065000px;}
.x50{left:634.650000px;}
.x31{left:642.210000px;}
.x6f{left:646.350000px;}
.x76{left:658.770000px;}
.x17{left:673.530000px;}
.x28{left:692.430000px;}
.x77{left:715.290000px;}
.x11{left:729.330000px;}
.x78{left:771.810000px;}
.x7c{left:797.550000px;}
.x4{left:812.130000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.592000pt;}
.ls7{letter-spacing:-0.367467pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.165760pt;}
.lsd{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.592000pt;}
.lsc{letter-spacing:0.736000pt;}
.ls16{letter-spacing:0.778667pt;}
.ls12{letter-spacing:0.869333pt;}
.ls18{letter-spacing:0.960000pt;}
.ls14{letter-spacing:14.672640pt;}
.ls13{letter-spacing:40.912640pt;}
.ls6{letter-spacing:57.040640pt;}
.lsa{letter-spacing:178.848000pt;}
.ws3{word-spacing:-53.120000pt;}
.wsd{word-spacing:-14.240000pt;}
.wsa{word-spacing:-14.058667pt;}
.wsc{word-spacing:-13.872000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.096533pt;}
.ws9{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.688000pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-1.855360pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.062400pt;}
._3{width:2.383573pt;}
._1{width:3.347413pt;}
._9{width:4.780800pt;}
._4{width:6.108800pt;}
._6{width:7.850240pt;}
._5{width:8.924160pt;}
._a{width:9.933867pt;}
._e{width:11.358507pt;}
._7{width:12.270720pt;}
._b{width:14.820480pt;}
._c{width:16.520320pt;}
._d{width:17.585707pt;}
._f{width:19.075413pt;}
._11{width:20.596907pt;}
._10{width:22.044800pt;}
._8{width:178.848000pt;}
._12{width:533.977387pt;}
._13{width:644.331947pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y15b{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:2.880000pt;}
.ybd{bottom:3.040000pt;}
.yc3{bottom:3.200000pt;}
.ybf{bottom:3.360000pt;}
.y172{bottom:3.392000pt;}
.y5{bottom:3.520000pt;}
.y157{bottom:10.720000pt;}
.y158{bottom:18.400000pt;}
.y4{bottom:21.920000pt;}
.y104{bottom:53.440000pt;}
.y45{bottom:53.760000pt;}
.yb6{bottom:54.080000pt;}
.y1a4{bottom:54.400000pt;}
.yad{bottom:54.720000pt;}
.y19c{bottom:55.360000pt;}
.y135{bottom:62.080000pt;}
.yd7{bottom:63.680000pt;}
.y173{bottom:65.760000pt;}
.y84{bottom:66.240000pt;}
.y103{bottom:68.800000pt;}
.y44{bottom:69.120000pt;}
.yb5{bottom:69.440000pt;}
.y1a3{bottom:69.760000pt;}
.yac{bottom:70.080000pt;}
.y19b{bottom:70.400000pt;}
.y134{bottom:77.440000pt;}
.y83{bottom:81.600000pt;}
.yd6{bottom:83.040000pt;}
.y102{bottom:84.000000pt;}
.y43{bottom:84.480000pt;}
.yb4{bottom:84.640000pt;}
.y171{bottom:85.120000pt;}
.yab{bottom:85.440000pt;}
.y19a{bottom:85.760000pt;}
.y133{bottom:92.832000pt;}
.y82{bottom:96.992000pt;}
.y101{bottom:99.392000pt;}
.y42{bottom:99.872000pt;}
.yb3{bottom:100.032000pt;}
.yaa{bottom:100.832000pt;}
.y199{bottom:101.472000pt;}
.yd5{bottom:102.432000pt;}
.y170{bottom:104.512000pt;}
.y132{bottom:108.032000pt;}
.y81{bottom:112.352000pt;}
.y100{bottom:114.752000pt;}
.y41{bottom:115.232000pt;}
.yb2{bottom:115.392000pt;}
.ya9{bottom:116.192000pt;}
.y198{bottom:116.672000pt;}
.yd4{bottom:121.792000pt;}
.y131{bottom:123.072000pt;}
.y16f{bottom:126.112000pt;}
.y80{bottom:127.552000pt;}
.yff{bottom:130.112000pt;}
.y40{bottom:130.592000pt;}
.yb1{bottom:130.752000pt;}
.y1a2{bottom:131.072000pt;}
.ya8{bottom:131.392000pt;}
.y197{bottom:132.032000pt;}
.y130{bottom:138.746667pt;}
.yd3{bottom:141.146667pt;}
.y16e{bottom:141.466667pt;}
.y7f{bottom:142.906667pt;}
.yfe{bottom:145.466667pt;}
.y3f{bottom:145.786667pt;}
.yb0{bottom:146.106667pt;}
.ya7{bottom:146.746667pt;}
.y196{bottom:147.386667pt;}
.y12f{bottom:154.106667pt;}
.y16d{bottom:156.826667pt;}
.y7e{bottom:158.266667pt;}
.yd1{bottom:160.506667pt;}
.y3e{bottom:161.146667pt;}
.ya6{bottom:162.106667pt;}
.y195{bottom:162.746667pt;}
.y12e{bottom:169.466667pt;}
.y16c{bottom:172.026667pt;}
.yaf{bottom:173.466667pt;}
.y7d{bottom:173.626667pt;}
.y3d{bottom:176.506667pt;}
.ya5{bottom:177.466667pt;}
.y194{bottom:178.106667pt;}
.yfd{bottom:179.706667pt;}
.yd0{bottom:182.106667pt;}
.y12d{bottom:184.826667pt;}
.y16b{bottom:187.066667pt;}
.y7c{bottom:188.986667pt;}
.y3c{bottom:191.866667pt;}
.ya4{bottom:192.826667pt;}
.y193{bottom:193.466667pt;}
.ycf{bottom:197.466667pt;}
.yfc{bottom:199.066667pt;}
.y12c{bottom:200.026667pt;}
.y16a{bottom:202.746667pt;}
.y7b{bottom:204.346667pt;}
.y3b{bottom:207.226667pt;}
.y1a1{bottom:207.706667pt;}
.ya3{bottom:208.026667pt;}
.y192{bottom:208.346667pt;}
.yce{bottom:212.826667pt;}
.y12b{bottom:215.386667pt;}
.y169{bottom:218.106667pt;}
.yfb{bottom:218.426667pt;}
.y7a{bottom:219.546667pt;}
.y3a{bottom:222.426667pt;}
.ya2{bottom:223.386667pt;}
.y191{bottom:224.026667pt;}
.ycd{bottom:227.706667pt;}
.y12a{bottom:230.746667pt;}
.y168{bottom:233.466667pt;}
.y79{bottom:234.906667pt;}
.y190{bottom:236.026667pt;}
.y39{bottom:237.786667pt;}
.ya1{bottom:238.746667pt;}
.ycc{bottom:243.386667pt;}
.y129{bottom:246.106667pt;}
.y167{bottom:248.826667pt;}
.y78{bottom:250.266667pt;}
.y38{bottom:253.146667pt;}
.ya0{bottom:254.106667pt;}
.yfa{bottom:257.146667pt;}
.ycb{bottom:258.746667pt;}
.y128{bottom:261.146667pt;}
.y166{bottom:264.026667pt;}
.y77{bottom:265.626667pt;}
.y37{bottom:268.506667pt;}
.y9f{bottom:269.466667pt;}
.yca{bottom:274.106667pt;}
.yf9{bottom:278.746667pt;}
.y165{bottom:279.386667pt;}
.y127{bottom:280.346667pt;}
.y76{bottom:280.666667pt;}
.y36{bottom:283.546667pt;}
.y9e{bottom:284.826667pt;}
.yc9{bottom:289.466667pt;}
.yf8{bottom:294.106667pt;}
.y164{bottom:294.746667pt;}
.y75{bottom:296.186667pt;}
.y35{bottom:299.226667pt;}
.y9d{bottom:300.026667pt;}
.y126{bottom:302.106667pt;}
.yc8{bottom:304.826667pt;}
.yf7{bottom:309.466667pt;}
.y163{bottom:310.106667pt;}
.y74{bottom:311.546667pt;}
.y34{bottom:314.426667pt;}
.y9c{bottom:315.386667pt;}
.y125{bottom:317.506667pt;}
.yc7{bottom:320.066667pt;}
.yf6{bottom:324.866667pt;}
.y162{bottom:325.506667pt;}
.y73{bottom:326.946667pt;}
.y33{bottom:329.826667pt;}
.y9b{bottom:330.466667pt;}
.y1a0{bottom:330.786667pt;}
.y124{bottom:332.866667pt;}
.yc6{bottom:335.426667pt;}
.yf5{bottom:339.746667pt;}
.y161{bottom:340.866667pt;}
.y72{bottom:342.306667pt;}
.y32{bottom:345.186667pt;}
.y9a{bottom:346.146667pt;}
.y123{bottom:347.746667pt;}
.yc5{bottom:350.786667pt;}
.yf4{bottom:355.426667pt;}
.y160{bottom:356.066667pt;}
.y71{bottom:357.666667pt;}
.y31{bottom:360.546667pt;}
.y99{bottom:361.506667pt;}
.y122{bottom:363.426667pt;}
.yc4{bottom:365.826667pt;}
.yf3{bottom:370.786667pt;}
.y15f{bottom:371.426667pt;}
.y70{bottom:372.706667pt;}
.y30{bottom:375.906667pt;}
.y98{bottom:376.866667pt;}
.y121{bottom:378.786667pt;}
.yc2{bottom:385.186667pt;}
.yf2{bottom:386.146667pt;}
.y15e{bottom:386.466667pt;}
.y6f{bottom:388.226667pt;}
.y2f{bottom:391.266667pt;}
.y97{bottom:392.066667pt;}
.y120{bottom:394.146667pt;}
.yf1{bottom:401.506667pt;}
.y6e{bottom:403.586667pt;}
.yc1{bottom:404.386667pt;}
.y15d{bottom:405.826667pt;}
.y2e{bottom:406.466667pt;}
.y96{bottom:407.426667pt;}
.y11f{bottom:409.506667pt;}
.yf0{bottom:416.706667pt;}
.y6d{bottom:418.946667pt;}
.y2d{bottom:421.826667pt;}
.y95{bottom:422.786667pt;}
.yc0{bottom:423.746667pt;}
.y11e{bottom:424.706667pt;}
.y15c{bottom:425.186667pt;}
.yef{bottom:432.066667pt;}
.y6c{bottom:434.306667pt;}
.y2c{bottom:437.186667pt;}
.y94{bottom:438.146667pt;}
.y11d{bottom:440.066667pt;}
.ybe{bottom:443.106667pt;}
.y15a{bottom:444.386667pt;}
.yee{bottom:447.426667pt;}
.y6b{bottom:449.666667pt;}
.y2b{bottom:452.226667pt;}
.y93{bottom:453.506667pt;}
.y11c{bottom:455.426667pt;}
.ybc{bottom:462.466667pt;}
.y159{bottom:463.746667pt;}
.y6a{bottom:465.026667pt;}
.y2a{bottom:467.906667pt;}
.y92{bottom:468.706667pt;}
.y11b{bottom:470.786667pt;}
.y69{bottom:480.226667pt;}
.yed{bottom:481.826667pt;}
.y29{bottom:483.106667pt;}
.y91{bottom:484.066667pt;}
.y11a{bottom:485.826667pt;}
.y68{bottom:495.586667pt;}
.y28{bottom:498.466667pt;}
.y90{bottom:499.426667pt;}
.yec{bottom:501.186667pt;}
.y119{bottom:505.186667pt;}
.y67{bottom:510.946667pt;}
.y27{bottom:513.826667pt;}
.y19f{bottom:514.466667pt;}
.y8f{bottom:514.786667pt;}
.y156{bottom:520.066667pt;}
.yeb{bottom:520.386667pt;}
.y118{bottom:524.386667pt;}
.y66{bottom:526.306667pt;}
.y26{bottom:528.866667pt;}
.y8e{bottom:530.146667pt;}
.y155{bottom:535.426667pt;}
.yea{bottom:539.746667pt;}
.y65{bottom:541.346667pt;}
.y117{bottom:543.746667pt;}
.y25{bottom:544.546667pt;}
.y8d{bottom:545.506667pt;}
.y154{bottom:550.813333pt;}
.y64{bottom:557.053333pt;}
.ye9{bottom:559.133333pt;}
.y24{bottom:559.933333pt;}
.ybb{bottom:560.413333pt;}
.y8c{bottom:560.733333pt;}
.y116{bottom:563.133333pt;}
.y153{bottom:566.173333pt;}
.y63{bottom:572.253333pt;}
.y23{bottom:575.133333pt;}
.y8b{bottom:576.093333pt;}
.ye8{bottom:580.733333pt;}
.y152{bottom:581.533333pt;}
.y115{bottom:584.733333pt;}
.y62{bottom:588.573333pt;}
.y22{bottom:590.493333pt;}
.y8a{bottom:591.453333pt;}
.y151{bottom:596.413333pt;}
.y114{bottom:600.093333pt;}
.y18f{bottom:604.093333pt;}
.y61{bottom:604.893333pt;}
.y21{bottom:605.853333pt;}
.yba{bottom:606.493333pt;}
.y89{bottom:606.813333pt;}
.ye7{bottom:611.453333pt;}
.y150{bottom:612.093333pt;}
.y113{bottom:615.453333pt;}
.y18e{bottom:619.453333pt;}
.y20{bottom:621.213333pt;}
.y88{bottom:622.173333pt;}
.ye6{bottom:626.813333pt;}
.y14f{bottom:627.453333pt;}
.y112{bottom:630.493333pt;}
.y18d{bottom:634.813333pt;}
.y1f{bottom:636.573333pt;}
.y60{bottom:637.213333pt;}
.yb9{bottom:637.533333pt;}
.ye5{bottom:641.853333pt;}
.y14e{bottom:642.813333pt;}
.y111{bottom:646.173333pt;}
.y18c{bottom:650.173333pt;}
.y1e{bottom:651.933333pt;}
.y5f{bottom:652.733333pt;}
.ye4{bottom:657.533333pt;}
.y14d{bottom:658.173333pt;}
.y110{bottom:661.533333pt;}
.y18b{bottom:665.533333pt;}
.y1d{bottom:667.133333pt;}
.yb8{bottom:667.773333pt;}
.y5e{bottom:668.093333pt;}
.ye3{bottom:672.733333pt;}
.y14c{bottom:673.213333pt;}
.y10f{bottom:676.733333pt;}
.y18a{bottom:680.413333pt;}
.y1c{bottom:682.493333pt;}
.y5d{bottom:683.453333pt;}
.ye2{bottom:688.093333pt;}
.y14b{bottom:688.733333pt;}
.y10e{bottom:692.093333pt;}
.y189{bottom:696.093333pt;}
.y1b{bottom:697.853333pt;}
.y19e{bottom:698.493333pt;}
.y5c{bottom:698.813333pt;}
.ye1{bottom:703.453333pt;}
.y14a{bottom:704.093333pt;}
.y10d{bottom:707.453333pt;}
.y188{bottom:711.453333pt;}
.y1a{bottom:713.213333pt;}
.y87{bottom:713.853333pt;}
.y5b{bottom:714.173333pt;}
.ye0{bottom:718.813333pt;}
.y149{bottom:719.453333pt;}
.y10c{bottom:722.813333pt;}
.y187{bottom:726.493333pt;}
.y19{bottom:728.573333pt;}
.y5a{bottom:729.533333pt;}
.ydf{bottom:734.173333pt;}
.y148{bottom:734.813333pt;}
.y10b{bottom:738.173333pt;}
.y186{bottom:742.173333pt;}
.y18{bottom:743.933333pt;}
.yb7{bottom:744.413333pt;}
.y59{bottom:744.733333pt;}
.yde{bottom:749.373333pt;}
.y147{bottom:750.173333pt;}
.y10a{bottom:753.373333pt;}
.y185{bottom:757.373333pt;}
.y17{bottom:759.133333pt;}
.y58{bottom:760.093333pt;}
.ydd{bottom:764.413333pt;}
.y146{bottom:765.373333pt;}
.y109{bottom:768.413333pt;}
.y184{bottom:772.733333pt;}
.y16{bottom:774.173333pt;}
.y57{bottom:775.453333pt;}
.y145{bottom:780.773333pt;}
.ydc{bottom:783.813333pt;}
.y108{bottom:787.813333pt;}
.y183{bottom:788.133333pt;}
.y56{bottom:790.853333pt;}
.y15{bottom:791.333333pt;}
.y144{bottom:796.133333pt;}
.ydb{bottom:803.173333pt;}
.y182{bottom:803.493333pt;}
.y55{bottom:805.893333pt;}
.y86{bottom:806.213333pt;}
.y14{bottom:807.173333pt;}
.y143{bottom:811.493333pt;}
.y181{bottom:818.853333pt;}
.y54{bottom:821.413333pt;}
.y13{bottom:822.533333pt;}
.y107{bottom:826.533333pt;}
.y142{bottom:826.853333pt;}
.y180{bottom:834.213333pt;}
.y53{bottom:836.773333pt;}
.y12{bottom:837.893333pt;}
.yda{bottom:841.893333pt;}
.y141{bottom:842.213333pt;}
.y106{bottom:845.893333pt;}
.y17f{bottom:849.413333pt;}
.y52{bottom:852.133333pt;}
.y11{bottom:853.253333pt;}
.y140{bottom:857.413333pt;}
.yd9{bottom:861.093333pt;}
.y17e{bottom:864.773333pt;}
.y19d{bottom:867.173333pt;}
.y51{bottom:867.493333pt;}
.y10{bottom:868.613333pt;}
.y13f{bottom:872.773333pt;}
.y17d{bottom:880.133333pt;}
.y50{bottom:882.853333pt;}
.yf{bottom:883.813333pt;}
.y13e{bottom:888.133333pt;}
.y17c{bottom:895.493333pt;}
.yae{bottom:897.893333pt;}
.y4f{bottom:898.213333pt;}
.ye{bottom:901.253333pt;}
.y13d{bottom:903.493333pt;}
.y17b{bottom:910.853333pt;}
.y4e{bottom:913.093333pt;}
.y85{bottom:913.413333pt;}
.yd{bottom:916.613333pt;}
.y13c{bottom:918.853333pt;}
.y17a{bottom:926.213333pt;}
.yd8{bottom:928.453333pt;}
.y4d{bottom:928.773333pt;}
.yc{bottom:931.813333pt;}
.y13b{bottom:934.213333pt;}
.y179{bottom:941.413333pt;}
.y4c{bottom:944.133333pt;}
.yb{bottom:947.173333pt;}
.y13a{bottom:949.413333pt;}
.y178{bottom:956.773333pt;}
.y4b{bottom:959.493333pt;}
.ya{bottom:962.533333pt;}
.y139{bottom:964.773333pt;}
.y177{bottom:971.813333pt;}
.y4a{bottom:974.853333pt;}
.y9{bottom:978.213333pt;}
.y138{bottom:980.133333pt;}
.y49{bottom:990.213333pt;}
.y176{bottom:991.173333pt;}
.y137{bottom:995.173333pt;}
.y8{bottom:996.613333pt;}
.y48{bottom:1005.413333pt;}
.y175{bottom:1010.560000pt;}
.y136{bottom:1014.560000pt;}
.y7{bottom:1015.040000pt;}
.y47{bottom:1020.800000pt;}
.y174{bottom:1029.760000pt;}
.y6{bottom:1033.440000pt;}
.y105{bottom:1035.840000pt;}
.y46{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.h9{height:15.200000pt;}
.h8{height:15.360000pt;}
.ha{height:15.392000pt;}
.hb{height:30.720000pt;}
.h6{height:37.090625pt;}
.h2{height:52.108438pt;}
.h4{height:52.134375pt;}
.h5{height:53.535000pt;}
.h7{height:54.598989pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w22{width:34.912000pt;}
.w2e{width:48.160000pt;}
.w2f{width:48.320000pt;}
.w25{width:56.992000pt;}
.w30{width:60.832000pt;}
.w2c{width:60.960000pt;}
.w1c{width:61.440000pt;}
.w18{width:81.280000pt;}
.w12{width:102.912000pt;}
.w29{width:109.792000pt;}
.w6{width:111.392000pt;}
.w23{width:111.680000pt;}
.w1b{width:113.312000pt;}
.w28{width:114.112000pt;}
.w2{width:115.872000pt;}
.w2d{width:116.512000pt;}
.w27{width:117.792000pt;}
.w26{width:118.880000pt;}
.wa{width:121.792000pt;}
.we{width:125.312000pt;}
.w9{width:131.552000pt;}
.w17{width:135.066667pt;}
.w5{width:146.746667pt;}
.w1f{width:151.546667pt;}
.w2a{width:172.506667pt;}
.w10{width:173.306667pt;}
.wd{width:176.186667pt;}
.w13{width:178.746667pt;}
.w19{width:182.906667pt;}
.wb{width:183.706667pt;}
.wf{width:188.026667pt;}
.w21{width:191.226667pt;}
.w14{width:193.466667pt;}
.w11{width:207.266667pt;}
.w8{width:208.986667pt;}
.w4{width:211.266667pt;}
.w1d{width:211.906667pt;}
.wc{width:212.226667pt;}
.w15{width:212.706667pt;}
.w3{width:217.146667pt;}
.w1e{width:238.306667pt;}
.w7{width:242.146667pt;}
.w16{width:294.786667pt;}
.w20{width:306.306667pt;}
.w1a{width:307.586667pt;}
.w2b{width:354.973333pt;}
.w24{width:355.933333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:0.960000pt;}
.x42{left:5.600000pt;}
.x43{left:6.720000pt;}
.x45{left:9.920000pt;}
.x46{left:11.200000pt;}
.x4b{left:12.640000pt;}
.x16{left:14.720000pt;}
.x14{left:15.680000pt;}
.x19{left:17.600000pt;}
.x20{left:19.040000pt;}
.x33{left:20.640000pt;}
.x2c{left:22.560000pt;}
.x3f{left:23.840000pt;}
.x1e{left:24.800000pt;}
.x74{left:25.920000pt;}
.x6b{left:27.200000pt;}
.x27{left:28.160000pt;}
.x32{left:29.440000pt;}
.x2f{left:30.720000pt;}
.x25{left:32.480000pt;}
.x4a{left:34.432000pt;}
.x23{left:35.552000pt;}
.x3b{left:36.680000pt;}
.x12{left:37.792000pt;}
.x5e{left:39.680000pt;}
.x1f{left:40.832000pt;}
.x37{left:42.592000pt;}
.x36{left:43.872000pt;}
.x3e{left:45.472000pt;}
.x22{left:47.040000pt;}
.x5{left:48.000000pt;}
.x40{left:49.920000pt;}
.x5b{left:50.920000pt;}
.x52{left:52.480000pt;}
.x71{left:54.720000pt;}
.x70{left:56.986667pt;}
.x2b{left:59.200000pt;}
.x61{left:61.632000pt;}
.x62{left:64.160000pt;}
.x1d{left:66.720000pt;}
.x51{left:68.192000pt;}
.x1c{left:69.920000pt;}
.x53{left:71.040000pt;}
.xf{left:72.000000pt;}
.x55{left:73.152000pt;}
.x5a{left:74.592000pt;}
.x54{left:78.592000pt;}
.x3d{left:80.026667pt;}
.x35{left:81.280000pt;}
.x47{left:82.720000pt;}
.x68{left:83.872000pt;}
.x34{left:85.160000pt;}
.x3c{left:87.400000pt;}
.x7a{left:88.666667pt;}
.x48{left:90.106667pt;}
.x7b{left:93.466667pt;}
.x49{left:94.600000pt;}
.x10{left:96.032000pt;}
.x2a{left:97.760000pt;}
.x1b{left:99.066667pt;}
.x1a{left:101.800000pt;}
.xe{left:104.352000pt;}
.x6a{left:105.952000pt;}
.x67{left:108.346667pt;}
.x60{left:112.320000pt;}
.x29{left:114.280000pt;}
.x4d{left:122.586667pt;}
.x57{left:128.986667pt;}
.x69{left:137.146667pt;}
.x79{left:144.026667pt;}
.x73{left:150.266667pt;}
.x41{left:154.906667pt;}
.x24{left:160.346667pt;}
.x13{left:166.266667pt;}
.x2e{left:170.906667pt;}
.x38{left:174.266667pt;}
.x8{left:175.866667pt;}
.x6{left:182.426667pt;}
.xb{left:184.186667pt;}
.x7{left:186.746667pt;}
.x72{left:189.786667pt;}
.x56{left:211.386667pt;}
.xc{left:220.986667pt;}
.x5c{left:225.786667pt;}
.x6c{left:226.906667pt;}
.x3{left:228.186667pt;}
.x63{left:231.386667pt;}
.x2{left:238.906667pt;}
.x64{left:240.346667pt;}
.x4c{left:246.466667pt;}
.x2d{left:249.506667pt;}
.x21{left:258.786667pt;}
.x1{left:271.106667pt;}
.x65{left:277.346667pt;}
.x5d{left:287.266667pt;}
.xd{left:313.826667pt;}
.xa{left:335.426667pt;}
.x4e{left:343.746667pt;}
.x6d{left:346.786667pt;}
.x30{left:356.706667pt;}
.x39{left:364.386667pt;}
.x9{left:381.826667pt;}
.x15{left:385.346667pt;}
.x66{left:391.106667pt;}
.x26{left:404.573333pt;}
.x5f{left:440.733333pt;}
.x6e{left:462.813333pt;}
.x75{left:466.973333pt;}
.x58{left:471.773333pt;}
.x4f{left:480.893333pt;}
.x44{left:531.293333pt;}
.x59{left:535.133333pt;}
.x3a{left:539.613333pt;}
.x50{left:564.133333pt;}
.x31{left:570.853333pt;}
.x6f{left:574.533333pt;}
.x76{left:585.573333pt;}
.x17{left:598.693333pt;}
.x28{left:615.493333pt;}
.x77{left:635.813333pt;}
.x11{left:648.293333pt;}
.x78{left:686.053333pt;}
.x7c{left:708.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; }
  