
    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_d5e2a9473f62e226512a0e7a.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_6b1d8429785df191511f4eeb.woff2')format("woff");}.ff2{font-family:ff2;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: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_e830f8a5c6d9416ee02704fb.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_85031fc94b949fa6116ef169.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dcdd1dfcdfcc777c370a47ac.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_6c84501aa6a09a6263dae308.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3408289e5ebac311c9531c99.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.414600px;}
.ls11{letter-spacing:-0.305400px;}
.lsf{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.144000px;}
.lse{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.341280px;}
.ls2{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.720000px;}
.ls14{letter-spacing:2.880000px;}
.ls4{letter-spacing:15.120000px;}
.ls3{letter-spacing:18.000000px;}
.lsb{letter-spacing:33.960000px;}
.ls0{letter-spacing:410.940000px;}
.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;}
.ws9{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws6{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.450800px;}
.ws7{word-spacing:-16.254600px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-88.669200px;}
._a{margin-left:-4.248000px;}
._11{margin-left:-2.952000px;}
._0{margin-left:-1.398240px;}
._1{width:1.549200px;}
._5{width:2.664480px;}
._8{width:4.248000px;}
._9{width:5.296320px;}
._7{width:6.396480px;}
._6{width:7.560000px;}
._c{width:8.784000px;}
._b{width:10.152000px;}
._e{width:11.459280px;}
._d{width:12.672000px;}
._1b{width:13.752000px;}
._14{width:14.904000px;}
._15{width:16.128000px;}
._12{width:19.152000px;}
._13{width:20.232000px;}
._19{width:21.569760px;}
._17{width:23.070240px;}
._f{width:24.120000px;}
._10{width:25.344000px;}
._16{width:26.616000px;}
._1c{width:28.032000px;}
._20{width:29.681040px;}
._22{width:30.918960px;}
._1f{width:32.904000px;}
._1a{width:34.344000px;}
._24{width:35.472000px;}
._28{width:36.792000px;}
._1d{width:38.088000px;}
._1e{width:39.384000px;}
._21{width:42.840000px;}
._23{width:58.296000px;}
._25{width:63.707520px;}
._4{width:83.380080px;}
._27{width:87.304320px;}
._2{width:109.380000px;}
._18{width:112.296000px;}
._26{width:116.516160px;}
.fc6{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:15.120000px;}
.fs7{font-size:23.760000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs1{font-size:81.360000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.ya{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.yd9{bottom:3.600000px;}
.ydb{bottom:3.780000px;}
.yfc{bottom:3.810000px;}
.y35{bottom:6.120000px;}
.y9{bottom:6.300000px;}
.y33{bottom:10.800000px;}
.y121{bottom:12.420000px;}
.y125{bottom:12.600000px;}
.ydd{bottom:18.900000px;}
.ye8{bottom:18.930000px;}
.ye1{bottom:19.080000px;}
.y143{bottom:19.434000px;}
.y151{bottom:19.440000px;}
.y133{bottom:19.620000px;}
.y145{bottom:19.650000px;}
.y7{bottom:21.600000px;}
.y112{bottom:22.500000px;}
.y10c{bottom:22.680000px;}
.y110{bottom:22.710000px;}
.y34{bottom:31.500000px;}
.y8{bottom:31.680000px;}
.y14a{bottom:35.100000px;}
.y136{bottom:38.700000px;}
.y10b{bottom:41.580000px;}
.y10f{bottom:41.790000px;}
.y6{bottom:57.780000px;}
.y135{bottom:57.960000px;}
.y5{bottom:78.516000px;}
.y32{bottom:117.756000px;}
.yfa{bottom:117.936000px;}
.y91{bottom:119.196000px;}
.yd5{bottom:124.236000px;}
.y5f{bottom:124.776000px;}
.y79{bottom:125.316000px;}
.ya1{bottom:129.816000px;}
.y166{bottom:136.296000px;}
.yf9{bottom:137.736000px;}
.y31{bottom:138.636000px;}
.y11f{bottom:139.536000px;}
.y90{bottom:140.076000px;}
.y142{bottom:140.976000px;}
.y16e{bottom:141.156000px;}
.yd4{bottom:145.296000px;}
.y5e{bottom:145.656000px;}
.y78{bottom:146.196000px;}
.y193{bottom:146.556000px;}
.ya0{bottom:150.870000px;}
.yf8{bottom:157.350000px;}
.y11e{bottom:160.590000px;}
.y8f{bottom:161.130000px;}
.y16d{bottom:164.910000px;}
.yd3{bottom:166.170000px;}
.y5d{bottom:166.710000px;}
.y77{bottom:167.070000px;}
.y192{bottom:167.250000px;}
.y9f{bottom:171.750000px;}
.y165{bottom:173.010000px;}
.y30{bottom:175.530000px;}
.y11d{bottom:181.470000px;}
.y8e{bottom:182.010000px;}
.yb0{bottom:182.550000px;}
.y5c{bottom:187.590000px;}
.y191{bottom:187.950000px;}
.y76{bottom:188.130000px;}
.y16c{bottom:188.850000px;}
.ybb{bottom:192.810000px;}
.y164{bottom:194.070000px;}
.y2f{bottom:196.410000px;}
.y141{bottom:196.770000px;}
.yf7{bottom:197.130000px;}
.y11c{bottom:202.530000px;}
.y8d{bottom:203.070000px;}
.yaf{bottom:203.430000px;}
.y5b{bottom:208.650000px;}
.y75{bottom:209.010000px;}
.y16b{bottom:212.610000px;}
.y163{bottom:214.950000px;}
.y2e{bottom:217.470000px;}
.y11b{bottom:223.410000px;}
.y8c{bottom:223.950000px;}
.yae{bottom:224.310000px;}
.y190{bottom:229.350000px;}
.y5a{bottom:229.530000px;}
.y74{bottom:230.070000px;}
.y140{bottom:233.490000px;}
.yf6{bottom:233.850000px;}
.y162{bottom:236.010000px;}
.y16a{bottom:236.370000px;}
.y2d{bottom:238.350000px;}
.yd2{bottom:239.790000px;}
.y11a{bottom:244.290000px;}
.y8b{bottom:245.010000px;}
.yad{bottom:245.370000px;}
.y18f{bottom:250.050000px;}
.y9e{bottom:250.410000px;}
.y73{bottom:250.950000px;}
.yf5{bottom:254.910000px;}
.y161{bottom:256.890000px;}
.y2c{bottom:259.230000px;}
.y169{bottom:260.130000px;}
.yd1{bottom:260.670000px;}
.y119{bottom:265.350000px;}
.y8a{bottom:265.890000px;}
.y59{bottom:266.250000px;}
.y13f{bottom:270.390000px;}
.y18e{bottom:270.750000px;}
.y9d{bottom:271.470000px;}
.y72{bottom:272.010000px;}
.yf4{bottom:275.790000px;}
.y160{bottom:277.950000px;}
.y2b{bottom:280.290000px;}
.yd0{bottom:281.730000px;}
.y168{bottom:284.070000px;}
.y58{bottom:287.310000px;}
.y13e{bottom:291.270000px;}
.y18d{bottom:291.450000px;}
.y9c{bottom:292.350000px;}
.y71{bottom:292.890000px;}
.yf3{bottom:296.850000px;}
.y2a{bottom:301.170000px;}
.y118{bottom:302.070000px;}
.y89{bottom:302.610000px;}
.y167{bottom:307.830000px;}
.y57{bottom:308.190000px;}
.y13d{bottom:312.195000px;}
.y9b{bottom:313.455000px;}
.y15f{bottom:314.715000px;}
.y29{bottom:322.275000px;}
.y117{bottom:323.175000px;}
.ycf{bottom:323.715000px;}
.y56{bottom:329.295000px;}
.y70{bottom:329.655000px;}
.y18c{bottom:332.895000px;}
.y13c{bottom:333.255000px;}
.yf2{bottom:333.615000px;}
.y9a{bottom:334.335000px;}
.y88{bottom:339.555000px;}
.y28{bottom:343.155000px;}
.y116{bottom:344.055000px;}
.yce{bottom:344.595000px;}
.y55{bottom:350.175000px;}
.y15e{bottom:351.435000px;}
.y18b{bottom:353.595000px;}
.yf1{bottom:354.495000px;}
.y99{bottom:355.395000px;}
.yc9{bottom:360.435000px;}
.y27{bottom:364.215000px;}
.y115{bottom:365.115000px;}
.ycd{bottom:365.655000px;}
.y6f{bottom:366.555000px;}
.y13b{bottom:369.975000px;}
.y54{bottom:371.055000px;}
.y15d{bottom:372.495000px;}
.y18a{bottom:374.295000px;}
.yf0{bottom:375.555000px;}
.y87{bottom:376.275000px;}
.yc8{bottom:381.315000px;}
.y26{bottom:385.095000px;}
.ycc{bottom:386.535000px;}
.yac{bottom:386.895000px;}
.y13a{bottom:391.035000px;}
.y53{bottom:392.115000px;}
.y15c{bottom:393.375000px;}
.y189{bottom:394.995000px;}
.yef{bottom:396.435000px;}
.y86{bottom:397.155000px;}
.y114{bottom:401.835000px;}
.yc7{bottom:402.375000px;}
.y6e{bottom:403.275000px;}
.y25{bottom:405.975000px;}
.yab{bottom:407.955000px;}
.y139{bottom:411.915000px;}
.y52{bottom:412.995000px;}
.y15b{bottom:414.435000px;}
.y188{bottom:415.695000px;}
.y85{bottom:418.215000px;}
.y113{bottom:419.295000px;}
.yc6{bottom:423.255000px;}
.y24{bottom:427.035000px;}
.yaa{bottom:428.835000px;}
.y138{bottom:432.975000px;}
.yee{bottom:433.335000px;}
.y51{bottom:434.055000px;}
.y15a{bottom:435.315000px;}
.y187{bottom:436.395000px;}
.y6d{bottom:439.095000px;}
.yc5{bottom:444.315000px;}
.y23{bottom:447.915000px;}
.ya9{bottom:449.895000px;}
.yed{bottom:450.795000px;}
.y98{bottom:454.935000px;}
.y186{bottom:457.095000px;}
.y84{bottom:460.155000px;}
.y6c{bottom:462.855000px;}
.yc4{bottom:465.195000px;}
.y22{bottom:468.975000px;}
.y137{bottom:469.695000px;}
.yec{bottom:470.415000px;}
.y50{bottom:470.775000px;}
.y159{bottom:472.035000px;}
.y97{bottom:475.995000px;}
.y185{bottom:477.795000px;}
.y83{bottom:481.035000px;}
.yc3{bottom:486.255000px;}
.y134{bottom:487.155000px;}
.y21{bottom:489.855000px;}
.yeb{bottom:490.215000px;}
.y4f{bottom:491.835000px;}
.y158{bottom:493.095000px;}
.y111{bottom:496.695000px;}
.y96{bottom:496.875000px;}
.y184{bottom:498.495000px;}
.y6b{bottom:498.675000px;}
.y82{bottom:502.095000px;}
.yea{bottom:510.015000px;}
.y20{bottom:510.915000px;}
.y4e{bottom:512.715000px;}
.y157{bottom:513.975000px;}
.y95{bottom:517.755000px;}
.y183{bottom:519.195000px;}
.y6a{bottom:522.435000px;}
.y81{bottom:522.975000px;}
.ye9{bottom:529.635000px;}
.y1f{bottom:531.795000px;}
.y4d{bottom:533.595000px;}
.y156{bottom:535.035000px;}
.y94{bottom:538.815000px;}
.y182{bottom:539.895000px;}
.y80{bottom:543.855000px;}
.ye7{bottom:549.435000px;}
.y1e{bottom:552.675000px;}
.y10e{bottom:554.295000px;}
.y4c{bottom:554.655000px;}
.y155{bottom:555.915000px;}
.y69{bottom:558.255000px;}
.y93{bottom:559.695000px;}
.y181{bottom:560.625000px;}
.y132{bottom:561.345000px;}
.ycb{bottom:564.945000px;}
.ye6{bottom:569.085000px;}
.y1d{bottom:573.765000px;}
.y4b{bottom:575.565000px;}
.y7f{bottom:580.785000px;}
.y180{bottom:581.325000px;}
.y68{bottom:582.225000px;}
.yca{bottom:585.825000px;}
.ye5{bottom:588.885000px;}
.yb6{bottom:591.405000px;}
.y154{bottom:592.665000px;}
.y1c{bottom:594.645000px;}
.y4a{bottom:596.625000px;}
.yc2{bottom:601.665000px;}
.y17f{bottom:602.025000px;}
.ye4{bottom:608.505000px;}
.y10d{bottom:612.105000px;}
.ya8{bottom:612.465000px;}
.y1b{bottom:615.705000px;}
.y131{bottom:617.145000px;}
.y49{bottom:617.505000px;}
.y67{bottom:617.865000px;}
.yc1{bottom:622.725000px;}
.ye3{bottom:628.305000px;}
.y153{bottom:629.565000px;}
.ya7{bottom:633.345000px;}
.y1a{bottom:636.585000px;}
.y48{bottom:638.565000px;}
.y66{bottom:641.805000px;}
.y17e{bottom:643.425000px;}
.yc0{bottom:643.605000px;}
.y152{bottom:647.025000px;}
.ye2{bottom:648.105000px;}
.y130{bottom:654.045000px;}
.ya6{bottom:654.225000px;}
.y19{bottom:657.645000px;}
.y47{bottom:659.445000px;}
.ybf{bottom:664.485000px;}
.ye0{bottom:667.725000px;}
.y10a{bottom:669.705000px;}
.y17d{bottom:670.425000px;}
.y12f{bottom:674.925000px;}
.ya5{bottom:675.285000px;}
.y65{bottom:677.625000px;}
.y7e{bottom:680.325000px;}
.y150{bottom:682.845000px;}
.ybe{bottom:685.545000px;}
.ydf{bottom:687.525000px;}
.y1a1{bottom:688.425000px;}
.y18{bottom:694.365000px;}
.y12e{bottom:695.985000px;}
.y46{bottom:696.165000px;}
.y64{bottom:701.385000px;}
.y17c{bottom:706.065000px;}
.ybd{bottom:706.425000px;}
.yde{bottom:707.145000px;}
.y12d{bottom:716.865000px;}
.y45{bottom:717.225000px;}
.y14f{bottom:718.485000px;}
.y7d{bottom:722.265000px;}
.y1a0{bottom:725.145000px;}
.ydc{bottom:726.945000px;}
.ybc{bottom:727.485000px;}
.y17{bottom:728.205000px;}
.y17b{bottom:730.005000px;}
.y16{bottom:737.925000px;}
.y44{bottom:738.105000px;}
.y7c{bottom:743.325000px;}
.yda{bottom:746.565000px;}
.y109{bottom:747.465000px;}
.y12c{bottom:753.585000px;}
.y17a{bottom:753.765000px;}
.yb5{bottom:753.945000px;}
.y14e{bottom:754.305000px;}
.y15{bottom:758.625000px;}
.y43{bottom:759.165000px;}
.y19f{bottom:761.865000px;}
.y7b{bottom:764.205000px;}
.yd8{bottom:766.365000px;}
.y12b{bottom:774.645000px;}
.yb4{bottom:775.005000px;}
.y179{bottom:777.525000px;}
.y14{bottom:779.325000px;}
.y42{bottom:780.045000px;}
.y108{bottom:784.185000px;}
.y7a{bottom:785.265000px;}
.y14d{bottom:790.125000px;}
.y12a{bottom:795.525000px;}
.yb3{bottom:795.885000px;}
.y19e{bottom:798.765000px;}
.y41{bottom:800.925000px;}
.y178{bottom:801.285000px;}
.y107{bottom:805.245000px;}
.y92{bottom:806.145000px;}
.y13{bottom:806.865000px;}
.y129{bottom:816.630000px;}
.ya4{bottom:816.810000px;}
.y12{bottom:820.410000px;}
.y40{bottom:822.030000px;}
.y177{bottom:825.270000px;}
.y106{bottom:826.170000px;}
.y11{bottom:827.610000px;}
.y19d{bottom:835.530000px;}
.y63{bottom:837.870000px;}
.y3f{bottom:842.910000px;}
.y14c{bottom:845.970000px;}
.y105{bottom:847.230000px;}
.y10{bottom:848.310000px;}
.y176{bottom:849.030000px;}
.y128{bottom:853.350000px;}
.y19c{bottom:856.230000px;}
.y62{bottom:858.750000px;}
.y14b{bottom:863.430000px;}
.yba{bottom:863.970000px;}
.yf{bottom:869.010000px;}
.y127{bottom:870.810000px;}
.y175{bottom:872.790000px;}
.y19b{bottom:876.930000px;}
.y3e{bottom:879.810000px;}
.y104{bottom:883.950000px;}
.yb9{bottom:884.850000px;}
.ye{bottom:896.550000px;}
.y19a{bottom:897.630000px;}
.y149{bottom:899.250000px;}
.y126{bottom:899.610000px;}
.y3d{bottom:900.690000px;}
.y103{bottom:904.830000px;}
.yb8{bottom:905.910000px;}
.yd{bottom:916.350000px;}
.y199{bottom:918.330000px;}
.y174{bottom:920.490000px;}
.y3c{bottom:921.750000px;}
.y102{bottom:925.890000px;}
.yb7{bottom:926.790000px;}
.y124{bottom:928.230000px;}
.y148{bottom:935.070000px;}
.yb2{bottom:937.410000px;}
.y198{bottom:939.030000px;}
.y3b{bottom:942.630000px;}
.y173{bottom:944.250000px;}
.y101{bottom:946.770000px;}
.yc{bottom:947.130000px;}
.yd7{bottom:947.670000px;}
.y123{bottom:957.030000px;}
.yb1{bottom:958.470000px;}
.y197{bottom:959.730000px;}
.y3a{bottom:963.510000px;}
.y172{bottom:968.010000px;}
.yb{bottom:968.190000px;}
.yd6{bottom:968.730000px;}
.y147{bottom:970.890000px;}
.ya3{bottom:979.350000px;}
.y196{bottom:980.430000px;}
.y100{bottom:983.670000px;}
.y39{bottom:984.570000px;}
.y122{bottom:985.830000px;}
.y171{bottom:991.770000px;}
.ya2{bottom:1000.410000px;}
.yff{bottom:1001.130000px;}
.y38{bottom:1005.450000px;}
.y4{bottom:1009.770000px;}
.y120{bottom:1014.450000px;}
.y170{bottom:1015.710000px;}
.yfe{bottom:1020.750000px;}
.y61{bottom:1021.290000px;}
.y195{bottom:1021.830000px;}
.y37{bottom:1026.510000px;}
.y146{bottom:1026.690000px;}
.y16f{bottom:1039.470000px;}
.yfd{bottom:1040.550000px;}
.y60{bottom:1042.350000px;}
.y194{bottom:1042.530000px;}
.y144{bottom:1044.150000px;}
.y3{bottom:1052.070000px;}
.yfb{bottom:1060.170000px;}
.y36{bottom:1063.260000px;}
.y2{bottom:1089.180000px;}
.y1{bottom:1114.920000px;}
.ha{height:10.557422px;}
.hb{height:16.764258px;}
.he{height:18.900000px;}
.h12{height:18.936000px;}
.h10{height:19.080000px;}
.h13{height:19.116000px;}
.h16{height:27.900000px;}
.h17{height:28.080000px;}
.h9{height:33.683203px;}
.h8{height:34.036523px;}
.h1a{height:34.920000px;}
.h18{height:35.100000px;}
.h1b{height:35.136000px;}
.h1c{height:41.726953px;}
.h11{height:46.251562px;}
.hf{height:46.736719px;}
.h4{height:49.500000px;}
.h3{height:50.273438px;}
.h7{height:50.800781px;}
.hd{height:52.417969px;}
.h6{height:54.316406px;}
.hc{height:54.773438px;}
.h14{height:56.880000px;}
.h15{height:57.096000px;}
.h5{height:58.320000px;}
.h1{height:59.436914px;}
.h2{height:67.565039px;}
.h19{height:73.476000px;}
.h0{height:1188.000000px;}
.w1a{width:47.160000px;}
.w1f{width:52.200000px;}
.w11{width:54.540000px;}
.wd{width:56.520000px;}
.w1d{width:59.580000px;}
.w16{width:59.760000px;}
.w9{width:63.936000px;}
.w13{width:73.800000px;}
.wa{width:75.600000px;}
.w1e{width:78.516000px;}
.w14{width:82.656000px;}
.wb{width:83.160000px;}
.w8{width:92.700000px;}
.w15{width:94.500000px;}
.w18{width:95.940000px;}
.w4{width:97.776000px;}
.wc{width:98.496000px;}
.wf{width:106.416000px;}
.w17{width:107.856000px;}
.w1b{width:117.396000px;}
.w6{width:127.620000px;}
.w5{width:132.120000px;}
.w19{width:133.596000px;}
.w12{width:135.576000px;}
.w2{width:150.480000px;}
.w3{width:161.130000px;}
.w1c{width:217.470000px;}
.w7{width:225.930000px;}
.w10{width:236.010000px;}
.we{width:484.455000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:6.660000px;}
.x6{left:9.719986px;}
.x7{left:38.339986px;}
.x5{left:106.955986px;}
.x16{left:108.756000px;}
.x9{left:110.375986px;}
.x13{left:135.035986px;}
.x32{left:150.509986px;}
.x14{left:162.029986px;}
.x27{left:169.230000px;}
.x1{left:176.249986px;}
.x2{left:206.309986px;}
.xb{left:216.029986px;}
.xa{left:217.649986px;}
.x12{left:219.269986px;}
.x28{left:229.710000px;}
.x1a{left:237.090000px;}
.x18{left:260.130000px;}
.xd{left:276.329986px;}
.xe{left:306.074986px;}
.xc{left:321.734986px;}
.x2e{left:326.955000px;}
.x1b{left:335.595000px;}
.x29{left:338.295000px;}
.x2a{left:339.915000px;}
.x22{left:345.495000px;}
.xf{left:359.174986px;}
.x11{left:360.974986px;}
.x2b{left:387.975000px;}
.x23{left:400.935000px;}
.x8{left:423.074986px;}
.x1c{left:428.835000px;}
.x10{left:458.534986px;}
.x2f{left:484.095000px;}
.x1d{left:493.485000px;}
.x2c{left:506.085000px;}
.x19{left:520.665000px;}
.x24{left:537.225000px;}
.x30{left:563.325000px;}
.x2d{left:566.565000px;}
.x1e{left:569.805000px;}
.x21{left:594.105000px;}
.x25{left:611.745000px;}
.x31{left:616.245000px;}
.x1f{left:653.685000px;}
.x26{left:695.130000px;}
.x20{left:752.910000px;}
.x15{left:783.149986px;}
.x4{left:792.149986px;}
.x3{left:810.149986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.368533pt;}
.ls11{letter-spacing:-0.271467pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.303360pt;}
.ls2{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls14{letter-spacing:2.560000pt;}
.ls4{letter-spacing:13.440000pt;}
.ls3{letter-spacing:16.000000pt;}
.lsb{letter-spacing:30.186667pt;}
.ls0{letter-spacing:365.280000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws9{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws6{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.622933pt;}
.ws7{word-spacing:-14.448533pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-78.817067pt;}
._a{margin-left:-3.776000pt;}
._11{margin-left:-2.624000pt;}
._0{margin-left:-1.242880pt;}
._1{width:1.377067pt;}
._5{width:2.368427pt;}
._8{width:3.776000pt;}
._9{width:4.707840pt;}
._7{width:5.685760pt;}
._6{width:6.720000pt;}
._c{width:7.808000pt;}
._b{width:9.024000pt;}
._e{width:10.186027pt;}
._d{width:11.264000pt;}
._1b{width:12.224000pt;}
._14{width:13.248000pt;}
._15{width:14.336000pt;}
._12{width:17.024000pt;}
._13{width:17.984000pt;}
._19{width:19.173120pt;}
._17{width:20.506880pt;}
._f{width:21.440000pt;}
._10{width:22.528000pt;}
._16{width:23.658667pt;}
._1c{width:24.917333pt;}
._20{width:26.383147pt;}
._22{width:27.483520pt;}
._1f{width:29.248000pt;}
._1a{width:30.528000pt;}
._24{width:31.530667pt;}
._28{width:32.704000pt;}
._1d{width:33.856000pt;}
._1e{width:35.008000pt;}
._21{width:38.080000pt;}
._23{width:51.818667pt;}
._25{width:56.628907pt;}
._4{width:74.115627pt;}
._27{width:77.603840pt;}
._2{width:97.226667pt;}
._18{width:99.818667pt;}
._26{width:103.569920pt;}
.fs6{font-size:13.440000pt;}
.fs7{font-size:21.120000pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs1{font-size:72.320000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.ya{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:3.200000pt;}
.ydb{bottom:3.360000pt;}
.yfc{bottom:3.386667pt;}
.y35{bottom:5.440000pt;}
.y9{bottom:5.600000pt;}
.y33{bottom:9.600000pt;}
.y121{bottom:11.040000pt;}
.y125{bottom:11.200000pt;}
.ydd{bottom:16.800000pt;}
.ye8{bottom:16.826667pt;}
.ye1{bottom:16.960000pt;}
.y143{bottom:17.274667pt;}
.y151{bottom:17.280000pt;}
.y133{bottom:17.440000pt;}
.y145{bottom:17.466667pt;}
.y7{bottom:19.200000pt;}
.y112{bottom:20.000000pt;}
.y10c{bottom:20.160000pt;}
.y110{bottom:20.186667pt;}
.y34{bottom:28.000000pt;}
.y8{bottom:28.160000pt;}
.y14a{bottom:31.200000pt;}
.y136{bottom:34.400000pt;}
.y10b{bottom:36.960000pt;}
.y10f{bottom:37.146667pt;}
.y6{bottom:51.360000pt;}
.y135{bottom:51.520000pt;}
.y5{bottom:69.792000pt;}
.y32{bottom:104.672000pt;}
.yfa{bottom:104.832000pt;}
.y91{bottom:105.952000pt;}
.yd5{bottom:110.432000pt;}
.y5f{bottom:110.912000pt;}
.y79{bottom:111.392000pt;}
.ya1{bottom:115.392000pt;}
.y166{bottom:121.152000pt;}
.yf9{bottom:122.432000pt;}
.y31{bottom:123.232000pt;}
.y11f{bottom:124.032000pt;}
.y90{bottom:124.512000pt;}
.y142{bottom:125.312000pt;}
.y16e{bottom:125.472000pt;}
.yd4{bottom:129.152000pt;}
.y5e{bottom:129.472000pt;}
.y78{bottom:129.952000pt;}
.y193{bottom:130.272000pt;}
.ya0{bottom:134.106667pt;}
.yf8{bottom:139.866667pt;}
.y11e{bottom:142.746667pt;}
.y8f{bottom:143.226667pt;}
.y16d{bottom:146.586667pt;}
.yd3{bottom:147.706667pt;}
.y5d{bottom:148.186667pt;}
.y77{bottom:148.506667pt;}
.y192{bottom:148.666667pt;}
.y9f{bottom:152.666667pt;}
.y165{bottom:153.786667pt;}
.y30{bottom:156.026667pt;}
.y11d{bottom:161.306667pt;}
.y8e{bottom:161.786667pt;}
.yb0{bottom:162.266667pt;}
.y5c{bottom:166.746667pt;}
.y191{bottom:167.066667pt;}
.y76{bottom:167.226667pt;}
.y16c{bottom:167.866667pt;}
.ybb{bottom:171.386667pt;}
.y164{bottom:172.506667pt;}
.y2f{bottom:174.586667pt;}
.y141{bottom:174.906667pt;}
.yf7{bottom:175.226667pt;}
.y11c{bottom:180.026667pt;}
.y8d{bottom:180.506667pt;}
.yaf{bottom:180.826667pt;}
.y5b{bottom:185.466667pt;}
.y75{bottom:185.786667pt;}
.y16b{bottom:188.986667pt;}
.y163{bottom:191.066667pt;}
.y2e{bottom:193.306667pt;}
.y11b{bottom:198.586667pt;}
.y8c{bottom:199.066667pt;}
.yae{bottom:199.386667pt;}
.y190{bottom:203.866667pt;}
.y5a{bottom:204.026667pt;}
.y74{bottom:204.506667pt;}
.y140{bottom:207.546667pt;}
.yf6{bottom:207.866667pt;}
.y162{bottom:209.786667pt;}
.y16a{bottom:210.106667pt;}
.y2d{bottom:211.866667pt;}
.yd2{bottom:213.146667pt;}
.y11a{bottom:217.146667pt;}
.y8b{bottom:217.786667pt;}
.yad{bottom:218.106667pt;}
.y18f{bottom:222.266667pt;}
.y9e{bottom:222.586667pt;}
.y73{bottom:223.066667pt;}
.yf5{bottom:226.586667pt;}
.y161{bottom:228.346667pt;}
.y2c{bottom:230.426667pt;}
.y169{bottom:231.226667pt;}
.yd1{bottom:231.706667pt;}
.y119{bottom:235.866667pt;}
.y8a{bottom:236.346667pt;}
.y59{bottom:236.666667pt;}
.y13f{bottom:240.346667pt;}
.y18e{bottom:240.666667pt;}
.y9d{bottom:241.306667pt;}
.y72{bottom:241.786667pt;}
.yf4{bottom:245.146667pt;}
.y160{bottom:247.066667pt;}
.y2b{bottom:249.146667pt;}
.yd0{bottom:250.426667pt;}
.y168{bottom:252.506667pt;}
.y58{bottom:255.386667pt;}
.y13e{bottom:258.906667pt;}
.y18d{bottom:259.066667pt;}
.y9c{bottom:259.866667pt;}
.y71{bottom:260.346667pt;}
.yf3{bottom:263.866667pt;}
.y2a{bottom:267.706667pt;}
.y118{bottom:268.506667pt;}
.y89{bottom:268.986667pt;}
.y167{bottom:273.626667pt;}
.y57{bottom:273.946667pt;}
.y13d{bottom:277.506667pt;}
.y9b{bottom:278.626667pt;}
.y15f{bottom:279.746667pt;}
.y29{bottom:286.466667pt;}
.y117{bottom:287.266667pt;}
.ycf{bottom:287.746667pt;}
.y56{bottom:292.706667pt;}
.y70{bottom:293.026667pt;}
.y18c{bottom:295.906667pt;}
.y13c{bottom:296.226667pt;}
.yf2{bottom:296.546667pt;}
.y9a{bottom:297.186667pt;}
.y88{bottom:301.826667pt;}
.y28{bottom:305.026667pt;}
.y116{bottom:305.826667pt;}
.yce{bottom:306.306667pt;}
.y55{bottom:311.266667pt;}
.y15e{bottom:312.386667pt;}
.y18b{bottom:314.306667pt;}
.yf1{bottom:315.106667pt;}
.y99{bottom:315.906667pt;}
.yc9{bottom:320.386667pt;}
.y27{bottom:323.746667pt;}
.y115{bottom:324.546667pt;}
.ycd{bottom:325.026667pt;}
.y6f{bottom:325.826667pt;}
.y13b{bottom:328.866667pt;}
.y54{bottom:329.826667pt;}
.y15d{bottom:331.106667pt;}
.y18a{bottom:332.706667pt;}
.yf0{bottom:333.826667pt;}
.y87{bottom:334.466667pt;}
.yc8{bottom:338.946667pt;}
.y26{bottom:342.306667pt;}
.ycc{bottom:343.586667pt;}
.yac{bottom:343.906667pt;}
.y13a{bottom:347.586667pt;}
.y53{bottom:348.546667pt;}
.y15c{bottom:349.666667pt;}
.y189{bottom:351.106667pt;}
.yef{bottom:352.386667pt;}
.y86{bottom:353.026667pt;}
.y114{bottom:357.186667pt;}
.yc7{bottom:357.666667pt;}
.y6e{bottom:358.466667pt;}
.y25{bottom:360.866667pt;}
.yab{bottom:362.626667pt;}
.y139{bottom:366.146667pt;}
.y52{bottom:367.106667pt;}
.y15b{bottom:368.386667pt;}
.y188{bottom:369.506667pt;}
.y85{bottom:371.746667pt;}
.y113{bottom:372.706667pt;}
.yc6{bottom:376.226667pt;}
.y24{bottom:379.586667pt;}
.yaa{bottom:381.186667pt;}
.y138{bottom:384.866667pt;}
.yee{bottom:385.186667pt;}
.y51{bottom:385.826667pt;}
.y15a{bottom:386.946667pt;}
.y187{bottom:387.906667pt;}
.y6d{bottom:390.306667pt;}
.yc5{bottom:394.946667pt;}
.y23{bottom:398.146667pt;}
.ya9{bottom:399.906667pt;}
.yed{bottom:400.706667pt;}
.y98{bottom:404.386667pt;}
.y186{bottom:406.306667pt;}
.y84{bottom:409.026667pt;}
.y6c{bottom:411.426667pt;}
.yc4{bottom:413.506667pt;}
.y22{bottom:416.866667pt;}
.y137{bottom:417.506667pt;}
.yec{bottom:418.146667pt;}
.y50{bottom:418.466667pt;}
.y159{bottom:419.586667pt;}
.y97{bottom:423.106667pt;}
.y185{bottom:424.706667pt;}
.y83{bottom:427.586667pt;}
.yc3{bottom:432.226667pt;}
.y134{bottom:433.026667pt;}
.y21{bottom:435.426667pt;}
.yeb{bottom:435.746667pt;}
.y4f{bottom:437.186667pt;}
.y158{bottom:438.306667pt;}
.y111{bottom:441.506667pt;}
.y96{bottom:441.666667pt;}
.y184{bottom:443.106667pt;}
.y6b{bottom:443.266667pt;}
.y82{bottom:446.306667pt;}
.yea{bottom:453.346667pt;}
.y20{bottom:454.146667pt;}
.y4e{bottom:455.746667pt;}
.y157{bottom:456.866667pt;}
.y95{bottom:460.226667pt;}
.y183{bottom:461.506667pt;}
.y6a{bottom:464.386667pt;}
.y81{bottom:464.866667pt;}
.ye9{bottom:470.786667pt;}
.y1f{bottom:472.706667pt;}
.y4d{bottom:474.306667pt;}
.y156{bottom:475.586667pt;}
.y94{bottom:478.946667pt;}
.y182{bottom:479.906667pt;}
.y80{bottom:483.426667pt;}
.ye7{bottom:488.386667pt;}
.y1e{bottom:491.266667pt;}
.y10e{bottom:492.706667pt;}
.y4c{bottom:493.026667pt;}
.y155{bottom:494.146667pt;}
.y69{bottom:496.226667pt;}
.y93{bottom:497.506667pt;}
.y181{bottom:498.333333pt;}
.y132{bottom:498.973333pt;}
.ycb{bottom:502.173333pt;}
.ye6{bottom:505.853333pt;}
.y1d{bottom:510.013333pt;}
.y4b{bottom:511.613333pt;}
.y7f{bottom:516.253333pt;}
.y180{bottom:516.733333pt;}
.y68{bottom:517.533333pt;}
.yca{bottom:520.733333pt;}
.ye5{bottom:523.453333pt;}
.yb6{bottom:525.693333pt;}
.y154{bottom:526.813333pt;}
.y1c{bottom:528.573333pt;}
.y4a{bottom:530.333333pt;}
.yc2{bottom:534.813333pt;}
.y17f{bottom:535.133333pt;}
.ye4{bottom:540.893333pt;}
.y10d{bottom:544.093333pt;}
.ya8{bottom:544.413333pt;}
.y1b{bottom:547.293333pt;}
.y131{bottom:548.573333pt;}
.y49{bottom:548.893333pt;}
.y67{bottom:549.213333pt;}
.yc1{bottom:553.533333pt;}
.ye3{bottom:558.493333pt;}
.y153{bottom:559.613333pt;}
.ya7{bottom:562.973333pt;}
.y1a{bottom:565.853333pt;}
.y48{bottom:567.613333pt;}
.y66{bottom:570.493333pt;}
.y17e{bottom:571.933333pt;}
.yc0{bottom:572.093333pt;}
.y152{bottom:575.133333pt;}
.ye2{bottom:576.093333pt;}
.y130{bottom:581.373333pt;}
.ya6{bottom:581.533333pt;}
.y19{bottom:584.573333pt;}
.y47{bottom:586.173333pt;}
.ybf{bottom:590.653333pt;}
.ye0{bottom:593.533333pt;}
.y10a{bottom:595.293333pt;}
.y17d{bottom:595.933333pt;}
.y12f{bottom:599.933333pt;}
.ya5{bottom:600.253333pt;}
.y65{bottom:602.333333pt;}
.y7e{bottom:604.733333pt;}
.y150{bottom:606.973333pt;}
.ybe{bottom:609.373333pt;}
.ydf{bottom:611.133333pt;}
.y1a1{bottom:611.933333pt;}
.y18{bottom:617.213333pt;}
.y12e{bottom:618.653333pt;}
.y46{bottom:618.813333pt;}
.y64{bottom:623.453333pt;}
.y17c{bottom:627.613333pt;}
.ybd{bottom:627.933333pt;}
.yde{bottom:628.573333pt;}
.y12d{bottom:637.213333pt;}
.y45{bottom:637.533333pt;}
.y14f{bottom:638.653333pt;}
.y7d{bottom:642.013333pt;}
.y1a0{bottom:644.573333pt;}
.ydc{bottom:646.173333pt;}
.ybc{bottom:646.653333pt;}
.y17{bottom:647.293333pt;}
.y17b{bottom:648.893333pt;}
.y16{bottom:655.933333pt;}
.y44{bottom:656.093333pt;}
.y7c{bottom:660.733333pt;}
.yda{bottom:663.613333pt;}
.y109{bottom:664.413333pt;}
.y12c{bottom:669.853333pt;}
.y17a{bottom:670.013333pt;}
.yb5{bottom:670.173333pt;}
.y14e{bottom:670.493333pt;}
.y15{bottom:674.333333pt;}
.y43{bottom:674.813333pt;}
.y19f{bottom:677.213333pt;}
.y7b{bottom:679.293333pt;}
.yd8{bottom:681.213333pt;}
.y12b{bottom:688.573333pt;}
.yb4{bottom:688.893333pt;}
.y179{bottom:691.133333pt;}
.y14{bottom:692.733333pt;}
.y42{bottom:693.373333pt;}
.y108{bottom:697.053333pt;}
.y7a{bottom:698.013333pt;}
.y14d{bottom:702.333333pt;}
.y12a{bottom:707.133333pt;}
.yb3{bottom:707.453333pt;}
.y19e{bottom:710.013333pt;}
.y41{bottom:711.933333pt;}
.y178{bottom:712.253333pt;}
.y107{bottom:715.773333pt;}
.y92{bottom:716.573333pt;}
.y13{bottom:717.213333pt;}
.y129{bottom:725.893333pt;}
.ya4{bottom:726.053333pt;}
.y12{bottom:729.253333pt;}
.y40{bottom:730.693333pt;}
.y177{bottom:733.573333pt;}
.y106{bottom:734.373333pt;}
.y11{bottom:735.653333pt;}
.y19d{bottom:742.693333pt;}
.y63{bottom:744.773333pt;}
.y3f{bottom:749.253333pt;}
.y14c{bottom:751.973333pt;}
.y105{bottom:753.093333pt;}
.y10{bottom:754.053333pt;}
.y176{bottom:754.693333pt;}
.y128{bottom:758.533333pt;}
.y19c{bottom:761.093333pt;}
.y62{bottom:763.333333pt;}
.y14b{bottom:767.493333pt;}
.yba{bottom:767.973333pt;}
.yf{bottom:772.453333pt;}
.y127{bottom:774.053333pt;}
.y175{bottom:775.813333pt;}
.y19b{bottom:779.493333pt;}
.y3e{bottom:782.053333pt;}
.y104{bottom:785.733333pt;}
.yb9{bottom:786.533333pt;}
.ye{bottom:796.933333pt;}
.y19a{bottom:797.893333pt;}
.y149{bottom:799.333333pt;}
.y126{bottom:799.653333pt;}
.y3d{bottom:800.613333pt;}
.y103{bottom:804.293333pt;}
.yb8{bottom:805.253333pt;}
.yd{bottom:814.533333pt;}
.y199{bottom:816.293333pt;}
.y174{bottom:818.213333pt;}
.y3c{bottom:819.333333pt;}
.y102{bottom:823.013333pt;}
.yb7{bottom:823.813333pt;}
.y124{bottom:825.093333pt;}
.y148{bottom:831.173333pt;}
.yb2{bottom:833.253333pt;}
.y198{bottom:834.693333pt;}
.y3b{bottom:837.893333pt;}
.y173{bottom:839.333333pt;}
.y101{bottom:841.573333pt;}
.yc{bottom:841.893333pt;}
.yd7{bottom:842.373333pt;}
.y123{bottom:850.693333pt;}
.yb1{bottom:851.973333pt;}
.y197{bottom:853.093333pt;}
.y3a{bottom:856.453333pt;}
.y172{bottom:860.453333pt;}
.yb{bottom:860.613333pt;}
.yd6{bottom:861.093333pt;}
.y147{bottom:863.013333pt;}
.ya3{bottom:870.533333pt;}
.y196{bottom:871.493333pt;}
.y100{bottom:874.373333pt;}
.y39{bottom:875.173333pt;}
.y122{bottom:876.293333pt;}
.y171{bottom:881.573333pt;}
.ya2{bottom:889.253333pt;}
.yff{bottom:889.893333pt;}
.y38{bottom:893.733333pt;}
.y4{bottom:897.573333pt;}
.y120{bottom:901.733333pt;}
.y170{bottom:902.853333pt;}
.yfe{bottom:907.333333pt;}
.y61{bottom:907.813333pt;}
.y195{bottom:908.293333pt;}
.y37{bottom:912.453333pt;}
.y146{bottom:912.613333pt;}
.y16f{bottom:923.973333pt;}
.yfd{bottom:924.933333pt;}
.y60{bottom:926.533333pt;}
.y194{bottom:926.693333pt;}
.y144{bottom:928.133333pt;}
.y3{bottom:935.173333pt;}
.yfb{bottom:942.373333pt;}
.y36{bottom:945.120000pt;}
.y2{bottom:968.160000pt;}
.y1{bottom:991.040000pt;}
.ha{height:9.384375pt;}
.hb{height:14.901562pt;}
.he{height:16.800000pt;}
.h12{height:16.832000pt;}
.h10{height:16.960000pt;}
.h13{height:16.992000pt;}
.h16{height:24.800000pt;}
.h17{height:24.960000pt;}
.h9{height:29.940625pt;}
.h8{height:30.254687pt;}
.h1a{height:31.040000pt;}
.h18{height:31.200000pt;}
.h1b{height:31.232000pt;}
.h1c{height:37.090625pt;}
.h11{height:41.112500pt;}
.hf{height:41.543750pt;}
.h4{height:44.000000pt;}
.h3{height:44.687500pt;}
.h7{height:45.156250pt;}
.hd{height:46.593750pt;}
.h6{height:48.281250pt;}
.hc{height:48.687500pt;}
.h14{height:50.560000pt;}
.h15{height:50.752000pt;}
.h5{height:51.840000pt;}
.h1{height:52.832812pt;}
.h2{height:60.057813pt;}
.h19{height:65.312000pt;}
.h0{height:1056.000000pt;}
.w1a{width:41.920000pt;}
.w1f{width:46.400000pt;}
.w11{width:48.480000pt;}
.wd{width:50.240000pt;}
.w1d{width:52.960000pt;}
.w16{width:53.120000pt;}
.w9{width:56.832000pt;}
.w13{width:65.600000pt;}
.wa{width:67.200000pt;}
.w1e{width:69.792000pt;}
.w14{width:73.472000pt;}
.wb{width:73.920000pt;}
.w8{width:82.400000pt;}
.w15{width:84.000000pt;}
.w18{width:85.280000pt;}
.w4{width:86.912000pt;}
.wc{width:87.552000pt;}
.wf{width:94.592000pt;}
.w17{width:95.872000pt;}
.w1b{width:104.352000pt;}
.w6{width:113.440000pt;}
.w5{width:117.440000pt;}
.w19{width:118.752000pt;}
.w12{width:120.512000pt;}
.w2{width:133.760000pt;}
.w3{width:143.226667pt;}
.w1c{width:193.306667pt;}
.w7{width:200.826667pt;}
.w10{width:209.786667pt;}
.we{width:430.626667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:5.920000pt;}
.x6{left:8.639988pt;}
.x7{left:34.079988pt;}
.x5{left:95.071988pt;}
.x16{left:96.672000pt;}
.x9{left:98.111988pt;}
.x13{left:120.031988pt;}
.x32{left:133.786655pt;}
.x14{left:144.026655pt;}
.x27{left:150.426667pt;}
.x1{left:156.666655pt;}
.x2{left:183.386655pt;}
.xb{left:192.026655pt;}
.xa{left:193.466655pt;}
.x12{left:194.906655pt;}
.x28{left:204.186667pt;}
.x1a{left:210.746667pt;}
.x18{left:231.226667pt;}
.xd{left:245.626655pt;}
.xe{left:272.066655pt;}
.xc{left:285.986655pt;}
.x2e{left:290.626667pt;}
.x1b{left:298.306667pt;}
.x29{left:300.706667pt;}
.x2a{left:302.146667pt;}
.x22{left:307.106667pt;}
.xf{left:319.266655pt;}
.x11{left:320.866655pt;}
.x2b{left:344.866667pt;}
.x23{left:356.386667pt;}
.x8{left:376.066655pt;}
.x1c{left:381.186667pt;}
.x10{left:407.586655pt;}
.x2f{left:430.306667pt;}
.x1d{left:438.653333pt;}
.x2c{left:449.853333pt;}
.x19{left:462.813333pt;}
.x24{left:477.533333pt;}
.x30{left:500.733333pt;}
.x2d{left:503.613333pt;}
.x1e{left:506.493333pt;}
.x21{left:528.093333pt;}
.x25{left:543.773333pt;}
.x31{left:547.773333pt;}
.x1f{left:581.053333pt;}
.x26{left:617.893333pt;}
.x20{left:669.253333pt;}
.x15{left:696.133321pt;}
.x4{left:704.133321pt;}
.x3{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; }
  