
    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_9a0db5e9a3cbe3f1537a3d37.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f46af89972a4197b6bd6d574.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_cd7747dc0fb9d1cdd1835f00.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_9daeb2cc9febb2a95a23f8ea.woff')format("woff");}.ff4{font-family:ff4;line-height:1.016602;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_a05fd4bdb4c0cb2006ea949f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.016602;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_6b6608200a3b9aa0ba96493d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_fa120a4dc00c71249e04d1c2.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_96238953b26fa347553246fd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.904297;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_a917e1384938796914bc2db6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.904297;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);}
.v0{vertical-align:0.000000px;}
.ls30{letter-spacing:-0.648000px;}
.ls3c{letter-spacing:-0.504000px;}
.ls34{letter-spacing:-0.328200px;}
.ls12{letter-spacing:-0.288000px;}
.ls4b{letter-spacing:-0.216000px;}
.ls32{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.ls2f{letter-spacing:-0.000003px;}
.lsc{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000001px;}
.ls10{letter-spacing:0.063600px;}
.ls8{letter-spacing:0.072000px;}
.ls5d{letter-spacing:0.108000px;}
.ls48{letter-spacing:0.144000px;}
.lse{letter-spacing:0.160800px;}
.ls2c{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.196560px;}
.ls5{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.432000px;}
.ls45{letter-spacing:0.468000px;}
.ls2d{letter-spacing:0.487440px;}
.ls40{letter-spacing:0.648000px;}
.ls53{letter-spacing:0.768000px;}
.ls2e{letter-spacing:0.783360px;}
.lsf{letter-spacing:0.786000px;}
.ls33{letter-spacing:0.792000px;}
.ls3f{letter-spacing:0.936000px;}
.lsa{letter-spacing:1.008000px;}
.ls4a{letter-spacing:1.056000px;}
.ls2a{letter-spacing:1.368000px;}
.ls29{letter-spacing:1.656000px;}
.ls39{letter-spacing:2.376000px;}
.ls59{letter-spacing:2.808000px;}
.ls58{letter-spacing:2.988000px;}
.ls50{letter-spacing:3.528000px;}
.ls24{letter-spacing:3.816000px;}
.ls1f{letter-spacing:4.248000px;}
.ls56{letter-spacing:4.968000px;}
.ls22{letter-spacing:5.256000px;}
.ls19{letter-spacing:5.688000px;}
.ls18{letter-spacing:5.976000px;}
.ls1{letter-spacing:6.247440px;}
.ls52{letter-spacing:6.408000px;}
.ls4f{letter-spacing:6.696000px;}
.ls2b{letter-spacing:7.848000px;}
.ls41{letter-spacing:9.288000px;}
.ls21{letter-spacing:9.576000px;}
.ls4{letter-spacing:9.719280px;}
.ls3{letter-spacing:9.847440px;}
.ls37{letter-spacing:10.008000px;}
.ls23{letter-spacing:10.296000px;}
.ls54{letter-spacing:10.728000px;}
.ls5a{letter-spacing:10.908000px;}
.ls51{letter-spacing:11.448000px;}
.ls42{letter-spacing:12.168000px;}
.ls28{letter-spacing:12.456000px;}
.ls27{letter-spacing:12.727440px;}
.lsb{letter-spacing:12.888000px;}
.ls20{letter-spacing:13.176000px;}
.ls26{letter-spacing:13.296000px;}
.ls4e{letter-spacing:13.608000px;}
.ls5b{letter-spacing:13.896000px;}
.ls46{letter-spacing:14.328000px;}
.ls47{letter-spacing:14.508000px;}
.ls25{letter-spacing:14.616000px;}
.ls36{letter-spacing:15.048000px;}
.ls55{letter-spacing:15.768000px;}
.ls3d{letter-spacing:16.488000px;}
.ls57{letter-spacing:16.608000px;}
.ls3e{letter-spacing:16.776000px;}
.ls1b{letter-spacing:17.208000px;}
.ls44{letter-spacing:17.328000px;}
.ls43{letter-spacing:17.388000px;}
.ls49{letter-spacing:17.496000px;}
.ls1c{letter-spacing:17.928000px;}
.ls5c{letter-spacing:18.828000px;}
.ls7{letter-spacing:19.368000px;}
.ls2{letter-spacing:19.927440px;}
.ls1d{letter-spacing:20.376000px;}
.ls4c{letter-spacing:20.808000px;}
.ls3a{letter-spacing:21.528000px;}
.ls14{letter-spacing:22.248000px;}
.ls15{letter-spacing:22.656000px;}
.ls16{letter-spacing:22.968000px;}
.ls6{letter-spacing:25.848000px;}
.ls38{letter-spacing:26.568000px;}
.ls35{letter-spacing:27.288000px;}
.ls17{letter-spacing:29.016000px;}
.ls1e{letter-spacing:31.608000px;}
.ls1a{letter-spacing:33.336000px;}
.ls4d{letter-spacing:43.128000px;}
.ls3b{letter-spacing:44.136000px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws1d{word-spacing:-21.024000px;}
.ws1e{word-spacing:-20.592000px;}
.ws11{word-spacing:-20.520000px;}
.ws1f{word-spacing:-20.448000px;}
.wsa{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.232001px;}
.ws4{word-spacing:-20.232000px;}
.wsb{word-spacing:-20.231997px;}
.ws9{word-spacing:-20.160000px;}
.ws17{word-spacing:-20.088000px;}
.ws7{word-spacing:-19.944000px;}
.ws12{word-spacing:-19.584000px;}
.ws21{word-spacing:-18.072000px;}
.ws8{word-spacing:-17.784000px;}
.ws22{word-spacing:-17.280000px;}
.ws2{word-spacing:-16.953360px;}
.ws0{word-spacing:-16.792560px;}
.ws20{word-spacing:-16.464360px;}
.ws3{word-spacing:-14.760720px;}
.ws25{word-spacing:-8.064000px;}
.ws24{word-spacing:-7.992000px;}
.ws6{word-spacing:0.000000px;}
.wsf{word-spacing:0.864000px;}
.wse{word-spacing:1.944000px;}
.wsd{word-spacing:2.088000px;}
.ws13{word-spacing:2.232000px;}
.ws1c{word-spacing:2.304000px;}
.ws1a{word-spacing:2.376000px;}
.ws18{word-spacing:2.520000px;}
.ws15{word-spacing:7.056000px;}
.ws1b{word-spacing:7.344000px;}
.ws14{word-spacing:7.596000px;}
.ws23{word-spacing:17.928000px;}
.ws16{word-spacing:19.332000px;}
.ws19{word-spacing:19.476000px;}
.wsc{word-spacing:19.548000px;}
.ws10{word-spacing:19.728000px;}
._3{margin-left:-1.095120px;}
._0{width:1.298640px;}
._16{width:2.691120px;}
._15{width:3.816000px;}
._1a{width:5.173200px;}
._8{width:6.274800px;}
._9{width:7.678800px;}
._23{width:8.691600px;}
._6{width:9.697200px;}
._7{width:11.438400px;}
._13{width:12.556557px;}
._d{width:13.680000px;}
._e{width:14.700000px;}
._1e{width:15.931443px;}
._10{width:17.064000px;}
._12{width:18.099120px;}
._11{width:19.127997px;}
._a{width:20.258640px;}
._17{width:21.933360px;}
._18{width:23.282640px;}
._22{width:24.552000px;}
._b{width:25.848000px;}
._1f{width:26.928000px;}
._1c{width:27.948000px;}
._19{width:29.208000px;}
._1d{width:30.240000px;}
._c{width:32.064480px;}
._1b{width:33.815520px;}
._f{width:38.568000px;}
._24{width:43.320000px;}
._20{width:44.640000px;}
._21{width:46.137360px;}
._14{width:199.380960px;}
._1{width:387.152400px;}
._5{width:712.236000px;}
._2{width:735.240960px;}
._4{width:1131.924000px;}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:57.996000px;}
.y21{bottom:58.356000px;}
.y3{bottom:74.916000px;}
.y20{bottom:78.696000px;}
.y2{bottom:94.356000px;}
.y1f{bottom:95.616000px;}
.y1e{bottom:115.056000px;}
.yb1{bottom:131.256000px;}
.y45{bottom:131.796000px;}
.y44{bottom:137.016000px;}
.y1a{bottom:137.556000px;}
.ye8{bottom:149.796000px;}
.y43{bottom:150.150000px;}
.yb0{bottom:151.590000px;}
.ya4{bottom:152.130000px;}
.ycc{bottom:152.850000px;}
.ye7{bottom:155.010000px;}
.y19{bottom:167.790000px;}
.ye6{bottom:168.150000px;}
.yaf{bottom:168.330000px;}
.yae{bottom:173.550000px;}
.y42{bottom:179.130000px;}
.y7b{bottom:180.210000px;}
.ya3{bottom:182.370000px;}
.ycb{bottom:182.910000px;}
.yad{bottom:186.690000px;}
.y18{bottom:198.030000px;}
.y41{bottom:209.370000px;}
.y98{bottom:210.450000px;}
.y7a{bottom:210.630000px;}
.ya2{bottom:212.610000px;}
.yca{bottom:213.150000px;}
.y17{bottom:228.270000px;}
.y40{bottom:239.610000px;}
.ye5{bottom:240.510000px;}
.y97{bottom:240.690000px;}
.y79{bottom:241.050000px;}
.y61{bottom:242.130000px;}
.ya1{bottom:242.850000px;}
.yc9{bottom:243.390000px;}
.y16{bottom:258.510000px;}
.y3f{bottom:269.670000px;}
.y96{bottom:270.930000px;}
.ye4{bottom:271.110000px;}
.y78{bottom:271.470000px;}
.y60{bottom:272.190000px;}
.ya0{bottom:272.955000px;}
.yc8{bottom:273.675000px;}
.y15{bottom:288.795000px;}
.y3e{bottom:300.315000px;}
.y95{bottom:301.035000px;}
.ye3{bottom:301.575000px;}
.y77{bottom:301.935000px;}
.y5f{bottom:302.655000px;}
.y9f{bottom:303.375000px;}
.yc7{bottom:303.915000px;}
.y14{bottom:318.855000px;}
.y3d{bottom:330.375000px;}
.y94{bottom:331.455000px;}
.ye2{bottom:332.175000px;}
.y76{bottom:332.355000px;}
.y5e{bottom:333.075000px;}
.y9e{bottom:333.975000px;}
.yc6{bottom:334.155000px;}
.y13{bottom:349.095000px;}
.y3c{bottom:360.795000px;}
.y93{bottom:362.055000px;}
.ye1{bottom:362.235000px;}
.y75{bottom:362.955000px;}
.y5d{bottom:363.495000px;}
.y9d{bottom:364.035000px;}
.yc5{bottom:364.395000px;}
.y12{bottom:376.815000px;}
.y3b{bottom:391.215000px;}
.y92{bottom:392.475000px;}
.ye0{bottom:392.655000px;}
.y74{bottom:393.375000px;}
.y5c{bottom:394.095000px;}
.yc4{bottom:394.455000px;}
.y9c{bottom:394.635000px;}
.y11{bottom:402.015000px;}
.y3a{bottom:421.635000px;}
.y91{bottom:422.895000px;}
.ydf{bottom:423.075000px;}
.y73{bottom:423.795000px;}
.y5b{bottom:424.515000px;}
.yc3{bottom:424.695000px;}
.y9b{bottom:424.875000px;}
.y10{bottom:427.215000px;}
.y39{bottom:452.235000px;}
.yf{bottom:452.595000px;}
.y90{bottom:453.315000px;}
.yde{bottom:453.495000px;}
.y72{bottom:454.395000px;}
.yc2{bottom:454.935000px;}
.y5a{bottom:455.115000px;}
.ye{bottom:477.975000px;}
.y38{bottom:482.655000px;}
.y8f{bottom:483.735000px;}
.ydd{bottom:483.915000px;}
.y71{bottom:484.635000px;}
.y59{bottom:485.175000px;}
.yd{bottom:503.175000px;}
.y37{bottom:513.075000px;}
.y8e{bottom:514.155000px;}
.ydc{bottom:514.515000px;}
.y70{bottom:514.695000px;}
.yc1{bottom:515.415000px;}
.y58{bottom:515.775000px;}
.yc{bottom:528.375000px;}
.y36{bottom:543.495000px;}
.y8d{bottom:544.575000px;}
.ydb{bottom:544.755000px;}
.y6f{bottom:545.115000px;}
.yc0{bottom:545.655000px;}
.y57{bottom:545.835000px;}
.yb{bottom:550.875000px;}
.y35{bottom:573.945000px;}
.yda{bottom:575.025000px;}
.y8c{bottom:575.205000px;}
.y6e{bottom:575.745000px;}
.ybf{bottom:575.925000px;}
.y56{bottom:576.105000px;}
.y34{bottom:604.365000px;}
.yd9{bottom:605.265000px;}
.y8b{bottom:605.445000px;}
.y6d{bottom:605.985000px;}
.ybe{bottom:606.165000px;}
.y55{bottom:606.345000px;}
.ya{bottom:627.585000px;}
.y33{bottom:634.965000px;}
.y8a{bottom:635.505000px;}
.yef{bottom:635.685000px;}
.y6c{bottom:636.045000px;}
.ybd{bottom:636.225000px;}
.y54{bottom:636.585000px;}
.y32{bottom:665.205000px;}
.yd7{bottom:665.745000px;}
.yee{bottom:665.925000px;}
.y89{bottom:666.105000px;}
.y6b{bottom:666.465000px;}
.y53{bottom:666.825000px;}
.yd8{bottom:673.305000px;}
.y31{bottom:695.265000px;}
.yd6{bottom:695.805000px;}
.yed{bottom:696.165000px;}
.y88{bottom:696.345000px;}
.ybc{bottom:696.705000px;}
.y9a{bottom:696.885000px;}
.y52{bottom:697.065000px;}
.y30{bottom:725.685000px;}
.yd5{bottom:726.045000px;}
.yac{bottom:726.405000px;}
.y87{bottom:726.585000px;}
.ybb{bottom:726.945000px;}
.y6a{bottom:727.125000px;}
.y51{bottom:727.305000px;}
.y99{bottom:727.485000px;}
.y2f{bottom:756.285000px;}
.yec{bottom:756.465000px;}
.yab{bottom:756.645000px;}
.y86{bottom:756.825000px;}
.yba{bottom:757.005000px;}
.y50{bottom:757.545000px;}
.y69{bottom:757.725000px;}
.y2e{bottom:786.345000px;}
.yd4{bottom:786.525000px;}
.yeb{bottom:786.705000px;}
.y85{bottom:787.065000px;}
.yb9{bottom:787.245000px;}
.y4f{bottom:787.605000px;}
.y68{bottom:787.965000px;}
.y2d{bottom:816.765000px;}
.yea{bottom:816.945000px;}
.y84{bottom:817.125000px;}
.yb8{bottom:817.485000px;}
.yaa{bottom:817.665000px;}
.y4e{bottom:817.845000px;}
.y67{bottom:818.205000px;}
.yd2{bottom:847.050000px;}
.y2c{bottom:847.410000px;}
.yb7{bottom:847.770000px;}
.ya9{bottom:847.950000px;}
.y4d{bottom:848.130000px;}
.y66{bottom:848.310000px;}
.yd3{bottom:854.610000px;}
.yd1{bottom:877.110000px;}
.y2b{bottom:877.470000px;}
.y83{bottom:877.650000px;}
.ya8{bottom:878.190000px;}
.y4c{bottom:878.370000px;}
.y65{bottom:878.550000px;}
.yd0{bottom:907.710000px;}
.y82{bottom:907.890000px;}
.y29{bottom:908.070000px;}
.ya7{bottom:908.430000px;}
.y4b{bottom:908.610000px;}
.y64{bottom:908.790000px;}
.y2a{bottom:915.630000px;}
.ycf{bottom:937.770000px;}
.y81{bottom:938.130000px;}
.y28{bottom:938.310000px;}
.ya6{bottom:938.490000px;}
.yb6{bottom:938.670000px;}
.y4a{bottom:938.850000px;}
.y63{bottom:939.030000px;}
.yce{bottom:968.190000px;}
.y80{bottom:968.370000px;}
.y27{bottom:968.550000px;}
.y49{bottom:968.910000px;}
.y62{bottom:969.270000px;}
.y9{bottom:994.470000px;}
.y26{bottom:998.610000px;}
.ye9{bottom:998.970000px;}
.yb5{bottom:999.150000px;}
.y48{bottom:999.510000px;}
.y8{bottom:1026.870000px;}
.y7f{bottom:1028.670000px;}
.ycd{bottom:1029.030000px;}
.y25{bottom:1029.210000px;}
.yb4{bottom:1029.390000px;}
.y47{bottom:1029.750000px;}
.y7e{bottom:1059.090000px;}
.y24{bottom:1059.270000px;}
.yb3{bottom:1059.630000px;}
.y7{bottom:1059.810000px;}
.y46{bottom:1059.990000px;}
.y7d{bottom:1089.510000px;}
.y23{bottom:1089.690000px;}
.yb2{bottom:1089.870000px;}
.y6{bottom:1090.050000px;}
.ya5{bottom:1097.610000px;}
.y7c{bottom:1119.930000px;}
.y5{bottom:1120.110000px;}
.y22{bottom:1120.290000px;}
.y1d{bottom:1149.300000px;}
.y1c{bottom:1172.340000px;}
.y1{bottom:1192.680000px;}
.y1b{bottom:1193.940000px;}
.h7{height:35.459297px;}
.h8{height:38.158594px;}
.h3{height:50.743477px;}
.h9{height:58.651172px;}
.h4{height:61.136719px;}
.h2{height:70.664062px;}
.h5{height:71.529961px;}
.h6{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.xb{left:147.276000px;}
.xd{left:152.490000px;}
.xc{left:171.030000px;}
.x4{left:180.750000px;}
.x9{left:185.610000px;}
.x14{left:191.527500px;}
.x15{left:196.410000px;}
.xa{left:224.850000px;}
.x6{left:292.552500px;}
.x7{left:297.795000px;}
.x8{left:343.695000px;}
.x16{left:377.535000px;}
.x12{left:380.932500px;}
.x10{left:383.092500px;}
.x5{left:385.095000px;}
.x13{left:386.175000px;}
.x11{left:388.515000px;}
.x2{left:391.935000px;}
.x17{left:444.855000px;}
.xe{left:529.822500px;}
.xf{left:535.065000px;}
.x19{left:624.705000px;}
.x1a{left:654.045000px;}
.x18{left:663.765000px;}
.x3{left:808.170000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls30{letter-spacing:-0.576000pt;}
.ls3c{letter-spacing:-0.448000pt;}
.ls34{letter-spacing:-0.291733pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls4b{letter-spacing:-0.192000pt;}
.ls32{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls2f{letter-spacing:-0.000003pt;}
.lsc{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000001pt;}
.ls10{letter-spacing:0.056533pt;}
.ls8{letter-spacing:0.064000pt;}
.ls5d{letter-spacing:0.096000pt;}
.ls48{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.142933pt;}
.ls2c{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.174720pt;}
.ls5{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.384000pt;}
.ls45{letter-spacing:0.416000pt;}
.ls2d{letter-spacing:0.433280pt;}
.ls40{letter-spacing:0.576000pt;}
.ls53{letter-spacing:0.682667pt;}
.ls2e{letter-spacing:0.696320pt;}
.lsf{letter-spacing:0.698667pt;}
.ls33{letter-spacing:0.704000pt;}
.ls3f{letter-spacing:0.832000pt;}
.lsa{letter-spacing:0.896000pt;}
.ls4a{letter-spacing:0.938667pt;}
.ls2a{letter-spacing:1.216000pt;}
.ls29{letter-spacing:1.472000pt;}
.ls39{letter-spacing:2.112000pt;}
.ls59{letter-spacing:2.496000pt;}
.ls58{letter-spacing:2.656000pt;}
.ls50{letter-spacing:3.136000pt;}
.ls24{letter-spacing:3.392000pt;}
.ls1f{letter-spacing:3.776000pt;}
.ls56{letter-spacing:4.416000pt;}
.ls22{letter-spacing:4.672000pt;}
.ls19{letter-spacing:5.056000pt;}
.ls18{letter-spacing:5.312000pt;}
.ls1{letter-spacing:5.553280pt;}
.ls52{letter-spacing:5.696000pt;}
.ls4f{letter-spacing:5.952000pt;}
.ls2b{letter-spacing:6.976000pt;}
.ls41{letter-spacing:8.256000pt;}
.ls21{letter-spacing:8.512000pt;}
.ls4{letter-spacing:8.639360pt;}
.ls3{letter-spacing:8.753280pt;}
.ls37{letter-spacing:8.896000pt;}
.ls23{letter-spacing:9.152000pt;}
.ls54{letter-spacing:9.536000pt;}
.ls5a{letter-spacing:9.696000pt;}
.ls51{letter-spacing:10.176000pt;}
.ls42{letter-spacing:10.816000pt;}
.ls28{letter-spacing:11.072000pt;}
.ls27{letter-spacing:11.313280pt;}
.lsb{letter-spacing:11.456000pt;}
.ls20{letter-spacing:11.712000pt;}
.ls26{letter-spacing:11.818667pt;}
.ls4e{letter-spacing:12.096000pt;}
.ls5b{letter-spacing:12.352000pt;}
.ls46{letter-spacing:12.736000pt;}
.ls47{letter-spacing:12.896000pt;}
.ls25{letter-spacing:12.992000pt;}
.ls36{letter-spacing:13.376000pt;}
.ls55{letter-spacing:14.016000pt;}
.ls3d{letter-spacing:14.656000pt;}
.ls57{letter-spacing:14.762667pt;}
.ls3e{letter-spacing:14.912000pt;}
.ls1b{letter-spacing:15.296000pt;}
.ls44{letter-spacing:15.402667pt;}
.ls43{letter-spacing:15.456000pt;}
.ls49{letter-spacing:15.552000pt;}
.ls1c{letter-spacing:15.936000pt;}
.ls5c{letter-spacing:16.736000pt;}
.ls7{letter-spacing:17.216000pt;}
.ls2{letter-spacing:17.713280pt;}
.ls1d{letter-spacing:18.112000pt;}
.ls4c{letter-spacing:18.496000pt;}
.ls3a{letter-spacing:19.136000pt;}
.ls14{letter-spacing:19.776000pt;}
.ls15{letter-spacing:20.138667pt;}
.ls16{letter-spacing:20.416000pt;}
.ls6{letter-spacing:22.976000pt;}
.ls38{letter-spacing:23.616000pt;}
.ls35{letter-spacing:24.256000pt;}
.ls17{letter-spacing:25.792000pt;}
.ls1e{letter-spacing:28.096000pt;}
.ls1a{letter-spacing:29.632000pt;}
.ls4d{letter-spacing:38.336000pt;}
.ls3b{letter-spacing:39.232000pt;}
.ws1{word-spacing:-64.000000pt;}
.ws1d{word-spacing:-18.688000pt;}
.ws1e{word-spacing:-18.304000pt;}
.ws11{word-spacing:-18.240000pt;}
.ws1f{word-spacing:-18.176000pt;}
.wsa{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.984001pt;}
.ws4{word-spacing:-17.984000pt;}
.wsb{word-spacing:-17.983997pt;}
.ws9{word-spacing:-17.920000pt;}
.ws17{word-spacing:-17.856000pt;}
.ws7{word-spacing:-17.728000pt;}
.ws12{word-spacing:-17.408000pt;}
.ws21{word-spacing:-16.064000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws22{word-spacing:-15.360000pt;}
.ws2{word-spacing:-15.069653pt;}
.ws0{word-spacing:-14.926720pt;}
.ws20{word-spacing:-14.634987pt;}
.ws3{word-spacing:-13.120640pt;}
.ws25{word-spacing:-7.168000pt;}
.ws24{word-spacing:-7.104000pt;}
.ws6{word-spacing:0.000000pt;}
.wsf{word-spacing:0.768000pt;}
.wse{word-spacing:1.728000pt;}
.wsd{word-spacing:1.856000pt;}
.ws13{word-spacing:1.984000pt;}
.ws1c{word-spacing:2.048000pt;}
.ws1a{word-spacing:2.112000pt;}
.ws18{word-spacing:2.240000pt;}
.ws15{word-spacing:6.272000pt;}
.ws1b{word-spacing:6.528000pt;}
.ws14{word-spacing:6.752000pt;}
.ws23{word-spacing:15.936000pt;}
.ws16{word-spacing:17.184000pt;}
.ws19{word-spacing:17.312000pt;}
.wsc{word-spacing:17.376000pt;}
.ws10{word-spacing:17.536000pt;}
._3{margin-left:-0.973440pt;}
._0{width:1.154347pt;}
._16{width:2.392107pt;}
._15{width:3.392000pt;}
._1a{width:4.598400pt;}
._8{width:5.577600pt;}
._9{width:6.825600pt;}
._23{width:7.725867pt;}
._6{width:8.619733pt;}
._7{width:10.167467pt;}
._13{width:11.161384pt;}
._d{width:12.160000pt;}
._e{width:13.066667pt;}
._1e{width:14.161283pt;}
._10{width:15.168000pt;}
._12{width:16.088107pt;}
._11{width:17.002664pt;}
._a{width:18.007680pt;}
._17{width:19.496320pt;}
._18{width:20.695680pt;}
._22{width:21.824000pt;}
._b{width:22.976000pt;}
._1f{width:23.936000pt;}
._1c{width:24.842667pt;}
._19{width:25.962667pt;}
._1d{width:26.880000pt;}
._c{width:28.501760pt;}
._1b{width:30.058240pt;}
._f{width:34.282667pt;}
._24{width:38.506667pt;}
._20{width:39.680000pt;}
._21{width:41.010987pt;}
._14{width:177.227520pt;}
._1{width:344.135467pt;}
._5{width:633.098667pt;}
._2{width:653.547520pt;}
._4{width:1006.154667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.552000pt;}
.y21{bottom:51.872000pt;}
.y3{bottom:66.592000pt;}
.y20{bottom:69.952000pt;}
.y2{bottom:83.872000pt;}
.y1f{bottom:84.992000pt;}
.y1e{bottom:102.272000pt;}
.yb1{bottom:116.672000pt;}
.y45{bottom:117.152000pt;}
.y44{bottom:121.792000pt;}
.y1a{bottom:122.272000pt;}
.ye8{bottom:133.152000pt;}
.y43{bottom:133.466667pt;}
.yb0{bottom:134.746667pt;}
.ya4{bottom:135.226667pt;}
.ycc{bottom:135.866667pt;}
.ye7{bottom:137.786667pt;}
.y19{bottom:149.146667pt;}
.ye6{bottom:149.466667pt;}
.yaf{bottom:149.626667pt;}
.yae{bottom:154.266667pt;}
.y42{bottom:159.226667pt;}
.y7b{bottom:160.186667pt;}
.ya3{bottom:162.106667pt;}
.ycb{bottom:162.586667pt;}
.yad{bottom:165.946667pt;}
.y18{bottom:176.026667pt;}
.y41{bottom:186.106667pt;}
.y98{bottom:187.066667pt;}
.y7a{bottom:187.226667pt;}
.ya2{bottom:188.986667pt;}
.yca{bottom:189.466667pt;}
.y17{bottom:202.906667pt;}
.y40{bottom:212.986667pt;}
.ye5{bottom:213.786667pt;}
.y97{bottom:213.946667pt;}
.y79{bottom:214.266667pt;}
.y61{bottom:215.226667pt;}
.ya1{bottom:215.866667pt;}
.yc9{bottom:216.346667pt;}
.y16{bottom:229.786667pt;}
.y3f{bottom:239.706667pt;}
.y96{bottom:240.826667pt;}
.ye4{bottom:240.986667pt;}
.y78{bottom:241.306667pt;}
.y60{bottom:241.946667pt;}
.ya0{bottom:242.626667pt;}
.yc8{bottom:243.266667pt;}
.y15{bottom:256.706667pt;}
.y3e{bottom:266.946667pt;}
.y95{bottom:267.586667pt;}
.ye3{bottom:268.066667pt;}
.y77{bottom:268.386667pt;}
.y5f{bottom:269.026667pt;}
.y9f{bottom:269.666667pt;}
.yc7{bottom:270.146667pt;}
.y14{bottom:283.426667pt;}
.y3d{bottom:293.666667pt;}
.y94{bottom:294.626667pt;}
.ye2{bottom:295.266667pt;}
.y76{bottom:295.426667pt;}
.y5e{bottom:296.066667pt;}
.y9e{bottom:296.866667pt;}
.yc6{bottom:297.026667pt;}
.y13{bottom:310.306667pt;}
.y3c{bottom:320.706667pt;}
.y93{bottom:321.826667pt;}
.ye1{bottom:321.986667pt;}
.y75{bottom:322.626667pt;}
.y5d{bottom:323.106667pt;}
.y9d{bottom:323.586667pt;}
.yc5{bottom:323.906667pt;}
.y12{bottom:334.946667pt;}
.y3b{bottom:347.746667pt;}
.y92{bottom:348.866667pt;}
.ye0{bottom:349.026667pt;}
.y74{bottom:349.666667pt;}
.y5c{bottom:350.306667pt;}
.yc4{bottom:350.626667pt;}
.y9c{bottom:350.786667pt;}
.y11{bottom:357.346667pt;}
.y3a{bottom:374.786667pt;}
.y91{bottom:375.906667pt;}
.ydf{bottom:376.066667pt;}
.y73{bottom:376.706667pt;}
.y5b{bottom:377.346667pt;}
.yc3{bottom:377.506667pt;}
.y9b{bottom:377.666667pt;}
.y10{bottom:379.746667pt;}
.y39{bottom:401.986667pt;}
.yf{bottom:402.306667pt;}
.y90{bottom:402.946667pt;}
.yde{bottom:403.106667pt;}
.y72{bottom:403.906667pt;}
.yc2{bottom:404.386667pt;}
.y5a{bottom:404.546667pt;}
.ye{bottom:424.866667pt;}
.y38{bottom:429.026667pt;}
.y8f{bottom:429.986667pt;}
.ydd{bottom:430.146667pt;}
.y71{bottom:430.786667pt;}
.y59{bottom:431.266667pt;}
.yd{bottom:447.266667pt;}
.y37{bottom:456.066667pt;}
.y8e{bottom:457.026667pt;}
.ydc{bottom:457.346667pt;}
.y70{bottom:457.506667pt;}
.yc1{bottom:458.146667pt;}
.y58{bottom:458.466667pt;}
.yc{bottom:469.666667pt;}
.y36{bottom:483.106667pt;}
.y8d{bottom:484.066667pt;}
.ydb{bottom:484.226667pt;}
.y6f{bottom:484.546667pt;}
.yc0{bottom:485.026667pt;}
.y57{bottom:485.186667pt;}
.yb{bottom:489.666667pt;}
.y35{bottom:510.173333pt;}
.yda{bottom:511.133333pt;}
.y8c{bottom:511.293333pt;}
.y6e{bottom:511.773333pt;}
.ybf{bottom:511.933333pt;}
.y56{bottom:512.093333pt;}
.y34{bottom:537.213333pt;}
.yd9{bottom:538.013333pt;}
.y8b{bottom:538.173333pt;}
.y6d{bottom:538.653333pt;}
.ybe{bottom:538.813333pt;}
.y55{bottom:538.973333pt;}
.ya{bottom:557.853333pt;}
.y33{bottom:564.413333pt;}
.y8a{bottom:564.893333pt;}
.yef{bottom:565.053333pt;}
.y6c{bottom:565.373333pt;}
.ybd{bottom:565.533333pt;}
.y54{bottom:565.853333pt;}
.y32{bottom:591.293333pt;}
.yd7{bottom:591.773333pt;}
.yee{bottom:591.933333pt;}
.y89{bottom:592.093333pt;}
.y6b{bottom:592.413333pt;}
.y53{bottom:592.733333pt;}
.yd8{bottom:598.493333pt;}
.y31{bottom:618.013333pt;}
.yd6{bottom:618.493333pt;}
.yed{bottom:618.813333pt;}
.y88{bottom:618.973333pt;}
.ybc{bottom:619.293333pt;}
.y9a{bottom:619.453333pt;}
.y52{bottom:619.613333pt;}
.y30{bottom:645.053333pt;}
.yd5{bottom:645.373333pt;}
.yac{bottom:645.693333pt;}
.y87{bottom:645.853333pt;}
.ybb{bottom:646.173333pt;}
.y6a{bottom:646.333333pt;}
.y51{bottom:646.493333pt;}
.y99{bottom:646.653333pt;}
.y2f{bottom:672.253333pt;}
.yec{bottom:672.413333pt;}
.yab{bottom:672.573333pt;}
.y86{bottom:672.733333pt;}
.yba{bottom:672.893333pt;}
.y50{bottom:673.373333pt;}
.y69{bottom:673.533333pt;}
.y2e{bottom:698.973333pt;}
.yd4{bottom:699.133333pt;}
.yeb{bottom:699.293333pt;}
.y85{bottom:699.613333pt;}
.yb9{bottom:699.773333pt;}
.y4f{bottom:700.093333pt;}
.y68{bottom:700.413333pt;}
.y2d{bottom:726.013333pt;}
.yea{bottom:726.173333pt;}
.y84{bottom:726.333333pt;}
.yb8{bottom:726.653333pt;}
.yaa{bottom:726.813333pt;}
.y4e{bottom:726.973333pt;}
.y67{bottom:727.293333pt;}
.yd2{bottom:752.933333pt;}
.y2c{bottom:753.253333pt;}
.yb7{bottom:753.573333pt;}
.ya9{bottom:753.733333pt;}
.y4d{bottom:753.893333pt;}
.y66{bottom:754.053333pt;}
.yd3{bottom:759.653333pt;}
.yd1{bottom:779.653333pt;}
.y2b{bottom:779.973333pt;}
.y83{bottom:780.133333pt;}
.ya8{bottom:780.613333pt;}
.y4c{bottom:780.773333pt;}
.y65{bottom:780.933333pt;}
.yd0{bottom:806.853333pt;}
.y82{bottom:807.013333pt;}
.y29{bottom:807.173333pt;}
.ya7{bottom:807.493333pt;}
.y4b{bottom:807.653333pt;}
.y64{bottom:807.813333pt;}
.y2a{bottom:813.893333pt;}
.ycf{bottom:833.573333pt;}
.y81{bottom:833.893333pt;}
.y28{bottom:834.053333pt;}
.ya6{bottom:834.213333pt;}
.yb6{bottom:834.373333pt;}
.y4a{bottom:834.533333pt;}
.y63{bottom:834.693333pt;}
.yce{bottom:860.613333pt;}
.y80{bottom:860.773333pt;}
.y27{bottom:860.933333pt;}
.y49{bottom:861.253333pt;}
.y62{bottom:861.573333pt;}
.y9{bottom:883.973333pt;}
.y26{bottom:887.653333pt;}
.ye9{bottom:887.973333pt;}
.yb5{bottom:888.133333pt;}
.y48{bottom:888.453333pt;}
.y8{bottom:912.773333pt;}
.y7f{bottom:914.373333pt;}
.ycd{bottom:914.693333pt;}
.y25{bottom:914.853333pt;}
.yb4{bottom:915.013333pt;}
.y47{bottom:915.333333pt;}
.y7e{bottom:941.413333pt;}
.y24{bottom:941.573333pt;}
.yb3{bottom:941.893333pt;}
.y7{bottom:942.053333pt;}
.y46{bottom:942.213333pt;}
.y7d{bottom:968.453333pt;}
.y23{bottom:968.613333pt;}
.yb2{bottom:968.773333pt;}
.y6{bottom:968.933333pt;}
.ya5{bottom:975.653333pt;}
.y7c{bottom:995.493333pt;}
.y5{bottom:995.653333pt;}
.y22{bottom:995.813333pt;}
.y1d{bottom:1021.600000pt;}
.y1c{bottom:1042.080000pt;}
.y1{bottom:1060.160000pt;}
.y1b{bottom:1061.280000pt;}
.h7{height:31.519375pt;}
.h8{height:33.918750pt;}
.h3{height:45.105313pt;}
.h9{height:52.134375pt;}
.h4{height:54.343750pt;}
.h2{height:62.812500pt;}
.h5{height:63.582187pt;}
.h6{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.xb{left:130.912000pt;}
.xd{left:135.546667pt;}
.xc{left:152.026667pt;}
.x4{left:160.666667pt;}
.x9{left:164.986667pt;}
.x14{left:170.246667pt;}
.x15{left:174.586667pt;}
.xa{left:199.866667pt;}
.x6{left:260.046667pt;}
.x7{left:264.706667pt;}
.x8{left:305.506667pt;}
.x16{left:335.586667pt;}
.x12{left:338.606667pt;}
.x10{left:340.526667pt;}
.x5{left:342.306667pt;}
.x13{left:343.266667pt;}
.x11{left:345.346667pt;}
.x2{left:348.386667pt;}
.x17{left:395.426667pt;}
.xe{left:470.953333pt;}
.xf{left:475.613333pt;}
.x19{left:555.293333pt;}
.x1a{left:581.373333pt;}
.x18{left:590.013333pt;}
.x3{left:718.373333pt;}
}




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