
    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_23c1f8bf03fc43d089b9f157.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.711000;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_34da1293e2f9002ebcc7e335.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_d4cde8e053e75146ddc4eaa5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.889000;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_7f0aaf3c911281aa55356b8d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_6c55a083e27bd408ae589140.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.757000;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_d5635343523e04a5ab31055b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690000;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_ae99d5065665b4f36ae2e396.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.838000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_86783984ec420c3bb06b4a74.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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;}
.m10{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{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);}
.m12{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);}
.m8{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);}
.m1a{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);}
.m24{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);}
.m0{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);}
.m23{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.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);}
.m1b{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);}
.m1d{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);}
.mb{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);}
.m1f{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);}
.m22{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);}
.m18{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);}
.m16{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);}
.m1c{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);}
.m1{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);}
.m14{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);}
.m21{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);}
.m4{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);}
.m11{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);}
.m9{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);}
.m5{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);}
.m6{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);}
.m7{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);}
.m19{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);}
.me{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);}
.m17{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);}
.md{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);}
.ma{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);}
.m1e{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);}
.m15{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);}
.m13{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);}
.mc{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.262000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:14.943198px;}
.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;}
}
.ws3{word-spacing:-71.731020px;}
.ws1{word-spacing:-64.557897px;}
.ws0{word-spacing:-64.299667px;}
.wsc{word-spacing:-59.775840px;}
.ws2{word-spacing:-53.798263px;}
.ws3c{word-spacing:-52.363645px;}
.ws45{word-spacing:-49.853049px;}
.wse{word-spacing:-49.434618px;}
.ws18{word-spacing:-49.374843px;}
.ws5{word-spacing:-49.195516px;}
.ws4e{word-spacing:-48.179327px;}
.ws22{word-spacing:-48.059774px;}
.ws58{word-spacing:-47.701120px;}
.ws43{word-spacing:-47.641344px;}
.ws34{word-spacing:-47.581567px;}
.ws46{word-spacing:-47.402242px;}
.wsd{word-spacing:-47.043585px;}
.ws29{word-spacing:-46.924034px;}
.ws25{word-spacing:-46.864257px;}
.ws36{word-spacing:-46.744705px;}
.ws47{word-spacing:-46.684930px;}
.ws24{word-spacing:-46.625155px;}
.ws6{word-spacing:-46.565378px;}
.ws9{word-spacing:-46.505602px;}
.ws38{word-spacing:-46.445828px;}
.ws4d{word-spacing:-46.386051px;}
.ws39{word-spacing:-46.326275px;}
.ws33{word-spacing:-46.206723px;}
.ws35{word-spacing:-46.146947px;}
.ws41{word-spacing:-45.967621px;}
.ws3b{word-spacing:-45.907843px;}
.ws2a{word-spacing:-45.848067px;}
.ws55{word-spacing:-45.728516px;}
.ws30{word-spacing:-45.549190px;}
.ws1c{word-spacing:-45.489414px;}
.ws49{word-spacing:-45.429637px;}
.ws4a{word-spacing:-45.369863px;}
.ws31{word-spacing:-45.250310px;}
.ws2b{word-spacing:-45.190535px;}
.ws14{word-spacing:-45.130760px;}
.ws1a{word-spacing:-45.070983px;}
.ws11{word-spacing:-45.011208px;}
.ws65{word-spacing:-45.004505px;}
.ws16{word-spacing:-44.951430px;}
.ws7{word-spacing:-44.891655px;}
.ws17{word-spacing:-44.831880px;}
.ws13{word-spacing:-44.772103px;}
.ws26{word-spacing:-44.712328px;}
.ws3e{word-spacing:-44.652553px;}
.ws8{word-spacing:-44.592775px;}
.ws15{word-spacing:-44.533001px;}
.ws1f{word-spacing:-44.473225px;}
.ws52{word-spacing:-44.413447px;}
.ws50{word-spacing:-44.353671px;}
.ws53{word-spacing:-44.234119px;}
.ws48{word-spacing:-44.174346px;}
.wsa{word-spacing:-43.995016px;}
.ws44{word-spacing:-43.935240px;}
.ws21{word-spacing:-43.875467px;}
.ws4c{word-spacing:-43.815688px;}
.ws2c{word-spacing:-43.755915px;}
.ws69{word-spacing:-43.738001px;}
.ws68{word-spacing:-43.701431px;}
.ws1d{word-spacing:-43.636361px;}
.wsf{word-spacing:-43.516812px;}
.ws32{word-spacing:-43.337484px;}
.ws37{word-spacing:-43.277708px;}
.ws20{word-spacing:-43.158156px;}
.ws12{word-spacing:-42.978827px;}
.ws4f{word-spacing:-42.739726px;}
.ws64{word-spacing:-42.715833px;}
.ws54{word-spacing:-42.679950px;}
.ws2d{word-spacing:-42.620174px;}
.ws3f{word-spacing:-42.560398px;}
.ws1b{word-spacing:-42.500622px;}
.ws56{word-spacing:-42.440844px;}
.ws23{word-spacing:-42.381071px;}
.ws3d{word-spacing:-42.321292px;}
.ws4{word-spacing:-42.201741px;}
.ws10{word-spacing:-42.082191px;}
.ws40{word-spacing:-42.022413px;}
.ws59{word-spacing:-41.843088px;}
.ws6f{word-spacing:-41.747466px;}
.ws70{word-spacing:-41.693666px;}
.ws5b{word-spacing:-41.544206px;}
.ws42{word-spacing:-41.185551px;}
.ws3a{word-spacing:-41.066000px;}
.ws60{word-spacing:-41.048087px;}
.ws5f{word-spacing:-40.994288px;}
.ws51{word-spacing:-40.946450px;}
.ws27{word-spacing:-40.886675px;}
.ws19{word-spacing:-40.707347px;}
.ws63{word-spacing:-40.456305px;}
.ws62{word-spacing:-40.402507px;}
.ws61{word-spacing:-40.348710px;}
.ws2e{word-spacing:-40.348690px;}
.ws6d{word-spacing:-40.294909px;}
.ws5d{word-spacing:-40.241113px;}
.wsb{word-spacing:-40.229138px;}
.ws5e{word-spacing:-40.187316px;}
.ws6a{word-spacing:-40.133516px;}
.ws57{word-spacing:-40.109586px;}
.ws2f{word-spacing:-39.870485px;}
.ws4b{word-spacing:-39.810707px;}
.ws1e{word-spacing:-39.750931px;}
.ws5a{word-spacing:-38.854296px;}
.ws71{word-spacing:-38.411972px;}
.ws66{word-spacing:-37.120813px;}
.ws5c{word-spacing:-36.881691px;}
.ws6e{word-spacing:-36.744225px;}
.ws6c{word-spacing:-35.991049px;}
.ws67{word-spacing:-35.453064px;}
.ws6b{word-spacing:-0.053798px;}
.ws28{word-spacing:0.000000px;}
._6{margin-left:-8.277765px;}
._1{margin-left:-6.714021px;}
._4{margin-left:-5.595019px;}
._3{margin-left:-4.217782px;}
._2{margin-left:-2.582316px;}
._0{margin-left:-1.205081px;}
._7{width:1.592427px;}
._5{width:2.610995px;}
._f{width:7.732605px;}
._e{width:9.384808px;}
._19{width:10.580324px;}
._9{width:14.396414px;}
._d{width:16.017527px;}
._c{width:17.997310px;}
._b{width:19.470184px;}
._8{width:20.572455px;}
._18{width:21.815792px;}
._a{width:23.644931px;}
._16{width:26.074224px;}
._10{width:27.377339px;}
._1a{width:29.251905px;}
._17{width:30.409164px;}
._13{width:481.263180px;}
._11{width:500.015880px;}
._12{width:801.009000px;}
._15{width:1898.706000px;}
._14{width:2288.424000px;}
.fc1{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865480px;}
.fs3{font-size:42.000000px;}
.fs4{font-size:44.234100px;}
.fs5{font-size:53.798280px;}
.fs2{font-size:59.775840px;}
.fs1{font-size:71.731020px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y43{bottom:6.600001px;}
.y45{bottom:22.500000px;}
.y46{bottom:42.000000px;}
.y41{bottom:90.508454px;}
.y32{bottom:90.508500px;}
.y40{bottom:108.440954px;}
.y31{bottom:108.441000px;}
.y8e{bottom:126.373454px;}
.y30{bottom:126.373500px;}
.y47{bottom:130.500000px;}
.y3f{bottom:132.958454px;}
.y8d{bottom:144.305954px;}
.y2f{bottom:144.306000px;}
.ybd{bottom:152.122454px;}
.y8c{bottom:162.238454px;}
.y2e{bottom:162.238500px;}
.y3e{bottom:166.433954px;}
.y8b{bottom:180.172454px;}
.y2d{bottom:180.172500px;}
.y3d{bottom:184.366454px;}
.ybc{bottom:189.137954px;}
.y8a{bottom:198.104954px;}
.y2c{bottom:198.105000px;}
.y3c{bottom:202.298954px;}
.ybb{bottom:207.070454px;}
.y89{bottom:216.037454px;}
.y2b{bottom:216.037500px;}
.yba{bottom:225.002954px;}
.y3b{bottom:228.253454px;}
.y88{bottom:233.969954px;}
.y2a{bottom:233.970000px;}
.yb9{bottom:242.936954px;}
.y3a{bottom:249.175454px;}
.y87{bottom:251.902454px;}
.y29{bottom:251.902500px;}
.y59{bottom:259.542000px;}
.yb8{bottom:260.869454px;}
.y86{bottom:269.834954px;}
.y28{bottom:269.835000px;}
.yb7{bottom:278.801954px;}
.y39{bottom:286.685954px;}
.y85{bottom:287.768954px;}
.y27{bottom:287.769000px;}
.y58{bottom:295.768500px;}
.yb6{bottom:296.734454px;}
.y38{bottom:304.618454px;}
.y84{bottom:305.701454px;}
.y26{bottom:305.701500px;}
.y57{bottom:313.701000px;}
.yb5{bottom:314.666954px;}
.y37{bottom:322.550954px;}
.y83{bottom:323.633954px;}
.y25{bottom:323.634000px;}
.y56{bottom:331.635000px;}
.yb4{bottom:332.599454px;}
.y36{bottom:340.483454px;}
.y82{bottom:341.566454px;}
.y24{bottom:341.566500px;}
.y55{bottom:349.567500px;}
.yb3{bottom:358.349954px;}
.y35{bottom:358.415954px;}
.y81{bottom:359.498954px;}
.y74{bottom:359.499000px;}
.y23{bottom:366.462000px;}
.y54{bottom:367.500000px;}
.y80{bottom:377.431454px;}
.y73{bottom:377.431500px;}
.y53{bottom:385.432500px;}
.y22{bottom:387.382500px;}
.y7f{bottom:395.365454px;}
.y72{bottom:395.365500px;}
.y52{bottom:403.365000px;}
.y34{bottom:409.993454px;}
.y7e{bottom:413.297954px;}
.y71{bottom:413.298000px;}
.y51{bottom:421.297500px;}
.y21{bottom:422.329500px;}
.y33{bottom:427.925954px;}
.y7d{bottom:431.230454px;}
.y70{bottom:431.230500px;}
.y50{bottom:439.231500px;}
.y20{bottom:440.262000px;}
.y7c{bottom:449.162954px;}
.y6f{bottom:455.995500px;}
.y4f{bottom:457.164000px;}
.y1f{bottom:458.194500px;}
.yb2{bottom:467.095454px;}
.y7b{bottom:475.024454px;}
.y4e{bottom:475.096500px;}
.y1e{bottom:476.127000px;}
.y6e{bottom:476.917500px;}
.yb1{bottom:485.027954px;}
.y1d{bottom:494.061000px;}
.yb0{bottom:502.961954px;}
.y6d{bottom:511.041000px;}
.y1c{bottom:511.993500px;}
.y7a{bottom:512.312954px;}
.yaf{bottom:520.894454px;}
.y4d{bottom:527.869500px;}
.y6c{bottom:528.973500px;}
.y1b{bottom:529.926000px;}
.y79{bottom:530.245454px;}
.yae{bottom:538.826954px;}
.y4c{bottom:545.802000px;}
.y6b{bottom:546.906000px;}
.y1a{bottom:547.858500px;}
.y78{bottom:548.177954px;}
.yad{bottom:556.759454px;}
.y4b{bottom:563.734500px;}
.y6a{bottom:564.838500px;}
.y19{bottom:565.791000px;}
.y77{bottom:566.110454px;}
.yac{bottom:574.691954px;}
.y69{bottom:582.771000px;}
.y18{bottom:583.723500px;}
.y76{bottom:584.042954px;}
.yab{bottom:592.624454px;}
.y68{bottom:600.705000px;}
.y17{bottom:601.657500px;}
.yaa{bottom:610.558454px;}
.y67{bottom:618.637500px;}
.y16{bottom:619.590000px;}
.ya9{bottom:628.490954px;}
.y75{bottom:635.522954px;}
.y66{bottom:636.570000px;}
.y15{bottom:637.522500px;}
.ya8{bottom:646.423454px;}
.y65{bottom:654.502500px;}
.y14{bottom:655.455000px;}
.ya7{bottom:664.355954px;}
.y64{bottom:672.435000px;}
.y13{bottom:673.387500px;}
.ya6{bottom:682.288454px;}
.y63{bottom:690.367500px;}
.y12{bottom:698.283000px;}
.ya5{bottom:700.220954px;}
.y62{bottom:708.301500px;}
.ya4{bottom:718.154954px;}
.y61{bottom:726.234000px;}
.y11{bottom:733.228500px;}
.ya3{bottom:736.087454px;}
.y60{bottom:744.166500px;}
.y10{bottom:751.162500px;}
.ya2{bottom:754.019954px;}
.y5f{bottom:762.099000px;}
.yf{bottom:769.095000px;}
.ya1{bottom:771.952454px;}
.y5e{bottom:780.031500px;}
.ye{bottom:787.027500px;}
.ya0{bottom:789.884954px;}
.y5d{bottom:797.964000px;}
.yd{bottom:804.960000px;}
.y9f{bottom:807.817454px;}
.y5c{bottom:815.898000px;}
.yc{bottom:822.892500px;}
.y9e{bottom:825.751454px;}
.y5b{bottom:833.830500px;}
.y4a{bottom:839.740500px;}
.yb{bottom:840.825000px;}
.y9d{bottom:843.683954px;}
.y49{bottom:857.673000px;}
.ya{bottom:858.759000px;}
.y9c{bottom:861.616454px;}
.y48{bottom:875.605500px;}
.y9{bottom:876.691500px;}
.y9b{bottom:879.548954px;}
.yca{bottom:883.659000px;}
.y5a{bottom:885.688500px;}
.y8{bottom:894.624000px;}
.yd6{bottom:895.987500px;}
.y9a{bottom:897.481454px;}
.yc9{bottom:900.097500px;}
.yd5{bottom:912.426000px;}
.y99{bottom:915.413954px;}
.yc8{bottom:916.536000px;}
.y7{bottom:918.157500px;}
.yd4{bottom:928.864500px;}
.yc7{bottom:932.974500px;}
.y98{bottom:933.347954px;}
.y97{bottom:951.280454px;}
.yd3{bottom:951.280500px;}
.yc6{bottom:952.962000px;}
.y6{bottom:954.321000px;}
.yd2{bottom:967.719000px;}
.y96{bottom:969.212954px;}
.yc5{bottom:969.399000px;}
.y5{bottom:975.243000px;}
.yd1{bottom:984.157500px;}
.yc4{bottom:985.837500px;}
.y95{bottom:987.145454px;}
.y4{bottom:996.165000px;}
.yc3{bottom:1002.276000px;}
.y94{bottom:1005.077954px;}
.yd0{bottom:1006.573500px;}
.y3{bottom:1017.085500px;}
.yc2{bottom:1022.263500px;}
.y93{bottom:1023.010454px;}
.ycf{bottom:1023.010500px;}
.yc1{bottom:1038.702000px;}
.yce{bottom:1039.449000px;}
.y92{bottom:1040.944454px;}
.y2{bottom:1052.952000px;}
.yc0{bottom:1055.140500px;}
.y91{bottom:1058.876954px;}
.ycd{bottom:1061.865000px;}
.ybf{bottom:1071.579000px;}
.y90{bottom:1076.809454px;}
.ycc{bottom:1078.303500px;}
.y1{bottom:1079.851500px;}
.y8f{bottom:1094.741954px;}
.ybe{bottom:1094.742000px;}
.ycb{bottom:1099.302000px;}
.y44{bottom:1131.000000px;}
.y42{bottom:1150.500000px;}
.h6{height:15.000000px;}
.hd{height:23.886410px;}
.hc{height:36.098646px;}
.hb{height:37.013217px;}
.h9{height:40.408468px;}
.h4{height:41.125778px;}
.h7{height:43.804688px;}
.h3{height:48.992287px;}
.h2{height:49.350942px;}
.h5{height:49.637866px;}
.ha{height:50.164252px;}
.h1{height:59.565422px;}
.h8{height:951.000000px;}
.h0{height:1188.000000px;}
.w2{width:13.500000px;}
.w1{width:721.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x11{left:8.399999px;}
.x17{left:44.250000px;}
.x1{left:85.117500px;}
.x9{left:88.296000px;}
.x3{left:97.503000px;}
.x7{left:99.984000px;}
.x2b{left:108.193500px;}
.x19{left:115.876500px;}
.x18{left:127.219500px;}
.x20{left:144.799500px;}
.xa{left:152.155500px;}
.x1c{left:157.192500px;}
.x21{left:161.595000px;}
.x4{left:168.930000px;}
.x2c{left:180.888000px;}
.x8{left:188.971500px;}
.x5{left:190.332000px;}
.x2{left:192.496500px;}
.x1d{left:194.944500px;}
.x2a{left:200.331000px;}
.x6{left:208.183500px;}
.xf{left:211.944030px;}
.x1a{left:275.542500px;}
.x1e{left:293.011500px;}
.x1b{left:316.495500px;}
.x1f{left:348.318000px;}
.xb{left:457.086000px;}
.xc{left:460.882500px;}
.xe{left:472.030500px;}
.x29{left:474.904500px;}
.x2d{left:480.240000px;}
.xd{left:540.808500px;}
.x24{left:555.133500px;}
.x14{left:573.910500px;}
.x25{left:581.547000px;}
.x15{left:591.184500px;}
.x2e{left:633.949500px;}
.x22{left:638.112000px;}
.x2f{left:652.492500px;}
.x23{left:677.586000px;}
.x28{left:733.281000px;}
.x12{left:737.655000px;}
.x26{left:749.704500px;}
.x13{left:753.498000px;}
.x27{left:762.153000px;}
.x16{left:773.418000px;}
.x10{left:836.250000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.010667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:13.282843pt;}
.ws3{word-spacing:-63.760907pt;}
.ws1{word-spacing:-57.384798pt;}
.ws0{word-spacing:-57.155259pt;}
.wsc{word-spacing:-53.134080pt;}
.ws2{word-spacing:-47.820678pt;}
.ws3c{word-spacing:-46.545462pt;}
.ws45{word-spacing:-44.313822pt;}
.wse{word-spacing:-43.941883pt;}
.ws18{word-spacing:-43.888749pt;}
.ws5{word-spacing:-43.729348pt;}
.ws4e{word-spacing:-42.826068pt;}
.ws22{word-spacing:-42.719799pt;}
.ws58{word-spacing:-42.400996pt;}
.ws43{word-spacing:-42.347862pt;}
.ws34{word-spacing:-42.294727pt;}
.ws46{word-spacing:-42.135326pt;}
.wsd{word-spacing:-41.816520pt;}
.ws29{word-spacing:-41.710253pt;}
.ws25{word-spacing:-41.657118pt;}
.ws36{word-spacing:-41.550849pt;}
.ws47{word-spacing:-41.497715pt;}
.ws24{word-spacing:-41.444582pt;}
.ws6{word-spacing:-41.391447pt;}
.ws9{word-spacing:-41.338313pt;}
.ws38{word-spacing:-41.285180pt;}
.ws4d{word-spacing:-41.232045pt;}
.ws39{word-spacing:-41.178911pt;}
.ws33{word-spacing:-41.072643pt;}
.ws35{word-spacing:-41.019509pt;}
.ws41{word-spacing:-40.860108pt;}
.ws3b{word-spacing:-40.806972pt;}
.ws2a{word-spacing:-40.753838pt;}
.ws55{word-spacing:-40.647570pt;}
.ws30{word-spacing:-40.488169pt;}
.ws1c{word-spacing:-40.435035pt;}
.ws49{word-spacing:-40.381900pt;}
.ws4a{word-spacing:-40.328767pt;}
.ws31{word-spacing:-40.222497pt;}
.ws2b{word-spacing:-40.169364pt;}
.ws14{word-spacing:-40.116231pt;}
.ws1a{word-spacing:-40.063096pt;}
.ws11{word-spacing:-40.009962pt;}
.ws65{word-spacing:-40.004004pt;}
.ws16{word-spacing:-39.956827pt;}
.ws7{word-spacing:-39.903693pt;}
.ws17{word-spacing:-39.850560pt;}
.ws13{word-spacing:-39.797425pt;}
.ws26{word-spacing:-39.744292pt;}
.ws3e{word-spacing:-39.691158pt;}
.ws8{word-spacing:-39.638023pt;}
.ws15{word-spacing:-39.584890pt;}
.ws1f{word-spacing:-39.531756pt;}
.ws52{word-spacing:-39.478619pt;}
.ws50{word-spacing:-39.425485pt;}
.ws53{word-spacing:-39.319217pt;}
.ws48{word-spacing:-39.266085pt;}
.wsa{word-spacing:-39.106681pt;}
.ws44{word-spacing:-39.053547pt;}
.ws21{word-spacing:-39.000415pt;}
.ws4c{word-spacing:-38.947279pt;}
.ws2c{word-spacing:-38.894147pt;}
.ws69{word-spacing:-38.878223pt;}
.ws68{word-spacing:-38.845716pt;}
.ws1d{word-spacing:-38.787876pt;}
.wsf{word-spacing:-38.681610pt;}
.ws32{word-spacing:-38.522208pt;}
.ws37{word-spacing:-38.469074pt;}
.ws20{word-spacing:-38.362806pt;}
.ws12{word-spacing:-38.203401pt;}
.ws4f{word-spacing:-37.990867pt;}
.ws64{word-spacing:-37.969630pt;}
.ws54{word-spacing:-37.937733pt;}
.ws2d{word-spacing:-37.884599pt;}
.ws3f{word-spacing:-37.831465pt;}
.ws1b{word-spacing:-37.778331pt;}
.ws56{word-spacing:-37.725195pt;}
.ws23{word-spacing:-37.672063pt;}
.ws3d{word-spacing:-37.618927pt;}
.ws4{word-spacing:-37.512658pt;}
.ws10{word-spacing:-37.406392pt;}
.ws40{word-spacing:-37.353256pt;}
.ws59{word-spacing:-37.193856pt;}
.ws6f{word-spacing:-37.108859pt;}
.ws70{word-spacing:-37.061036pt;}
.ws5b{word-spacing:-36.928183pt;}
.ws42{word-spacing:-36.609379pt;}
.ws3a{word-spacing:-36.503111pt;}
.ws60{word-spacing:-36.487188pt;}
.ws5f{word-spacing:-36.439367pt;}
.ws51{word-spacing:-36.396845pt;}
.ws27{word-spacing:-36.343711pt;}
.ws19{word-spacing:-36.184308pt;}
.ws63{word-spacing:-35.961160pt;}
.ws62{word-spacing:-35.913340pt;}
.ws61{word-spacing:-35.865520pt;}
.ws2e{word-spacing:-35.865502pt;}
.ws6d{word-spacing:-35.817697pt;}
.ws5d{word-spacing:-35.769879pt;}
.wsb{word-spacing:-35.759234pt;}
.ws5e{word-spacing:-35.722058pt;}
.ws6a{word-spacing:-35.674236pt;}
.ws57{word-spacing:-35.652966pt;}
.ws2f{word-spacing:-35.440431pt;}
.ws4b{word-spacing:-35.387295pt;}
.ws1e{word-spacing:-35.334161pt;}
.ws5a{word-spacing:-34.537152pt;}
.ws71{word-spacing:-34.143975pt;}
.ws66{word-spacing:-32.996278pt;}
.ws5c{word-spacing:-32.783725pt;}
.ws6e{word-spacing:-32.661534pt;}
.ws6c{word-spacing:-31.992044pt;}
.ws67{word-spacing:-31.513835pt;}
.ws6b{word-spacing:-0.047821pt;}
.ws28{word-spacing:0.000000pt;}
._6{margin-left:-7.358013pt;}
._1{margin-left:-5.968018pt;}
._4{margin-left:-4.973350pt;}
._3{margin-left:-3.749140pt;}
._2{margin-left:-2.295392pt;}
._0{margin-left:-1.071183pt;}
._7{width:1.415491pt;}
._5{width:2.320885pt;}
._f{width:6.873427pt;}
._e{width:8.342052pt;}
._19{width:9.404732pt;}
._9{width:12.796812pt;}
._d{width:14.237801pt;}
._c{width:15.997609pt;}
._b{width:17.306830pt;}
._8{width:18.286627pt;}
._18{width:19.391815pt;}
._a{width:21.017716pt;}
._16{width:23.177088pt;}
._10{width:24.335412pt;}
._1a{width:26.001693pt;}
._17{width:27.030368pt;}
._13{width:427.789493pt;}
._11{width:444.458560pt;}
._12{width:712.008000pt;}
._15{width:1687.738667pt;}
._14{width:2034.154667pt;}
.fs6{font-size:31.880427pt;}
.fs3{font-size:37.333333pt;}
.fs4{font-size:39.319200pt;}
.fs5{font-size:47.820693pt;}
.fs2{font-size:53.134080pt;}
.fs1{font-size:63.760907pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:5.866668pt;}
.y45{bottom:20.000000pt;}
.y46{bottom:37.333333pt;}
.y41{bottom:80.451959pt;}
.y32{bottom:80.452000pt;}
.y40{bottom:96.391959pt;}
.y31{bottom:96.392000pt;}
.y8e{bottom:112.331959pt;}
.y30{bottom:112.332000pt;}
.y47{bottom:116.000000pt;}
.y3f{bottom:118.185293pt;}
.y8d{bottom:128.271959pt;}
.y2f{bottom:128.272000pt;}
.ybd{bottom:135.219959pt;}
.y8c{bottom:144.211959pt;}
.y2e{bottom:144.212000pt;}
.y3e{bottom:147.941293pt;}
.y8b{bottom:160.153293pt;}
.y2d{bottom:160.153333pt;}
.y3d{bottom:163.881293pt;}
.ybc{bottom:168.122626pt;}
.y8a{bottom:176.093293pt;}
.y2c{bottom:176.093333pt;}
.y3c{bottom:179.821293pt;}
.ybb{bottom:184.062626pt;}
.y89{bottom:192.033293pt;}
.y2b{bottom:192.033333pt;}
.yba{bottom:200.002626pt;}
.y3b{bottom:202.891959pt;}
.y88{bottom:207.973293pt;}
.y2a{bottom:207.973333pt;}
.yb9{bottom:215.943959pt;}
.y3a{bottom:221.489293pt;}
.y87{bottom:223.913293pt;}
.y29{bottom:223.913333pt;}
.y59{bottom:230.704000pt;}
.yb8{bottom:231.883959pt;}
.y86{bottom:239.853293pt;}
.y28{bottom:239.853333pt;}
.yb7{bottom:247.823959pt;}
.y39{bottom:254.831959pt;}
.y85{bottom:255.794626pt;}
.y27{bottom:255.794667pt;}
.y58{bottom:262.905333pt;}
.yb6{bottom:263.763959pt;}
.y38{bottom:270.771959pt;}
.y84{bottom:271.734626pt;}
.y26{bottom:271.734667pt;}
.y57{bottom:278.845333pt;}
.yb5{bottom:279.703959pt;}
.y37{bottom:286.711959pt;}
.y83{bottom:287.674626pt;}
.y25{bottom:287.674667pt;}
.y56{bottom:294.786667pt;}
.yb4{bottom:295.643959pt;}
.y36{bottom:302.651959pt;}
.y82{bottom:303.614626pt;}
.y24{bottom:303.614667pt;}
.y55{bottom:310.726667pt;}
.yb3{bottom:318.533293pt;}
.y35{bottom:318.591959pt;}
.y81{bottom:319.554626pt;}
.y74{bottom:319.554667pt;}
.y23{bottom:325.744000pt;}
.y54{bottom:326.666667pt;}
.y80{bottom:335.494626pt;}
.y73{bottom:335.494667pt;}
.y53{bottom:342.606667pt;}
.y22{bottom:344.340000pt;}
.y7f{bottom:351.435959pt;}
.y72{bottom:351.436000pt;}
.y52{bottom:358.546667pt;}
.y34{bottom:364.438626pt;}
.y7e{bottom:367.375959pt;}
.y71{bottom:367.376000pt;}
.y51{bottom:374.486667pt;}
.y21{bottom:375.404000pt;}
.y33{bottom:380.378626pt;}
.y7d{bottom:383.315959pt;}
.y70{bottom:383.316000pt;}
.y50{bottom:390.428000pt;}
.y20{bottom:391.344000pt;}
.y7c{bottom:399.255959pt;}
.y6f{bottom:405.329333pt;}
.y4f{bottom:406.368000pt;}
.y1f{bottom:407.284000pt;}
.yb2{bottom:415.195959pt;}
.y7b{bottom:422.243959pt;}
.y4e{bottom:422.308000pt;}
.y1e{bottom:423.224000pt;}
.y6e{bottom:423.926667pt;}
.yb1{bottom:431.135959pt;}
.y1d{bottom:439.165333pt;}
.yb0{bottom:447.077293pt;}
.y6d{bottom:454.258667pt;}
.y1c{bottom:455.105333pt;}
.y7a{bottom:455.389293pt;}
.yaf{bottom:463.017293pt;}
.y4d{bottom:469.217333pt;}
.y6c{bottom:470.198667pt;}
.y1b{bottom:471.045333pt;}
.y79{bottom:471.329293pt;}
.yae{bottom:478.957293pt;}
.y4c{bottom:485.157333pt;}
.y6b{bottom:486.138667pt;}
.y1a{bottom:486.985333pt;}
.y78{bottom:487.269293pt;}
.yad{bottom:494.897293pt;}
.y4b{bottom:501.097333pt;}
.y6a{bottom:502.078667pt;}
.y19{bottom:502.925333pt;}
.y77{bottom:503.209293pt;}
.yac{bottom:510.837293pt;}
.y69{bottom:518.018667pt;}
.y18{bottom:518.865333pt;}
.y76{bottom:519.149293pt;}
.yab{bottom:526.777293pt;}
.y68{bottom:533.960000pt;}
.y17{bottom:534.806667pt;}
.yaa{bottom:542.718626pt;}
.y67{bottom:549.900000pt;}
.y16{bottom:550.746667pt;}
.ya9{bottom:558.658626pt;}
.y75{bottom:564.909293pt;}
.y66{bottom:565.840000pt;}
.y15{bottom:566.686667pt;}
.ya8{bottom:574.598626pt;}
.y65{bottom:581.780000pt;}
.y14{bottom:582.626667pt;}
.ya7{bottom:590.538626pt;}
.y64{bottom:597.720000pt;}
.y13{bottom:598.566667pt;}
.ya6{bottom:606.478626pt;}
.y63{bottom:613.660000pt;}
.y12{bottom:620.696000pt;}
.ya5{bottom:622.418626pt;}
.y62{bottom:629.601333pt;}
.ya4{bottom:638.359959pt;}
.y61{bottom:645.541333pt;}
.y11{bottom:651.758667pt;}
.ya3{bottom:654.299959pt;}
.y60{bottom:661.481333pt;}
.y10{bottom:667.700000pt;}
.ya2{bottom:670.239959pt;}
.y5f{bottom:677.421333pt;}
.yf{bottom:683.640000pt;}
.ya1{bottom:686.179959pt;}
.y5e{bottom:693.361333pt;}
.ye{bottom:699.580000pt;}
.ya0{bottom:702.119959pt;}
.y5d{bottom:709.301333pt;}
.yd{bottom:715.520000pt;}
.y9f{bottom:718.059959pt;}
.y5c{bottom:725.242667pt;}
.yc{bottom:731.460000pt;}
.y9e{bottom:734.001293pt;}
.y5b{bottom:741.182667pt;}
.y4a{bottom:746.436000pt;}
.yb{bottom:747.400000pt;}
.y9d{bottom:749.941293pt;}
.y49{bottom:762.376000pt;}
.ya{bottom:763.341333pt;}
.y9c{bottom:765.881293pt;}
.y48{bottom:778.316000pt;}
.y9{bottom:779.281333pt;}
.y9b{bottom:781.821293pt;}
.yca{bottom:785.474667pt;}
.y5a{bottom:787.278667pt;}
.y8{bottom:795.221333pt;}
.yd6{bottom:796.433333pt;}
.y9a{bottom:797.761293pt;}
.yc9{bottom:800.086667pt;}
.yd5{bottom:811.045333pt;}
.y99{bottom:813.701293pt;}
.yc8{bottom:814.698667pt;}
.y7{bottom:816.140000pt;}
.yd4{bottom:825.657333pt;}
.yc7{bottom:829.310667pt;}
.y98{bottom:829.642626pt;}
.y97{bottom:845.582626pt;}
.yd3{bottom:845.582667pt;}
.yc6{bottom:847.077333pt;}
.y6{bottom:848.285333pt;}
.yd2{bottom:860.194667pt;}
.y96{bottom:861.522626pt;}
.yc5{bottom:861.688000pt;}
.y5{bottom:866.882667pt;}
.yd1{bottom:874.806667pt;}
.yc4{bottom:876.300000pt;}
.y95{bottom:877.462626pt;}
.y4{bottom:885.480000pt;}
.yc3{bottom:890.912000pt;}
.y94{bottom:893.402626pt;}
.yd0{bottom:894.732000pt;}
.y3{bottom:904.076000pt;}
.yc2{bottom:908.678667pt;}
.y93{bottom:909.342626pt;}
.ycf{bottom:909.342667pt;}
.yc1{bottom:923.290667pt;}
.yce{bottom:923.954667pt;}
.y92{bottom:925.283959pt;}
.y2{bottom:935.957333pt;}
.yc0{bottom:937.902667pt;}
.y91{bottom:941.223959pt;}
.ycd{bottom:943.880000pt;}
.ybf{bottom:952.514667pt;}
.y90{bottom:957.163959pt;}
.ycc{bottom:958.492000pt;}
.y1{bottom:959.868000pt;}
.y8f{bottom:973.103959pt;}
.ybe{bottom:973.104000pt;}
.ycb{bottom:977.157333pt;}
.y44{bottom:1005.333333pt;}
.y42{bottom:1022.666667pt;}
.h6{height:13.333333pt;}
.hd{height:21.232364pt;}
.hc{height:32.087685pt;}
.hb{height:32.900637pt;}
.h9{height:35.918638pt;}
.h4{height:36.556247pt;}
.h7{height:38.937500pt;}
.h3{height:43.548699pt;}
.h2{height:43.867504pt;}
.h5{height:44.122547pt;}
.ha{height:44.590446pt;}
.h1{height:52.947042pt;}
.h8{height:845.333333pt;}
.h0{height:1056.000000pt;}
.w2{width:12.000000pt;}
.w1{width:641.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x11{left:7.466666pt;}
.x17{left:39.333333pt;}
.x1{left:75.660000pt;}
.x9{left:78.485333pt;}
.x3{left:86.669333pt;}
.x7{left:88.874667pt;}
.x2b{left:96.172000pt;}
.x19{left:103.001333pt;}
.x18{left:113.084000pt;}
.x20{left:128.710667pt;}
.xa{left:135.249333pt;}
.x1c{left:139.726667pt;}
.x21{left:143.640000pt;}
.x4{left:150.160000pt;}
.x2c{left:160.789333pt;}
.x8{left:167.974667pt;}
.x5{left:169.184000pt;}
.x2{left:171.108000pt;}
.x1d{left:173.284000pt;}
.x2a{left:178.072000pt;}
.x6{left:185.052000pt;}
.xf{left:188.394693pt;}
.x1a{left:244.926667pt;}
.x1e{left:260.454667pt;}
.x1b{left:281.329333pt;}
.x1f{left:309.616000pt;}
.xb{left:406.298667pt;}
.xc{left:409.673333pt;}
.xe{left:419.582667pt;}
.x29{left:422.137333pt;}
.x2d{left:426.880000pt;}
.xd{left:480.718667pt;}
.x24{left:493.452000pt;}
.x14{left:510.142667pt;}
.x25{left:516.930667pt;}
.x15{left:525.497333pt;}
.x2e{left:563.510667pt;}
.x22{left:567.210667pt;}
.x2f{left:579.993333pt;}
.x23{left:602.298667pt;}
.x28{left:651.805333pt;}
.x12{left:655.693333pt;}
.x26{left:666.404000pt;}
.x13{left:669.776000pt;}
.x27{left:677.469333pt;}
.x16{left:687.482667pt;}
.x10{left:743.333333pt;}
}




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