
    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_06a285469afbb7b900fcda00.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_6f96987daa7b65d2f3bba6a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_f602c24f177f619299d93f34.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_25ea3cb0010e1c767e776981.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_a51ab931f50d22c59dee8de4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_0682a78ceeb5a810188fe3f3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_eeb5f481932e9f61cddc8741.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_21b6117383d5419b940b4a6b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m2{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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls44{letter-spacing:-1.728000px;}
.ls43{letter-spacing:-1.440000px;}
.ls45{letter-spacing:-1.224000px;}
.ls2d{letter-spacing:-1.008000px;}
.ls18{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.576000px;}
.ls4d{letter-spacing:-0.432000px;}
.ls35{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.072000px;}
.ls12{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.072000px;}
.ls37{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.144000px;}
.ls50{letter-spacing:0.152640px;}
.ls57{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.216000px;}
.ls36{letter-spacing:0.252000px;}
.ls14{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.288000px;}
.ls3a{letter-spacing:0.324000px;}
.ls1d{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.378600px;}
.ls7{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.504000px;}
.ls40{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.720000px;}
.ls38{letter-spacing:0.792000px;}
.ls3f{letter-spacing:1.440000px;}
.ls52{letter-spacing:2.160000px;}
.ls30{letter-spacing:2.880000px;}
.ls4{letter-spacing:3.600000px;}
.ls3e{letter-spacing:4.320000px;}
.ls2a{letter-spacing:5.040000px;}
.ls3c{letter-spacing:5.760000px;}
.ls1f{letter-spacing:6.480000px;}
.ls2b{letter-spacing:7.200000px;}
.ls27{letter-spacing:7.920000px;}
.ls24{letter-spacing:9.360000px;}
.ls6{letter-spacing:10.800000px;}
.ls32{letter-spacing:11.520000px;}
.lsc{letter-spacing:12.240000px;}
.ls21{letter-spacing:14.400000px;}
.ls26{letter-spacing:15.120000px;}
.ls47{letter-spacing:16.560000px;}
.lsa{letter-spacing:18.000000px;}
.ls1c{letter-spacing:20.160000px;}
.ls28{letter-spacing:21.600000px;}
.ls46{letter-spacing:22.320000px;}
.ls11{letter-spacing:23.040000px;}
.ls4b{letter-spacing:23.760000px;}
.ls33{letter-spacing:24.480000px;}
.ls34{letter-spacing:24.660000px;}
.ls3d{letter-spacing:25.200000px;}
.ls4e{letter-spacing:26.640000px;}
.ls1e{letter-spacing:27.360000px;}
.ls4f{letter-spacing:28.080000px;}
.ls2f{letter-spacing:30.960000px;}
.ls10{letter-spacing:31.680000px;}
.lsb{letter-spacing:33.840000px;}
.ls48{letter-spacing:34.560000px;}
.ls5{letter-spacing:36.720000px;}
.ls49{letter-spacing:37.440000px;}
.ls2c{letter-spacing:38.880000px;}
.ls39{letter-spacing:39.600000px;}
.ls29{letter-spacing:40.320000px;}
.ls25{letter-spacing:40.500000px;}
.ls9{letter-spacing:43.200000px;}
.ls3{letter-spacing:43.920000px;}
.ls53{letter-spacing:45.540000px;}
.ls31{letter-spacing:46.080000px;}
.ls4c{letter-spacing:49.680000px;}
.ls3b{letter-spacing:51.840000px;}
.ls20{letter-spacing:53.280000px;}
.ls4a{letter-spacing:54.000000px;}
.ls23{letter-spacing:56.160000px;}
.ls2e{letter-spacing:57.600000px;}
.lsd{letter-spacing:60.480000px;}
.lse{letter-spacing:60.660000px;}
.ls51{letter-spacing:64.080000px;}
.ls42{letter-spacing:65.520000px;}
.ls1b{letter-spacing:72.720000px;}
.ls56{letter-spacing:127.584000px;}
.ls58{letter-spacing:128.304000px;}
.ls55{letter-spacing:137.664000px;}
.ls54{letter-spacing:154.944000px;}
.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;}
}
.ws0{word-spacing:-26.424000px;}
.ws2{word-spacing:-21.438600px;}
.ws3{word-spacing:-21.060000px;}
.wsd{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.432000px;}
.ws10{word-spacing:-18.360000px;}
.ws9{word-spacing:-18.288000px;}
.wsf{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.wse{word-spacing:-17.280000px;}
.ws15{word-spacing:-16.776000px;}
.ws12{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.272000px;}
.ws16{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.226440px;}
.ws14{word-spacing:-12.060000px;}
.wsc{word-spacing:0.000000px;}
._10{margin-left:-2.508000px;}
._0{margin-left:-1.188000px;}
._3{width:1.548000px;}
._5{width:3.456000px;}
._6{width:5.052000px;}
._20{width:6.336000px;}
._29{width:7.416000px;}
._25{width:8.472000px;}
._28{width:9.480000px;}
._b{width:10.488000px;}
._1c{width:11.520000px;}
._9{width:13.080000px;}
._a{width:14.508000px;}
._1a{width:15.840000px;}
._d{width:16.992000px;}
._1{width:18.648000px;}
._33{width:19.656000px;}
._4{width:20.676000px;}
._17{width:22.404000px;}
._15{width:23.556000px;}
._14{width:24.768000px;}
._1e{width:26.424000px;}
._1f{width:28.164000px;}
._2b{width:29.352000px;}
._32{width:30.384000px;}
._1d{width:31.464000px;}
._e{width:33.120000px;}
._f{width:34.740000px;}
._8{width:35.784000px;}
._7{width:37.128000px;}
._23{width:38.136000px;}
._24{width:39.516000px;}
._16{width:41.544000px;}
._c{width:42.624000px;}
._2{width:43.848000px;}
._2f{width:45.348000px;}
._18{width:46.368000px;}
._19{width:47.916000px;}
._35{width:49.080000px;}
._13{width:50.400000px;}
._12{width:51.960000px;}
._21{width:53.496000px;}
._22{width:54.828000px;}
._26{width:56.208000px;}
._2c{width:57.600000px;}
._11{width:60.264000px;}
._27{width:61.356000px;}
._36{width:63.504000px;}
._30{width:64.740000px;}
._34{width:65.760000px;}
._2e{width:70.644000px;}
._1b{width:72.792000px;}
._37{width:75.816000px;}
._38{width:76.980000px;}
._2d{width:81.432000px;}
._2a{width:95.184000px;}
._39{width:99.216000px;}
._3a{width:210.744000px;}
._3b{width:211.836000px;}
._31{width:2601.636000px;}
.fc6{color:transparent;}
.fc5{color:rgb(47,84,150);}
.fc4{color:rgb(192,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(51,51,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:3.960000px;}
.y8d{bottom:5.940000px;}
.y3{bottom:7.020000px;}
.y92{bottom:10.800000px;}
.y7{bottom:11.340000px;}
.y8e{bottom:13.860000px;}
.y91{bottom:24.654000px;}
.y7b{bottom:24.660000px;}
.y94{bottom:24.690000px;}
.y2{bottom:28.260000px;}
.y8b{bottom:29.340000px;}
.y7a{bottom:45.360000px;}
.y8a{bottom:50.040000px;}
.y79{bottom:66.060000px;}
.y88{bottom:70.740000px;}
.y8{bottom:71.136000px;}
.y78{bottom:86.760000px;}
.y6{bottom:86.796000px;}
.y87{bottom:91.440000px;}
.y86{bottom:112.140000px;}
.y75{bottom:121.176000px;}
.yc1{bottom:123.516000px;}
.y90{bottom:133.236000px;}
.y32{bottom:133.956000px;}
.y55{bottom:135.216000px;}
.y82{bottom:147.816000px;}
.yd4{bottom:148.176000px;}
.yb4{bottom:149.076000px;}
.y74{bottom:152.310000px;}
.yc0{bottom:154.650000px;}
.y31{bottom:157.890000px;}
.y54{bottom:166.170000px;}
.y8f{bottom:175.350000px;}
.y81{bottom:178.770000px;}
.yd3{bottom:179.130000px;}
.yb3{bottom:180.030000px;}
.y30{bottom:181.650000px;}
.y73{bottom:183.270000px;}
.ybf{bottom:185.610000px;}
.y53{bottom:197.310000px;}
.y2f{bottom:205.410000px;}
.y80{bottom:209.910000px;}
.yd2{bottom:210.270000px;}
.yb2{bottom:211.170000px;}
.y72{bottom:214.410000px;}
.ybe{bottom:216.750000px;}
.y85{bottom:217.470000px;}
.y52{bottom:228.270000px;}
.y2e{bottom:229.170000px;}
.y7f{bottom:240.870000px;}
.yd1{bottom:241.230000px;}
.yb1{bottom:242.130000px;}
.y71{bottom:245.370000px;}
.ybd{bottom:247.710000px;}
.y2d{bottom:252.930000px;}
.y8c{bottom:258.690000px;}
.y51{bottom:259.410000px;}
.y7e{bottom:272.010000px;}
.yd0{bottom:272.370000px;}
.yb0{bottom:273.270000px;}
.y70{bottom:276.510000px;}
.y2c{bottom:276.870000px;}
.ybc{bottom:278.850000px;}
.y89{bottom:284.250000px;}
.y50{bottom:290.370000px;}
.ycf{bottom:303.330000px;}
.yaf{bottom:304.230000px;}
.y6f{bottom:307.470000px;}
.ybb{bottom:309.810000px;}
.y2b{bottom:315.570000px;}
.y7d{bottom:320.070000px;}
.y4f{bottom:321.510000px;}
.yce{bottom:334.470000px;}
.yae{bottom:335.370000px;}
.y6e{bottom:338.655000px;}
.y2a{bottom:339.555000px;}
.y77{bottom:339.915000px;}
.yba{bottom:340.995000px;}
.y4e{bottom:352.515000px;}
.ycd{bottom:365.475000px;}
.yad{bottom:366.375000px;}
.y84{bottom:369.075000px;}
.y6d{bottom:369.615000px;}
.yb9{bottom:371.955000px;}
.y29{bottom:378.255000px;}
.y4d{bottom:383.655000px;}
.yd6{bottom:387.075000px;}
.y83{bottom:393.015000px;}
.ycc{bottom:396.615000px;}
.yac{bottom:397.515000px;}
.y6c{bottom:400.755000px;}
.y28{bottom:402.015000px;}
.yb8{bottom:403.095000px;}
.yd5{bottom:409.395000px;}
.y4c{bottom:414.615000px;}
.y27{bottom:425.955000px;}
.ycb{bottom:427.575000px;}
.yab{bottom:428.475000px;}
.y6b{bottom:431.715000px;}
.yb7{bottom:441.075000px;}
.y4b{bottom:445.755000px;}
.y26{bottom:449.715000px;}
.yca{bottom:458.715000px;}
.yaa{bottom:459.615000px;}
.y6a{bottom:462.855000px;}
.y76{bottom:470.595000px;}
.y25{bottom:473.475000px;}
.y4a{bottom:476.715000px;}
.yb6{bottom:484.815000px;}
.yc9{bottom:489.675000px;}
.ya9{bottom:490.575000px;}
.y69{bottom:493.815000px;}
.y24{bottom:497.235000px;}
.y49{bottom:507.855000px;}
.yb5{bottom:512.355000px;}
.yc8{bottom:520.815000px;}
.y23{bottom:521.175000px;}
.ya8{bottom:521.715000px;}
.y68{bottom:524.955000px;}
.y48{bottom:538.815000px;}
.y22{bottom:544.935000px;}
.yc7{bottom:551.775000px;}
.ya7{bottom:552.675000px;}
.y67{bottom:555.915000px;}
.y21{bottom:568.695000px;}
.y47{bottom:569.955000px;}
.yc6{bottom:582.915000px;}
.ya6{bottom:583.815000px;}
.y66{bottom:587.055000px;}
.y20{bottom:592.455000px;}
.y46{bottom:600.915000px;}
.yc5{bottom:613.905000px;}
.ya5{bottom:614.805000px;}
.y1f{bottom:616.425000px;}
.y65{bottom:618.045000px;}
.y45{bottom:632.085000px;}
.y1e{bottom:640.185000px;}
.yc4{bottom:645.045000px;}
.ya4{bottom:645.945000px;}
.y64{bottom:649.185000px;}
.y44{bottom:663.045000px;}
.y1d{bottom:663.945000px;}
.ya3{bottom:676.905000px;}
.y63{bottom:680.145000px;}
.y1c{bottom:687.705000px;}
.yc3{bottom:690.945000px;}
.y43{bottom:694.185000px;}
.ya2{bottom:708.045000px;}
.y62{bottom:711.285000px;}
.y1b{bottom:711.465000px;}
.y42{bottom:725.145000px;}
.y1a{bottom:735.405000px;}
.ya1{bottom:739.005000px;}
.yc2{bottom:739.185000px;}
.y61{bottom:742.245000px;}
.y41{bottom:756.285000px;}
.y19{bottom:759.165000px;}
.ya0{bottom:770.145000px;}
.y60{bottom:773.385000px;}
.y18{bottom:782.925000px;}
.y40{bottom:787.245000px;}
.y9f{bottom:801.105000px;}
.y5f{bottom:804.345000px;}
.y17{bottom:806.685000px;}
.y3f{bottom:818.385000px;}
.y16{bottom:830.625000px;}
.y9e{bottom:832.245000px;}
.y5e{bottom:835.305000px;}
.y3e{bottom:849.345000px;}
.y15{bottom:854.385000px;}
.y9d{bottom:863.205000px;}
.y5d{bottom:866.445000px;}
.y14{bottom:878.190000px;}
.y3d{bottom:880.530000px;}
.y9c{bottom:894.390000px;}
.y5c{bottom:897.450000px;}
.y13{bottom:901.950000px;}
.y9b{bottom:925.350000px;}
.y12{bottom:925.890000px;}
.y3c{bottom:928.590000px;}
.y11{bottom:949.650000px;}
.y3b{bottom:955.410000px;}
.y9a{bottom:956.310000px;}
.y5b{bottom:959.550000px;}
.y10{bottom:973.410000px;}
.y3a{bottom:979.350000px;}
.y99{bottom:987.450000px;}
.y5a{bottom:990.690000px;}
.yf{bottom:997.170000px;}
.y39{bottom:1003.110000px;}
.y59{bottom:1021.650000px;}
.y38{bottom:1026.870000px;}
.ye{bottom:1028.310000px;}
.y98{bottom:1035.690000px;}
.yd{bottom:1049.010000px;}
.y37{bottom:1050.630000px;}
.y58{bottom:1052.790000px;}
.y97{bottom:1056.210000px;}
.yc{bottom:1069.710000px;}
.y36{bottom:1074.570000px;}
.y96{bottom:1077.630000px;}
.y57{bottom:1083.750000px;}
.yb{bottom:1090.410000px;}
.y35{bottom:1098.330000px;}
.y95{bottom:1099.050000px;}
.y56{bottom:1114.890000px;}
.ya{bottom:1115.250000px;}
.y93{bottom:1120.470000px;}
.y34{bottom:1122.090000px;}
.y9{bottom:1143.000000px;}
.y33{bottom:1145.880000px;}
.y5{bottom:1173.960000px;}
.y1{bottom:1179.720000px;}
.y4{bottom:1194.120000px;}
.h15{height:20.700000px;}
.h10{height:24.660000px;}
.h5{height:27.000000px;}
.h13{height:33.824531px;}
.h11{height:40.500000px;}
.h12{height:41.400000px;}
.h14{height:41.436000px;}
.h9{height:50.484375px;}
.hc{height:51.996094px;}
.h18{height:52.417969px;}
.h2{height:53.460000px;}
.h17{height:57.280781px;}
.ha{height:59.066719px;}
.h8{height:61.171875px;}
.h16{height:61.184531px;}
.hf{height:62.136000px;}
.h7{height:62.261719px;}
.h4{height:65.884219px;}
.hd{height:71.571094px;}
.h6{height:72.846211px;}
.h3{height:75.726562px;}
.hb{height:103.500000px;}
.he{height:128.916000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:52.380000px;}
.wc{width:52.416000px;}
.we{width:52.560000px;}
.wd{width:63.000000px;}
.wa{width:105.660000px;}
.w5{width:106.416000px;}
.w9{width:211.890000px;}
.wb{width:275.655000px;}
.w6{width:305.670000px;}
.w4{width:305.895000px;}
.w8{width:323.895000px;}
.w7{width:327.630000px;}
.w2{width:498.675000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:1.080000px;}
.x24{left:4.320000px;}
.x27{left:5.400000px;}
.x1b{left:8.280000px;}
.x33{left:10.980000px;}
.x35{left:13.860000px;}
.x1a{left:15.660000px;}
.x37{left:17.100000px;}
.x3b{left:18.540000px;}
.x2c{left:21.420000px;}
.x3c{left:24.120000px;}
.x2e{left:27.360000px;}
.x1d{left:30.810000px;}
.x34{left:32.400000px;}
.x3d{left:34.740000px;}
.x2a{left:35.820000px;}
.x2d{left:38.520000px;}
.x3a{left:39.780000px;}
.x39{left:42.120000px;}
.x9{left:44.820000px;}
.x3e{left:50.220000px;}
.x32{left:51.474000px;}
.x26{left:52.560000px;}
.x36{left:65.154000px;}
.x4{left:82.260000px;}
.x6{left:84.960000px;}
.x38{left:94.134000px;}
.x5{left:106.415987px;}
.x41{left:110.735987px;}
.x1e{left:119.010000px;}
.x1f{left:121.530000px;}
.x18{left:129.275987px;}
.x19{left:131.436000px;}
.x15{left:135.935987px;}
.xb{left:139.175987px;}
.x17{left:148.895987px;}
.x40{left:149.975987px;}
.x11{left:159.509987px;}
.x13{left:165.269987px;}
.xc{left:175.709987px;}
.x14{left:192.449987px;}
.x2{left:197.310000px;}
.x22{left:201.629987px;}
.x16{left:273.089987px;}
.x1{left:278.175000px;}
.xe{left:293.834987px;}
.x7{left:297.795000px;}
.x10{left:302.834987px;}
.xd{left:310.754987px;}
.x25{left:318.675000px;}
.x42{left:355.034987px;}
.x23{left:376.814987px;}
.xf{left:386.174987px;}
.x8{left:390.855000px;}
.x29{left:425.055000px;}
.x12{left:457.094987px;}
.x1c{left:459.075000px;}
.x20{left:478.364987px;}
.xa{left:497.265000px;}
.x3{left:498.675000px;}
.x2f{left:541.905000px;}
.x30{left:595.185000px;}
.x31{left:648.285000px;}
.x2b{left:701.430000px;}
.x21{left:723.569987px;}
.x3f{left:775.229987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls44{letter-spacing:-1.536000pt;}
.ls43{letter-spacing:-1.280000pt;}
.ls45{letter-spacing:-1.088000pt;}
.ls2d{letter-spacing:-0.896000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls4d{letter-spacing:-0.384000pt;}
.ls35{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls37{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.128000pt;}
.ls50{letter-spacing:0.135680pt;}
.ls57{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.192000pt;}
.ls36{letter-spacing:0.224000pt;}
.ls14{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.256000pt;}
.ls3a{letter-spacing:0.288000pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.336533pt;}
.ls7{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.448000pt;}
.ls40{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls38{letter-spacing:0.704000pt;}
.ls3f{letter-spacing:1.280000pt;}
.ls52{letter-spacing:1.920000pt;}
.ls30{letter-spacing:2.560000pt;}
.ls4{letter-spacing:3.200000pt;}
.ls3e{letter-spacing:3.840000pt;}
.ls2a{letter-spacing:4.480000pt;}
.ls3c{letter-spacing:5.120000pt;}
.ls1f{letter-spacing:5.760000pt;}
.ls2b{letter-spacing:6.400000pt;}
.ls27{letter-spacing:7.040000pt;}
.ls24{letter-spacing:8.320000pt;}
.ls6{letter-spacing:9.600000pt;}
.ls32{letter-spacing:10.240000pt;}
.lsc{letter-spacing:10.880000pt;}
.ls21{letter-spacing:12.800000pt;}
.ls26{letter-spacing:13.440000pt;}
.ls47{letter-spacing:14.720000pt;}
.lsa{letter-spacing:16.000000pt;}
.ls1c{letter-spacing:17.920000pt;}
.ls28{letter-spacing:19.200000pt;}
.ls46{letter-spacing:19.840000pt;}
.ls11{letter-spacing:20.480000pt;}
.ls4b{letter-spacing:21.120000pt;}
.ls33{letter-spacing:21.760000pt;}
.ls34{letter-spacing:21.920000pt;}
.ls3d{letter-spacing:22.400000pt;}
.ls4e{letter-spacing:23.680000pt;}
.ls1e{letter-spacing:24.320000pt;}
.ls4f{letter-spacing:24.960000pt;}
.ls2f{letter-spacing:27.520000pt;}
.ls10{letter-spacing:28.160000pt;}
.lsb{letter-spacing:30.080000pt;}
.ls48{letter-spacing:30.720000pt;}
.ls5{letter-spacing:32.640000pt;}
.ls49{letter-spacing:33.280000pt;}
.ls2c{letter-spacing:34.560000pt;}
.ls39{letter-spacing:35.200000pt;}
.ls29{letter-spacing:35.840000pt;}
.ls25{letter-spacing:36.000000pt;}
.ls9{letter-spacing:38.400000pt;}
.ls3{letter-spacing:39.040000pt;}
.ls53{letter-spacing:40.480000pt;}
.ls31{letter-spacing:40.960000pt;}
.ls4c{letter-spacing:44.160000pt;}
.ls3b{letter-spacing:46.080000pt;}
.ls20{letter-spacing:47.360000pt;}
.ls4a{letter-spacing:48.000000pt;}
.ls23{letter-spacing:49.920000pt;}
.ls2e{letter-spacing:51.200000pt;}
.lsd{letter-spacing:53.760000pt;}
.lse{letter-spacing:53.920000pt;}
.ls51{letter-spacing:56.960000pt;}
.ls42{letter-spacing:58.240000pt;}
.ls1b{letter-spacing:64.640000pt;}
.ls56{letter-spacing:113.408000pt;}
.ls58{letter-spacing:114.048000pt;}
.ls55{letter-spacing:122.368000pt;}
.ls54{letter-spacing:137.728000pt;}
.ws0{word-spacing:-23.488000pt;}
.ws2{word-spacing:-19.056533pt;}
.ws3{word-spacing:-18.720000pt;}
.wsd{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.384000pt;}
.ws10{word-spacing:-16.320000pt;}
.ws9{word-spacing:-16.256000pt;}
.wsf{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.360000pt;}
.ws15{word-spacing:-14.912000pt;}
.ws12{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.464000pt;}
.ws16{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws14{word-spacing:-10.720000pt;}
.wsc{word-spacing:0.000000pt;}
._10{margin-left:-2.229333pt;}
._0{margin-left:-1.056000pt;}
._3{width:1.376000pt;}
._5{width:3.072000pt;}
._6{width:4.490667pt;}
._20{width:5.632000pt;}
._29{width:6.592000pt;}
._25{width:7.530667pt;}
._28{width:8.426667pt;}
._b{width:9.322667pt;}
._1c{width:10.240000pt;}
._9{width:11.626667pt;}
._a{width:12.896000pt;}
._1a{width:14.080000pt;}
._d{width:15.104000pt;}
._1{width:16.576000pt;}
._33{width:17.472000pt;}
._4{width:18.378667pt;}
._17{width:19.914667pt;}
._15{width:20.938667pt;}
._14{width:22.016000pt;}
._1e{width:23.488000pt;}
._1f{width:25.034667pt;}
._2b{width:26.090667pt;}
._32{width:27.008000pt;}
._1d{width:27.968000pt;}
._e{width:29.440000pt;}
._f{width:30.880000pt;}
._8{width:31.808000pt;}
._7{width:33.002667pt;}
._23{width:33.898667pt;}
._24{width:35.125333pt;}
._16{width:36.928000pt;}
._c{width:37.888000pt;}
._2{width:38.976000pt;}
._2f{width:40.309333pt;}
._18{width:41.216000pt;}
._19{width:42.592000pt;}
._35{width:43.626667pt;}
._13{width:44.800000pt;}
._12{width:46.186667pt;}
._21{width:47.552000pt;}
._22{width:48.736000pt;}
._26{width:49.962667pt;}
._2c{width:51.200000pt;}
._11{width:53.568000pt;}
._27{width:54.538667pt;}
._36{width:56.448000pt;}
._30{width:57.546667pt;}
._34{width:58.453333pt;}
._2e{width:62.794667pt;}
._1b{width:64.704000pt;}
._37{width:67.392000pt;}
._38{width:68.426667pt;}
._2d{width:72.384000pt;}
._2a{width:84.608000pt;}
._39{width:88.192000pt;}
._3a{width:187.328000pt;}
._3b{width:188.298667pt;}
._31{width:2312.565333pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:3.520000pt;}
.y8d{bottom:5.280000pt;}
.y3{bottom:6.240000pt;}
.y92{bottom:9.600000pt;}
.y7{bottom:10.080000pt;}
.y8e{bottom:12.320000pt;}
.y91{bottom:21.914667pt;}
.y7b{bottom:21.920000pt;}
.y94{bottom:21.946667pt;}
.y2{bottom:25.120000pt;}
.y8b{bottom:26.080000pt;}
.y7a{bottom:40.320000pt;}
.y8a{bottom:44.480000pt;}
.y79{bottom:58.720000pt;}
.y88{bottom:62.880000pt;}
.y8{bottom:63.232000pt;}
.y78{bottom:77.120000pt;}
.y6{bottom:77.152000pt;}
.y87{bottom:81.280000pt;}
.y86{bottom:99.680000pt;}
.y75{bottom:107.712000pt;}
.yc1{bottom:109.792000pt;}
.y90{bottom:118.432000pt;}
.y32{bottom:119.072000pt;}
.y55{bottom:120.192000pt;}
.y82{bottom:131.392000pt;}
.yd4{bottom:131.712000pt;}
.yb4{bottom:132.512000pt;}
.y74{bottom:135.386667pt;}
.yc0{bottom:137.466667pt;}
.y31{bottom:140.346667pt;}
.y54{bottom:147.706667pt;}
.y8f{bottom:155.866667pt;}
.y81{bottom:158.906667pt;}
.yd3{bottom:159.226667pt;}
.yb3{bottom:160.026667pt;}
.y30{bottom:161.466667pt;}
.y73{bottom:162.906667pt;}
.ybf{bottom:164.986667pt;}
.y53{bottom:175.386667pt;}
.y2f{bottom:182.586667pt;}
.y80{bottom:186.586667pt;}
.yd2{bottom:186.906667pt;}
.yb2{bottom:187.706667pt;}
.y72{bottom:190.586667pt;}
.ybe{bottom:192.666667pt;}
.y85{bottom:193.306667pt;}
.y52{bottom:202.906667pt;}
.y2e{bottom:203.706667pt;}
.y7f{bottom:214.106667pt;}
.yd1{bottom:214.426667pt;}
.yb1{bottom:215.226667pt;}
.y71{bottom:218.106667pt;}
.ybd{bottom:220.186667pt;}
.y2d{bottom:224.826667pt;}
.y8c{bottom:229.946667pt;}
.y51{bottom:230.586667pt;}
.y7e{bottom:241.786667pt;}
.yd0{bottom:242.106667pt;}
.yb0{bottom:242.906667pt;}
.y70{bottom:245.786667pt;}
.y2c{bottom:246.106667pt;}
.ybc{bottom:247.866667pt;}
.y89{bottom:252.666667pt;}
.y50{bottom:258.106667pt;}
.ycf{bottom:269.626667pt;}
.yaf{bottom:270.426667pt;}
.y6f{bottom:273.306667pt;}
.ybb{bottom:275.386667pt;}
.y2b{bottom:280.506667pt;}
.y7d{bottom:284.506667pt;}
.y4f{bottom:285.786667pt;}
.yce{bottom:297.306667pt;}
.yae{bottom:298.106667pt;}
.y6e{bottom:301.026667pt;}
.y2a{bottom:301.826667pt;}
.y77{bottom:302.146667pt;}
.yba{bottom:303.106667pt;}
.y4e{bottom:313.346667pt;}
.ycd{bottom:324.866667pt;}
.yad{bottom:325.666667pt;}
.y84{bottom:328.066667pt;}
.y6d{bottom:328.546667pt;}
.yb9{bottom:330.626667pt;}
.y29{bottom:336.226667pt;}
.y4d{bottom:341.026667pt;}
.yd6{bottom:344.066667pt;}
.y83{bottom:349.346667pt;}
.ycc{bottom:352.546667pt;}
.yac{bottom:353.346667pt;}
.y6c{bottom:356.226667pt;}
.y28{bottom:357.346667pt;}
.yb8{bottom:358.306667pt;}
.yd5{bottom:363.906667pt;}
.y4c{bottom:368.546667pt;}
.y27{bottom:378.626667pt;}
.ycb{bottom:380.066667pt;}
.yab{bottom:380.866667pt;}
.y6b{bottom:383.746667pt;}
.yb7{bottom:392.066667pt;}
.y4b{bottom:396.226667pt;}
.y26{bottom:399.746667pt;}
.yca{bottom:407.746667pt;}
.yaa{bottom:408.546667pt;}
.y6a{bottom:411.426667pt;}
.y76{bottom:418.306667pt;}
.y25{bottom:420.866667pt;}
.y4a{bottom:423.746667pt;}
.yb6{bottom:430.946667pt;}
.yc9{bottom:435.266667pt;}
.ya9{bottom:436.066667pt;}
.y69{bottom:438.946667pt;}
.y24{bottom:441.986667pt;}
.y49{bottom:451.426667pt;}
.yb5{bottom:455.426667pt;}
.yc8{bottom:462.946667pt;}
.y23{bottom:463.266667pt;}
.ya8{bottom:463.746667pt;}
.y68{bottom:466.626667pt;}
.y48{bottom:478.946667pt;}
.y22{bottom:484.386667pt;}
.yc7{bottom:490.466667pt;}
.ya7{bottom:491.266667pt;}
.y67{bottom:494.146667pt;}
.y21{bottom:505.506667pt;}
.y47{bottom:506.626667pt;}
.yc6{bottom:518.146667pt;}
.ya6{bottom:518.946667pt;}
.y66{bottom:521.826667pt;}
.y20{bottom:526.626667pt;}
.y46{bottom:534.146667pt;}
.yc5{bottom:545.693333pt;}
.ya5{bottom:546.493333pt;}
.y1f{bottom:547.933333pt;}
.y65{bottom:549.373333pt;}
.y45{bottom:561.853333pt;}
.y1e{bottom:569.053333pt;}
.yc4{bottom:573.373333pt;}
.ya4{bottom:574.173333pt;}
.y64{bottom:577.053333pt;}
.y44{bottom:589.373333pt;}
.y1d{bottom:590.173333pt;}
.ya3{bottom:601.693333pt;}
.y63{bottom:604.573333pt;}
.y1c{bottom:611.293333pt;}
.yc3{bottom:614.173333pt;}
.y43{bottom:617.053333pt;}
.ya2{bottom:629.373333pt;}
.y62{bottom:632.253333pt;}
.y1b{bottom:632.413333pt;}
.y42{bottom:644.573333pt;}
.y1a{bottom:653.693333pt;}
.ya1{bottom:656.893333pt;}
.yc2{bottom:657.053333pt;}
.y61{bottom:659.773333pt;}
.y41{bottom:672.253333pt;}
.y19{bottom:674.813333pt;}
.ya0{bottom:684.573333pt;}
.y60{bottom:687.453333pt;}
.y18{bottom:695.933333pt;}
.y40{bottom:699.773333pt;}
.y9f{bottom:712.093333pt;}
.y5f{bottom:714.973333pt;}
.y17{bottom:717.053333pt;}
.y3f{bottom:727.453333pt;}
.y16{bottom:738.333333pt;}
.y9e{bottom:739.773333pt;}
.y5e{bottom:742.493333pt;}
.y3e{bottom:754.973333pt;}
.y15{bottom:759.453333pt;}
.y9d{bottom:767.293333pt;}
.y5d{bottom:770.173333pt;}
.y14{bottom:780.613333pt;}
.y3d{bottom:782.693333pt;}
.y9c{bottom:795.013333pt;}
.y5c{bottom:797.733333pt;}
.y13{bottom:801.733333pt;}
.y9b{bottom:822.533333pt;}
.y12{bottom:823.013333pt;}
.y3c{bottom:825.413333pt;}
.y11{bottom:844.133333pt;}
.y3b{bottom:849.253333pt;}
.y9a{bottom:850.053333pt;}
.y5b{bottom:852.933333pt;}
.y10{bottom:865.253333pt;}
.y3a{bottom:870.533333pt;}
.y99{bottom:877.733333pt;}
.y5a{bottom:880.613333pt;}
.yf{bottom:886.373333pt;}
.y39{bottom:891.653333pt;}
.y59{bottom:908.133333pt;}
.y38{bottom:912.773333pt;}
.ye{bottom:914.053333pt;}
.y98{bottom:920.613333pt;}
.yd{bottom:932.453333pt;}
.y37{bottom:933.893333pt;}
.y58{bottom:935.813333pt;}
.y97{bottom:938.853333pt;}
.yc{bottom:950.853333pt;}
.y36{bottom:955.173333pt;}
.y96{bottom:957.893333pt;}
.y57{bottom:963.333333pt;}
.yb{bottom:969.253333pt;}
.y35{bottom:976.293333pt;}
.y95{bottom:976.933333pt;}
.y56{bottom:991.013333pt;}
.ya{bottom:991.333333pt;}
.y93{bottom:995.973333pt;}
.y34{bottom:997.413333pt;}
.y9{bottom:1016.000000pt;}
.y33{bottom:1018.560000pt;}
.y5{bottom:1043.520000pt;}
.y1{bottom:1048.640000pt;}
.y4{bottom:1061.440000pt;}
.h15{height:18.400000pt;}
.h10{height:21.920000pt;}
.h5{height:24.000000pt;}
.h13{height:30.066250pt;}
.h11{height:36.000000pt;}
.h12{height:36.800000pt;}
.h14{height:36.832000pt;}
.h9{height:44.875000pt;}
.hc{height:46.218750pt;}
.h18{height:46.593750pt;}
.h2{height:47.520000pt;}
.h17{height:50.916250pt;}
.ha{height:52.503750pt;}
.h8{height:54.375000pt;}
.h16{height:54.386250pt;}
.hf{height:55.232000pt;}
.h7{height:55.343750pt;}
.h4{height:58.563750pt;}
.hd{height:63.618750pt;}
.h6{height:64.752187pt;}
.h3{height:67.312500pt;}
.hb{height:92.000000pt;}
.he{height:114.592000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:46.560000pt;}
.wc{width:46.592000pt;}
.we{width:46.720000pt;}
.wd{width:56.000000pt;}
.wa{width:93.920000pt;}
.w5{width:94.592000pt;}
.w9{width:188.346667pt;}
.wb{width:245.026667pt;}
.w6{width:271.706667pt;}
.w4{width:271.906667pt;}
.w8{width:287.906667pt;}
.w7{width:291.226667pt;}
.w2{width:443.266667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:0.960000pt;}
.x24{left:3.840000pt;}
.x27{left:4.800000pt;}
.x1b{left:7.360000pt;}
.x33{left:9.760000pt;}
.x35{left:12.320000pt;}
.x1a{left:13.920000pt;}
.x37{left:15.200000pt;}
.x3b{left:16.480000pt;}
.x2c{left:19.040000pt;}
.x3c{left:21.440000pt;}
.x2e{left:24.320000pt;}
.x1d{left:27.386667pt;}
.x34{left:28.800000pt;}
.x3d{left:30.880000pt;}
.x2a{left:31.840000pt;}
.x2d{left:34.240000pt;}
.x3a{left:35.360000pt;}
.x39{left:37.440000pt;}
.x9{left:39.840000pt;}
.x3e{left:44.640000pt;}
.x32{left:45.754667pt;}
.x26{left:46.720000pt;}
.x36{left:57.914667pt;}
.x4{left:73.120000pt;}
.x6{left:75.520000pt;}
.x38{left:83.674667pt;}
.x5{left:94.591988pt;}
.x41{left:98.431988pt;}
.x1e{left:105.786667pt;}
.x1f{left:108.026667pt;}
.x18{left:114.911988pt;}
.x19{left:116.832000pt;}
.x15{left:120.831988pt;}
.xb{left:123.711988pt;}
.x17{left:132.351988pt;}
.x40{left:133.311988pt;}
.x11{left:141.786655pt;}
.x13{left:146.906655pt;}
.xc{left:156.186655pt;}
.x14{left:171.066655pt;}
.x2{left:175.386667pt;}
.x22{left:179.226655pt;}
.x16{left:242.746655pt;}
.x1{left:247.266667pt;}
.xe{left:261.186655pt;}
.x7{left:264.706667pt;}
.x10{left:269.186655pt;}
.xd{left:276.226655pt;}
.x25{left:283.266667pt;}
.x42{left:315.586655pt;}
.x23{left:334.946655pt;}
.xf{left:343.266655pt;}
.x8{left:347.426667pt;}
.x29{left:377.826667pt;}
.x12{left:406.306655pt;}
.x1c{left:408.066667pt;}
.x20{left:425.213322pt;}
.xa{left:442.013333pt;}
.x3{left:443.266667pt;}
.x2f{left:481.693333pt;}
.x30{left:529.053333pt;}
.x31{left:576.253333pt;}
.x2b{left:623.493333pt;}
.x21{left:643.173322pt;}
.x3f{left:689.093322pt;}
}




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