
    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_d85bc005b7d7a93539594a8e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6cc61efe6b2e8dbe3e79ad1d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_72a930bccddca93467a02e85.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_02b1981a21ef6dc4b85becc8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_0aaf72d2463cb9b5e7c4963b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b03ea19eed89a543ed4540d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_707ad2e576b85d9d9bdb8598.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_11a8eb3d0a4de0f899abae3b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.lse{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.267120px;}
.ls1{letter-spacing:0.341280px;}
.ls4{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.864000px;}
.lsc{letter-spacing:1.440000px;}
.ls9{letter-spacing:33.960000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws4{word-spacing:-18.864000px;}
.ws5{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws8{word-spacing:-11.700000px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-89.316480px;}
._20{margin-left:-15.120000px;}
._14{margin-left:-5.046240px;}
._d{margin-left:-3.768000px;}
._c{margin-left:-2.736000px;}
._0{margin-left:-1.064880px;}
._5{width:1.160880px;}
._1{width:2.196480px;}
._9{width:3.239280px;}
._8{width:4.283520px;}
._12{width:5.322240px;}
._1b{width:7.123200px;}
._7{width:8.480880px;}
._6{width:9.720000px;}
._a{width:10.872000px;}
._b{width:12.108000px;}
._18{width:13.176000px;}
._19{width:14.400000px;}
._15{width:15.912000px;}
._1a{width:16.992000px;}
._e{width:19.008000px;}
._f{width:20.070240px;}
._21{width:21.140400px;}
._1f{width:22.409760px;}
._1c{width:23.672880px;}
._16{width:24.696000px;}
._17{width:25.704000px;}
._25{width:26.712000px;}
._26{width:27.864000px;}
._27{width:29.079120px;}
._22{width:30.528000px;}
._10{width:32.400000px;}
._11{width:33.564000px;}
._13{width:35.124000px;}
._29{width:36.144000px;}
._28{width:37.176000px;}
._2a{width:38.424000px;}
._23{width:40.176000px;}
._24{width:41.463120px;}
._1d{width:50.880000px;}
._1e{width:52.344000px;}
._4{width:83.380080px;}
._2{width:109.380000px;}
._2b{width:144.072000px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs0{font-size:81.360000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.ya{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y12b{bottom:3.960000px;}
.y32{bottom:6.120000px;}
.y9{bottom:6.300000px;}
.y128{bottom:6.660000px;}
.y81{bottom:8.715000px;}
.y7c{bottom:9.795000px;}
.y30{bottom:10.800000px;}
.y7e{bottom:11.010000px;}
.y83{bottom:11.160000px;}
.y7{bottom:21.600000px;}
.y14b{bottom:24.480000px;}
.y12a{bottom:24.660000px;}
.y31{bottom:31.500000px;}
.y8{bottom:31.680000px;}
.y130{bottom:45.360000px;}
.y6{bottom:57.780000px;}
.y5{bottom:78.516000px;}
.y79{bottom:113.076000px;}
.yed{bottom:113.616000px;}
.yf2{bottom:114.696000px;}
.y10d{bottom:117.396000px;}
.y154{bottom:119.016000px;}
.y11d{bottom:119.556000px;}
.y2f{bottom:127.296000px;}
.y5d{bottom:130.536000px;}
.yd3{bottom:131.616000px;}
.yec{bottom:134.316000px;}
.yf1{bottom:135.396000px;}
.y10c{bottom:138.096000px;}
.y195{bottom:139.356000px;}
.y153{bottom:139.716000px;}
.y11c{bottom:140.256000px;}
.yac{bottom:143.856000px;}
.y2e{bottom:147.996000px;}
.y5c{bottom:151.230000px;}
.yd2{bottom:152.310000px;}
.y126{bottom:153.930000px;}
.y78{bottom:154.830000px;}
.yeb{bottom:155.010000px;}
.y10b{bottom:158.790000px;}
.y194{bottom:160.050000px;}
.y152{bottom:160.410000px;}
.y11b{bottom:160.950000px;}
.yab{bottom:164.550000px;}
.y2d{bottom:168.690000px;}
.y5b{bottom:171.930000px;}
.yd1{bottom:173.010000px;}
.y125{bottom:174.630000px;}
.yea{bottom:175.710000px;}
.y10a{bottom:179.490000px;}
.y193{bottom:180.570000px;}
.y151{bottom:181.110000px;}
.y11a{bottom:181.650000px;}
.yaa{bottom:185.250000px;}
.y2c{bottom:189.390000px;}
.y5a{bottom:192.630000px;}
.yd0{bottom:193.710000px;}
.y124{bottom:195.330000px;}
.ye9{bottom:196.410000px;}
.y77{bottom:196.590000px;}
.y109{bottom:200.190000px;}
.y192{bottom:201.270000px;}
.y150{bottom:201.810000px;}
.y119{bottom:202.350000px;}
.ya9{bottom:205.950000px;}
.y59{bottom:213.330000px;}
.ycf{bottom:214.410000px;}
.y123{bottom:216.030000px;}
.ye8{bottom:217.110000px;}
.y82{bottom:219.630000px;}
.y191{bottom:221.970000px;}
.y14f{bottom:222.510000px;}
.y2b{bottom:225.930000px;}
.ya8{bottom:226.650000px;}
.y76{bottom:233.130000px;}
.y58{bottom:234.030000px;}
.yce{bottom:235.110000px;}
.y108{bottom:236.730000px;}
.ye7{bottom:237.810000px;}
.y118{bottom:238.890000px;}
.y14e{bottom:240.150000px;}
.y190{bottom:242.670000px;}
.y170{bottom:243.210000px;}
.y2a{bottom:246.630000px;}
.ya7{bottom:247.350000px;}
.y75{bottom:253.830000px;}
.y57{bottom:254.730000px;}
.ycd{bottom:255.810000px;}
.y107{bottom:257.430000px;}
.ye6{bottom:258.510000px;}
.y117{bottom:259.590000px;}
.y18f{bottom:263.370000px;}
.y14a{bottom:263.550000px;}
.y16f{bottom:263.910000px;}
.y29{bottom:267.330000px;}
.ya6{bottom:268.050000px;}
.y7d{bottom:270.000000px;}
.y74{bottom:274.530000px;}
.yf0{bottom:275.430000px;}
.ycc{bottom:276.510000px;}
.y106{bottom:278.130000px;}
.ye5{bottom:279.210000px;}
.y116{bottom:280.290000px;}
.y14d{bottom:284.070000px;}
.y16e{bottom:284.610000px;}
.y28{bottom:288.030000px;}
.ya5{bottom:288.750000px;}
.y56{bottom:291.270000px;}
.yef{bottom:296.130000px;}
.ycb{bottom:297.210000px;}
.y105{bottom:298.830000px;}
.ye4{bottom:299.910000px;}
.y115{bottom:300.990000px;}
.y14c{bottom:304.770000px;}
.y16d{bottom:305.310000px;}
.y27{bottom:308.730000px;}
.ya4{bottom:309.495000px;}
.y55{bottom:312.015000px;}
.y73{bottom:316.155000px;}
.yee{bottom:316.875000px;}
.yca{bottom:317.955000px;}
.y104{bottom:319.575000px;}
.ye3{bottom:320.655000px;}
.y114{bottom:321.735000px;}
.y147{bottom:325.515000px;}
.y26{bottom:329.475000px;}
.ya3{bottom:330.195000px;}
.y54{bottom:332.715000px;}
.yc9{bottom:338.655000px;}
.y103{bottom:340.275000px;}
.ye2{bottom:341.355000px;}
.y16c{bottom:344.055000px;}
.y149{bottom:346.215000px;}
.y25{bottom:350.175000px;}
.ya2{bottom:350.895000px;}
.y7b{bottom:351.360000px;}
.y80{bottom:352.620000px;}
.y53{bottom:353.415000px;}
.y122{bottom:356.115000px;}
.y72{bottom:357.915000px;}
.y113{bottom:358.275000px;}
.yc8{bottom:359.355000px;}
.y102{bottom:360.975000px;}
.ye1{bottom:362.055000px;}
.y196{bottom:364.215000px;}
.y16b{bottom:364.755000px;}
.y148{bottom:366.915000px;}
.y24{bottom:370.875000px;}
.ya1{bottom:371.595000px;}
.y52{bottom:374.115000px;}
.y121{bottom:376.815000px;}
.y112{bottom:378.975000px;}
.yc7{bottom:380.055000px;}
.y101{bottom:381.675000px;}
.y7f{bottom:382.035000px;}
.y7a{bottom:382.215000px;}
.ye0{bottom:382.755000px;}
.y16a{bottom:385.455000px;}
.y146{bottom:387.615000px;}
.y23{bottom:391.575000px;}
.ya0{bottom:392.295000px;}
.y51{bottom:394.815000px;}
.y120{bottom:397.515000px;}
.y71{bottom:399.675000px;}
.yc6{bottom:400.755000px;}
.ydf{bottom:403.455000px;}
.y169{bottom:406.155000px;}
.y18e{bottom:408.315000px;}
.y22{bottom:412.275000px;}
.y9f{bottom:412.995000px;}
.y50{bottom:415.515000px;}
.y100{bottom:418.215000px;}
.y70{bottom:420.375000px;}
.yc5{bottom:421.455000px;}
.yde{bottom:424.155000px;}
.y168{bottom:426.855000px;}
.y18d{bottom:429.015000px;}
.y145{bottom:429.915000px;}
.y21{bottom:432.975000px;}
.y9e{bottom:433.695000px;}
.y4f{bottom:436.215000px;}
.yff{bottom:438.915000px;}
.y111{bottom:441.075000px;}
.yc4{bottom:442.155000px;}
.ydd{bottom:444.855000px;}
.y167{bottom:447.555000px;}
.y18c{bottom:449.715000px;}
.y9d{bottom:454.395000px;}
.y4e{bottom:456.915000px;}
.y144{bottom:457.995000px;}
.yfe{bottom:459.615000px;}
.y110{bottom:461.775000px;}
.yc3{bottom:462.855000px;}
.ydc{bottom:465.555000px;}
.y166{bottom:468.255000px;}
.y20{bottom:469.515000px;}
.y18b{bottom:470.415000px;}
.y9c{bottom:475.095000px;}
.y6f{bottom:477.615000px;}
.y143{bottom:478.695000px;}
.yfd{bottom:480.315000px;}
.y10f{bottom:482.475000px;}
.yc2{bottom:483.555000px;}
.ydb{bottom:486.255000px;}
.y165{bottom:488.955000px;}
.y18a{bottom:491.115000px;}
.y4d{bottom:493.275000px;}
.y9b{bottom:495.795000px;}
.y6e{bottom:498.315000px;}
.yfc{bottom:500.835000px;}
.y10e{bottom:503.175000px;}
.yc1{bottom:504.255000px;}
.yda{bottom:506.955000px;}
.y1f{bottom:508.215000px;}
.y164{bottom:509.655000px;}
.y189{bottom:511.815000px;}
.y4c{bottom:513.975000px;}
.y9a{bottom:516.495000px;}
.y142{bottom:517.395000px;}
.y6d{bottom:518.835000px;}
.yfb{bottom:521.535000px;}
.yc0{bottom:524.955000px;}
.yd9{bottom:527.655000px;}
.y163{bottom:530.355000px;}
.y188{bottom:532.515000px;}
.y4b{bottom:534.675000px;}
.y99{bottom:537.195000px;}
.y141{bottom:538.095000px;}
.y6c{bottom:539.535000px;}
.y11f{bottom:542.235000px;}
.yfa{bottom:542.415000px;}
.y1e{bottom:544.755000px;}
.ybf{bottom:545.655000px;}
.yd8{bottom:548.355000px;}
.y162{bottom:551.055000px;}
.y187{bottom:553.215000px;}
.y4a{bottom:555.375000px;}
.y98{bottom:557.895000px;}
.y140{bottom:558.795000px;}
.y6b{bottom:560.235000px;}
.y11e{bottom:563.145000px;}
.y1d{bottom:565.485000px;}
.ybe{bottom:566.385000px;}
.yd7{bottom:569.085000px;}
.y161{bottom:571.785000px;}
.y186{bottom:573.945000px;}
.y49{bottom:576.105000px;}
.y97{bottom:578.625000px;}
.y13f{bottom:579.525000px;}
.y6a{bottom:580.965000px;}
.y1c{bottom:586.185000px;}
.ybd{bottom:587.085000px;}
.yd6{bottom:589.785000px;}
.y160{bottom:592.485000px;}
.y185{bottom:594.645000px;}
.y48{bottom:596.805000px;}
.y96{bottom:599.325000px;}
.y13e{bottom:600.225000px;}
.y69{bottom:601.665000px;}
.y1b{bottom:606.885000px;}
.ybc{bottom:607.785000px;}
.yd5{bottom:610.485000px;}
.y184{bottom:615.345000px;}
.y47{bottom:617.505000px;}
.y95{bottom:620.025000px;}
.y13d{bottom:620.925000px;}
.y68{bottom:622.365000px;}
.y1a{bottom:627.585000px;}
.ybb{bottom:628.485000px;}
.yd4{bottom:631.185000px;}
.y183{bottom:636.045000px;}
.y46{bottom:638.205000px;}
.y94{bottom:640.725000px;}
.y13c{bottom:641.625000px;}
.yf9{bottom:643.065000px;}
.y19{bottom:648.285000px;}
.yba{bottom:649.185000px;}
.y15f{bottom:651.885000px;}
.y182{bottom:656.745000px;}
.y45{bottom:658.905000px;}
.y93{bottom:661.425000px;}
.y13b{bottom:662.325000px;}
.yf8{bottom:663.765000px;}
.y18{bottom:668.985000px;}
.yb9{bottom:669.885000px;}
.y15e{bottom:672.585000px;}
.y181{bottom:677.445000px;}
.y67{bottom:679.605000px;}
.y92{bottom:682.125000px;}
.y13a{bottom:683.025000px;}
.yf7{bottom:684.465000px;}
.y17{bottom:689.685000px;}
.yb8{bottom:690.585000px;}
.y15d{bottom:693.285000px;}
.y44{bottom:695.445000px;}
.y180{bottom:698.145000px;}
.y66{bottom:700.305000px;}
.y139{bottom:703.725000px;}
.yf6{bottom:705.165000px;}
.y16{bottom:710.385000px;}
.yb7{bottom:711.285000px;}
.y15c{bottom:713.985000px;}
.y43{bottom:716.145000px;}
.y91{bottom:718.665000px;}
.y17f{bottom:718.845000px;}
.y65{bottom:721.005000px;}
.y138{bottom:724.425000px;}
.y15{bottom:731.085000px;}
.yb6{bottom:731.985000px;}
.y15b{bottom:734.685000px;}
.y42{bottom:736.845000px;}
.y90{bottom:739.365000px;}
.y17e{bottom:739.545000px;}
.y64{bottom:741.705000px;}
.y137{bottom:745.125000px;}
.y14{bottom:751.785000px;}
.yb5{bottom:752.685000px;}
.y15a{bottom:755.385000px;}
.y41{bottom:757.545000px;}
.y17d{bottom:760.245000px;}
.y63{bottom:762.405000px;}
.y136{bottom:765.825000px;}
.y13{bottom:772.485000px;}
.yb4{bottom:773.385000px;}
.y8f{bottom:775.725000px;}
.y159{bottom:776.085000px;}
.y40{bottom:778.245000px;}
.y17c{bottom:780.945000px;}
.y62{bottom:783.105000px;}
.y135{bottom:786.525000px;}
.y12{bottom:793.185000px;}
.yb3{bottom:794.085000px;}
.y8e{bottom:796.425000px;}
.y158{bottom:796.785000px;}
.y3f{bottom:798.945000px;}
.y17b{bottom:801.645000px;}
.yf5{bottom:803.805000px;}
.y134{bottom:807.225000px;}
.yb2{bottom:814.830000px;}
.y8d{bottom:817.170000px;}
.y157{bottom:817.530000px;}
.y3e{bottom:819.690000px;}
.y17a{bottom:822.390000px;}
.yf4{bottom:824.550000px;}
.y133{bottom:824.730000px;}
.y11{bottom:829.770000px;}
.yb1{bottom:835.530000px;}
.y8c{bottom:837.870000px;}
.y156{bottom:838.230000px;}
.y3d{bottom:840.390000px;}
.y179{bottom:843.090000px;}
.yf3{bottom:845.250000px;}
.y12f{bottom:848.130000px;}
.yb0{bottom:856.230000px;}
.y155{bottom:858.930000px;}
.y3c{bottom:861.090000px;}
.y178{bottom:863.790000px;}
.y10{bottom:866.310000px;}
.y132{bottom:868.830000px;}
.y8b{bottom:876.570000px;}
.yaf{bottom:876.930000px;}
.y3b{bottom:881.790000px;}
.y177{bottom:884.490000px;}
.yf{bottom:887.010000px;}
.y131{bottom:889.530000px;}
.y8a{bottom:897.270000px;}
.yae{bottom:897.630000px;}
.y3a{bottom:902.490000px;}
.y176{bottom:905.190000px;}
.ye{bottom:907.530000px;}
.y12c{bottom:910.230000px;}
.y89{bottom:917.970000px;}
.yad{bottom:918.330000px;}
.y61{bottom:923.190000px;}
.y175{bottom:925.890000px;}
.y12e{bottom:930.930000px;}
.y88{bottom:938.670000px;}
.y39{bottom:939.030000px;}
.y60{bottom:943.890000px;}
.yd{bottom:944.070000px;}
.y174{bottom:946.590000px;}
.y12d{bottom:951.630000px;}
.y87{bottom:959.370000px;}
.y38{bottom:959.730000px;}
.y5f{bottom:964.590000px;}
.yc{bottom:964.770000px;}
.y173{bottom:967.290000px;}
.y129{bottom:972.330000px;}
.y86{bottom:980.070000px;}
.y37{bottom:980.430000px;}
.y5e{bottom:985.290000px;}
.yb{bottom:985.470000px;}
.y172{bottom:987.990000px;}
.y85{bottom:1000.770000px;}
.y36{bottom:1001.130000px;}
.y127{bottom:1014.450000px;}
.y84{bottom:1021.470000px;}
.y35{bottom:1021.830000px;}
.y171{bottom:1024.530000px;}
.y4{bottom:1027.230000px;}
.y34{bottom:1042.530000px;}
.y33{bottom:1063.260000px;}
.y3{bottom:1069.560000px;}
.y2{bottom:1093.140000px;}
.y1{bottom:1114.380000px;}
.h14{height:20.520000px;}
.hf{height:20.700000px;}
.h12{height:20.736000px;}
.hc{height:23.400000px;}
.hb{height:27.900000px;}
.h9{height:28.080000px;}
.hd{height:41.400000px;}
.h5{height:49.500000px;}
.h2{height:50.800781px;}
.ha{height:51.300000px;}
.h8{height:53.460000px;}
.h7{height:54.773438px;}
.h6{height:58.320000px;}
.h1{height:59.436914px;}
.h11{height:61.956000px;}
.he{height:62.100000px;}
.h4{height:64.546875px;}
.h10{height:70.606406px;}
.h13{height:70.786406px;}
.h3{height:75.519844px;}
.h0{height:1188.000000px;}
.w8{width:131.760000px;}
.w9{width:131.796000px;}
.w5{width:175.710000px;}
.w3{width:176.040000px;}
.wb{width:176.970000px;}
.w4{width:195.480000px;}
.wa{width:219.630000px;}
.w2{width:221.220000px;}
.w7{width:396.615000px;}
.w6{width:660.165000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x1d{left:-1.080000px;}
.x0{left:0.000000px;}
.x23{left:3.780000px;}
.x7{left:9.719986px;}
.x17{left:10.905000px;}
.x22{left:18.540000px;}
.x20{left:27.360000px;}
.x8{left:38.339986px;}
.x14{left:40.425000px;}
.x1f{left:43.380000px;}
.x18{left:64.260000px;}
.x12{left:67.350000px;}
.x29{left:79.200000px;}
.x26{left:83.745000px;}
.x27{left:95.805000px;}
.x6{left:106.955986px;}
.x1b{left:108.036000px;}
.x28{left:109.260000px;}
.x11{left:112.680000px;}
.x25{left:118.260000px;}
.xa{left:125.675986px;}
.xd{left:128.195986px;}
.x19{left:135.035986px;}
.x10{left:157.709986px;}
.x1a{left:162.029986px;}
.x1{left:176.249986px;}
.x3{left:206.309986px;}
.xe{left:260.129986px;}
.xc{left:267.509986px;}
.xf{left:274.169986px;}
.x1c{left:281.199000px;}
.x2{left:284.249986px;}
.x24{left:327.675000px;}
.xb{left:372.314986px;}
.x9{left:423.074986px;}
.x1e{left:504.645000px;}
.x16{left:512.280000px;}
.x13{left:521.100000px;}
.x15{left:550.364986px;}
.x21{left:636.405000px;}
.x5{left:792.149986px;}
.x4{left:810.149986px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.lse{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.237440pt;}
.ls1{letter-spacing:0.303360pt;}
.ls4{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.768000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls9{letter-spacing:30.186667pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws4{word-spacing:-16.768000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws8{word-spacing:-10.400000pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-79.392427pt;}
._20{margin-left:-13.440000pt;}
._14{margin-left:-4.485547pt;}
._d{margin-left:-3.349333pt;}
._c{margin-left:-2.432000pt;}
._0{margin-left:-0.946560pt;}
._5{width:1.031893pt;}
._1{width:1.952427pt;}
._9{width:2.879360pt;}
._8{width:3.807573pt;}
._12{width:4.730880pt;}
._1b{width:6.331733pt;}
._7{width:7.538560pt;}
._6{width:8.640000pt;}
._a{width:9.664000pt;}
._b{width:10.762667pt;}
._18{width:11.712000pt;}
._19{width:12.800000pt;}
._15{width:14.144000pt;}
._1a{width:15.104000pt;}
._e{width:16.896000pt;}
._f{width:17.840213pt;}
._21{width:18.791467pt;}
._1f{width:19.919787pt;}
._1c{width:21.042560pt;}
._16{width:21.952000pt;}
._17{width:22.848000pt;}
._25{width:23.744000pt;}
._26{width:24.768000pt;}
._27{width:25.848107pt;}
._22{width:27.136000pt;}
._10{width:28.800000pt;}
._11{width:29.834667pt;}
._13{width:31.221333pt;}
._29{width:32.128000pt;}
._28{width:33.045333pt;}
._2a{width:34.154667pt;}
._23{width:35.712000pt;}
._24{width:36.856107pt;}
._1d{width:45.226667pt;}
._1e{width:46.528000pt;}
._4{width:74.115627pt;}
._2{width:97.226667pt;}
._2b{width:128.064000pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs0{font-size:72.320000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.ya{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y12b{bottom:3.520000pt;}
.y32{bottom:5.440000pt;}
.y9{bottom:5.600000pt;}
.y128{bottom:5.920000pt;}
.y81{bottom:7.746667pt;}
.y7c{bottom:8.706667pt;}
.y30{bottom:9.600000pt;}
.y7e{bottom:9.786667pt;}
.y83{bottom:9.920000pt;}
.y7{bottom:19.200000pt;}
.y14b{bottom:21.760000pt;}
.y12a{bottom:21.920000pt;}
.y31{bottom:28.000000pt;}
.y8{bottom:28.160000pt;}
.y130{bottom:40.320000pt;}
.y6{bottom:51.360000pt;}
.y5{bottom:69.792000pt;}
.y79{bottom:100.512000pt;}
.yed{bottom:100.992000pt;}
.yf2{bottom:101.952000pt;}
.y10d{bottom:104.352000pt;}
.y154{bottom:105.792000pt;}
.y11d{bottom:106.272000pt;}
.y2f{bottom:113.152000pt;}
.y5d{bottom:116.032000pt;}
.yd3{bottom:116.992000pt;}
.yec{bottom:119.392000pt;}
.yf1{bottom:120.352000pt;}
.y10c{bottom:122.752000pt;}
.y195{bottom:123.872000pt;}
.y153{bottom:124.192000pt;}
.y11c{bottom:124.672000pt;}
.yac{bottom:127.872000pt;}
.y2e{bottom:131.552000pt;}
.y5c{bottom:134.426667pt;}
.yd2{bottom:135.386667pt;}
.y126{bottom:136.826667pt;}
.y78{bottom:137.626667pt;}
.yeb{bottom:137.786667pt;}
.y10b{bottom:141.146667pt;}
.y194{bottom:142.266667pt;}
.y152{bottom:142.586667pt;}
.y11b{bottom:143.066667pt;}
.yab{bottom:146.266667pt;}
.y2d{bottom:149.946667pt;}
.y5b{bottom:152.826667pt;}
.yd1{bottom:153.786667pt;}
.y125{bottom:155.226667pt;}
.yea{bottom:156.186667pt;}
.y10a{bottom:159.546667pt;}
.y193{bottom:160.506667pt;}
.y151{bottom:160.986667pt;}
.y11a{bottom:161.466667pt;}
.yaa{bottom:164.666667pt;}
.y2c{bottom:168.346667pt;}
.y5a{bottom:171.226667pt;}
.yd0{bottom:172.186667pt;}
.y124{bottom:173.626667pt;}
.ye9{bottom:174.586667pt;}
.y77{bottom:174.746667pt;}
.y109{bottom:177.946667pt;}
.y192{bottom:178.906667pt;}
.y150{bottom:179.386667pt;}
.y119{bottom:179.866667pt;}
.ya9{bottom:183.066667pt;}
.y59{bottom:189.626667pt;}
.ycf{bottom:190.586667pt;}
.y123{bottom:192.026667pt;}
.ye8{bottom:192.986667pt;}
.y82{bottom:195.226667pt;}
.y191{bottom:197.306667pt;}
.y14f{bottom:197.786667pt;}
.y2b{bottom:200.826667pt;}
.ya8{bottom:201.466667pt;}
.y76{bottom:207.226667pt;}
.y58{bottom:208.026667pt;}
.yce{bottom:208.986667pt;}
.y108{bottom:210.426667pt;}
.ye7{bottom:211.386667pt;}
.y118{bottom:212.346667pt;}
.y14e{bottom:213.466667pt;}
.y190{bottom:215.706667pt;}
.y170{bottom:216.186667pt;}
.y2a{bottom:219.226667pt;}
.ya7{bottom:219.866667pt;}
.y75{bottom:225.626667pt;}
.y57{bottom:226.426667pt;}
.ycd{bottom:227.386667pt;}
.y107{bottom:228.826667pt;}
.ye6{bottom:229.786667pt;}
.y117{bottom:230.746667pt;}
.y18f{bottom:234.106667pt;}
.y14a{bottom:234.266667pt;}
.y16f{bottom:234.586667pt;}
.y29{bottom:237.626667pt;}
.ya6{bottom:238.266667pt;}
.y7d{bottom:240.000000pt;}
.y74{bottom:244.026667pt;}
.yf0{bottom:244.826667pt;}
.ycc{bottom:245.786667pt;}
.y106{bottom:247.226667pt;}
.ye5{bottom:248.186667pt;}
.y116{bottom:249.146667pt;}
.y14d{bottom:252.506667pt;}
.y16e{bottom:252.986667pt;}
.y28{bottom:256.026667pt;}
.ya5{bottom:256.666667pt;}
.y56{bottom:258.906667pt;}
.yef{bottom:263.226667pt;}
.ycb{bottom:264.186667pt;}
.y105{bottom:265.626667pt;}
.ye4{bottom:266.586667pt;}
.y115{bottom:267.546667pt;}
.y14c{bottom:270.906667pt;}
.y16d{bottom:271.386667pt;}
.y27{bottom:274.426667pt;}
.ya4{bottom:275.106667pt;}
.y55{bottom:277.346667pt;}
.y73{bottom:281.026667pt;}
.yee{bottom:281.666667pt;}
.yca{bottom:282.626667pt;}
.y104{bottom:284.066667pt;}
.ye3{bottom:285.026667pt;}
.y114{bottom:285.986667pt;}
.y147{bottom:289.346667pt;}
.y26{bottom:292.866667pt;}
.ya3{bottom:293.506667pt;}
.y54{bottom:295.746667pt;}
.yc9{bottom:301.026667pt;}
.y103{bottom:302.466667pt;}
.ye2{bottom:303.426667pt;}
.y16c{bottom:305.826667pt;}
.y149{bottom:307.746667pt;}
.y25{bottom:311.266667pt;}
.ya2{bottom:311.906667pt;}
.y7b{bottom:312.320000pt;}
.y80{bottom:313.440000pt;}
.y53{bottom:314.146667pt;}
.y122{bottom:316.546667pt;}
.y72{bottom:318.146667pt;}
.y113{bottom:318.466667pt;}
.yc8{bottom:319.426667pt;}
.y102{bottom:320.866667pt;}
.ye1{bottom:321.826667pt;}
.y196{bottom:323.746667pt;}
.y16b{bottom:324.226667pt;}
.y148{bottom:326.146667pt;}
.y24{bottom:329.666667pt;}
.ya1{bottom:330.306667pt;}
.y52{bottom:332.546667pt;}
.y121{bottom:334.946667pt;}
.y112{bottom:336.866667pt;}
.yc7{bottom:337.826667pt;}
.y101{bottom:339.266667pt;}
.y7f{bottom:339.586667pt;}
.y7a{bottom:339.746667pt;}
.ye0{bottom:340.226667pt;}
.y16a{bottom:342.626667pt;}
.y146{bottom:344.546667pt;}
.y23{bottom:348.066667pt;}
.ya0{bottom:348.706667pt;}
.y51{bottom:350.946667pt;}
.y120{bottom:353.346667pt;}
.y71{bottom:355.266667pt;}
.yc6{bottom:356.226667pt;}
.ydf{bottom:358.626667pt;}
.y169{bottom:361.026667pt;}
.y18e{bottom:362.946667pt;}
.y22{bottom:366.466667pt;}
.y9f{bottom:367.106667pt;}
.y50{bottom:369.346667pt;}
.y100{bottom:371.746667pt;}
.y70{bottom:373.666667pt;}
.yc5{bottom:374.626667pt;}
.yde{bottom:377.026667pt;}
.y168{bottom:379.426667pt;}
.y18d{bottom:381.346667pt;}
.y145{bottom:382.146667pt;}
.y21{bottom:384.866667pt;}
.y9e{bottom:385.506667pt;}
.y4f{bottom:387.746667pt;}
.yff{bottom:390.146667pt;}
.y111{bottom:392.066667pt;}
.yc4{bottom:393.026667pt;}
.ydd{bottom:395.426667pt;}
.y167{bottom:397.826667pt;}
.y18c{bottom:399.746667pt;}
.y9d{bottom:403.906667pt;}
.y4e{bottom:406.146667pt;}
.y144{bottom:407.106667pt;}
.yfe{bottom:408.546667pt;}
.y110{bottom:410.466667pt;}
.yc3{bottom:411.426667pt;}
.ydc{bottom:413.826667pt;}
.y166{bottom:416.226667pt;}
.y20{bottom:417.346667pt;}
.y18b{bottom:418.146667pt;}
.y9c{bottom:422.306667pt;}
.y6f{bottom:424.546667pt;}
.y143{bottom:425.506667pt;}
.yfd{bottom:426.946667pt;}
.y10f{bottom:428.866667pt;}
.yc2{bottom:429.826667pt;}
.ydb{bottom:432.226667pt;}
.y165{bottom:434.626667pt;}
.y18a{bottom:436.546667pt;}
.y4d{bottom:438.466667pt;}
.y9b{bottom:440.706667pt;}
.y6e{bottom:442.946667pt;}
.yfc{bottom:445.186667pt;}
.y10e{bottom:447.266667pt;}
.yc1{bottom:448.226667pt;}
.yda{bottom:450.626667pt;}
.y1f{bottom:451.746667pt;}
.y164{bottom:453.026667pt;}
.y189{bottom:454.946667pt;}
.y4c{bottom:456.866667pt;}
.y9a{bottom:459.106667pt;}
.y142{bottom:459.906667pt;}
.y6d{bottom:461.186667pt;}
.yfb{bottom:463.586667pt;}
.yc0{bottom:466.626667pt;}
.yd9{bottom:469.026667pt;}
.y163{bottom:471.426667pt;}
.y188{bottom:473.346667pt;}
.y4b{bottom:475.266667pt;}
.y99{bottom:477.506667pt;}
.y141{bottom:478.306667pt;}
.y6c{bottom:479.586667pt;}
.y11f{bottom:481.986667pt;}
.yfa{bottom:482.146667pt;}
.y1e{bottom:484.226667pt;}
.ybf{bottom:485.026667pt;}
.yd8{bottom:487.426667pt;}
.y162{bottom:489.826667pt;}
.y187{bottom:491.746667pt;}
.y4a{bottom:493.666667pt;}
.y98{bottom:495.906667pt;}
.y140{bottom:496.706667pt;}
.y6b{bottom:497.986667pt;}
.y11e{bottom:500.573333pt;}
.y1d{bottom:502.653333pt;}
.ybe{bottom:503.453333pt;}
.yd7{bottom:505.853333pt;}
.y161{bottom:508.253333pt;}
.y186{bottom:510.173333pt;}
.y49{bottom:512.093333pt;}
.y97{bottom:514.333333pt;}
.y13f{bottom:515.133333pt;}
.y6a{bottom:516.413333pt;}
.y1c{bottom:521.053333pt;}
.ybd{bottom:521.853333pt;}
.yd6{bottom:524.253333pt;}
.y160{bottom:526.653333pt;}
.y185{bottom:528.573333pt;}
.y48{bottom:530.493333pt;}
.y96{bottom:532.733333pt;}
.y13e{bottom:533.533333pt;}
.y69{bottom:534.813333pt;}
.y1b{bottom:539.453333pt;}
.ybc{bottom:540.253333pt;}
.yd5{bottom:542.653333pt;}
.y184{bottom:546.973333pt;}
.y47{bottom:548.893333pt;}
.y95{bottom:551.133333pt;}
.y13d{bottom:551.933333pt;}
.y68{bottom:553.213333pt;}
.y1a{bottom:557.853333pt;}
.ybb{bottom:558.653333pt;}
.yd4{bottom:561.053333pt;}
.y183{bottom:565.373333pt;}
.y46{bottom:567.293333pt;}
.y94{bottom:569.533333pt;}
.y13c{bottom:570.333333pt;}
.yf9{bottom:571.613333pt;}
.y19{bottom:576.253333pt;}
.yba{bottom:577.053333pt;}
.y15f{bottom:579.453333pt;}
.y182{bottom:583.773333pt;}
.y45{bottom:585.693333pt;}
.y93{bottom:587.933333pt;}
.y13b{bottom:588.733333pt;}
.yf8{bottom:590.013333pt;}
.y18{bottom:594.653333pt;}
.yb9{bottom:595.453333pt;}
.y15e{bottom:597.853333pt;}
.y181{bottom:602.173333pt;}
.y67{bottom:604.093333pt;}
.y92{bottom:606.333333pt;}
.y13a{bottom:607.133333pt;}
.yf7{bottom:608.413333pt;}
.y17{bottom:613.053333pt;}
.yb8{bottom:613.853333pt;}
.y15d{bottom:616.253333pt;}
.y44{bottom:618.173333pt;}
.y180{bottom:620.573333pt;}
.y66{bottom:622.493333pt;}
.y139{bottom:625.533333pt;}
.yf6{bottom:626.813333pt;}
.y16{bottom:631.453333pt;}
.yb7{bottom:632.253333pt;}
.y15c{bottom:634.653333pt;}
.y43{bottom:636.573333pt;}
.y91{bottom:638.813333pt;}
.y17f{bottom:638.973333pt;}
.y65{bottom:640.893333pt;}
.y138{bottom:643.933333pt;}
.y15{bottom:649.853333pt;}
.yb6{bottom:650.653333pt;}
.y15b{bottom:653.053333pt;}
.y42{bottom:654.973333pt;}
.y90{bottom:657.213333pt;}
.y17e{bottom:657.373333pt;}
.y64{bottom:659.293333pt;}
.y137{bottom:662.333333pt;}
.y14{bottom:668.253333pt;}
.yb5{bottom:669.053333pt;}
.y15a{bottom:671.453333pt;}
.y41{bottom:673.373333pt;}
.y17d{bottom:675.773333pt;}
.y63{bottom:677.693333pt;}
.y136{bottom:680.733333pt;}
.y13{bottom:686.653333pt;}
.yb4{bottom:687.453333pt;}
.y8f{bottom:689.533333pt;}
.y159{bottom:689.853333pt;}
.y40{bottom:691.773333pt;}
.y17c{bottom:694.173333pt;}
.y62{bottom:696.093333pt;}
.y135{bottom:699.133333pt;}
.y12{bottom:705.053333pt;}
.yb3{bottom:705.853333pt;}
.y8e{bottom:707.933333pt;}
.y158{bottom:708.253333pt;}
.y3f{bottom:710.173333pt;}
.y17b{bottom:712.573333pt;}
.yf5{bottom:714.493333pt;}
.y134{bottom:717.533333pt;}
.yb2{bottom:724.293333pt;}
.y8d{bottom:726.373333pt;}
.y157{bottom:726.693333pt;}
.y3e{bottom:728.613333pt;}
.y17a{bottom:731.013333pt;}
.yf4{bottom:732.933333pt;}
.y133{bottom:733.093333pt;}
.y11{bottom:737.573333pt;}
.yb1{bottom:742.693333pt;}
.y8c{bottom:744.773333pt;}
.y156{bottom:745.093333pt;}
.y3d{bottom:747.013333pt;}
.y179{bottom:749.413333pt;}
.yf3{bottom:751.333333pt;}
.y12f{bottom:753.893333pt;}
.yb0{bottom:761.093333pt;}
.y155{bottom:763.493333pt;}
.y3c{bottom:765.413333pt;}
.y178{bottom:767.813333pt;}
.y10{bottom:770.053333pt;}
.y132{bottom:772.293333pt;}
.y8b{bottom:779.173333pt;}
.yaf{bottom:779.493333pt;}
.y3b{bottom:783.813333pt;}
.y177{bottom:786.213333pt;}
.yf{bottom:788.453333pt;}
.y131{bottom:790.693333pt;}
.y8a{bottom:797.573333pt;}
.yae{bottom:797.893333pt;}
.y3a{bottom:802.213333pt;}
.y176{bottom:804.613333pt;}
.ye{bottom:806.693333pt;}
.y12c{bottom:809.093333pt;}
.y89{bottom:815.973333pt;}
.yad{bottom:816.293333pt;}
.y61{bottom:820.613333pt;}
.y175{bottom:823.013333pt;}
.y12e{bottom:827.493333pt;}
.y88{bottom:834.373333pt;}
.y39{bottom:834.693333pt;}
.y60{bottom:839.013333pt;}
.yd{bottom:839.173333pt;}
.y174{bottom:841.413333pt;}
.y12d{bottom:845.893333pt;}
.y87{bottom:852.773333pt;}
.y38{bottom:853.093333pt;}
.y5f{bottom:857.413333pt;}
.yc{bottom:857.573333pt;}
.y173{bottom:859.813333pt;}
.y129{bottom:864.293333pt;}
.y86{bottom:871.173333pt;}
.y37{bottom:871.493333pt;}
.y5e{bottom:875.813333pt;}
.yb{bottom:875.973333pt;}
.y172{bottom:878.213333pt;}
.y85{bottom:889.573333pt;}
.y36{bottom:889.893333pt;}
.y127{bottom:901.733333pt;}
.y84{bottom:907.973333pt;}
.y35{bottom:908.293333pt;}
.y171{bottom:910.693333pt;}
.y4{bottom:913.093333pt;}
.y34{bottom:926.693333pt;}
.y33{bottom:945.120000pt;}
.y3{bottom:950.720000pt;}
.y2{bottom:971.680000pt;}
.y1{bottom:990.560000pt;}
.h14{height:18.240000pt;}
.hf{height:18.400000pt;}
.h12{height:18.432000pt;}
.hc{height:20.800000pt;}
.hb{height:24.800000pt;}
.h9{height:24.960000pt;}
.hd{height:36.800000pt;}
.h5{height:44.000000pt;}
.h2{height:45.156250pt;}
.ha{height:45.600000pt;}
.h8{height:47.520000pt;}
.h7{height:48.687500pt;}
.h6{height:51.840000pt;}
.h1{height:52.832812pt;}
.h11{height:55.072000pt;}
.he{height:55.200000pt;}
.h4{height:57.375000pt;}
.h10{height:62.761250pt;}
.h13{height:62.921250pt;}
.h3{height:67.128750pt;}
.h0{height:1056.000000pt;}
.w8{width:117.120000pt;}
.w9{width:117.152000pt;}
.w5{width:156.186667pt;}
.w3{width:156.480000pt;}
.wb{width:157.306667pt;}
.w4{width:173.760000pt;}
.wa{width:195.226667pt;}
.w2{width:196.640000pt;}
.w7{width:352.546667pt;}
.w6{width:586.813333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x1d{left:-0.960000pt;}
.x0{left:0.000000pt;}
.x23{left:3.360000pt;}
.x7{left:8.639988pt;}
.x17{left:9.693333pt;}
.x22{left:16.480000pt;}
.x20{left:24.320000pt;}
.x8{left:34.079988pt;}
.x14{left:35.933333pt;}
.x1f{left:38.560000pt;}
.x18{left:57.120000pt;}
.x12{left:59.866667pt;}
.x29{left:70.400000pt;}
.x26{left:74.440000pt;}
.x27{left:85.160000pt;}
.x6{left:95.071988pt;}
.x1b{left:96.032000pt;}
.x28{left:97.120000pt;}
.x11{left:100.160000pt;}
.x25{left:105.120000pt;}
.xa{left:111.711988pt;}
.xd{left:113.951988pt;}
.x19{left:120.031988pt;}
.x10{left:140.186655pt;}
.x1a{left:144.026655pt;}
.x1{left:156.666655pt;}
.x3{left:183.386655pt;}
.xe{left:231.226655pt;}
.xc{left:237.786655pt;}
.xf{left:243.706655pt;}
.x1c{left:249.954667pt;}
.x2{left:252.666655pt;}
.x24{left:291.266667pt;}
.xb{left:330.946655pt;}
.x9{left:376.066655pt;}
.x1e{left:448.573333pt;}
.x16{left:455.360000pt;}
.x13{left:463.200000pt;}
.x15{left:489.213321pt;}
.x21{left:565.693333pt;}
.x5{left:704.133321pt;}
.x4{left:720.133321pt;}
}




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