
    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_9bdbe1fea8b1097caec2781b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_dec01e997d3afd5ae1616d9d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e6799214a035666b4248bd11.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.101562;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_e96a0036ed688f2c6a63541e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_b83e61f4f0af1c6d30700cd3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_c1d335e939d0377770b941b7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_344e1c37722fd521f2f92b34.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_f9883d58805ed05dd2e9d909.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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;}
.ls15{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.576000px;}
.ls12{letter-spacing:-0.336960px;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.287280px;}
.lsc{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.084240px;}
.lsb{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.191520px;}
.ls28{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.336960px;}
.ls0{letter-spacing:0.383040px;}
.ls26{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.720000px;}
.ls18{letter-spacing:1.440000px;}
.ls13{letter-spacing:2.160000px;}
.ls1c{letter-spacing:2.880000px;}
.ls14{letter-spacing:3.600000px;}
.lsa{letter-spacing:4.320000px;}
.ls25{letter-spacing:5.040000px;}
.ls1b{letter-spacing:5.760000px;}
.ls16{letter-spacing:6.480000px;}
.ls20{letter-spacing:7.200000px;}
.lsf{letter-spacing:7.920000px;}
.ls1f{letter-spacing:9.360000px;}
.ls1a{letter-spacing:10.800000px;}
.ls1e{letter-spacing:12.240000px;}
.ls1d{letter-spacing:12.960000px;}
.ls23{letter-spacing:14.400000px;}
.lsd{letter-spacing:15.840000px;}
.ls19{letter-spacing:16.560000px;}
.ls27{letter-spacing:17.280000px;}
.ls10{letter-spacing:19.440000px;}
.ls8{letter-spacing:21.600000px;}
.ls21{letter-spacing:29.520000px;}
.ls24{letter-spacing:33.984000px;}
.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;}
}
.ws2{word-spacing:-24.131520px;}
.ws1{word-spacing:-23.940000px;}
.ws3{word-spacing:-18.144000px;}
.ws24{word-spacing:-18.072000px;}
.wsc{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.ws1e{word-spacing:-17.856000px;}
.ws14{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws4d{word-spacing:-17.424000px;}
.ws0{word-spacing:-16.560000px;}
.ws23{word-spacing:-4.320000px;}
.ws2e{word-spacing:-4.032000px;}
.ws1f{word-spacing:-3.600000px;}
.ws27{word-spacing:-2.880000px;}
.ws15{word-spacing:-2.160000px;}
.ws10{word-spacing:-1.872000px;}
.ws9{word-spacing:-1.440000px;}
.ws28{word-spacing:-1.152000px;}
.ws4a{word-spacing:-0.864000px;}
.wsb{word-spacing:-0.720000px;}
.ws38{word-spacing:-0.505440px;}
.ws5{word-spacing:-0.383040px;}
.wsa{word-spacing:-0.336960px;}
.ws19{word-spacing:-0.288000px;}
.ws1b{word-spacing:-0.144000px;}
.ws32{word-spacing:-0.084240px;}
.ws4{word-spacing:0.000000px;}
.ws61{word-spacing:0.072000px;}
.ws5e{word-spacing:0.144000px;}
.ws6{word-spacing:0.287280px;}
.ws7{word-spacing:0.288000px;}
.ws29{word-spacing:0.336960px;}
.ws12{word-spacing:0.720000px;}
.ws5d{word-spacing:0.864000px;}
.ws2a{word-spacing:1.008000px;}
.ws60{word-spacing:1.224000px;}
.ws34{word-spacing:1.296000px;}
.ws11{word-spacing:1.440000px;}
.ws53{word-spacing:1.728000px;}
.ws2c{word-spacing:2.160000px;}
.ws1d{word-spacing:2.880000px;}
.ws21{word-spacing:3.168000px;}
.ws55{word-spacing:3.456000px;}
.ws20{word-spacing:3.600000px;}
.ws1a{word-spacing:4.320000px;}
.ws25{word-spacing:5.040000px;}
.ws2f{word-spacing:5.760000px;}
.ws3b{word-spacing:6.048000px;}
.ws31{word-spacing:6.336000px;}
.ws39{word-spacing:6.480000px;}
.ws4c{word-spacing:7.920000px;}
.ws1c{word-spacing:9.216000px;}
.ws50{word-spacing:9.936000px;}
.ws2d{word-spacing:10.080000px;}
.wsf{word-spacing:10.800000px;}
.ws3a{word-spacing:11.376000px;}
.ws17{word-spacing:11.520000px;}
.ws2b{word-spacing:11.808000px;}
.ws35{word-spacing:12.096000px;}
.ws3c{word-spacing:12.240000px;}
.ws3f{word-spacing:12.528000px;}
.ws36{word-spacing:12.960000px;}
.wse{word-spacing:13.248000px;}
.ws26{word-spacing:13.680000px;}
.ws59{word-spacing:14.400000px;}
.ws5b{word-spacing:14.688000px;}
.ws5a{word-spacing:15.120000px;}
.ws33{word-spacing:16.416000px;}
.ws37{word-spacing:16.560000px;}
.ws30{word-spacing:16.848000px;}
.ws8{word-spacing:17.568000px;}
.ws4b{word-spacing:18.000000px;}
.ws16{word-spacing:18.720000px;}
.ws18{word-spacing:19.440000px;}
.ws22{word-spacing:19.728000px;}
.ws58{word-spacing:20.160000px;}
.ws41{word-spacing:20.736000px;}
.ws40{word-spacing:20.880000px;}
.ws4e{word-spacing:21.600000px;}
.ws47{word-spacing:22.320000px;}
.ws5c{word-spacing:24.480000px;}
.ws3e{word-spacing:26.208000px;}
.ws42{word-spacing:26.640000px;}
.ws4f{word-spacing:29.088000px;}
.ws57{word-spacing:29.520000px;}
.ws3d{word-spacing:30.240000px;}
.ws48{word-spacing:31.680000px;}
.ws49{word-spacing:31.968000px;}
.ws46{word-spacing:37.440000px;}
.ws51{word-spacing:46.800000px;}
.ws52{word-spacing:47.088000px;}
.ws56{word-spacing:48.816000px;}
.ws54{word-spacing:48.960000px;}
.ws43{word-spacing:54.720000px;}
.ws44{word-spacing:55.008000px;}
.ws45{word-spacing:55.296000px;}
.ws5f{word-spacing:144.000000px;}
._12{margin-left:-5.313312px;}
._a{margin-left:-3.614112px;}
._3{margin-left:-2.110176px;}
._0{margin-left:-1.066464px;}
._1{width:1.110816px;}
._b{width:2.181024px;}
._5{width:3.362976px;}
._4{width:5.081184px;}
._f{width:6.970464px;}
._d{width:8.352000px;}
._11{width:9.922464px;}
._7{width:11.016000px;}
._8{width:12.137184px;}
._9{width:13.196448px;}
._e{width:14.976000px;}
._6{width:16.416000px;}
._10{width:19.872000px;}
._c{width:20.938464px;}
._2{width:22.320000px;}
._16{width:24.336000px;}
._1e{width:25.632000px;}
._13{width:26.640000px;}
._14{width:28.080000px;}
._15{width:29.921184px;}
._17{width:31.237632px;}
._18{width:32.760000px;}
._19{width:34.056000px;}
._1b{width:35.064000px;}
._1a{width:37.440000px;}
._20{width:39.231360px;}
._1d{width:46.957536px;}
._1c{width:48.226464px;}
._1f{width:143.338464px;}
.fc1{color:rgb(32,33,34);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.060000px;}
.y1{bottom:77.760000px;}
.y102{bottom:113.220000px;}
.y6e{bottom:116.100000px;}
.y8f{bottom:116.280000px;}
.yfb{bottom:118.440000px;}
.y132{bottom:121.490640px;}
.y93{bottom:124.020000px;}
.y62{bottom:127.440000px;}
.y44{bottom:135.180000px;}
.y22{bottom:139.860000px;}
.y6d{bottom:147.060000px;}
.y8e{bottom:147.420000px;}
.y92{bottom:154.980000px;}
.y131{bottom:155.322720px;}
.y101{bottom:156.240000px;}
.y61{bottom:158.580000px;}
.yfa{bottom:161.460000px;}
.y43{bottom:166.140000px;}
.y120{bottom:170.460000px;}
.y21{bottom:170.820000px;}
.y6c{bottom:178.200000px;}
.y8d{bottom:178.380000px;}
.y91{bottom:186.120000px;}
.y130{bottom:188.989200px;}
.y60{bottom:189.540000px;}
.yf9{bottom:192.600000px;}
.y42{bottom:197.280000px;}
.y100{bottom:199.260000px;}
.y11f{bottom:201.600000px;}
.ycb{bottom:201.780000px;}
.y20{bottom:201.960000px;}
.y6b{bottom:209.160000px;}
.y8c{bottom:209.520000px;}
.ya8{bottom:217.080000px;}
.y5f{bottom:220.680000px;}
.y12f{bottom:222.655680px;}
.yf8{bottom:223.560000px;}
.y90{bottom:225.360000px;}
.y41{bottom:228.240000px;}
.y11e{bottom:232.560000px;}
.y1f{bottom:232.920000px;}
.y6a{bottom:240.300000px;}
.y8b{bottom:240.480000px;}
.yff{bottom:242.280000px;}
.ya7{bottom:248.220000px;}
.y5e{bottom:251.640000px;}
.yf7{bottom:254.700000px;}
.y12e{bottom:256.487760px;}
.y40{bottom:259.380000px;}
.y11d{bottom:263.700000px;}
.yca{bottom:263.880000px;}
.y1e{bottom:264.060000px;}
.y69{bottom:271.260000px;}
.y8a{bottom:271.620000px;}
.ya6{bottom:279.180000px;}
.y5d{bottom:282.600000px;}
.yfe{bottom:285.300000px;}
.yf6{bottom:285.660000px;}
.y12d{bottom:290.154240px;}
.y3f{bottom:290.340000px;}
.y11c{bottom:294.660000px;}
.yc9{bottom:295.020000px;}
.y68{bottom:302.400000px;}
.y89{bottom:302.580000px;}
.y1d{bottom:302.760000px;}
.ya5{bottom:310.320000px;}
.y5c{bottom:313.740000px;}
.yf5{bottom:316.800000px;}
.y3e{bottom:321.300000px;}
.y12c{bottom:323.986320px;}
.y11b{bottom:325.800000px;}
.yfd{bottom:328.500000px;}
.y67{bottom:333.360000px;}
.y88{bottom:333.720000px;}
.ya4{bottom:341.280000px;}
.y5b{bottom:344.700000px;}
.y1c{bottom:345.780000px;}
.yf4{bottom:347.760000px;}
.y3d{bottom:352.440000px;}
.y11a{bottom:356.760000px;}
.y12b{bottom:357.652800px;}
.y66{bottom:364.500000px;}
.y87{bottom:364.680000px;}
.yfc{bottom:371.520000px;}
.ya3{bottom:372.420000px;}
.y5a{bottom:375.840000px;}
.y1b{bottom:376.740000px;}
.yf3{bottom:378.900000px;}
.y3c{bottom:383.400000px;}
.y119{bottom:387.900000px;}
.y12a{bottom:391.319280px;}
.y65{bottom:395.460000px;}
.y86{bottom:395.820000px;}
.ya2{bottom:403.380000px;}
.y59{bottom:406.800000px;}
.yc8{bottom:407.700000px;}
.y1a{bottom:407.880000px;}
.yf2{bottom:409.860000px;}
.y3b{bottom:414.540000px;}
.y118{bottom:418.860000px;}
.y129{bottom:425.151360px;}
.y64{bottom:426.600000px;}
.y85{bottom:426.780000px;}
.ya1{bottom:434.520000px;}
.ydb{bottom:437.940000px;}
.y19{bottom:438.840000px;}
.yf1{bottom:441.000000px;}
.y3a{bottom:445.500000px;}
.y117{bottom:450.000000px;}
.y63{bottom:457.560000px;}
.y84{bottom:457.920000px;}
.y128{bottom:458.817840px;}
.ya0{bottom:465.480000px;}
.yda{bottom:468.900000px;}
.yc7{bottom:469.800000px;}
.y18{bottom:469.980000px;}
.yf0{bottom:471.960000px;}
.y39{bottom:476.640000px;}
.y116{bottom:480.960000px;}
.y58{bottom:488.700000px;}
.y83{bottom:488.880000px;}
.y127{bottom:492.649920px;}
.y9f{bottom:496.620000px;}
.yd9{bottom:500.040000px;}
.y17{bottom:500.940000px;}
.yef{bottom:503.100000px;}
.y38{bottom:507.600000px;}
.y115{bottom:512.100000px;}
.y57{bottom:519.660000px;}
.y82{bottom:520.020000px;}
.y126{bottom:526.316400px;}
.y9e{bottom:527.580000px;}
.yd8{bottom:531.000000px;}
.yc6{bottom:531.900000px;}
.y16{bottom:532.080000px;}
.yee{bottom:534.060000px;}
.y37{bottom:538.740000px;}
.y114{bottom:543.060000px;}
.y56{bottom:550.800000px;}
.y81{bottom:550.980000px;}
.y9d{bottom:558.720000px;}
.y125{bottom:560.148480px;}
.yd7{bottom:562.140000px;}
.y15{bottom:563.040000px;}
.yed{bottom:565.200000px;}
.y36{bottom:569.700000px;}
.y113{bottom:574.200000px;}
.y55{bottom:581.760000px;}
.y80{bottom:582.120000px;}
.y9c{bottom:589.680000px;}
.yd6{bottom:593.100000px;}
.y124{bottom:593.814960px;}
.yc5{bottom:594.000000px;}
.yec{bottom:596.160000px;}
.y35{bottom:600.840000px;}
.y14{bottom:602.280000px;}
.y112{bottom:605.160000px;}
.y54{bottom:612.900000px;}
.y7f{bottom:613.080000px;}
.y9b{bottom:620.820000px;}
.yd5{bottom:624.240000px;}
.yc4{bottom:625.140000px;}
.yeb{bottom:627.120000px;}
.y123{bottom:627.481440px;}
.y34{bottom:631.800000px;}
.y111{bottom:636.120000px;}
.y53{bottom:643.860000px;}
.y7e{bottom:644.220000px;}
.y13{bottom:648.180000px;}
.y9a{bottom:651.780000px;}
.yd4{bottom:655.200000px;}
.yc3{bottom:656.100000px;}
.yea{bottom:658.260000px;}
.y122{bottom:661.313520px;}
.y33{bottom:662.940000px;}
.y110{bottom:667.260000px;}
.y52{bottom:674.820000px;}
.y7d{bottom:675.180000px;}
.y12{bottom:679.320000px;}
.y99{bottom:682.920000px;}
.yd3{bottom:686.340000px;}
.yc2{bottom:687.240000px;}
.ye9{bottom:689.220000px;}
.y32{bottom:693.900000px;}
.y121{bottom:694.980000px;}
.y10f{bottom:698.220000px;}
.y51{bottom:705.960000px;}
.y7c{bottom:706.320000px;}
.y11{bottom:710.280000px;}
.y98{bottom:713.880000px;}
.yd2{bottom:717.300000px;}
.yc1{bottom:718.200000px;}
.ye8{bottom:720.360000px;}
.y31{bottom:725.040000px;}
.y10e{bottom:729.360000px;}
.y50{bottom:736.920000px;}
.y7b{bottom:737.280000px;}
.y10{bottom:741.420000px;}
.y97{bottom:745.020000px;}
.yd1{bottom:748.440000px;}
.yc0{bottom:749.340000px;}
.ye7{bottom:751.320000px;}
.y30{bottom:756.000000px;}
.y10d{bottom:760.320000px;}
.y4f{bottom:768.060000px;}
.y7a{bottom:768.420000px;}
.yf{bottom:772.380000px;}
.y96{bottom:775.980000px;}
.yd0{bottom:779.400000px;}
.ybf{bottom:780.300000px;}
.ye6{bottom:782.460000px;}
.yb2{bottom:784.260000px;}
.y2f{bottom:787.140000px;}
.y10c{bottom:791.460000px;}
.y4e{bottom:799.020000px;}
.y79{bottom:799.380000px;}
.ye{bottom:803.520000px;}
.y95{bottom:807.120000px;}
.ycf{bottom:810.540000px;}
.ybe{bottom:811.440000px;}
.ye5{bottom:813.420000px;}
.y2e{bottom:818.100000px;}
.y10b{bottom:822.420000px;}
.y4d{bottom:830.160000px;}
.y78{bottom:830.520000px;}
.yd{bottom:834.480000px;}
.yb1{bottom:838.080000px;}
.yce{bottom:841.500000px;}
.ybd{bottom:842.400000px;}
.ye4{bottom:844.560000px;}
.y94{bottom:846.360000px;}
.y2d{bottom:849.240000px;}
.y10a{bottom:853.560000px;}
.y4c{bottom:861.120000px;}
.y77{bottom:861.480000px;}
.yc{bottom:865.620000px;}
.yb0{bottom:869.220000px;}
.ycd{bottom:872.640000px;}
.ybc{bottom:873.540000px;}
.ye3{bottom:875.520000px;}
.y2c{bottom:880.200000px;}
.y109{bottom:884.520000px;}
.y4b{bottom:892.260000px;}
.y76{bottom:892.620000px;}
.yb{bottom:896.580000px;}
.yaf{bottom:900.180000px;}
.ycc{bottom:903.600000px;}
.ybb{bottom:904.500000px;}
.ye2{bottom:906.660000px;}
.y2b{bottom:911.340000px;}
.y108{bottom:915.660000px;}
.y4a{bottom:923.220000px;}
.y75{bottom:923.580000px;}
.ya{bottom:927.720000px;}
.yae{bottom:931.320000px;}
.yba{bottom:935.640000px;}
.ye1{bottom:937.620000px;}
.y2a{bottom:942.300000px;}
.y107{bottom:946.620000px;}
.y49{bottom:954.360000px;}
.y74{bottom:954.540000px;}
.y9{bottom:958.680000px;}
.yad{bottom:962.280000px;}
.yb9{bottom:966.600000px;}
.ye0{bottom:968.760000px;}
.y29{bottom:973.440000px;}
.y106{bottom:977.760000px;}
.y48{bottom:985.320000px;}
.y73{bottom:985.680000px;}
.y8{bottom:989.820000px;}
.yac{bottom:993.240000px;}
.yb8{bottom:997.740000px;}
.ydf{bottom:999.720000px;}
.y28{bottom:1004.400000px;}
.y105{bottom:1008.720000px;}
.y47{bottom:1016.460000px;}
.y72{bottom:1016.640000px;}
.yab{bottom:1024.380000px;}
.y7{bottom:1028.520000px;}
.yb7{bottom:1028.700000px;}
.yde{bottom:1030.860000px;}
.y27{bottom:1035.540000px;}
.y104{bottom:1039.860000px;}
.y46{bottom:1047.420000px;}
.yaa{bottom:1055.340000px;}
.y71{bottom:1056.060000px;}
.yb6{bottom:1059.840000px;}
.ydd{bottom:1061.820000px;}
.y6{bottom:1063.627380px;}
.y26{bottom:1066.500000px;}
.y103{bottom:1070.820000px;}
.y45{bottom:1078.560000px;}
.yb5{bottom:1090.800000px;}
.ya9{bottom:1094.760000px;}
.y5{bottom:1095.300000px;}
.ydc{bottom:1100.520000px;}
.y70{bottom:1101.960000px;}
.y25{bottom:1109.520000px;}
.yb4{bottom:1129.500000px;}
.y6f{bottom:1132.920000px;}
.y4{bottom:1139.215680px;}
.y24{bottom:1140.660000px;}
.yb3{bottom:1168.740000px;}
.y23{bottom:1171.620000px;}
.y3{bottom:1172.700000px;}
.h3{height:54.628594px;}
.h4{height:58.671562px;}
.h2{height:63.175781px;}
.h9{height:63.351562px;}
.h7{height:63.773438px;}
.h6{height:64.160156px;}
.h8{height:75.067383px;}
.h5{height:85.333008px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.200000px;}
.x5{left:133.200000px;}
.x4{left:159.300000px;}
.x3{left:295.381440px;}
.x1{left:432.900000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.512000pt;}
.ls12{letter-spacing:-0.299520pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.255360pt;}
.lsc{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.074880pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.170240pt;}
.ls28{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.299520pt;}
.ls0{letter-spacing:0.340480pt;}
.ls26{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls18{letter-spacing:1.280000pt;}
.ls13{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:2.560000pt;}
.ls14{letter-spacing:3.200000pt;}
.lsa{letter-spacing:3.840000pt;}
.ls25{letter-spacing:4.480000pt;}
.ls1b{letter-spacing:5.120000pt;}
.ls16{letter-spacing:5.760000pt;}
.ls20{letter-spacing:6.400000pt;}
.lsf{letter-spacing:7.040000pt;}
.ls1f{letter-spacing:8.320000pt;}
.ls1a{letter-spacing:9.600000pt;}
.ls1e{letter-spacing:10.880000pt;}
.ls1d{letter-spacing:11.520000pt;}
.ls23{letter-spacing:12.800000pt;}
.lsd{letter-spacing:14.080000pt;}
.ls19{letter-spacing:14.720000pt;}
.ls27{letter-spacing:15.360000pt;}
.ls10{letter-spacing:17.280000pt;}
.ls8{letter-spacing:19.200000pt;}
.ls21{letter-spacing:26.240000pt;}
.ls24{letter-spacing:30.208000pt;}
.ws2{word-spacing:-21.450240pt;}
.ws1{word-spacing:-21.280000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws24{word-spacing:-16.064000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.ws1e{word-spacing:-15.872000pt;}
.ws14{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws4d{word-spacing:-15.488000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws23{word-spacing:-3.840000pt;}
.ws2e{word-spacing:-3.584000pt;}
.ws1f{word-spacing:-3.200000pt;}
.ws27{word-spacing:-2.560000pt;}
.ws15{word-spacing:-1.920000pt;}
.ws10{word-spacing:-1.664000pt;}
.ws9{word-spacing:-1.280000pt;}
.ws28{word-spacing:-1.024000pt;}
.ws4a{word-spacing:-0.768000pt;}
.wsb{word-spacing:-0.640000pt;}
.ws38{word-spacing:-0.449280pt;}
.ws5{word-spacing:-0.340480pt;}
.wsa{word-spacing:-0.299520pt;}
.ws19{word-spacing:-0.256000pt;}
.ws1b{word-spacing:-0.128000pt;}
.ws32{word-spacing:-0.074880pt;}
.ws4{word-spacing:0.000000pt;}
.ws61{word-spacing:0.064000pt;}
.ws5e{word-spacing:0.128000pt;}
.ws6{word-spacing:0.255360pt;}
.ws7{word-spacing:0.256000pt;}
.ws29{word-spacing:0.299520pt;}
.ws12{word-spacing:0.640000pt;}
.ws5d{word-spacing:0.768000pt;}
.ws2a{word-spacing:0.896000pt;}
.ws60{word-spacing:1.088000pt;}
.ws34{word-spacing:1.152000pt;}
.ws11{word-spacing:1.280000pt;}
.ws53{word-spacing:1.536000pt;}
.ws2c{word-spacing:1.920000pt;}
.ws1d{word-spacing:2.560000pt;}
.ws21{word-spacing:2.816000pt;}
.ws55{word-spacing:3.072000pt;}
.ws20{word-spacing:3.200000pt;}
.ws1a{word-spacing:3.840000pt;}
.ws25{word-spacing:4.480000pt;}
.ws2f{word-spacing:5.120000pt;}
.ws3b{word-spacing:5.376000pt;}
.ws31{word-spacing:5.632000pt;}
.ws39{word-spacing:5.760000pt;}
.ws4c{word-spacing:7.040000pt;}
.ws1c{word-spacing:8.192000pt;}
.ws50{word-spacing:8.832000pt;}
.ws2d{word-spacing:8.960000pt;}
.wsf{word-spacing:9.600000pt;}
.ws3a{word-spacing:10.112000pt;}
.ws17{word-spacing:10.240000pt;}
.ws2b{word-spacing:10.496000pt;}
.ws35{word-spacing:10.752000pt;}
.ws3c{word-spacing:10.880000pt;}
.ws3f{word-spacing:11.136000pt;}
.ws36{word-spacing:11.520000pt;}
.wse{word-spacing:11.776000pt;}
.ws26{word-spacing:12.160000pt;}
.ws59{word-spacing:12.800000pt;}
.ws5b{word-spacing:13.056000pt;}
.ws5a{word-spacing:13.440000pt;}
.ws33{word-spacing:14.592000pt;}
.ws37{word-spacing:14.720000pt;}
.ws30{word-spacing:14.976000pt;}
.ws8{word-spacing:15.616000pt;}
.ws4b{word-spacing:16.000000pt;}
.ws16{word-spacing:16.640000pt;}
.ws18{word-spacing:17.280000pt;}
.ws22{word-spacing:17.536000pt;}
.ws58{word-spacing:17.920000pt;}
.ws41{word-spacing:18.432000pt;}
.ws40{word-spacing:18.560000pt;}
.ws4e{word-spacing:19.200000pt;}
.ws47{word-spacing:19.840000pt;}
.ws5c{word-spacing:21.760000pt;}
.ws3e{word-spacing:23.296000pt;}
.ws42{word-spacing:23.680000pt;}
.ws4f{word-spacing:25.856000pt;}
.ws57{word-spacing:26.240000pt;}
.ws3d{word-spacing:26.880000pt;}
.ws48{word-spacing:28.160000pt;}
.ws49{word-spacing:28.416000pt;}
.ws46{word-spacing:33.280000pt;}
.ws51{word-spacing:41.600000pt;}
.ws52{word-spacing:41.856000pt;}
.ws56{word-spacing:43.392000pt;}
.ws54{word-spacing:43.520000pt;}
.ws43{word-spacing:48.640000pt;}
.ws44{word-spacing:48.896000pt;}
.ws45{word-spacing:49.152000pt;}
.ws5f{word-spacing:128.000000pt;}
._12{margin-left:-4.722944pt;}
._a{margin-left:-3.212544pt;}
._3{margin-left:-1.875712pt;}
._0{margin-left:-0.947968pt;}
._1{width:0.987392pt;}
._b{width:1.938688pt;}
._5{width:2.989312pt;}
._4{width:4.516608pt;}
._f{width:6.195968pt;}
._d{width:7.424000pt;}
._11{width:8.819968pt;}
._7{width:9.792000pt;}
._8{width:10.788608pt;}
._9{width:11.730176pt;}
._e{width:13.312000pt;}
._6{width:14.592000pt;}
._10{width:17.664000pt;}
._c{width:18.611968pt;}
._2{width:19.840000pt;}
._16{width:21.632000pt;}
._1e{width:22.784000pt;}
._13{width:23.680000pt;}
._14{width:24.960000pt;}
._15{width:26.596608pt;}
._17{width:27.766784pt;}
._18{width:29.120000pt;}
._19{width:30.272000pt;}
._1b{width:31.168000pt;}
._1a{width:33.280000pt;}
._20{width:34.872320pt;}
._1d{width:41.740032pt;}
._1c{width:42.867968pt;}
._1f{width:127.411968pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.720000pt;}
.y1{bottom:69.120000pt;}
.y102{bottom:100.640000pt;}
.y6e{bottom:103.200000pt;}
.y8f{bottom:103.360000pt;}
.yfb{bottom:105.280000pt;}
.y132{bottom:107.991680pt;}
.y93{bottom:110.240000pt;}
.y62{bottom:113.280000pt;}
.y44{bottom:120.160000pt;}
.y22{bottom:124.320000pt;}
.y6d{bottom:130.720000pt;}
.y8e{bottom:131.040000pt;}
.y92{bottom:137.760000pt;}
.y131{bottom:138.064640pt;}
.y101{bottom:138.880000pt;}
.y61{bottom:140.960000pt;}
.yfa{bottom:143.520000pt;}
.y43{bottom:147.680000pt;}
.y120{bottom:151.520000pt;}
.y21{bottom:151.840000pt;}
.y6c{bottom:158.400000pt;}
.y8d{bottom:158.560000pt;}
.y91{bottom:165.440000pt;}
.y130{bottom:167.990400pt;}
.y60{bottom:168.480000pt;}
.yf9{bottom:171.200000pt;}
.y42{bottom:175.360000pt;}
.y100{bottom:177.120000pt;}
.y11f{bottom:179.200000pt;}
.ycb{bottom:179.360000pt;}
.y20{bottom:179.520000pt;}
.y6b{bottom:185.920000pt;}
.y8c{bottom:186.240000pt;}
.ya8{bottom:192.960000pt;}
.y5f{bottom:196.160000pt;}
.y12f{bottom:197.916160pt;}
.yf8{bottom:198.720000pt;}
.y90{bottom:200.320000pt;}
.y41{bottom:202.880000pt;}
.y11e{bottom:206.720000pt;}
.y1f{bottom:207.040000pt;}
.y6a{bottom:213.600000pt;}
.y8b{bottom:213.760000pt;}
.yff{bottom:215.360000pt;}
.ya7{bottom:220.640000pt;}
.y5e{bottom:223.680000pt;}
.yf7{bottom:226.400000pt;}
.y12e{bottom:227.989120pt;}
.y40{bottom:230.560000pt;}
.y11d{bottom:234.400000pt;}
.yca{bottom:234.560000pt;}
.y1e{bottom:234.720000pt;}
.y69{bottom:241.120000pt;}
.y8a{bottom:241.440000pt;}
.ya6{bottom:248.160000pt;}
.y5d{bottom:251.200000pt;}
.yfe{bottom:253.600000pt;}
.yf6{bottom:253.920000pt;}
.y12d{bottom:257.914880pt;}
.y3f{bottom:258.080000pt;}
.y11c{bottom:261.920000pt;}
.yc9{bottom:262.240000pt;}
.y68{bottom:268.800000pt;}
.y89{bottom:268.960000pt;}
.y1d{bottom:269.120000pt;}
.ya5{bottom:275.840000pt;}
.y5c{bottom:278.880000pt;}
.yf5{bottom:281.600000pt;}
.y3e{bottom:285.600000pt;}
.y12c{bottom:287.987840pt;}
.y11b{bottom:289.600000pt;}
.yfd{bottom:292.000000pt;}
.y67{bottom:296.320000pt;}
.y88{bottom:296.640000pt;}
.ya4{bottom:303.360000pt;}
.y5b{bottom:306.400000pt;}
.y1c{bottom:307.360000pt;}
.yf4{bottom:309.120000pt;}
.y3d{bottom:313.280000pt;}
.y11a{bottom:317.120000pt;}
.y12b{bottom:317.913600pt;}
.y66{bottom:324.000000pt;}
.y87{bottom:324.160000pt;}
.yfc{bottom:330.240000pt;}
.ya3{bottom:331.040000pt;}
.y5a{bottom:334.080000pt;}
.y1b{bottom:334.880000pt;}
.yf3{bottom:336.800000pt;}
.y3c{bottom:340.800000pt;}
.y119{bottom:344.800000pt;}
.y12a{bottom:347.839360pt;}
.y65{bottom:351.520000pt;}
.y86{bottom:351.840000pt;}
.ya2{bottom:358.560000pt;}
.y59{bottom:361.600000pt;}
.yc8{bottom:362.400000pt;}
.y1a{bottom:362.560000pt;}
.yf2{bottom:364.320000pt;}
.y3b{bottom:368.480000pt;}
.y118{bottom:372.320000pt;}
.y129{bottom:377.912320pt;}
.y64{bottom:379.200000pt;}
.y85{bottom:379.360000pt;}
.ya1{bottom:386.240000pt;}
.ydb{bottom:389.280000pt;}
.y19{bottom:390.080000pt;}
.yf1{bottom:392.000000pt;}
.y3a{bottom:396.000000pt;}
.y117{bottom:400.000000pt;}
.y63{bottom:406.720000pt;}
.y84{bottom:407.040000pt;}
.y128{bottom:407.838080pt;}
.ya0{bottom:413.760000pt;}
.yda{bottom:416.800000pt;}
.yc7{bottom:417.600000pt;}
.y18{bottom:417.760000pt;}
.yf0{bottom:419.520000pt;}
.y39{bottom:423.680000pt;}
.y116{bottom:427.520000pt;}
.y58{bottom:434.400000pt;}
.y83{bottom:434.560000pt;}
.y127{bottom:437.911040pt;}
.y9f{bottom:441.440000pt;}
.yd9{bottom:444.480000pt;}
.y17{bottom:445.280000pt;}
.yef{bottom:447.200000pt;}
.y38{bottom:451.200000pt;}
.y115{bottom:455.200000pt;}
.y57{bottom:461.920000pt;}
.y82{bottom:462.240000pt;}
.y126{bottom:467.836800pt;}
.y9e{bottom:468.960000pt;}
.yd8{bottom:472.000000pt;}
.yc6{bottom:472.800000pt;}
.y16{bottom:472.960000pt;}
.yee{bottom:474.720000pt;}
.y37{bottom:478.880000pt;}
.y114{bottom:482.720000pt;}
.y56{bottom:489.600000pt;}
.y81{bottom:489.760000pt;}
.y9d{bottom:496.640000pt;}
.y125{bottom:497.909760pt;}
.yd7{bottom:499.680000pt;}
.y15{bottom:500.480000pt;}
.yed{bottom:502.400000pt;}
.y36{bottom:506.400000pt;}
.y113{bottom:510.400000pt;}
.y55{bottom:517.120000pt;}
.y80{bottom:517.440000pt;}
.y9c{bottom:524.160000pt;}
.yd6{bottom:527.200000pt;}
.y124{bottom:527.835520pt;}
.yc5{bottom:528.000000pt;}
.yec{bottom:529.920000pt;}
.y35{bottom:534.080000pt;}
.y14{bottom:535.360000pt;}
.y112{bottom:537.920000pt;}
.y54{bottom:544.800000pt;}
.y7f{bottom:544.960000pt;}
.y9b{bottom:551.840000pt;}
.yd5{bottom:554.880000pt;}
.yc4{bottom:555.680000pt;}
.yeb{bottom:557.440000pt;}
.y123{bottom:557.761280pt;}
.y34{bottom:561.600000pt;}
.y111{bottom:565.440000pt;}
.y53{bottom:572.320000pt;}
.y7e{bottom:572.640000pt;}
.y13{bottom:576.160000pt;}
.y9a{bottom:579.360000pt;}
.yd4{bottom:582.400000pt;}
.yc3{bottom:583.200000pt;}
.yea{bottom:585.120000pt;}
.y122{bottom:587.834240pt;}
.y33{bottom:589.280000pt;}
.y110{bottom:593.120000pt;}
.y52{bottom:599.840000pt;}
.y7d{bottom:600.160000pt;}
.y12{bottom:603.840000pt;}
.y99{bottom:607.040000pt;}
.yd3{bottom:610.080000pt;}
.yc2{bottom:610.880000pt;}
.ye9{bottom:612.640000pt;}
.y32{bottom:616.800000pt;}
.y121{bottom:617.760000pt;}
.y10f{bottom:620.640000pt;}
.y51{bottom:627.520000pt;}
.y7c{bottom:627.840000pt;}
.y11{bottom:631.360000pt;}
.y98{bottom:634.560000pt;}
.yd2{bottom:637.600000pt;}
.yc1{bottom:638.400000pt;}
.ye8{bottom:640.320000pt;}
.y31{bottom:644.480000pt;}
.y10e{bottom:648.320000pt;}
.y50{bottom:655.040000pt;}
.y7b{bottom:655.360000pt;}
.y10{bottom:659.040000pt;}
.y97{bottom:662.240000pt;}
.yd1{bottom:665.280000pt;}
.yc0{bottom:666.080000pt;}
.ye7{bottom:667.840000pt;}
.y30{bottom:672.000000pt;}
.y10d{bottom:675.840000pt;}
.y4f{bottom:682.720000pt;}
.y7a{bottom:683.040000pt;}
.yf{bottom:686.560000pt;}
.y96{bottom:689.760000pt;}
.yd0{bottom:692.800000pt;}
.ybf{bottom:693.600000pt;}
.ye6{bottom:695.520000pt;}
.yb2{bottom:697.120000pt;}
.y2f{bottom:699.680000pt;}
.y10c{bottom:703.520000pt;}
.y4e{bottom:710.240000pt;}
.y79{bottom:710.560000pt;}
.ye{bottom:714.240000pt;}
.y95{bottom:717.440000pt;}
.ycf{bottom:720.480000pt;}
.ybe{bottom:721.280000pt;}
.ye5{bottom:723.040000pt;}
.y2e{bottom:727.200000pt;}
.y10b{bottom:731.040000pt;}
.y4d{bottom:737.920000pt;}
.y78{bottom:738.240000pt;}
.yd{bottom:741.760000pt;}
.yb1{bottom:744.960000pt;}
.yce{bottom:748.000000pt;}
.ybd{bottom:748.800000pt;}
.ye4{bottom:750.720000pt;}
.y94{bottom:752.320000pt;}
.y2d{bottom:754.880000pt;}
.y10a{bottom:758.720000pt;}
.y4c{bottom:765.440000pt;}
.y77{bottom:765.760000pt;}
.yc{bottom:769.440000pt;}
.yb0{bottom:772.640000pt;}
.ycd{bottom:775.680000pt;}
.ybc{bottom:776.480000pt;}
.ye3{bottom:778.240000pt;}
.y2c{bottom:782.400000pt;}
.y109{bottom:786.240000pt;}
.y4b{bottom:793.120000pt;}
.y76{bottom:793.440000pt;}
.yb{bottom:796.960000pt;}
.yaf{bottom:800.160000pt;}
.ycc{bottom:803.200000pt;}
.ybb{bottom:804.000000pt;}
.ye2{bottom:805.920000pt;}
.y2b{bottom:810.080000pt;}
.y108{bottom:813.920000pt;}
.y4a{bottom:820.640000pt;}
.y75{bottom:820.960000pt;}
.ya{bottom:824.640000pt;}
.yae{bottom:827.840000pt;}
.yba{bottom:831.680000pt;}
.ye1{bottom:833.440000pt;}
.y2a{bottom:837.600000pt;}
.y107{bottom:841.440000pt;}
.y49{bottom:848.320000pt;}
.y74{bottom:848.480000pt;}
.y9{bottom:852.160000pt;}
.yad{bottom:855.360000pt;}
.yb9{bottom:859.200000pt;}
.ye0{bottom:861.120000pt;}
.y29{bottom:865.280000pt;}
.y106{bottom:869.120000pt;}
.y48{bottom:875.840000pt;}
.y73{bottom:876.160000pt;}
.y8{bottom:879.840000pt;}
.yac{bottom:882.880000pt;}
.yb8{bottom:886.880000pt;}
.ydf{bottom:888.640000pt;}
.y28{bottom:892.800000pt;}
.y105{bottom:896.640000pt;}
.y47{bottom:903.520000pt;}
.y72{bottom:903.680000pt;}
.yab{bottom:910.560000pt;}
.y7{bottom:914.240000pt;}
.yb7{bottom:914.400000pt;}
.yde{bottom:916.320000pt;}
.y27{bottom:920.480000pt;}
.y104{bottom:924.320000pt;}
.y46{bottom:931.040000pt;}
.yaa{bottom:938.080000pt;}
.y71{bottom:938.720000pt;}
.yb6{bottom:942.080000pt;}
.ydd{bottom:943.840000pt;}
.y6{bottom:945.446560pt;}
.y26{bottom:948.000000pt;}
.y103{bottom:951.840000pt;}
.y45{bottom:958.720000pt;}
.yb5{bottom:969.600000pt;}
.ya9{bottom:973.120000pt;}
.y5{bottom:973.600000pt;}
.ydc{bottom:978.240000pt;}
.y70{bottom:979.520000pt;}
.y25{bottom:986.240000pt;}
.yb4{bottom:1004.000000pt;}
.y6f{bottom:1007.040000pt;}
.y4{bottom:1012.636160pt;}
.y24{bottom:1013.920000pt;}
.yb3{bottom:1038.880000pt;}
.y23{bottom:1041.440000pt;}
.y3{bottom:1042.400000pt;}
.h3{height:48.558750pt;}
.h4{height:52.152500pt;}
.h2{height:56.156250pt;}
.h9{height:56.312500pt;}
.h7{height:56.687500pt;}
.h6{height:57.031250pt;}
.h8{height:66.726562pt;}
.h5{height:75.851562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.400000pt;}
.x5{left:118.400000pt;}
.x4{left:141.600000pt;}
.x3{left:262.561280pt;}
.x1{left:384.800000pt;}
}




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