
    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_2a5cd55e40a669f852bb6387.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.157000;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_9f53211acab6b11bfd03220b.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_bce880b58957099b7836bef3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905000;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_c6b9949a8cf598ef337b5fe6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.156000;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_7fc4f00c12881aded3328ebf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908000;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;}
.m6{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);}
.m1{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);}
.m7{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);}
.m1f{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m20{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);}
.m1c{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);}
.m8{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);}
.m2{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);}
.m14{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);}
.m1b{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);}
.m9{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);}
.me{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);}
.m4{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);}
.m1e{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);}
.m25{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);}
.mc{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);}
.m27{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);}
.m1d{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);}
.m17{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);}
.m19{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);}
.ma{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);}
.m23{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);}
.m12{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);}
.m16{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m18{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);}
.m11{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);}
.md{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m29{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);}
.m3{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);}
.m24{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);}
.m26{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);}
.m1a{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);}
.m13{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);}
.m5{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);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:56.784000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.215193px;}
.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;}
}
.ws5{word-spacing:-86.077200px;}
.ws77{word-spacing:-71.946213px;}
.ws16{word-spacing:-71.731020px;}
.ws63{word-spacing:-55.591541px;}
.ws4b{word-spacing:-55.519809px;}
.ws3a{word-spacing:-55.448078px;}
.ws79{word-spacing:-55.161154px;}
.ws34{word-spacing:-54.730768px;}
.ws6f{word-spacing:-54.013458px;}
.ws27{word-spacing:-53.869996px;}
.ws4{word-spacing:-53.453941px;}
.ws3{word-spacing:-53.195710px;}
.ws53{word-spacing:-53.152686px;}
.ws2b{word-spacing:-52.937493px;}
.ws20{word-spacing:-52.865762px;}
.ws69{word-spacing:-52.794031px;}
.ws4f{word-spacing:-52.722300px;}
.ws37{word-spacing:-52.076721px;}
.ws26{word-spacing:-52.004989px;}
.ws3f{word-spacing:-51.933258px;}
.ws6d{word-spacing:-51.215948px;}
.ws65{word-spacing:-51.000755px;}
.ws6a{word-spacing:-50.929024px;}
.ws5c{word-spacing:-50.857293px;}
.ws22{word-spacing:-50.785562px;}
.ws39{word-spacing:-50.713831px;}
.ws45{word-spacing:-50.570369px;}
.ws62{word-spacing:-50.498638px;}
.ws7e{word-spacing:-50.426907px;}
.wsb{word-spacing:-50.355176px;}
.ws35{word-spacing:-50.283445px;}
.ws73{word-spacing:-50.139983px;}
.ws38{word-spacing:-50.068252px;}
.ws5f{word-spacing:-49.996521px;}
.ws64{word-spacing:-49.924790px;}
.ws47{word-spacing:-49.781328px;}
.ws10{word-spacing:-49.709597px;}
.ws51{word-spacing:-49.637866px;}
.ws72{word-spacing:-49.494404px;}
.ws7d{word-spacing:-49.422673px;}
.ws2e{word-spacing:-49.279211px;}
.ws6e{word-spacing:-49.135749px;}
.ws70{word-spacing:-49.064018px;}
.ws58{word-spacing:-48.992287px;}
.ws2a{word-spacing:-48.920556px;}
.ws13{word-spacing:-48.848825px;}
.ws19{word-spacing:-48.777094px;}
.ws7{word-spacing:-48.705363px;}
.ws25{word-spacing:-48.633632px;}
.wsf{word-spacing:-48.561901px;}
.ws18{word-spacing:-48.490170px;}
.ws11{word-spacing:-48.418438px;}
.ws6{word-spacing:-48.346707px;}
.wsd{word-spacing:-48.343700px;}
.ws15{word-spacing:-48.343048px;}
.wsc{word-spacing:-48.274976px;}
.ws31{word-spacing:-48.203245px;}
.ws8{word-spacing:-48.131514px;}
.ws75{word-spacing:-48.103577px;}
.ws76{word-spacing:-48.087872px;}
.ws3b{word-spacing:-48.059783px;}
.wsa{word-spacing:-47.988052px;}
.ws14{word-spacing:-47.916321px;}
.ws1a{word-spacing:-47.844590px;}
.ws3c{word-spacing:-47.772859px;}
.ws61{word-spacing:-47.701128px;}
.ws21{word-spacing:-47.557666px;}
.ws4c{word-spacing:-47.485935px;}
.ws2f{word-spacing:-47.414204px;}
.ws49{word-spacing:-47.270742px;}
.ws40{word-spacing:-47.055549px;}
.ws7a{word-spacing:-46.912087px;}
.ws24{word-spacing:-46.840356px;}
.ws52{word-spacing:-46.768625px;}
.ws74{word-spacing:-46.696894px;}
.ws4a{word-spacing:-46.625163px;}
.ws78{word-spacing:-46.553432px;}
.ws68{word-spacing:-46.481701px;}
.ws29{word-spacing:-46.409970px;}
.ws48{word-spacing:-46.266508px;}
.ws67{word-spacing:-46.123046px;}
.ws1b{word-spacing:-45.979584px;}
.ws4d{word-spacing:-45.907853px;}
.ws3e{word-spacing:-45.836122px;}
.ws5e{word-spacing:-45.549198px;}
.ws5a{word-spacing:-45.405736px;}
.ws1c{word-spacing:-45.190543px;}
.ws4e{word-spacing:-44.975350px;}
.ws32{word-spacing:-44.903619px;}
.ws2c{word-spacing:-44.831888px;}
.ws1d{word-spacing:-44.760156px;}
.ws54{word-spacing:-44.616694px;}
.ws7b{word-spacing:-44.401501px;}
.ws44{word-spacing:-44.329770px;}
.ws6b{word-spacing:-43.971115px;}
.ws55{word-spacing:-43.827653px;}
.ws9{word-spacing:-43.684191px;}
.ws3d{word-spacing:-43.612460px;}
.ws46{word-spacing:-43.540729px;}
.ws7c{word-spacing:-43.397267px;}
.ws56{word-spacing:-43.253805px;}
.ws71{word-spacing:-43.182074px;}
.ws59{word-spacing:-43.038612px;}
.ws28{word-spacing:-42.966881px;}
.ws43{word-spacing:-42.823419px;}
.ws33{word-spacing:-42.679957px;}
.ws5d{word-spacing:-42.393033px;}
.ws5b{word-spacing:-42.249571px;}
.ws42{word-spacing:-42.106109px;}
.ws60{word-spacing:-42.034378px;}
.ws1e{word-spacing:-41.962647px;}
.ws36{word-spacing:-41.890916px;}
.ws12{word-spacing:-41.819185px;}
.ws50{word-spacing:-41.532261px;}
.ws57{word-spacing:-40.886681px;}
.ws41{word-spacing:-40.097640px;}
.ws2d{word-spacing:-39.523792px;}
.ws17{word-spacing:-38.949944px;}
.ws6c{word-spacing:-38.591289px;}
.ws66{word-spacing:-38.160903px;}
.ws23{word-spacing:-37.730517px;}
.ws30{word-spacing:-37.515323px;}
.ws2{word-spacing:-30.892146px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.wse{word-spacing:0.000000px;}
.ws1f{word-spacing:375.103658px;}
._6{margin-left:-7.125282px;}
._5{margin-left:-5.556761px;}
._1{margin-left:-4.256039px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.434620px;}
._9{width:1.157262px;}
._4{width:2.716213px;}
._b{width:4.447321px;}
._a{width:6.321638px;}
._e{width:18.783962px;}
._2{width:22.571352px;}
._8{width:24.484178px;}
._c{width:25.942718px;}
._7{width:27.305607px;}
._d{width:28.386353px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,255);}
.fs0{font-size:47.820660px;}
.fs3{font-size:50.211660px;}
.fs2{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y21{bottom:43.525500px;}
.y20{bottom:57.723000px;}
.y1f{bottom:71.919000px;}
.yc3{bottom:106.900500px;}
.y3d{bottom:107.647500px;}
.y8e{bottom:110.262000px;}
.y5a{bottom:113.625000px;}
.ya1{bottom:115.866000px;}
.y74{bottom:119.229000px;}
.yce{bottom:122.217000px;}
.yb9{bottom:124.833000px;}
.yad{bottom:133.798500px;}
.ye4{bottom:136.788000px;}
.y51{bottom:137.161500px;}
.y3c{bottom:140.151000px;}
.y8d{bottom:142.765500px;}
.y59{bottom:146.128500px;}
.ya0{bottom:148.369500px;}
.y73{bottom:151.732500px;}
.y1e{bottom:157.057500px;}
.yb8{bottom:157.336500px;}
.ycd{bottom:163.687500px;}
.yac{bottom:166.302000px;}
.y3b{bottom:172.653000px;}
.y8c{bottom:175.269000px;}
.ye3{bottom:178.257000px;}
.y50{bottom:178.630500px;}
.y9f{bottom:180.873000px;}
.ybe{bottom:189.838500px;}
.y72{bottom:193.201500px;}
.ycc{bottom:196.191000px;}
.y1d{bottom:198.528000px;}
.yb7{bottom:198.805500px;}
.y3a{bottom:205.156500px;}
.y8b{bottom:207.772500px;}
.ye2{bottom:210.760500px;}
.y4f{bottom:211.134000px;}
.y9e{bottom:213.376500px;}
.yc5{bottom:222.342000px;}
.y71{bottom:225.705000px;}
.ycb{bottom:228.693000px;}
.y1c{bottom:231.030000px;}
.yb6{bottom:231.309000px;}
.y39{bottom:237.660000px;}
.y8a{bottom:240.274500px;}
.ye1{bottom:243.264000px;}
.y4e{bottom:243.637500px;}
.y9d{bottom:254.845500px;}
.y70{bottom:261.196500px;}
.y1b{bottom:263.533500px;}
.yb5{bottom:263.811000px;}
.y38{bottom:270.163500px;}
.y89{bottom:272.778000px;}
.ye0{bottom:275.767500px;}
.y4d{bottom:276.141000px;}
.yab{bottom:281.745000px;}
.y75{bottom:285.106500px;}
.y9c{bottom:287.349000px;}
.y6f{bottom:293.700000px;}
.y1a{bottom:296.037000px;}
.yc2{bottom:296.314500px;}
.y88{bottom:305.281500px;}
.y4c{bottom:308.643000px;}
.y37{bottom:311.632500px;}
.yaa{bottom:314.247000px;}
.ydf{bottom:317.236500px;}
.y58{bottom:317.610000px;}
.y9b{bottom:319.851000px;}
.y19{bottom:328.540500px;}
.yc1{bottom:328.818000px;}
.y6e{bottom:329.191500px;}
.yca{bottom:335.169000px;}
.yb3{bottom:337.785000px;}
.y36{bottom:344.136000px;}
.y87{bottom:346.750500px;}
.yde{bottom:349.740000px;}
.y4b{bottom:350.113500px;}
.ya9{bottom:355.717500px;}
.y18{bottom:361.042500px;}
.y9a{bottom:361.321500px;}
.y6d{bottom:361.695000px;}
.yc9{bottom:367.672500px;}
.ybd{bottom:370.287000px;}
.y35{bottom:376.638000px;}
.y86{bottom:379.254000px;}
.ydd{bottom:382.242000px;}
.y4a{bottom:382.615500px;}
.ya8{bottom:388.219500px;}
.y17{bottom:393.546000px;}
.yc8{bottom:400.176000px;}
.y99{bottom:402.790500px;}
.y6c{bottom:403.164000px;}
.y34{bottom:409.141500px;}
.y85{bottom:411.757500px;}
.y49{bottom:415.119000px;}
.ya7{bottom:420.723000px;}
.ydc{bottom:423.712500px;}
.y16{bottom:426.049500px;}
.yc7{bottom:432.678000px;}
.ybc{bottom:435.294000px;}
.y6b{bottom:435.667500px;}
.y33{bottom:441.645000px;}
.y98{bottom:444.259500px;}
.y48{bottom:447.622500px;}
.y84{bottom:453.226500px;}
.ydb{bottom:456.214500px;}
.y15{bottom:458.553000px;}
.ya6{bottom:462.192000px;}
.y6a{bottom:468.171000px;}
.y32{bottom:474.148500px;}
.y97{bottom:476.763000px;}
.y47{bottom:480.126000px;}
.yb2{bottom:485.730000px;}
.y57{bottom:489.091500px;}
.y14{bottom:491.055000px;}
.y83{bottom:494.695500px;}
.yda{bottom:497.685000px;}
.ya5{bottom:503.662500px;}
.y31{bottom:506.650500px;}
.y96{bottom:509.266500px;}
.y69{bottom:509.640000px;}
.y46{bottom:512.628000px;}
.yb1{bottom:518.232000px;}
.y56{bottom:521.595000px;}
.y13{bottom:523.558500px;}
.yd9{bottom:530.188500px;}
.y82{bottom:536.166000px;}
.y30{bottom:539.154000px;}
.y95{bottom:541.770000px;}
.y68{bottom:542.143500px;}
.y45{bottom:545.131500px;}
.yc0{bottom:550.735500px;}
.y55{bottom:554.098500px;}
.y12{bottom:556.062000px;}
.yb0{bottom:559.702500px;}
.y81{bottom:568.668000px;}
.y2f{bottom:571.657500px;}
.y94{bottom:574.272000px;}
.y67{bottom:574.645500px;}
.y44{bottom:577.635000px;}
.ybb{bottom:583.239000px;}
.y54{bottom:586.600500px;}
.yb4{bottom:592.204500px;}
.y11{bottom:597.531000px;}
.y80{bottom:601.171500px;}
.yd8{bottom:604.161000px;}
.y2e{bottom:607.149000px;}
.yc6{bottom:610.138500px;}
.y93{bottom:615.742500px;}
.y43{bottom:619.104000px;}
.yba{bottom:624.708000px;}
.y7f{bottom:633.675000px;}
.yd7{bottom:636.663000px;}
.y10{bottom:639.001500px;}
.y66{bottom:639.652500px;}
.ye6{bottom:642.640500px;}
.y92{bottom:648.244500px;}
.y2d{bottom:651.607500px;}
.ybf{bottom:657.211500px;}
.y7e{bottom:666.178500px;}
.yd6{bottom:669.166500px;}
.yf{bottom:670.174500px;}
.yc4{bottom:675.144000px;}
.y65{bottom:681.121500px;}
.y42{bottom:684.111000px;}
.y91{bottom:689.715000px;}
.y2c{bottom:693.076500px;}
.yaf{bottom:698.680500px;}
.ye{bottom:702.190500px;}
.y7d{bottom:707.647500px;}
.yd5{bottom:710.635500px;}
.y64{bottom:713.625000px;}
.y41{bottom:716.613000px;}
.y2b{bottom:725.580000px;}
.y90{bottom:731.184000px;}
.yd{bottom:734.404500px;}
.y7c{bottom:740.151000px;}
.yd4{bottom:743.139000px;}
.y40{bottom:749.116500px;}
.y63{bottom:755.094000px;}
.y2a{bottom:758.083500px;}
.yc{bottom:762.151500px;}
.yae{bottom:763.687500px;}
.y7b{bottom:772.653000px;}
.yd3{bottom:775.642500px;}
.ye5{bottom:779.163000px;}
.y3f{bottom:781.620000px;}
.y62{bottom:787.597500px;}
.y29{bottom:790.587000px;}
.yb{bottom:797.665500px;}
.y7a{bottom:805.156500px;}
.yd2{bottom:808.146000px;}
.ya4{bottom:814.123500px;}
.y61{bottom:820.101000px;}
.y28{bottom:823.089000px;}
.ya{bottom:833.178000px;}
.y79{bottom:837.660000px;}
.ya3{bottom:846.625500px;}
.yd1{bottom:849.615000px;}
.y60{bottom:852.603000px;}
.y27{bottom:855.592500px;}
.y9{bottom:860.746500px;}
.y78{bottom:870.163500px;}
.y8f{bottom:879.129000px;}
.yd0{bottom:882.118500px;}
.y5f{bottom:885.106500px;}
.y26{bottom:888.096000px;}
.y8{bottom:896.260500px;}
.y77{bottom:911.632500px;}
.ycf{bottom:917.610000px;}
.y25{bottom:920.598000px;}
.y5e{bottom:926.577000px;}
.ya2{bottom:929.565000px;}
.y7{bottom:931.755000px;}
.y76{bottom:944.136000px;}
.y24{bottom:953.101500px;}
.y5d{bottom:959.079000px;}
.y53{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.y23{bottom:985.605000px;}
.y5c{bottom:991.582500px;}
.y52{bottom:994.572000px;}
.y5{bottom:1010.262000px;}
.y22{bottom:1018.108500px;}
.y5b{bottom:1024.086000px;}
.y3e{bottom:1027.074000px;}
.y4{bottom:1059.577500px;}
.y3{bottom:1094.526000px;}
.y2{bottom:1108.722000px;}
.y1{bottom:1122.919500px;}
.h2{height:35.865495px;}
.h7{height:37.658745px;}
.h1{height:43.373339px;}
.h5{height:50.498638px;}
.h3{height:60.598349px;}
.h4{height:64.916573px;}
.h6{height:121.700573px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:104.254500px;}
.x4{left:106.419000px;}
.x11{left:128.500500px;}
.x10{left:151.131000px;}
.x14{left:156.910500px;}
.x12{left:158.847000px;}
.x13{left:160.299000px;}
.xd{left:357.177000px;}
.x5{left:419.835000px;}
.x8{left:515.344500px;}
.x9{left:536.971500px;}
.x3{left:567.934500px;}
.xa{left:620.896500px;}
.x7{left:623.173500px;}
.x6{left:630.651000px;}
.xb{left:641.823000px;}
.x2{left:648.775500px;}
.xc{left:656.008500px;}
.x1{left:692.794500px;}
.xe{left:794.127000px;}
.x15{left:798.846000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:50.474667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.191283pt;}
.ws5{word-spacing:-76.513067pt;}
.ws77{word-spacing:-63.952189pt;}
.ws16{word-spacing:-63.760907pt;}
.ws63{word-spacing:-49.414703pt;}
.ws4b{word-spacing:-49.350942pt;}
.ws3a{word-spacing:-49.287181pt;}
.ws79{word-spacing:-49.032137pt;}
.ws34{word-spacing:-48.649572pt;}
.ws6f{word-spacing:-48.011963pt;}
.ws27{word-spacing:-47.884441pt;}
.ws4{word-spacing:-47.514614pt;}
.ws3{word-spacing:-47.285075pt;}
.ws53{word-spacing:-47.246832pt;}
.ws2b{word-spacing:-47.055549pt;}
.ws20{word-spacing:-46.991788pt;}
.ws69{word-spacing:-46.928027pt;}
.ws4f{word-spacing:-46.864266pt;}
.ws37{word-spacing:-46.290418pt;}
.ws26{word-spacing:-46.226657pt;}
.ws3f{word-spacing:-46.162896pt;}
.ws6d{word-spacing:-45.525287pt;}
.ws65{word-spacing:-45.334005pt;}
.ws6a{word-spacing:-45.270244pt;}
.ws5c{word-spacing:-45.206483pt;}
.ws22{word-spacing:-45.142722pt;}
.ws39{word-spacing:-45.078961pt;}
.ws45{word-spacing:-44.951439pt;}
.ws62{word-spacing:-44.887678pt;}
.ws7e{word-spacing:-44.823917pt;}
.wsb{word-spacing:-44.760156pt;}
.ws35{word-spacing:-44.696396pt;}
.ws73{word-spacing:-44.568874pt;}
.ws38{word-spacing:-44.505113pt;}
.ws5f{word-spacing:-44.441352pt;}
.ws64{word-spacing:-44.377591pt;}
.ws47{word-spacing:-44.250069pt;}
.ws10{word-spacing:-44.186308pt;}
.ws51{word-spacing:-44.122547pt;}
.ws72{word-spacing:-43.995026pt;}
.ws7d{word-spacing:-43.931265pt;}
.ws2e{word-spacing:-43.803743pt;}
.ws6e{word-spacing:-43.676221pt;}
.ws70{word-spacing:-43.612460pt;}
.ws58{word-spacing:-43.548699pt;}
.ws2a{word-spacing:-43.484938pt;}
.ws13{word-spacing:-43.421177pt;}
.ws19{word-spacing:-43.357417pt;}
.ws7{word-spacing:-43.293656pt;}
.ws25{word-spacing:-43.229895pt;}
.wsf{word-spacing:-43.166134pt;}
.ws18{word-spacing:-43.102373pt;}
.ws11{word-spacing:-43.038612pt;}
.ws6{word-spacing:-42.974851pt;}
.wsd{word-spacing:-42.972178pt;}
.ws15{word-spacing:-42.971599pt;}
.wsc{word-spacing:-42.911090pt;}
.ws31{word-spacing:-42.847329pt;}
.ws8{word-spacing:-42.783568pt;}
.ws75{word-spacing:-42.758735pt;}
.ws76{word-spacing:-42.744775pt;}
.ws3b{word-spacing:-42.719807pt;}
.wsa{word-spacing:-42.656047pt;}
.ws14{word-spacing:-42.592286pt;}
.ws1a{word-spacing:-42.528525pt;}
.ws3c{word-spacing:-42.464764pt;}
.ws61{word-spacing:-42.401003pt;}
.ws21{word-spacing:-42.273481pt;}
.ws4c{word-spacing:-42.209720pt;}
.ws2f{word-spacing:-42.145959pt;}
.ws49{word-spacing:-42.018437pt;}
.ws40{word-spacing:-41.827155pt;}
.ws7a{word-spacing:-41.699633pt;}
.ws24{word-spacing:-41.635872pt;}
.ws52{word-spacing:-41.572111pt;}
.ws74{word-spacing:-41.508350pt;}
.ws4a{word-spacing:-41.444589pt;}
.ws78{word-spacing:-41.380828pt;}
.ws68{word-spacing:-41.317068pt;}
.ws29{word-spacing:-41.253307pt;}
.ws48{word-spacing:-41.125785pt;}
.ws67{word-spacing:-40.998263pt;}
.ws1b{word-spacing:-40.870741pt;}
.ws4d{word-spacing:-40.806980pt;}
.ws3e{word-spacing:-40.743219pt;}
.ws5e{word-spacing:-40.488176pt;}
.ws5a{word-spacing:-40.360654pt;}
.ws1c{word-spacing:-40.169371pt;}
.ws4e{word-spacing:-39.978088pt;}
.ws32{word-spacing:-39.914328pt;}
.ws2c{word-spacing:-39.850567pt;}
.ws1d{word-spacing:-39.786806pt;}
.ws54{word-spacing:-39.659284pt;}
.ws7b{word-spacing:-39.468001pt;}
.ws44{word-spacing:-39.404240pt;}
.ws6b{word-spacing:-39.085436pt;}
.ws55{word-spacing:-38.957914pt;}
.ws9{word-spacing:-38.830392pt;}
.ws3d{word-spacing:-38.766631pt;}
.ws46{word-spacing:-38.702870pt;}
.ws7c{word-spacing:-38.575349pt;}
.ws56{word-spacing:-38.447827pt;}
.ws71{word-spacing:-38.384066pt;}
.ws59{word-spacing:-38.256544pt;}
.ws28{word-spacing:-38.192783pt;}
.ws43{word-spacing:-38.065261pt;}
.ws33{word-spacing:-37.937739pt;}
.ws5d{word-spacing:-37.682696pt;}
.ws5b{word-spacing:-37.555174pt;}
.ws42{word-spacing:-37.427652pt;}
.ws60{word-spacing:-37.363891pt;}
.ws1e{word-spacing:-37.300130pt;}
.ws36{word-spacing:-37.236369pt;}
.ws12{word-spacing:-37.172609pt;}
.ws50{word-spacing:-36.917565pt;}
.ws57{word-spacing:-36.343717pt;}
.ws41{word-spacing:-35.642347pt;}
.ws2d{word-spacing:-35.132260pt;}
.ws17{word-spacing:-34.622172pt;}
.ws6c{word-spacing:-34.303368pt;}
.ws66{word-spacing:-33.920802pt;}
.ws23{word-spacing:-33.538237pt;}
.ws30{word-spacing:-33.346954pt;}
.ws2{word-spacing:-27.459686pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.wse{word-spacing:0.000000pt;}
.ws1f{word-spacing:333.425474pt;}
._6{margin-left:-6.333584pt;}
._5{margin-left:-4.939343pt;}
._1{margin-left:-3.783146pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.275218pt;}
._9{width:1.028677pt;}
._4{width:2.414412pt;}
._b{width:3.953175pt;}
._a{width:5.619234pt;}
._e{width:16.696855pt;}
._2{width:20.063424pt;}
._8{width:21.763714pt;}
._c{width:23.060194pt;}
._7{width:24.271651pt;}
._d{width:25.232314pt;}
.fs0{font-size:42.507253pt;}
.fs3{font-size:44.632587pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:38.689333pt;}
.y20{bottom:51.309333pt;}
.y1f{bottom:63.928000pt;}
.yc3{bottom:95.022667pt;}
.y3d{bottom:95.686667pt;}
.y8e{bottom:98.010667pt;}
.y5a{bottom:101.000000pt;}
.ya1{bottom:102.992000pt;}
.y74{bottom:105.981333pt;}
.yce{bottom:108.637333pt;}
.yb9{bottom:110.962667pt;}
.yad{bottom:118.932000pt;}
.ye4{bottom:121.589333pt;}
.y51{bottom:121.921333pt;}
.y3c{bottom:124.578667pt;}
.y8d{bottom:126.902667pt;}
.y59{bottom:129.892000pt;}
.ya0{bottom:131.884000pt;}
.y73{bottom:134.873333pt;}
.y1e{bottom:139.606667pt;}
.yb8{bottom:139.854667pt;}
.ycd{bottom:145.500000pt;}
.yac{bottom:147.824000pt;}
.y3b{bottom:153.469333pt;}
.y8c{bottom:155.794667pt;}
.ye3{bottom:158.450667pt;}
.y50{bottom:158.782667pt;}
.y9f{bottom:160.776000pt;}
.ybe{bottom:168.745333pt;}
.y72{bottom:171.734667pt;}
.ycc{bottom:174.392000pt;}
.y1d{bottom:176.469333pt;}
.yb7{bottom:176.716000pt;}
.y3a{bottom:182.361333pt;}
.y8b{bottom:184.686667pt;}
.ye2{bottom:187.342667pt;}
.y4f{bottom:187.674667pt;}
.y9e{bottom:189.668000pt;}
.yc5{bottom:197.637333pt;}
.y71{bottom:200.626667pt;}
.ycb{bottom:203.282667pt;}
.y1c{bottom:205.360000pt;}
.yb6{bottom:205.608000pt;}
.y39{bottom:211.253333pt;}
.y8a{bottom:213.577333pt;}
.ye1{bottom:216.234667pt;}
.y4e{bottom:216.566667pt;}
.y9d{bottom:226.529333pt;}
.y70{bottom:232.174667pt;}
.y1b{bottom:234.252000pt;}
.yb5{bottom:234.498667pt;}
.y38{bottom:240.145333pt;}
.y89{bottom:242.469333pt;}
.ye0{bottom:245.126667pt;}
.y4d{bottom:245.458667pt;}
.yab{bottom:250.440000pt;}
.y75{bottom:253.428000pt;}
.y9c{bottom:255.421333pt;}
.y6f{bottom:261.066667pt;}
.y1a{bottom:263.144000pt;}
.yc2{bottom:263.390667pt;}
.y88{bottom:271.361333pt;}
.y4c{bottom:274.349333pt;}
.y37{bottom:277.006667pt;}
.yaa{bottom:279.330667pt;}
.ydf{bottom:281.988000pt;}
.y58{bottom:282.320000pt;}
.y9b{bottom:284.312000pt;}
.y19{bottom:292.036000pt;}
.yc1{bottom:292.282667pt;}
.y6e{bottom:292.614667pt;}
.yca{bottom:297.928000pt;}
.yb3{bottom:300.253333pt;}
.y36{bottom:305.898667pt;}
.y87{bottom:308.222667pt;}
.yde{bottom:310.880000pt;}
.y4b{bottom:311.212000pt;}
.ya9{bottom:316.193333pt;}
.y18{bottom:320.926667pt;}
.y9a{bottom:321.174667pt;}
.y6d{bottom:321.506667pt;}
.yc9{bottom:326.820000pt;}
.ybd{bottom:329.144000pt;}
.y35{bottom:334.789333pt;}
.y86{bottom:337.114667pt;}
.ydd{bottom:339.770667pt;}
.y4a{bottom:340.102667pt;}
.ya8{bottom:345.084000pt;}
.y17{bottom:349.818667pt;}
.yc8{bottom:355.712000pt;}
.y99{bottom:358.036000pt;}
.y6c{bottom:358.368000pt;}
.y34{bottom:363.681333pt;}
.y85{bottom:366.006667pt;}
.y49{bottom:368.994667pt;}
.ya7{bottom:373.976000pt;}
.ydc{bottom:376.633333pt;}
.y16{bottom:378.710667pt;}
.yc7{bottom:384.602667pt;}
.ybc{bottom:386.928000pt;}
.y6b{bottom:387.260000pt;}
.y33{bottom:392.573333pt;}
.y98{bottom:394.897333pt;}
.y48{bottom:397.886667pt;}
.y84{bottom:402.868000pt;}
.ydb{bottom:405.524000pt;}
.y15{bottom:407.602667pt;}
.ya6{bottom:410.837333pt;}
.y6a{bottom:416.152000pt;}
.y32{bottom:421.465333pt;}
.y97{bottom:423.789333pt;}
.y47{bottom:426.778667pt;}
.yb2{bottom:431.760000pt;}
.y57{bottom:434.748000pt;}
.y14{bottom:436.493333pt;}
.y83{bottom:439.729333pt;}
.yda{bottom:442.386667pt;}
.ya5{bottom:447.700000pt;}
.y31{bottom:450.356000pt;}
.y96{bottom:452.681333pt;}
.y69{bottom:453.013333pt;}
.y46{bottom:455.669333pt;}
.yb1{bottom:460.650667pt;}
.y56{bottom:463.640000pt;}
.y13{bottom:465.385333pt;}
.yd9{bottom:471.278667pt;}
.y82{bottom:476.592000pt;}
.y30{bottom:479.248000pt;}
.y95{bottom:481.573333pt;}
.y68{bottom:481.905333pt;}
.y45{bottom:484.561333pt;}
.yc0{bottom:489.542667pt;}
.y55{bottom:492.532000pt;}
.y12{bottom:494.277333pt;}
.yb0{bottom:497.513333pt;}
.y81{bottom:505.482667pt;}
.y2f{bottom:508.140000pt;}
.y94{bottom:510.464000pt;}
.y67{bottom:510.796000pt;}
.y44{bottom:513.453333pt;}
.ybb{bottom:518.434667pt;}
.y54{bottom:521.422667pt;}
.yb4{bottom:526.404000pt;}
.y11{bottom:531.138667pt;}
.y80{bottom:534.374667pt;}
.yd8{bottom:537.032000pt;}
.y2e{bottom:539.688000pt;}
.yc6{bottom:542.345333pt;}
.y93{bottom:547.326667pt;}
.y43{bottom:550.314667pt;}
.yba{bottom:555.296000pt;}
.y7f{bottom:563.266667pt;}
.yd7{bottom:565.922667pt;}
.y10{bottom:568.001333pt;}
.y66{bottom:568.580000pt;}
.ye6{bottom:571.236000pt;}
.y92{bottom:576.217333pt;}
.y2d{bottom:579.206667pt;}
.ybf{bottom:584.188000pt;}
.y7e{bottom:592.158667pt;}
.yd6{bottom:594.814667pt;}
.yf{bottom:595.710667pt;}
.yc4{bottom:600.128000pt;}
.y65{bottom:605.441333pt;}
.y42{bottom:608.098667pt;}
.y91{bottom:613.080000pt;}
.y2c{bottom:616.068000pt;}
.yaf{bottom:621.049333pt;}
.ye{bottom:624.169333pt;}
.y7d{bottom:629.020000pt;}
.yd5{bottom:631.676000pt;}
.y64{bottom:634.333333pt;}
.y41{bottom:636.989333pt;}
.y2b{bottom:644.960000pt;}
.y90{bottom:649.941333pt;}
.yd{bottom:652.804000pt;}
.y7c{bottom:657.912000pt;}
.yd4{bottom:660.568000pt;}
.y40{bottom:665.881333pt;}
.y63{bottom:671.194667pt;}
.y2a{bottom:673.852000pt;}
.yc{bottom:677.468000pt;}
.yae{bottom:678.833333pt;}
.y7b{bottom:686.802667pt;}
.yd3{bottom:689.460000pt;}
.ye5{bottom:692.589333pt;}
.y3f{bottom:694.773333pt;}
.y62{bottom:700.086667pt;}
.y29{bottom:702.744000pt;}
.yb{bottom:709.036000pt;}
.y7a{bottom:715.694667pt;}
.yd2{bottom:718.352000pt;}
.ya4{bottom:723.665333pt;}
.y61{bottom:728.978667pt;}
.y28{bottom:731.634667pt;}
.ya{bottom:740.602667pt;}
.y79{bottom:744.586667pt;}
.ya3{bottom:752.556000pt;}
.yd1{bottom:755.213333pt;}
.y60{bottom:757.869333pt;}
.y27{bottom:760.526667pt;}
.y9{bottom:765.108000pt;}
.y78{bottom:773.478667pt;}
.y8f{bottom:781.448000pt;}
.yd0{bottom:784.105333pt;}
.y5f{bottom:786.761333pt;}
.y26{bottom:789.418667pt;}
.y8{bottom:796.676000pt;}
.y77{bottom:810.340000pt;}
.ycf{bottom:815.653333pt;}
.y25{bottom:818.309333pt;}
.y5e{bottom:823.624000pt;}
.ya2{bottom:826.280000pt;}
.y7{bottom:828.226667pt;}
.y76{bottom:839.232000pt;}
.y24{bottom:847.201333pt;}
.y5d{bottom:852.514667pt;}
.y53{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.y23{bottom:876.093333pt;}
.y5c{bottom:881.406667pt;}
.y52{bottom:884.064000pt;}
.y5{bottom:898.010667pt;}
.y22{bottom:904.985333pt;}
.y5b{bottom:910.298667pt;}
.y3e{bottom:912.954667pt;}
.y4{bottom:941.846667pt;}
.y3{bottom:972.912000pt;}
.y2{bottom:985.530667pt;}
.y1{bottom:998.150667pt;}
.h2{height:31.880440pt;}
.h7{height:33.474440pt;}
.h1{height:38.554079pt;}
.h5{height:44.887678pt;}
.h3{height:53.865199pt;}
.h4{height:57.703621pt;}
.h6{height:108.178287pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:92.670667pt;}
.x4{left:94.594667pt;}
.x11{left:114.222667pt;}
.x10{left:134.338667pt;}
.x14{left:139.476000pt;}
.x12{left:141.197333pt;}
.x13{left:142.488000pt;}
.xd{left:317.490667pt;}
.x5{left:373.186667pt;}
.x8{left:458.084000pt;}
.x9{left:477.308000pt;}
.x3{left:504.830667pt;}
.xa{left:551.908000pt;}
.x7{left:553.932000pt;}
.x6{left:560.578667pt;}
.xb{left:570.509333pt;}
.x2{left:576.689333pt;}
.xc{left:583.118667pt;}
.x1{left:615.817333pt;}
.xe{left:705.890667pt;}
.x15{left:710.085333pt;}
}




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