
    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_ec77faaa059a0b30c2d67f33.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7048decb9068243419bd5233.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_3d51d157ba0748c1f002a797.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_c8d647deac816e65aa29fa24.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_93e921c122f831c4252d1d0b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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;}
.m1{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);}
.m14{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);}
.mc{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);}
.m19{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);}
.m5{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);}
.me{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);}
.m10{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);}
.mf{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);}
.m1a{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);}
.m17{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);}
.m1c{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);}
.md{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);}
.m1d{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);}
.m15{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);}
.ma{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);}
.m23{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);}
.m22{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);}
.m21{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);}
.m16{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);}
.m26{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);}
.m13{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);}
.m27{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);}
.m3{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);}
.m28{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);}
.m1e{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);}
.m4{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);}
.m12{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);}
.m11{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);}
.m1b{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);}
.m7{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);}
.m6{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);}
.m25{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);}
.m9{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);}
.mb{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);}
.m18{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);}
.m24{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);}
.m2{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);}
.m8{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;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:23.383040px;}
.ls1{letter-spacing:23.897326px;}
.ls2{letter-spacing:27.350258px;}
.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;}
}
.ws6{word-spacing:-71.731020px;}
.ws66{word-spacing:-54.443844px;}
.ws39{word-spacing:-54.013458px;}
.ws4b{word-spacing:-53.941727px;}
.ws3{word-spacing:-53.798250px;}
.ws2b{word-spacing:-53.439610px;}
.ws4{word-spacing:-53.109632px;}
.ws5b{word-spacing:-52.794031px;}
.ws3a{word-spacing:-52.722300px;}
.wse{word-spacing:-52.650569px;}
.ws62{word-spacing:-52.578838px;}
.ws24{word-spacing:-52.076721px;}
.ws13{word-spacing:-51.718065px;}
.ws7{word-spacing:-51.502872px;}
.ws65{word-spacing:-51.431141px;}
.wsd{word-spacing:-51.215948px;}
.ws1e{word-spacing:-51.144217px;}
.ws22{word-spacing:-51.072486px;}
.ws4a{word-spacing:-51.000755px;}
.ws30{word-spacing:-50.857293px;}
.ws64{word-spacing:-50.785562px;}
.ws49{word-spacing:-50.642100px;}
.ws2d{word-spacing:-50.498638px;}
.ws55{word-spacing:-50.283445px;}
.ws36{word-spacing:-50.211714px;}
.ws68{word-spacing:-50.139983px;}
.ws5a{word-spacing:-49.996521px;}
.ws2f{word-spacing:-49.924790px;}
.ws15{word-spacing:-49.279211px;}
.ws21{word-spacing:-49.207480px;}
.ws48{word-spacing:-48.992287px;}
.ws54{word-spacing:-48.920556px;}
.ws50{word-spacing:-48.848825px;}
.ws32{word-spacing:-48.777094px;}
.ws16{word-spacing:-48.705363px;}
.wsf{word-spacing:-48.633632px;}
.wsb{word-spacing:-48.561901px;}
.ws25{word-spacing:-48.490170px;}
.ws9{word-spacing:-48.418439px;}
.ws6d{word-spacing:-48.346869px;}
.ws5{word-spacing:-48.346707px;}
.ws17{word-spacing:-48.343048px;}
.ws14{word-spacing:-48.274976px;}
.ws1f{word-spacing:-48.203245px;}
.ws1c{word-spacing:-48.131514px;}
.ws19{word-spacing:-48.059783px;}
.wsa{word-spacing:-47.988052px;}
.wsc{word-spacing:-47.916321px;}
.ws18{word-spacing:-47.844590px;}
.ws20{word-spacing:-47.820660px;}
.ws3e{word-spacing:-47.772859px;}
.ws42{word-spacing:-47.701128px;}
.ws35{word-spacing:-47.629397px;}
.ws60{word-spacing:-47.557666px;}
.ws28{word-spacing:-47.485935px;}
.ws1b{word-spacing:-47.342473px;}
.ws10{word-spacing:-47.270742px;}
.ws6a{word-spacing:-47.199011px;}
.ws37{word-spacing:-47.127280px;}
.ws8{word-spacing:-46.983818px;}
.ws5d{word-spacing:-46.912087px;}
.ws45{word-spacing:-46.840356px;}
.ws43{word-spacing:-46.768625px;}
.ws2e{word-spacing:-46.625163px;}
.ws3d{word-spacing:-46.553432px;}
.ws56{word-spacing:-46.481701px;}
.ws6c{word-spacing:-46.409970px;}
.ws67{word-spacing:-46.338239px;}
.ws6e{word-spacing:-46.294116px;}
.ws69{word-spacing:-46.266508px;}
.ws4e{word-spacing:-46.194777px;}
.ws52{word-spacing:-46.123046px;}
.ws5e{word-spacing:-46.051315px;}
.ws34{word-spacing:-45.836122px;}
.ws33{word-spacing:-45.764391px;}
.ws1a{word-spacing:-45.549198px;}
.ws31{word-spacing:-45.477467px;}
.ws5c{word-spacing:-45.405736px;}
.ws38{word-spacing:-45.118812px;}
.ws57{word-spacing:-44.975350px;}
.ws11{word-spacing:-44.831887px;}
.ws4f{word-spacing:-44.760156px;}
.ws29{word-spacing:-44.688425px;}
.ws53{word-spacing:-44.616694px;}
.ws27{word-spacing:-44.473232px;}
.ws40{word-spacing:-44.401501px;}
.ws58{word-spacing:-44.329770px;}
.ws4d{word-spacing:-44.258039px;}
.ws51{word-spacing:-44.042846px;}
.ws63{word-spacing:-43.827653px;}
.ws1d{word-spacing:-43.684191px;}
.ws3c{word-spacing:-43.540729px;}
.ws41{word-spacing:-43.325536px;}
.ws61{word-spacing:-43.182074px;}
.ws26{word-spacing:-42.966881px;}
.ws3b{word-spacing:-42.321302px;}
.ws23{word-spacing:-42.106109px;}
.ws2a{word-spacing:-42.034378px;}
.ws59{word-spacing:-41.747454px;}
.ws47{word-spacing:-41.675723px;}
.ws5f{word-spacing:-41.603992px;}
.ws2c{word-spacing:-41.388799px;}
.ws3f{word-spacing:-41.317068px;}
.ws44{word-spacing:-40.743219px;}
.ws4c{word-spacing:-40.241102px;}
.ws6b{word-spacing:-39.595523px;}
.ws46{word-spacing:-38.017441px;}
.ws2{word-spacing:-30.892146px;}
.ws1{word-spacing:-29.457527px;}
.ws0{word-spacing:-29.455138px;}
.ws12{word-spacing:0.000000px;}
._d{margin-left:-7.818681px;}
._7{margin-left:-6.613599px;}
._5{margin-left:-5.422864px;}
._1{margin-left:-4.256039px;}
._0{margin-left:-2.630136px;}
._3{margin-left:-1.434620px;}
._9{width:1.348544px;}
._6{width:2.668393px;}
._a{width:3.921294px;}
._16{width:5.206173px;}
._c{width:6.369712px;}
._15{width:9.390907px;}
._11{width:18.817435px;}
._2{width:22.571352px;}
._8{width:23.728622px;}
._b{width:25.239734px;}
._e{width:26.946952px;}
._4{width:28.061167px;}
._14{width:29.696061px;}
._13{width:31.179082px;}
._12{width:35.862963px;}
._10{width:240.691046px;}
._f{width:373.479510px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,255);}
.fs0{font-size:47.820660px;}
.fs2{font-size:71.731020px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y22{bottom:43.525500px;}
.y21{bottom:57.723000px;}
.y20{bottom:71.919000px;}
.ycd{bottom:106.900500px;}
.y1f{bottom:113.565000px;}
.y50{bottom:113.625000px;}
.y6a{bottom:115.119000px;}
.y84{bottom:119.181000px;}
.yf9{bottom:119.229000px;}
.y109{bottom:122.217000px;}
.yb5{bottom:125.206500px;}
.y121{bottom:127.821000px;}
.y3d{bottom:131.184000px;}
.yea{bottom:133.798500px;}
.yd9{bottom:137.161500px;}
.y9e{bottom:138.655500px;}
.y4f{bottom:146.128500px;}
.y69{bottom:147.622500px;}
.ycc{bottom:148.369500px;}
.y83{bottom:151.684500px;}
.y108{bottom:154.720500px;}
.y1e{bottom:155.034000px;}
.y120{bottom:160.324500px;}
.yf8{bottom:160.698000px;}
.y3c{bottom:163.687500px;}
.ye9{bottom:166.302000px;}
.yb4{bottom:166.675500px;}
.yd8{bottom:169.665000px;}
.y9d{bottom:171.159000px;}
.y4e{bottom:178.630500px;}
.y68{bottom:180.126000px;}
.ycb{bottom:180.873000px;}
.y82{bottom:184.188000px;}
.y107{bottom:187.224000px;}
.y1d{bottom:187.537500px;}
.yf7{bottom:193.201500px;}
.y3b{bottom:196.191000px;}
.ye8{bottom:198.805500px;}
.yb3{bottom:199.179000px;}
.y11f{bottom:201.793500px;}
.yd7{bottom:202.168500px;}
.y9c{bottom:203.662500px;}
.y4d{bottom:211.134000px;}
.y67{bottom:212.628000px;}
.yca{bottom:213.376500px;}
.y1c{bottom:220.041000px;}
.y106{bottom:228.693000px;}
.ye7{bottom:231.309000px;}
.y11e{bottom:234.297000px;}
.yd6{bottom:234.670500px;}
.y3a{bottom:237.660000px;}
.y9b{bottom:239.154000px;}
.yb2{bottom:240.648000px;}
.y66{bottom:245.131500px;}
.y1b{bottom:252.543000px;}
.y4c{bottom:252.603000px;}
.yc9{bottom:254.845500px;}
.y81{bottom:257.866500px;}
.y105{bottom:261.196500px;}
.y11d{bottom:266.800500px;}
.yd5{bottom:267.174000px;}
.y39{bottom:270.163500px;}
.y9a{bottom:271.657500px;}
.ye6{bottom:272.778000px;}
.yf6{bottom:276.141000px;}
.y65{bottom:277.635000px;}
.yb1{bottom:282.118500px;}
.y1a{bottom:285.046500px;}
.y4b{bottom:285.106500px;}
.y80{bottom:290.370000px;}
.y104{bottom:293.700000px;}
.yc8{bottom:296.314500px;}
.yff{bottom:299.677500px;}
.y38{bottom:302.665500px;}
.y99{bottom:304.161000px;}
.y11c{bottom:308.269500px;}
.yd4{bottom:308.643000px;}
.y64{bottom:310.138500px;}
.ye5{bottom:314.247000px;}
.yb0{bottom:314.620500px;}
.y19{bottom:317.550000px;}
.y4a{bottom:317.610000px;}
.y7f{bottom:322.873500px;}
.y103{bottom:329.191500px;}
.yfe{bottom:332.181000px;}
.y37{bottom:335.169000px;}
.y98{bottom:336.663000px;}
.yc7{bottom:337.785000px;}
.y11b{bottom:340.773000px;}
.yd3{bottom:341.146500px;}
.yaf{bottom:347.124000px;}
.y18{bottom:350.053500px;}
.y49{bottom:350.113500px;}
.y63{bottom:351.607500px;}
.y7e{bottom:355.375500px;}
.ye4{bottom:355.717500px;}
.yfd{bottom:364.683000px;}
.y97{bottom:369.166500px;}
.yc6{bottom:370.287000px;}
.y11a{bottom:373.276500px;}
.yd2{bottom:373.650000px;}
.y36{bottom:376.638000px;}
.y17{bottom:382.555500px;}
.y48{bottom:382.615500px;}
.y62{bottom:384.111000px;}
.y7d{bottom:387.879000px;}
.ye3{bottom:388.219500px;}
.yae{bottom:388.593000px;}
.yfc{bottom:397.186500px;}
.yc5{bottom:402.790500px;}
.y96{bottom:404.658000px;}
.yd1{bottom:406.153500px;}
.y35{bottom:409.141500px;}
.y119{bottom:414.745500px;}
.y16{bottom:415.059000px;}
.y47{bottom:415.119000px;}
.y61{bottom:416.613000px;}
.y7c{bottom:420.382500px;}
.ye2{bottom:420.723000px;}
.yad{bottom:421.096500px;}
.yfb{bottom:429.690000px;}
.y95{bottom:437.161500px;}
.yf5{bottom:438.655500px;}
.y34{bottom:441.645000px;}
.yc4{bottom:444.259500px;}
.y118{bottom:447.249000px;}
.y15{bottom:447.562500px;}
.y46{bottom:447.622500px;}
.y60{bottom:449.116500px;}
.y7b{bottom:452.886000px;}
.ye1{bottom:453.226500px;}
.yac{bottom:453.600000px;}
.yfa{bottom:462.192000px;}
.y94{bottom:469.665000px;}
.yf4{bottom:471.159000px;}
.y33{bottom:474.148500px;}
.yc3{bottom:476.763000px;}
.y117{bottom:479.752500px;}
.y14{bottom:480.064500px;}
.y45{bottom:480.126000px;}
.y5f{bottom:481.620000px;}
.y7a{bottom:485.388000px;}
.ye0{bottom:485.730000px;}
.yab{bottom:486.103500px;}
.yf3{bottom:503.662500px;}
.y93{bottom:505.156500px;}
.y32{bottom:506.650500px;}
.y13{bottom:512.568000px;}
.y44{bottom:512.628000px;}
.y5e{bottom:514.123500px;}
.y79{bottom:517.891500px;}
.yc2{bottom:518.232000px;}
.yaa{bottom:518.605500px;}
.y116{bottom:521.221500px;}
.yf2{bottom:536.166000px;}
.y92{bottom:537.660000px;}
.y31{bottom:539.154000px;}
.yd0{bottom:545.131500px;}
.y78{bottom:550.395000px;}
.yc1{bottom:550.735500px;}
.ya9{bottom:551.109000px;}
.y115{bottom:553.725000px;}
.y12{bottom:554.038500px;}
.y43{bottom:554.098500px;}
.y5d{bottom:555.592500px;}
.yf1{bottom:568.668000px;}
.y91{bottom:570.163500px;}
.y30{bottom:571.657500px;}
.ycf{bottom:577.635000px;}
.y77{bottom:582.898500px;}
.yc0{bottom:583.239000px;}
.ya8{bottom:583.612500px;}
.y42{bottom:586.600500px;}
.y5c{bottom:588.096000px;}
.y123{bottom:592.204500px;}
.y114{bottom:595.194000px;}
.y11{bottom:595.507500px;}
.yf0{bottom:601.171500px;}
.y90{bottom:605.655000px;}
.y2f{bottom:607.149000px;}
.yce{bottom:610.138500px;}
.y76{bottom:615.400500px;}
.ydf{bottom:615.742500px;}
.ya7{bottom:616.116000px;}
.y41{bottom:619.104000px;}
.y5b{bottom:620.598000px;}
.ybf{bottom:624.708000px;}
.y10{bottom:626.680500px;}
.y113{bottom:627.697500px;}
.y8f{bottom:638.158500px;}
.yef{bottom:642.640500px;}
.y75{bottom:647.904000px;}
.yde{bottom:648.244500px;}
.y2e{bottom:651.607500px;}
.y5a{bottom:653.101500px;}
.ybe{bottom:657.211500px;}
.ya6{bottom:657.585000px;}
.yf{bottom:662.077500px;}
.y112{bottom:669.166500px;}
.yee{bottom:675.144000px;}
.y8e{bottom:679.627500px;}
.y74{bottom:680.407500px;}
.ydd{bottom:680.748000px;}
.y40{bottom:684.111000px;}
.y59{bottom:685.605000px;}
.ybd{bottom:689.715000px;}
.ya5{bottom:690.088500px;}
.y2d{bottom:693.076500px;}
.ye{bottom:694.176000px;}
.y111{bottom:701.670000px;}
.yed{bottom:707.647500px;}
.y8d{bottom:712.131000px;}
.y73{bottom:712.911000px;}
.y3f{bottom:716.613000px;}
.y58{bottom:718.108500px;}
.yd{bottom:721.744500px;}
.ybc{bottom:722.217000px;}
.ya4{bottom:722.592000px;}
.y2c{bottom:725.580000px;}
.y110{bottom:743.139000px;}
.y8c{bottom:744.633000px;}
.y72{bottom:745.413000px;}
.yec{bottom:749.116500px;}
.y57{bottom:750.610500px;}
.ydc{bottom:754.720500px;}
.ya3{bottom:755.094000px;}
.yc{bottom:757.143000px;}
.y2b{bottom:758.083500px;}
.ybb{bottom:763.687500px;}
.y10f{bottom:775.642500px;}
.y71{bottom:777.916500px;}
.yeb{bottom:781.620000px;}
.y56{bottom:784.608000px;}
.y8b{bottom:786.103500px;}
.ydb{bottom:787.224000px;}
.ya2{bottom:787.597500px;}
.yb{bottom:789.241500px;}
.y2a{bottom:790.587000px;}
.yba{bottom:796.191000px;}
.y10e{bottom:808.146000px;}
.y70{bottom:810.420000px;}
.y102{bottom:814.123500px;}
.ya{bottom:816.810000px;}
.y8a{bottom:818.605500px;}
.y55{bottom:820.101000px;}
.y29{bottom:823.089000px;}
.yda{bottom:828.693000px;}
.yb9{bottom:837.660000px;}
.y6f{bottom:842.923500px;}
.y101{bottom:846.625500px;}
.y10d{bottom:849.615000px;}
.y89{bottom:851.109000px;}
.y9{bottom:852.010500px;}
.y28{bottom:855.592500px;}
.ya1{bottom:861.570000px;}
.y54{bottom:864.559500px;}
.yb8{bottom:870.163500px;}
.y100{bottom:879.129000px;}
.y10c{bottom:882.118500px;}
.y88{bottom:883.612500px;}
.y6d{bottom:884.437500px;}
.y8{bottom:887.211000px;}
.y27{bottom:888.096000px;}
.ya0{bottom:894.073500px;}
.y53{bottom:897.061500px;}
.y122{bottom:902.665500px;}
.yb7{bottom:911.632500px;}
.y10b{bottom:914.620500px;}
.y87{bottom:916.116000px;}
.y6e{bottom:916.941000px;}
.y26{bottom:920.598000px;}
.y9f{bottom:926.577000px;}
.y7{bottom:929.565000px;}
.yb6{bottom:944.136000px;}
.y6c{bottom:946.603500px;}
.y86{bottom:948.618000px;}
.y10a{bottom:950.113500px;}
.y25{bottom:953.101500px;}
.y52{bottom:962.068500px;}
.y6{bottom:969.913500px;}
.y6b{bottom:982.465500px;}
.y85{bottom:982.615500px;}
.y24{bottom:985.605000px;}
.y51{bottom:994.572000px;}
.y23{bottom:1018.108500px;}
.y5{bottom:1019.229000px;}
.y3e{bottom:1027.074000px;}
.y4{bottom:1059.577500px;}
.y3{bottom:1094.526000px;}
.y2{bottom:1108.722000px;}
.y1{bottom:1122.919500px;}
.h1{height:35.865495px;}
.h4{height:50.498638px;}
.h5{height:53.798265px;}
.h2{height:60.598349px;}
.h3{height:64.916573px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:104.254500px;}
.x6{left:106.417500px;}
.x4{left:114.013500px;}
.x16{left:128.500500px;}
.x18{left:149.086500px;}
.x17{left:151.131000px;}
.x19{left:159.349500px;}
.x13{left:274.624500px;}
.x5{left:330.228000px;}
.x10{left:357.177000px;}
.x7{left:370.524000px;}
.x14{left:442.950000px;}
.xf{left:511.668000px;}
.xa{left:515.775000px;}
.x8{left:546.493500px;}
.x3{left:567.934500px;}
.x15{left:617.530500px;}
.xb{left:627.334500px;}
.xd{left:638.596500px;}
.x2{left:648.775500px;}
.xc{left:667.288500px;}
.xe{left:669.153000px;}
.x9{left:675.018000px;}
.x1{left:692.794500px;}
.x11{left:794.127000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:20.784925pt;}
.ls1{letter-spacing:21.242067pt;}
.ls2{letter-spacing:24.311340pt;}
.ws6{word-spacing:-63.760907pt;}
.ws66{word-spacing:-48.394528pt;}
.ws39{word-spacing:-48.011963pt;}
.ws4b{word-spacing:-47.948202pt;}
.ws3{word-spacing:-47.820667pt;}
.ws2b{word-spacing:-47.501875pt;}
.ws4{word-spacing:-47.208562pt;}
.ws5b{word-spacing:-46.928027pt;}
.ws3a{word-spacing:-46.864266pt;}
.wse{word-spacing:-46.800505pt;}
.ws62{word-spacing:-46.736745pt;}
.ws24{word-spacing:-46.290418pt;}
.ws13{word-spacing:-45.971614pt;}
.ws7{word-spacing:-45.780331pt;}
.ws65{word-spacing:-45.716570pt;}
.wsd{word-spacing:-45.525287pt;}
.ws1e{word-spacing:-45.461526pt;}
.ws22{word-spacing:-45.397766pt;}
.ws4a{word-spacing:-45.334005pt;}
.ws30{word-spacing:-45.206483pt;}
.ws64{word-spacing:-45.142722pt;}
.ws49{word-spacing:-45.015200pt;}
.ws2d{word-spacing:-44.887678pt;}
.ws55{word-spacing:-44.696396pt;}
.ws36{word-spacing:-44.632635pt;}
.ws68{word-spacing:-44.568874pt;}
.ws5a{word-spacing:-44.441352pt;}
.ws2f{word-spacing:-44.377591pt;}
.ws15{word-spacing:-43.803743pt;}
.ws21{word-spacing:-43.739982pt;}
.ws48{word-spacing:-43.548699pt;}
.ws54{word-spacing:-43.484938pt;}
.ws50{word-spacing:-43.421177pt;}
.ws32{word-spacing:-43.357417pt;}
.ws16{word-spacing:-43.293656pt;}
.wsf{word-spacing:-43.229895pt;}
.wsb{word-spacing:-43.166134pt;}
.ws25{word-spacing:-43.102373pt;}
.ws9{word-spacing:-43.038612pt;}
.ws6d{word-spacing:-42.974995pt;}
.ws5{word-spacing:-42.974851pt;}
.ws17{word-spacing:-42.971599pt;}
.ws14{word-spacing:-42.911090pt;}
.ws1f{word-spacing:-42.847329pt;}
.ws1c{word-spacing:-42.783568pt;}
.ws19{word-spacing:-42.719807pt;}
.wsa{word-spacing:-42.656047pt;}
.wsc{word-spacing:-42.592286pt;}
.ws18{word-spacing:-42.528525pt;}
.ws20{word-spacing:-42.507253pt;}
.ws3e{word-spacing:-42.464764pt;}
.ws42{word-spacing:-42.401003pt;}
.ws35{word-spacing:-42.337242pt;}
.ws60{word-spacing:-42.273481pt;}
.ws28{word-spacing:-42.209720pt;}
.ws1b{word-spacing:-42.082198pt;}
.ws10{word-spacing:-42.018437pt;}
.ws6a{word-spacing:-41.954677pt;}
.ws37{word-spacing:-41.890916pt;}
.ws8{word-spacing:-41.763394pt;}
.ws5d{word-spacing:-41.699633pt;}
.ws45{word-spacing:-41.635872pt;}
.ws43{word-spacing:-41.572111pt;}
.ws2e{word-spacing:-41.444589pt;}
.ws3d{word-spacing:-41.380828pt;}
.ws56{word-spacing:-41.317068pt;}
.ws6c{word-spacing:-41.253307pt;}
.ws67{word-spacing:-41.189546pt;}
.ws6e{word-spacing:-41.150326pt;}
.ws69{word-spacing:-41.125785pt;}
.ws4e{word-spacing:-41.062024pt;}
.ws52{word-spacing:-40.998263pt;}
.ws5e{word-spacing:-40.934502pt;}
.ws34{word-spacing:-40.743219pt;}
.ws33{word-spacing:-40.679458pt;}
.ws1a{word-spacing:-40.488176pt;}
.ws31{word-spacing:-40.424415pt;}
.ws5c{word-spacing:-40.360654pt;}
.ws38{word-spacing:-40.105610pt;}
.ws57{word-spacing:-39.978088pt;}
.ws11{word-spacing:-39.850567pt;}
.ws4f{word-spacing:-39.786806pt;}
.ws29{word-spacing:-39.723045pt;}
.ws53{word-spacing:-39.659284pt;}
.ws27{word-spacing:-39.531762pt;}
.ws40{word-spacing:-39.468001pt;}
.ws58{word-spacing:-39.404240pt;}
.ws4d{word-spacing:-39.340479pt;}
.ws51{word-spacing:-39.149197pt;}
.ws63{word-spacing:-38.957914pt;}
.ws1d{word-spacing:-38.830392pt;}
.ws3c{word-spacing:-38.702870pt;}
.ws41{word-spacing:-38.511588pt;}
.ws61{word-spacing:-38.384066pt;}
.ws26{word-spacing:-38.192783pt;}
.ws3b{word-spacing:-37.618935pt;}
.ws23{word-spacing:-37.427652pt;}
.ws2a{word-spacing:-37.363891pt;}
.ws59{word-spacing:-37.108848pt;}
.ws47{word-spacing:-37.045087pt;}
.ws5f{word-spacing:-36.981326pt;}
.ws2c{word-spacing:-36.790043pt;}
.ws3f{word-spacing:-36.726282pt;}
.ws44{word-spacing:-36.216195pt;}
.ws4c{word-spacing:-35.769869pt;}
.ws6b{word-spacing:-35.196020pt;}
.ws46{word-spacing:-33.793281pt;}
.ws2{word-spacing:-27.459686pt;}
.ws1{word-spacing:-26.184468pt;}
.ws0{word-spacing:-26.182345pt;}
.ws12{word-spacing:0.000000pt;}
._d{margin-left:-6.949939pt;}
._7{margin-left:-5.878755pt;}
._5{margin-left:-4.820323pt;}
._1{margin-left:-3.783146pt;}
._0{margin-left:-2.337899pt;}
._3{margin-left:-1.275218pt;}
._9{width:1.198706pt;}
._6{width:2.371905pt;}
._a{width:3.485595pt;}
._16{width:4.627709pt;}
._c{width:5.661966pt;}
._15{width:8.347473pt;}
._11{width:16.726609pt;}
._2{width:20.063424pt;}
._8{width:21.092109pt;}
._b{width:22.435319pt;}
._e{width:23.952846pt;}
._4{width:24.943260pt;}
._14{width:26.396499pt;}
._13{width:27.714740pt;}
._12{width:31.878189pt;}
._10{width:213.947597pt;}
._f{width:331.981786pt;}
.fs0{font-size:42.507253pt;}
.fs2{font-size:63.760907pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:38.689333pt;}
.y21{bottom:51.309333pt;}
.y20{bottom:63.928000pt;}
.ycd{bottom:95.022667pt;}
.y1f{bottom:100.946667pt;}
.y50{bottom:101.000000pt;}
.y6a{bottom:102.328000pt;}
.y84{bottom:105.938667pt;}
.yf9{bottom:105.981333pt;}
.y109{bottom:108.637333pt;}
.yb5{bottom:111.294667pt;}
.y121{bottom:113.618667pt;}
.y3d{bottom:116.608000pt;}
.yea{bottom:118.932000pt;}
.yd9{bottom:121.921333pt;}
.y9e{bottom:123.249333pt;}
.y4f{bottom:129.892000pt;}
.y69{bottom:131.220000pt;}
.ycc{bottom:131.884000pt;}
.y83{bottom:134.830667pt;}
.y108{bottom:137.529333pt;}
.y1e{bottom:137.808000pt;}
.y120{bottom:142.510667pt;}
.yf8{bottom:142.842667pt;}
.y3c{bottom:145.500000pt;}
.ye9{bottom:147.824000pt;}
.yb4{bottom:148.156000pt;}
.yd8{bottom:150.813333pt;}
.y9d{bottom:152.141333pt;}
.y4e{bottom:158.782667pt;}
.y68{bottom:160.112000pt;}
.ycb{bottom:160.776000pt;}
.y82{bottom:163.722667pt;}
.y107{bottom:166.421333pt;}
.y1d{bottom:166.700000pt;}
.yf7{bottom:171.734667pt;}
.y3b{bottom:174.392000pt;}
.ye8{bottom:176.716000pt;}
.yb3{bottom:177.048000pt;}
.y11f{bottom:179.372000pt;}
.yd7{bottom:179.705333pt;}
.y9c{bottom:181.033333pt;}
.y4d{bottom:187.674667pt;}
.y67{bottom:189.002667pt;}
.yca{bottom:189.668000pt;}
.y1c{bottom:195.592000pt;}
.y106{bottom:203.282667pt;}
.ye7{bottom:205.608000pt;}
.y11e{bottom:208.264000pt;}
.yd6{bottom:208.596000pt;}
.y3a{bottom:211.253333pt;}
.y9b{bottom:212.581333pt;}
.yb2{bottom:213.909333pt;}
.y66{bottom:217.894667pt;}
.y1b{bottom:224.482667pt;}
.y4c{bottom:224.536000pt;}
.yc9{bottom:226.529333pt;}
.y81{bottom:229.214667pt;}
.y105{bottom:232.174667pt;}
.y11d{bottom:237.156000pt;}
.yd5{bottom:237.488000pt;}
.y39{bottom:240.145333pt;}
.y9a{bottom:241.473333pt;}
.ye6{bottom:242.469333pt;}
.yf6{bottom:245.458667pt;}
.y65{bottom:246.786667pt;}
.yb1{bottom:250.772000pt;}
.y1a{bottom:253.374667pt;}
.y4b{bottom:253.428000pt;}
.y80{bottom:258.106667pt;}
.y104{bottom:261.066667pt;}
.yc8{bottom:263.390667pt;}
.yff{bottom:266.380000pt;}
.y38{bottom:269.036000pt;}
.y99{bottom:270.365333pt;}
.y11c{bottom:274.017333pt;}
.yd4{bottom:274.349333pt;}
.y64{bottom:275.678667pt;}
.ye5{bottom:279.330667pt;}
.yb0{bottom:279.662667pt;}
.y19{bottom:282.266667pt;}
.y4a{bottom:282.320000pt;}
.y7f{bottom:286.998667pt;}
.y103{bottom:292.614667pt;}
.yfe{bottom:295.272000pt;}
.y37{bottom:297.928000pt;}
.y98{bottom:299.256000pt;}
.yc7{bottom:300.253333pt;}
.y11b{bottom:302.909333pt;}
.yd3{bottom:303.241333pt;}
.yaf{bottom:308.554667pt;}
.y18{bottom:311.158667pt;}
.y49{bottom:311.212000pt;}
.y63{bottom:312.540000pt;}
.y7e{bottom:315.889333pt;}
.ye4{bottom:316.193333pt;}
.yfd{bottom:324.162667pt;}
.y97{bottom:328.148000pt;}
.yc6{bottom:329.144000pt;}
.y11a{bottom:331.801333pt;}
.yd2{bottom:332.133333pt;}
.y36{bottom:334.789333pt;}
.y17{bottom:340.049333pt;}
.y48{bottom:340.102667pt;}
.y62{bottom:341.432000pt;}
.y7d{bottom:344.781333pt;}
.ye3{bottom:345.084000pt;}
.yae{bottom:345.416000pt;}
.yfc{bottom:353.054667pt;}
.yc5{bottom:358.036000pt;}
.y96{bottom:359.696000pt;}
.yd1{bottom:361.025333pt;}
.y35{bottom:363.681333pt;}
.y119{bottom:368.662667pt;}
.y16{bottom:368.941333pt;}
.y47{bottom:368.994667pt;}
.y61{bottom:370.322667pt;}
.y7c{bottom:373.673333pt;}
.ye2{bottom:373.976000pt;}
.yad{bottom:374.308000pt;}
.yfb{bottom:381.946667pt;}
.y95{bottom:388.588000pt;}
.yf5{bottom:389.916000pt;}
.y34{bottom:392.573333pt;}
.yc4{bottom:394.897333pt;}
.y118{bottom:397.554667pt;}
.y15{bottom:397.833333pt;}
.y46{bottom:397.886667pt;}
.y60{bottom:399.214667pt;}
.y7b{bottom:402.565333pt;}
.ye1{bottom:402.868000pt;}
.yac{bottom:403.200000pt;}
.yfa{bottom:410.837333pt;}
.y94{bottom:417.480000pt;}
.yf4{bottom:418.808000pt;}
.y33{bottom:421.465333pt;}
.yc3{bottom:423.789333pt;}
.y117{bottom:426.446667pt;}
.y14{bottom:426.724000pt;}
.y45{bottom:426.778667pt;}
.y5f{bottom:428.106667pt;}
.y7a{bottom:431.456000pt;}
.ye0{bottom:431.760000pt;}
.yab{bottom:432.092000pt;}
.yf3{bottom:447.700000pt;}
.y93{bottom:449.028000pt;}
.y32{bottom:450.356000pt;}
.y13{bottom:455.616000pt;}
.y44{bottom:455.669333pt;}
.y5e{bottom:456.998667pt;}
.y79{bottom:460.348000pt;}
.yc2{bottom:460.650667pt;}
.yaa{bottom:460.982667pt;}
.y116{bottom:463.308000pt;}
.yf2{bottom:476.592000pt;}
.y92{bottom:477.920000pt;}
.y31{bottom:479.248000pt;}
.yd0{bottom:484.561333pt;}
.y78{bottom:489.240000pt;}
.yc1{bottom:489.542667pt;}
.ya9{bottom:489.874667pt;}
.y115{bottom:492.200000pt;}
.y12{bottom:492.478667pt;}
.y43{bottom:492.532000pt;}
.y5d{bottom:493.860000pt;}
.yf1{bottom:505.482667pt;}
.y91{bottom:506.812000pt;}
.y30{bottom:508.140000pt;}
.ycf{bottom:513.453333pt;}
.y77{bottom:518.132000pt;}
.yc0{bottom:518.434667pt;}
.ya8{bottom:518.766667pt;}
.y42{bottom:521.422667pt;}
.y5c{bottom:522.752000pt;}
.y123{bottom:526.404000pt;}
.y114{bottom:529.061333pt;}
.y11{bottom:529.340000pt;}
.yf0{bottom:534.374667pt;}
.y90{bottom:538.360000pt;}
.y2f{bottom:539.688000pt;}
.yce{bottom:542.345333pt;}
.y76{bottom:547.022667pt;}
.ydf{bottom:547.326667pt;}
.ya7{bottom:547.658667pt;}
.y41{bottom:550.314667pt;}
.y5b{bottom:551.642667pt;}
.ybf{bottom:555.296000pt;}
.y10{bottom:557.049333pt;}
.y113{bottom:557.953333pt;}
.y8f{bottom:567.252000pt;}
.yef{bottom:571.236000pt;}
.y75{bottom:575.914667pt;}
.yde{bottom:576.217333pt;}
.y2e{bottom:579.206667pt;}
.y5a{bottom:580.534667pt;}
.ybe{bottom:584.188000pt;}
.ya6{bottom:584.520000pt;}
.yf{bottom:588.513333pt;}
.y112{bottom:594.814667pt;}
.yee{bottom:600.128000pt;}
.y8e{bottom:604.113333pt;}
.y74{bottom:604.806667pt;}
.ydd{bottom:605.109333pt;}
.y40{bottom:608.098667pt;}
.y59{bottom:609.426667pt;}
.ybd{bottom:613.080000pt;}
.ya5{bottom:613.412000pt;}
.y2d{bottom:616.068000pt;}
.ye{bottom:617.045333pt;}
.y111{bottom:623.706667pt;}
.yed{bottom:629.020000pt;}
.y8d{bottom:633.005333pt;}
.y73{bottom:633.698667pt;}
.y3f{bottom:636.989333pt;}
.y58{bottom:638.318667pt;}
.yd{bottom:641.550667pt;}
.ybc{bottom:641.970667pt;}
.ya4{bottom:642.304000pt;}
.y2c{bottom:644.960000pt;}
.y110{bottom:660.568000pt;}
.y8c{bottom:661.896000pt;}
.y72{bottom:662.589333pt;}
.yec{bottom:665.881333pt;}
.y57{bottom:667.209333pt;}
.ydc{bottom:670.862667pt;}
.ya3{bottom:671.194667pt;}
.yc{bottom:673.016000pt;}
.y2b{bottom:673.852000pt;}
.ybb{bottom:678.833333pt;}
.y10f{bottom:689.460000pt;}
.y71{bottom:691.481333pt;}
.yeb{bottom:694.773333pt;}
.y56{bottom:697.429333pt;}
.y8b{bottom:698.758667pt;}
.ydb{bottom:699.754667pt;}
.ya2{bottom:700.086667pt;}
.yb{bottom:701.548000pt;}
.y2a{bottom:702.744000pt;}
.yba{bottom:707.725333pt;}
.y10e{bottom:718.352000pt;}
.y70{bottom:720.373333pt;}
.y102{bottom:723.665333pt;}
.ya{bottom:726.053333pt;}
.y8a{bottom:727.649333pt;}
.y55{bottom:728.978667pt;}
.y29{bottom:731.634667pt;}
.yda{bottom:736.616000pt;}
.yb9{bottom:744.586667pt;}
.y6f{bottom:749.265333pt;}
.y101{bottom:752.556000pt;}
.y10d{bottom:755.213333pt;}
.y89{bottom:756.541333pt;}
.y9{bottom:757.342667pt;}
.y28{bottom:760.526667pt;}
.ya1{bottom:765.840000pt;}
.y54{bottom:768.497333pt;}
.yb8{bottom:773.478667pt;}
.y100{bottom:781.448000pt;}
.y10c{bottom:784.105333pt;}
.y88{bottom:785.433333pt;}
.y6d{bottom:786.166667pt;}
.y8{bottom:788.632000pt;}
.y27{bottom:789.418667pt;}
.ya0{bottom:794.732000pt;}
.y53{bottom:797.388000pt;}
.y122{bottom:802.369333pt;}
.yb7{bottom:810.340000pt;}
.y10b{bottom:812.996000pt;}
.y87{bottom:814.325333pt;}
.y6e{bottom:815.058667pt;}
.y26{bottom:818.309333pt;}
.y9f{bottom:823.624000pt;}
.y7{bottom:826.280000pt;}
.yb6{bottom:839.232000pt;}
.y6c{bottom:841.425333pt;}
.y86{bottom:843.216000pt;}
.y10a{bottom:844.545333pt;}
.y25{bottom:847.201333pt;}
.y52{bottom:855.172000pt;}
.y6{bottom:862.145333pt;}
.y6b{bottom:873.302667pt;}
.y85{bottom:873.436000pt;}
.y24{bottom:876.093333pt;}
.y51{bottom:884.064000pt;}
.y23{bottom:904.985333pt;}
.y5{bottom:905.981333pt;}
.y3e{bottom:912.954667pt;}
.y4{bottom:941.846667pt;}
.y3{bottom:972.912000pt;}
.y2{bottom:985.530667pt;}
.y1{bottom:998.150667pt;}
.h1{height:31.880440pt;}
.h4{height:44.887678pt;}
.h5{height:47.820680pt;}
.h2{height:53.865199pt;}
.h3{height:57.703621pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:92.670667pt;}
.x6{left:94.593333pt;}
.x4{left:101.345333pt;}
.x16{left:114.222667pt;}
.x18{left:132.521333pt;}
.x17{left:134.338667pt;}
.x19{left:141.644000pt;}
.x13{left:244.110667pt;}
.x5{left:293.536000pt;}
.x10{left:317.490667pt;}
.x7{left:329.354667pt;}
.x14{left:393.733333pt;}
.xf{left:454.816000pt;}
.xa{left:458.466667pt;}
.x8{left:485.772000pt;}
.x3{left:504.830667pt;}
.x15{left:548.916000pt;}
.xb{left:557.630667pt;}
.xd{left:567.641333pt;}
.x2{left:576.689333pt;}
.xc{left:593.145333pt;}
.xe{left:594.802667pt;}
.x9{left:600.016000pt;}
.x1{left:615.817333pt;}
.x11{left:705.890667pt;}
}




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