
    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_96c76a76810f79918e8f544b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_9c30a4c50007baa6c452b565.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_a7aa8f3d8671a5bd2a1f2f25.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d80f7dc8490ce005a8da389d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_f7705bcb5dc52fbe8f0181bd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_1b43f705fb2edff41d5a8d8b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.052734;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_904823069206b0b35617e0ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_a1700a0c5079723bca42f7ae.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_be3e274c669553c18090a3c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940918;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:ffa;src:url('chunks/assets/font_8fb45c11775e09053056531d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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:ffb;src:url('chunks/assets/font_f865d495d016a8175eeb5b8a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.053223;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);}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-0.864000px;}
.ls13{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.463800px;}
.ls20{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.187200px;}
.ls10{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.097800px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012960px;}
.lsf{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.105120px;}
.ls18{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.190200px;}
.lsb{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.229200px;}
.lsa{letter-spacing:0.256200px;}
.ls12{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.360000px;}
.lse{letter-spacing:0.479520px;}
.ls8{letter-spacing:0.532800px;}
.ls1{letter-spacing:0.622080px;}
.ls1e{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.732000px;}
.ls1a{letter-spacing:1.080000px;}
.ls15{letter-spacing:3.497760px;}
.ls14{letter-spacing:4.217760px;}
.ls1d{letter-spacing:4.425120px;}
.ls11{letter-spacing:4.608000px;}
.ls1b{letter-spacing:8.745120px;}
.ls1c{letter-spacing:16.665120px;}
.ls17{letter-spacing:24.585120px;}
.ls1f{letter-spacing:32.688000px;}
.lsd{letter-spacing:33.240000px;}
.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:-21.296400px;}
.ws3{word-spacing:-21.257400px;}
.ws2{word-spacing:-21.067200px;}
.ws11{word-spacing:-16.632000px;}
.wsb{word-spacing:-16.488000px;}
.wsd{word-spacing:-16.416000px;}
.wsc{word-spacing:-16.344000px;}
.ws5{word-spacing:-16.272000px;}
.ws10{word-spacing:-16.056000px;}
.wse{word-spacing:-15.768000px;}
.ws8{word-spacing:-15.226440px;}
.ws7{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.506440px;}
.ws1{word-spacing:-13.879200px;}
.wsf{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.160160px;}
.ws0{word-spacing:-13.049400px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-1.059840px;}
._0{width:1.075680px;}
._1{width:2.492400px;}
._3{width:4.392000px;}
._e{width:5.688000px;}
._d{width:6.768000px;}
._7{width:8.568000px;}
._9{width:9.627840px;}
._8{width:10.788000px;}
._c{width:11.952000px;}
._a{width:13.896000px;}
._b{width:15.171840px;}
._6{width:17.648640px;}
._5{width:19.224000px;}
._4{width:20.376000px;}
._11{width:21.384000px;}
._17{width:22.608000px;}
._16{width:23.976000px;}
._12{width:25.200000px;}
._13{width:26.284320px;}
._18{width:28.080000px;}
._1c{width:29.344320px;}
._15{width:31.063680px;}
._14{width:32.616000px;}
._19{width:33.736320px;}
._1b{width:36.216000px;}
._1a{width:37.224000px;}
._20{width:38.540160px;}
._10{width:39.579840px;}
._f{width:40.824000px;}
._1e{width:46.779840px;}
._1d{width:48.024000px;}
._1f{width:50.572320px;}
._22{width:54.984000px;}
._21{width:102.396000px;}
._24{width:108.216000px;}
._23{width:109.512000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:7.380000px;}
.y5{bottom:56.196000px;}
.y4{bottom:73.836000px;}
.y35{bottom:110.196000px;}
.y72{bottom:114.336000px;}
.ye6{bottom:126.576000px;}
.y34{bottom:128.556000px;}
.yce{bottom:129.276000px;}
.y33{bottom:136.116000px;}
.y122{bottom:136.836000px;}
.y58{bottom:137.196000px;}
.y9f{bottom:138.096000px;}
.y89{bottom:141.156000px;}
.yfd{bottom:141.516000px;}
.ybb{bottom:146.916000px;}
.y32{bottom:147.276000px;}
.y15d{bottom:153.030000px;}
.y101{bottom:159.150000px;}
.ye5{bottom:159.510000px;}
.ycd{bottom:162.210000px;}
.y112{bottom:164.730000px;}
.yba{bottom:165.090000px;}
.y121{bottom:169.950000px;}
.y57{bottom:170.130000px;}
.y9e{bottom:171.210000px;}
.yb9{bottom:172.650000px;}
.y88{bottom:174.090000px;}
.yd8{bottom:174.270000px;}
.yfc{bottom:174.450000px;}
.y15c{bottom:178.230000px;}
.y71{bottom:180.210000px;}
.y12b{bottom:183.450000px;}
.yb8{bottom:183.810000px;}
.y13f{bottom:184.890000px;}
.y31{bottom:187.950000px;}
.y12a{bottom:191.010000px;}
.y100{bottom:192.090000px;}
.ye4{bottom:192.450000px;}
.ycc{bottom:195.150000px;}
.y111{bottom:197.670000px;}
.y173{bottom:198.030000px;}
.y129{bottom:201.810000px;}
.y56{bottom:203.070000px;}
.y9d{bottom:204.150000px;}
.y87{bottom:207.210000px;}
.yfb{bottom:207.570000px;}
.y30{bottom:209.910000px;}
.y120{bottom:212.970000px;}
.y70{bottom:213.150000px;}
.y15b{bottom:218.550000px;}
.y128{bottom:220.170000px;}
.y172{bottom:223.230000px;}
.y13e{bottom:225.030000px;}
.yd7{bottom:225.210000px;}
.y127{bottom:227.730000px;}
.ycb{bottom:228.090000px;}
.y110{bottom:230.610000px;}
.y2f{bottom:231.870000px;}
.y55{bottom:236.190000px;}
.y11f{bottom:238.350000px;}
.y126{bottom:238.890000px;}
.y86{bottom:240.150000px;}
.ye3{bottom:243.390000px;}
.y15a{bottom:243.750000px;}
.y134{bottom:245.910000px;}
.y6f{bottom:246.270000px;}
.yb7{bottom:251.490000px;}
.y2e{bottom:253.830000px;}
.y9c{bottom:255.090000px;}
.y133{bottom:257.070000px;}
.yd6{bottom:258.150000px;}
.yfa{bottom:258.330000px;}
.yca{bottom:261.030000px;}
.y10f{bottom:263.550000px;}
.y54{bottom:269.130000px;}
.y13d{bottom:273.135000px;}
.y2d{bottom:275.835000px;}
.y159{bottom:284.115000px;}
.yb6{bottom:284.475000px;}
.y9b{bottom:288.075000px;}
.y171{bottom:288.795000px;}
.y11e{bottom:288.975000px;}
.y85{bottom:291.135000px;}
.yf9{bottom:291.315000px;}
.yc9{bottom:294.015000px;}
.ye2{bottom:294.375000px;}
.y10e{bottom:296.535000px;}
.y6e{bottom:297.075000px;}
.y2c{bottom:297.795000px;}
.y53{bottom:302.115000px;}
.y13c{bottom:306.075000px;}
.y158{bottom:309.315000px;}
.y11d{bottom:314.175000px;}
.y2b{bottom:319.755000px;}
.y9a{bottom:321.015000px;}
.y84{bottom:324.075000px;}
.yf8{bottom:324.255000px;}
.y18c{bottom:326.415000px;}
.yc8{bottom:327.135000px;}
.y10d{bottom:329.475000px;}
.y6d{bottom:330.015000px;}
.yb5{bottom:332.535000px;}
.y52{bottom:335.055000px;}
.ye1{bottom:337.575000px;}
.y132{bottom:339.015000px;}
.y11c{bottom:339.375000px;}
.y2a{bottom:341.715000px;}
.y117{bottom:342.075000px;}
.y18b{bottom:348.375000px;}
.y157{bottom:349.635000px;}
.y99{bottom:353.955000px;}
.y170{bottom:354.315000px;}
.y83{bottom:357.015000px;}
.yf7{bottom:357.195000px;}
.yc7{bottom:360.075000px;}
.y10c{bottom:362.415000px;}
.y6c{bottom:362.955000px;}
.y29{bottom:363.675000px;}
.y11b{bottom:364.755000px;}
.yb4{bottom:365.475000px;}
.y51{bottom:367.995000px;}
.y18a{bottom:370.335000px;}
.y131{bottom:371.955000px;}
.y156{bottom:374.835000px;}
.y116{bottom:375.015000px;}
.y16f{bottom:379.695000px;}
.y28{bottom:385.635000px;}
.y98{bottom:387.075000px;}
.ye0{bottom:388.155000px;}
.y82{bottom:389.955000px;}
.yf6{bottom:390.135000px;}
.y189{bottom:392.295000px;}
.yc6{bottom:393.015000px;}
.y10b{bottom:395.535000px;}
.y6b{bottom:395.895000px;}
.y50{bottom:400.935000px;}
.y130{bottom:404.895000px;}
.y27{bottom:407.595000px;}
.y115{bottom:407.955000px;}
.yb3{bottom:413.355000px;}
.ydf{bottom:413.535000px;}
.y188{bottom:414.255000px;}
.y155{bottom:415.155000px;}
.y16e{bottom:419.835000px;}
.y81{bottom:422.895000px;}
.yf5{bottom:423.255000px;}
.yc5{bottom:425.955000px;}
.y10a{bottom:428.475000px;}
.y26{bottom:429.555000px;}
.y4f{bottom:433.875000px;}
.y187{bottom:436.215000px;}
.y97{bottom:437.835000px;}
.y12f{bottom:438.015000px;}
.yde{bottom:438.735000px;}
.y154{bottom:440.535000px;}
.yff{bottom:440.895000px;}
.y6a{bottom:443.955000px;}
.y16d{bottom:445.215000px;}
.yb2{bottom:446.295000px;}
.y25{bottom:451.515000px;}
.yd5{bottom:455.835000px;}
.y80{bottom:456.015000px;}
.yf4{bottom:456.195000px;}
.y186{bottom:458.175000px;}
.yc4{bottom:458.895000px;}
.y109{bottom:461.415000px;}
.ydd{bottom:463.935000px;}
.y153{bottom:465.735000px;}
.y4e{bottom:466.995000px;}
.y96{bottom:470.775000px;}
.y13b{bottom:470.955000px;}
.y24{bottom:473.655000px;}
.y114{bottom:473.835000px;}
.y69{bottom:476.895000px;}
.y16c{bottom:485.535000px;}
.yd4{bottom:488.775000px;}
.yf3{bottom:489.135000px;}
.ydc{bottom:489.315000px;}
.yc3{bottom:491.835000px;}
.yb1{bottom:494.355000px;}
.y23{bottom:495.615000px;}
.y95{bottom:503.715000px;}
.y152{bottom:506.055000px;}
.y7f{bottom:506.775000px;}
.y185{bottom:509.295000px;}
.y68{bottom:509.835000px;}
.y16b{bottom:510.735000px;}
.ydb{bottom:514.515000px;}
.y22{bottom:517.575000px;}
.y4d{bottom:517.755000px;}
.y13a{bottom:521.715000px;}
.yd3{bottom:521.895000px;}
.yf2{bottom:522.255000px;}
.yc2{bottom:524.775000px;}
.yb0{bottom:527.295000px;}
.y184{bottom:531.255000px;}
.y94{bottom:536.835000px;}
.y21{bottom:539.535000px;}
.y7e{bottom:539.715000px;}
.y67{bottom:542.775000px;}
.y151{bottom:546.195000px;}
.y12e{bottom:547.995000px;}
.y4c{bottom:550.875000px;}
.y16a{bottom:551.055000px;}
.y183{bottom:553.215000px;}
.y139{bottom:554.835000px;}
.yc1{bottom:557.745000px;}
.yaf{bottom:560.265000px;}
.y20{bottom:561.525000px;}
.yf1{bottom:565.305000px;}
.y93{bottom:569.805000px;}
.y150{bottom:571.605000px;}
.y7d{bottom:572.865000px;}
.y182{bottom:575.205000px;}
.y66{bottom:575.745000px;}
.y169{bottom:576.285000px;}
.y1f{bottom:583.485000px;}
.y4b{bottom:583.845000px;}
.y138{bottom:587.805000px;}
.yc0{bottom:590.685000px;}
.yda{bottom:590.865000px;}
.yae{bottom:593.385000px;}
.y181{bottom:597.165000px;}
.y168{bottom:601.485000px;}
.y92{bottom:602.745000px;}
.y1e{bottom:605.445000px;}
.y7c{bottom:605.805000px;}
.y65{bottom:608.685000px;}
.y14f{bottom:611.745000px;}
.yf0{bottom:615.885000px;}
.y4a{bottom:616.785000px;}
.y180{bottom:619.125000px;}
.y137{bottom:620.745000px;}
.ybf{bottom:623.805000px;}
.y1d{bottom:627.405000px;}
.y91{bottom:635.685000px;}
.y108{bottom:636.585000px;}
.y14e{bottom:637.125000px;}
.y7b{bottom:638.745000px;}
.yef{bottom:641.085000px;}
.y64{bottom:641.625000px;}
.y167{bottom:641.805000px;}
.yad{bottom:644.145000px;}
.y125{bottom:647.025000px;}
.y1c{bottom:649.365000px;}
.y49{bottom:649.725000px;}
.yd9{bottom:656.745000px;}
.y107{bottom:661.785000px;}
.y17f{bottom:663.045000px;}
.yee{bottom:666.285000px;}
.y166{bottom:667.185000px;}
.y90{bottom:668.805000px;}
.y1b{bottom:671.325000px;}
.y7a{bottom:671.685000px;}
.y12d{bottom:671.865000px;}
.y63{bottom:674.745000px;}
.yac{bottom:677.085000px;}
.y14d{bottom:677.445000px;}
.y48{bottom:682.665000px;}
.y17e{bottom:685.005000px;}
.y106{bottom:686.985000px;}
.y11a{bottom:689.685000px;}
.yfe{bottom:689.865000px;}
.y165{bottom:692.385000px;}
.y1a{bottom:693.285000px;}
.y14c{bottom:702.645000px;}
.y79{bottom:704.625000px;}
.y124{bottom:704.805000px;}
.y17d{bottom:706.965000px;}
.y62{bottom:707.685000px;}
.yab{bottom:710.205000px;}
.y105{bottom:712.365000px;}
.y19{bottom:715.245000px;}
.y47{bottom:715.785000px;}
.yed{bottom:717.405000px;}
.y8f{bottom:719.565000px;}
.y119{bottom:722.625000px;}
.y17c{bottom:728.925000px;}
.y164{bottom:732.705000px;}
.y18{bottom:737.205000px;}
.y104{bottom:737.565000px;}
.y78{bottom:737.745000px;}
.y61{bottom:740.625000px;}
.y14b{bottom:742.965000px;}
.yaa{bottom:743.145000px;}
.yec{bottom:750.525000px;}
.y17b{bottom:750.885000px;}
.y118{bottom:755.565000px;}
.y17{bottom:759.165000px;}
.y46{bottom:766.545000px;}
.y14a{bottom:768.165000px;}
.y8e{bottom:770.505000px;}
.y113{bottom:770.685000px;}
.y163{bottom:772.845000px;}
.y60{bottom:773.565000px;}
.ya9{bottom:776.085000px;}
.y16{bottom:781.125000px;}
.y77{bottom:788.505000px;}
.yeb{bottom:793.545000px;}
.y162{bottom:798.225000px;}
.y15{bottom:803.265000px;}
.y8d{bottom:803.445000px;}
.y45{bottom:806.505000px;}
.y149{bottom:808.485000px;}
.ya7{bottom:809.025000px;}
.y17a{bottom:813.165000px;}
.ya8{bottom:817.305000px;}
.yea{bottom:818.925000px;}
.yd2{bottom:821.445000px;}
.y14{bottom:825.225000px;}
.y44{bottom:828.465000px;}
.y8c{bottom:836.385000px;}
.y161{bottom:838.365000px;}
.y5f{bottom:839.490000px;}
.ya6{bottom:842.010000px;}
.ye9{bottom:844.170000px;}
.y13{bottom:847.050000px;}
.y148{bottom:848.670000px;}
.y43{bottom:850.470000px;}
.yd1{bottom:854.430000px;}
.y103{bottom:854.610000px;}
.y160{bottom:863.790000px;}
.y12{bottom:867.030000px;}
.ye8{bottom:869.370000px;}
.y8b{bottom:869.550000px;}
.y42{bottom:872.430000px;}
.ya5{bottom:874.950000px;}
.y179{bottom:878.730000px;}
.y11{bottom:887.190000px;}
.yd0{bottom:887.550000px;}
.y147{bottom:888.990000px;}
.y41{bottom:894.390000px;}
.y136{bottom:902.490000px;}
.y178{bottom:904.110000px;}
.ybe{bottom:905.370000px;}
.y76{bottom:905.550000px;}
.y10{bottom:907.530000px;}
.ya4{bottom:908.070000px;}
.y146{bottom:914.370000px;}
.y40{bottom:916.530000px;}
.y8a{bottom:920.310000px;}
.y5e{bottom:920.490000px;}
.y177{bottom:929.310000px;}
.yf{bottom:929.490000px;}
.y135{bottom:935.430000px;}
.y3f{bottom:938.490000px;}
.y15f{bottom:939.570000px;}
.y123{bottom:946.770000px;}
.ya3{bottom:951.270000px;}
.yd{bottom:951.630000px;}
.y5d{bottom:953.430000px;}
.y145{bottom:954.510000px;}
.ye{bottom:959.910000px;}
.y3e{bottom:960.450000px;}
.y176{bottom:969.630000px;}
.y75{bottom:971.430000px;}
.yc{bottom:973.590000px;}
.ya2{bottom:976.470000px;}
.y144{bottom:979.890000px;}
.y3d{bottom:982.410000px;}
.y5c{bottom:986.370000px;}
.ybd{bottom:989.430000px;}
.y175{bottom:994.830000px;}
.yb{bottom:995.550000px;}
.ya1{bottom:1001.670000px;}
.y3c{bottom:1004.370000px;}
.y143{bottom:1005.090000px;}
.ya{bottom:1018.050000px;}
.y5b{bottom:1019.310000px;}
.ycf{bottom:1019.490000px;}
.y174{bottom:1020.030000px;}
.ybc{bottom:1022.370000px;}
.y3b{bottom:1026.330000px;}
.ya0{bottom:1027.050000px;}
.y74{bottom:1037.310000px;}
.y142{bottom:1045.410000px;}
.y9{bottom:1046.130000px;}
.y3a{bottom:1048.290000px;}
.y5a{bottom:1052.250000px;}
.ye7{bottom:1052.430000px;}
.y39{bottom:1070.250000px;}
.y141{bottom:1070.610000px;}
.y8{bottom:1074.390000px;}
.y59{bottom:1085.370000px;}
.y15e{bottom:1085.550000px;}
.y38{bottom:1092.210000px;}
.y7{bottom:1102.470000px;}
.y73{bottom:1103.190000px;}
.y140{bottom:1110.930000px;}
.y12c{bottom:1111.470000px;}
.y37{bottom:1114.170000px;}
.y6{bottom:1130.580000px;}
.y36{bottom:1136.160000px;}
.y102{bottom:1136.340000px;}
.y3{bottom:1157.760000px;}
.y1{bottom:1182.780000px;}
.h2{height:21.600000px;}
.hd{height:34.001016px;}
.ha{height:42.186445px;}
.h3{height:51.998203px;}
.he{height:52.260820px;}
.h4{height:52.465078px;}
.hb{height:57.927656px;}
.hc{height:59.378906px;}
.hf{height:61.423863px;}
.h8{height:62.964844px;}
.h5{height:74.004654px;}
.h7{height:83.322422px;}
.h6{height:84.070547px;}
.h9{height:1262.877945px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:85.125000px;}
.w2{width:609.030000px;}
.w4{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.840000px;}
.x2{left:67.123500px;}
.x1{left:97.786500px;}
.x5{left:106.416000px;}
.x15{left:111.276000px;}
.xa{left:113.256000px;}
.x12{left:128.916000px;}
.x19{left:132.516000px;}
.x7{left:134.136000px;}
.x16{left:148.896000px;}
.x8{left:150.690000px;}
.x1a{left:159.510000px;}
.xb{left:219.450000px;}
.x13{left:278.310000px;}
.x14{left:322.455000px;}
.x10{left:330.375000px;}
.x1b{left:347.113125px;}
.xd{left:348.735000px;}
.x23{left:351.075000px;}
.x1c{left:353.235000px;}
.x11{left:370.875000px;}
.x9{left:375.915000px;}
.x21{left:406.873125px;}
.x22{left:412.995000px;}
.xc{left:446.655000px;}
.x17{left:520.843125px;}
.x18{left:526.965000px;}
.xe{left:538.483125px;}
.xf{left:544.605000px;}
.x1f{left:688.063125px;}
.x20{left:694.185000px;}
.x3{left:710.250000px;}
.x1d{left:750.208125px;}
.x1e{left:756.330000px;}
.x6{left:786.930000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.768000pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.412267pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.166400pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.086933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011520pt;}
.lsf{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.093440pt;}
.ls18{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.169067pt;}
.lsb{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.203733pt;}
.lsa{letter-spacing:0.227733pt;}
.ls12{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.426240pt;}
.ls8{letter-spacing:0.473600pt;}
.ls1{letter-spacing:0.552960pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.650667pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls15{letter-spacing:3.109120pt;}
.ls14{letter-spacing:3.749120pt;}
.ls1d{letter-spacing:3.933440pt;}
.ls11{letter-spacing:4.096000pt;}
.ls1b{letter-spacing:7.773440pt;}
.ls1c{letter-spacing:14.813440pt;}
.ls17{letter-spacing:21.853440pt;}
.ls1f{letter-spacing:29.056000pt;}
.lsd{letter-spacing:29.546667pt;}
.ws4{word-spacing:-18.930133pt;}
.ws3{word-spacing:-18.895467pt;}
.ws2{word-spacing:-18.726400pt;}
.ws11{word-spacing:-14.784000pt;}
.wsb{word-spacing:-14.656000pt;}
.wsd{word-spacing:-14.592000pt;}
.wsc{word-spacing:-14.528000pt;}
.ws5{word-spacing:-14.464000pt;}
.ws10{word-spacing:-14.272000pt;}
.wse{word-spacing:-14.016000pt;}
.ws8{word-spacing:-13.534613pt;}
.ws7{word-spacing:-13.306880pt;}
.ws6{word-spacing:-12.894613pt;}
.ws1{word-spacing:-12.337067pt;}
.wsf{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.697920pt;}
.ws0{word-spacing:-11.599467pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-0.942080pt;}
._0{width:0.956160pt;}
._1{width:2.215467pt;}
._3{width:3.904000pt;}
._e{width:5.056000pt;}
._d{width:6.016000pt;}
._7{width:7.616000pt;}
._9{width:8.558080pt;}
._8{width:9.589333pt;}
._c{width:10.624000pt;}
._a{width:12.352000pt;}
._b{width:13.486080pt;}
._6{width:15.687680pt;}
._5{width:17.088000pt;}
._4{width:18.112000pt;}
._11{width:19.008000pt;}
._17{width:20.096000pt;}
._16{width:21.312000pt;}
._12{width:22.400000pt;}
._13{width:23.363840pt;}
._18{width:24.960000pt;}
._1c{width:26.083840pt;}
._15{width:27.612160pt;}
._14{width:28.992000pt;}
._19{width:29.987840pt;}
._1b{width:32.192000pt;}
._1a{width:33.088000pt;}
._20{width:34.257920pt;}
._10{width:35.182080pt;}
._f{width:36.288000pt;}
._1e{width:41.582080pt;}
._1d{width:42.688000pt;}
._1f{width:44.953173pt;}
._22{width:48.874667pt;}
._21{width:91.018667pt;}
._24{width:96.192000pt;}
._23{width:97.344000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:6.560000pt;}
.y5{bottom:49.952000pt;}
.y4{bottom:65.632000pt;}
.y35{bottom:97.952000pt;}
.y72{bottom:101.632000pt;}
.ye6{bottom:112.512000pt;}
.y34{bottom:114.272000pt;}
.yce{bottom:114.912000pt;}
.y33{bottom:120.992000pt;}
.y122{bottom:121.632000pt;}
.y58{bottom:121.952000pt;}
.y9f{bottom:122.752000pt;}
.y89{bottom:125.472000pt;}
.yfd{bottom:125.792000pt;}
.ybb{bottom:130.592000pt;}
.y32{bottom:130.912000pt;}
.y15d{bottom:136.026667pt;}
.y101{bottom:141.466667pt;}
.ye5{bottom:141.786667pt;}
.ycd{bottom:144.186667pt;}
.y112{bottom:146.426667pt;}
.yba{bottom:146.746667pt;}
.y121{bottom:151.066667pt;}
.y57{bottom:151.226667pt;}
.y9e{bottom:152.186667pt;}
.yb9{bottom:153.466667pt;}
.y88{bottom:154.746667pt;}
.yd8{bottom:154.906667pt;}
.yfc{bottom:155.066667pt;}
.y15c{bottom:158.426667pt;}
.y71{bottom:160.186667pt;}
.y12b{bottom:163.066667pt;}
.yb8{bottom:163.386667pt;}
.y13f{bottom:164.346667pt;}
.y31{bottom:167.066667pt;}
.y12a{bottom:169.786667pt;}
.y100{bottom:170.746667pt;}
.ye4{bottom:171.066667pt;}
.ycc{bottom:173.466667pt;}
.y111{bottom:175.706667pt;}
.y173{bottom:176.026667pt;}
.y129{bottom:179.386667pt;}
.y56{bottom:180.506667pt;}
.y9d{bottom:181.466667pt;}
.y87{bottom:184.186667pt;}
.yfb{bottom:184.506667pt;}
.y30{bottom:186.586667pt;}
.y120{bottom:189.306667pt;}
.y70{bottom:189.466667pt;}
.y15b{bottom:194.266667pt;}
.y128{bottom:195.706667pt;}
.y172{bottom:198.426667pt;}
.y13e{bottom:200.026667pt;}
.yd7{bottom:200.186667pt;}
.y127{bottom:202.426667pt;}
.ycb{bottom:202.746667pt;}
.y110{bottom:204.986667pt;}
.y2f{bottom:206.106667pt;}
.y55{bottom:209.946667pt;}
.y11f{bottom:211.866667pt;}
.y126{bottom:212.346667pt;}
.y86{bottom:213.466667pt;}
.ye3{bottom:216.346667pt;}
.y15a{bottom:216.666667pt;}
.y134{bottom:218.586667pt;}
.y6f{bottom:218.906667pt;}
.yb7{bottom:223.546667pt;}
.y2e{bottom:225.626667pt;}
.y9c{bottom:226.746667pt;}
.y133{bottom:228.506667pt;}
.yd6{bottom:229.466667pt;}
.yfa{bottom:229.626667pt;}
.yca{bottom:232.026667pt;}
.y10f{bottom:234.266667pt;}
.y54{bottom:239.226667pt;}
.y13d{bottom:242.786667pt;}
.y2d{bottom:245.186667pt;}
.y159{bottom:252.546667pt;}
.yb6{bottom:252.866667pt;}
.y9b{bottom:256.066667pt;}
.y171{bottom:256.706667pt;}
.y11e{bottom:256.866667pt;}
.y85{bottom:258.786667pt;}
.yf9{bottom:258.946667pt;}
.yc9{bottom:261.346667pt;}
.ye2{bottom:261.666667pt;}
.y10e{bottom:263.586667pt;}
.y6e{bottom:264.066667pt;}
.y2c{bottom:264.706667pt;}
.y53{bottom:268.546667pt;}
.y13c{bottom:272.066667pt;}
.y158{bottom:274.946667pt;}
.y11d{bottom:279.266667pt;}
.y2b{bottom:284.226667pt;}
.y9a{bottom:285.346667pt;}
.y84{bottom:288.066667pt;}
.yf8{bottom:288.226667pt;}
.y18c{bottom:290.146667pt;}
.yc8{bottom:290.786667pt;}
.y10d{bottom:292.866667pt;}
.y6d{bottom:293.346667pt;}
.yb5{bottom:295.586667pt;}
.y52{bottom:297.826667pt;}
.ye1{bottom:300.066667pt;}
.y132{bottom:301.346667pt;}
.y11c{bottom:301.666667pt;}
.y2a{bottom:303.746667pt;}
.y117{bottom:304.066667pt;}
.y18b{bottom:309.666667pt;}
.y157{bottom:310.786667pt;}
.y99{bottom:314.626667pt;}
.y170{bottom:314.946667pt;}
.y83{bottom:317.346667pt;}
.yf7{bottom:317.506667pt;}
.yc7{bottom:320.066667pt;}
.y10c{bottom:322.146667pt;}
.y6c{bottom:322.626667pt;}
.y29{bottom:323.266667pt;}
.y11b{bottom:324.226667pt;}
.yb4{bottom:324.866667pt;}
.y51{bottom:327.106667pt;}
.y18a{bottom:329.186667pt;}
.y131{bottom:330.626667pt;}
.y156{bottom:333.186667pt;}
.y116{bottom:333.346667pt;}
.y16f{bottom:337.506667pt;}
.y28{bottom:342.786667pt;}
.y98{bottom:344.066667pt;}
.ye0{bottom:345.026667pt;}
.y82{bottom:346.626667pt;}
.yf6{bottom:346.786667pt;}
.y189{bottom:348.706667pt;}
.yc6{bottom:349.346667pt;}
.y10b{bottom:351.586667pt;}
.y6b{bottom:351.906667pt;}
.y50{bottom:356.386667pt;}
.y130{bottom:359.906667pt;}
.y27{bottom:362.306667pt;}
.y115{bottom:362.626667pt;}
.yb3{bottom:367.426667pt;}
.ydf{bottom:367.586667pt;}
.y188{bottom:368.226667pt;}
.y155{bottom:369.026667pt;}
.y16e{bottom:373.186667pt;}
.y81{bottom:375.906667pt;}
.yf5{bottom:376.226667pt;}
.yc5{bottom:378.626667pt;}
.y10a{bottom:380.866667pt;}
.y26{bottom:381.826667pt;}
.y4f{bottom:385.666667pt;}
.y187{bottom:387.746667pt;}
.y97{bottom:389.186667pt;}
.y12f{bottom:389.346667pt;}
.yde{bottom:389.986667pt;}
.y154{bottom:391.586667pt;}
.yff{bottom:391.906667pt;}
.y6a{bottom:394.626667pt;}
.y16d{bottom:395.746667pt;}
.yb2{bottom:396.706667pt;}
.y25{bottom:401.346667pt;}
.yd5{bottom:405.186667pt;}
.y80{bottom:405.346667pt;}
.yf4{bottom:405.506667pt;}
.y186{bottom:407.266667pt;}
.yc4{bottom:407.906667pt;}
.y109{bottom:410.146667pt;}
.ydd{bottom:412.386667pt;}
.y153{bottom:413.986667pt;}
.y4e{bottom:415.106667pt;}
.y96{bottom:418.466667pt;}
.y13b{bottom:418.626667pt;}
.y24{bottom:421.026667pt;}
.y114{bottom:421.186667pt;}
.y69{bottom:423.906667pt;}
.y16c{bottom:431.586667pt;}
.yd4{bottom:434.466667pt;}
.yf3{bottom:434.786667pt;}
.ydc{bottom:434.946667pt;}
.yc3{bottom:437.186667pt;}
.yb1{bottom:439.426667pt;}
.y23{bottom:440.546667pt;}
.y95{bottom:447.746667pt;}
.y152{bottom:449.826667pt;}
.y7f{bottom:450.466667pt;}
.y185{bottom:452.706667pt;}
.y68{bottom:453.186667pt;}
.y16b{bottom:453.986667pt;}
.ydb{bottom:457.346667pt;}
.y22{bottom:460.066667pt;}
.y4d{bottom:460.226667pt;}
.y13a{bottom:463.746667pt;}
.yd3{bottom:463.906667pt;}
.yf2{bottom:464.226667pt;}
.yc2{bottom:466.466667pt;}
.yb0{bottom:468.706667pt;}
.y184{bottom:472.226667pt;}
.y94{bottom:477.186667pt;}
.y21{bottom:479.586667pt;}
.y7e{bottom:479.746667pt;}
.y67{bottom:482.466667pt;}
.y151{bottom:485.506667pt;}
.y12e{bottom:487.106667pt;}
.y4c{bottom:489.666667pt;}
.y16a{bottom:489.826667pt;}
.y183{bottom:491.746667pt;}
.y139{bottom:493.186667pt;}
.yc1{bottom:495.773333pt;}
.yaf{bottom:498.013333pt;}
.y20{bottom:499.133333pt;}
.yf1{bottom:502.493333pt;}
.y93{bottom:506.493333pt;}
.y150{bottom:508.093333pt;}
.y7d{bottom:509.213333pt;}
.y182{bottom:511.293333pt;}
.y66{bottom:511.773333pt;}
.y169{bottom:512.253333pt;}
.y1f{bottom:518.653333pt;}
.y4b{bottom:518.973333pt;}
.y138{bottom:522.493333pt;}
.yc0{bottom:525.053333pt;}
.yda{bottom:525.213333pt;}
.yae{bottom:527.453333pt;}
.y181{bottom:530.813333pt;}
.y168{bottom:534.653333pt;}
.y92{bottom:535.773333pt;}
.y1e{bottom:538.173333pt;}
.y7c{bottom:538.493333pt;}
.y65{bottom:541.053333pt;}
.y14f{bottom:543.773333pt;}
.yf0{bottom:547.453333pt;}
.y4a{bottom:548.253333pt;}
.y180{bottom:550.333333pt;}
.y137{bottom:551.773333pt;}
.ybf{bottom:554.493333pt;}
.y1d{bottom:557.693333pt;}
.y91{bottom:565.053333pt;}
.y108{bottom:565.853333pt;}
.y14e{bottom:566.333333pt;}
.y7b{bottom:567.773333pt;}
.yef{bottom:569.853333pt;}
.y64{bottom:570.333333pt;}
.y167{bottom:570.493333pt;}
.yad{bottom:572.573333pt;}
.y125{bottom:575.133333pt;}
.y1c{bottom:577.213333pt;}
.y49{bottom:577.533333pt;}
.yd9{bottom:583.773333pt;}
.y107{bottom:588.253333pt;}
.y17f{bottom:589.373333pt;}
.yee{bottom:592.253333pt;}
.y166{bottom:593.053333pt;}
.y90{bottom:594.493333pt;}
.y1b{bottom:596.733333pt;}
.y7a{bottom:597.053333pt;}
.y12d{bottom:597.213333pt;}
.y63{bottom:599.773333pt;}
.yac{bottom:601.853333pt;}
.y14d{bottom:602.173333pt;}
.y48{bottom:606.813333pt;}
.y17e{bottom:608.893333pt;}
.y106{bottom:610.653333pt;}
.y11a{bottom:613.053333pt;}
.yfe{bottom:613.213333pt;}
.y165{bottom:615.453333pt;}
.y1a{bottom:616.253333pt;}
.y14c{bottom:624.573333pt;}
.y79{bottom:626.333333pt;}
.y124{bottom:626.493333pt;}
.y17d{bottom:628.413333pt;}
.y62{bottom:629.053333pt;}
.yab{bottom:631.293333pt;}
.y105{bottom:633.213333pt;}
.y19{bottom:635.773333pt;}
.y47{bottom:636.253333pt;}
.yed{bottom:637.693333pt;}
.y8f{bottom:639.613333pt;}
.y119{bottom:642.333333pt;}
.y17c{bottom:647.933333pt;}
.y164{bottom:651.293333pt;}
.y18{bottom:655.293333pt;}
.y104{bottom:655.613333pt;}
.y78{bottom:655.773333pt;}
.y61{bottom:658.333333pt;}
.y14b{bottom:660.413333pt;}
.yaa{bottom:660.573333pt;}
.yec{bottom:667.133333pt;}
.y17b{bottom:667.453333pt;}
.y118{bottom:671.613333pt;}
.y17{bottom:674.813333pt;}
.y46{bottom:681.373333pt;}
.y14a{bottom:682.813333pt;}
.y8e{bottom:684.893333pt;}
.y113{bottom:685.053333pt;}
.y163{bottom:686.973333pt;}
.y60{bottom:687.613333pt;}
.ya9{bottom:689.853333pt;}
.y16{bottom:694.333333pt;}
.y77{bottom:700.893333pt;}
.yeb{bottom:705.373333pt;}
.y162{bottom:709.533333pt;}
.y15{bottom:714.013333pt;}
.y8d{bottom:714.173333pt;}
.y45{bottom:716.893333pt;}
.y149{bottom:718.653333pt;}
.ya7{bottom:719.133333pt;}
.y17a{bottom:722.813333pt;}
.ya8{bottom:726.493333pt;}
.yea{bottom:727.933333pt;}
.yd2{bottom:730.173333pt;}
.y14{bottom:733.533333pt;}
.y44{bottom:736.413333pt;}
.y8c{bottom:743.453333pt;}
.y161{bottom:745.213333pt;}
.y5f{bottom:746.213333pt;}
.ya6{bottom:748.453333pt;}
.ye9{bottom:750.373333pt;}
.y13{bottom:752.933333pt;}
.y148{bottom:754.373333pt;}
.y43{bottom:755.973333pt;}
.yd1{bottom:759.493333pt;}
.y103{bottom:759.653333pt;}
.y160{bottom:767.813333pt;}
.y12{bottom:770.693333pt;}
.ye8{bottom:772.773333pt;}
.y8b{bottom:772.933333pt;}
.y42{bottom:775.493333pt;}
.ya5{bottom:777.733333pt;}
.y179{bottom:781.093333pt;}
.y11{bottom:788.613333pt;}
.yd0{bottom:788.933333pt;}
.y147{bottom:790.213333pt;}
.y41{bottom:795.013333pt;}
.y136{bottom:802.213333pt;}
.y178{bottom:803.653333pt;}
.ybe{bottom:804.773333pt;}
.y76{bottom:804.933333pt;}
.y10{bottom:806.693333pt;}
.ya4{bottom:807.173333pt;}
.y146{bottom:812.773333pt;}
.y40{bottom:814.693333pt;}
.y8a{bottom:818.053333pt;}
.y5e{bottom:818.213333pt;}
.y177{bottom:826.053333pt;}
.yf{bottom:826.213333pt;}
.y135{bottom:831.493333pt;}
.y3f{bottom:834.213333pt;}
.y15f{bottom:835.173333pt;}
.y123{bottom:841.573333pt;}
.ya3{bottom:845.573333pt;}
.yd{bottom:845.893333pt;}
.y5d{bottom:847.493333pt;}
.y145{bottom:848.453333pt;}
.ye{bottom:853.253333pt;}
.y3e{bottom:853.733333pt;}
.y176{bottom:861.893333pt;}
.y75{bottom:863.493333pt;}
.yc{bottom:865.413333pt;}
.ya2{bottom:867.973333pt;}
.y144{bottom:871.013333pt;}
.y3d{bottom:873.253333pt;}
.y5c{bottom:876.773333pt;}
.ybd{bottom:879.493333pt;}
.y175{bottom:884.293333pt;}
.yb{bottom:884.933333pt;}
.ya1{bottom:890.373333pt;}
.y3c{bottom:892.773333pt;}
.y143{bottom:893.413333pt;}
.ya{bottom:904.933333pt;}
.y5b{bottom:906.053333pt;}
.ycf{bottom:906.213333pt;}
.y174{bottom:906.693333pt;}
.ybc{bottom:908.773333pt;}
.y3b{bottom:912.293333pt;}
.ya0{bottom:912.933333pt;}
.y74{bottom:922.053333pt;}
.y142{bottom:929.253333pt;}
.y9{bottom:929.893333pt;}
.y3a{bottom:931.813333pt;}
.y5a{bottom:935.333333pt;}
.ye7{bottom:935.493333pt;}
.y39{bottom:951.333333pt;}
.y141{bottom:951.653333pt;}
.y8{bottom:955.013333pt;}
.y59{bottom:964.773333pt;}
.y15e{bottom:964.933333pt;}
.y38{bottom:970.853333pt;}
.y7{bottom:979.973333pt;}
.y73{bottom:980.613333pt;}
.y140{bottom:987.493333pt;}
.y12c{bottom:987.973333pt;}
.y37{bottom:990.373333pt;}
.y6{bottom:1004.960000pt;}
.y36{bottom:1009.920000pt;}
.y102{bottom:1010.080000pt;}
.y3{bottom:1029.120000pt;}
.y1{bottom:1051.360000pt;}
.h2{height:19.200000pt;}
.hd{height:30.223125pt;}
.ha{height:37.499062pt;}
.h3{height:46.220625pt;}
.he{height:46.454062pt;}
.h4{height:46.635625pt;}
.hb{height:51.491250pt;}
.hc{height:52.781250pt;}
.hf{height:54.598989pt;}
.h8{height:55.968750pt;}
.h5{height:65.781915pt;}
.h7{height:74.064375pt;}
.h6{height:74.729375pt;}
.h9{height:1122.558173pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:75.666667pt;}
.w2{width:541.360000pt;}
.w4{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.080000pt;}
.x2{left:59.665333pt;}
.x1{left:86.921333pt;}
.x5{left:94.592000pt;}
.x15{left:98.912000pt;}
.xa{left:100.672000pt;}
.x12{left:114.592000pt;}
.x19{left:117.792000pt;}
.x7{left:119.232000pt;}
.x16{left:132.352000pt;}
.x8{left:133.946667pt;}
.x1a{left:141.786667pt;}
.xb{left:195.066667pt;}
.x13{left:247.386667pt;}
.x14{left:286.626667pt;}
.x10{left:293.666667pt;}
.x1b{left:308.545000pt;}
.xd{left:309.986667pt;}
.x23{left:312.066667pt;}
.x1c{left:313.986667pt;}
.x11{left:329.666667pt;}
.x9{left:334.146667pt;}
.x21{left:361.665000pt;}
.x22{left:367.106667pt;}
.xc{left:397.026667pt;}
.x17{left:462.971667pt;}
.x18{left:468.413333pt;}
.xe{left:478.651667pt;}
.xf{left:484.093333pt;}
.x1f{left:611.611667pt;}
.x20{left:617.053333pt;}
.x3{left:631.333333pt;}
.x1d{left:666.851667pt;}
.x1e{left:672.293333pt;}
.x6{left:699.493333pt;}
}




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