
    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_3959c70be8219704288f76d0.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_d5928ef3b8e2a7637601e3a0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fc63e45243f54725a298ca27.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2cb1cc6bdf6af182e259fa74.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914551;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_e906f6dafc34123d319ac4bc.woff2')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_5b7a7ff53efc0de7d1f69afa.woff2')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_899e131886ff4c8b0351f009.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919434;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:-68.544000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.666000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.106800px;}
.ls3{letter-spacing:-0.057600px;}
.lsa{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.513600px;}
.lsb{letter-spacing:0.666000px;}
.ls10{letter-spacing:0.828000px;}
.ls1{letter-spacing:10.980000px;}
.ls12{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.ls6{letter-spacing:64.170720px;}
.lsf{letter-spacing:580.500000px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-15.606000px;}
.wsa{word-spacing:-15.453600px;}
.ws5{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.733600px;}
.ws3{word-spacing:-14.274000px;}
.ws2{word-spacing:0.000000px;}
._13{margin-left:-2.121360px;}
._2{margin-left:-1.080000px;}
._0{width:1.195200px;}
._1{width:2.825520px;}
._6{width:4.123440px;}
._7{width:5.322960px;}
._8{width:6.492240px;}
._3{width:7.589520px;}
._d{width:8.750640px;}
._4{width:10.082400px;}
._5{width:11.153760px;}
._c{width:12.344640px;}
._b{width:13.565520px;}
._12{width:16.139520px;}
._9{width:17.390160px;}
._a{width:18.456480px;}
._f{width:20.442240px;}
._e{width:21.633120px;}
._11{width:22.764240px;}
._10{width:24.984000px;}
._16{width:26.097840px;}
._18{width:27.218640px;}
._17{width:32.330160px;}
._15{width:150.778080px;}
._14{width:1090.624800px;}
.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;}
.y169{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.y110{bottom:3.240000px;}
.yd3{bottom:3.420000px;}
.y5{bottom:3.600000px;}
.yd5{bottom:3.780000px;}
.y182{bottom:3.810000px;}
.y127{bottom:11.880000px;}
.y120{bottom:12.060000px;}
.y165{bottom:12.090000px;}
.y128{bottom:20.520000px;}
.y166{bottom:20.550000px;}
.y121{bottom:20.700000px;}
.y4{bottom:21.240000px;}
.y45{bottom:60.120000px;}
.ycf{bottom:60.480000px;}
.ya5{bottom:61.560000px;}
.y125{bottom:64.980000px;}
.y163{bottom:68.400000px;}
.y106{bottom:69.840000px;}
.y1a0{bottom:72.180000px;}
.y82{bottom:74.520000px;}
.y44{bottom:77.400000px;}
.yce{bottom:78.120000px;}
.ya4{bottom:78.840000px;}
.y1b3{bottom:85.500000px;}
.y124{bottom:86.760000px;}
.y105{bottom:87.120000px;}
.y19f{bottom:89.280000px;}
.y81{bottom:91.800000px;}
.y43{bottom:94.680000px;}
.ycd{bottom:95.400000px;}
.ya3{bottom:96.120000px;}
.y162{bottom:102.816000px;}
.y104{bottom:104.436000px;}
.y123{bottom:108.576000px;}
.y80{bottom:109.116000px;}
.y42{bottom:111.816000px;}
.ycc{bottom:112.536000px;}
.ya2{bottom:113.436000px;}
.y161{bottom:120.096000px;}
.y103{bottom:121.536000px;}
.y19e{bottom:123.876000px;}
.y7f{bottom:126.396000px;}
.y41{bottom:129.096000px;}
.ycb{bottom:129.456000px;}
.y122{bottom:130.176000px;}
.ya1{bottom:130.356000px;}
.ya9{bottom:130.716000px;}
.y160{bottom:137.376000px;}
.y102{bottom:138.816000px;}
.y19d{bottom:141.156000px;}
.y7e{bottom:143.496000px;}
.y40{bottom:146.376000px;}
.yca{bottom:147.096000px;}
.y1b6{bottom:147.456000px;}
.ya0{bottom:147.816000px;}
.y11f{bottom:151.950000px;}
.y15f{bottom:154.650000px;}
.y101{bottom:156.090000px;}
.y19c{bottom:158.430000px;}
.y7d{bottom:160.770000px;}
.y3f{bottom:163.650000px;}
.yc9{bottom:164.370000px;}
.ya8{bottom:164.730000px;}
.y9f{bottom:165.090000px;}
.y15e{bottom:171.570000px;}
.y1b2{bottom:171.750000px;}
.y100{bottom:173.370000px;}
.y19b{bottom:175.530000px;}
.y7c{bottom:178.050000px;}
.y3e{bottom:180.930000px;}
.yc8{bottom:181.650000px;}
.y9e{bottom:182.370000px;}
.y15d{bottom:189.030000px;}
.yff{bottom:190.650000px;}
.y19a{bottom:192.810000px;}
.y11e{bottom:193.530000px;}
.y7b{bottom:195.330000px;}
.y3d{bottom:198.030000px;}
.yc7{bottom:198.750000px;}
.y9d{bottom:199.650000px;}
.y15c{bottom:206.310000px;}
.yfe{bottom:207.570000px;}
.y199{bottom:209.730000px;}
.y11d{bottom:210.810000px;}
.y7a{bottom:212.610000px;}
.y3c{bottom:215.310000px;}
.yc6{bottom:216.030000px;}
.y9c{bottom:216.930000px;}
.y15b{bottom:223.590000px;}
.y198{bottom:227.370000px;}
.y11c{bottom:228.090000px;}
.yfd{bottom:229.170000px;}
.y79{bottom:229.530000px;}
.y3b{bottom:232.590000px;}
.yc5{bottom:233.310000px;}
.y9b{bottom:234.030000px;}
.y15a{bottom:240.870000px;}
.y197{bottom:244.650000px;}
.y11b{bottom:245.370000px;}
.y78{bottom:246.990000px;}
.y3a{bottom:249.870000px;}
.yc4{bottom:250.230000px;}
.yfc{bottom:250.950000px;}
.y9a{bottom:251.310000px;}
.y159{bottom:258.150000px;}
.y196{bottom:261.930000px;}
.y11a{bottom:262.650000px;}
.y77{bottom:264.270000px;}
.y39{bottom:267.150000px;}
.yc3{bottom:267.870000px;}
.y99{bottom:268.590000px;}
.yfb{bottom:272.730000px;}
.y158{bottom:275.070000px;}
.y1b1{bottom:275.250000px;}
.y195{bottom:279.030000px;}
.y119{bottom:279.570000px;}
.y76{bottom:281.550000px;}
.y38{bottom:284.430000px;}
.yc2{bottom:285.150000px;}
.y98{bottom:285.870000px;}
.y157{bottom:292.530000px;}
.y194{bottom:296.310000px;}
.yfa{bottom:297.030000px;}
.y75{bottom:298.830000px;}
.y37{bottom:301.170000px;}
.yc1{bottom:302.250000px;}
.y97{bottom:303.150000px;}
.y156{bottom:309.810000px;}
.y193{bottom:313.590000px;}
.yf9{bottom:314.310000px;}
.y74{bottom:316.110000px;}
.y36{bottom:318.810000px;}
.yc0{bottom:319.530000px;}
.y96{bottom:320.430000px;}
.y155{bottom:327.090000px;}
.y192{bottom:330.870000px;}
.yf8{bottom:331.230000px;}
.y118{bottom:331.590000px;}
.y73{bottom:332.850000px;}
.y35{bottom:336.090000px;}
.ybf{bottom:336.810000px;}
.y95{bottom:337.530000px;}
.y1b0{bottom:344.010000px;}
.y154{bottom:344.370000px;}
.y191{bottom:348.150000px;}
.yf7{bottom:348.870000px;}
.y72{bottom:350.490000px;}
.y34{bottom:353.370000px;}
.ybe{bottom:354.090000px;}
.y1b5{bottom:354.450000px;}
.y94{bottom:354.810000px;}
.y153{bottom:361.695000px;}
.y190{bottom:365.475000px;}
.yf6{bottom:366.195000px;}
.y71{bottom:367.815000px;}
.y33{bottom:370.695000px;}
.ybd{bottom:371.415000px;}
.y93{bottom:372.135000px;}
.y1af{bottom:378.795000px;}
.y152{bottom:378.975000px;}
.y18f{bottom:382.575000px;}
.yf5{bottom:383.475000px;}
.y70{bottom:385.095000px;}
.y32{bottom:387.975000px;}
.ybc{bottom:388.695000px;}
.y92{bottom:389.415000px;}
.y151{bottom:396.075000px;}
.y18e{bottom:399.855000px;}
.y117{bottom:400.215000px;}
.yf4{bottom:400.575000px;}
.y6f{bottom:402.375000px;}
.y31{bottom:405.075000px;}
.ybb{bottom:405.795000px;}
.y91{bottom:406.695000px;}
.y150{bottom:413.355000px;}
.y18d{bottom:417.135000px;}
.yf3{bottom:417.855000px;}
.y6e{bottom:419.655000px;}
.y30{bottom:422.355000px;}
.yba{bottom:423.075000px;}
.y90{bottom:423.975000px;}
.y14f{bottom:430.635000px;}
.y18c{bottom:434.415000px;}
.yf2{bottom:435.135000px;}
.y6d{bottom:436.755000px;}
.y2f{bottom:439.635000px;}
.yb9{bottom:440.355000px;}
.y8f{bottom:441.075000px;}
.y14e{bottom:447.915000px;}
.y18b{bottom:451.695000px;}
.yf1{bottom:452.415000px;}
.y6c{bottom:454.035000px;}
.y2e{bottom:456.915000px;}
.yb8{bottom:457.635000px;}
.y8e{bottom:457.995000px;}
.y1b7{bottom:458.355000px;}
.y14d{bottom:465.195000px;}
.y18a{bottom:468.795000px;}
.yf0{bottom:469.695000px;}
.y6b{bottom:471.315000px;}
.y2d{bottom:474.195000px;}
.yb7{bottom:474.915000px;}
.y8d{bottom:475.635000px;}
.y14c{bottom:482.295000px;}
.y189{bottom:486.075000px;}
.yef{bottom:486.795000px;}
.y6a{bottom:488.595000px;}
.y2c{bottom:491.115000px;}
.yb6{bottom:492.195000px;}
.y8c{bottom:492.915000px;}
.y14b{bottom:499.575000px;}
.y188{bottom:503.355000px;}
.yee{bottom:504.075000px;}
.y69{bottom:505.875000px;}
.y2b{bottom:508.575000px;}
.yb5{bottom:509.295000px;}
.y8b{bottom:510.195000px;}
.y14a{bottom:516.855000px;}
.y187{bottom:520.635000px;}
.yed{bottom:521.355000px;}
.y68{bottom:522.795000px;}
.y2a{bottom:525.855000px;}
.yb4{bottom:526.575000px;}
.y8a{bottom:526.935000px;}
.ya7{bottom:527.295000px;}
.y149{bottom:534.135000px;}
.y186{bottom:537.915000px;}
.yec{bottom:538.635000px;}
.y67{bottom:540.255000px;}
.y29{bottom:543.135000px;}
.yb3{bottom:543.855000px;}
.y89{bottom:544.575000px;}
.y148{bottom:551.415000px;}
.y185{bottom:555.195000px;}
.yeb{bottom:555.555000px;}
.y116{bottom:555.915000px;}
.y66{bottom:557.535000px;}
.y28{bottom:560.415000px;}
.yb2{bottom:561.135000px;}
.y88{bottom:561.855000px;}
.y1ae{bottom:568.515000px;}
.y147{bottom:568.695000px;}
.y184{bottom:571.935000px;}
.y115{bottom:573.195000px;}
.y65{bottom:575.895000px;}
.yea{bottom:577.335000px;}
.y27{bottom:577.695000px;}
.yb1{bottom:578.415000px;}
.y87{bottom:579.135000px;}
.y146{bottom:585.795000px;}
.y114{bottom:590.295000px;}
.y183{bottom:593.715000px;}
.y64{bottom:594.255000px;}
.y26{bottom:594.435000px;}
.yb0{bottom:595.515000px;}
.y86{bottom:596.415000px;}
.ye9{bottom:598.935000px;}
.y145{bottom:602.715000px;}
.y1ad{bottom:603.075000px;}
.y113{bottom:607.215000px;}
.y25{bottom:612.075000px;}
.y63{bottom:612.615000px;}
.yaf{bottom:612.795000px;}
.y85{bottom:613.695000px;}
.y181{bottom:615.495000px;}
.y1ac{bottom:620.385000px;}
.ye8{bottom:620.745000px;}
.y144{bottom:624.525000px;}
.y112{bottom:629.025000px;}
.y24{bottom:629.385000px;}
.yae{bottom:630.105000px;}
.y62{bottom:630.825000px;}
.y180{bottom:637.305000px;}
.y1ab{bottom:637.665000px;}
.ye7{bottom:645.225000px;}
.y143{bottom:646.305000px;}
.y23{bottom:646.665000px;}
.yad{bottom:647.385000px;}
.y61{bottom:648.105000px;}
.y111{bottom:650.805000px;}
.y1aa{bottom:654.585000px;}
.y17f{bottom:659.085000px;}
.ye6{bottom:662.325000px;}
.y22{bottom:663.945000px;}
.yac{bottom:664.665000px;}
.y60{bottom:665.385000px;}
.y142{bottom:668.085000px;}
.y1a9{bottom:671.685000px;}
.y10f{bottom:672.585000px;}
.ye5{bottom:679.245000px;}
.y17e{bottom:680.685000px;}
.y21{bottom:681.225000px;}
.yab{bottom:681.585000px;}
.y5f{bottom:682.665000px;}
.y1a8{bottom:689.325000px;}
.y141{bottom:689.685000px;}
.yaa{bottom:695.445000px;}
.ye4{bottom:696.885000px;}
.y20{bottom:698.325000px;}
.y5e{bottom:699.945000px;}
.y1a7{bottom:706.605000px;}
.y140{bottom:711.465000px;}
.ye3{bottom:714.165000px;}
.y1f{bottom:715.605000px;}
.ya6{bottom:716.865000px;}
.y5d{bottom:717.225000px;}
.y17d{bottom:722.445000px;}
.y1a6{bottom:723.885000px;}
.ye2{bottom:731.445000px;}
.y1e{bottom:732.885000px;}
.y5c{bottom:734.325000px;}
.y13f{bottom:735.945000px;}
.y17c{bottom:739.725000px;}
.y1a5{bottom:741.165000px;}
.y10e{bottom:748.365000px;}
.ye1{bottom:748.725000px;}
.y1d{bottom:750.165000px;}
.y5b{bottom:751.605000px;}
.y13e{bottom:753.225000px;}
.y17b{bottom:756.465000px;}
.y1a4{bottom:758.445000px;}
.ye0{bottom:765.825000px;}
.y1c{bottom:767.445000px;}
.y5a{bottom:768.885000px;}
.y13d{bottom:770.325000px;}
.y17a{bottom:774.105000px;}
.y1a3{bottom:775.545000px;}
.ydf{bottom:783.105000px;}
.y1b{bottom:784.725000px;}
.y59{bottom:786.165000px;}
.y13c{bottom:787.605000px;}
.y179{bottom:791.385000px;}
.y1a2{bottom:792.825000px;}
.yde{bottom:800.385000px;}
.y1a{bottom:801.825000px;}
.y58{bottom:803.445000px;}
.y13b{bottom:804.525000px;}
.y1a1{bottom:806.325000px;}
.y178{bottom:808.665000px;}
.ydd{bottom:817.665000px;}
.y19{bottom:819.105000px;}
.y57{bottom:820.725000px;}
.y13a{bottom:822.165000px;}
.y177{bottom:825.945000px;}
.ydc{bottom:834.945000px;}
.y18{bottom:836.385000px;}
.y56{bottom:837.825000px;}
.y139{bottom:839.445000px;}
.y176{bottom:843.045000px;}
.ydb{bottom:852.045000px;}
.y17{bottom:853.665000px;}
.y55{bottom:854.745000px;}
.y84{bottom:855.105000px;}
.y138{bottom:856.545000px;}
.y175{bottom:860.325000px;}
.yda{bottom:869.325000px;}
.y16{bottom:870.945000px;}
.y54{bottom:872.385000px;}
.y137{bottom:873.825000px;}
.y174{bottom:877.650000px;}
.yd9{bottom:886.650000px;}
.y15{bottom:887.730000px;}
.y53{bottom:889.710000px;}
.y136{bottom:891.150000px;}
.y173{bottom:894.930000px;}
.yd8{bottom:903.930000px;}
.y14{bottom:905.730000px;}
.y52{bottom:906.990000px;}
.y135{bottom:908.430000px;}
.y172{bottom:912.210000px;}
.yd7{bottom:920.850000px;}
.y10d{bottom:921.210000px;}
.y13{bottom:923.370000px;}
.y51{bottom:924.090000px;}
.y134{bottom:925.710000px;}
.y171{bottom:929.490000px;}
.y10c{bottom:938.490000px;}
.y12{bottom:940.650000px;}
.y50{bottom:941.370000px;}
.yd6{bottom:942.630000px;}
.y133{bottom:942.990000px;}
.y170{bottom:946.590000px;}
.y10b{bottom:955.230000px;}
.y11{bottom:957.930000px;}
.y4f{bottom:958.650000px;}
.y132{bottom:960.090000px;}
.y16f{bottom:963.870000px;}
.yd4{bottom:964.230000px;}
.y10{bottom:975.210000px;}
.y4e{bottom:975.930000px;}
.y10a{bottom:977.010000px;}
.y131{bottom:977.370000px;}
.y16e{bottom:981.150000px;}
.yd2{bottom:986.010000px;}
.yf{bottom:992.490000px;}
.y4d{bottom:992.850000px;}
.y83{bottom:993.210000px;}
.y130{bottom:994.650000px;}
.y16d{bottom:998.430000px;}
.y109{bottom:998.790000px;}
.ye{bottom:1009.770000px;}
.y4c{bottom:1010.490000px;}
.y12f{bottom:1011.930000px;}
.y16c{bottom:1015.350000px;}
.y108{bottom:1020.570000px;}
.yd{bottom:1027.590000px;}
.y12e{bottom:1029.210000px;}
.y16b{bottom:1036.950000px;}
.y1b4{bottom:1044.510000px;}
.yc{bottom:1044.870000px;}
.y12d{bottom:1046.490000px;}
.y16a{bottom:1058.730000px;}
.yb{bottom:1062.150000px;}
.y12c{bottom:1063.590000px;}
.yd1{bottom:1079.070000px;}
.y4b{bottom:1079.430000px;}
.ya{bottom:1079.790000px;}
.y168{bottom:1080.510000px;}
.y12b{bottom:1080.870000px;}
.y4a{bottom:1096.710000px;}
.y12a{bottom:1097.790000px;}
.y9{bottom:1100.490000px;}
.y167{bottom:1102.290000px;}
.y107{bottom:1113.630000px;}
.y49{bottom:1113.990000px;}
.y129{bottom:1119.570000px;}
.y8{bottom:1121.190000px;}
.y164{bottom:1124.070000px;}
.y48{bottom:1131.090000px;}
.y126{bottom:1141.380000px;}
.y7{bottom:1141.920000px;}
.y47{bottom:1148.400000px;}
.y6{bottom:1162.620000px;}
.yd0{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;}
.hc{height:34.380000px;}
.hd{height:34.416000px;}
.hb{height:34.560000px;}
.h6{height:41.756133px;}
.h2{height:58.621992px;}
.h3{height:58.651172px;}
.h5{height:60.226875px;}
.h7{height:61.423863px;}
.h4{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w28{width:53.136000px;}
.w27{width:62.640000px;}
.w1e{width:63.936000px;}
.w25{width:83.376000px;}
.w21{width:110.376000px;}
.w22{width:115.776000px;}
.w18{width:116.496000px;}
.w1a{width:118.296000px;}
.w1c{width:130.176000px;}
.w19{width:132.480000px;}
.w17{width:133.416000px;}
.w1d{width:135.756000px;}
.w12{width:136.296000px;}
.w2{width:138.996000px;}
.we{width:142.056000px;}
.wb{width:147.816000px;}
.w15{width:148.176000px;}
.w20{width:153.540000px;}
.w1f{width:154.290000px;}
.w6{width:155.370000px;}
.wa{width:155.910000px;}
.w23{width:158.070000px;}
.w16{width:158.610000px;}
.w7{width:164.730000px;}
.w14{width:171.390000px;}
.w13{width:177.150000px;}
.w3{width:178.590000px;}
.wf{width:184.530000px;}
.w24{width:202.350000px;}
.w26{width:207.030000px;}
.w5{width:208.875000px;}
.w10{width:214.590000px;}
.wc{width:218.010000px;}
.w9{width:223.095000px;}
.w8{width:237.450000px;}
.w4{width:238.890000px;}
.w11{width:239.115000px;}
.wd{width:258.915000px;}
.w1b{width:378.435000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:1.080000px;}
.x17{left:6.660000px;}
.x15{left:8.460000px;}
.x42{left:10.440000px;}
.x1a{left:11.700000px;}
.x1e{left:13.320000px;}
.x3c{left:14.940000px;}
.x37{left:16.920000px;}
.x6f{left:18.180000px;}
.x13{left:19.260000px;}
.x36{left:20.700000px;}
.x1f{left:21.780000px;}
.x3d{left:23.220000px;}
.x6e{left:24.660000px;}
.x63{left:25.920000px;}
.x24{left:27.360000px;}
.x61{left:28.845000px;}
.x27{left:30.060000px;}
.x2f{left:32.940000px;}
.x54{left:34.380000px;}
.x5f{left:36.360000px;}
.x4a{left:38.520000px;}
.x48{left:40.860000px;}
.x4e{left:47.340000px;}
.x67{left:48.636000px;}
.x47{left:51.336000px;}
.x23{left:52.920000px;}
.xc{left:54.000000px;}
.x4f{left:55.476000px;}
.x46{left:57.780000px;}
.x12{left:60.480000px;}
.x44{left:61.560000px;}
.x5a{left:62.670000px;}
.x45{left:64.620000px;}
.x30{left:66.285000px;}
.x33{left:70.065000px;}
.x64{left:73.254000px;}
.x29{left:74.925000px;}
.x20{left:76.185000px;}
.x1b{left:78.165000px;}
.x43{left:79.245000px;}
.xe{left:81.000000px;}
.x3a{left:82.845000px;}
.x6d{left:84.105000px;}
.x65{left:85.500000px;}
.x66{left:89.280000px;}
.x21{left:91.305000px;}
.x58{left:93.456000px;}
.x1d{left:96.885000px;}
.x1c{left:98.850000px;}
.x59{left:101.190000px;}
.x2b{left:104.265000px;}
.x31{left:105.330000px;}
.xd{left:108.036000px;}
.x3b{left:110.205000px;}
.x2a{left:111.270000px;}
.x34{left:116.145000px;}
.x5c{left:119.196000px;}
.x32{left:121.905000px;}
.x57{left:123.510000px;}
.x56{left:125.670000px;}
.x51{left:161.310000px;}
.x3e{left:192.990000px;}
.x11{left:198.030000px;}
.x14{left:201.630000px;}
.x35{left:204.330000px;}
.x25{left:210.630000px;}
.x6{left:213.150000px;}
.x50{left:215.490000px;}
.x68{left:218.010000px;}
.xa{left:223.230000px;}
.x22{left:230.790000px;}
.x2c{left:243.030000px;}
.x3{left:254.550000px;}
.x8{left:262.830000px;}
.x5d{left:275.655000px;}
.x70{left:278.175000px;}
.x2{left:300.675000px;}
.x71{left:317.955000px;}
.x5b{left:322.095000px;}
.x1{left:324.255000px;}
.xf{left:338.475000px;}
.x72{left:341.895000px;}
.x49{left:349.455000px;}
.x2d{left:361.155000px;}
.x3f{left:372.495000px;}
.x26{left:377.535000px;}
.x16{left:382.575000px;}
.x38{left:384.195000px;}
.x69{left:422.535000px;}
.x52{left:433.515000px;}
.x5{left:446.475000px;}
.xb{left:450.075000px;}
.x7{left:451.515000px;}
.x5e{left:456.405000px;}
.x9{left:462.345000px;}
.x4b{left:468.285000px;}
.x6a{left:508.245000px;}
.x40{left:516.885000px;}
.x53{left:565.845000px;}
.x2e{left:581.505000px;}
.x39{left:601.125000px;}
.x4c{left:603.105000px;}
.x60{left:612.105000px;}
.x28{left:617.145000px;}
.x18{left:623.805000px;}
.x41{left:690.630000px;}
.x73{left:697.470000px;}
.x55{left:703.950000px;}
.x6b{left:717.450000px;}
.x4d{left:721.950000px;}
.x62{left:724.650000px;}
.x6c{left:782.430000px;}
.x10{left:797.550000px;}
.x4{left:812.130000px;}
@media print{
.v1{vertical-align:-60.928000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.592000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:-0.051200pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.456533pt;}
.lsb{letter-spacing:0.592000pt;}
.ls10{letter-spacing:0.736000pt;}
.ls1{letter-spacing:9.760000pt;}
.ls12{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.ls6{letter-spacing:57.040640pt;}
.lsf{letter-spacing:516.000000pt;}
.ws4{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-13.872000pt;}
.wsa{word-spacing:-13.736533pt;}
.ws5{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.185067pt;}
.ws7{word-spacing:-13.096533pt;}
.ws3{word-spacing:-12.688000pt;}
.ws2{word-spacing:0.000000pt;}
._13{margin-left:-1.885653pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.062400pt;}
._1{width:2.511573pt;}
._6{width:3.665280pt;}
._7{width:4.731520pt;}
._8{width:5.770880pt;}
._3{width:6.746240pt;}
._d{width:7.778347pt;}
._4{width:8.962133pt;}
._5{width:9.914453pt;}
._c{width:10.973013pt;}
._b{width:12.058240pt;}
._12{width:14.346240pt;}
._9{width:15.457920pt;}
._a{width:16.405760pt;}
._f{width:18.170880pt;}
._e{width:19.229440pt;}
._11{width:20.234880pt;}
._10{width:22.208000pt;}
._16{width:23.198080pt;}
._18{width:24.194347pt;}
._17{width:28.737920pt;}
._15{width:134.024960pt;}
._14{width:969.444267pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y169{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.y110{bottom:2.880000pt;}
.yd3{bottom:3.040000pt;}
.y5{bottom:3.200000pt;}
.yd5{bottom:3.360000pt;}
.y182{bottom:3.386667pt;}
.y127{bottom:10.560000pt;}
.y120{bottom:10.720000pt;}
.y165{bottom:10.746667pt;}
.y128{bottom:18.240000pt;}
.y166{bottom:18.266667pt;}
.y121{bottom:18.400000pt;}
.y4{bottom:18.880000pt;}
.y45{bottom:53.440000pt;}
.ycf{bottom:53.760000pt;}
.ya5{bottom:54.720000pt;}
.y125{bottom:57.760000pt;}
.y163{bottom:60.800000pt;}
.y106{bottom:62.080000pt;}
.y1a0{bottom:64.160000pt;}
.y82{bottom:66.240000pt;}
.y44{bottom:68.800000pt;}
.yce{bottom:69.440000pt;}
.ya4{bottom:70.080000pt;}
.y1b3{bottom:76.000000pt;}
.y124{bottom:77.120000pt;}
.y105{bottom:77.440000pt;}
.y19f{bottom:79.360000pt;}
.y81{bottom:81.600000pt;}
.y43{bottom:84.160000pt;}
.ycd{bottom:84.800000pt;}
.ya3{bottom:85.440000pt;}
.y162{bottom:91.392000pt;}
.y104{bottom:92.832000pt;}
.y123{bottom:96.512000pt;}
.y80{bottom:96.992000pt;}
.y42{bottom:99.392000pt;}
.ycc{bottom:100.032000pt;}
.ya2{bottom:100.832000pt;}
.y161{bottom:106.752000pt;}
.y103{bottom:108.032000pt;}
.y19e{bottom:110.112000pt;}
.y7f{bottom:112.352000pt;}
.y41{bottom:114.752000pt;}
.ycb{bottom:115.072000pt;}
.y122{bottom:115.712000pt;}
.ya1{bottom:115.872000pt;}
.ya9{bottom:116.192000pt;}
.y160{bottom:122.112000pt;}
.y102{bottom:123.392000pt;}
.y19d{bottom:125.472000pt;}
.y7e{bottom:127.552000pt;}
.y40{bottom:130.112000pt;}
.yca{bottom:130.752000pt;}
.y1b6{bottom:131.072000pt;}
.ya0{bottom:131.392000pt;}
.y11f{bottom:135.066667pt;}
.y15f{bottom:137.466667pt;}
.y101{bottom:138.746667pt;}
.y19c{bottom:140.826667pt;}
.y7d{bottom:142.906667pt;}
.y3f{bottom:145.466667pt;}
.yc9{bottom:146.106667pt;}
.ya8{bottom:146.426667pt;}
.y9f{bottom:146.746667pt;}
.y15e{bottom:152.506667pt;}
.y1b2{bottom:152.666667pt;}
.y100{bottom:154.106667pt;}
.y19b{bottom:156.026667pt;}
.y7c{bottom:158.266667pt;}
.y3e{bottom:160.826667pt;}
.yc8{bottom:161.466667pt;}
.y9e{bottom:162.106667pt;}
.y15d{bottom:168.026667pt;}
.yff{bottom:169.466667pt;}
.y19a{bottom:171.386667pt;}
.y11e{bottom:172.026667pt;}
.y7b{bottom:173.626667pt;}
.y3d{bottom:176.026667pt;}
.yc7{bottom:176.666667pt;}
.y9d{bottom:177.466667pt;}
.y15c{bottom:183.386667pt;}
.yfe{bottom:184.506667pt;}
.y199{bottom:186.426667pt;}
.y11d{bottom:187.386667pt;}
.y7a{bottom:188.986667pt;}
.y3c{bottom:191.386667pt;}
.yc6{bottom:192.026667pt;}
.y9c{bottom:192.826667pt;}
.y15b{bottom:198.746667pt;}
.y198{bottom:202.106667pt;}
.y11c{bottom:202.746667pt;}
.yfd{bottom:203.706667pt;}
.y79{bottom:204.026667pt;}
.y3b{bottom:206.746667pt;}
.yc5{bottom:207.386667pt;}
.y9b{bottom:208.026667pt;}
.y15a{bottom:214.106667pt;}
.y197{bottom:217.466667pt;}
.y11b{bottom:218.106667pt;}
.y78{bottom:219.546667pt;}
.y3a{bottom:222.106667pt;}
.yc4{bottom:222.426667pt;}
.yfc{bottom:223.066667pt;}
.y9a{bottom:223.386667pt;}
.y159{bottom:229.466667pt;}
.y196{bottom:232.826667pt;}
.y11a{bottom:233.466667pt;}
.y77{bottom:234.906667pt;}
.y39{bottom:237.466667pt;}
.yc3{bottom:238.106667pt;}
.y99{bottom:238.746667pt;}
.yfb{bottom:242.426667pt;}
.y158{bottom:244.506667pt;}
.y1b1{bottom:244.666667pt;}
.y195{bottom:248.026667pt;}
.y119{bottom:248.506667pt;}
.y76{bottom:250.266667pt;}
.y38{bottom:252.826667pt;}
.yc2{bottom:253.466667pt;}
.y98{bottom:254.106667pt;}
.y157{bottom:260.026667pt;}
.y194{bottom:263.386667pt;}
.yfa{bottom:264.026667pt;}
.y75{bottom:265.626667pt;}
.y37{bottom:267.706667pt;}
.yc1{bottom:268.666667pt;}
.y97{bottom:269.466667pt;}
.y156{bottom:275.386667pt;}
.y193{bottom:278.746667pt;}
.yf9{bottom:279.386667pt;}
.y74{bottom:280.986667pt;}
.y36{bottom:283.386667pt;}
.yc0{bottom:284.026667pt;}
.y96{bottom:284.826667pt;}
.y155{bottom:290.746667pt;}
.y192{bottom:294.106667pt;}
.yf8{bottom:294.426667pt;}
.y118{bottom:294.746667pt;}
.y73{bottom:295.866667pt;}
.y35{bottom:298.746667pt;}
.ybf{bottom:299.386667pt;}
.y95{bottom:300.026667pt;}
.y1b0{bottom:305.786667pt;}
.y154{bottom:306.106667pt;}
.y191{bottom:309.466667pt;}
.yf7{bottom:310.106667pt;}
.y72{bottom:311.546667pt;}
.y34{bottom:314.106667pt;}
.ybe{bottom:314.746667pt;}
.y1b5{bottom:315.066667pt;}
.y94{bottom:315.386667pt;}
.y153{bottom:321.506667pt;}
.y190{bottom:324.866667pt;}
.yf6{bottom:325.506667pt;}
.y71{bottom:326.946667pt;}
.y33{bottom:329.506667pt;}
.ybd{bottom:330.146667pt;}
.y93{bottom:330.786667pt;}
.y1af{bottom:336.706667pt;}
.y152{bottom:336.866667pt;}
.y18f{bottom:340.066667pt;}
.yf5{bottom:340.866667pt;}
.y70{bottom:342.306667pt;}
.y32{bottom:344.866667pt;}
.ybc{bottom:345.506667pt;}
.y92{bottom:346.146667pt;}
.y151{bottom:352.066667pt;}
.y18e{bottom:355.426667pt;}
.y117{bottom:355.746667pt;}
.yf4{bottom:356.066667pt;}
.y6f{bottom:357.666667pt;}
.y31{bottom:360.066667pt;}
.ybb{bottom:360.706667pt;}
.y91{bottom:361.506667pt;}
.y150{bottom:367.426667pt;}
.y18d{bottom:370.786667pt;}
.yf3{bottom:371.426667pt;}
.y6e{bottom:373.026667pt;}
.y30{bottom:375.426667pt;}
.yba{bottom:376.066667pt;}
.y90{bottom:376.866667pt;}
.y14f{bottom:382.786667pt;}
.y18c{bottom:386.146667pt;}
.yf2{bottom:386.786667pt;}
.y6d{bottom:388.226667pt;}
.y2f{bottom:390.786667pt;}
.yb9{bottom:391.426667pt;}
.y8f{bottom:392.066667pt;}
.y14e{bottom:398.146667pt;}
.y18b{bottom:401.506667pt;}
.yf1{bottom:402.146667pt;}
.y6c{bottom:403.586667pt;}
.y2e{bottom:406.146667pt;}
.yb8{bottom:406.786667pt;}
.y8e{bottom:407.106667pt;}
.y1b7{bottom:407.426667pt;}
.y14d{bottom:413.506667pt;}
.y18a{bottom:416.706667pt;}
.yf0{bottom:417.506667pt;}
.y6b{bottom:418.946667pt;}
.y2d{bottom:421.506667pt;}
.yb7{bottom:422.146667pt;}
.y8d{bottom:422.786667pt;}
.y14c{bottom:428.706667pt;}
.y189{bottom:432.066667pt;}
.yef{bottom:432.706667pt;}
.y6a{bottom:434.306667pt;}
.y2c{bottom:436.546667pt;}
.yb6{bottom:437.506667pt;}
.y8c{bottom:438.146667pt;}
.y14b{bottom:444.066667pt;}
.y188{bottom:447.426667pt;}
.yee{bottom:448.066667pt;}
.y69{bottom:449.666667pt;}
.y2b{bottom:452.066667pt;}
.yb5{bottom:452.706667pt;}
.y8b{bottom:453.506667pt;}
.y14a{bottom:459.426667pt;}
.y187{bottom:462.786667pt;}
.yed{bottom:463.426667pt;}
.y68{bottom:464.706667pt;}
.y2a{bottom:467.426667pt;}
.yb4{bottom:468.066667pt;}
.y8a{bottom:468.386667pt;}
.ya7{bottom:468.706667pt;}
.y149{bottom:474.786667pt;}
.y186{bottom:478.146667pt;}
.yec{bottom:478.786667pt;}
.y67{bottom:480.226667pt;}
.y29{bottom:482.786667pt;}
.yb3{bottom:483.426667pt;}
.y89{bottom:484.066667pt;}
.y148{bottom:490.146667pt;}
.y185{bottom:493.506667pt;}
.yeb{bottom:493.826667pt;}
.y116{bottom:494.146667pt;}
.y66{bottom:495.586667pt;}
.y28{bottom:498.146667pt;}
.yb2{bottom:498.786667pt;}
.y88{bottom:499.426667pt;}
.y1ae{bottom:505.346667pt;}
.y147{bottom:505.506667pt;}
.y184{bottom:508.386667pt;}
.y115{bottom:509.506667pt;}
.y65{bottom:511.906667pt;}
.yea{bottom:513.186667pt;}
.y27{bottom:513.506667pt;}
.yb1{bottom:514.146667pt;}
.y87{bottom:514.786667pt;}
.y146{bottom:520.706667pt;}
.y114{bottom:524.706667pt;}
.y183{bottom:527.746667pt;}
.y64{bottom:528.226667pt;}
.y26{bottom:528.386667pt;}
.yb0{bottom:529.346667pt;}
.y86{bottom:530.146667pt;}
.ye9{bottom:532.386667pt;}
.y145{bottom:535.746667pt;}
.y1ad{bottom:536.066667pt;}
.y113{bottom:539.746667pt;}
.y25{bottom:544.066667pt;}
.y63{bottom:544.546667pt;}
.yaf{bottom:544.706667pt;}
.y85{bottom:545.506667pt;}
.y181{bottom:547.106667pt;}
.y1ac{bottom:551.453333pt;}
.ye8{bottom:551.773333pt;}
.y144{bottom:555.133333pt;}
.y112{bottom:559.133333pt;}
.y24{bottom:559.453333pt;}
.yae{bottom:560.093333pt;}
.y62{bottom:560.733333pt;}
.y180{bottom:566.493333pt;}
.y1ab{bottom:566.813333pt;}
.ye7{bottom:573.533333pt;}
.y143{bottom:574.493333pt;}
.y23{bottom:574.813333pt;}
.yad{bottom:575.453333pt;}
.y61{bottom:576.093333pt;}
.y111{bottom:578.493333pt;}
.y1aa{bottom:581.853333pt;}
.y17f{bottom:585.853333pt;}
.ye6{bottom:588.733333pt;}
.y22{bottom:590.173333pt;}
.yac{bottom:590.813333pt;}
.y60{bottom:591.453333pt;}
.y142{bottom:593.853333pt;}
.y1a9{bottom:597.053333pt;}
.y10f{bottom:597.853333pt;}
.ye5{bottom:603.773333pt;}
.y17e{bottom:605.053333pt;}
.y21{bottom:605.533333pt;}
.yab{bottom:605.853333pt;}
.y5f{bottom:606.813333pt;}
.y1a8{bottom:612.733333pt;}
.y141{bottom:613.053333pt;}
.yaa{bottom:618.173333pt;}
.ye4{bottom:619.453333pt;}
.y20{bottom:620.733333pt;}
.y5e{bottom:622.173333pt;}
.y1a7{bottom:628.093333pt;}
.y140{bottom:632.413333pt;}
.ye3{bottom:634.813333pt;}
.y1f{bottom:636.093333pt;}
.ya6{bottom:637.213333pt;}
.y5d{bottom:637.533333pt;}
.y17d{bottom:642.173333pt;}
.y1a6{bottom:643.453333pt;}
.ye2{bottom:650.173333pt;}
.y1e{bottom:651.453333pt;}
.y5c{bottom:652.733333pt;}
.y13f{bottom:654.173333pt;}
.y17c{bottom:657.533333pt;}
.y1a5{bottom:658.813333pt;}
.y10e{bottom:665.213333pt;}
.ye1{bottom:665.533333pt;}
.y1d{bottom:666.813333pt;}
.y5b{bottom:668.093333pt;}
.y13e{bottom:669.533333pt;}
.y17b{bottom:672.413333pt;}
.y1a4{bottom:674.173333pt;}
.ye0{bottom:680.733333pt;}
.y1c{bottom:682.173333pt;}
.y5a{bottom:683.453333pt;}
.y13d{bottom:684.733333pt;}
.y17a{bottom:688.093333pt;}
.y1a3{bottom:689.373333pt;}
.ydf{bottom:696.093333pt;}
.y1b{bottom:697.533333pt;}
.y59{bottom:698.813333pt;}
.y13c{bottom:700.093333pt;}
.y179{bottom:703.453333pt;}
.y1a2{bottom:704.733333pt;}
.yde{bottom:711.453333pt;}
.y1a{bottom:712.733333pt;}
.y58{bottom:714.173333pt;}
.y13b{bottom:715.133333pt;}
.y1a1{bottom:716.733333pt;}
.y178{bottom:718.813333pt;}
.ydd{bottom:726.813333pt;}
.y19{bottom:728.093333pt;}
.y57{bottom:729.533333pt;}
.y13a{bottom:730.813333pt;}
.y177{bottom:734.173333pt;}
.ydc{bottom:742.173333pt;}
.y18{bottom:743.453333pt;}
.y56{bottom:744.733333pt;}
.y139{bottom:746.173333pt;}
.y176{bottom:749.373333pt;}
.ydb{bottom:757.373333pt;}
.y17{bottom:758.813333pt;}
.y55{bottom:759.773333pt;}
.y84{bottom:760.093333pt;}
.y138{bottom:761.373333pt;}
.y175{bottom:764.733333pt;}
.yda{bottom:772.733333pt;}
.y16{bottom:774.173333pt;}
.y54{bottom:775.453333pt;}
.y137{bottom:776.733333pt;}
.y174{bottom:780.133333pt;}
.yd9{bottom:788.133333pt;}
.y15{bottom:789.093333pt;}
.y53{bottom:790.853333pt;}
.y136{bottom:792.133333pt;}
.y173{bottom:795.493333pt;}
.yd8{bottom:803.493333pt;}
.y14{bottom:805.093333pt;}
.y52{bottom:806.213333pt;}
.y135{bottom:807.493333pt;}
.y172{bottom:810.853333pt;}
.yd7{bottom:818.533333pt;}
.y10d{bottom:818.853333pt;}
.y13{bottom:820.773333pt;}
.y51{bottom:821.413333pt;}
.y134{bottom:822.853333pt;}
.y171{bottom:826.213333pt;}
.y10c{bottom:834.213333pt;}
.y12{bottom:836.133333pt;}
.y50{bottom:836.773333pt;}
.yd6{bottom:837.893333pt;}
.y133{bottom:838.213333pt;}
.y170{bottom:841.413333pt;}
.y10b{bottom:849.093333pt;}
.y11{bottom:851.493333pt;}
.y4f{bottom:852.133333pt;}
.y132{bottom:853.413333pt;}
.y16f{bottom:856.773333pt;}
.yd4{bottom:857.093333pt;}
.y10{bottom:866.853333pt;}
.y4e{bottom:867.493333pt;}
.y10a{bottom:868.453333pt;}
.y131{bottom:868.773333pt;}
.y16e{bottom:872.133333pt;}
.yd2{bottom:876.453333pt;}
.yf{bottom:882.213333pt;}
.y4d{bottom:882.533333pt;}
.y83{bottom:882.853333pt;}
.y130{bottom:884.133333pt;}
.y16d{bottom:887.493333pt;}
.y109{bottom:887.813333pt;}
.ye{bottom:897.573333pt;}
.y4c{bottom:898.213333pt;}
.y12f{bottom:899.493333pt;}
.y16c{bottom:902.533333pt;}
.y108{bottom:907.173333pt;}
.yd{bottom:913.413333pt;}
.y12e{bottom:914.853333pt;}
.y16b{bottom:921.733333pt;}
.y1b4{bottom:928.453333pt;}
.yc{bottom:928.773333pt;}
.y12d{bottom:930.213333pt;}
.y16a{bottom:941.093333pt;}
.yb{bottom:944.133333pt;}
.y12c{bottom:945.413333pt;}
.yd1{bottom:959.173333pt;}
.y4b{bottom:959.493333pt;}
.ya{bottom:959.813333pt;}
.y168{bottom:960.453333pt;}
.y12b{bottom:960.773333pt;}
.y4a{bottom:974.853333pt;}
.y12a{bottom:975.813333pt;}
.y9{bottom:978.213333pt;}
.y167{bottom:979.813333pt;}
.y107{bottom:989.893333pt;}
.y49{bottom:990.213333pt;}
.y129{bottom:995.173333pt;}
.y8{bottom:996.613333pt;}
.y164{bottom:999.173333pt;}
.y48{bottom:1005.413333pt;}
.y126{bottom:1014.560000pt;}
.y7{bottom:1015.040000pt;}
.y47{bottom:1020.800000pt;}
.y6{bottom:1033.440000pt;}
.yd0{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;}
.hc{height:30.560000pt;}
.hd{height:30.592000pt;}
.hb{height:30.720000pt;}
.h6{height:37.116563pt;}
.h2{height:52.108438pt;}
.h3{height:52.134375pt;}
.h5{height:53.535000pt;}
.h7{height:54.598989pt;}
.h4{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w28{width:47.232000pt;}
.w27{width:55.680000pt;}
.w1e{width:56.832000pt;}
.w25{width:74.112000pt;}
.w21{width:98.112000pt;}
.w22{width:102.912000pt;}
.w18{width:103.552000pt;}
.w1a{width:105.152000pt;}
.w1c{width:115.712000pt;}
.w19{width:117.760000pt;}
.w17{width:118.592000pt;}
.w1d{width:120.672000pt;}
.w12{width:121.152000pt;}
.w2{width:123.552000pt;}
.we{width:126.272000pt;}
.wb{width:131.392000pt;}
.w15{width:131.712000pt;}
.w20{width:136.480000pt;}
.w1f{width:137.146667pt;}
.w6{width:138.106667pt;}
.wa{width:138.586667pt;}
.w23{width:140.506667pt;}
.w16{width:140.986667pt;}
.w7{width:146.426667pt;}
.w14{width:152.346667pt;}
.w13{width:157.466667pt;}
.w3{width:158.746667pt;}
.wf{width:164.026667pt;}
.w24{width:179.866667pt;}
.w26{width:184.026667pt;}
.w5{width:185.666667pt;}
.w10{width:190.746667pt;}
.wc{width:193.786667pt;}
.w9{width:198.306667pt;}
.w8{width:211.066667pt;}
.w4{width:212.346667pt;}
.w11{width:212.546667pt;}
.wd{width:230.146667pt;}
.w1b{width:336.386667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:0.960000pt;}
.x17{left:5.920000pt;}
.x15{left:7.520000pt;}
.x42{left:9.280000pt;}
.x1a{left:10.400000pt;}
.x1e{left:11.840000pt;}
.x3c{left:13.280000pt;}
.x37{left:15.040000pt;}
.x6f{left:16.160000pt;}
.x13{left:17.120000pt;}
.x36{left:18.400000pt;}
.x1f{left:19.360000pt;}
.x3d{left:20.640000pt;}
.x6e{left:21.920000pt;}
.x63{left:23.040000pt;}
.x24{left:24.320000pt;}
.x61{left:25.640000pt;}
.x27{left:26.720000pt;}
.x2f{left:29.280000pt;}
.x54{left:30.560000pt;}
.x5f{left:32.320000pt;}
.x4a{left:34.240000pt;}
.x48{left:36.320000pt;}
.x4e{left:42.080000pt;}
.x67{left:43.232000pt;}
.x47{left:45.632000pt;}
.x23{left:47.040000pt;}
.xc{left:48.000000pt;}
.x4f{left:49.312000pt;}
.x46{left:51.360000pt;}
.x12{left:53.760000pt;}
.x44{left:54.720000pt;}
.x5a{left:55.706667pt;}
.x45{left:57.440000pt;}
.x30{left:58.920000pt;}
.x33{left:62.280000pt;}
.x64{left:65.114667pt;}
.x29{left:66.600000pt;}
.x20{left:67.720000pt;}
.x1b{left:69.480000pt;}
.x43{left:70.440000pt;}
.xe{left:72.000000pt;}
.x3a{left:73.640000pt;}
.x6d{left:74.760000pt;}
.x65{left:76.000000pt;}
.x66{left:79.360000pt;}
.x21{left:81.160000pt;}
.x58{left:83.072000pt;}
.x1d{left:86.120000pt;}
.x1c{left:87.866667pt;}
.x59{left:89.946667pt;}
.x2b{left:92.680000pt;}
.x31{left:93.626667pt;}
.xd{left:96.032000pt;}
.x3b{left:97.960000pt;}
.x2a{left:98.906667pt;}
.x34{left:103.240000pt;}
.x5c{left:105.952000pt;}
.x32{left:108.360000pt;}
.x57{left:109.786667pt;}
.x56{left:111.706667pt;}
.x51{left:143.386667pt;}
.x3e{left:171.546667pt;}
.x11{left:176.026667pt;}
.x14{left:179.226667pt;}
.x35{left:181.626667pt;}
.x25{left:187.226667pt;}
.x6{left:189.466667pt;}
.x50{left:191.546667pt;}
.x68{left:193.786667pt;}
.xa{left:198.426667pt;}
.x22{left:205.146667pt;}
.x2c{left:216.026667pt;}
.x3{left:226.266667pt;}
.x8{left:233.626667pt;}
.x5d{left:245.026667pt;}
.x70{left:247.266667pt;}
.x2{left:267.266667pt;}
.x71{left:282.626667pt;}
.x5b{left:286.306667pt;}
.x1{left:288.226667pt;}
.xf{left:300.866667pt;}
.x72{left:303.906667pt;}
.x49{left:310.626667pt;}
.x2d{left:321.026667pt;}
.x3f{left:331.106667pt;}
.x26{left:335.586667pt;}
.x16{left:340.066667pt;}
.x38{left:341.506667pt;}
.x69{left:375.586667pt;}
.x52{left:385.346667pt;}
.x5{left:396.866667pt;}
.xb{left:400.066667pt;}
.x7{left:401.346667pt;}
.x5e{left:405.693333pt;}
.x9{left:410.973333pt;}
.x4b{left:416.253333pt;}
.x6a{left:451.773333pt;}
.x40{left:459.453333pt;}
.x53{left:502.973333pt;}
.x2e{left:516.893333pt;}
.x39{left:534.333333pt;}
.x4c{left:536.093333pt;}
.x60{left:544.093333pt;}
.x28{left:548.573333pt;}
.x18{left:554.493333pt;}
.x41{left:613.893333pt;}
.x73{left:619.973333pt;}
.x55{left:625.733333pt;}
.x6b{left:637.733333pt;}
.x4d{left:641.733333pt;}
.x62{left:644.133333pt;}
.x6c{left:695.493333pt;}
.x10{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; }
  