
    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_f7c64fb36557c7e2d3160e94.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_ed0a503ebe8962566e4a2216.woff2')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_a9c9192537f468b0adf11eeb.woff2')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_ce569360c3240026713b8eed.woff2')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_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_9f85abc0739cdd6ab271f3be.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;}
.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.300000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.259800px;}
.lse{letter-spacing:-0.206400px;}
.ls3{letter-spacing:-0.057600px;}
.ls5{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.828000px;}
.ls1{letter-spacing:10.980000px;}
.ls11{letter-spacing:16.506720px;}
.lsd{letter-spacing:46.026720px;}
.ls4{letter-spacing:64.170720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-59.760000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-15.768000px;}
.ws3{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.580000px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-2.151360px;}
._2{margin-left:-1.008000px;}
._0{width:1.195200px;}
._1{width:2.371920px;}
._5{width:3.596880px;}
._3{width:4.721040px;}
._4{width:6.144240px;}
._a{width:7.171200px;}
._9{width:9.083520px;}
._7{width:10.430400px;}
._6{width:11.473920px;}
._b{width:13.258800px;}
._e{width:15.955920px;}
._d{width:17.740800px;}
._c{width:18.764640px;}
._11{width:20.019600px;}
._12{width:21.573360px;}
._15{width:23.067360px;}
._16{width:24.322320px;}
._f{width:25.808400px;}
._10{width:27.115680px;}
._13{width:96.731040px;}
._8{width:201.204000px;}
.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;}
.y0{bottom:0.000000px;}
.y96{bottom:3.240000px;}
.y76{bottom:3.420000px;}
.y5{bottom:3.600000px;}
.y7c{bottom:3.780000px;}
.yd8{bottom:3.825000px;}
.y94{bottom:11.880000px;}
.y197{bottom:12.090000px;}
.yb0{bottom:12.240000px;}
.yd6{bottom:12.285000px;}
.y79{bottom:12.420000px;}
.y95{bottom:20.520000px;}
.y198{bottom:20.550000px;}
.y9a{bottom:20.880000px;}
.yb4{bottom:20.916000px;}
.yd7{bottom:20.925000px;}
.y7b{bottom:21.060000px;}
.yc0{bottom:21.105000px;}
.y4{bottom:21.240000px;}
.y78{bottom:29.520000px;}
.y7e{bottom:29.700000px;}
.y7a{bottom:38.160000px;}
.y7f{bottom:38.340000px;}
.y45{bottom:60.120000px;}
.y1d0{bottom:66.780000px;}
.y81{bottom:69.840000px;}
.ye6{bottom:70.020000px;}
.y195{bottom:71.280000px;}
.y11a{bottom:73.440000px;}
.y152{bottom:76.680000px;}
.y44{bottom:77.400000px;}
.y16e{bottom:78.840000px;}
.y1cf{bottom:84.060000px;}
.ye5{bottom:87.120000px;}
.yb3{bottom:88.380000px;}
.y194{bottom:88.560000px;}
.y119{bottom:90.720000px;}
.y151{bottom:93.960000px;}
.y43{bottom:94.680000px;}
.y16d{bottom:96.120000px;}
.y1ce{bottom:101.376000px;}
.ye4{bottom:104.436000px;}
.y193{bottom:105.876000px;}
.y118{bottom:108.036000px;}
.y80{bottom:108.936000px;}
.y150{bottom:111.276000px;}
.y42{bottom:111.816000px;}
.y16c{bottom:113.436000px;}
.y1cd{bottom:118.656000px;}
.ye3{bottom:121.716000px;}
.y192{bottom:123.156000px;}
.y117{bottom:125.316000px;}
.yb2{bottom:127.296000px;}
.y14f{bottom:128.556000px;}
.y41{bottom:129.096000px;}
.y16b{bottom:130.716000px;}
.y1cc{bottom:135.936000px;}
.ye2{bottom:138.996000px;}
.y191{bottom:140.436000px;}
.y116{bottom:142.416000px;}
.y14e{bottom:145.656000px;}
.y40{bottom:146.376000px;}
.y16a{bottom:147.816000px;}
.y1cb{bottom:153.030000px;}
.ye1{bottom:156.270000px;}
.y190{bottom:157.170000px;}
.y115{bottom:159.690000px;}
.y14d{bottom:162.930000px;}
.y3f{bottom:163.650000px;}
.y7d{bottom:165.090000px;}
.yb1{bottom:166.350000px;}
.y1ca{bottom:170.310000px;}
.ye0{bottom:173.550000px;}
.y18f{bottom:174.810000px;}
.y114{bottom:176.970000px;}
.y14c{bottom:180.210000px;}
.y3e{bottom:180.930000px;}
.y169{bottom:182.370000px;}
.y1c9{bottom:187.590000px;}
.ydf{bottom:190.290000px;}
.y18e{bottom:192.090000px;}
.y113{bottom:194.250000px;}
.y14b{bottom:197.490000px;}
.y3d{bottom:198.030000px;}
.y168{bottom:199.650000px;}
.y1c8{bottom:204.870000px;}
.yaf{bottom:205.410000px;}
.yde{bottom:207.930000px;}
.y18d{bottom:209.370000px;}
.y112{bottom:211.530000px;}
.y14a{bottom:214.770000px;}
.y3c{bottom:215.310000px;}
.y167{bottom:216.930000px;}
.y77{bottom:221.430000px;}
.y1c7{bottom:222.150000px;}
.ydd{bottom:225.210000px;}
.y18c{bottom:226.650000px;}
.y111{bottom:228.810000px;}
.y149{bottom:232.050000px;}
.y3b{bottom:232.590000px;}
.y166{bottom:234.030000px;}
.y1c6{bottom:239.430000px;}
.ydc{bottom:242.490000px;}
.y18b{bottom:243.930000px;}
.yae{bottom:244.290000px;}
.y110{bottom:245.910000px;}
.y148{bottom:249.150000px;}
.y3a{bottom:249.870000px;}
.y165{bottom:251.310000px;}
.y1c5{bottom:256.530000px;}
.ydb{bottom:259.770000px;}
.y18a{bottom:261.030000px;}
.y10f{bottom:263.190000px;}
.y147{bottom:266.430000px;}
.y39{bottom:267.150000px;}
.y164{bottom:268.590000px;}
.y1c4{bottom:273.810000px;}
.yda{bottom:276.510000px;}
.y75{bottom:277.590000px;}
.y189{bottom:278.310000px;}
.y10e{bottom:280.470000px;}
.yad{bottom:283.350000px;}
.y146{bottom:283.710000px;}
.y38{bottom:284.430000px;}
.y163{bottom:285.870000px;}
.y1c3{bottom:291.090000px;}
.y188{bottom:295.590000px;}
.y10d{bottom:297.750000px;}
.y145{bottom:300.990000px;}
.y37{bottom:301.530000px;}
.y74{bottom:302.070000px;}
.y162{bottom:302.790000px;}
.y1d3{bottom:303.150000px;}
.yac{bottom:307.650000px;}
.y1c2{bottom:308.370000px;}
.y187{bottom:312.870000px;}
.y10c{bottom:315.030000px;}
.yd9{bottom:315.570000px;}
.y144{bottom:318.270000px;}
.y36{bottom:318.810000px;}
.y73{bottom:319.350000px;}
.y1d2{bottom:320.070000px;}
.y161{bottom:320.430000px;}
.yab{bottom:324.930000px;}
.y1c1{bottom:325.650000px;}
.y186{bottom:330.150000px;}
.y10b{bottom:332.310000px;}
.y143{bottom:335.370000px;}
.y35{bottom:336.090000px;}
.y72{bottom:336.450000px;}
.y160{bottom:337.530000px;}
.yaa{bottom:342.210000px;}
.y1c0{bottom:342.930000px;}
.y185{bottom:347.430000px;}
.y10a{bottom:349.410000px;}
.y142{bottom:352.650000px;}
.y34{bottom:353.370000px;}
.yd5{bottom:354.630000px;}
.y15f{bottom:354.810000px;}
.ya9{bottom:359.535000px;}
.y1bf{bottom:360.075000px;}
.y184{bottom:364.575000px;}
.y109{bottom:366.735000px;}
.y141{bottom:369.975000px;}
.y33{bottom:370.695000px;}
.y71{bottom:371.055000px;}
.y15e{bottom:372.135000px;}
.ya8{bottom:376.815000px;}
.y1be{bottom:377.355000px;}
.y183{bottom:381.855000px;}
.y108{bottom:383.655000px;}
.y140{bottom:387.255000px;}
.y32{bottom:387.975000px;}
.y70{bottom:388.335000px;}
.y15d{bottom:389.415000px;}
.yd4{bottom:393.555000px;}
.ya7{bottom:393.915000px;}
.y1bd{bottom:394.635000px;}
.y182{bottom:399.135000px;}
.y107{bottom:402.375000px;}
.y13f{bottom:404.535000px;}
.y31{bottom:405.075000px;}
.y6f{bottom:405.615000px;}
.y15c{bottom:406.695000px;}
.ya6{bottom:411.195000px;}
.y1bc{bottom:411.915000px;}
.y181{bottom:416.415000px;}
.y106{bottom:419.655000px;}
.y13e{bottom:421.455000px;}
.y30{bottom:422.355000px;}
.y6e{bottom:422.895000px;}
.y15b{bottom:423.975000px;}
.ya5{bottom:428.475000px;}
.y1bb{bottom:429.195000px;}
.yd3{bottom:432.615000px;}
.y180{bottom:433.695000px;}
.y105{bottom:436.755000px;}
.y13d{bottom:438.915000px;}
.y2f{bottom:439.635000px;}
.y6d{bottom:439.995000px;}
.y15a{bottom:441.075000px;}
.ya4{bottom:445.755000px;}
.y1ba{bottom:446.115000px;}
.y17f{bottom:450.975000px;}
.y104{bottom:454.035000px;}
.y13c{bottom:456.195000px;}
.y2e{bottom:456.915000px;}
.y6c{bottom:457.275000px;}
.y159{bottom:458.355000px;}
.ya3{bottom:463.035000px;}
.y1b9{bottom:463.575000px;}
.y17e{bottom:468.075000px;}
.y103{bottom:471.315000px;}
.yd2{bottom:471.675000px;}
.y13b{bottom:473.475000px;}
.y2d{bottom:474.195000px;}
.y158{bottom:475.635000px;}
.ya2{bottom:479.955000px;}
.y1b8{bottom:480.855000px;}
.y17d{bottom:485.355000px;}
.y102{bottom:488.595000px;}
.y13a{bottom:490.755000px;}
.y2c{bottom:491.475000px;}
.y6b{bottom:492.555000px;}
.y157{bottom:492.915000px;}
.yd1{bottom:495.975000px;}
.y1b7{bottom:498.135000px;}
.ya1{bottom:498.495000px;}
.y17c{bottom:502.635000px;}
.y101{bottom:505.515000px;}
.y139{bottom:508.035000px;}
.y2b{bottom:508.575000px;}
.y6a{bottom:510.195000px;}
.yd0{bottom:513.255000px;}
.y1b6{bottom:515.415000px;}
.ya0{bottom:515.775000px;}
.y17b{bottom:519.915000px;}
.y100{bottom:524.235000px;}
.y138{bottom:525.315000px;}
.y2a{bottom:525.855000px;}
.y69{bottom:527.295000px;}
.ycf{bottom:530.535000px;}
.y1b5{bottom:532.695000px;}
.y9f{bottom:533.055000px;}
.y17a{bottom:537.195000px;}
.yff{bottom:541.335000px;}
.y137{bottom:542.415000px;}
.y29{bottom:543.135000px;}
.y68{bottom:544.575000px;}
.yce{bottom:547.815000px;}
.y1b4{bottom:549.795000px;}
.y9e{bottom:550.335000px;}
.y179{bottom:554.295000px;}
.yfe{bottom:558.615000px;}
.y136{bottom:559.695000px;}
.y28{bottom:560.415000px;}
.y67{bottom:561.855000px;}
.ycd{bottom:564.915000px;}
.y1b3{bottom:567.075000px;}
.y9d{bottom:567.615000px;}
.y178{bottom:571.575000px;}
.yfd{bottom:575.895000px;}
.y135{bottom:576.975000px;}
.y27{bottom:577.695000px;}
.y66{bottom:579.135000px;}
.ycc{bottom:582.195000px;}
.y9c{bottom:584.355000px;}
.y177{bottom:588.855000px;}
.yfc{bottom:593.175000px;}
.y134{bottom:594.255000px;}
.y26{bottom:594.795000px;}
.y65{bottom:596.415000px;}
.ycb{bottom:599.475000px;}
.y1b2{bottom:601.635000px;}
.y176{bottom:606.135000px;}
.yfb{bottom:610.455000px;}
.y133{bottom:611.535000px;}
.y25{bottom:612.075000px;}
.y64{bottom:613.695000px;}
.yca{bottom:616.785000px;}
.y1b1{bottom:618.945000px;}
.y9b{bottom:623.445000px;}
.yfa{bottom:627.585000px;}
.y132{bottom:628.665000px;}
.y24{bottom:629.385000px;}
.y63{bottom:630.825000px;}
.yc9{bottom:633.705000px;}
.y1b0{bottom:636.225000px;}
.y175{bottom:640.725000px;}
.yf9{bottom:644.865000px;}
.y131{bottom:645.945000px;}
.y23{bottom:646.665000px;}
.y62{bottom:648.105000px;}
.yc8{bottom:652.245000px;}
.y1af{bottom:653.325000px;}
.y174{bottom:657.465000px;}
.yf8{bottom:662.145000px;}
.y99{bottom:662.505000px;}
.y130{bottom:663.225000px;}
.y22{bottom:663.945000px;}
.y61{bottom:665.385000px;}
.yc7{bottom:669.525000px;}
.y1ae{bottom:670.605000px;}
.y173{bottom:679.245000px;}
.yf7{bottom:679.425000px;}
.y12f{bottom:680.505000px;}
.y21{bottom:680.865000px;}
.y1d1{bottom:682.305000px;}
.y60{bottom:682.665000px;}
.yc6{bottom:686.805000px;}
.y1ad{bottom:687.885000px;}
.yf6{bottom:696.705000px;}
.y12e{bottom:697.785000px;}
.y20{bottom:698.325000px;}
.y5f{bottom:699.945000px;}
.y172{bottom:701.025000px;}
.y98{bottom:701.385000px;}
.yc5{bottom:704.085000px;}
.y1ac{bottom:705.165000px;}
.yf5{bottom:713.625000px;}
.y12d{bottom:715.065000px;}
.y1f{bottom:715.605000px;}
.y156{bottom:716.865000px;}
.y5e{bottom:717.225000px;}
.yc4{bottom:721.365000px;}
.y1ab{bottom:722.445000px;}
.y171{bottom:722.805000px;}
.yf4{bottom:732.165000px;}
.y1e{bottom:732.885000px;}
.y5d{bottom:734.325000px;}
.yc3{bottom:738.105000px;}
.y1aa{bottom:739.725000px;}
.y97{bottom:740.445000px;}
.y170{bottom:744.585000px;}
.yf3{bottom:749.445000px;}
.y1d{bottom:750.165000px;}
.y5c{bottom:751.605000px;}
.y1a9{bottom:756.825000px;}
.yf2{bottom:766.725000px;}
.y1c{bottom:767.445000px;}
.y5b{bottom:768.885000px;}
.y1a8{bottom:774.105000px;}
.yc2{bottom:777.165000px;}
.y93{bottom:779.505000px;}
.yf1{bottom:784.005000px;}
.y1b{bottom:784.725000px;}
.y5a{bottom:786.165000px;}
.y1a7{bottom:791.385000px;}
.yf0{bottom:801.285000px;}
.y1a{bottom:801.825000px;}
.y59{bottom:803.445000px;}
.y1a6{bottom:808.665000px;}
.yc1{bottom:816.225000px;}
.yef{bottom:818.565000px;}
.y19{bottom:819.105000px;}
.y58{bottom:820.365000px;}
.y155{bottom:820.725000px;}
.y92{bottom:821.085000px;}
.y1a5{bottom:825.945000px;}
.yee{bottom:835.305000px;}
.y18{bottom:836.385000px;}
.y57{bottom:837.825000px;}
.y91{bottom:838.365000px;}
.y1a4{bottom:843.045000px;}
.y12c{bottom:852.945000px;}
.y17{bottom:853.665000px;}
.yed{bottom:854.025000px;}
.y56{bottom:855.105000px;}
.y90{bottom:855.645000px;}
.y1a3{bottom:860.325000px;}
.y12b{bottom:870.225000px;}
.y16{bottom:870.945000px;}
.yec{bottom:871.305000px;}
.y55{bottom:872.385000px;}
.y8f{bottom:872.745000px;}
.y1a2{bottom:877.650000px;}
.y12a{bottom:887.550000px;}
.y15{bottom:888.090000px;}
.yeb{bottom:888.630000px;}
.y54{bottom:889.710000px;}
.y8e{bottom:890.070000px;}
.ybf{bottom:894.210000px;}
.y1a1{bottom:894.930000px;}
.y129{bottom:904.830000px;}
.y14{bottom:905.010000px;}
.yea{bottom:905.910000px;}
.y53{bottom:906.990000px;}
.y8d{bottom:907.350000px;}
.y1a0{bottom:912.210000px;}
.y128{bottom:922.110000px;}
.y13{bottom:923.010000px;}
.y52{bottom:923.730000px;}
.y154{bottom:924.090000px;}
.y8c{bottom:924.630000px;}
.y19f{bottom:929.490000px;}
.ybe{bottom:933.270000px;}
.y127{bottom:939.210000px;}
.ye9{bottom:940.290000px;}
.y12{bottom:940.650000px;}
.y51{bottom:941.370000px;}
.y8b{bottom:941.910000px;}
.y19e{bottom:946.590000px;}
.y126{bottom:956.130000px;}
.ybd{bottom:957.570000px;}
.y11{bottom:957.930000px;}
.y50{bottom:958.650000px;}
.y8a{bottom:959.010000px;}
.y19d{bottom:963.870000px;}
.y125{bottom:973.770000px;}
.ye8{bottom:974.490000px;}
.ybc{bottom:974.850000px;}
.y10{bottom:975.210000px;}
.y4f{bottom:975.930000px;}
.y19c{bottom:980.790000px;}
.y124{bottom:991.050000px;}
.ybb{bottom:992.130000px;}
.yf{bottom:992.490000px;}
.y16f{bottom:992.850000px;}
.y4e{bottom:993.210000px;}
.y89{bottom:994.650000px;}
.y123{bottom:1008.330000px;}
.yba{bottom:1009.410000px;}
.ye{bottom:1009.590000px;}
.y4d{bottom:1010.490000px;}
.y88{bottom:1011.930000px;}
.y19b{bottom:1019.850000px;}
.y122{bottom:1025.430000px;}
.yb9{bottom:1026.510000px;}
.yd{bottom:1026.870000px;}
.y4c{bottom:1027.590000px;}
.y87{bottom:1029.210000px;}
.y19a{bottom:1041.450000px;}
.y121{bottom:1042.710000px;}
.yb8{bottom:1043.790000px;}
.yc{bottom:1044.870000px;}
.y86{bottom:1046.490000px;}
.y120{bottom:1059.630000px;}
.yb7{bottom:1061.070000px;}
.yb{bottom:1062.150000px;}
.y85{bottom:1063.590000px;}
.yb6{bottom:1078.350000px;}
.ye7{bottom:1079.070000px;}
.y4b{bottom:1079.430000px;}
.ya{bottom:1079.790000px;}
.y84{bottom:1080.510000px;}
.yb5{bottom:1095.270000px;}
.y11f{bottom:1095.630000px;}
.y4a{bottom:1096.710000px;}
.y9{bottom:1100.490000px;}
.y199{bottom:1102.290000px;}
.y11e{bottom:1112.910000px;}
.y49{bottom:1113.990000px;}
.y8{bottom:1121.190000px;}
.y196{bottom:1124.070000px;}
.y11d{bottom:1130.010000px;}
.y153{bottom:1130.730000px;}
.y48{bottom:1131.090000px;}
.y83{bottom:1136.880000px;}
.y7{bottom:1141.920000px;}
.y11c{bottom:1147.320000px;}
.y47{bottom:1148.400000px;}
.y82{bottom:1158.480000px;}
.y6{bottom:1162.620000px;}
.y11b{bottom:1164.240000px;}
.y46{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.hb{height:17.100000px;}
.h7{height:17.280000px;}
.hc{height:34.380000px;}
.he{height:34.416000px;}
.hd{height:34.560000px;}
.ha{height:34.596000px;}
.hf{height:41.726953px;}
.h8{height:51.660000px;}
.h9{height:51.840000px;}
.h2{height:58.621992px;}
.h4{height:58.651172px;}
.h5{height:60.226875px;}
.h6{height:61.423863px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:90.000000px;}
.w16{width:106.596000px;}
.w17{width:115.740000px;}
.w19{width:126.396000px;}
.w8{width:128.016000px;}
.w2{width:129.456000px;}
.w15{width:136.116000px;}
.w18{width:143.316000px;}
.w1a{width:147.996000px;}
.wc{width:178.230000px;}
.w4{width:180.750000px;}
.w11{width:181.470000px;}
.w9{width:192.810000px;}
.wf{width:192.990000px;}
.wb{width:198.570000px;}
.w6{width:199.830000px;}
.w14{width:210.315000px;}
.w3{width:230.610000px;}
.w5{width:239.835000px;}
.we{width:240.915000px;}
.wd{width:363.855000px;}
.wa{width:391.245000px;}
.w10{width:408.705000px;}
.w7{width:455.145000px;}
.w12{width:482.685000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:1.620000px;}
.x29{left:3.060000px;}
.x1b{left:4.680000px;}
.x51{left:6.120000px;}
.x1c{left:7.920000px;}
.x17{left:9.540000px;}
.x13{left:11.520000px;}
.x27{left:12.600000px;}
.x15{left:14.580000px;}
.x19{left:15.840000px;}
.x1e{left:17.820000px;}
.x3e{left:20.340000px;}
.x49{left:22.500000px;}
.x16{left:23.760000px;}
.x18{left:25.740000px;}
.x25{left:27.540000px;}
.x23{left:28.800000px;}
.x21{left:30.960000px;}
.x55{left:32.040000px;}
.x31{left:33.165000px;}
.xf{left:34.740000px;}
.x24{left:36.720000px;}
.x37{left:37.836000px;}
.x2b{left:39.810000px;}
.x48{left:41.445000px;}
.x11{left:42.660000px;}
.x34{left:44.820000px;}
.x28{left:47.370000px;}
.x1a{left:49.890000px;}
.xe{left:52.920000px;}
.x5{left:54.000000px;}
.x38{left:55.656000px;}
.x41{left:56.736000px;}
.x60{left:58.350000px;}
.x40{left:59.400000px;}
.x26{left:60.690000px;}
.x22{left:62.505000px;}
.x35{left:65.196000px;}
.x3a{left:66.456000px;}
.x2d{left:69.876000px;}
.x52{left:71.865000px;}
.x43{left:73.665000px;}
.x44{left:74.880000px;}
.x20{left:79.020000px;}
.xd{left:81.000000px;}
.x30{left:86.976000px;}
.x57{left:92.025000px;}
.x2a{left:94.905000px;}
.x1d{left:99.045000px;}
.x36{left:104.625000px;}
.x61{left:108.036000px;}
.x47{left:109.305000px;}
.x3c{left:122.805000px;}
.x4c{left:131.625000px;}
.x3f{left:133.965000px;}
.x4f{left:139.545000px;}
.x50{left:143.325000px;}
.x39{left:149.445000px;}
.x42{left:150.525000px;}
.x4e{left:152.145000px;}
.x2e{left:154.665000px;}
.x4b{left:156.990000px;}
.x32{left:158.085000px;}
.x4a{left:160.245000px;}
.x59{left:166.170000px;}
.x45{left:173.190000px;}
.x5a{left:176.070000px;}
.x2c{left:177.870000px;}
.x58{left:180.570000px;}
.x10{left:184.530000px;}
.x5d{left:191.370000px;}
.xc{left:192.450000px;}
.x33{left:195.705000px;}
.x53{left:213.330000px;}
.x6{left:214.770000px;}
.x7{left:219.990000px;}
.x46{left:233.310000px;}
.x5c{left:239.070000px;}
.xb{left:246.810000px;}
.x3b{left:248.070000px;}
.x3{left:254.550000px;}
.x9{left:299.055000px;}
.x2{left:300.675000px;}
.x1{left:345.135000px;}
.x8{left:416.055000px;}
.x12{left:417.315000px;}
.xa{left:426.855000px;}
.x5b{left:446.475000px;}
.x54{left:537.945000px;}
.x5e{left:563.685000px;}
.x14{left:600.405000px;}
.x56{left:630.105000px;}
.x3d{left:641.670000px;}
.x4d{left:658.950000px;}
.x5f{left:692.430000px;}
.x2f{left:712.410000px;}
.x4{left:812.130000px;}
@media print{
.v1{vertical-align:-61.600000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.230933pt;}
.lse{letter-spacing:-0.183467pt;}
.ls3{letter-spacing:-0.051200pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.736000pt;}
.ls1{letter-spacing:9.760000pt;}
.ls11{letter-spacing:14.672640pt;}
.lsd{letter-spacing:40.912640pt;}
.ls4{letter-spacing:57.040640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.016000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-1.912320pt;}
._2{margin-left:-0.896000pt;}
._0{width:1.062400pt;}
._1{width:2.108373pt;}
._5{width:3.197227pt;}
._3{width:4.196480pt;}
._4{width:5.461547pt;}
._a{width:6.374400pt;}
._9{width:8.074240pt;}
._7{width:9.271467pt;}
._6{width:10.199040pt;}
._b{width:11.785600pt;}
._e{width:14.183040pt;}
._d{width:15.769600pt;}
._c{width:16.679680pt;}
._11{width:17.795200pt;}
._12{width:19.176320pt;}
._15{width:20.504320pt;}
._16{width:21.619840pt;}
._f{width:22.940800pt;}
._10{width:24.102827pt;}
._13{width:85.983147pt;}
._8{width:178.848000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:2.880000pt;}
.y76{bottom:3.040000pt;}
.y5{bottom:3.200000pt;}
.y7c{bottom:3.360000pt;}
.yd8{bottom:3.400000pt;}
.y94{bottom:10.560000pt;}
.y197{bottom:10.746667pt;}
.yb0{bottom:10.880000pt;}
.yd6{bottom:10.920000pt;}
.y79{bottom:11.040000pt;}
.y95{bottom:18.240000pt;}
.y198{bottom:18.266667pt;}
.y9a{bottom:18.560000pt;}
.yb4{bottom:18.592000pt;}
.yd7{bottom:18.600000pt;}
.y7b{bottom:18.720000pt;}
.yc0{bottom:18.760000pt;}
.y4{bottom:18.880000pt;}
.y78{bottom:26.240000pt;}
.y7e{bottom:26.400000pt;}
.y7a{bottom:33.920000pt;}
.y7f{bottom:34.080000pt;}
.y45{bottom:53.440000pt;}
.y1d0{bottom:59.360000pt;}
.y81{bottom:62.080000pt;}
.ye6{bottom:62.240000pt;}
.y195{bottom:63.360000pt;}
.y11a{bottom:65.280000pt;}
.y152{bottom:68.160000pt;}
.y44{bottom:68.800000pt;}
.y16e{bottom:70.080000pt;}
.y1cf{bottom:74.720000pt;}
.ye5{bottom:77.440000pt;}
.yb3{bottom:78.560000pt;}
.y194{bottom:78.720000pt;}
.y119{bottom:80.640000pt;}
.y151{bottom:83.520000pt;}
.y43{bottom:84.160000pt;}
.y16d{bottom:85.440000pt;}
.y1ce{bottom:90.112000pt;}
.ye4{bottom:92.832000pt;}
.y193{bottom:94.112000pt;}
.y118{bottom:96.032000pt;}
.y80{bottom:96.832000pt;}
.y150{bottom:98.912000pt;}
.y42{bottom:99.392000pt;}
.y16c{bottom:100.832000pt;}
.y1cd{bottom:105.472000pt;}
.ye3{bottom:108.192000pt;}
.y192{bottom:109.472000pt;}
.y117{bottom:111.392000pt;}
.yb2{bottom:113.152000pt;}
.y14f{bottom:114.272000pt;}
.y41{bottom:114.752000pt;}
.y16b{bottom:116.192000pt;}
.y1cc{bottom:120.832000pt;}
.ye2{bottom:123.552000pt;}
.y191{bottom:124.832000pt;}
.y116{bottom:126.592000pt;}
.y14e{bottom:129.472000pt;}
.y40{bottom:130.112000pt;}
.y16a{bottom:131.392000pt;}
.y1cb{bottom:136.026667pt;}
.ye1{bottom:138.906667pt;}
.y190{bottom:139.706667pt;}
.y115{bottom:141.946667pt;}
.y14d{bottom:144.826667pt;}
.y3f{bottom:145.466667pt;}
.y7d{bottom:146.746667pt;}
.yb1{bottom:147.866667pt;}
.y1ca{bottom:151.386667pt;}
.ye0{bottom:154.266667pt;}
.y18f{bottom:155.386667pt;}
.y114{bottom:157.306667pt;}
.y14c{bottom:160.186667pt;}
.y3e{bottom:160.826667pt;}
.y169{bottom:162.106667pt;}
.y1c9{bottom:166.746667pt;}
.ydf{bottom:169.146667pt;}
.y18e{bottom:170.746667pt;}
.y113{bottom:172.666667pt;}
.y14b{bottom:175.546667pt;}
.y3d{bottom:176.026667pt;}
.y168{bottom:177.466667pt;}
.y1c8{bottom:182.106667pt;}
.yaf{bottom:182.586667pt;}
.yde{bottom:184.826667pt;}
.y18d{bottom:186.106667pt;}
.y112{bottom:188.026667pt;}
.y14a{bottom:190.906667pt;}
.y3c{bottom:191.386667pt;}
.y167{bottom:192.826667pt;}
.y77{bottom:196.826667pt;}
.y1c7{bottom:197.466667pt;}
.ydd{bottom:200.186667pt;}
.y18c{bottom:201.466667pt;}
.y111{bottom:203.386667pt;}
.y149{bottom:206.266667pt;}
.y3b{bottom:206.746667pt;}
.y166{bottom:208.026667pt;}
.y1c6{bottom:212.826667pt;}
.ydc{bottom:215.546667pt;}
.y18b{bottom:216.826667pt;}
.yae{bottom:217.146667pt;}
.y110{bottom:218.586667pt;}
.y148{bottom:221.466667pt;}
.y3a{bottom:222.106667pt;}
.y165{bottom:223.386667pt;}
.y1c5{bottom:228.026667pt;}
.ydb{bottom:230.906667pt;}
.y18a{bottom:232.026667pt;}
.y10f{bottom:233.946667pt;}
.y147{bottom:236.826667pt;}
.y39{bottom:237.466667pt;}
.y164{bottom:238.746667pt;}
.y1c4{bottom:243.386667pt;}
.yda{bottom:245.786667pt;}
.y75{bottom:246.746667pt;}
.y189{bottom:247.386667pt;}
.y10e{bottom:249.306667pt;}
.yad{bottom:251.866667pt;}
.y146{bottom:252.186667pt;}
.y38{bottom:252.826667pt;}
.y163{bottom:254.106667pt;}
.y1c3{bottom:258.746667pt;}
.y188{bottom:262.746667pt;}
.y10d{bottom:264.666667pt;}
.y145{bottom:267.546667pt;}
.y37{bottom:268.026667pt;}
.y74{bottom:268.506667pt;}
.y162{bottom:269.146667pt;}
.y1d3{bottom:269.466667pt;}
.yac{bottom:273.466667pt;}
.y1c2{bottom:274.106667pt;}
.y187{bottom:278.106667pt;}
.y10c{bottom:280.026667pt;}
.yd9{bottom:280.506667pt;}
.y144{bottom:282.906667pt;}
.y36{bottom:283.386667pt;}
.y73{bottom:283.866667pt;}
.y1d2{bottom:284.506667pt;}
.y161{bottom:284.826667pt;}
.yab{bottom:288.826667pt;}
.y1c1{bottom:289.466667pt;}
.y186{bottom:293.466667pt;}
.y10b{bottom:295.386667pt;}
.y143{bottom:298.106667pt;}
.y35{bottom:298.746667pt;}
.y72{bottom:299.066667pt;}
.y160{bottom:300.026667pt;}
.yaa{bottom:304.186667pt;}
.y1c0{bottom:304.826667pt;}
.y185{bottom:308.826667pt;}
.y10a{bottom:310.586667pt;}
.y142{bottom:313.466667pt;}
.y34{bottom:314.106667pt;}
.yd5{bottom:315.226667pt;}
.y15f{bottom:315.386667pt;}
.ya9{bottom:319.586667pt;}
.y1bf{bottom:320.066667pt;}
.y184{bottom:324.066667pt;}
.y109{bottom:325.986667pt;}
.y141{bottom:328.866667pt;}
.y33{bottom:329.506667pt;}
.y71{bottom:329.826667pt;}
.y15e{bottom:330.786667pt;}
.ya8{bottom:334.946667pt;}
.y1be{bottom:335.426667pt;}
.y183{bottom:339.426667pt;}
.y108{bottom:341.026667pt;}
.y140{bottom:344.226667pt;}
.y32{bottom:344.866667pt;}
.y70{bottom:345.186667pt;}
.y15d{bottom:346.146667pt;}
.yd4{bottom:349.826667pt;}
.ya7{bottom:350.146667pt;}
.y1bd{bottom:350.786667pt;}
.y182{bottom:354.786667pt;}
.y107{bottom:357.666667pt;}
.y13f{bottom:359.586667pt;}
.y31{bottom:360.066667pt;}
.y6f{bottom:360.546667pt;}
.y15c{bottom:361.506667pt;}
.ya6{bottom:365.506667pt;}
.y1bc{bottom:366.146667pt;}
.y181{bottom:370.146667pt;}
.y106{bottom:373.026667pt;}
.y13e{bottom:374.626667pt;}
.y30{bottom:375.426667pt;}
.y6e{bottom:375.906667pt;}
.y15b{bottom:376.866667pt;}
.ya5{bottom:380.866667pt;}
.y1bb{bottom:381.506667pt;}
.yd3{bottom:384.546667pt;}
.y180{bottom:385.506667pt;}
.y105{bottom:388.226667pt;}
.y13d{bottom:390.146667pt;}
.y2f{bottom:390.786667pt;}
.y6d{bottom:391.106667pt;}
.y15a{bottom:392.066667pt;}
.ya4{bottom:396.226667pt;}
.y1ba{bottom:396.546667pt;}
.y17f{bottom:400.866667pt;}
.y104{bottom:403.586667pt;}
.y13c{bottom:405.506667pt;}
.y2e{bottom:406.146667pt;}
.y6c{bottom:406.466667pt;}
.y159{bottom:407.426667pt;}
.ya3{bottom:411.586667pt;}
.y1b9{bottom:412.066667pt;}
.y17e{bottom:416.066667pt;}
.y103{bottom:418.946667pt;}
.yd2{bottom:419.266667pt;}
.y13b{bottom:420.866667pt;}
.y2d{bottom:421.506667pt;}
.y158{bottom:422.786667pt;}
.ya2{bottom:426.626667pt;}
.y1b8{bottom:427.426667pt;}
.y17d{bottom:431.426667pt;}
.y102{bottom:434.306667pt;}
.y13a{bottom:436.226667pt;}
.y2c{bottom:436.866667pt;}
.y6b{bottom:437.826667pt;}
.y157{bottom:438.146667pt;}
.yd1{bottom:440.866667pt;}
.y1b7{bottom:442.786667pt;}
.ya1{bottom:443.106667pt;}
.y17c{bottom:446.786667pt;}
.y101{bottom:449.346667pt;}
.y139{bottom:451.586667pt;}
.y2b{bottom:452.066667pt;}
.y6a{bottom:453.506667pt;}
.yd0{bottom:456.226667pt;}
.y1b6{bottom:458.146667pt;}
.ya0{bottom:458.466667pt;}
.y17b{bottom:462.146667pt;}
.y100{bottom:465.986667pt;}
.y138{bottom:466.946667pt;}
.y2a{bottom:467.426667pt;}
.y69{bottom:468.706667pt;}
.ycf{bottom:471.586667pt;}
.y1b5{bottom:473.506667pt;}
.y9f{bottom:473.826667pt;}
.y17a{bottom:477.506667pt;}
.yff{bottom:481.186667pt;}
.y137{bottom:482.146667pt;}
.y29{bottom:482.786667pt;}
.y68{bottom:484.066667pt;}
.yce{bottom:486.946667pt;}
.y1b4{bottom:488.706667pt;}
.y9e{bottom:489.186667pt;}
.y179{bottom:492.706667pt;}
.yfe{bottom:496.546667pt;}
.y136{bottom:497.506667pt;}
.y28{bottom:498.146667pt;}
.y67{bottom:499.426667pt;}
.ycd{bottom:502.146667pt;}
.y1b3{bottom:504.066667pt;}
.y9d{bottom:504.546667pt;}
.y178{bottom:508.066667pt;}
.yfd{bottom:511.906667pt;}
.y135{bottom:512.866667pt;}
.y27{bottom:513.506667pt;}
.y66{bottom:514.786667pt;}
.ycc{bottom:517.506667pt;}
.y9c{bottom:519.426667pt;}
.y177{bottom:523.426667pt;}
.yfc{bottom:527.266667pt;}
.y134{bottom:528.226667pt;}
.y26{bottom:528.706667pt;}
.y65{bottom:530.146667pt;}
.ycb{bottom:532.866667pt;}
.y1b2{bottom:534.786667pt;}
.y176{bottom:538.786667pt;}
.yfb{bottom:542.626667pt;}
.y133{bottom:543.586667pt;}
.y25{bottom:544.066667pt;}
.y64{bottom:545.506667pt;}
.yca{bottom:548.253333pt;}
.y1b1{bottom:550.173333pt;}
.y9b{bottom:554.173333pt;}
.yfa{bottom:557.853333pt;}
.y132{bottom:558.813333pt;}
.y24{bottom:559.453333pt;}
.y63{bottom:560.733333pt;}
.yc9{bottom:563.293333pt;}
.y1b0{bottom:565.533333pt;}
.y175{bottom:569.533333pt;}
.yf9{bottom:573.213333pt;}
.y131{bottom:574.173333pt;}
.y23{bottom:574.813333pt;}
.y62{bottom:576.093333pt;}
.yc8{bottom:579.773333pt;}
.y1af{bottom:580.733333pt;}
.y174{bottom:584.413333pt;}
.yf8{bottom:588.573333pt;}
.y99{bottom:588.893333pt;}
.y130{bottom:589.533333pt;}
.y22{bottom:590.173333pt;}
.y61{bottom:591.453333pt;}
.yc7{bottom:595.133333pt;}
.y1ae{bottom:596.093333pt;}
.y173{bottom:603.773333pt;}
.yf7{bottom:603.933333pt;}
.y12f{bottom:604.893333pt;}
.y21{bottom:605.213333pt;}
.y1d1{bottom:606.493333pt;}
.y60{bottom:606.813333pt;}
.yc6{bottom:610.493333pt;}
.y1ad{bottom:611.453333pt;}
.yf6{bottom:619.293333pt;}
.y12e{bottom:620.253333pt;}
.y20{bottom:620.733333pt;}
.y5f{bottom:622.173333pt;}
.y172{bottom:623.133333pt;}
.y98{bottom:623.453333pt;}
.yc5{bottom:625.853333pt;}
.y1ac{bottom:626.813333pt;}
.yf5{bottom:634.333333pt;}
.y12d{bottom:635.613333pt;}
.y1f{bottom:636.093333pt;}
.y156{bottom:637.213333pt;}
.y5e{bottom:637.533333pt;}
.yc4{bottom:641.213333pt;}
.y1ab{bottom:642.173333pt;}
.y171{bottom:642.493333pt;}
.yf4{bottom:650.813333pt;}
.y1e{bottom:651.453333pt;}
.y5d{bottom:652.733333pt;}
.yc3{bottom:656.093333pt;}
.y1aa{bottom:657.533333pt;}
.y97{bottom:658.173333pt;}
.y170{bottom:661.853333pt;}
.yf3{bottom:666.173333pt;}
.y1d{bottom:666.813333pt;}
.y5c{bottom:668.093333pt;}
.y1a9{bottom:672.733333pt;}
.yf2{bottom:681.533333pt;}
.y1c{bottom:682.173333pt;}
.y5b{bottom:683.453333pt;}
.y1a8{bottom:688.093333pt;}
.yc2{bottom:690.813333pt;}
.y93{bottom:692.893333pt;}
.yf1{bottom:696.893333pt;}
.y1b{bottom:697.533333pt;}
.y5a{bottom:698.813333pt;}
.y1a7{bottom:703.453333pt;}
.yf0{bottom:712.253333pt;}
.y1a{bottom:712.733333pt;}
.y59{bottom:714.173333pt;}
.y1a6{bottom:718.813333pt;}
.yc1{bottom:725.533333pt;}
.yef{bottom:727.613333pt;}
.y19{bottom:728.093333pt;}
.y58{bottom:729.213333pt;}
.y155{bottom:729.533333pt;}
.y92{bottom:729.853333pt;}
.y1a5{bottom:734.173333pt;}
.yee{bottom:742.493333pt;}
.y18{bottom:743.453333pt;}
.y57{bottom:744.733333pt;}
.y91{bottom:745.213333pt;}
.y1a4{bottom:749.373333pt;}
.y12c{bottom:758.173333pt;}
.y17{bottom:758.813333pt;}
.yed{bottom:759.133333pt;}
.y56{bottom:760.093333pt;}
.y90{bottom:760.573333pt;}
.y1a3{bottom:764.733333pt;}
.y12b{bottom:773.533333pt;}
.y16{bottom:774.173333pt;}
.yec{bottom:774.493333pt;}
.y55{bottom:775.453333pt;}
.y8f{bottom:775.773333pt;}
.y1a2{bottom:780.133333pt;}
.y12a{bottom:788.933333pt;}
.y15{bottom:789.413333pt;}
.yeb{bottom:789.893333pt;}
.y54{bottom:790.853333pt;}
.y8e{bottom:791.173333pt;}
.ybf{bottom:794.853333pt;}
.y1a1{bottom:795.493333pt;}
.y129{bottom:804.293333pt;}
.y14{bottom:804.453333pt;}
.yea{bottom:805.253333pt;}
.y53{bottom:806.213333pt;}
.y8d{bottom:806.533333pt;}
.y1a0{bottom:810.853333pt;}
.y128{bottom:819.653333pt;}
.y13{bottom:820.453333pt;}
.y52{bottom:821.093333pt;}
.y154{bottom:821.413333pt;}
.y8c{bottom:821.893333pt;}
.y19f{bottom:826.213333pt;}
.ybe{bottom:829.573333pt;}
.y127{bottom:834.853333pt;}
.ye9{bottom:835.813333pt;}
.y12{bottom:836.133333pt;}
.y51{bottom:836.773333pt;}
.y8b{bottom:837.253333pt;}
.y19e{bottom:841.413333pt;}
.y126{bottom:849.893333pt;}
.ybd{bottom:851.173333pt;}
.y11{bottom:851.493333pt;}
.y50{bottom:852.133333pt;}
.y8a{bottom:852.453333pt;}
.y19d{bottom:856.773333pt;}
.y125{bottom:865.573333pt;}
.ye8{bottom:866.213333pt;}
.ybc{bottom:866.533333pt;}
.y10{bottom:866.853333pt;}
.y4f{bottom:867.493333pt;}
.y19c{bottom:871.813333pt;}
.y124{bottom:880.933333pt;}
.ybb{bottom:881.893333pt;}
.yf{bottom:882.213333pt;}
.y16f{bottom:882.533333pt;}
.y4e{bottom:882.853333pt;}
.y89{bottom:884.133333pt;}
.y123{bottom:896.293333pt;}
.yba{bottom:897.253333pt;}
.ye{bottom:897.413333pt;}
.y4d{bottom:898.213333pt;}
.y88{bottom:899.493333pt;}
.y19b{bottom:906.533333pt;}
.y122{bottom:911.493333pt;}
.yb9{bottom:912.453333pt;}
.yd{bottom:912.773333pt;}
.y4c{bottom:913.413333pt;}
.y87{bottom:914.853333pt;}
.y19a{bottom:925.733333pt;}
.y121{bottom:926.853333pt;}
.yb8{bottom:927.813333pt;}
.yc{bottom:928.773333pt;}
.y86{bottom:930.213333pt;}
.y120{bottom:941.893333pt;}
.yb7{bottom:943.173333pt;}
.yb{bottom:944.133333pt;}
.y85{bottom:945.413333pt;}
.yb6{bottom:958.533333pt;}
.ye7{bottom:959.173333pt;}
.y4b{bottom:959.493333pt;}
.ya{bottom:959.813333pt;}
.y84{bottom:960.453333pt;}
.yb5{bottom:973.573333pt;}
.y11f{bottom:973.893333pt;}
.y4a{bottom:974.853333pt;}
.y9{bottom:978.213333pt;}
.y199{bottom:979.813333pt;}
.y11e{bottom:989.253333pt;}
.y49{bottom:990.213333pt;}
.y8{bottom:996.613333pt;}
.y196{bottom:999.173333pt;}
.y11d{bottom:1004.453333pt;}
.y153{bottom:1005.093333pt;}
.y48{bottom:1005.413333pt;}
.y83{bottom:1010.560000pt;}
.y7{bottom:1015.040000pt;}
.y11c{bottom:1019.840000pt;}
.y47{bottom:1020.800000pt;}
.y82{bottom:1029.760000pt;}
.y6{bottom:1033.440000pt;}
.y11b{bottom:1034.880000pt;}
.y46{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.hb{height:15.200000pt;}
.h7{height:15.360000pt;}
.hc{height:30.560000pt;}
.he{height:30.592000pt;}
.hd{height:30.720000pt;}
.ha{height:30.752000pt;}
.hf{height:37.090625pt;}
.h8{height:45.920000pt;}
.h9{height:46.080000pt;}
.h2{height:52.108438pt;}
.h4{height:52.134375pt;}
.h5{height:53.535000pt;}
.h6{height:54.598989pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:80.000000pt;}
.w16{width:94.752000pt;}
.w17{width:102.880000pt;}
.w19{width:112.352000pt;}
.w8{width:113.792000pt;}
.w2{width:115.072000pt;}
.w15{width:120.992000pt;}
.w18{width:127.392000pt;}
.w1a{width:131.552000pt;}
.wc{width:158.426667pt;}
.w4{width:160.666667pt;}
.w11{width:161.306667pt;}
.w9{width:171.386667pt;}
.wf{width:171.546667pt;}
.wb{width:176.506667pt;}
.w6{width:177.626667pt;}
.w14{width:186.946667pt;}
.w3{width:204.986667pt;}
.w5{width:213.186667pt;}
.we{width:214.146667pt;}
.wd{width:323.426667pt;}
.wa{width:347.773333pt;}
.w10{width:363.293333pt;}
.w7{width:404.573333pt;}
.w12{width:429.053333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:1.440000pt;}
.x29{left:2.720000pt;}
.x1b{left:4.160000pt;}
.x51{left:5.440000pt;}
.x1c{left:7.040000pt;}
.x17{left:8.480000pt;}
.x13{left:10.240000pt;}
.x27{left:11.200000pt;}
.x15{left:12.960000pt;}
.x19{left:14.080000pt;}
.x1e{left:15.840000pt;}
.x3e{left:18.080000pt;}
.x49{left:20.000000pt;}
.x16{left:21.120000pt;}
.x18{left:22.880000pt;}
.x25{left:24.480000pt;}
.x23{left:25.600000pt;}
.x21{left:27.520000pt;}
.x55{left:28.480000pt;}
.x31{left:29.480000pt;}
.xf{left:30.880000pt;}
.x24{left:32.640000pt;}
.x37{left:33.632000pt;}
.x2b{left:35.386667pt;}
.x48{left:36.840000pt;}
.x11{left:37.920000pt;}
.x34{left:39.840000pt;}
.x28{left:42.106667pt;}
.x1a{left:44.346667pt;}
.xe{left:47.040000pt;}
.x5{left:48.000000pt;}
.x38{left:49.472000pt;}
.x41{left:50.432000pt;}
.x60{left:51.866667pt;}
.x40{left:52.800000pt;}
.x26{left:53.946667pt;}
.x22{left:55.560000pt;}
.x35{left:57.952000pt;}
.x3a{left:59.072000pt;}
.x2d{left:62.112000pt;}
.x52{left:63.880000pt;}
.x43{left:65.480000pt;}
.x44{left:66.560000pt;}
.x20{left:70.240000pt;}
.xd{left:72.000000pt;}
.x30{left:77.312000pt;}
.x57{left:81.800000pt;}
.x2a{left:84.360000pt;}
.x1d{left:88.040000pt;}
.x36{left:93.000000pt;}
.x61{left:96.032000pt;}
.x47{left:97.160000pt;}
.x3c{left:109.160000pt;}
.x4c{left:117.000000pt;}
.x3f{left:119.080000pt;}
.x4f{left:124.040000pt;}
.x50{left:127.400000pt;}
.x39{left:132.840000pt;}
.x42{left:133.800000pt;}
.x4e{left:135.240000pt;}
.x2e{left:137.480000pt;}
.x4b{left:139.546667pt;}
.x32{left:140.520000pt;}
.x4a{left:142.440000pt;}
.x59{left:147.706667pt;}
.x45{left:153.946667pt;}
.x5a{left:156.506667pt;}
.x2c{left:158.106667pt;}
.x58{left:160.506667pt;}
.x10{left:164.026667pt;}
.x5d{left:170.106667pt;}
.xc{left:171.066667pt;}
.x33{left:173.960000pt;}
.x53{left:189.626667pt;}
.x6{left:190.906667pt;}
.x7{left:195.546667pt;}
.x46{left:207.386667pt;}
.x5c{left:212.506667pt;}
.xb{left:219.386667pt;}
.x3b{left:220.506667pt;}
.x3{left:226.266667pt;}
.x9{left:265.826667pt;}
.x2{left:267.266667pt;}
.x1{left:306.786667pt;}
.x8{left:369.826667pt;}
.x12{left:370.946667pt;}
.xa{left:379.426667pt;}
.x5b{left:396.866667pt;}
.x54{left:478.173333pt;}
.x5e{left:501.053333pt;}
.x14{left:533.693333pt;}
.x56{left:560.093333pt;}
.x3d{left:570.373333pt;}
.x4d{left:585.733333pt;}
.x5f{left:615.493333pt;}
.x2f{left:633.253333pt;}
.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; }
  