
    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_bb34907882f015c1ee8977f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_8e4369bfaed7459b5c195e9b.woff2')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_a3d59ff57f11a7c1d42eb6c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.961648;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_f7c708011023c1c34fd38ccf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927360;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_24161922f642ac3c64a4a0da.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.970000;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_1b235ebb23a96b073dae315d.woff2')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_665bb9129bec8a6a075a3a35.woff2')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_f1047837123441d10e95c404.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.974000;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_a992bcce2b3f91577adb97bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_443afd8b24e36bc38492ed03.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.707000;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_2fdd1c93b8ea10de1145d34c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_afd9b72f73e3a65479e99fd8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692871;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_b95589ff067e45179987b434.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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_8e4369bfaed7459b5c195e9b.woff2')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_80477f16ecc3768acf52460f.woff2')format("woff");}.fff{font-family:fff;line-height:0.692871;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_72c69a1fe1131d782a89d2eb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910645;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;}
.m5{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,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);}
.v2{vertical-align:-4.923600px;}
.v1{vertical-align:-1.402200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.976000px;}
.v4{vertical-align:30.000000px;}
.ls8{letter-spacing:-2.220000px;}
.ls4{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000432px;}
.ls0{letter-spacing:61.881600px;}
.ls6{letter-spacing:66.312000px;}
.ls7{letter-spacing:226.464000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws64{word-spacing:-71.928000px;}
.ws56{word-spacing:-71.640000px;}
.ws8{word-spacing:-61.416000px;}
.ws67{word-spacing:-61.128000px;}
.ws4e{word-spacing:-60.984000px;}
.ws9{word-spacing:-60.552000px;}
.ws31{word-spacing:-59.976000px;}
.ws4f{word-spacing:-59.760000px;}
.ws2a{word-spacing:-59.184000px;}
.wsa{word-spacing:-58.896000px;}
.ws53{word-spacing:-58.752000px;}
.ws27{word-spacing:-58.176000px;}
.ws59{word-spacing:-58.032000px;}
.ws76{word-spacing:-55.008000px;}
.ws28{word-spacing:-54.504000px;}
.ws6d{word-spacing:-54.000000px;}
.ws83{word-spacing:-53.712000px;}
.ws3b{word-spacing:-53.568000px;}
.ws2e{word-spacing:-52.992000px;}
.ws60{word-spacing:-52.848000px;}
.ws62{word-spacing:-49.824000px;}
.ws1e{word-spacing:-49.536000px;}
.ws80{word-spacing:-48.744000px;}
.ws1d{word-spacing:-47.664000px;}
.ws7b{word-spacing:-47.520000px;}
.ws49{word-spacing:-46.584000px;}
.ws36{word-spacing:-46.440000px;}
.ws30{word-spacing:-46.080000px;}
.ws19{word-spacing:-45.936000px;}
.ws20{word-spacing:-45.864000px;}
.ws2d{word-spacing:-44.136000px;}
.ws23{word-spacing:-43.848000px;}
.ws63{word-spacing:-42.696000px;}
.ws16{word-spacing:-42.264000px;}
.ws2f{word-spacing:-41.976000px;}
.ws41{word-spacing:-41.400000px;}
.ws61{word-spacing:-41.256000px;}
.ws34{word-spacing:-41.184000px;}
.ws84{word-spacing:-40.176000px;}
.ws13{word-spacing:-39.384000px;}
.ws54{word-spacing:-39.247200px;}
.ws42{word-spacing:-39.168000px;}
.ws4{word-spacing:-37.152000px;}
.ws37{word-spacing:-36.360000px;}
.ws82{word-spacing:-35.712000px;}
.ws3{word-spacing:-35.640000px;}
.ws3a{word-spacing:-34.776000px;}
.ws51{word-spacing:-33.912000px;}
.ws73{word-spacing:-33.840000px;}
.ws11{word-spacing:-33.624000px;}
.ws75{word-spacing:-32.256000px;}
.ws33{word-spacing:-31.824000px;}
.ws22{word-spacing:-31.608000px;}
.ws15{word-spacing:-31.392000px;}
.wsf{word-spacing:-31.176000px;}
.ws6{word-spacing:-30.528000px;}
.ws78{word-spacing:-30.456000px;}
.ws7d{word-spacing:-30.168000px;}
.ws5{word-spacing:-29.736000px;}
.ws57{word-spacing:-29.520000px;}
.ws35{word-spacing:-29.376000px;}
.wse{word-spacing:-27.432000px;}
.ws1a{word-spacing:-27.072000px;}
.ws6c{word-spacing:-26.640000px;}
.ws32{word-spacing:-22.248000px;}
.ws66{word-spacing:-22.176000px;}
.ws81{word-spacing:-21.888000px;}
.ws5a{word-spacing:-20.592000px;}
.ws26{word-spacing:-19.944000px;}
.ws70{word-spacing:-19.296000px;}
.ws44{word-spacing:-16.848000px;}
.ws74{word-spacing:-16.128000px;}
.ws39{word-spacing:-15.912000px;}
.ws4d{word-spacing:-15.408000px;}
.ws47{word-spacing:-14.832000px;}
.ws4b{word-spacing:-10.913760px;}
.ws5b{word-spacing:-10.728000px;}
.ws50{word-spacing:-10.584000px;}
.ws48{word-spacing:-10.296000px;}
.ws6f{word-spacing:-9.936000px;}
.ws40{word-spacing:-8.784000px;}
.ws2b{word-spacing:-8.352000px;}
.ws65{word-spacing:-8.208000px;}
.ws7{word-spacing:-7.920000px;}
.ws1{word-spacing:-7.200000px;}
.ws21{word-spacing:-5.832000px;}
.ws5d{word-spacing:-5.688000px;}
.ws12{word-spacing:-5.680800px;}
.ws68{word-spacing:-5.616000px;}
.ws24{word-spacing:-5.392800px;}
.ws38{word-spacing:-4.824000px;}
.ws2c{word-spacing:-4.752000px;}
.ws55{word-spacing:-4.392000px;}
.ws1c{word-spacing:-3.528000px;}
.ws1b{word-spacing:-2.232000px;}
.ws7e{word-spacing:-0.648000px;}
.ws7a{word-spacing:-0.432000px;}
.ws17{word-spacing:-0.216000px;}
.wsb{word-spacing:-0.060000px;}
.ws1f{word-spacing:-0.054000px;}
.wsc{word-spacing:0.000000px;}
.ws93{word-spacing:2.220000px;}
.ws45{word-spacing:2.376000px;}
.ws79{word-spacing:4.752000px;}
.ws5e{word-spacing:6.336000px;}
.ws7f{word-spacing:6.768000px;}
.ws5c{word-spacing:8.064000px;}
.ws6a{word-spacing:8.712000px;}
.ws3e{word-spacing:9.504000px;}
.ws6b{word-spacing:10.440000px;}
.ws58{word-spacing:10.800000px;}
.ws77{word-spacing:11.880000px;}
.ws29{word-spacing:12.600000px;}
.ws10{word-spacing:14.328000px;}
.ws43{word-spacing:14.832000px;}
.ws18{word-spacing:18.864000px;}
.ws72{word-spacing:19.152000px;}
.ws6e{word-spacing:23.760000px;}
.ws7c{word-spacing:33.912000px;}
.ws46{word-spacing:40.968000px;}
.ws5f{word-spacing:42.120000px;}
.ws3c{word-spacing:46.584000px;}
.ws3d{word-spacing:46.821600px;}
.ws86{word-spacing:48.312600px;}
.ws71{word-spacing:49.464000px;}
.ws4a{word-spacing:51.624000px;}
.ws14{word-spacing:52.848000px;}
.ws85{word-spacing:62.842800px;}
.ws25{word-spacing:69.408000px;}
.ws3f{word-spacing:72.720000px;}
.ws4c{word-spacing:108.072000px;}
.ws91{word-spacing:108.768000px;}
.ws89{word-spacing:108.816000px;}
.ws88{word-spacing:121.296000px;}
.ws8d{word-spacing:128.688000px;}
.ws8c{word-spacing:128.736000px;}
.ws90{word-spacing:134.784000px;}
.ws87{word-spacing:134.832000px;}
.ws92{word-spacing:141.168000px;}
.ws8f{word-spacing:141.216000px;}
.ws8b{word-spacing:141.744000px;}
.ws8e{word-spacing:143.616000px;}
.ws8a{word-spacing:143.664000px;}
.ws52{word-spacing:277.128000px;}
.ws0{word-spacing:931.579200px;}
.ws69{word-spacing:1717.116600px;}
.wsd{word-spacing:1731.003000px;}
._11{margin-left:-18.720000px;}
._13{margin-left:-14.839200px;}
._17{margin-left:-10.872000px;}
._10{margin-left:-9.144000px;}
._3{margin-left:-6.832800px;}
._14{margin-left:-4.975200px;}
._d{margin-left:-3.918000px;}
._e{margin-left:-2.707200px;}
._c{margin-left:-1.134000px;}
._5{width:1.879200px;}
._12{width:3.873600px;}
._9{width:5.688000px;}
._a{width:6.696000px;}
._8{width:7.797600px;}
._0{width:9.482400px;}
._16{width:11.397600px;}
._7{width:13.039200px;}
._6{width:22.572000px;}
._2{width:24.688800px;}
._4{width:33.660000px;}
._1{width:50.457600px;}
._b{width:65.282400px;}
._f{width:66.319200px;}
._18{width:82.360800px;}
._15{width:88.696800px;}
._1a{width:213.408000px;}
._19{width:226.464000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.976000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.943200px;}
.y2f{bottom:64.760550px;}
.y2e{bottom:66.091050px;}
.ya7{bottom:92.460150px;}
.y5a{bottom:93.619950px;}
.y81{bottom:93.960150px;}
.ya6{bottom:114.960150px;}
.y59{bottom:116.119950px;}
.y80{bottom:116.460150px;}
.y24{bottom:129.943050px;}
.ya5{bottom:137.460150px;}
.y57{bottom:138.619950px;}
.y7f{bottom:138.960150px;}
.y23{bottom:152.443050px;}
.ybf{bottom:153.810150px;}
.ya4{bottom:159.960150px;}
.y56{bottom:161.119950px;}
.ybe{bottom:161.310150px;}
.y7e{bottom:161.460150px;}
.y22{bottom:174.943050px;}
.ya3{bottom:182.460150px;}
.y55{bottom:183.619950px;}
.y7d{bottom:183.960150px;}
.ybd{bottom:189.210150px;}
.ybc{bottom:196.710150px;}
.y21{bottom:197.443050px;}
.ya2{bottom:204.960150px;}
.y54{bottom:206.119950px;}
.y7c{bottom:206.460150px;}
.y20{bottom:219.943050px;}
.ybb{bottom:224.610150px;}
.ya1{bottom:227.460150px;}
.y53{bottom:228.619950px;}
.y7b{bottom:228.960150px;}
.yba{bottom:232.110150px;}
.ya0{bottom:249.960150px;}
.y52{bottom:251.119950px;}
.y7a{bottom:251.460150px;}
.yb9{bottom:260.010150px;}
.y1f{bottom:264.943050px;}
.yb8{bottom:267.510150px;}
.y9f{bottom:272.460150px;}
.y51{bottom:273.619950px;}
.y79{bottom:273.960150px;}
.y1e{bottom:287.443050px;}
.y9e{bottom:294.960150px;}
.yb7{bottom:295.410150px;}
.y50{bottom:296.119950px;}
.ya9{bottom:296.460150px;}
.yb6{bottom:302.910150px;}
.y1d{bottom:309.943050px;}
.y9d{bottom:317.460150px;}
.y4f{bottom:318.619950px;}
.y78{bottom:318.960150px;}
.yb5{bottom:330.810150px;}
.y1c{bottom:332.443050px;}
.yb4{bottom:338.310150px;}
.y9c{bottom:339.960150px;}
.y4e{bottom:341.119950px;}
.y77{bottom:341.460150px;}
.y1b{bottom:354.943050px;}
.y9b{bottom:362.460150px;}
.y4d{bottom:363.619950px;}
.y76{bottom:363.960150px;}
.yb3{bottom:366.210150px;}
.yb2{bottom:373.710150px;}
.y1a{bottom:377.443050px;}
.y9a{bottom:384.960150px;}
.y4c{bottom:386.119950px;}
.y75{bottom:386.460150px;}
.y19{bottom:399.943050px;}
.yb1{bottom:401.610150px;}
.y99{bottom:407.460150px;}
.y4b{bottom:408.619950px;}
.y74{bottom:408.960150px;}
.yb0{bottom:409.110150px;}
.y18{bottom:422.443050px;}
.y98{bottom:429.960150px;}
.y4a{bottom:431.119950px;}
.y73{bottom:431.460150px;}
.yaf{bottom:437.010150px;}
.yae{bottom:444.510150px;}
.y17{bottom:444.943050px;}
.y97{bottom:452.460150px;}
.y49{bottom:453.619950px;}
.y72{bottom:453.960150px;}
.y2d{bottom:456.139950px;}
.y16{bottom:467.443050px;}
.yad{bottom:472.410150px;}
.y96{bottom:474.960150px;}
.y48{bottom:476.119950px;}
.y71{bottom:476.460150px;}
.y2c{bottom:478.639950px;}
.yac{bottom:479.910150px;}
.y15{bottom:489.943050px;}
.y95{bottom:497.460150px;}
.y47{bottom:498.619950px;}
.y70{bottom:498.960150px;}
.y2b{bottom:501.139950px;}
.yab{bottom:507.810150px;}
.y14{bottom:512.443050px;}
.y94{bottom:519.960150px;}
.y93{bottom:519.966150px;}
.y46{bottom:521.119950px;}
.y6f{bottom:521.460150px;}
.yaa{bottom:522.810150px;}
.y13{bottom:534.943050px;}
.y2a{bottom:541.639950px;}
.y92{bottom:541.710150px;}
.y45{bottom:543.619950px;}
.y6e{bottom:543.960150px;}
.y91{bottom:563.490150px;}
.y44{bottom:566.119950px;}
.y6d{bottom:566.460150px;}
.y12{bottom:579.931050px;}
.y90{bottom:585.234150px;}
.y29{bottom:586.639950px;}
.y43{bottom:588.619950px;}
.y6c{bottom:588.960150px;}
.y11{bottom:600.937050px;}
.y8f{bottom:606.978150px;}
.y42{bottom:611.119950px;}
.y6b{bottom:611.460150px;}
.y10{bottom:621.943050px;}
.y28{bottom:627.139950px;}
.y8e{bottom:628.722150px;}
.y41{bottom:633.619950px;}
.y6a{bottom:633.960150px;}
.yf{bottom:642.901050px;}
.y8d{bottom:650.466150px;}
.y40{bottom:656.119950px;}
.y69{bottom:656.460150px;}
.y27{bottom:663.139950px;}
.ye{bottom:663.907050px;}
.y8c{bottom:672.210150px;}
.y3f{bottom:678.619950px;}
.ya8{bottom:678.960150px;}
.yd{bottom:684.913050px;}
.y8b{bottom:693.960150px;}
.y26{bottom:699.139950px;}
.y3e{bottom:701.119950px;}
.y68{bottom:701.460150px;}
.yc{bottom:705.919050px;}
.y8a{bottom:715.710150px;}
.y89{bottom:715.716150px;}
.y3d{bottom:723.619950px;}
.y67{bottom:723.960150px;}
.yb{bottom:726.925050px;}
.y25{bottom:735.139950px;}
.y88{bottom:737.460150px;}
.y87{bottom:737.472150px;}
.y3c{bottom:746.119950px;}
.y66{bottom:746.460150px;}
.ya{bottom:747.931050px;}
.y86{bottom:759.216150px;}
.y3b{bottom:768.619950px;}
.y9{bottom:768.937050px;}
.y65{bottom:768.960150px;}
.y85{bottom:780.960150px;}
.y8{bottom:789.943050px;}
.y3a{bottom:791.119950px;}
.y64{bottom:791.460150px;}
.y84{bottom:802.716150px;}
.y39{bottom:813.619950px;}
.y63{bottom:813.960150px;}
.y83{bottom:824.460150px;}
.y7{bottom:833.434050px;}
.y58{bottom:836.119950px;}
.y62{bottom:836.460150px;}
.y82{bottom:846.960150px;}
.y6{bottom:854.438550px;}
.y38{bottom:858.619950px;}
.y61{bottom:858.960150px;}
.y5{bottom:875.443050px;}
.y37{bottom:881.119950px;}
.y60{bottom:881.460150px;}
.y4{bottom:896.443050px;}
.y36{bottom:903.619950px;}
.y5f{bottom:903.960150px;}
.y35{bottom:926.119950px;}
.y5e{bottom:926.460150px;}
.y3{bottom:945.943050px;}
.y34{bottom:948.619950px;}
.y5d{bottom:948.960150px;}
.y33{bottom:971.119950px;}
.y5c{bottom:971.460150px;}
.y32{bottom:993.619950px;}
.y5b{bottom:993.960150px;}
.y31{bottom:1024.979400px;}
.y2{bottom:1027.321050px;}
.y30{bottom:1039.979400px;}
.hb{height:32.507812px;}
.hc{height:33.351562px;}
.he{height:33.600000px;}
.h8{height:40.634766px;}
.h9{height:41.689453px;}
.ha{height:42.000000px;}
.h6{height:46.200000px;}
.h7{height:50.400000px;}
.h2{height:51.449400px;}
.h3{height:53.250000px;}
.hd{height:53.359200px;}
.h5{height:54.600000px;}
.h4{height:63.000000px;}
.hf{height:63.600000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xa{left:63.779550px;}
.x2{left:65.194200px;}
.x9{left:73.559100px;}
.x1{left:78.303000px;}
.x10{left:122.582550px;}
.x8{left:224.187900px;}
.x3{left:229.141500px;}
.xe{left:374.424150px;}
.x6{left:400.785300px;}
.x15{left:409.461750px;}
.xd{left:412.540200px;}
.x7{left:413.968800px;}
.x16{left:415.221600px;}
.x1c{left:419.985600px;}
.x19{left:423.261600px;}
.x14{left:426.900000px;}
.x17{left:461.400750px;}
.x18{left:466.452750px;}
.x13{left:488.781750px;}
.x5{left:494.587800px;}
.x1a{left:553.473600px;}
.x1b{left:558.453600px;}
.x12{left:573.358500px;}
.x4{left:576.249000px;}
.xc{left:611.464200px;}
.x11{left:614.429250px;}
.xb{left:632.875800px;}
.xf{left:710.580450px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v1{vertical-align:-1.246400pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.312000pt;}
.v4{vertical-align:26.666667pt;}
.ls8{letter-spacing:-1.973333pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000384pt;}
.ls0{letter-spacing:55.005867pt;}
.ls6{letter-spacing:58.944000pt;}
.ls7{letter-spacing:201.301333pt;}
.ws2{word-spacing:-64.000000pt;}
.ws64{word-spacing:-63.936000pt;}
.ws56{word-spacing:-63.680000pt;}
.ws8{word-spacing:-54.592000pt;}
.ws67{word-spacing:-54.336000pt;}
.ws4e{word-spacing:-54.208000pt;}
.ws9{word-spacing:-53.824000pt;}
.ws31{word-spacing:-53.312000pt;}
.ws4f{word-spacing:-53.120000pt;}
.ws2a{word-spacing:-52.608000pt;}
.wsa{word-spacing:-52.352000pt;}
.ws53{word-spacing:-52.224000pt;}
.ws27{word-spacing:-51.712000pt;}
.ws59{word-spacing:-51.584000pt;}
.ws76{word-spacing:-48.896000pt;}
.ws28{word-spacing:-48.448000pt;}
.ws6d{word-spacing:-48.000000pt;}
.ws83{word-spacing:-47.744000pt;}
.ws3b{word-spacing:-47.616000pt;}
.ws2e{word-spacing:-47.104000pt;}
.ws60{word-spacing:-46.976000pt;}
.ws62{word-spacing:-44.288000pt;}
.ws1e{word-spacing:-44.032000pt;}
.ws80{word-spacing:-43.328000pt;}
.ws1d{word-spacing:-42.368000pt;}
.ws7b{word-spacing:-42.240000pt;}
.ws49{word-spacing:-41.408000pt;}
.ws36{word-spacing:-41.280000pt;}
.ws30{word-spacing:-40.960000pt;}
.ws19{word-spacing:-40.832000pt;}
.ws20{word-spacing:-40.768000pt;}
.ws2d{word-spacing:-39.232000pt;}
.ws23{word-spacing:-38.976000pt;}
.ws63{word-spacing:-37.952000pt;}
.ws16{word-spacing:-37.568000pt;}
.ws2f{word-spacing:-37.312000pt;}
.ws41{word-spacing:-36.800000pt;}
.ws61{word-spacing:-36.672000pt;}
.ws34{word-spacing:-36.608000pt;}
.ws84{word-spacing:-35.712000pt;}
.ws13{word-spacing:-35.008000pt;}
.ws54{word-spacing:-34.886400pt;}
.ws42{word-spacing:-34.816000pt;}
.ws4{word-spacing:-33.024000pt;}
.ws37{word-spacing:-32.320000pt;}
.ws82{word-spacing:-31.744000pt;}
.ws3{word-spacing:-31.680000pt;}
.ws3a{word-spacing:-30.912000pt;}
.ws51{word-spacing:-30.144000pt;}
.ws73{word-spacing:-30.080000pt;}
.ws11{word-spacing:-29.888000pt;}
.ws75{word-spacing:-28.672000pt;}
.ws33{word-spacing:-28.288000pt;}
.ws22{word-spacing:-28.096000pt;}
.ws15{word-spacing:-27.904000pt;}
.wsf{word-spacing:-27.712000pt;}
.ws6{word-spacing:-27.136000pt;}
.ws78{word-spacing:-27.072000pt;}
.ws7d{word-spacing:-26.816000pt;}
.ws5{word-spacing:-26.432000pt;}
.ws57{word-spacing:-26.240000pt;}
.ws35{word-spacing:-26.112000pt;}
.wse{word-spacing:-24.384000pt;}
.ws1a{word-spacing:-24.064000pt;}
.ws6c{word-spacing:-23.680000pt;}
.ws32{word-spacing:-19.776000pt;}
.ws66{word-spacing:-19.712000pt;}
.ws81{word-spacing:-19.456000pt;}
.ws5a{word-spacing:-18.304000pt;}
.ws26{word-spacing:-17.728000pt;}
.ws70{word-spacing:-17.152000pt;}
.ws44{word-spacing:-14.976000pt;}
.ws74{word-spacing:-14.336000pt;}
.ws39{word-spacing:-14.144000pt;}
.ws4d{word-spacing:-13.696000pt;}
.ws47{word-spacing:-13.184000pt;}
.ws4b{word-spacing:-9.701120pt;}
.ws5b{word-spacing:-9.536000pt;}
.ws50{word-spacing:-9.408000pt;}
.ws48{word-spacing:-9.152000pt;}
.ws6f{word-spacing:-8.832000pt;}
.ws40{word-spacing:-7.808000pt;}
.ws2b{word-spacing:-7.424000pt;}
.ws65{word-spacing:-7.296000pt;}
.ws7{word-spacing:-7.040000pt;}
.ws1{word-spacing:-6.400000pt;}
.ws21{word-spacing:-5.184000pt;}
.ws5d{word-spacing:-5.056000pt;}
.ws12{word-spacing:-5.049600pt;}
.ws68{word-spacing:-4.992000pt;}
.ws24{word-spacing:-4.793600pt;}
.ws38{word-spacing:-4.288000pt;}
.ws2c{word-spacing:-4.224000pt;}
.ws55{word-spacing:-3.904000pt;}
.ws1c{word-spacing:-3.136000pt;}
.ws1b{word-spacing:-1.984000pt;}
.ws7e{word-spacing:-0.576000pt;}
.ws7a{word-spacing:-0.384000pt;}
.ws17{word-spacing:-0.192000pt;}
.wsb{word-spacing:-0.053333pt;}
.ws1f{word-spacing:-0.048000pt;}
.wsc{word-spacing:0.000000pt;}
.ws93{word-spacing:1.973333pt;}
.ws45{word-spacing:2.112000pt;}
.ws79{word-spacing:4.224000pt;}
.ws5e{word-spacing:5.632000pt;}
.ws7f{word-spacing:6.016000pt;}
.ws5c{word-spacing:7.168000pt;}
.ws6a{word-spacing:7.744000pt;}
.ws3e{word-spacing:8.448000pt;}
.ws6b{word-spacing:9.280000pt;}
.ws58{word-spacing:9.600000pt;}
.ws77{word-spacing:10.560000pt;}
.ws29{word-spacing:11.200000pt;}
.ws10{word-spacing:12.736000pt;}
.ws43{word-spacing:13.184000pt;}
.ws18{word-spacing:16.768000pt;}
.ws72{word-spacing:17.024000pt;}
.ws6e{word-spacing:21.120000pt;}
.ws7c{word-spacing:30.144000pt;}
.ws46{word-spacing:36.416000pt;}
.ws5f{word-spacing:37.440000pt;}
.ws3c{word-spacing:41.408000pt;}
.ws3d{word-spacing:41.619200pt;}
.ws86{word-spacing:42.944533pt;}
.ws71{word-spacing:43.968000pt;}
.ws4a{word-spacing:45.888000pt;}
.ws14{word-spacing:46.976000pt;}
.ws85{word-spacing:55.860267pt;}
.ws25{word-spacing:61.696000pt;}
.ws3f{word-spacing:64.640000pt;}
.ws4c{word-spacing:96.064000pt;}
.ws91{word-spacing:96.682667pt;}
.ws89{word-spacing:96.725333pt;}
.ws88{word-spacing:107.818667pt;}
.ws8d{word-spacing:114.389333pt;}
.ws8c{word-spacing:114.432000pt;}
.ws90{word-spacing:119.808000pt;}
.ws87{word-spacing:119.850667pt;}
.ws92{word-spacing:125.482667pt;}
.ws8f{word-spacing:125.525333pt;}
.ws8b{word-spacing:125.994667pt;}
.ws8e{word-spacing:127.658667pt;}
.ws8a{word-spacing:127.701333pt;}
.ws52{word-spacing:246.336000pt;}
.ws0{word-spacing:828.070400pt;}
.ws69{word-spacing:1526.325867pt;}
.wsd{word-spacing:1538.669333pt;}
._11{margin-left:-16.640000pt;}
._13{margin-left:-13.190400pt;}
._17{margin-left:-9.664000pt;}
._10{margin-left:-8.128000pt;}
._3{margin-left:-6.073600pt;}
._14{margin-left:-4.422400pt;}
._d{margin-left:-3.482667pt;}
._e{margin-left:-2.406400pt;}
._c{margin-left:-1.008000pt;}
._5{width:1.670400pt;}
._12{width:3.443200pt;}
._9{width:5.056000pt;}
._a{width:5.952000pt;}
._8{width:6.931200pt;}
._0{width:8.428800pt;}
._16{width:10.131200pt;}
._7{width:11.590400pt;}
._6{width:20.064000pt;}
._2{width:21.945600pt;}
._4{width:29.920000pt;}
._1{width:44.851200pt;}
._b{width:58.028800pt;}
._f{width:58.950400pt;}
._18{width:73.209600pt;}
._15{width:78.841600pt;}
._1a{width:189.696000pt;}
._19{width:201.301333pt;}
.fs7{font-size:37.312000pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.838400pt;}
.y2f{bottom:57.564933pt;}
.y2e{bottom:58.747600pt;}
.ya7{bottom:82.186800pt;}
.y5a{bottom:83.217733pt;}
.y81{bottom:83.520133pt;}
.ya6{bottom:102.186800pt;}
.y59{bottom:103.217733pt;}
.y80{bottom:103.520133pt;}
.y24{bottom:115.504933pt;}
.ya5{bottom:122.186800pt;}
.y57{bottom:123.217733pt;}
.y7f{bottom:123.520133pt;}
.y23{bottom:135.504933pt;}
.ybf{bottom:136.720133pt;}
.ya4{bottom:142.186800pt;}
.y56{bottom:143.217733pt;}
.ybe{bottom:143.386800pt;}
.y7e{bottom:143.520133pt;}
.y22{bottom:155.504933pt;}
.ya3{bottom:162.186800pt;}
.y55{bottom:163.217733pt;}
.y7d{bottom:163.520133pt;}
.ybd{bottom:168.186800pt;}
.ybc{bottom:174.853467pt;}
.y21{bottom:175.504933pt;}
.ya2{bottom:182.186800pt;}
.y54{bottom:183.217733pt;}
.y7c{bottom:183.520133pt;}
.y20{bottom:195.504933pt;}
.ybb{bottom:199.653467pt;}
.ya1{bottom:202.186800pt;}
.y53{bottom:203.217733pt;}
.y7b{bottom:203.520133pt;}
.yba{bottom:206.320133pt;}
.ya0{bottom:222.186800pt;}
.y52{bottom:223.217733pt;}
.y7a{bottom:223.520133pt;}
.yb9{bottom:231.120133pt;}
.y1f{bottom:235.504933pt;}
.yb8{bottom:237.786800pt;}
.y9f{bottom:242.186800pt;}
.y51{bottom:243.217733pt;}
.y79{bottom:243.520133pt;}
.y1e{bottom:255.504933pt;}
.y9e{bottom:262.186800pt;}
.yb7{bottom:262.586800pt;}
.y50{bottom:263.217733pt;}
.ya9{bottom:263.520133pt;}
.yb6{bottom:269.253467pt;}
.y1d{bottom:275.504933pt;}
.y9d{bottom:282.186800pt;}
.y4f{bottom:283.217733pt;}
.y78{bottom:283.520133pt;}
.yb5{bottom:294.053467pt;}
.y1c{bottom:295.504933pt;}
.yb4{bottom:300.720133pt;}
.y9c{bottom:302.186800pt;}
.y4e{bottom:303.217733pt;}
.y77{bottom:303.520133pt;}
.y1b{bottom:315.504933pt;}
.y9b{bottom:322.186800pt;}
.y4d{bottom:323.217733pt;}
.y76{bottom:323.520133pt;}
.yb3{bottom:325.520133pt;}
.yb2{bottom:332.186800pt;}
.y1a{bottom:335.504933pt;}
.y9a{bottom:342.186800pt;}
.y4c{bottom:343.217733pt;}
.y75{bottom:343.520133pt;}
.y19{bottom:355.504933pt;}
.yb1{bottom:356.986800pt;}
.y99{bottom:362.186800pt;}
.y4b{bottom:363.217733pt;}
.y74{bottom:363.520133pt;}
.yb0{bottom:363.653467pt;}
.y18{bottom:375.504933pt;}
.y98{bottom:382.186800pt;}
.y4a{bottom:383.217733pt;}
.y73{bottom:383.520133pt;}
.yaf{bottom:388.453467pt;}
.yae{bottom:395.120133pt;}
.y17{bottom:395.504933pt;}
.y97{bottom:402.186800pt;}
.y49{bottom:403.217733pt;}
.y72{bottom:403.520133pt;}
.y2d{bottom:405.457733pt;}
.y16{bottom:415.504933pt;}
.yad{bottom:419.920133pt;}
.y96{bottom:422.186800pt;}
.y48{bottom:423.217733pt;}
.y71{bottom:423.520133pt;}
.y2c{bottom:425.457733pt;}
.yac{bottom:426.586800pt;}
.y15{bottom:435.504933pt;}
.y95{bottom:442.186800pt;}
.y47{bottom:443.217733pt;}
.y70{bottom:443.520133pt;}
.y2b{bottom:445.457733pt;}
.yab{bottom:451.386800pt;}
.y14{bottom:455.504933pt;}
.y94{bottom:462.186800pt;}
.y93{bottom:462.192133pt;}
.y46{bottom:463.217733pt;}
.y6f{bottom:463.520133pt;}
.yaa{bottom:464.720133pt;}
.y13{bottom:475.504933pt;}
.y2a{bottom:481.457733pt;}
.y92{bottom:481.520133pt;}
.y45{bottom:483.217733pt;}
.y6e{bottom:483.520133pt;}
.y91{bottom:500.880133pt;}
.y44{bottom:503.217733pt;}
.y6d{bottom:503.520133pt;}
.y12{bottom:515.494267pt;}
.y90{bottom:520.208133pt;}
.y29{bottom:521.457733pt;}
.y43{bottom:523.217733pt;}
.y6c{bottom:523.520133pt;}
.y11{bottom:534.166267pt;}
.y8f{bottom:539.536133pt;}
.y42{bottom:543.217733pt;}
.y6b{bottom:543.520133pt;}
.y10{bottom:552.838267pt;}
.y28{bottom:557.457733pt;}
.y8e{bottom:558.864133pt;}
.y41{bottom:563.217733pt;}
.y6a{bottom:563.520133pt;}
.yf{bottom:571.467600pt;}
.y8d{bottom:578.192133pt;}
.y40{bottom:583.217733pt;}
.y69{bottom:583.520133pt;}
.y27{bottom:589.457733pt;}
.ye{bottom:590.139600pt;}
.y8c{bottom:597.520133pt;}
.y3f{bottom:603.217733pt;}
.ya8{bottom:603.520133pt;}
.yd{bottom:608.811600pt;}
.y8b{bottom:616.853467pt;}
.y26{bottom:621.457733pt;}
.y3e{bottom:623.217733pt;}
.y68{bottom:623.520133pt;}
.yc{bottom:627.483600pt;}
.y8a{bottom:636.186800pt;}
.y89{bottom:636.192133pt;}
.y3d{bottom:643.217733pt;}
.y67{bottom:643.520133pt;}
.yb{bottom:646.155600pt;}
.y25{bottom:653.457733pt;}
.y88{bottom:655.520133pt;}
.y87{bottom:655.530800pt;}
.y3c{bottom:663.217733pt;}
.y66{bottom:663.520133pt;}
.ya{bottom:664.827600pt;}
.y86{bottom:674.858800pt;}
.y3b{bottom:683.217733pt;}
.y9{bottom:683.499600pt;}
.y65{bottom:683.520133pt;}
.y85{bottom:694.186800pt;}
.y8{bottom:702.171600pt;}
.y3a{bottom:703.217733pt;}
.y64{bottom:703.520133pt;}
.y84{bottom:713.525467pt;}
.y39{bottom:723.217733pt;}
.y63{bottom:723.520133pt;}
.y83{bottom:732.853467pt;}
.y7{bottom:740.830267pt;}
.y58{bottom:743.217733pt;}
.y62{bottom:743.520133pt;}
.y82{bottom:752.853467pt;}
.y6{bottom:759.500933pt;}
.y38{bottom:763.217733pt;}
.y61{bottom:763.520133pt;}
.y5{bottom:778.171600pt;}
.y37{bottom:783.217733pt;}
.y60{bottom:783.520133pt;}
.y4{bottom:796.838267pt;}
.y36{bottom:803.217733pt;}
.y5f{bottom:803.520133pt;}
.y35{bottom:823.217733pt;}
.y5e{bottom:823.520133pt;}
.y3{bottom:840.838267pt;}
.y34{bottom:843.217733pt;}
.y5d{bottom:843.520133pt;}
.y33{bottom:863.217733pt;}
.y5c{bottom:863.520133pt;}
.y32{bottom:883.217733pt;}
.y5b{bottom:883.520133pt;}
.y31{bottom:911.092800pt;}
.y2{bottom:913.174267pt;}
.y30{bottom:924.426133pt;}
.hb{height:28.895833pt;}
.hc{height:29.645833pt;}
.he{height:29.866667pt;}
.h8{height:36.119792pt;}
.h9{height:37.057292pt;}
.ha{height:37.333333pt;}
.h6{height:41.066667pt;}
.h7{height:44.800000pt;}
.h2{height:45.732800pt;}
.h3{height:47.333333pt;}
.hd{height:47.430400pt;}
.h5{height:48.533333pt;}
.h4{height:56.000000pt;}
.hf{height:56.533333pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xa{left:56.692933pt;}
.x2{left:57.950400pt;}
.x9{left:65.385867pt;}
.x1{left:69.602667pt;}
.x10{left:108.962267pt;}
.x8{left:199.278133pt;}
.x3{left:203.681333pt;}
.xe{left:332.821467pt;}
.x6{left:356.253600pt;}
.x15{left:363.966000pt;}
.xd{left:366.702400pt;}
.x7{left:367.972267pt;}
.x16{left:369.085867pt;}
.x1c{left:373.320533pt;}
.x19{left:376.232533pt;}
.x14{left:379.466667pt;}
.x17{left:410.134000pt;}
.x18{left:414.624667pt;}
.x13{left:434.472667pt;}
.x5{left:439.633600pt;}
.x1a{left:491.976533pt;}
.x1b{left:496.403200pt;}
.x12{left:509.652000pt;}
.x4{left:512.221333pt;}
.xc{left:543.523733pt;}
.x11{left:546.159333pt;}
.xb{left:562.556267pt;}
.xf{left:631.627067pt;}
}




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