
    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_f74a6f59642d51a1743f107d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_65ca8ddb7a950c377996e148.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_a74fd17676fed3b6ba0172c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_813f7a523d04bd3ecdd4b402.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.744000;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_70ec470d0f8aa13cd3b73624.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;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;}
.m8{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);}
.m6{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);}
.m16{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);}
.m20{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);}
.m17{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);}
.mb{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);}
.m1d{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);}
.me{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);}
.md{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);}
.m19{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);}
.m7{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);}
.m2{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);}
.mc{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);}
.m9{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);}
.m11{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);}
.m1b{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);}
.mf{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);}
.m4{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);}
.m1e{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);}
.ma{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.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);}
.m13{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);}
.m15{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.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);}
.m23{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);}
.m22{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);}
.m14{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);}
.m10{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);}
.m21{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);}
.m5{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);}
.m1a{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);}
.m1f{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);}
.m3{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:11.954850px;}
.ls8{letter-spacing:14.229569px;}
.ls7{letter-spacing:14.935739px;}
.ls6{letter-spacing:14.942100px;}
.ls2{letter-spacing:14.948100px;}
.ls3{letter-spacing:16.832571px;}
.ls5{letter-spacing:20.526688px;}
.ls4{letter-spacing:23.473747px;}
.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;}
}
.ws4a{word-spacing:-14.943900px;}
.ws27{word-spacing:-11.955150px;}
.ws5{word-spacing:-10.460700px;}
.ws2a{word-spacing:-3.048556px;}
.ws48{word-spacing:-2.331248px;}
.ws22{word-spacing:-2.211697px;}
.ws60{word-spacing:-2.151922px;}
.ws43{word-spacing:-1.972595px;}
.ws1b{word-spacing:-1.853044px;}
.ws21{word-spacing:-1.255288px;}
.ws63{word-spacing:-0.956410px;}
.ws44{word-spacing:-0.896634px;}
.ws1d{word-spacing:-0.836858px;}
.ws2c{word-spacing:-0.777083px;}
.ws1a{word-spacing:-0.657532px;}
.ws41{word-spacing:-0.537980px;}
.ws3f{word-spacing:-0.418429px;}
.ws2b{word-spacing:-0.358654px;}
.ws3d{word-spacing:-0.298878px;}
.ws11{word-spacing:-0.239102px;}
.wsc{word-spacing:-0.179327px;}
.ws19{word-spacing:-0.119551px;}
.ws15{word-spacing:-0.059776px;}
.ws28{word-spacing:-0.047821px;}
.ws0{word-spacing:0.000000px;}
.ws1e{word-spacing:0.059776px;}
.ws16{word-spacing:0.119551px;}
.ws13{word-spacing:0.179327px;}
.wsf{word-spacing:0.239102px;}
.ws66{word-spacing:0.268992px;}
.ws2d{word-spacing:0.298878px;}
.wsd{word-spacing:0.358654px;}
.ws50{word-spacing:0.418429px;}
.ws47{word-spacing:0.537980px;}
.ws20{word-spacing:0.717307px;}
.ws31{word-spacing:0.956410px;}
.ws38{word-spacing:1.075961px;}
.ws2e{word-spacing:1.135736px;}
.ws36{word-spacing:1.195512px;}
.ws5b{word-spacing:1.255288px;}
.wsb{word-spacing:1.380812px;}
.ws4b{word-spacing:1.494390px;}
.ws62{word-spacing:1.613941px;}
.ws14{word-spacing:1.793268px;}
.ws37{word-spacing:1.912819px;}
.ws12{word-spacing:2.032370px;}
.ws23{word-spacing:2.151922px;}
.ws29{word-spacing:2.211697px;}
.ws3c{word-spacing:2.450800px;}
.ws2{word-spacing:2.510364px;}
.ws10{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws3e{word-spacing:2.570351px;}
.ws35{word-spacing:2.630126px;}
.ws25{word-spacing:2.689902px;}
.ws45{word-spacing:2.749678px;}
.wse{word-spacing:3.048556px;}
.ws49{word-spacing:3.224822px;}
.ws17{word-spacing:3.466985px;}
.ws65{word-spacing:3.496896px;}
.ws5f{word-spacing:3.582721px;}
.ws5c{word-spacing:3.588095px;}
.ws2f{word-spacing:3.885414px;}
.ws1c{word-spacing:3.945190px;}
.ws46{word-spacing:4.004965px;}
.ws3a{word-spacing:4.363619px;}
.ws56{word-spacing:4.423394px;}
.ws4d{word-spacing:4.602721px;}
.ws24{word-spacing:4.782048px;}
.ws1f{word-spacing:4.841824px;}
.ws18{word-spacing:5.140702px;}
.ws34{word-spacing:5.260253px;}
.ws9{word-spacing:5.481407px;}
.ws58{word-spacing:5.559131px;}
.ws42{word-spacing:5.738458px;}
.ws33{word-spacing:5.858009px;}
.ws30{word-spacing:6.037336px;}
.ws39{word-spacing:6.515540px;}
.ws40{word-spacing:6.575316px;}
.ws51{word-spacing:6.754643px;}
.ws3b{word-spacing:7.053521px;}
.ws54{word-spacing:7.292623px;}
.ws55{word-spacing:7.651277px;}
.ws5e{word-spacing:8.189257px;}
.ws32{word-spacing:8.308808px;}
.ws59{word-spacing:8.368584px;}
.ws53{word-spacing:8.547911px;}
.ws3{word-spacing:10.419488px;}
.ws8{word-spacing:11.841512px;}
.ws26{word-spacing:11.906882px;}
.ws7{word-spacing:13.306010px;}
.ws64{word-spacing:13.909553px;}
.ws4f{word-spacing:14.767636px;}
.ws61{word-spacing:14.859392px;}
.ws5d{word-spacing:14.878247px;}
.ws5a{word-spacing:14.884247px;}
.ws4{word-spacing:15.481836px;}
.wsa{word-spacing:16.067635px;}
.ws4c{word-spacing:16.332482px;}
.ws57{word-spacing:19.285423px;}
.ws4e{word-spacing:19.497188px;}
.ws52{word-spacing:21.644247px;}
.ws6{word-spacing:29.262958px;}
._19{margin-left:-19.307442px;}
._6{margin-left:-6.874194px;}
._b{margin-left:-5.379804px;}
._f{margin-left:-4.303843px;}
._1{margin-left:-3.060159px;}
._4{margin-left:-1.464498px;}
._1b{width:2.905114px;}
._0{width:12.971268px;}
._c{width:14.822586px;}
._8{width:17.424583px;}
._7{width:18.889090px;}
._10{width:19.965050px;}
._a{width:21.220338px;}
._12{width:22.356074px;}
._16{width:24.239002px;}
._2{width:25.314894px;}
._17{width:26.809352px;}
._14{width:28.273850px;}
._3{width:31.256572px;}
._5{width:33.355008px;}
._9{width:34.699732px;}
._13{width:36.463116px;}
._11{width:37.808063px;}
._15{width:40.109428px;}
._1a{width:67.127999px;}
._18{width:96.537594px;}
._d{width:723.860422px;}
._e{width:2548.671000px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(77,128,114);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:47.820600px;}
.fsa{font-size:53.798400px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.fs6{font-size:128.507760px;}
.y0{bottom:0.000000px;}
.y32{bottom:16.704213px;}
.y63{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y62{bottom:103.621500px;}
.y30{bottom:104.646000px;}
.y9a{bottom:119.596500px;}
.y61{bottom:122.449500px;}
.y2f{bottom:122.535000px;}
.y99{bottom:138.426000px;}
.y20{bottom:139.264499px;}
.y2e{bottom:140.422500px;}
.y60{bottom:141.279000px;}
.y98{bottom:157.255500px;}
.y2d{bottom:158.310000px;}
.y5f{bottom:160.108500px;}
.y97{bottom:176.085000px;}
.y2c{bottom:176.199000px;}
.y5e{bottom:178.938000px;}
.y2b{bottom:194.086500px;}
.y96{bottom:194.914500px;}
.y17{bottom:196.933500px;}
.y5d{bottom:197.767500px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y2a{bottom:211.974000px;}
.y95{bottom:213.744000px;}
.y5c{bottom:216.597000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y29{bottom:229.863000px;}
.y94{bottom:232.573500px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y5b{bottom:235.426500px;}
.ybf{bottom:242.631000px;}
.y93{bottom:251.403000px;}
.y5a{bottom:254.256000px;}
.ybe{bottom:259.891500px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y92{bottom:270.232500px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y59{bottom:273.085500px;}
.ybd{bottom:277.150500px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y91{bottom:289.062000px;}
.y58{bottom:291.915000px;}
.y28{bottom:297.166500px;}
.y90{bottom:307.891500px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y57{bottom:310.744500px;}
.y27{bottom:315.054000px;}
.ybc{bottom:320.713500px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y8f{bottom:326.719500px;}
.y56{bottom:329.574000px;}
.y26{bottom:332.941500px;}
.ybb{bottom:339.543000px;}
.y8e{bottom:345.549000px;}
.ye{bottom:348.133500px;}
.y55{bottom:348.403500px;}
.yba{bottom:358.372500px;}
.y25{bottom:359.796000px;}
.y8d{bottom:364.378500px;}
.y54{bottom:367.233000px;}
.yb9{bottom:377.200500px;}
.y24{bottom:377.685000px;}
.y8c{bottom:383.208000px;}
.y53{bottom:386.062500px;}
.yd{bottom:386.785499px;}
.y23{bottom:395.572500px;}
.yb8{bottom:396.030000px;}
.y8b{bottom:402.037500px;}
.y52{bottom:404.892000px;}
.yc{bottom:408.044999px;}
.y22{bottom:413.460000px;}
.yb7{bottom:414.859500px;}
.y8a{bottom:420.867000px;}
.y51{bottom:423.721500px;}
.y21{bottom:431.349000px;}
.yb6{bottom:433.689000px;}
.y89{bottom:439.696500px;}
.y50{bottom:442.551000px;}
.yb5{bottom:452.518500px;}
.y88{bottom:458.526000px;}
.y4f{bottom:461.380500px;}
.yb4{bottom:471.348000px;}
.y87{bottom:477.355500px;}
.y4e{bottom:480.210000px;}
.yb3{bottom:490.177500px;}
.y86{bottom:496.185000px;}
.y4d{bottom:499.039500px;}
.yb2{bottom:509.007000px;}
.y85{bottom:515.014500px;}
.y4c{bottom:517.869000px;}
.yb{bottom:520.864502px;}
.yb1{bottom:527.836500px;}
.y84{bottom:533.844000px;}
.y4b{bottom:536.698500px;}
.ya{bottom:538.864499px;}
.yb0{bottom:546.666000px;}
.y83{bottom:552.673500px;}
.y4a{bottom:555.528000px;}
.y9{bottom:556.864499px;}
.yaf{bottom:565.495500px;}
.y82{bottom:571.503000px;}
.y49{bottom:574.357500px;}
.yae{bottom:584.325000px;}
.y81{bottom:590.332500px;}
.y48{bottom:593.187000px;}
.yad{bottom:603.154500px;}
.y80{bottom:609.162000px;}
.y47{bottom:612.016500px;}
.yac{bottom:621.984000px;}
.y7f{bottom:627.991500px;}
.y46{bottom:630.844500px;}
.yab{bottom:640.813500px;}
.y8{bottom:645.510000px;}
.y7e{bottom:646.821000px;}
.y45{bottom:649.674000px;}
.yaa{bottom:659.643000px;}
.y7d{bottom:665.650500px;}
.y7{bottom:666.771000px;}
.y44{bottom:668.503500px;}
.ya9{bottom:678.472500px;}
.y7c{bottom:684.480000px;}
.y43{bottom:687.333000px;}
.ya8{bottom:697.302000px;}
.y7b{bottom:703.309500px;}
.y42{bottom:706.162500px;}
.ya7{bottom:716.131500px;}
.y7a{bottom:722.139000px;}
.y41{bottom:724.992000px;}
.y6{bottom:726.298500px;}
.ya6{bottom:734.961000px;}
.y79{bottom:740.968500px;}
.y40{bottom:743.821500px;}
.y3{bottom:752.599495px;}
.ya5{bottom:753.790500px;}
.y78{bottom:759.798000px;}
.y3f{bottom:762.651000px;}
.ya4{bottom:772.620000px;}
.y77{bottom:778.627500px;}
.y3e{bottom:781.480500px;}
.ya3{bottom:791.449500px;}
.y76{bottom:797.457000px;}
.y3d{bottom:800.310000px;}
.ya2{bottom:810.279000px;}
.y75{bottom:816.286500px;}
.y3c{bottom:819.139500px;}
.ya1{bottom:829.108500px;}
.y74{bottom:835.114500px;}
.y3b{bottom:837.969000px;}
.ya0{bottom:847.938000px;}
.y73{bottom:853.944000px;}
.y3a{bottom:856.798500px;}
.y9f{bottom:866.767500px;}
.y72{bottom:872.773500px;}
.y39{bottom:875.628000px;}
.y2{bottom:879.369000px;}
.y9e{bottom:885.595500px;}
.y71{bottom:891.603000px;}
.y9d{bottom:908.908500px;}
.y70{bottom:910.432500px;}
.y6f{bottom:929.262000px;}
.y38{bottom:932.521500px;}
.y9c{bottom:942.532500px;}
.y6e{bottom:948.091500px;}
.y37{bottom:948.660000px;}
.y1{bottom:966.726000px;}
.y6d{bottom:966.921000px;}
.y9b{bottom:969.073500px;}
.y6c{bottom:985.750500px;}
.y36{bottom:996.750000px;}
.y6b{bottom:1004.580000px;}
.y6a{bottom:1023.409500px;}
.y35{bottom:1036.669500px;}
.y69{bottom:1042.239000px;}
.y68{bottom:1061.068500px;}
.y34{bottom:1064.913000px;}
.y67{bottom:1079.898000px;}
.y33{bottom:1093.158000px;}
.y66{bottom:1098.727500px;}
.y65{bottom:1117.557000px;}
.y31{bottom:1136.644500px;}
.y64{bottom:1177.662000px;}
.h9{height:30.461558px;}
.ha{height:30.670772px;}
.h7{height:32.130000px;}
.h10{height:34.813397px;}
.h12{height:35.052500px;}
.h13{height:39.165235px;}
.hf{height:43.038432px;}
.h11{height:43.516637px;}
.hd{height:43.815515px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hb{height:50.930649px;}
.h2{height:55.080000px;}
.he{height:77.469696px;}
.h5{height:78.030000px;}
.hc{height:87.128261px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.247128px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:53.574000px;}
.x6{left:58.056593px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x7{left:249.591000px;}
.x8{left:281.479500px;}
.xa{left:284.184000px;}
.x3{left:454.959000px;}
.x9{left:715.425000px;}
@media print{
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:10.626533pt;}
.ls8{letter-spacing:12.648506pt;}
.ls7{letter-spacing:13.276212pt;}
.ls6{letter-spacing:13.281867pt;}
.ls2{letter-spacing:13.287200pt;}
.ls3{letter-spacing:14.962285pt;}
.ls5{letter-spacing:18.245945pt;}
.ls4{letter-spacing:20.865553pt;}
.ws4a{word-spacing:-13.283467pt;}
.ws27{word-spacing:-10.626800pt;}
.ws5{word-spacing:-9.298400pt;}
.ws2a{word-spacing:-2.709827pt;}
.ws48{word-spacing:-2.072221pt;}
.ws22{word-spacing:-1.965953pt;}
.ws60{word-spacing:-1.912819pt;}
.ws43{word-spacing:-1.753418pt;}
.ws1b{word-spacing:-1.647150pt;}
.ws21{word-spacing:-1.115811pt;}
.ws63{word-spacing:-0.850142pt;}
.ws44{word-spacing:-0.797008pt;}
.ws1d{word-spacing:-0.743874pt;}
.ws2c{word-spacing:-0.690740pt;}
.ws1a{word-spacing:-0.584473pt;}
.ws41{word-spacing:-0.478205pt;}
.ws3f{word-spacing:-0.371937pt;}
.ws2b{word-spacing:-0.318803pt;}
.ws3d{word-spacing:-0.265669pt;}
.ws11{word-spacing:-0.212535pt;}
.wsc{word-spacing:-0.159402pt;}
.ws19{word-spacing:-0.106268pt;}
.ws15{word-spacing:-0.053134pt;}
.ws28{word-spacing:-0.042507pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.053134pt;}
.ws16{word-spacing:0.106268pt;}
.ws13{word-spacing:0.159402pt;}
.wsf{word-spacing:0.212535pt;}
.ws66{word-spacing:0.239104pt;}
.ws2d{word-spacing:0.265669pt;}
.wsd{word-spacing:0.318803pt;}
.ws50{word-spacing:0.371937pt;}
.ws47{word-spacing:0.478205pt;}
.ws20{word-spacing:0.637606pt;}
.ws31{word-spacing:0.850142pt;}
.ws38{word-spacing:0.956410pt;}
.ws2e{word-spacing:1.009543pt;}
.ws36{word-spacing:1.062677pt;}
.ws5b{word-spacing:1.115811pt;}
.wsb{word-spacing:1.227389pt;}
.ws4b{word-spacing:1.328347pt;}
.ws62{word-spacing:1.434614pt;}
.ws14{word-spacing:1.594016pt;}
.ws37{word-spacing:1.700284pt;}
.ws12{word-spacing:1.806551pt;}
.ws23{word-spacing:1.912819pt;}
.ws29{word-spacing:1.965953pt;}
.ws3c{word-spacing:2.178489pt;}
.ws2{word-spacing:2.231435pt;}
.ws10{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws3e{word-spacing:2.284756pt;}
.ws35{word-spacing:2.337890pt;}
.ws25{word-spacing:2.391024pt;}
.ws45{word-spacing:2.444158pt;}
.wse{word-spacing:2.709827pt;}
.ws49{word-spacing:2.866509pt;}
.ws17{word-spacing:3.081764pt;}
.ws65{word-spacing:3.108352pt;}
.ws5f{word-spacing:3.184641pt;}
.ws5c{word-spacing:3.189418pt;}
.ws2f{word-spacing:3.453701pt;}
.ws1c{word-spacing:3.506835pt;}
.ws46{word-spacing:3.559969pt;}
.ws3a{word-spacing:3.878772pt;}
.ws56{word-spacing:3.931906pt;}
.ws4d{word-spacing:4.091308pt;}
.ws24{word-spacing:4.250709pt;}
.ws1f{word-spacing:4.303843pt;}
.ws18{word-spacing:4.569513pt;}
.ws34{word-spacing:4.675780pt;}
.ws9{word-spacing:4.872362pt;}
.ws58{word-spacing:4.941450pt;}
.ws42{word-spacing:5.100851pt;}
.ws33{word-spacing:5.207119pt;}
.ws30{word-spacing:5.366521pt;}
.ws39{word-spacing:5.791591pt;}
.ws40{word-spacing:5.844725pt;}
.ws51{word-spacing:6.004127pt;}
.ws3b{word-spacing:6.269796pt;}
.ws54{word-spacing:6.482332pt;}
.ws55{word-spacing:6.801135pt;}
.ws5e{word-spacing:7.279340pt;}
.ws32{word-spacing:7.385607pt;}
.ws59{word-spacing:7.438741pt;}
.ws53{word-spacing:7.598143pt;}
.ws3{word-spacing:9.261767pt;}
.ws8{word-spacing:10.525789pt;}
.ws26{word-spacing:10.583895pt;}
.ws7{word-spacing:11.827565pt;}
.ws64{word-spacing:12.364047pt;}
.ws4f{word-spacing:13.126788pt;}
.ws61{word-spacing:13.208349pt;}
.ws5d{word-spacing:13.225108pt;}
.ws5a{word-spacing:13.230442pt;}
.ws4{word-spacing:13.761632pt;}
.wsa{word-spacing:14.282342pt;}
.ws4c{word-spacing:14.517762pt;}
.ws57{word-spacing:17.142598pt;}
.ws4e{word-spacing:17.330834pt;}
.ws52{word-spacing:19.239330pt;}
.ws6{word-spacing:26.011518pt;}
._19{margin-left:-17.162171pt;}
._6{margin-left:-6.110395pt;}
._b{margin-left:-4.782048pt;}
._f{margin-left:-3.825638pt;}
._1{margin-left:-2.720142pt;}
._4{margin-left:-1.301776pt;}
._1b{width:2.582323pt;}
._0{width:11.530016pt;}
._c{width:13.175632pt;}
._8{width:15.488518pt;}
._7{width:16.790302pt;}
._10{width:17.746711pt;}
._a{width:18.862523pt;}
._12{width:19.872066pt;}
._16{width:21.545779pt;}
._2{width:22.502128pt;}
._17{width:23.830535pt;}
._14{width:25.132311pt;}
._3{width:27.783619pt;}
._5{width:29.648896pt;}
._9{width:30.844206pt;}
._13{width:32.411659pt;}
._11{width:33.607167pt;}
._15{width:35.652825pt;}
._1a{width:59.669332pt;}
._18{width:85.811195pt;}
._d{width:643.431486pt;}
._e{width:2265.485333pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.507200pt;}
.fsa{font-size:47.820800pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.fs6{font-size:114.229120pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:14.848190pt;}
.y63{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y62{bottom:92.108000pt;}
.y30{bottom:93.018667pt;}
.y9a{bottom:106.308000pt;}
.y61{bottom:108.844000pt;}
.y2f{bottom:108.920000pt;}
.y99{bottom:123.045333pt;}
.y20{bottom:123.790666pt;}
.y2e{bottom:124.820000pt;}
.y60{bottom:125.581333pt;}
.y98{bottom:139.782667pt;}
.y2d{bottom:140.720000pt;}
.y5f{bottom:142.318667pt;}
.y97{bottom:156.520000pt;}
.y2c{bottom:156.621333pt;}
.y5e{bottom:159.056000pt;}
.y2b{bottom:172.521333pt;}
.y96{bottom:173.257333pt;}
.y17{bottom:175.052000pt;}
.y5d{bottom:175.793333pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y2a{bottom:188.421333pt;}
.y95{bottom:189.994667pt;}
.y5c{bottom:192.530667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y29{bottom:204.322667pt;}
.y94{bottom:206.732000pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y5b{bottom:209.268000pt;}
.ybf{bottom:215.672000pt;}
.y93{bottom:223.469333pt;}
.y5a{bottom:226.005333pt;}
.ybe{bottom:231.014667pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y92{bottom:240.206667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y59{bottom:242.742667pt;}
.ybd{bottom:246.356000pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y91{bottom:256.944000pt;}
.y58{bottom:259.480000pt;}
.y28{bottom:264.148000pt;}
.y90{bottom:273.681333pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y57{bottom:276.217333pt;}
.y27{bottom:280.048000pt;}
.ybc{bottom:285.078667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y8f{bottom:290.417333pt;}
.y56{bottom:292.954667pt;}
.y26{bottom:295.948000pt;}
.ybb{bottom:301.816000pt;}
.y8e{bottom:307.154667pt;}
.ye{bottom:309.452000pt;}
.y55{bottom:309.692000pt;}
.yba{bottom:318.553333pt;}
.y25{bottom:319.818667pt;}
.y8d{bottom:323.892000pt;}
.y54{bottom:326.429333pt;}
.yb9{bottom:335.289333pt;}
.y24{bottom:335.720000pt;}
.y8c{bottom:340.629333pt;}
.y53{bottom:343.166667pt;}
.yd{bottom:343.809333pt;}
.y23{bottom:351.620000pt;}
.yb8{bottom:352.026667pt;}
.y8b{bottom:357.366667pt;}
.y52{bottom:359.904000pt;}
.yc{bottom:362.706666pt;}
.y22{bottom:367.520000pt;}
.yb7{bottom:368.764000pt;}
.y8a{bottom:374.104000pt;}
.y51{bottom:376.641333pt;}
.y21{bottom:383.421333pt;}
.yb6{bottom:385.501333pt;}
.y89{bottom:390.841333pt;}
.y50{bottom:393.378667pt;}
.yb5{bottom:402.238667pt;}
.y88{bottom:407.578667pt;}
.y4f{bottom:410.116000pt;}
.yb4{bottom:418.976000pt;}
.y87{bottom:424.316000pt;}
.y4e{bottom:426.853333pt;}
.yb3{bottom:435.713333pt;}
.y86{bottom:441.053333pt;}
.y4d{bottom:443.590667pt;}
.yb2{bottom:452.450667pt;}
.y85{bottom:457.790667pt;}
.y4c{bottom:460.328000pt;}
.yb{bottom:462.990669pt;}
.yb1{bottom:469.188000pt;}
.y84{bottom:474.528000pt;}
.y4b{bottom:477.065333pt;}
.ya{bottom:478.990666pt;}
.yb0{bottom:485.925333pt;}
.y83{bottom:491.265333pt;}
.y4a{bottom:493.802667pt;}
.y9{bottom:494.990666pt;}
.yaf{bottom:502.662667pt;}
.y82{bottom:508.002667pt;}
.y49{bottom:510.540000pt;}
.yae{bottom:519.400000pt;}
.y81{bottom:524.740000pt;}
.y48{bottom:527.277333pt;}
.yad{bottom:536.137333pt;}
.y80{bottom:541.477333pt;}
.y47{bottom:544.014667pt;}
.yac{bottom:552.874667pt;}
.y7f{bottom:558.214667pt;}
.y46{bottom:560.750667pt;}
.yab{bottom:569.612000pt;}
.y8{bottom:573.786667pt;}
.y7e{bottom:574.952000pt;}
.y45{bottom:577.488000pt;}
.yaa{bottom:586.349333pt;}
.y7d{bottom:591.689333pt;}
.y7{bottom:592.685334pt;}
.y44{bottom:594.225333pt;}
.ya9{bottom:603.086667pt;}
.y7c{bottom:608.426667pt;}
.y43{bottom:610.962667pt;}
.ya8{bottom:619.824000pt;}
.y7b{bottom:625.164000pt;}
.y42{bottom:627.700000pt;}
.ya7{bottom:636.561333pt;}
.y7a{bottom:641.901333pt;}
.y41{bottom:644.437333pt;}
.y6{bottom:645.598667pt;}
.ya6{bottom:653.298667pt;}
.y79{bottom:658.638667pt;}
.y40{bottom:661.174667pt;}
.y3{bottom:668.977329pt;}
.ya5{bottom:670.036000pt;}
.y78{bottom:675.376000pt;}
.y3f{bottom:677.912000pt;}
.ya4{bottom:686.773333pt;}
.y77{bottom:692.113333pt;}
.y3e{bottom:694.649333pt;}
.ya3{bottom:703.510667pt;}
.y76{bottom:708.850667pt;}
.y3d{bottom:711.386667pt;}
.ya2{bottom:720.248000pt;}
.y75{bottom:725.588000pt;}
.y3c{bottom:728.124000pt;}
.ya1{bottom:736.985333pt;}
.y74{bottom:742.324000pt;}
.y3b{bottom:744.861333pt;}
.ya0{bottom:753.722667pt;}
.y73{bottom:759.061333pt;}
.y3a{bottom:761.598667pt;}
.y9f{bottom:770.460000pt;}
.y72{bottom:775.798667pt;}
.y39{bottom:778.336000pt;}
.y2{bottom:781.661334pt;}
.y9e{bottom:787.196000pt;}
.y71{bottom:792.536000pt;}
.y9d{bottom:807.918667pt;}
.y70{bottom:809.273333pt;}
.y6f{bottom:826.010667pt;}
.y38{bottom:828.908000pt;}
.y9c{bottom:837.806667pt;}
.y6e{bottom:842.748000pt;}
.y37{bottom:843.253333pt;}
.y1{bottom:859.312000pt;}
.y6d{bottom:859.485333pt;}
.y9b{bottom:861.398667pt;}
.y6c{bottom:876.222667pt;}
.y36{bottom:886.000000pt;}
.y6b{bottom:892.960000pt;}
.y6a{bottom:909.697333pt;}
.y35{bottom:921.484000pt;}
.y69{bottom:926.434667pt;}
.y68{bottom:943.172000pt;}
.y34{bottom:946.589333pt;}
.y67{bottom:959.909333pt;}
.y33{bottom:971.696000pt;}
.y66{bottom:976.646667pt;}
.y65{bottom:993.384000pt;}
.y31{bottom:1010.350667pt;}
.y64{bottom:1046.810667pt;}
.h9{height:27.076941pt;}
.ha{height:27.262909pt;}
.h7{height:28.560000pt;}
.h10{height:30.945242pt;}
.h12{height:31.157778pt;}
.h13{height:34.813542pt;}
.hf{height:38.256384pt;}
.h11{height:38.681455pt;}
.hd{height:38.947124pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hb{height:45.271688pt;}
.h2{height:48.960000pt;}
.he{height:68.861952pt;}
.h5{height:69.360000pt;}
.hc{height:77.447343pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.330780pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:47.621333pt;}
.x6{left:51.605861pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x7{left:221.858667pt;}
.x8{left:250.204000pt;}
.xa{left:252.608000pt;}
.x3{left:404.408000pt;}
.x9{left:635.933333pt;}
}




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