
    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_6b4fa292e93a5802a65673b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_003c4ed59833d6774ca43b26.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918945;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_2e11c0cf4d61f3fd1c5f4eca.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.860352;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_2968dd82356e6f03351b2003.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3c3b0bed653af6b7559745d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7a3ddd7b0d05b14a9ecbe8d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.920898;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_6ab587d307b0be0e7f0ebf6e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ebfe095372ff93608d1253ee.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8eca154fb0e2e0efe247863d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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:ffc;src:url('chunks/assets/font_72181aa24afb80f4354b0744.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.691406;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:ffd;src:url('chunks/assets/font_47b9e0b9e7f5f7371e5d70a7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.710449;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-1.296000px;}
.ls12{letter-spacing:-1.134000px;}
.ls18{letter-spacing:-0.504000px;}
.ls11{letter-spacing:-0.463800px;}
.ls14{letter-spacing:-0.423600px;}
.ls1a{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.648000px;}
.ls15{letter-spacing:0.720000px;}
.ls1c{letter-spacing:1.296000px;}
.ls1d{letter-spacing:1.440000px;}
.lsc{letter-spacing:2.160000px;}
.lsa{letter-spacing:2.304000px;}
.lsd{letter-spacing:2.520000px;}
.ls8{letter-spacing:2.592000px;}
.ls1{letter-spacing:2.664000px;}
.lse{letter-spacing:2.736000px;}
.ls4{letter-spacing:2.880000px;}
.ls5{letter-spacing:2.928000px;}
.lsf{letter-spacing:3.000000px;}
.ls9{letter-spacing:3.024000px;}
.ls3{letter-spacing:3.168000px;}
.ls2{letter-spacing:3.240000px;}
.ls7{letter-spacing:3.312000px;}
.lsb{letter-spacing:3.348000px;}
.ls6{letter-spacing:3.528000px;}
.ls17{letter-spacing:18.000000px;}
.ls16{letter-spacing:19.560000px;}
.ls10{letter-spacing:95.196000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws2{word-spacing:-66.240000px;}
.wse{word-spacing:-19.440000px;}
.wsd{word-spacing:-19.296000px;}
.wsa{word-spacing:-18.648000px;}
.ws5{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.496000px;}
.wsc{word-spacing:-16.704000px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-14.506440px;}
.ws7{word-spacing:-13.701024px;}
.ws6{word-spacing:-13.668480px;}
.ws0{word-spacing:0.000000px;}
._18{margin-left:-14.172960px;}
._13{margin-left:-3.499560px;}
._2{margin-left:-2.409600px;}
._1{margin-left:-1.037760px;}
._0{width:1.560360px;}
._3{width:2.660160px;}
._5{width:3.845760px;}
._c{width:5.374080px;}
._f{width:6.448920px;}
._d{width:7.517760px;}
._e{width:8.804520px;}
._15{width:10.253760px;}
._11{width:11.645400px;}
._10{width:12.762840px;}
._12{width:14.072160px;}
._16{width:15.913080px;}
._14{width:16.986120px;}
._7{width:19.364160px;}
._6{width:20.777280px;}
._b{width:21.888000px;}
._a{width:23.573760px;}
._9{width:24.765000px;}
._8{width:25.820280px;}
._21{width:31.997760px;}
._22{width:33.105240px;}
._20{width:34.887960px;}
._1f{width:36.350280px;}
._26{width:38.016000px;}
._27{width:39.069360px;}
._19{width:75.998640px;}
._1a{width:77.285760px;}
._17{width:136.049760px;}
._4{width:151.920000px;}
._1c{width:167.438640px;}
._1b{width:168.711000px;}
._1e{width:170.264280px;}
._1d{width:171.591000px;}
._25{width:175.935000px;}
._23{width:177.287640px;}
._24{width:178.623360px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(140,140,140);}
.fc1{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:60.480000px;}
.fs8{font-size:60.624000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.480000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:5.760000px;}
.yb5{bottom:8.310000px;}
.yd0{bottom:8.385000px;}
.yb9{bottom:8.430000px;}
.ybf{bottom:8.460000px;}
.yc1{bottom:8.490000px;}
.ycc{bottom:8.535000px;}
.ycf{bottom:8.565000px;}
.yb3{bottom:8.610000px;}
.yd8{bottom:8.640000px;}
.yc4{bottom:8.670000px;}
.yd3{bottom:8.715000px;}
.yd1{bottom:8.745000px;}
.ybc{bottom:8.790000px;}
.yb7{bottom:8.820000px;}
.yca{bottom:8.850000px;}
.yd5{bottom:8.925000px;}
.y24{bottom:49.356000px;}
.y22{bottom:57.276000px;}
.y23{bottom:57.996000px;}
.y4{bottom:97.125005px;}
.y20{bottom:105.156000px;}
.y21{bottom:105.876000px;}
.ydb{bottom:109.440000px;}
.yab{bottom:124.635000px;}
.y9c{bottom:135.072000px;}
.yda{bottom:136.590000px;}
.y1f{bottom:139.264499px;}
.y8b{bottom:139.392000px;}
.y74{bottom:139.752000px;}
.ya9{bottom:140.832000px;}
.y48{bottom:142.632000px;}
.yac{bottom:142.890000px;}
.y60{bottom:147.312000px;}
.yf5{bottom:154.515000px;}
.yad{bottom:161.100000px;}
.y9b{bottom:166.035000px;}
.y8a{bottom:170.355000px;}
.ya8{bottom:172.515000px;}
.y47{bottom:173.595000px;}
.yf4{bottom:177.915000px;}
.y5f{bottom:178.275000px;}
.y73{bottom:178.635000px;}
.yae{bottom:179.355000px;}
.y16{bottom:196.933500px;}
.y9a{bottom:196.995000px;}
.yaf{bottom:197.610000px;}
.y89{bottom:201.315000px;}
.yf3{bottom:201.675000px;}
.y46{bottom:204.555000px;}
.y5e{bottom:209.235000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.yb0{bottom:215.820000px;}
.y72{bottom:217.515000px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y99{bottom:227.955000px;}
.y88{bottom:232.275000px;}
.yf2{bottom:232.635000px;}
.yb1{bottom:234.075000px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y45{bottom:235.515000px;}
.y5d{bottom:240.195000px;}
.yf8{bottom:248.145000px;}
.y71{bottom:256.425000px;}
.y98{bottom:258.945000px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y87{bottom:263.625000px;}
.y44{bottom:266.865000px;}
.y5c{bottom:271.545000px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.yf7{bottom:279.105000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y97{bottom:290.265000px;}
.y86{bottom:294.585000px;}
.y70{bottom:295.305000px;}
.y43{bottom:297.825000px;}
.y5b{bottom:302.145000px;}
.yf1{bottom:302.505000px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.yf6{bottom:310.425000px;}
.y96{bottom:321.225000px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y85{bottom:325.545000px;}
.y42{bottom:328.785000px;}
.y6f{bottom:333.825000px;}
.yf0{bottom:341.385000px;}
.y5a{bottom:341.745000px;}
.yd{bottom:348.133500px;}
.y95{bottom:352.185000px;}
.y84{bottom:356.505000px;}
.y41{bottom:359.745000px;}
.y59{bottom:372.390000px;}
.y6e{bottom:372.750000px;}
.yef{bottom:380.670000px;}
.y94{bottom:383.190000px;}
.yc{bottom:386.785499px;}
.y83{bottom:387.870000px;}
.y40{bottom:391.110000px;}
.y58{bottom:403.350000px;}
.yb{bottom:408.044999px;}
.y93{bottom:414.510000px;}
.y82{bottom:418.830000px;}
.yee{bottom:419.550000px;}
.y3f{bottom:422.070000px;}
.ya7{bottom:425.670000px;}
.y57{bottom:434.310000px;}
.y6d{bottom:434.670000px;}
.y92{bottom:445.470000px;}
.y81{bottom:449.790000px;}
.yed{bottom:450.150000px;}
.y3e{bottom:452.670000px;}
.ya6{bottom:463.830000px;}
.y56{bottom:465.630000px;}
.y91{bottom:476.430000px;}
.y80{bottom:480.750000px;}
.yec{bottom:481.110000px;}
.y3d{bottom:483.630000px;}
.ya5{bottom:494.430000px;}
.y55{bottom:496.620000px;}
.y7f{bottom:512.100000px;}
.y90{bottom:514.260000px;}
.ya{bottom:520.864502px;}
.y3c{bottom:523.260000px;}
.ya4{bottom:525.420000px;}
.y54{bottom:527.580000px;}
.y9{bottom:538.864499px;}
.y7e{bottom:543.060000px;}
.yeb{bottom:543.420000px;}
.y8f{bottom:546.300000px;}
.ya3{bottom:556.740000px;}
.y8{bottom:556.864499px;}
.y53{bottom:558.540000px;}
.y6c{bottom:558.900000px;}
.y3b{bottom:562.140000px;}
.y7d{bottom:574.020000px;}
.yea{bottom:574.380000px;}
.y3a{bottom:582.300000px;}
.ya2{bottom:587.700000px;}
.y52{bottom:589.860000px;}
.y39{bottom:601.020000px;}
.y7c{bottom:604.980000px;}
.ye9{bottom:605.340000px;}
.ya1{bottom:618.660000px;}
.y51{bottom:620.820000px;}
.y38{bottom:635.250000px;}
.y7b{bottom:636.330000px;}
.y7{bottom:645.510000px;}
.y50{bottom:649.650000px;}
.y6b{bottom:651.810000px;}
.y6{bottom:666.771000px;}
.y7a{bottom:667.290000px;}
.ye8{bottom:667.650000px;}
.y37{bottom:669.090000px;}
.ya0{bottom:680.970000px;}
.y6a{bottom:683.130000px;}
.y4f{bottom:684.210000px;}
.y36{bottom:688.170000px;}
.y79{bottom:698.250000px;}
.ye7{bottom:698.610000px;}
.y35{bottom:707.250000px;}
.y69{bottom:714.090000px;}
.y4e{bottom:716.250000px;}
.y9f{bottom:719.850000px;}
.y34{bottom:725.970000px;}
.y5{bottom:726.298500px;}
.ye6{bottom:729.570000px;}
.y78{bottom:736.050000px;}
.y33{bottom:745.050000px;}
.y3{bottom:752.599495px;}
.y9e{bottom:757.335000px;}
.ye5{bottom:760.575000px;}
.y32{bottom:764.175000px;}
.y77{bottom:767.775000px;}
.y68{bottom:776.055000px;}
.y31{bottom:782.895000px;}
.yaa{bottom:789.120000px;}
.y9d{bottom:789.375000px;}
.ye4{bottom:791.175000px;}
.yc9{bottom:796.320000px;}
.yc5{bottom:796.680000px;}
.y30{bottom:801.975000px;}
.ybe{bottom:803.880000px;}
.y67{bottom:807.375000px;}
.yc8{bottom:819.000000px;}
.ybb{bottom:820.080000px;}
.y2f{bottom:821.055000px;}
.ye3{bottom:822.495000px;}
.yc6{bottom:833.040000px;}
.yb8{bottom:835.920000px;}
.y66{bottom:838.335000px;}
.yba{bottom:838.800000px;}
.yb4{bottom:839.520000px;}
.y8e{bottom:840.855000px;}
.yd7{bottom:841.320000px;}
.yc2{bottom:843.840000px;}
.yce{bottom:844.200000px;}
.yb2{bottom:845.640000px;}
.yb6{bottom:846.720000px;}
.yc0{bottom:850.680000px;}
.yc7{bottom:851.760000px;}
.ybd{bottom:852.480000px;}
.yd2{bottom:853.200000px;}
.yd4{bottom:853.560000px;}
.ycb{bottom:854.280000px;}
.y2e{bottom:858.495000px;}
.yd6{bottom:859.320000px;}
.yc3{bottom:859.680000px;}
.ycd{bottom:861.840000px;}
.ye2{bottom:862.095000px;}
.y8d{bottom:862.815000px;}
.yd9{bottom:869.040000px;}
.y65{bottom:869.295000px;}
.y2d{bottom:878.685000px;}
.y2{bottom:879.369000px;}
.ye1{bottom:892.725000px;}
.y2c{bottom:897.765000px;}
.y64{bottom:900.285000px;}
.y8c{bottom:900.645000px;}
.y2b{bottom:916.485000px;}
.ye0{bottom:923.685000px;}
.y63{bottom:931.605000px;}
.y2a{bottom:935.565000px;}
.y29{bottom:954.645000px;}
.y4d{bottom:955.725000px;}
.y62{bottom:962.565000px;}
.y1{bottom:966.726000px;}
.y28{bottom:973.365000px;}
.ydf{bottom:985.605000px;}
.y61{bottom:993.525000px;}
.y4c{bottom:993.885000px;}
.y27{bottom:1013.370000px;}
.yde{bottom:1016.970000px;}
.y4b{bottom:1024.530000px;}
.y26{bottom:1044.690000px;}
.ydd{bottom:1047.930000px;}
.y4a{bottom:1055.850000px;}
.y76{bottom:1065.930000px;}
.y49{bottom:1086.810000px;}
.ydc{bottom:1087.170000px;}
.y75{bottom:1087.890000px;}
.ha{height:21.600000px;}
.h7{height:32.130000px;}
.h16{height:41.255156px;}
.h1a{height:41.353383px;}
.h2f{height:44.280000px;}
.hb{height:45.184219px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h14{height:49.992188px;}
.h9{height:50.449219px;}
.h29{height:51.480000px;}
.h22{height:53.640000px;}
.h2d{height:54.000000px;}
.h2{height:55.080000px;}
.h28{height:59.040000px;}
.h13{height:59.357813px;}
.h2c{height:59.760000px;}
.h2b{height:60.120000px;}
.h1e{height:60.840000px;}
.h25{height:61.560000px;}
.h20{height:62.640000px;}
.h10{height:64.978594px;}
.he{height:65.010937px;}
.h19{height:66.600000px;}
.hd{height:66.757500px;}
.h17{height:67.680000px;}
.h2a{height:69.120000px;}
.h21{height:69.480000px;}
.h11{height:70.664062px;}
.h2e{height:72.000000px;}
.hf{height:72.562500px;}
.h18{height:73.800000px;}
.h1b{height:74.160000px;}
.h1c{height:74.520000px;}
.h12{height:74.953125px;}
.h24{height:77.040000px;}
.h5{height:78.030000px;}
.h1d{height:93.240000px;}
.h26{height:94.320000px;}
.hc{height:97.233750px;}
.h1f{height:109.440000px;}
.h23{height:116.640000px;}
.h27{height:117.000000px;}
.h4{height:119.055004px;}
.h31{height:123.840000px;}
.h30{height:151.200000px;}
.h15{height:255.240000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:19.800000px;}
.w7{width:48.600000px;}
.w4{width:49.356000px;}
.w2{width:637.794021px;}
.w5{width:702.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x5e{left:9.435000px;}
.x2a{left:11.880000px;}
.x45{left:14.430000px;}
.x43{left:16.590000px;}
.x42{left:24.015000px;}
.x5{left:85.716000px;}
.x3b{left:87.156000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x3f{left:124.236000px;}
.x32{left:127.476000px;}
.x37{left:137.952000px;}
.x41{left:140.400000px;}
.x60{left:148.752000px;}
.x5f{left:165.315000px;}
.x6{left:180.075000px;}
.x44{left:186.840000px;}
.x7{left:189.435000px;}
.x8{left:199.875000px;}
.x4{left:203.484001px;}
.x46{left:206.640000px;}
.x2b{left:207.795000px;}
.x9{left:208.875000px;}
.xa{left:212.835000px;}
.x33{left:216.795000px;}
.x47{left:226.440000px;}
.xb{left:229.425000px;}
.xc{left:239.145000px;}
.xd{left:246.705000px;}
.xe{left:256.065000px;}
.xf{left:261.105000px;}
.x48{left:266.040000px;}
.x10{left:271.185000px;}
.x11{left:280.185000px;}
.x12{left:284.145000px;}
.x49{left:285.840000px;}
.x13{left:294.225000px;}
.x14{left:302.865000px;}
.x4a{left:305.640000px;}
.x15{left:312.990000px;}
.x16{left:321.630000px;}
.x4b{left:325.440000px;}
.x17{left:329.190000px;}
.x18{left:336.750000px;}
.x19{left:340.350000px;}
.x1a{left:344.310000px;}
.x1b{left:350.070000px;}
.x1c{left:355.830000px;}
.x1d{left:361.590000px;}
.x1e{left:365.190000px;}
.x1f{left:369.150000px;}
.x35{left:372.750000px;}
.x20{left:375.990000px;}
.x21{left:386.070000px;}
.x22{left:392.910000px;}
.x23{left:396.510000px;}
.x24{left:400.500000px;}
.x4c{left:405.000000px;}
.x36{left:409.140000px;}
.x25{left:410.580000px;}
.x3c{left:411.660000px;}
.x26{left:420.660000px;}
.x4d{left:424.800000px;}
.x27{left:430.740000px;}
.x3a{left:435.780000px;}
.x28{left:440.820000px;}
.x38{left:445.500000px;}
.x3{left:454.959000px;}
.x2c{left:459.180000px;}
.x4e{left:464.400000px;}
.x4f{left:484.200000px;}
.x3e{left:485.460000px;}
.x50{left:504.000000px;}
.x51{left:523.800000px;}
.x52{left:543.600000px;}
.x2e{left:557.850000px;}
.x53{left:563.400000px;}
.x54{left:583.200000px;}
.x55{left:603.000000px;}
.x56{left:622.800000px;}
.x57{left:642.960000px;}
.x31{left:655.455000px;}
.x30{left:660.855000px;}
.x58{left:662.760000px;}
.x2f{left:672.765000px;}
.x2d{left:678.525000px;}
.x59{left:682.560000px;}
.x5a{left:702.360000px;}
.x5b{left:722.160000px;}
.x39{left:726.405000px;}
.x5c{left:741.960000px;}
.x5d{left:787.680000px;}
.x34{left:794.130000px;}
.x29{left:808.530000px;}
.x40{left:827.610000px;}
.x3d{left:844.530000px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-1.152000pt;}
.ls12{letter-spacing:-1.008000pt;}
.ls18{letter-spacing:-0.448000pt;}
.ls11{letter-spacing:-0.412267pt;}
.ls14{letter-spacing:-0.376533pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.576000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:1.152000pt;}
.ls1d{letter-spacing:1.280000pt;}
.lsc{letter-spacing:1.920000pt;}
.lsa{letter-spacing:2.048000pt;}
.lsd{letter-spacing:2.240000pt;}
.ls8{letter-spacing:2.304000pt;}
.ls1{letter-spacing:2.368000pt;}
.lse{letter-spacing:2.432000pt;}
.ls4{letter-spacing:2.560000pt;}
.ls5{letter-spacing:2.602667pt;}
.lsf{letter-spacing:2.666667pt;}
.ls9{letter-spacing:2.688000pt;}
.ls3{letter-spacing:2.816000pt;}
.ls2{letter-spacing:2.880000pt;}
.ls7{letter-spacing:2.944000pt;}
.lsb{letter-spacing:2.976000pt;}
.ls6{letter-spacing:3.136000pt;}
.ls17{letter-spacing:16.000000pt;}
.ls16{letter-spacing:17.386667pt;}
.ls10{letter-spacing:84.618667pt;}
.ws8{word-spacing:-64.000000pt;}
.ws2{word-spacing:-58.880000pt;}
.wse{word-spacing:-17.280000pt;}
.wsd{word-spacing:-17.152000pt;}
.wsa{word-spacing:-16.576000pt;}
.ws5{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.552000pt;}
.wsc{word-spacing:-14.848000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.178688pt;}
.ws6{word-spacing:-12.149760pt;}
.ws0{word-spacing:0.000000pt;}
._18{margin-left:-12.598187pt;}
._13{margin-left:-3.110720pt;}
._2{margin-left:-2.141867pt;}
._1{margin-left:-0.922453pt;}
._0{width:1.386987pt;}
._3{width:2.364587pt;}
._5{width:3.418453pt;}
._c{width:4.776960pt;}
._f{width:5.732373pt;}
._d{width:6.682453pt;}
._e{width:7.826240pt;}
._15{width:9.114453pt;}
._11{width:10.351467pt;}
._10{width:11.344747pt;}
._12{width:12.508587pt;}
._16{width:14.144960pt;}
._14{width:15.098773pt;}
._7{width:17.212587pt;}
._6{width:18.468693pt;}
._b{width:19.456000pt;}
._a{width:20.954453pt;}
._9{width:22.013333pt;}
._8{width:22.951360pt;}
._21{width:28.442453pt;}
._22{width:29.426880pt;}
._20{width:31.011520pt;}
._1f{width:32.311360pt;}
._26{width:33.792000pt;}
._27{width:34.728320pt;}
._19{width:67.554347pt;}
._1a{width:68.698453pt;}
._17{width:120.933120pt;}
._4{width:135.040000pt;}
._1c{width:148.834347pt;}
._1b{width:149.965333pt;}
._1e{width:151.346027pt;}
._1d{width:152.525333pt;}
._25{width:156.386667pt;}
._23{width:157.589013pt;}
._24{width:158.776320pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:53.760000pt;}
.fs8{font-size:53.888000pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.760000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:5.120000pt;}
.yb5{bottom:7.386667pt;}
.yd0{bottom:7.453333pt;}
.yb9{bottom:7.493333pt;}
.ybf{bottom:7.520000pt;}
.yc1{bottom:7.546667pt;}
.ycc{bottom:7.586667pt;}
.ycf{bottom:7.613333pt;}
.yb3{bottom:7.653333pt;}
.yd8{bottom:7.680000pt;}
.yc4{bottom:7.706667pt;}
.yd3{bottom:7.746667pt;}
.yd1{bottom:7.773333pt;}
.ybc{bottom:7.813333pt;}
.yb7{bottom:7.840000pt;}
.yca{bottom:7.866667pt;}
.yd5{bottom:7.933333pt;}
.y24{bottom:43.872000pt;}
.y22{bottom:50.912000pt;}
.y23{bottom:51.552000pt;}
.y4{bottom:86.333337pt;}
.y20{bottom:93.472000pt;}
.y21{bottom:94.112000pt;}
.ydb{bottom:97.280000pt;}
.yab{bottom:110.786667pt;}
.y9c{bottom:120.064000pt;}
.yda{bottom:121.413333pt;}
.y1f{bottom:123.790666pt;}
.y8b{bottom:123.904000pt;}
.y74{bottom:124.224000pt;}
.ya9{bottom:125.184000pt;}
.y48{bottom:126.784000pt;}
.yac{bottom:127.013333pt;}
.y60{bottom:130.944000pt;}
.yf5{bottom:137.346667pt;}
.yad{bottom:143.200000pt;}
.y9b{bottom:147.586667pt;}
.y8a{bottom:151.426667pt;}
.ya8{bottom:153.346667pt;}
.y47{bottom:154.306667pt;}
.yf4{bottom:158.146667pt;}
.y5f{bottom:158.466667pt;}
.y73{bottom:158.786667pt;}
.yae{bottom:159.426667pt;}
.y16{bottom:175.052000pt;}
.y9a{bottom:175.106667pt;}
.yaf{bottom:175.653333pt;}
.y89{bottom:178.946667pt;}
.yf3{bottom:179.266667pt;}
.y46{bottom:181.826667pt;}
.y5e{bottom:185.986667pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.yb0{bottom:191.840000pt;}
.y72{bottom:193.346667pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y99{bottom:202.626667pt;}
.y88{bottom:206.466667pt;}
.yf2{bottom:206.786667pt;}
.yb1{bottom:208.066667pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y45{bottom:209.346667pt;}
.y5d{bottom:213.506667pt;}
.yf8{bottom:220.573333pt;}
.y71{bottom:227.933333pt;}
.y98{bottom:230.173333pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y87{bottom:234.333333pt;}
.y44{bottom:237.213333pt;}
.y5c{bottom:241.373333pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.yf7{bottom:248.093333pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y97{bottom:258.013333pt;}
.y86{bottom:261.853333pt;}
.y70{bottom:262.493333pt;}
.y43{bottom:264.733333pt;}
.y5b{bottom:268.573333pt;}
.yf1{bottom:268.893333pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.yf6{bottom:275.933333pt;}
.y96{bottom:285.533333pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y85{bottom:289.373333pt;}
.y42{bottom:292.253333pt;}
.y6f{bottom:296.733333pt;}
.yf0{bottom:303.453333pt;}
.y5a{bottom:303.773333pt;}
.yd{bottom:309.452000pt;}
.y95{bottom:313.053333pt;}
.y84{bottom:316.893333pt;}
.y41{bottom:319.773333pt;}
.y59{bottom:331.013333pt;}
.y6e{bottom:331.333333pt;}
.yef{bottom:338.373333pt;}
.y94{bottom:340.613333pt;}
.yc{bottom:343.809333pt;}
.y83{bottom:344.773333pt;}
.y40{bottom:347.653333pt;}
.y58{bottom:358.533333pt;}
.yb{bottom:362.706666pt;}
.y93{bottom:368.453333pt;}
.y82{bottom:372.293333pt;}
.yee{bottom:372.933333pt;}
.y3f{bottom:375.173333pt;}
.ya7{bottom:378.373333pt;}
.y57{bottom:386.053333pt;}
.y6d{bottom:386.373333pt;}
.y92{bottom:395.973333pt;}
.y81{bottom:399.813333pt;}
.yed{bottom:400.133333pt;}
.y3e{bottom:402.373333pt;}
.ya6{bottom:412.293333pt;}
.y56{bottom:413.893333pt;}
.y91{bottom:423.493333pt;}
.y80{bottom:427.333333pt;}
.yec{bottom:427.653333pt;}
.y3d{bottom:429.893333pt;}
.ya5{bottom:439.493333pt;}
.y55{bottom:441.440000pt;}
.y7f{bottom:455.200000pt;}
.y90{bottom:457.120000pt;}
.ya{bottom:462.990669pt;}
.y3c{bottom:465.120000pt;}
.ya4{bottom:467.040000pt;}
.y54{bottom:468.960000pt;}
.y9{bottom:478.990666pt;}
.y7e{bottom:482.720000pt;}
.yeb{bottom:483.040000pt;}
.y8f{bottom:485.600000pt;}
.ya3{bottom:494.880000pt;}
.y8{bottom:494.990666pt;}
.y53{bottom:496.480000pt;}
.y6c{bottom:496.800000pt;}
.y3b{bottom:499.680000pt;}
.y7d{bottom:510.240000pt;}
.yea{bottom:510.560000pt;}
.y3a{bottom:517.600000pt;}
.ya2{bottom:522.400000pt;}
.y52{bottom:524.320000pt;}
.y39{bottom:534.240000pt;}
.y7c{bottom:537.760000pt;}
.ye9{bottom:538.080000pt;}
.ya1{bottom:549.920000pt;}
.y51{bottom:551.840000pt;}
.y38{bottom:564.666667pt;}
.y7b{bottom:565.626667pt;}
.y7{bottom:573.786667pt;}
.y50{bottom:577.466667pt;}
.y6b{bottom:579.386667pt;}
.y6{bottom:592.685334pt;}
.y7a{bottom:593.146667pt;}
.ye8{bottom:593.466667pt;}
.y37{bottom:594.746667pt;}
.ya0{bottom:605.306667pt;}
.y6a{bottom:607.226667pt;}
.y4f{bottom:608.186667pt;}
.y36{bottom:611.706667pt;}
.y79{bottom:620.666667pt;}
.ye7{bottom:620.986667pt;}
.y35{bottom:628.666667pt;}
.y69{bottom:634.746667pt;}
.y4e{bottom:636.666667pt;}
.y9f{bottom:639.866667pt;}
.y34{bottom:645.306667pt;}
.y5{bottom:645.598667pt;}
.ye6{bottom:648.506667pt;}
.y78{bottom:654.266667pt;}
.y33{bottom:662.266667pt;}
.y3{bottom:668.977329pt;}
.y9e{bottom:673.186667pt;}
.ye5{bottom:676.066667pt;}
.y32{bottom:679.266667pt;}
.y77{bottom:682.466667pt;}
.y68{bottom:689.826667pt;}
.y31{bottom:695.906667pt;}
.yaa{bottom:701.440000pt;}
.y9d{bottom:701.666667pt;}
.ye4{bottom:703.266667pt;}
.yc9{bottom:707.840000pt;}
.yc5{bottom:708.160000pt;}
.y30{bottom:712.866667pt;}
.ybe{bottom:714.560000pt;}
.y67{bottom:717.666667pt;}
.yc8{bottom:728.000000pt;}
.ybb{bottom:728.960000pt;}
.y2f{bottom:729.826667pt;}
.ye3{bottom:731.106667pt;}
.yc6{bottom:740.480000pt;}
.yb8{bottom:743.040000pt;}
.y66{bottom:745.186667pt;}
.yba{bottom:745.600000pt;}
.yb4{bottom:746.240000pt;}
.y8e{bottom:747.426667pt;}
.yd7{bottom:747.840000pt;}
.yc2{bottom:750.080000pt;}
.yce{bottom:750.400000pt;}
.yb2{bottom:751.680000pt;}
.yb6{bottom:752.640000pt;}
.yc0{bottom:756.160000pt;}
.yc7{bottom:757.120000pt;}
.ybd{bottom:757.760000pt;}
.yd2{bottom:758.400000pt;}
.yd4{bottom:758.720000pt;}
.ycb{bottom:759.360000pt;}
.y2e{bottom:763.106667pt;}
.yd6{bottom:763.840000pt;}
.yc3{bottom:764.160000pt;}
.ycd{bottom:766.080000pt;}
.ye2{bottom:766.306667pt;}
.y8d{bottom:766.946667pt;}
.yd9{bottom:772.480000pt;}
.y65{bottom:772.706667pt;}
.y2d{bottom:781.053333pt;}
.y2{bottom:781.661334pt;}
.ye1{bottom:793.533333pt;}
.y2c{bottom:798.013333pt;}
.y64{bottom:800.253333pt;}
.y8c{bottom:800.573333pt;}
.y2b{bottom:814.653333pt;}
.ye0{bottom:821.053333pt;}
.y63{bottom:828.093333pt;}
.y2a{bottom:831.613333pt;}
.y29{bottom:848.573333pt;}
.y4d{bottom:849.533333pt;}
.y62{bottom:855.613333pt;}
.y1{bottom:859.312000pt;}
.y28{bottom:865.213333pt;}
.ydf{bottom:876.093333pt;}
.y61{bottom:883.133333pt;}
.y4c{bottom:883.453333pt;}
.y27{bottom:900.773333pt;}
.yde{bottom:903.973333pt;}
.y4b{bottom:910.693333pt;}
.y26{bottom:928.613333pt;}
.ydd{bottom:931.493333pt;}
.y4a{bottom:938.533333pt;}
.y76{bottom:947.493333pt;}
.y49{bottom:966.053333pt;}
.ydc{bottom:966.373333pt;}
.y75{bottom:967.013333pt;}
.ha{height:19.200000pt;}
.h7{height:28.560000pt;}
.h16{height:36.671250pt;}
.h1a{height:36.758562pt;}
.h2f{height:39.360000pt;}
.hb{height:40.163750pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h14{height:44.437500pt;}
.h9{height:44.843750pt;}
.h29{height:45.760000pt;}
.h22{height:47.680000pt;}
.h2d{height:48.000000pt;}
.h2{height:48.960000pt;}
.h28{height:52.480000pt;}
.h13{height:52.762500pt;}
.h2c{height:53.120000pt;}
.h2b{height:53.440000pt;}
.h1e{height:54.080000pt;}
.h25{height:54.720000pt;}
.h20{height:55.680000pt;}
.h10{height:57.758750pt;}
.he{height:57.787500pt;}
.h19{height:59.200000pt;}
.hd{height:59.340000pt;}
.h17{height:60.160000pt;}
.h2a{height:61.440000pt;}
.h21{height:61.760000pt;}
.h11{height:62.812500pt;}
.h2e{height:64.000000pt;}
.hf{height:64.500000pt;}
.h18{height:65.600000pt;}
.h1b{height:65.920000pt;}
.h1c{height:66.240000pt;}
.h12{height:66.625000pt;}
.h24{height:68.480000pt;}
.h5{height:69.360000pt;}
.h1d{height:82.880000pt;}
.h26{height:83.840000pt;}
.hc{height:86.430000pt;}
.h1f{height:97.280000pt;}
.h23{height:103.680000pt;}
.h27{height:104.000000pt;}
.h4{height:105.826671pt;}
.h31{height:110.080000pt;}
.h30{height:134.400000pt;}
.h15{height:226.880000pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:17.600000pt;}
.w7{width:43.200000pt;}
.w4{width:43.872000pt;}
.w2{width:566.928019pt;}
.w5{width:624.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5e{left:8.386667pt;}
.x2a{left:10.560000pt;}
.x45{left:12.826667pt;}
.x43{left:14.746667pt;}
.x42{left:21.346667pt;}
.x5{left:76.192000pt;}
.x3b{left:77.472000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x3f{left:110.432000pt;}
.x32{left:113.312000pt;}
.x37{left:122.624000pt;}
.x41{left:124.800000pt;}
.x60{left:132.224000pt;}
.x5f{left:146.946667pt;}
.x6{left:160.066667pt;}
.x44{left:166.080000pt;}
.x7{left:168.386667pt;}
.x8{left:177.666667pt;}
.x4{left:180.874667pt;}
.x46{left:183.680000pt;}
.x2b{left:184.706667pt;}
.x9{left:185.666667pt;}
.xa{left:189.186667pt;}
.x33{left:192.706667pt;}
.x47{left:201.280000pt;}
.xb{left:203.933333pt;}
.xc{left:212.573333pt;}
.xd{left:219.293333pt;}
.xe{left:227.613333pt;}
.xf{left:232.093333pt;}
.x48{left:236.480000pt;}
.x10{left:241.053333pt;}
.x11{left:249.053333pt;}
.x12{left:252.573333pt;}
.x49{left:254.080000pt;}
.x13{left:261.533333pt;}
.x14{left:269.213333pt;}
.x4a{left:271.680000pt;}
.x15{left:278.213333pt;}
.x16{left:285.893333pt;}
.x4b{left:289.280000pt;}
.x17{left:292.613333pt;}
.x18{left:299.333333pt;}
.x19{left:302.533333pt;}
.x1a{left:306.053333pt;}
.x1b{left:311.173333pt;}
.x1c{left:316.293333pt;}
.x1d{left:321.413333pt;}
.x1e{left:324.613333pt;}
.x1f{left:328.133333pt;}
.x35{left:331.333333pt;}
.x20{left:334.213333pt;}
.x21{left:343.173333pt;}
.x22{left:349.253333pt;}
.x23{left:352.453333pt;}
.x24{left:356.000000pt;}
.x4c{left:360.000000pt;}
.x36{left:363.680000pt;}
.x25{left:364.960000pt;}
.x3c{left:365.920000pt;}
.x26{left:373.920000pt;}
.x4d{left:377.600000pt;}
.x27{left:382.880000pt;}
.x3a{left:387.360000pt;}
.x28{left:391.840000pt;}
.x38{left:396.000000pt;}
.x3{left:404.408000pt;}
.x2c{left:408.160000pt;}
.x4e{left:412.800000pt;}
.x4f{left:430.400000pt;}
.x3e{left:431.520000pt;}
.x50{left:448.000000pt;}
.x51{left:465.600000pt;}
.x52{left:483.200000pt;}
.x2e{left:495.866667pt;}
.x53{left:500.800000pt;}
.x54{left:518.400000pt;}
.x55{left:536.000000pt;}
.x56{left:553.600000pt;}
.x57{left:571.520000pt;}
.x31{left:582.626667pt;}
.x30{left:587.426667pt;}
.x58{left:589.120000pt;}
.x2f{left:598.013333pt;}
.x2d{left:603.133333pt;}
.x59{left:606.720000pt;}
.x5a{left:624.320000pt;}
.x5b{left:641.920000pt;}
.x39{left:645.693333pt;}
.x5c{left:659.520000pt;}
.x5d{left:700.160000pt;}
.x34{left:705.893333pt;}
.x29{left:718.693333pt;}
.x40{left:735.653333pt;}
.x3d{left:750.693333pt;}
}




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