
    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_5d4c53a5be0264f6dccc6376.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4c05a36d81fdfc67f9a5ee8f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_5d27e174eceff51ec15aa073.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.846000;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_9bc6179ed4f3409ebcccc832.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.760000;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_989754d9bad0a788d5ff56e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.658000;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_4398c973ca6de981672bf60f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.106000;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_debf89050580e5db953c81e1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.871000;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;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m6{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:13.270183px;}
.ls3{letter-spacing:13.329959px;}
.ls1{letter-spacing:16.617617px;}
.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;}
}
.ws27{word-spacing:-38.937826px;}
.ws4c{word-spacing:-14.943900px;}
.ws1c{word-spacing:-2.570351px;}
.ws46{word-spacing:-1.494390px;}
.ws2f{word-spacing:-1.255288px;}
.ws30{word-spacing:-1.195512px;}
.ws41{word-spacing:-0.956410px;}
.ws44{word-spacing:-0.896634px;}
.wsd{word-spacing:-0.836858px;}
.ws24{word-spacing:-0.717307px;}
.ws42{word-spacing:-0.537980px;}
.ws2d{word-spacing:-0.418429px;}
.ws39{word-spacing:-0.358654px;}
.wsa{word-spacing:-0.298878px;}
.ws13{word-spacing:-0.239102px;}
.ws1a{word-spacing:-0.179327px;}
.ws5{word-spacing:-0.119551px;}
.ws4b{word-spacing:-0.071731px;}
.ws3{word-spacing:-0.059776px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:0.059776px;}
.wse{word-spacing:0.119551px;}
.ws9{word-spacing:0.179327px;}
.wsf{word-spacing:0.239102px;}
.ws14{word-spacing:0.298878px;}
.ws20{word-spacing:0.358654px;}
.ws34{word-spacing:0.478205px;}
.ws4{word-spacing:0.537980px;}
.ws43{word-spacing:0.597756px;}
.ws19{word-spacing:0.657532px;}
.ws16{word-spacing:0.836858px;}
.ws2c{word-spacing:0.896634px;}
.ws10{word-spacing:1.255288px;}
.ws33{word-spacing:1.374839px;}
.ws36{word-spacing:1.554166px;}
.ws1b{word-spacing:1.613941px;}
.ws1f{word-spacing:1.673717px;}
.ws2e{word-spacing:1.733492px;}
.ws17{word-spacing:1.793268px;}
.ws21{word-spacing:1.853044px;}
.ws3d{word-spacing:1.912819px;}
.ws3f{word-spacing:2.151922px;}
.ws32{word-spacing:2.331248px;}
.ws26{word-spacing:2.391024px;}
.ws7{word-spacing:2.630126px;}
.ws47{word-spacing:3.108331px;}
.ws48{word-spacing:3.287658px;}
.ws1d{word-spacing:3.466985px;}
.ws3c{word-spacing:3.646312px;}
.ws8{word-spacing:3.706087px;}
.ws35{word-spacing:3.765863px;}
.ws3e{word-spacing:3.945190px;}
.ws2a{word-spacing:4.184292px;}
.ws23{word-spacing:4.244068px;}
.ws37{word-spacing:4.423394px;}
.ws15{word-spacing:4.602721px;}
.ws2b{word-spacing:4.662497px;}
.ws4d{word-spacing:4.782048px;}
.ws31{word-spacing:4.841824px;}
.ws11{word-spacing:5.439580px;}
.ws12{word-spacing:5.499355px;}
.ws38{word-spacing:5.738458px;}
.ws28{word-spacing:5.810552px;}
.ws4a{word-spacing:5.917784px;}
.ws25{word-spacing:5.977560px;}
.wsb{word-spacing:6.097111px;}
.ws3b{word-spacing:6.156887px;}
.ws1e{word-spacing:6.694867px;}
.ws22{word-spacing:6.814418px;}
.ws45{word-spacing:7.113296px;}
.ws3a{word-spacing:7.890379px;}
.ws49{word-spacing:10.520506px;}
.ws29{word-spacing:13.210408px;}
.ws1{word-spacing:14.884124px;}
.ws18{word-spacing:17.861069px;}
.ws0{word-spacing:25.719808px;}
.ws40{word-spacing:59.715824px;}
.wsc{word-spacing:71.659469px;}
._2{margin-left:-6.917231px;}
._1{margin-left:-4.825085px;}
._3{margin-left:-3.287658px;}
._a{margin-left:-2.058668px;}
._0{margin-left:-1.032924px;}
._5{width:13.961192px;}
._f{width:16.029420px;}
._4{width:18.530436px;}
._7{width:20.459994px;}
._d{width:22.356074px;}
._12{width:23.910240px;}
._6{width:26.958796px;}
._8{width:29.469371px;}
._c{width:33.620185px;}
._b{width:35.446931px;}
._9{width:37.240199px;}
._11{width:39.272569px;}
._10{width:59.775600px;}
._e{width:71.731200px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.842800px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y43{bottom:63.168000px;}
.y29{bottom:78.184500px;}
.y42{bottom:108.000000px;}
.ya3{bottom:122.296500px;}
.y41{bottom:124.363500px;}
.ye5{bottom:128.520000px;}
.y28{bottom:131.151000px;}
.yff{bottom:136.435500px;}
.y40{bottom:140.727000px;}
.ye4{bottom:144.883500px;}
.y27{bottom:147.514500px;}
.ye2{bottom:148.947000px;}
.ycf{bottom:152.521500px;}
.ya1{bottom:152.575500px;}
.y5f{bottom:153.087000px;}
.y9f{bottom:153.525000px;}
.y3f{bottom:157.090500px;}
.ya5{bottom:161.551500px;}
.y26{bottom:163.878000px;}
.ye1{bottom:165.310500px;}
.y8a{bottom:168.672000px;}
.ybf{bottom:173.454000px;}
.y25{bottom:180.241500px;}
.ye0{bottom:181.674000px;}
.yfe{bottom:182.334000px;}
.y5e{bottom:189.703500px;}
.ybe{bottom:189.817500px;}
.y3e{bottom:189.868500px;}
.y9e{bottom:191.238000px;}
.y24{bottom:196.605000px;}
.ydf{bottom:198.037500px;}
.yfd{bottom:198.697500px;}
.y89{bottom:203.319000px;}
.y5d{bottom:206.067000px;}
.ybd{bottom:206.182500px;}
.y9d{bottom:207.601500px;}
.y23{bottom:212.968500px;}
.yde{bottom:214.401000px;}
.yfc{bottom:215.061000px;}
.y88{bottom:219.682500px;}
.y5c{bottom:222.430500px;}
.y9c{bottom:223.965000px;}
.ycd{bottom:224.634000px;}
.y22{bottom:229.332000px;}
.yfb{bottom:231.424500px;}
.y3d{bottom:233.595000px;}
.ybc{bottom:234.264000px;}
.y87{bottom:236.046000px;}
.y5b{bottom:238.794000px;}
.ydd{bottom:238.984500px;}
.y9b{bottom:240.328500px;}
.y21{bottom:245.695500px;}
.y3c{bottom:249.958500px;}
.y86{bottom:252.409500px;}
.y5a{bottom:255.157500px;}
.ydc{bottom:255.348000px;}
.y3b{bottom:266.323500px;}
.yfa{bottom:268.078500px;}
.ybb{bottom:269.278500px;}
.y9a{bottom:269.490000px;}
.y20{bottom:270.279000px;}
.ydb{bottom:271.711500px;}
.ycc{bottom:276.481500px;}
.y85{bottom:280.354500px;}
.yba{bottom:285.642000px;}
.y59{bottom:285.898500px;}
.y1f{bottom:286.642500px;}
.yda{bottom:288.075000px;}
.ycb{bottom:292.845000px;}
.yb9{bottom:302.005500px;}
.y1e{bottom:303.006000px;}
.yd9{bottom:304.438500px;}
.y3a{bottom:305.215500px;}
.y99{bottom:307.203000px;}
.yca{bottom:309.208500px;}
.y84{bottom:310.317000px;}
.yf9{bottom:313.977000px;}
.yb8{bottom:318.369000px;}
.y1d{bottom:319.369500px;}
.y98{bottom:323.566500px;}
.y58{bottom:324.532500px;}
.yc9{bottom:325.572000px;}
.yf8{bottom:330.340500px;}
.y1c{bottom:335.733000px;}
.y97{bottom:339.930000px;}
.y57{bottom:340.896000px;}
.yd8{bottom:343.429500px;}
.yb7{bottom:346.452000px;}
.yf7{bottom:346.704000px;}
.y83{bottom:346.981500px;}
.y39{bottom:354.846000px;}
.y96{bottom:356.293500px;}
.y56{bottom:357.259500px;}
.y1b{bottom:360.316500px;}
.yc8{bottom:360.388500px;}
.y82{bottom:363.345000px;}
.y38{bottom:371.209500px;}
.y55{bottom:373.623000px;}
.y1a{bottom:376.680000px;}
.y81{bottom:379.708500px;}
.yb6{bottom:381.466500px;}
.yf6{bottom:383.359500px;}
.y95{bottom:385.455000px;}
.y37{bottom:387.573000px;}
.y54{bottom:389.986500px;}
.y19{bottom:393.043500px;}
.yd7{bottom:393.222000px;}
.yb5{bottom:397.830000px;}
.y36{bottom:403.936500px;}
.y18{bottom:409.407000px;}
.yd6{bottom:409.585500px;}
.yc7{bottom:412.234500px;}
.y80{bottom:414.355500px;}
.y35{bottom:420.300000px;}
.y53{bottom:420.727500px;}
.yb4{bottom:422.412000px;}
.y94{bottom:423.168000px;}
.y17{bottom:425.770500px;}
.yd5{bottom:425.949000px;}
.yc6{bottom:428.598000px;}
.yf5{bottom:429.256500px;}
.y34{bottom:436.663500px;}
.yb3{bottom:438.777000px;}
.y93{bottom:439.531500px;}
.y16{bottom:442.134000px;}
.yd4{bottom:442.312500px;}
.yc5{bottom:444.961500px;}
.yf4{bottom:445.621500px;}
.yb2{bottom:455.140500px;}
.y92{bottom:455.895000px;}
.y7f{bottom:456.921000px;}
.y15{bottom:458.497500px;}
.yd3{bottom:458.676000px;}
.y52{bottom:459.360000px;}
.y33{bottom:461.247000px;}
.yc4{bottom:461.325000px;}
.yf3{bottom:461.985000px;}
.y91{bottom:472.258500px;}
.y7e{bottom:473.286000px;}
.y51{bottom:475.723500px;}
.y32{bottom:477.610500px;}
.yc3{bottom:477.690000px;}
.yf2{bottom:478.348500px;}
.yb1{bottom:483.222000px;}
.y90{bottom:488.622000px;}
.y7d{bottom:489.649500px;}
.yd2{bottom:491.518500px;}
.y50{bottom:492.088500px;}
.y31{bottom:493.974000px;}
.yc2{bottom:494.053500px;}
.yf1{bottom:494.712000px;}
.y14{bottom:500.407500px;}
.y8f{bottom:504.985500px;}
.y7c{bottom:506.013000px;}
.y4f{bottom:508.452000px;}
.y30{bottom:510.337500px;}
.yf0{bottom:511.075500px;}
.yb0{bottom:518.236500px;}
.y7b{bottom:522.376500px;}
.y4e{bottom:524.815500px;}
.y2f{bottom:526.701000px;}
.yc1{bottom:528.868500px;}
.y8e{bottom:534.147000px;}
.yaf{bottom:534.600000px;}
.yef{bottom:535.657500px;}
.y7a{bottom:538.740000px;}
.y4d{bottom:541.179000px;}
.yd1{bottom:545.988000px;}
.yae{bottom:550.963500px;}
.yee{bottom:552.022500px;}
.yce{bottom:553.492500px;}
.y79{bottom:555.103500px;}
.ye3{bottom:561.942000px;}
.y2e{bottom:565.594500px;}
.y4c{bottom:565.761000px;}
.yad{bottom:567.327000px;}
.yed{bottom:568.386000px;}
.y13{bottom:570.577500px;}
.y78{bottom:571.467000px;}
.y8d{bottom:571.860000px;}
.ya2{bottom:576.256500px;}
.y4b{bottom:582.124500px;}
.yec{bottom:584.749500px;}
.y12{bottom:586.941000px;}
.y77{bottom:587.830500px;}
.y8c{bottom:588.223500px;}
.yc0{bottom:592.204500px;}
.yac{bottom:595.410000px;}
.y4a{bottom:598.489500px;}
.yeb{bottom:601.113000px;}
.y11{bottom:603.304500px;}
.y76{bottom:604.194000px;}
.y49{bottom:614.853000px;}
.yea{bottom:617.476500px;}
.ya0{bottom:619.408500px;}
.y10{bottom:619.668000px;}
.y2d{bottom:619.918500px;}
.yab{bottom:625.510500px;}
.y75{bottom:628.777500px;}
.y48{bottom:631.216500px;}
.ye9{bottom:633.840000px;}
.yf{bottom:636.031500px;}
.y2c{bottom:636.282000px;}
.y8b{bottom:638.994000px;}
.y74{bottom:645.141000px;}
.ye8{bottom:650.203500px;}
.ye{bottom:652.395000px;}
.y47{bottom:661.957500px;}
.yaa{bottom:662.542500px;}
.yd{bottom:668.758500px;}
.y73{bottom:675.103500px;}
.ya4{bottom:677.932500px;}
.ya9{bottom:678.906000px;}
.yc{bottom:685.122000px;}
.ye7{bottom:686.859000px;}
.ya8{bottom:695.269500px;}
.yb{bottom:701.485500px;}
.y46{bottom:711.754500px;}
.y72{bottom:711.768000px;}
.ya{bottom:717.850500px;}
.ya7{bottom:723.352500px;}
.y45{bottom:728.118000px;}
.y71{bottom:728.131500px;}
.y9{bottom:734.214000px;}
.ye6{bottom:737.865000px;}
.y70{bottom:744.495000px;}
.y6f{bottom:760.858500px;}
.ya6{bottom:771.724500px;}
.y6e{bottom:777.222000px;}
.y8{bottom:777.673500px;}
.y109{bottom:782.989500px;}
.y108{bottom:805.330500px;}
.y6d{bottom:812.134500px;}
.y107{bottom:827.671500px;}
.y6c{bottom:838.828500px;}
.y7{bottom:839.446500px;}
.yd0{bottom:845.253000px;}
.y106{bottom:850.012500px;}
.y6b{bottom:855.192000px;}
.y6{bottom:855.810000px;}
.y2b{bottom:860.854500px;}
.y6a{bottom:871.555500px;}
.y5{bottom:872.173500px;}
.y105{bottom:872.353500px;}
.y2a{bottom:877.218000px;}
.y69{bottom:887.919000px;}
.y4{bottom:888.537000px;}
.y104{bottom:902.914500px;}
.y68{bottom:904.282500px;}
.y3{bottom:904.900500px;}
.y67{bottom:920.646000px;}
.y44{bottom:935.940000px;}
.y66{bottom:937.009500px;}
.y103{bottom:937.584000px;}
.y65{bottom:964.954500px;}
.y102{bottom:987.646500px;}
.y2{bottom:988.542000px;}
.y64{bottom:999.601500px;}
.y101{bottom:1009.987500px;}
.y63{bottom:1015.965000px;}
.y1{bottom:1018.429500px;}
.y100{bottom:1026.351000px;}
.y62{bottom:1032.328500px;}
.y61{bottom:1048.692000px;}
.y60{bottom:1065.055500px;}
.h4{height:36.941321px;}
.h6{height:37.013299px;}
.h3{height:41.125613px;}
.h2{height:41.364715px;}
.h5{height:49.637990px;}
.h1{height:71.478341px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:162.000000px;}
.x11{left:163.254000px;}
.x14{left:177.354000px;}
.x1{left:178.420500px;}
.x22{left:179.424000px;}
.x21{left:186.897000px;}
.x1e{left:190.101000px;}
.x23{left:203.095500px;}
.x5{left:215.892000px;}
.x4{left:221.503500px;}
.x7{left:231.529500px;}
.x1d{left:237.256500px;}
.x15{left:243.040500px;}
.x19{left:246.529500px;}
.x6{left:247.819500px;}
.xf{left:254.374500px;}
.x18{left:259.732500px;}
.x16{left:264.036000px;}
.x3{left:267.978000px;}
.x17{left:274.099500px;}
.x2{left:298.653000px;}
.x1b{left:304.555500px;}
.x1c{left:309.390000px;}
.x13{left:330.012000px;}
.x12{left:357.244500px;}
.xd{left:425.637000px;}
.x1a{left:451.528500px;}
.x10{left:455.263500px;}
.xa{left:490.429500px;}
.x9{left:496.041000px;}
.xc{left:502.144500px;}
.xb{left:522.357000px;}
.x8{left:539.191500px;}
.x1f{left:743.452500px;}
.x20{left:750.924000px;}
@media print{
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:11.795718pt;}
.ls3{letter-spacing:11.848852pt;}
.ls1{letter-spacing:14.771215pt;}
.ws27{word-spacing:-34.611401pt;}
.ws4c{word-spacing:-13.283467pt;}
.ws1c{word-spacing:-2.284756pt;}
.ws46{word-spacing:-1.328347pt;}
.ws2f{word-spacing:-1.115811pt;}
.ws30{word-spacing:-1.062677pt;}
.ws41{word-spacing:-0.850142pt;}
.ws44{word-spacing:-0.797008pt;}
.wsd{word-spacing:-0.743874pt;}
.ws24{word-spacing:-0.637606pt;}
.ws42{word-spacing:-0.478205pt;}
.ws2d{word-spacing:-0.371937pt;}
.ws39{word-spacing:-0.318803pt;}
.wsa{word-spacing:-0.265669pt;}
.ws13{word-spacing:-0.212535pt;}
.ws1a{word-spacing:-0.159402pt;}
.ws5{word-spacing:-0.106268pt;}
.ws4b{word-spacing:-0.063761pt;}
.ws3{word-spacing:-0.053134pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:0.053134pt;}
.wse{word-spacing:0.106268pt;}
.ws9{word-spacing:0.159402pt;}
.wsf{word-spacing:0.212535pt;}
.ws14{word-spacing:0.265669pt;}
.ws20{word-spacing:0.318803pt;}
.ws34{word-spacing:0.425071pt;}
.ws4{word-spacing:0.478205pt;}
.ws43{word-spacing:0.531339pt;}
.ws19{word-spacing:0.584473pt;}
.ws16{word-spacing:0.743874pt;}
.ws2c{word-spacing:0.797008pt;}
.ws10{word-spacing:1.115811pt;}
.ws33{word-spacing:1.222079pt;}
.ws36{word-spacing:1.381481pt;}
.ws1b{word-spacing:1.434614pt;}
.ws1f{word-spacing:1.487748pt;}
.ws2e{word-spacing:1.540882pt;}
.ws17{word-spacing:1.594016pt;}
.ws21{word-spacing:1.647150pt;}
.ws3d{word-spacing:1.700284pt;}
.ws3f{word-spacing:1.912819pt;}
.ws32{word-spacing:2.072221pt;}
.ws26{word-spacing:2.125355pt;}
.ws7{word-spacing:2.337890pt;}
.ws47{word-spacing:2.762961pt;}
.ws48{word-spacing:2.922363pt;}
.ws1d{word-spacing:3.081764pt;}
.ws3c{word-spacing:3.241166pt;}
.ws8{word-spacing:3.294300pt;}
.ws35{word-spacing:3.347434pt;}
.ws3e{word-spacing:3.506835pt;}
.ws2a{word-spacing:3.719371pt;}
.ws23{word-spacing:3.772505pt;}
.ws37{word-spacing:3.931906pt;}
.ws15{word-spacing:4.091308pt;}
.ws2b{word-spacing:4.144442pt;}
.ws4d{word-spacing:4.250709pt;}
.ws31{word-spacing:4.303843pt;}
.ws11{word-spacing:4.835182pt;}
.ws12{word-spacing:4.888316pt;}
.ws38{word-spacing:5.100851pt;}
.ws28{word-spacing:5.164935pt;}
.ws4a{word-spacing:5.260253pt;}
.ws25{word-spacing:5.313387pt;}
.wsb{word-spacing:5.419654pt;}
.ws3b{word-spacing:5.472788pt;}
.ws1e{word-spacing:5.950993pt;}
.ws22{word-spacing:6.057261pt;}
.ws45{word-spacing:6.322930pt;}
.ws3a{word-spacing:7.013670pt;}
.ws49{word-spacing:9.351561pt;}
.ws29{word-spacing:11.742585pt;}
.ws1{word-spacing:13.230333pt;}
.ws18{word-spacing:15.876506pt;}
.ws0{word-spacing:22.862051pt;}
.ws40{word-spacing:53.080733pt;}
.wsc{word-spacing:63.697306pt;}
._2{margin-left:-6.148650pt;}
._1{margin-left:-4.288964pt;}
._3{margin-left:-2.922363pt;}
._a{margin-left:-1.829927pt;}
._0{margin-left:-0.918155pt;}
._5{width:12.409949pt;}
._f{width:14.248373pt;}
._4{width:16.471499pt;}
._7{width:18.186661pt;}
._d{width:19.872066pt;}
._12{width:21.253547pt;}
._6{width:23.963374pt;}
._8{width:26.194996pt;}
._c{width:29.884609pt;}
._b{width:31.508383pt;}
._9{width:33.102399pt;}
._11{width:34.908950pt;}
._10{width:53.133867pt;}
._e{width:63.761067pt;}
.fs4{font-size:37.193600pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:56.149333pt;}
.y29{bottom:69.497333pt;}
.y42{bottom:96.000000pt;}
.ya3{bottom:108.708000pt;}
.y41{bottom:110.545333pt;}
.ye5{bottom:114.240000pt;}
.y28{bottom:116.578667pt;}
.yff{bottom:121.276000pt;}
.y40{bottom:125.090667pt;}
.ye4{bottom:128.785333pt;}
.y27{bottom:131.124000pt;}
.ye2{bottom:132.397333pt;}
.ycf{bottom:135.574667pt;}
.ya1{bottom:135.622667pt;}
.y5f{bottom:136.077333pt;}
.y9f{bottom:136.466667pt;}
.y3f{bottom:139.636000pt;}
.ya5{bottom:143.601333pt;}
.y26{bottom:145.669333pt;}
.ye1{bottom:146.942667pt;}
.y8a{bottom:149.930667pt;}
.ybf{bottom:154.181333pt;}
.y25{bottom:160.214667pt;}
.ye0{bottom:161.488000pt;}
.yfe{bottom:162.074667pt;}
.y5e{bottom:168.625333pt;}
.ybe{bottom:168.726667pt;}
.y3e{bottom:168.772000pt;}
.y9e{bottom:169.989333pt;}
.y24{bottom:174.760000pt;}
.ydf{bottom:176.033333pt;}
.yfd{bottom:176.620000pt;}
.y89{bottom:180.728000pt;}
.y5d{bottom:183.170667pt;}
.ybd{bottom:183.273333pt;}
.y9d{bottom:184.534667pt;}
.y23{bottom:189.305333pt;}
.yde{bottom:190.578667pt;}
.yfc{bottom:191.165333pt;}
.y88{bottom:195.273333pt;}
.y5c{bottom:197.716000pt;}
.y9c{bottom:199.080000pt;}
.ycd{bottom:199.674667pt;}
.y22{bottom:203.850667pt;}
.yfb{bottom:205.710667pt;}
.y3d{bottom:207.640000pt;}
.ybc{bottom:208.234667pt;}
.y87{bottom:209.818667pt;}
.y5b{bottom:212.261333pt;}
.ydd{bottom:212.430667pt;}
.y9b{bottom:213.625333pt;}
.y21{bottom:218.396000pt;}
.y3c{bottom:222.185333pt;}
.y86{bottom:224.364000pt;}
.y5a{bottom:226.806667pt;}
.ydc{bottom:226.976000pt;}
.y3b{bottom:236.732000pt;}
.yfa{bottom:238.292000pt;}
.ybb{bottom:239.358667pt;}
.y9a{bottom:239.546667pt;}
.y20{bottom:240.248000pt;}
.ydb{bottom:241.521333pt;}
.ycc{bottom:245.761333pt;}
.y85{bottom:249.204000pt;}
.yba{bottom:253.904000pt;}
.y59{bottom:254.132000pt;}
.y1f{bottom:254.793333pt;}
.yda{bottom:256.066667pt;}
.ycb{bottom:260.306667pt;}
.yb9{bottom:268.449333pt;}
.y1e{bottom:269.338667pt;}
.yd9{bottom:270.612000pt;}
.y3a{bottom:271.302667pt;}
.y99{bottom:273.069333pt;}
.yca{bottom:274.852000pt;}
.y84{bottom:275.837333pt;}
.yf9{bottom:279.090667pt;}
.yb8{bottom:282.994667pt;}
.y1d{bottom:283.884000pt;}
.y98{bottom:287.614667pt;}
.y58{bottom:288.473333pt;}
.yc9{bottom:289.397333pt;}
.yf8{bottom:293.636000pt;}
.y1c{bottom:298.429333pt;}
.y97{bottom:302.160000pt;}
.y57{bottom:303.018667pt;}
.yd8{bottom:305.270667pt;}
.yb7{bottom:307.957333pt;}
.yf7{bottom:308.181333pt;}
.y83{bottom:308.428000pt;}
.y39{bottom:315.418667pt;}
.y96{bottom:316.705333pt;}
.y56{bottom:317.564000pt;}
.y1b{bottom:320.281333pt;}
.yc8{bottom:320.345333pt;}
.y82{bottom:322.973333pt;}
.y38{bottom:329.964000pt;}
.y55{bottom:332.109333pt;}
.y1a{bottom:334.826667pt;}
.y81{bottom:337.518667pt;}
.yb6{bottom:339.081333pt;}
.yf6{bottom:340.764000pt;}
.y95{bottom:342.626667pt;}
.y37{bottom:344.509333pt;}
.y54{bottom:346.654667pt;}
.y19{bottom:349.372000pt;}
.yd7{bottom:349.530667pt;}
.yb5{bottom:353.626667pt;}
.y36{bottom:359.054667pt;}
.y18{bottom:363.917333pt;}
.yd6{bottom:364.076000pt;}
.yc7{bottom:366.430667pt;}
.y80{bottom:368.316000pt;}
.y35{bottom:373.600000pt;}
.y53{bottom:373.980000pt;}
.yb4{bottom:375.477333pt;}
.y94{bottom:376.149333pt;}
.y17{bottom:378.462667pt;}
.yd5{bottom:378.621333pt;}
.yc6{bottom:380.976000pt;}
.yf5{bottom:381.561333pt;}
.y34{bottom:388.145333pt;}
.yb3{bottom:390.024000pt;}
.y93{bottom:390.694667pt;}
.y16{bottom:393.008000pt;}
.yd4{bottom:393.166667pt;}
.yc5{bottom:395.521333pt;}
.yf4{bottom:396.108000pt;}
.yb2{bottom:404.569333pt;}
.y92{bottom:405.240000pt;}
.y7f{bottom:406.152000pt;}
.y15{bottom:407.553333pt;}
.yd3{bottom:407.712000pt;}
.y52{bottom:408.320000pt;}
.y33{bottom:409.997333pt;}
.yc4{bottom:410.066667pt;}
.yf3{bottom:410.653333pt;}
.y91{bottom:419.785333pt;}
.y7e{bottom:420.698667pt;}
.y51{bottom:422.865333pt;}
.y32{bottom:424.542667pt;}
.yc3{bottom:424.613333pt;}
.yf2{bottom:425.198667pt;}
.yb1{bottom:429.530667pt;}
.y90{bottom:434.330667pt;}
.y7d{bottom:435.244000pt;}
.yd2{bottom:436.905333pt;}
.y50{bottom:437.412000pt;}
.y31{bottom:439.088000pt;}
.yc2{bottom:439.158667pt;}
.yf1{bottom:439.744000pt;}
.y14{bottom:444.806667pt;}
.y8f{bottom:448.876000pt;}
.y7c{bottom:449.789333pt;}
.y4f{bottom:451.957333pt;}
.y30{bottom:453.633333pt;}
.yf0{bottom:454.289333pt;}
.yb0{bottom:460.654667pt;}
.y7b{bottom:464.334667pt;}
.y4e{bottom:466.502667pt;}
.y2f{bottom:468.178667pt;}
.yc1{bottom:470.105333pt;}
.y8e{bottom:474.797333pt;}
.yaf{bottom:475.200000pt;}
.yef{bottom:476.140000pt;}
.y7a{bottom:478.880000pt;}
.y4d{bottom:481.048000pt;}
.yd1{bottom:485.322667pt;}
.yae{bottom:489.745333pt;}
.yee{bottom:490.686667pt;}
.yce{bottom:491.993333pt;}
.y79{bottom:493.425333pt;}
.ye3{bottom:499.504000pt;}
.y2e{bottom:502.750667pt;}
.y4c{bottom:502.898667pt;}
.yad{bottom:504.290667pt;}
.yed{bottom:505.232000pt;}
.y13{bottom:507.180000pt;}
.y78{bottom:507.970667pt;}
.y8d{bottom:508.320000pt;}
.ya2{bottom:512.228000pt;}
.y4b{bottom:517.444000pt;}
.yec{bottom:519.777333pt;}
.y12{bottom:521.725333pt;}
.y77{bottom:522.516000pt;}
.y8c{bottom:522.865333pt;}
.yc0{bottom:526.404000pt;}
.yac{bottom:529.253333pt;}
.y4a{bottom:531.990667pt;}
.yeb{bottom:534.322667pt;}
.y11{bottom:536.270667pt;}
.y76{bottom:537.061333pt;}
.y49{bottom:546.536000pt;}
.yea{bottom:548.868000pt;}
.ya0{bottom:550.585333pt;}
.y10{bottom:550.816000pt;}
.y2d{bottom:551.038667pt;}
.yab{bottom:556.009333pt;}
.y75{bottom:558.913333pt;}
.y48{bottom:561.081333pt;}
.ye9{bottom:563.413333pt;}
.yf{bottom:565.361333pt;}
.y2c{bottom:565.584000pt;}
.y8b{bottom:567.994667pt;}
.y74{bottom:573.458667pt;}
.ye8{bottom:577.958667pt;}
.ye{bottom:579.906667pt;}
.y47{bottom:588.406667pt;}
.yaa{bottom:588.926667pt;}
.yd{bottom:594.452000pt;}
.y73{bottom:600.092000pt;}
.ya4{bottom:602.606667pt;}
.ya9{bottom:603.472000pt;}
.yc{bottom:608.997333pt;}
.ye7{bottom:610.541333pt;}
.ya8{bottom:618.017333pt;}
.yb{bottom:623.542667pt;}
.y46{bottom:632.670667pt;}
.y72{bottom:632.682667pt;}
.ya{bottom:638.089333pt;}
.ya7{bottom:642.980000pt;}
.y45{bottom:647.216000pt;}
.y71{bottom:647.228000pt;}
.y9{bottom:652.634667pt;}
.ye6{bottom:655.880000pt;}
.y70{bottom:661.773333pt;}
.y6f{bottom:676.318667pt;}
.ya6{bottom:685.977333pt;}
.y6e{bottom:690.864000pt;}
.y8{bottom:691.265333pt;}
.y109{bottom:695.990667pt;}
.y108{bottom:715.849333pt;}
.y6d{bottom:721.897333pt;}
.y107{bottom:735.708000pt;}
.y6c{bottom:745.625333pt;}
.y7{bottom:746.174667pt;}
.yd0{bottom:751.336000pt;}
.y106{bottom:755.566667pt;}
.y6b{bottom:760.170667pt;}
.y6{bottom:760.720000pt;}
.y2b{bottom:765.204000pt;}
.y6a{bottom:774.716000pt;}
.y5{bottom:775.265333pt;}
.y105{bottom:775.425333pt;}
.y2a{bottom:779.749333pt;}
.y69{bottom:789.261333pt;}
.y4{bottom:789.810667pt;}
.y104{bottom:802.590667pt;}
.y68{bottom:803.806667pt;}
.y3{bottom:804.356000pt;}
.y67{bottom:818.352000pt;}
.y44{bottom:831.946667pt;}
.y66{bottom:832.897333pt;}
.y103{bottom:833.408000pt;}
.y65{bottom:857.737333pt;}
.y102{bottom:877.908000pt;}
.y2{bottom:878.704000pt;}
.y64{bottom:888.534667pt;}
.y101{bottom:897.766667pt;}
.y63{bottom:903.080000pt;}
.y1{bottom:905.270667pt;}
.y100{bottom:912.312000pt;}
.y62{bottom:917.625333pt;}
.y61{bottom:932.170667pt;}
.y60{bottom:946.716000pt;}
.h4{height:32.836730pt;}
.h6{height:32.900710pt;}
.h3{height:36.556100pt;}
.h2{height:36.768636pt;}
.h5{height:44.122658pt;}
.h1{height:63.536303pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:144.000000pt;}
.x11{left:145.114667pt;}
.x14{left:157.648000pt;}
.x1{left:158.596000pt;}
.x22{left:159.488000pt;}
.x21{left:166.130667pt;}
.x1e{left:168.978667pt;}
.x23{left:180.529333pt;}
.x5{left:191.904000pt;}
.x4{left:196.892000pt;}
.x7{left:205.804000pt;}
.x1d{left:210.894667pt;}
.x15{left:216.036000pt;}
.x19{left:219.137333pt;}
.x6{left:220.284000pt;}
.xf{left:226.110667pt;}
.x18{left:230.873333pt;}
.x16{left:234.698667pt;}
.x3{left:238.202667pt;}
.x17{left:243.644000pt;}
.x2{left:265.469333pt;}
.x1b{left:270.716000pt;}
.x1c{left:275.013333pt;}
.x13{left:293.344000pt;}
.x12{left:317.550667pt;}
.xd{left:378.344000pt;}
.x1a{left:401.358667pt;}
.x10{left:404.678667pt;}
.xa{left:435.937333pt;}
.x9{left:440.925333pt;}
.xc{left:446.350667pt;}
.xb{left:464.317333pt;}
.x8{left:479.281333pt;}
.x1f{left:660.846667pt;}
.x20{left:667.488000pt;}
}




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