
    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_c9790132bee37ed1c246de35.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_30a818da4ac703e343d21c31.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_ecef1f3a8f870c8653205d36.woff')format("woff");}.ff3{font-family:ff3;line-height:0.664000;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_9a83d479de7c72bfe8ca0489.woff')format("woff");}.ff4{font-family:ff4;line-height:0.665000;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_329587196ba19aec0ef88b49.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_45925200d2a21a1eae94c8ba.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_52ad0db3cc892834d8e495d5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_d0ec0750eab5e1f0e59f2887.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_8d85993a9c2a96eb8391666e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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_9239e342c0d3781251deea63.woff')format("woff");}.ffa{font-family:ffa;line-height:0.668000;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_5f63407384306687dcc372da.woff')format("woff");}.ffb{font-family:ffb;line-height:0.431000;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_48171dce6d4a3e21a339ede4.woff')format("woff");}.ffc{font-family:ffc;line-height:1.200000;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_ac440404de05ad2b63fc4573.woff')format("woff");}.ffd{font-family:ffd;line-height:0.901000;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_7cd085e0151a9c2ff8db575c.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_ddb7e508c74c261e60db3d4b.woff')format("woff");}.fff{font-family:fff;line-height:0.390000;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_52431a3e10a3151235b78fd8.woff')format("woff");}.ff10{font-family:ff10;line-height:0.070000;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_17c6a31d8d10ef3788c2e3af.woff')format("woff");}.ff11{font-family:ff11;line-height:0.699000;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:ff12;src:url('chunks/assets/font_e3f37980f8e4ca7cb51ddd42.woff')format("woff");}.ff12{font-family:ff12;line-height:0.922000;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:ff13;src:url('chunks/assets/font_0cf5954a97218c4abd7f5ea1.woff')format("woff");}.ff13{font-family:ff13;line-height:0.777000;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);}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.516000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:24.684000px;}
.v5{vertical-align:51.108000px;}
.ls10{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.025056px;}
.ls2{letter-spacing:0.025452px;}
.ls8{letter-spacing:0.029675px;}
.ls1{letter-spacing:2.151922px;}
.ls0{letter-spacing:2.988532px;}
.ls6{letter-spacing:2.989409px;}
.ls9{letter-spacing:2.991340px;}
.ls12{letter-spacing:4.519066px;}
.ls14{letter-spacing:4.841856px;}
.ls19{letter-spacing:4.949453px;}
.ls15{letter-spacing:5.003251px;}
.ls20{letter-spacing:5.218445px;}
.ls13{letter-spacing:5.326042px;}
.ls17{letter-spacing:5.648832px;}
.ls7{letter-spacing:9.922750px;}
.ls4{letter-spacing:13.270183px;}
.ls3{letter-spacing:16.275340px;}
.lsc{letter-spacing:16.617617px;}
.ls21{letter-spacing:18.452851px;}
.lsb{letter-spacing:19.593340px;}
.lsd{letter-spacing:19.905275px;}
.lsf{letter-spacing:21.519216px;}
.lse{letter-spacing:23.910240px;}
.ls1b{letter-spacing:41.532365px;}
.ls1d{letter-spacing:61.652966px;}
.ls1a{letter-spacing:62.621338px;}
.ls1f{letter-spacing:64.020096px;}
.ls11{letter-spacing:64.289088px;}
.ls1c{letter-spacing:64.504282px;}
.ls1e{letter-spacing:64.611878px;}
.ls18{letter-spacing:64.719475px;}
.ls16{letter-spacing:64.773274px;}
.lsa{letter-spacing:164.502451px;}
.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;}
}
.ws41{word-spacing:-17.683534px;}
.ws48{word-spacing:-16.605662px;}
.ws75{word-spacing:-5.272243px;}
.ws58{word-spacing:-5.057050px;}
.ws74{word-spacing:-5.003251px;}
.ws3d{word-spacing:-2.618171px;}
.ws84{word-spacing:-1.963642px;}
.ws2b{word-spacing:-0.167372px;}
.wsc{word-spacing:-0.059776px;}
.ws57{word-spacing:-0.053798px;}
.wsa{word-spacing:-0.047820px;}
.ws4f{word-spacing:0.000000px;}
.wsb{word-spacing:0.011955px;}
.ws4a{word-spacing:0.609711px;}
.ws32{word-spacing:1.087916px;}
.ws4{word-spacing:1.371859px;}
.ws11{word-spacing:1.386794px;}
.ws7e{word-spacing:1.748448px;}
.ws62{word-spacing:2.044326px;}
.ws51{word-spacing:2.522530px;}
.ws83{word-spacing:2.609222px;}
.ws2d{word-spacing:2.940960px;}
.ws81{word-spacing:3.039610px;}
.ws7{word-spacing:3.093408px;}
.ws13{word-spacing:3.299613px;}
.wsd{word-spacing:3.359389px;}
.ws22{word-spacing:3.513036px;}
.ws6{word-spacing:3.631392px;}
.ws3{word-spacing:3.900384px;}
.ws39{word-spacing:4.016920px;}
.ws80{word-spacing:4.061779px;}
.ws44{word-spacing:4.136472px;}
.ws42{word-spacing:4.196247px;}
.ws10{word-spacing:4.375574px;}
.ws3e{word-spacing:4.495125px;}
.ws19{word-spacing:4.614676px;}
.ws86{word-spacing:4.653562px;}
.ws20{word-spacing:5.033106px;}
.ws46{word-spacing:5.152657px;}
.ws37{word-spacing:5.272208px;}
.wse{word-spacing:5.391759px;}
.ws34{word-spacing:5.511310px;}
.ws9{word-spacing:5.750413px;}
.ws2c{word-spacing:5.810188px;}
.ws30{word-spacing:6.348169px;}
.ws35{word-spacing:6.766598px;}
.ws36{word-spacing:7.005700px;}
.ws8{word-spacing:7.125252px;}
.ws7f{word-spacing:7.343482px;}
.ws5a{word-spacing:7.477978px;}
.ws12{word-spacing:7.483905px;}
.ws2f{word-spacing:7.603456px;}
.ws6d{word-spacing:7.639373px;}
.ws5f{word-spacing:7.693171px;}
.ws60{word-spacing:7.746970px;}
.ws59{word-spacing:7.800768px;}
.ws7b{word-spacing:7.854566px;}
.ws5b{word-spacing:7.962163px;}
.ws71{word-spacing:8.015962px;}
.ws31{word-spacing:8.021886px;}
.ws63{word-spacing:8.177357px;}
.ws5{word-spacing:8.204256px;}
.ws5c{word-spacing:8.231155px;}
.ws5d{word-spacing:8.392550px;}
.ws7d{word-spacing:8.473248px;}
.ws17{word-spacing:8.500090px;}
.ws38{word-spacing:8.798968px;}
.ws73{word-spacing:8.984333px;}
.ws4c{word-spacing:9.097846px;}
.ws33{word-spacing:9.994480px;}
.ws1e{word-spacing:10.831339px;}
.ws29{word-spacing:11.189992px;}
.ws21{word-spacing:11.249768px;}
.ws85{word-spacing:11.916346px;}
.wsf{word-spacing:12.505056px;}
.ws26{word-spacing:13.102812px;}
.ws1b{word-spacing:13.879894px;}
.ws14{word-spacing:14.059221px;}
.ws82{word-spacing:15.036653px;}
.ws23{word-spacing:16.498066px;}
.ws1{word-spacing:16.868674px;}
.ws3a{word-spacing:17.406655px;}
.ws3b{word-spacing:17.466430px;}
.ws49{word-spacing:18.112007px;}
.ws4b{word-spacing:18.829314px;}
.ws2a{word-spacing:19.199923px;}
.ws50{word-spacing:19.690214px;}
.ws3c{word-spacing:20.383480px;}
.ws52{word-spacing:21.280114px;}
.ws4e{word-spacing:22.834279px;}
.ws4d{word-spacing:23.683093px;}
.ws43{word-spacing:24.448220px;}
.ws2{word-spacing:24.801062px;}
.ws3f{word-spacing:24.806874px;}
.ws16{word-spacing:25.105752px;}
.ws24{word-spacing:25.524181px;}
.ws2e{word-spacing:26.361040px;}
.ws0{word-spacing:26.827469px;}
.ws1a{word-spacing:26.839244px;}
.ws47{word-spacing:27.018571px;}
.ws28{word-spacing:27.735878px;}
.ws1c{word-spacing:29.110717px;}
.ws25{word-spacing:29.648698px;}
.ws1f{word-spacing:29.887800px;}
.ws5e{word-spacing:30.503693px;}
.ws18{word-spacing:32.278824px;}
.ws15{word-spacing:32.517926px;}
.ws1d{word-spacing:32.697253px;}
.ws56{word-spacing:33.086016px;}
.ws54{word-spacing:33.355008px;}
.ws45{word-spacing:33.414560px;}
.ws55{word-spacing:33.516403px;}
.ws40{word-spacing:33.713438px;}
.ws27{word-spacing:33.832990px;}
.ws77{word-spacing:33.839194px;}
.ws53{word-spacing:34.646170px;}
.ws6a{word-spacing:39.488026px;}
.ws67{word-spacing:40.079808px;}
.ws68{word-spacing:40.402598px;}
.ws61{word-spacing:40.886784px;}
.ws69{word-spacing:41.370970px;}
.ws79{word-spacing:41.747558px;}
.ws64{word-spacing:42.124147px;}
.ws6b{word-spacing:42.339341px;}
.ws66{word-spacing:42.608333px;}
.ws72{word-spacing:42.662131px;}
.ws78{word-spacing:42.931123px;}
.ws65{word-spacing:43.253914px;}
.ws6c{word-spacing:43.630502px;}
.ws7c{word-spacing:44.060890px;}
.ws70{word-spacing:62.591450px;}
.ws7a{word-spacing:63.990208px;}
.ws6e{word-spacing:64.259200px;}
.ws6f{word-spacing:64.581991px;}
.ws76{word-spacing:64.743386px;}
._25{margin-left:-27.544330px;}
._6{margin-left:-5.254310px;}
._17{margin-left:-4.250074px;}
._f{margin-left:-3.239837px;}
._0{margin-left:-2.223667px;}
._1{margin-left:-1.004215px;}
._23{width:1.004237px;}
._5{width:2.116070px;}
._18{width:3.293635px;}
._19{width:5.057050px;}
._1a{width:6.348211px;}
._1b{width:7.418314px;}
._1c{width:8.852820px;}
._1d{width:10.735814px;}
._24{width:23.886490px;}
._10{width:25.117424px;}
._2{width:26.289485px;}
._3{width:27.347520px;}
._d{width:28.746079px;}
._9{width:30.216602px;}
._b{width:31.657144px;}
._7{width:33.713438px;}
._11{width:35.817852px;}
._14{width:36.881545px;}
._20{width:38.865610px;}
._4{width:39.918413px;}
._12{width:41.687342px;}
._1f{width:42.692414px;}
._1e{width:44.748336px;}
._13{width:46.182614px;}
._e{width:50.725544px;}
._a{width:53.499134px;}
._8{width:54.515347px;}
._c{width:55.890186px;}
._16{width:67.307326px;}
._15{width:69.052772px;}
._21{width:73.434816px;}
._22{width:176.650982px;}
.fc3{color:rgb(0,153,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y29{bottom:102.664500px;}
.y28{bottom:120.597000px;}
.y46{bottom:145.326000px;}
.y27{bottom:151.569000px;}
.y26{bottom:169.501500px;}
.y25{bottom:187.434000px;}
.y45{bottom:187.987500px;}
.y44{bottom:205.921500px;}
.y24{bottom:218.406000px;}
.y43{bottom:223.854000px;}
.y23{bottom:236.338500px;}
.y42{bottom:266.515500px;}
.y22{bottom:275.802000px;}
.y41{bottom:284.448000px;}
.y40{bottom:302.380500px;}
.y21{bottom:326.946000px;}
.y3f{bottom:344.767500px;}
.y20{bottom:344.878500px;}
.y1f{bottom:362.811000px;}
.y1e{bottom:380.743500px;}
.y1d{bottom:398.947500px;}
.y3e{bottom:411.417000px;}
.y1c{bottom:416.880000px;}
.y3d{bottom:429.349500px;}
.y1b{bottom:434.812500px;}
.y3c{bottom:447.282000px;}
.y1a{bottom:452.745000px;}
.y3b{bottom:465.214500px;}
.y3a{bottom:483.148500px;}
.y19{bottom:492.208500px;}
.y5e{bottom:493.002000px;}
.y80{bottom:496.363500px;}
.y5d{bottom:508.693500px;}
.y7f{bottom:512.055000px;}
.y5c{bottom:524.383500px;}
.y39{bottom:525.810000px;}
.y7e{bottom:527.746500px;}
.y5b{bottom:540.075000px;}
.y18{bottom:543.352500px;}
.y7d{bottom:543.438000px;}
.y38{bottom:543.742500px;}
.y7c{bottom:559.128000px;}
.y17{bottom:561.286500px;}
.y37{bottom:561.675000px;}
.y5a{bottom:567.921000px;}
.y7b{bottom:574.819500px;}
.y36{bottom:579.607500px;}
.y7a{bottom:590.511000px;}
.y35{bottom:597.540000px;}
.y16{bottom:600.748500px;}
.y59{bottom:601.509000px;}
.y79{bottom:606.202500px;}
.y34{bottom:615.474000px;}
.y58{bottom:617.200500px;}
.y78{bottom:621.894000px;}
.y57{bottom:632.892000px;}
.y33{bottom:633.406500px;}
.y77{bottom:637.584000px;}
.y32{bottom:651.339000px;}
.y15{bottom:651.892500px;}
.y76{bottom:653.275500px;}
.y56{bottom:660.738000px;}
.y75{bottom:668.967000px;}
.y31{bottom:669.271500px;}
.y14{bottom:669.825000px;}
.y30{bottom:687.204000px;}
.y13{bottom:687.759000px;}
.y55{bottom:700.591500px;}
.y12{bottom:705.691500px;}
.y11{bottom:723.624000px;}
.y2f{bottom:729.865500px;}
.y10{bottom:741.556500px;}
.y2e{bottom:747.799500px;}
.y74{bottom:749.739000px;}
.yf{bottom:759.489000px;}
.y73{bottom:765.430500px;}
.y54{bottom:768.798000px;}
.ye{bottom:777.421500px;}
.y72{bottom:781.120500px;}
.y53{bottom:784.489500px;}
.y2d{bottom:790.461000px;}
.y71{bottom:796.812000px;}
.y52{bottom:800.179500px;}
.y2c{bottom:808.393500px;}
.yd{bottom:810.840000px;}
.y70{bottom:812.503500px;}
.y51{bottom:815.871000px;}
.y2b{bottom:826.326000px;}
.y6f{bottom:828.195000px;}
.y50{bottom:831.562500px;}
.y6e{bottom:843.886500px;}
.yc{bottom:844.258500px;}
.y4f{bottom:847.254000px;}
.y6d{bottom:859.576500px;}
.y2a{bottom:862.191000px;}
.yb{bottom:862.192500px;}
.y4e{bottom:862.944000px;}
.y6c{bottom:875.268000px;}
.y4d{bottom:878.635500px;}
.ya{bottom:880.125000px;}
.y6b{bottom:890.959500px;}
.y4c{bottom:906.481500px;}
.y6a{bottom:906.651000px;}
.y69{bottom:922.341000px;}
.y9{bottom:927.571500px;}
.y68{bottom:938.032500px;}
.y8{bottom:943.263000px;}
.y4b{bottom:946.335000px;}
.y67{bottom:953.724000px;}
.y7{bottom:958.954500px;}
.y66{bottom:969.415500px;}
.y6{bottom:974.644500px;}
.y65{bottom:985.105500px;}
.y5{bottom:990.336000px;}
.y4a{bottom:999.546000px;}
.y64{bottom:1000.797000px;}
.y63{bottom:1016.488500px;}
.y49{bottom:1017.480000px;}
.y4{bottom:1022.202000px;}
.y62{bottom:1032.180000px;}
.y3{bottom:1037.409000px;}
.y61{bottom:1047.870000px;}
.y48{bottom:1057.332000px;}
.y60{bottom:1063.561500px;}
.y2{bottom:1074.022500px;}
.y5f{bottom:1079.253000px;}
.y1{bottom:1094.944500px;}
.y47{bottom:1133.799000px;}
.hb{height:20.234041px;}
.h3{height:23.850624px;}
.ha{height:37.336090px;}
.hc{height:37.389888px;}
.h7{height:37.658880px;}
.h9{height:38.519654px;}
.h4{height:40.348800px;}
.h8{height:41.663593px;}
.h5{height:44.831700px;}
.h2{height:49.479619px;}
.hd{height:49.864800px;}
.h1{height:50.211840px;}
.h6{height:53.499024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:60.970500px;}
.x8{left:81.000000px;}
.x1{left:93.259500px;}
.x7{left:95.944500px;}
.xd{left:104.911500px;}
.x17{left:112.143000px;}
.xe{left:118.360500px;}
.x19{left:120.490500px;}
.x9{left:141.216000px;}
.x6{left:163.192500px;}
.x5{left:177.015000px;}
.xc{left:179.446500px;}
.x15{left:197.226000px;}
.x13{left:202.695000px;}
.x4{left:218.953500px;}
.x18{left:222.991500px;}
.x14{left:231.960000px;}
.xb{left:239.382000px;}
.xa{left:242.313000px;}
.x3{left:392.950500px;}
.x2{left:423.627000px;}
.x1b{left:450.406500px;}
.x1a{left:455.491500px;}
.x1d{left:475.521000px;}
.x1e{left:496.089000px;}
.x10{left:499.432500px;}
.x1c{left:506.712000px;}
.xf{left:512.880000px;}
.x11{left:611.838000px;}
.x1f{left:699.262500px;}
.x12{left:835.669500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.458667pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:21.941333pt;}
.v5{vertical-align:45.429333pt;}
.ls10{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.022272pt;}
.ls2{letter-spacing:0.022624pt;}
.ls8{letter-spacing:0.026378pt;}
.ls1{letter-spacing:1.912819pt;}
.ls0{letter-spacing:2.656473pt;}
.ls6{letter-spacing:2.657253pt;}
.ls9{letter-spacing:2.658969pt;}
.ls12{letter-spacing:4.016947pt;}
.ls14{letter-spacing:4.303872pt;}
.ls19{letter-spacing:4.399514pt;}
.ls15{letter-spacing:4.447334pt;}
.ls20{letter-spacing:4.638618pt;}
.ls13{letter-spacing:4.734259pt;}
.ls17{letter-spacing:5.021184pt;}
.ls7{letter-spacing:8.820222pt;}
.ls4{letter-spacing:11.795718pt;}
.ls3{letter-spacing:14.466969pt;}
.lsc{letter-spacing:14.771215pt;}
.ls21{letter-spacing:16.402534pt;}
.lsb{letter-spacing:17.416302pt;}
.lsd{letter-spacing:17.693578pt;}
.lsf{letter-spacing:19.128192pt;}
.lse{letter-spacing:21.253547pt;}
.ls1b{letter-spacing:36.917658pt;}
.ls1d{letter-spacing:54.802637pt;}
.ls1a{letter-spacing:55.663411pt;}
.ls1f{letter-spacing:56.906752pt;}
.ls11{letter-spacing:57.145856pt;}
.ls1c{letter-spacing:57.337139pt;}
.ls1e{letter-spacing:57.432781pt;}
.ls18{letter-spacing:57.528422pt;}
.ls16{letter-spacing:57.576243pt;}
.lsa{letter-spacing:146.224401pt;}
.ws41{word-spacing:-15.718697pt;}
.ws48{word-spacing:-14.760588pt;}
.ws75{word-spacing:-4.686438pt;}
.ws58{word-spacing:-4.495155pt;}
.ws74{word-spacing:-4.447334pt;}
.ws3d{word-spacing:-2.327263pt;}
.ws84{word-spacing:-1.745459pt;}
.ws2b{word-spacing:-0.148775pt;}
.wsc{word-spacing:-0.053134pt;}
.ws57{word-spacing:-0.047821pt;}
.wsa{word-spacing:-0.042507pt;}
.ws4f{word-spacing:0.000000pt;}
.wsb{word-spacing:0.010627pt;}
.ws4a{word-spacing:0.541965pt;}
.ws32{word-spacing:0.967036pt;}
.ws4{word-spacing:1.219430pt;}
.ws11{word-spacing:1.232706pt;}
.ws7e{word-spacing:1.554176pt;}
.ws62{word-spacing:1.817178pt;}
.ws51{word-spacing:2.242249pt;}
.ws83{word-spacing:2.319309pt;}
.ws2d{word-spacing:2.614186pt;}
.ws81{word-spacing:2.701875pt;}
.ws7{word-spacing:2.749696pt;}
.ws13{word-spacing:2.932989pt;}
.wsd{word-spacing:2.986123pt;}
.ws22{word-spacing:3.122698pt;}
.ws6{word-spacing:3.227904pt;}
.ws3{word-spacing:3.467008pt;}
.ws39{word-spacing:3.570596pt;}
.ws80{word-spacing:3.610470pt;}
.ws44{word-spacing:3.676864pt;}
.ws42{word-spacing:3.729997pt;}
.ws10{word-spacing:3.889399pt;}
.ws3e{word-spacing:3.995667pt;}
.ws19{word-spacing:4.101935pt;}
.ws86{word-spacing:4.136499pt;}
.ws20{word-spacing:4.473872pt;}
.ws46{word-spacing:4.580139pt;}
.ws37{word-spacing:4.686407pt;}
.wse{word-spacing:4.792675pt;}
.ws34{word-spacing:4.898943pt;}
.ws9{word-spacing:5.111478pt;}
.ws2c{word-spacing:5.164612pt;}
.ws30{word-spacing:5.642817pt;}
.ws35{word-spacing:6.014754pt;}
.ws36{word-spacing:6.227289pt;}
.ws8{word-spacing:6.333557pt;}
.ws7f{word-spacing:6.527539pt;}
.ws5a{word-spacing:6.647091pt;}
.ws12{word-spacing:6.652360pt;}
.ws2f{word-spacing:6.758628pt;}
.ws6d{word-spacing:6.790554pt;}
.ws5f{word-spacing:6.838374pt;}
.ws60{word-spacing:6.886195pt;}
.ws59{word-spacing:6.934016pt;}
.ws7b{word-spacing:6.981837pt;}
.ws5b{word-spacing:7.077478pt;}
.ws71{word-spacing:7.125299pt;}
.ws31{word-spacing:7.130565pt;}
.ws63{word-spacing:7.268762pt;}
.ws5{word-spacing:7.292672pt;}
.ws5c{word-spacing:7.316582pt;}
.ws5d{word-spacing:7.460045pt;}
.ws7d{word-spacing:7.531776pt;}
.ws17{word-spacing:7.555636pt;}
.ws38{word-spacing:7.821305pt;}
.ws73{word-spacing:7.986074pt;}
.ws4c{word-spacing:8.086975pt;}
.ws33{word-spacing:8.883983pt;}
.ws1e{word-spacing:9.627857pt;}
.ws29{word-spacing:9.946660pt;}
.ws21{word-spacing:9.999794pt;}
.ws85{word-spacing:10.592307pt;}
.wsf{word-spacing:11.115605pt;}
.ws26{word-spacing:11.646944pt;}
.ws1b{word-spacing:12.337684pt;}
.ws14{word-spacing:12.497085pt;}
.ws82{word-spacing:13.365914pt;}
.ws23{word-spacing:14.664947pt;}
.ws1{word-spacing:14.994377pt;}
.ws3a{word-spacing:15.472582pt;}
.ws3b{word-spacing:15.525716pt;}
.ws49{word-spacing:16.099562pt;}
.ws4b{word-spacing:16.737168pt;}
.ws2a{word-spacing:17.066598pt;}
.ws50{word-spacing:17.502413pt;}
.ws3c{word-spacing:18.118649pt;}
.ws52{word-spacing:18.915657pt;}
.ws4e{word-spacing:20.297137pt;}
.ws4d{word-spacing:21.051638pt;}
.ws43{word-spacing:21.731751pt;}
.ws2{word-spacing:22.045389pt;}
.ws3f{word-spacing:22.050555pt;}
.ws16{word-spacing:22.316224pt;}
.ws24{word-spacing:22.688161pt;}
.ws2e{word-spacing:23.432035pt;}
.ws0{word-spacing:23.846639pt;}
.ws1a{word-spacing:23.857106pt;}
.ws47{word-spacing:24.016508pt;}
.ws28{word-spacing:24.654114pt;}
.ws1c{word-spacing:25.876193pt;}
.ws25{word-spacing:26.354398pt;}
.ws1f{word-spacing:26.566933pt;}
.ws5e{word-spacing:27.114394pt;}
.ws18{word-spacing:28.692288pt;}
.ws15{word-spacing:28.904823pt;}
.ws1d{word-spacing:29.064225pt;}
.ws56{word-spacing:29.409792pt;}
.ws54{word-spacing:29.648896pt;}
.ws45{word-spacing:29.701831pt;}
.ws55{word-spacing:29.792358pt;}
.ws40{word-spacing:29.967501pt;}
.ws27{word-spacing:30.073769pt;}
.ws77{word-spacing:30.079283pt;}
.ws53{word-spacing:30.796595pt;}
.ws6a{word-spacing:35.100467pt;}
.ws67{word-spacing:35.626496pt;}
.ws68{word-spacing:35.913421pt;}
.ws61{word-spacing:36.343808pt;}
.ws69{word-spacing:36.774195pt;}
.ws79{word-spacing:37.108941pt;}
.ws64{word-spacing:37.443686pt;}
.ws6b{word-spacing:37.634970pt;}
.ws66{word-spacing:37.874074pt;}
.ws72{word-spacing:37.921894pt;}
.ws78{word-spacing:38.160998pt;}
.ws65{word-spacing:38.447923pt;}
.ws6c{word-spacing:38.782669pt;}
.ws7c{word-spacing:39.165235pt;}
.ws70{word-spacing:55.636844pt;}
.ws7a{word-spacing:56.880185pt;}
.ws6e{word-spacing:57.119289pt;}
.ws6f{word-spacing:57.406214pt;}
.ws76{word-spacing:57.549676pt;}
._25{margin-left:-24.483849pt;}
._6{margin-left:-4.670498pt;}
._17{margin-left:-3.777843pt;}
._f{margin-left:-2.879855pt;}
._0{margin-left:-1.976593pt;}
._1{margin-left:-0.892636pt;}
._23{width:0.892655pt;}
._5{width:1.880951pt;}
._18{width:2.927676pt;}
._19{width:4.495155pt;}
._1a{width:5.642854pt;}
._1b{width:6.594057pt;}
._1c{width:7.869173pt;}
._1d{width:9.542946pt;}
._24{width:21.232435pt;}
._10{width:22.326599pt;}
._2{width:23.368431pt;}
._3{width:24.308907pt;}
._d{width:25.552070pt;}
._9{width:26.859202pt;}
._b{width:28.139683pt;}
._7{width:29.967501pt;}
._11{width:31.838091pt;}
._14{width:32.783596pt;}
._20{width:34.547209pt;}
._4{width:35.483034pt;}
._12{width:37.055415pt;}
._1f{width:37.948813pt;}
._1e{width:39.776299pt;}
._13{width:41.051213pt;}
._e{width:45.089373pt;}
._a{width:47.554786pt;}
._8{width:48.458086pt;}
._c{width:49.680165pt;}
._16{width:59.828734pt;}
._15{width:61.380242pt;}
._21{width:65.275392pt;}
._22{width:157.023095pt;}
.fs5{font-size:26.566933pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:91.257333pt;}
.y28{bottom:107.197333pt;}
.y46{bottom:129.178667pt;}
.y27{bottom:134.728000pt;}
.y26{bottom:150.668000pt;}
.y25{bottom:166.608000pt;}
.y45{bottom:167.100000pt;}
.y44{bottom:183.041333pt;}
.y24{bottom:194.138667pt;}
.y43{bottom:198.981333pt;}
.y23{bottom:210.078667pt;}
.y42{bottom:236.902667pt;}
.y22{bottom:245.157333pt;}
.y41{bottom:252.842667pt;}
.y40{bottom:268.782667pt;}
.y21{bottom:290.618667pt;}
.y3f{bottom:306.460000pt;}
.y20{bottom:306.558667pt;}
.y1f{bottom:322.498667pt;}
.y1e{bottom:338.438667pt;}
.y1d{bottom:354.620000pt;}
.y3e{bottom:365.704000pt;}
.y1c{bottom:370.560000pt;}
.y3d{bottom:381.644000pt;}
.y1b{bottom:386.500000pt;}
.y3c{bottom:397.584000pt;}
.y1a{bottom:402.440000pt;}
.y3b{bottom:413.524000pt;}
.y3a{bottom:429.465333pt;}
.y19{bottom:437.518667pt;}
.y5e{bottom:438.224000pt;}
.y80{bottom:441.212000pt;}
.y5d{bottom:452.172000pt;}
.y7f{bottom:455.160000pt;}
.y5c{bottom:466.118667pt;}
.y39{bottom:467.386667pt;}
.y7e{bottom:469.108000pt;}
.y5b{bottom:480.066667pt;}
.y18{bottom:482.980000pt;}
.y7d{bottom:483.056000pt;}
.y38{bottom:483.326667pt;}
.y7c{bottom:497.002667pt;}
.y17{bottom:498.921333pt;}
.y37{bottom:499.266667pt;}
.y5a{bottom:504.818667pt;}
.y7b{bottom:510.950667pt;}
.y36{bottom:515.206667pt;}
.y7a{bottom:524.898667pt;}
.y35{bottom:531.146667pt;}
.y16{bottom:533.998667pt;}
.y59{bottom:534.674667pt;}
.y79{bottom:538.846667pt;}
.y34{bottom:547.088000pt;}
.y58{bottom:548.622667pt;}
.y78{bottom:552.794667pt;}
.y57{bottom:562.570667pt;}
.y33{bottom:563.028000pt;}
.y77{bottom:566.741333pt;}
.y32{bottom:578.968000pt;}
.y15{bottom:579.460000pt;}
.y76{bottom:580.689333pt;}
.y56{bottom:587.322667pt;}
.y75{bottom:594.637333pt;}
.y31{bottom:594.908000pt;}
.y14{bottom:595.400000pt;}
.y30{bottom:610.848000pt;}
.y13{bottom:611.341333pt;}
.y55{bottom:622.748000pt;}
.y12{bottom:627.281333pt;}
.y11{bottom:643.221333pt;}
.y2f{bottom:648.769333pt;}
.y10{bottom:659.161333pt;}
.y2e{bottom:664.710667pt;}
.y74{bottom:666.434667pt;}
.yf{bottom:675.101333pt;}
.y73{bottom:680.382667pt;}
.y54{bottom:683.376000pt;}
.ye{bottom:691.041333pt;}
.y72{bottom:694.329333pt;}
.y53{bottom:697.324000pt;}
.y2d{bottom:702.632000pt;}
.y71{bottom:708.277333pt;}
.y52{bottom:711.270667pt;}
.y2c{bottom:718.572000pt;}
.yd{bottom:720.746667pt;}
.y70{bottom:722.225333pt;}
.y51{bottom:725.218667pt;}
.y2b{bottom:734.512000pt;}
.y6f{bottom:736.173333pt;}
.y50{bottom:739.166667pt;}
.y6e{bottom:750.121333pt;}
.yc{bottom:750.452000pt;}
.y4f{bottom:753.114667pt;}
.y6d{bottom:764.068000pt;}
.y2a{bottom:766.392000pt;}
.yb{bottom:766.393333pt;}
.y4e{bottom:767.061333pt;}
.y6c{bottom:778.016000pt;}
.y4d{bottom:781.009333pt;}
.ya{bottom:782.333333pt;}
.y6b{bottom:791.964000pt;}
.y4c{bottom:805.761333pt;}
.y6a{bottom:805.912000pt;}
.y69{bottom:819.858667pt;}
.y9{bottom:824.508000pt;}
.y68{bottom:833.806667pt;}
.y8{bottom:838.456000pt;}
.y4b{bottom:841.186667pt;}
.y67{bottom:847.754667pt;}
.y7{bottom:852.404000pt;}
.y66{bottom:861.702667pt;}
.y6{bottom:866.350667pt;}
.y65{bottom:875.649333pt;}
.y5{bottom:880.298667pt;}
.y4a{bottom:888.485333pt;}
.y64{bottom:889.597333pt;}
.y63{bottom:903.545333pt;}
.y49{bottom:904.426667pt;}
.y4{bottom:908.624000pt;}
.y62{bottom:917.493333pt;}
.y3{bottom:922.141333pt;}
.y61{bottom:931.440000pt;}
.y48{bottom:939.850667pt;}
.y60{bottom:945.388000pt;}
.y2{bottom:954.686667pt;}
.y5f{bottom:959.336000pt;}
.y1{bottom:973.284000pt;}
.y47{bottom:1007.821333pt;}
.hb{height:17.985814pt;}
.h3{height:21.200555pt;}
.ha{height:33.187635pt;}
.hc{height:33.235456pt;}
.h7{height:33.474560pt;}
.h9{height:34.239693pt;}
.h4{height:35.865600pt;}
.h8{height:37.034305pt;}
.h5{height:39.850400pt;}
.h2{height:43.981884pt;}
.hd{height:44.324267pt;}
.h1{height:44.632747pt;}
.h6{height:47.554688pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:54.196000pt;}
.x8{left:72.000000pt;}
.x1{left:82.897333pt;}
.x7{left:85.284000pt;}
.xd{left:93.254667pt;}
.x17{left:99.682667pt;}
.xe{left:105.209333pt;}
.x19{left:107.102667pt;}
.x9{left:125.525333pt;}
.x6{left:145.060000pt;}
.x5{left:157.346667pt;}
.xc{left:159.508000pt;}
.x15{left:175.312000pt;}
.x13{left:180.173333pt;}
.x4{left:194.625333pt;}
.x18{left:198.214667pt;}
.x14{left:206.186667pt;}
.xb{left:212.784000pt;}
.xa{left:215.389333pt;}
.x3{left:349.289333pt;}
.x2{left:376.557333pt;}
.x1b{left:400.361333pt;}
.x1a{left:404.881333pt;}
.x1d{left:422.685333pt;}
.x1e{left:440.968000pt;}
.x10{left:443.940000pt;}
.x1c{left:450.410667pt;}
.xf{left:455.893333pt;}
.x11{left:543.856000pt;}
.x1f{left:621.566667pt;}
.x12{left:742.817333pt;}
}




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