
    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_e4893c4cac26df8a379fec37.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_17afd4073a1b7fa2037d2593.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a00e0c9d0670badaba765591.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7d6c51a18f2fbca23552770b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_219c9b4033db5c240c0ae6e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9c4c8eb2ce331e432d577f15.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.213379;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_a2154f87ff2a0b18d54506c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.675781;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_729d74355607576649f46ff5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9105658a0d1c9ae1d823e111.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_ddbd6475a86b4ce766ee1e03.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_433356a1a6c6f16dac3ab23c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_734c1ca4815d606226794797.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.675781;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_313697f431677db646c112bd.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_7b79c4f3a0dc32d106ffe456.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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:fff;src:url('chunks/assets/font_ded4e4fb7269ddec1655da5e.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7cfdfda3d2151604aa1c771e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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:ff11;src:url('chunks/assets/font_7499bef79940903739f25882.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.687500;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);}
.v0{vertical-align:0.000000px;}
.ls48{letter-spacing:-34.104000px;}
.ls4c{letter-spacing:-25.872000px;}
.ls3e{letter-spacing:-22.344000px;}
.ls3b{letter-spacing:-21.168000px;}
.ls6{letter-spacing:-18.648000px;}
.ls3f{letter-spacing:-17.640000px;}
.ls3c{letter-spacing:-16.464000px;}
.ls12{letter-spacing:-14.112000px;}
.ls26{letter-spacing:-12.744000px;}
.ls21{letter-spacing:-11.952000px;}
.ls39{letter-spacing:-11.760000px;}
.ls3a{letter-spacing:-9.408000px;}
.ls15{letter-spacing:-8.784000px;}
.ls36{letter-spacing:-8.232000px;}
.ls50{letter-spacing:-7.056000px;}
.ls41{letter-spacing:-5.880000px;}
.ls8{letter-spacing:-5.472000px;}
.ls5{letter-spacing:-5.208000px;}
.ls28{letter-spacing:-4.896000px;}
.ls38{letter-spacing:-4.704000px;}
.ls20{letter-spacing:-4.320000px;}
.ls37{letter-spacing:-3.528000px;}
.ls52{letter-spacing:-1.260000px;}
.ls4a{letter-spacing:-1.176000px;}
.ls45{letter-spacing:-0.588000px;}
.ls42{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.432000px;}
.ls47{letter-spacing:-0.336000px;}
.ls1{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.024000px;}
.ls1c{letter-spacing:0.060000px;}
.ls1a{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.132000px;}
.ls16{letter-spacing:0.144000px;}
.ls30{letter-spacing:0.168000px;}
.ls32{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.192000px;}
.ls2c{letter-spacing:0.252000px;}
.ls7{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.384000px;}
.ls2d{letter-spacing:0.420000px;}
.ls2b{letter-spacing:0.504000px;}
.ls2f{letter-spacing:0.588000px;}
.ls31{letter-spacing:0.672000px;}
.ls10{letter-spacing:0.864000px;}
.ls35{letter-spacing:1.008000px;}
.ls4d{letter-spacing:1.092000px;}
.ls2e{letter-spacing:1.176000px;}
.ls24{letter-spacing:1.440000px;}
.ls4{letter-spacing:1.518000px;}
.ls11{letter-spacing:1.584000px;}
.ls2{letter-spacing:1.800000px;}
.ls14{letter-spacing:2.160000px;}
.ls27{letter-spacing:3.888000px;}
.ls4f{letter-spacing:5.712000px;}
.lsf{letter-spacing:6.264000px;}
.ls4b{letter-spacing:7.056000px;}
.ls23{letter-spacing:8.064000px;}
.ls4e{letter-spacing:8.232000px;}
.ls22{letter-spacing:8.352000px;}
.ls13{letter-spacing:9.432000px;}
.lsd{letter-spacing:9.936000px;}
.ls29{letter-spacing:10.224000px;}
.ls25{letter-spacing:11.232000px;}
.ls43{letter-spacing:13.020000px;}
.lsa{letter-spacing:13.824000px;}
.ls1d{letter-spacing:14.616000px;}
.ls46{letter-spacing:15.288000px;}
.ls1f{letter-spacing:18.864000px;}
.ls3d{letter-spacing:19.656000px;}
.ls33{letter-spacing:22.092000px;}
.ls51{letter-spacing:22.596000px;}
.ls2a{letter-spacing:23.904000px;}
.ls1e{letter-spacing:24.912000px;}
.ls17{letter-spacing:28.140000px;}
.lsb{letter-spacing:28.656000px;}
.lsc{letter-spacing:30.960000px;}
.ls0{letter-spacing:35.400000px;}
.ls34{letter-spacing:40.152000px;}
.ls40{letter-spacing:56.448000px;}
.ls49{letter-spacing:57.372000px;}
.ls44{letter-spacing:3823.680000px;}
.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:-21.000000px;}
.ws6{word-spacing:-18.360000px;}
.ws4{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.472000px;}
.wsb{word-spacing:-16.296000px;}
.ws3{word-spacing:-15.792000px;}
.ws12{word-spacing:-15.120000px;}
.ws7{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.104000px;}
.ws9{word-spacing:-12.768000px;}
.wsd{word-spacing:-11.592000px;}
.wsc{word-spacing:-9.240000px;}
.ws13{word-spacing:-6.888000px;}
.ws11{word-spacing:-3.360000px;}
.ws2{word-spacing:-1.584000px;}
.ws14{word-spacing:-0.084000px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:10.752000px;}
.wse{word-spacing:19.824000px;}
.ws10{word-spacing:22.092000px;}
._24{margin-left:-3550.562400px;}
._26{margin-left:-16.464000px;}
._27{margin-left:-14.784000px;}
._25{margin-left:-13.290000px;}
._23{margin-left:-12.090000px;}
._32{margin-left:-9.288000px;}
._2d{margin-left:-8.064000px;}
._2c{margin-left:-6.552000px;}
._30{margin-left:-5.460000px;}
._1c{margin-left:-3.096000px;}
._1{margin-left:-1.596000px;}
._0{width:1.008000px;}
._3{width:2.598000px;}
._2{width:4.122000px;}
._18{width:5.628000px;}
._17{width:7.056000px;}
._16{width:8.652000px;}
._1e{width:9.660000px;}
._e{width:10.920000px;}
._f{width:12.342000px;}
._1a{width:13.620000px;}
._1d{width:14.856000px;}
._2e{width:15.924000px;}
._19{width:16.968000px;}
._15{width:18.060000px;}
._14{width:19.740000px;}
._a{width:22.014000px;}
._b{width:23.016000px;}
._10{width:24.780000px;}
._20{width:26.040000px;}
._22{width:27.300000px;}
._21{width:30.996000px;}
._29{width:32.304000px;}
._28{width:34.068000px;}
._7{width:35.598000px;}
._11{width:36.744000px;}
._12{width:39.060000px;}
._13{width:40.320000px;}
._2b{width:41.994000px;}
._33{width:43.200000px;}
._31{width:45.360000px;}
._c{width:46.704000px;}
._d{width:48.048000px;}
._2f{width:49.896000px;}
._36{width:54.174000px;}
._2a{width:55.974000px;}
._8{width:60.144000px;}
._9{width:61.488000px;}
._1f{width:80.556000px;}
._35{width:200.094000px;}
._34{width:201.852000px;}
._5{width:273.120000px;}
._1b{width:843.330000px;}
._4{width:1382.250000px;}
._6{width:1954.830000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(54,95,145);}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y64{bottom:6.885000px;}
.y33{bottom:7.185000px;}
.y46{bottom:7.485000px;}
.y3c{bottom:8.685000px;}
.y68{bottom:8.985000px;}
.y6f{bottom:9.585000px;}
.y6a{bottom:9.885000px;}
.y3e{bottom:10.785000px;}
.y37{bottom:14.685000px;}
.y40{bottom:18.285000px;}
.y48{bottom:18.315000px;}
.y60{bottom:18.885000px;}
.y4d{bottom:19.185000px;}
.y38{bottom:21.615000px;}
.y5d{bottom:21.885000px;}
.y62{bottom:29.985000px;}
.y36{bottom:30.015000px;}
.y63{bottom:30.585000px;}
.y4e{bottom:30.885000px;}
.y39{bottom:30.915000px;}
.y50{bottom:31.185000px;}
.y5f{bottom:35.685000px;}
.y3d{bottom:36.915000px;}
.y4b{bottom:37.185000px;}
.y66{bottom:37.485000px;}
.y71{bottom:38.085000px;}
.y6c{bottom:38.130000px;}
.y3a{bottom:40.515000px;}
.y61{bottom:41.985000px;}
.y74{bottom:45.285000px;}
.y5b{bottom:46.185000px;}
.y3b{bottom:56.430000px;}
.y9{bottom:57.937500px;}
.y35{bottom:65.730000px;}
.y30{bottom:69.615000px;}
.y2c{bottom:77.737500px;}
.y8{bottom:82.237500px;}
.y31{bottom:87.015000px;}
.y7{bottom:106.237500px;}
.y6{bottom:130.537500px;}
.y51{bottom:202.575000px;}
.y34{bottom:222.690000px;}
.y4f{bottom:271.335000px;}
.y2b{bottom:272.775000px;}
.y5e{bottom:276.135000px;}
.y2a{bottom:297.075000px;}
.y4c{bottom:319.635000px;}
.y29{bottom:321.075000px;}
.y76{bottom:324.435000px;}
.y28{bottom:345.075000px;}
.y75{bottom:349.035000px;}
.y47{bottom:367.935000px;}
.y77{bottom:368.820000px;}
.y27{bottom:369.405000px;}
.y70{bottom:377.265000px;}
.y4a{bottom:392.565000px;}
.y26{bottom:393.405000px;}
.y73{bottom:406.665000px;}
.y49{bottom:417.165000px;}
.y25{bottom:417.705000px;}
.y72{bottom:436.065000px;}
.y43{bottom:441.465000px;}
.y24{bottom:441.705000px;}
.y6b{bottom:464.265000px;}
.y23{bottom:466.005000px;}
.y45{bottom:466.065000px;}
.y22{bottom:490.005000px;}
.y44{bottom:490.710000px;}
.y6e{bottom:493.710000px;}
.y21{bottom:514.320000px;}
.y3f{bottom:515.310000px;}
.y6d{bottom:523.110000px;}
.y20{bottom:538.350000px;}
.y42{bottom:539.910000px;}
.y65{bottom:551.310000px;}
.y1f{bottom:562.650000px;}
.y41{bottom:564.510000px;}
.y69{bottom:579.210000px;}
.y1e{bottom:586.650000px;}
.y2f{bottom:589.110000px;}
.y67{bottom:608.640000px;}
.y1d{bottom:610.950000px;}
.y1c{bottom:634.950000px;}
.y5a{bottom:636.840000px;}
.y1b{bottom:659.250000px;}
.y1a{bottom:683.250000px;}
.y5c{bottom:685.140000px;}
.y19{bottom:707.580000px;}
.y18{bottom:731.580000px;}
.y59{bottom:732.870000px;}
.y32{bottom:749.085000px;}
.y17{bottom:755.880000px;}
.y58{bottom:760.770000px;}
.y16{bottom:779.880000px;}
.y2e{bottom:782.070000px;}
.y15{bottom:804.195000px;}
.y2d{bottom:809.670000px;}
.y14{bottom:828.195000px;}
.y13{bottom:851.880000px;}
.y57{bottom:852.525000px;}
.y12{bottom:876.525000px;}
.y11{bottom:900.825000px;}
.y10{bottom:924.825000px;}
.yf{bottom:949.125000px;}
.ye{bottom:972.525000px;}
.y56{bottom:973.125000px;}
.yd{bottom:996.825000px;}
.y55{bottom:997.425000px;}
.yc{bottom:1020.855000px;}
.y54{bottom:1021.455000px;}
.yb{bottom:1045.170000px;}
.y53{bottom:1045.755000px;}
.ya{bottom:1069.170000px;}
.y52{bottom:1069.755000px;}
.y5{bottom:1094.070000px;}
.y4{bottom:1117.455000px;}
.y3{bottom:1141.755000px;}
.y2{bottom:1165.755000px;}
.y1{bottom:1190.100000px;}
.h10{height:23.685000px;}
.h13{height:23.722500px;}
.hc{height:23.985000px;}
.h1c{height:27.285000px;}
.h24{height:27.322500px;}
.h22{height:28.485000px;}
.h20{height:28.522500px;}
.h1f{height:28.785000px;}
.h1d{height:28.822500px;}
.h18{height:38.722500px;}
.h9{height:43.989258px;}
.h15{height:47.385000px;}
.h25{height:47.685000px;}
.h16{height:47.722500px;}
.h1a{height:50.800781px;}
.h11{height:70.664062px;}
.hb{height:72.562500px;}
.hf{height:72.885000px;}
.h12{height:72.922500px;}
.h5{height:73.910156px;}
.h26{height:74.853516px;}
.h6{height:76.453125px;}
.h4{height:82.400391px;}
.h3{height:82.441406px;}
.h1b{height:84.622500px;}
.h2{height:84.656250px;}
.h21{height:86.085000px;}
.h1e{height:86.122500px;}
.h17{height:87.022500px;}
.h23{height:100.222500px;}
.h14{height:144.322500px;}
.he{height:159.360000px;}
.ha{height:183.960000px;}
.h19{height:408.105000px;}
.hd{height:525.780000px;}
.h7{height:893.100000px;}
.h8{height:893.250000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:20.370000px;}
.w10{width:24.570000px;}
.wb{width:24.870000px;}
.w4{width:30.282000px;}
.w20{width:30.907500px;}
.w18{width:31.185000px;}
.w1c{width:35.685000px;}
.w23{width:44.370000px;}
.w1b{width:52.207500px;}
.w1f{width:52.470000px;}
.wc{width:58.770000px;}
.w11{width:67.207500px;}
.w12{width:71.685000px;}
.w8{width:78.307500px;}
.wd{width:88.185000px;}
.w9{width:89.985000px;}
.w1d{width:90.585000px;}
.w13{width:90.922500px;}
.we{width:94.822500px;}
.w19{width:95.122500px;}
.w15{width:101.419500px;}
.wa{width:102.322500px;}
.w1a{width:105.270000px;}
.wf{width:105.570000px;}
.w1e{width:105.622500px;}
.w14{width:108.907500px;}
.w22{width:113.722500px;}
.w21{width:115.785000px;}
.w5{width:135.319500px;}
.w16{width:141.622500px;}
.w17{width:881.880000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.w6{width:1037.340000px;}
.w2{width:1262.700000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.x3d{left:1.800000px;}
.x39{left:3.900000px;}
.x3a{left:6.285000px;}
.x3c{left:7.500000px;}
.x38{left:8.685000px;}
.x37{left:10.200000px;}
.x35{left:11.700000px;}
.x36{left:12.900000px;}
.x18{left:14.700000px;}
.x52{left:15.900000px;}
.x21{left:17.085000px;}
.x13{left:19.500000px;}
.x23{left:21.900000px;}
.x3b{left:23.400000px;}
.x2e{left:26.130000px;}
.x30{left:28.200000px;}
.x12{left:29.400000px;}
.x15{left:30.637500px;}
.x4b{left:31.845000px;}
.x42{left:33.600000px;}
.x45{left:35.100000px;}
.x26{left:36.300000px;}
.x34{left:39.037500px;}
.x51{left:42.315000px;}
.x1e{left:43.545000px;}
.x2a{left:44.985000px;}
.x24{left:46.185000px;}
.x1c{left:49.500000px;}
.x28{left:51.900000px;}
.x1a{left:56.130000px;}
.x14{left:60.300000px;}
.x1f{left:68.145000px;}
.x2b{left:69.600000px;}
.x33{left:71.385000px;}
.x2{left:84.937500px;}
.x11{left:95.737500px;}
.xe{left:106.237500px;}
.x54{left:111.637500px;}
.xa{left:113.137500px;}
.x5{left:119.137500px;}
.x3{left:138.037500px;}
.x9{left:144.937500px;}
.x40{left:152.145000px;}
.x1{left:162.930000px;}
.x41{left:170.430000px;}
.x16{left:196.545000px;}
.x19{left:217.545000px;}
.xd{left:267.675000px;}
.xc{left:271.575000px;}
.x1b{left:296.475000px;}
.x55{left:302.520000px;}
.xb{left:305.520000px;}
.x43{left:312.675000px;}
.x8{left:324.720000px;}
.x6{left:344.220000px;}
.x44{left:354.075000px;}
.x1d{left:387.075000px;}
.x53{left:435.750000px;}
.x46{left:440.520000px;}
.x7{left:457.050000px;}
.x17{left:461.505000px;}
.x20{left:490.320000px;}
.x3e{left:494.505000px;}
.x22{left:515.820000px;}
.x47{left:546.720000px;}
.x25{left:575.550000px;}
.x48{left:599.850000px;}
.xf{left:627.150000px;}
.x49{left:636.150000px;}
.x4{left:660.825000px;}
.x27{left:664.350000px;}
.x4a{left:727.350000px;}
.x29{left:760.095000px;}
.x4c{left:833.595000px;}
.x2c{left:866.295000px;}
.x4d{left:886.995000px;}
.x2d{left:891.795000px;}
.x4e{left:918.825000px;}
.x2f{left:959.925000px;}
.x31{left:1032.225000px;}
.x4f{left:1035.525000px;}
.x3f{left:1073.070000px;}
.x10{left:1088.955000px;}
.x32{left:1124.070000px;}
.x50{left:1150.170000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls48{letter-spacing:-30.314667pt;}
.ls4c{letter-spacing:-22.997333pt;}
.ls3e{letter-spacing:-19.861333pt;}
.ls3b{letter-spacing:-18.816000pt;}
.ls6{letter-spacing:-16.576000pt;}
.ls3f{letter-spacing:-15.680000pt;}
.ls3c{letter-spacing:-14.634667pt;}
.ls12{letter-spacing:-12.544000pt;}
.ls26{letter-spacing:-11.328000pt;}
.ls21{letter-spacing:-10.624000pt;}
.ls39{letter-spacing:-10.453333pt;}
.ls3a{letter-spacing:-8.362667pt;}
.ls15{letter-spacing:-7.808000pt;}
.ls36{letter-spacing:-7.317333pt;}
.ls50{letter-spacing:-6.272000pt;}
.ls41{letter-spacing:-5.226667pt;}
.ls8{letter-spacing:-4.864000pt;}
.ls5{letter-spacing:-4.629333pt;}
.ls28{letter-spacing:-4.352000pt;}
.ls38{letter-spacing:-4.181333pt;}
.ls20{letter-spacing:-3.840000pt;}
.ls37{letter-spacing:-3.136000pt;}
.ls52{letter-spacing:-1.120000pt;}
.ls4a{letter-spacing:-1.045333pt;}
.ls45{letter-spacing:-0.522667pt;}
.ls42{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls47{letter-spacing:-0.298667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.021333pt;}
.ls1c{letter-spacing:0.053333pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.117333pt;}
.ls16{letter-spacing:0.128000pt;}
.ls30{letter-spacing:0.149333pt;}
.ls32{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.170667pt;}
.ls2c{letter-spacing:0.224000pt;}
.ls7{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.341333pt;}
.ls2d{letter-spacing:0.373333pt;}
.ls2b{letter-spacing:0.448000pt;}
.ls2f{letter-spacing:0.522667pt;}
.ls31{letter-spacing:0.597333pt;}
.ls10{letter-spacing:0.768000pt;}
.ls35{letter-spacing:0.896000pt;}
.ls4d{letter-spacing:0.970667pt;}
.ls2e{letter-spacing:1.045333pt;}
.ls24{letter-spacing:1.280000pt;}
.ls4{letter-spacing:1.349333pt;}
.ls11{letter-spacing:1.408000pt;}
.ls2{letter-spacing:1.600000pt;}
.ls14{letter-spacing:1.920000pt;}
.ls27{letter-spacing:3.456000pt;}
.ls4f{letter-spacing:5.077333pt;}
.lsf{letter-spacing:5.568000pt;}
.ls4b{letter-spacing:6.272000pt;}
.ls23{letter-spacing:7.168000pt;}
.ls4e{letter-spacing:7.317333pt;}
.ls22{letter-spacing:7.424000pt;}
.ls13{letter-spacing:8.384000pt;}
.lsd{letter-spacing:8.832000pt;}
.ls29{letter-spacing:9.088000pt;}
.ls25{letter-spacing:9.984000pt;}
.ls43{letter-spacing:11.573333pt;}
.lsa{letter-spacing:12.288000pt;}
.ls1d{letter-spacing:12.992000pt;}
.ls46{letter-spacing:13.589333pt;}
.ls1f{letter-spacing:16.768000pt;}
.ls3d{letter-spacing:17.472000pt;}
.ls33{letter-spacing:19.637333pt;}
.ls51{letter-spacing:20.085333pt;}
.ls2a{letter-spacing:21.248000pt;}
.ls1e{letter-spacing:22.144000pt;}
.ls17{letter-spacing:25.013333pt;}
.lsb{letter-spacing:25.472000pt;}
.lsc{letter-spacing:27.520000pt;}
.ls0{letter-spacing:31.466667pt;}
.ls34{letter-spacing:35.690667pt;}
.ls40{letter-spacing:50.176000pt;}
.ls49{letter-spacing:50.997333pt;}
.ls44{letter-spacing:3398.826667pt;}
.ws0{word-spacing:-18.666667pt;}
.ws6{word-spacing:-16.320000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.530667pt;}
.wsb{word-spacing:-14.485333pt;}
.ws3{word-spacing:-14.037333pt;}
.ws12{word-spacing:-13.440000pt;}
.ws7{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.648000pt;}
.ws9{word-spacing:-11.349333pt;}
.wsd{word-spacing:-10.304000pt;}
.wsc{word-spacing:-8.213333pt;}
.ws13{word-spacing:-6.122667pt;}
.ws11{word-spacing:-2.986667pt;}
.ws2{word-spacing:-1.408000pt;}
.ws14{word-spacing:-0.074667pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:9.557333pt;}
.wse{word-spacing:17.621333pt;}
.ws10{word-spacing:19.637333pt;}
._24{margin-left:-3156.055467pt;}
._26{margin-left:-14.634667pt;}
._27{margin-left:-13.141333pt;}
._25{margin-left:-11.813333pt;}
._23{margin-left:-10.746667pt;}
._32{margin-left:-8.256000pt;}
._2d{margin-left:-7.168000pt;}
._2c{margin-left:-5.824000pt;}
._30{margin-left:-4.853333pt;}
._1c{margin-left:-2.752000pt;}
._1{margin-left:-1.418667pt;}
._0{width:0.896000pt;}
._3{width:2.309333pt;}
._2{width:3.664000pt;}
._18{width:5.002667pt;}
._17{width:6.272000pt;}
._16{width:7.690667pt;}
._1e{width:8.586667pt;}
._e{width:9.706667pt;}
._f{width:10.970667pt;}
._1a{width:12.106667pt;}
._1d{width:13.205333pt;}
._2e{width:14.154667pt;}
._19{width:15.082667pt;}
._15{width:16.053333pt;}
._14{width:17.546667pt;}
._a{width:19.568000pt;}
._b{width:20.458667pt;}
._10{width:22.026667pt;}
._20{width:23.146667pt;}
._22{width:24.266667pt;}
._21{width:27.552000pt;}
._29{width:28.714667pt;}
._28{width:30.282667pt;}
._7{width:31.642667pt;}
._11{width:32.661333pt;}
._12{width:34.720000pt;}
._13{width:35.840000pt;}
._2b{width:37.328000pt;}
._33{width:38.400000pt;}
._31{width:40.320000pt;}
._c{width:41.514667pt;}
._d{width:42.709333pt;}
._2f{width:44.352000pt;}
._36{width:48.154667pt;}
._2a{width:49.754667pt;}
._8{width:53.461333pt;}
._9{width:54.656000pt;}
._1f{width:71.605333pt;}
._35{width:177.861333pt;}
._34{width:179.424000pt;}
._5{width:242.773333pt;}
._1b{width:749.626667pt;}
._4{width:1228.666667pt;}
._6{width:1737.626667pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:6.120000pt;}
.y33{bottom:6.386667pt;}
.y46{bottom:6.653333pt;}
.y3c{bottom:7.720000pt;}
.y68{bottom:7.986667pt;}
.y6f{bottom:8.520000pt;}
.y6a{bottom:8.786667pt;}
.y3e{bottom:9.586667pt;}
.y37{bottom:13.053333pt;}
.y40{bottom:16.253333pt;}
.y48{bottom:16.280000pt;}
.y60{bottom:16.786667pt;}
.y4d{bottom:17.053333pt;}
.y38{bottom:19.213333pt;}
.y5d{bottom:19.453333pt;}
.y62{bottom:26.653333pt;}
.y36{bottom:26.680000pt;}
.y63{bottom:27.186667pt;}
.y4e{bottom:27.453333pt;}
.y39{bottom:27.480000pt;}
.y50{bottom:27.720000pt;}
.y5f{bottom:31.720000pt;}
.y3d{bottom:32.813333pt;}
.y4b{bottom:33.053333pt;}
.y66{bottom:33.320000pt;}
.y71{bottom:33.853333pt;}
.y6c{bottom:33.893333pt;}
.y3a{bottom:36.013333pt;}
.y61{bottom:37.320000pt;}
.y74{bottom:40.253333pt;}
.y5b{bottom:41.053333pt;}
.y3b{bottom:50.160000pt;}
.y9{bottom:51.500000pt;}
.y35{bottom:58.426667pt;}
.y30{bottom:61.880000pt;}
.y2c{bottom:69.100000pt;}
.y8{bottom:73.100000pt;}
.y31{bottom:77.346667pt;}
.y7{bottom:94.433333pt;}
.y6{bottom:116.033333pt;}
.y51{bottom:180.066667pt;}
.y34{bottom:197.946667pt;}
.y4f{bottom:241.186667pt;}
.y2b{bottom:242.466667pt;}
.y5e{bottom:245.453333pt;}
.y2a{bottom:264.066667pt;}
.y4c{bottom:284.120000pt;}
.y29{bottom:285.400000pt;}
.y76{bottom:288.386667pt;}
.y28{bottom:306.733333pt;}
.y75{bottom:310.253333pt;}
.y47{bottom:327.053333pt;}
.y77{bottom:327.840000pt;}
.y27{bottom:328.360000pt;}
.y70{bottom:335.346667pt;}
.y4a{bottom:348.946667pt;}
.y26{bottom:349.693333pt;}
.y73{bottom:361.480000pt;}
.y49{bottom:370.813333pt;}
.y25{bottom:371.293333pt;}
.y72{bottom:387.613333pt;}
.y43{bottom:392.413333pt;}
.y24{bottom:392.626667pt;}
.y6b{bottom:412.680000pt;}
.y23{bottom:414.226667pt;}
.y45{bottom:414.280000pt;}
.y22{bottom:435.560000pt;}
.y44{bottom:436.186667pt;}
.y6e{bottom:438.853333pt;}
.y21{bottom:457.173333pt;}
.y3f{bottom:458.053333pt;}
.y6d{bottom:464.986667pt;}
.y20{bottom:478.533333pt;}
.y42{bottom:479.920000pt;}
.y65{bottom:490.053333pt;}
.y1f{bottom:500.133333pt;}
.y41{bottom:501.786667pt;}
.y69{bottom:514.853333pt;}
.y1e{bottom:521.466667pt;}
.y2f{bottom:523.653333pt;}
.y67{bottom:541.013333pt;}
.y1d{bottom:543.066667pt;}
.y1c{bottom:564.400000pt;}
.y5a{bottom:566.080000pt;}
.y1b{bottom:586.000000pt;}
.y1a{bottom:607.333333pt;}
.y5c{bottom:609.013333pt;}
.y19{bottom:628.960000pt;}
.y18{bottom:650.293333pt;}
.y59{bottom:651.440000pt;}
.y32{bottom:665.853333pt;}
.y17{bottom:671.893333pt;}
.y58{bottom:676.240000pt;}
.y16{bottom:693.226667pt;}
.y2e{bottom:695.173333pt;}
.y15{bottom:714.840000pt;}
.y2d{bottom:719.706667pt;}
.y14{bottom:736.173333pt;}
.y13{bottom:757.226667pt;}
.y57{bottom:757.800000pt;}
.y12{bottom:779.133333pt;}
.y11{bottom:800.733333pt;}
.y10{bottom:822.066667pt;}
.yf{bottom:843.666667pt;}
.ye{bottom:864.466667pt;}
.y56{bottom:865.000000pt;}
.yd{bottom:886.066667pt;}
.y55{bottom:886.600000pt;}
.yc{bottom:907.426667pt;}
.y54{bottom:907.960000pt;}
.yb{bottom:929.040000pt;}
.y53{bottom:929.560000pt;}
.ya{bottom:950.373333pt;}
.y52{bottom:950.893333pt;}
.y5{bottom:972.506667pt;}
.y4{bottom:993.293333pt;}
.y3{bottom:1014.893333pt;}
.y2{bottom:1036.226667pt;}
.y1{bottom:1057.866667pt;}
.h10{height:21.053333pt;}
.h13{height:21.086667pt;}
.hc{height:21.320000pt;}
.h1c{height:24.253333pt;}
.h24{height:24.286667pt;}
.h22{height:25.320000pt;}
.h20{height:25.353333pt;}
.h1f{height:25.586667pt;}
.h1d{height:25.620000pt;}
.h18{height:34.420000pt;}
.h9{height:39.101562pt;}
.h15{height:42.120000pt;}
.h25{height:42.386667pt;}
.h16{height:42.420000pt;}
.h1a{height:45.156250pt;}
.h11{height:62.812500pt;}
.hb{height:64.500000pt;}
.hf{height:64.786667pt;}
.h12{height:64.820000pt;}
.h5{height:65.697917pt;}
.h26{height:66.536458pt;}
.h6{height:67.958333pt;}
.h4{height:73.244792pt;}
.h3{height:73.281250pt;}
.h1b{height:75.220000pt;}
.h2{height:75.250000pt;}
.h21{height:76.520000pt;}
.h1e{height:76.553333pt;}
.h17{height:77.353333pt;}
.h23{height:89.086667pt;}
.h14{height:128.286667pt;}
.he{height:141.653333pt;}
.ha{height:163.520000pt;}
.h19{height:362.760000pt;}
.hd{height:467.360000pt;}
.h7{height:793.866667pt;}
.h8{height:794.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:18.106667pt;}
.w10{width:21.840000pt;}
.wb{width:22.106667pt;}
.w4{width:26.917333pt;}
.w20{width:27.473333pt;}
.w18{width:27.720000pt;}
.w1c{width:31.720000pt;}
.w23{width:39.440000pt;}
.w1b{width:46.406667pt;}
.w1f{width:46.640000pt;}
.wc{width:52.240000pt;}
.w11{width:59.740000pt;}
.w12{width:63.720000pt;}
.w8{width:69.606667pt;}
.wd{width:78.386667pt;}
.w9{width:79.986667pt;}
.w1d{width:80.520000pt;}
.w13{width:80.820000pt;}
.we{width:84.286667pt;}
.w19{width:84.553333pt;}
.w15{width:90.150667pt;}
.wa{width:90.953333pt;}
.w1a{width:93.573333pt;}
.wf{width:93.840000pt;}
.w1e{width:93.886667pt;}
.w14{width:96.806667pt;}
.w22{width:101.086667pt;}
.w21{width:102.920000pt;}
.w5{width:120.284000pt;}
.w16{width:125.886667pt;}
.w17{width:783.893333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.w6{width:922.080000pt;}
.w2{width:1122.400000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3d{left:1.600000pt;}
.x39{left:3.466667pt;}
.x3a{left:5.586667pt;}
.x3c{left:6.666667pt;}
.x38{left:7.720000pt;}
.x37{left:9.066667pt;}
.x35{left:10.400000pt;}
.x36{left:11.466667pt;}
.x18{left:13.066667pt;}
.x52{left:14.133333pt;}
.x21{left:15.186667pt;}
.x13{left:17.333333pt;}
.x23{left:19.466667pt;}
.x3b{left:20.800000pt;}
.x2e{left:23.226667pt;}
.x30{left:25.066667pt;}
.x12{left:26.133333pt;}
.x15{left:27.233333pt;}
.x4b{left:28.306667pt;}
.x42{left:29.866667pt;}
.x45{left:31.200000pt;}
.x26{left:32.266667pt;}
.x34{left:34.700000pt;}
.x51{left:37.613333pt;}
.x1e{left:38.706667pt;}
.x2a{left:39.986667pt;}
.x24{left:41.053333pt;}
.x1c{left:44.000000pt;}
.x28{left:46.133333pt;}
.x1a{left:49.893333pt;}
.x14{left:53.600000pt;}
.x1f{left:60.573333pt;}
.x2b{left:61.866667pt;}
.x33{left:63.453333pt;}
.x2{left:75.500000pt;}
.x11{left:85.100000pt;}
.xe{left:94.433333pt;}
.x54{left:99.233333pt;}
.xa{left:100.566667pt;}
.x5{left:105.900000pt;}
.x3{left:122.700000pt;}
.x9{left:128.833333pt;}
.x40{left:135.240000pt;}
.x1{left:144.826667pt;}
.x41{left:151.493333pt;}
.x16{left:174.706667pt;}
.x19{left:193.373333pt;}
.xd{left:237.933333pt;}
.xc{left:241.400000pt;}
.x1b{left:263.533333pt;}
.x55{left:268.906667pt;}
.xb{left:271.573333pt;}
.x43{left:277.933333pt;}
.x8{left:288.640000pt;}
.x6{left:305.973333pt;}
.x44{left:314.733333pt;}
.x1d{left:344.066667pt;}
.x53{left:387.333333pt;}
.x46{left:391.573333pt;}
.x7{left:406.266667pt;}
.x17{left:410.226667pt;}
.x20{left:435.840000pt;}
.x3e{left:439.560000pt;}
.x22{left:458.506667pt;}
.x47{left:485.973333pt;}
.x25{left:511.600000pt;}
.x48{left:533.200000pt;}
.xf{left:557.466667pt;}
.x49{left:565.466667pt;}
.x4{left:587.400000pt;}
.x27{left:590.533333pt;}
.x4a{left:646.533333pt;}
.x29{left:675.640000pt;}
.x4c{left:740.973333pt;}
.x2c{left:770.040000pt;}
.x4d{left:788.440000pt;}
.x2d{left:792.706667pt;}
.x4e{left:816.733333pt;}
.x2f{left:853.266667pt;}
.x31{left:917.533333pt;}
.x4f{left:920.466667pt;}
.x3f{left:953.840000pt;}
.x10{left:967.960000pt;}
.x32{left:999.173333pt;}
.x50{left:1022.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; }
  