
    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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_2d96d7d6201344c1d3077ce7.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_bec3ede824214ee41bac8db1.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_a684b5ffe5e1b990504d3341.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;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_c9d007e9d3b20d8e04d4edf2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894000;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_4da960a80d35cc3bd4a6f5b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m17{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);}
.m7{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);}
.m3{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);}
.m1e{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);}
.m15{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);}
.m22{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);}
.m5{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);}
.m20{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);}
.m23{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);}
.mc{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);}
.m8{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m6{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);}
.m9{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);}
.m19{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);}
.m11{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);}
.m1d{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);}
.m1b{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);}
.m1a{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);}
.m10{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);}
.m1{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);}
.mb{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);}
.m13{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);}
.me{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);}
.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);}
.m14{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);}
.m1c{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);}
.mf{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);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.001933px;}
.ls7{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls1{letter-spacing:10.461300px;}
.ls6{letter-spacing:11.954850px;}
.lsb{letter-spacing:12.932033px;}
.ls9{letter-spacing:13.448400px;}
.lsa{letter-spacing:13.454400px;}
.lsc{letter-spacing:13.519788px;}
.lsd{letter-spacing:13.614230px;}
.ls3{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls2{letter-spacing:72.361200px;}
.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;}
}
.ws10{word-spacing:-110.285406px;}
.ws52{word-spacing:-13.449600px;}
.ws2a{word-spacing:-11.955150px;}
.ws11{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws3d{word-spacing:-2.630126px;}
.ws47{word-spacing:-2.391024px;}
.ws1b{word-spacing:-2.151922px;}
.ws1{word-spacing:-1.908367px;}
.ws38{word-spacing:-1.853044px;}
.ws48{word-spacing:-1.733492px;}
.ws43{word-spacing:-1.613941px;}
.ws61{word-spacing:-1.344960px;}
.ws0{word-spacing:-1.322630px;}
.ws6{word-spacing:-1.171598px;}
.ws2e{word-spacing:-1.075961px;}
.ws8{word-spacing:-1.046070px;}
.ws31{word-spacing:-0.777083px;}
.ws5d{word-spacing:-0.699379px;}
.ws2d{word-spacing:-0.418429px;}
.ws37{word-spacing:-0.358654px;}
.ws17{word-spacing:-0.298878px;}
.ws59{word-spacing:-0.268992px;}
.ws22{word-spacing:-0.239102px;}
.ws54{word-spacing:-0.215194px;}
.ws28{word-spacing:-0.179327px;}
.ws5a{word-spacing:-0.161395px;}
.ws20{word-spacing:-0.119551px;}
.ws5e{word-spacing:-0.107597px;}
.ws13{word-spacing:-0.059776px;}
.ws4e{word-spacing:-0.053798px;}
.ws2b{word-spacing:-0.047821px;}
.ws5{word-spacing:-0.041843px;}
.ws4f{word-spacing:-0.028781px;}
.ws3{word-spacing:0.000000px;}
.ws5f{word-spacing:0.053798px;}
.ws1f{word-spacing:0.059776px;}
.ws51{word-spacing:0.107597px;}
.ws1d{word-spacing:0.119551px;}
.ws58{word-spacing:0.161395px;}
.ws25{word-spacing:0.179327px;}
.ws57{word-spacing:0.215194px;}
.ws1a{word-spacing:0.239102px;}
.ws1c{word-spacing:0.298878px;}
.ws3c{word-spacing:0.358654px;}
.ws40{word-spacing:0.537980px;}
.ws26{word-spacing:0.597756px;}
.ws36{word-spacing:0.777083px;}
.ws3b{word-spacing:0.836858px;}
.ws7{word-spacing:1.004227px;}
.ws23{word-spacing:1.195512px;}
.ws4d{word-spacing:1.237363px;}
.ws1e{word-spacing:1.434614px;}
.ws4c{word-spacing:1.560154px;}
.ws2f{word-spacing:1.733492px;}
.ws32{word-spacing:1.912819px;}
.ws30{word-spacing:1.972595px;}
.ws4a{word-spacing:2.331248px;}
.ws2{word-spacing:2.511541px;}
.ws2c{word-spacing:2.570351px;}
.ws35{word-spacing:2.630126px;}
.ws56{word-spacing:2.689920px;}
.ws46{word-spacing:2.749678px;}
.ws12{word-spacing:2.869236px;}
.ws15{word-spacing:2.929004px;}
.ws55{word-spacing:3.012710px;}
.ws33{word-spacing:3.168107px;}
.ws5b{word-spacing:3.222758px;}
.ws44{word-spacing:3.287658px;}
.ws24{word-spacing:3.765863px;}
.ws39{word-spacing:4.064741px;}
.ws60{word-spacing:4.250074px;}
.ws14{word-spacing:4.363619px;}
.ws19{word-spacing:4.423394px;}
.ws3a{word-spacing:4.483170px;}
.wse{word-spacing:4.770079px;}
.ws18{word-spacing:4.841824px;}
.wsf{word-spacing:4.853765px;}
.ws45{word-spacing:5.260253px;}
.ws49{word-spacing:5.439580px;}
.ws41{word-spacing:5.559131px;}
.ws21{word-spacing:5.678682px;}
.ws16{word-spacing:6.216662px;}
.ws27{word-spacing:6.336214px;}
.ws42{word-spacing:6.575316px;}
.ws3f{word-spacing:6.754643px;}
.ws3e{word-spacing:7.412174px;}
.wsc{word-spacing:7.782761px;}
.ws4b{word-spacing:8.488135px;}
.ws34{word-spacing:9.504320px;}
.ws5c{word-spacing:10.921075px;}
.ws29{word-spacing:11.903953px;}
.wsa{word-spacing:12.176255px;}
.ws53{word-spacing:13.391846px;}
.ws50{word-spacing:13.395802px;}
.wsb{word-spacing:16.109478px;}
.wsd{word-spacing:26.109907px;}
.ws9{word-spacing:26.840252px;}
._16{margin-left:-7.516591px;}
._c{margin-left:-6.515540px;}
._8{margin-left:-5.260266px;}
._7{margin-left:-3.538724px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._4{width:2.301354px;}
._6{width:3.675546px;}
._2{width:12.216992px;}
._18{width:14.368982px;}
._f{width:15.369896px;}
._d{width:17.296951px;}
._b{width:18.956432px;}
._e{width:19.965050px;}
._10{width:22.363642px;}
._15{width:24.627547px;}
._3{width:25.946136px;}
._a{width:27.922772px;}
._1b{width:29.584643px;}
._5{width:30.587087px;}
._9{width:31.628860px;}
._19{width:34.849175px;}
._11{width:36.044687px;}
._12{width:38.077057px;}
._17{width:41.192956px;}
._1a{width:88.767360px;}
._13{width:835.298611px;}
._14{width:2549.534700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(54,44,83);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:141.755020px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y1a{bottom:16.933071px;}
.y4a{bottom:31.890000px;}
.y18{bottom:104.646000px;}
.y83{bottom:107.641500px;}
.y49{bottom:113.239500px;}
.y17{bottom:122.535000px;}
.y95{bottom:124.543500px;}
.y82{bottom:126.471000px;}
.y48{bottom:132.069000px;}
.y16{bottom:140.422500px;}
.y94{bottom:141.804000px;}
.y81{bottom:145.300500px;}
.y47{bottom:150.897000px;}
.y15{bottom:158.310000px;}
.y93{bottom:159.063000px;}
.y80{bottom:164.130000px;}
.y46{bottom:169.726500px;}
.y14{bottom:176.199000px;}
.y92{bottom:176.323500px;}
.y7f{bottom:182.959500px;}
.y45{bottom:188.556000px;}
.y91{bottom:193.584000px;}
.y13{bottom:194.086500px;}
.y7e{bottom:201.789000px;}
.y44{bottom:207.385500px;}
.y90{bottom:210.844500px;}
.y12{bottom:211.974000px;}
.y7d{bottom:220.618500px;}
.y43{bottom:226.215000px;}
.y8f{bottom:228.105000px;}
.y11{bottom:229.863000px;}
.y7c{bottom:239.446500px;}
.y42{bottom:245.044500px;}
.y8e{bottom:245.365500px;}
.y7b{bottom:258.276000px;}
.y8d{bottom:262.626000px;}
.y41{bottom:263.874000px;}
.y7a{bottom:277.105500px;}
.y8c{bottom:279.886500px;}
.y40{bottom:282.703500px;}
.y79{bottom:295.935000px;}
.y8b{bottom:297.145500px;}
.y10{bottom:300.154500px;}
.y3f{bottom:301.533000px;}
.y8a{bottom:314.406000px;}
.y78{bottom:314.764500px;}
.yf{bottom:318.043500px;}
.y3e{bottom:320.362500px;}
.y89{bottom:331.666500px;}
.y77{bottom:333.594000px;}
.ye{bottom:335.931000px;}
.y3d{bottom:339.192000px;}
.y76{bottom:352.423500px;}
.y88{bottom:353.410500px;}
.yd{bottom:353.818500px;}
.y3c{bottom:358.021500px;}
.y75{bottom:371.253000px;}
.y3b{bottom:376.851000px;}
.yc{bottom:380.673000px;}
.y87{bottom:387.034500px;}
.y74{bottom:390.082500px;}
.y3a{bottom:395.680500px;}
.yb{bottom:398.562000px;}
.y73{bottom:408.912000px;}
.y86{bottom:413.575500px;}
.y39{bottom:414.510000px;}
.ya{bottom:416.449500px;}
.y72{bottom:427.741500px;}
.y85{bottom:431.149500px;}
.y38{bottom:433.339500px;}
.y9{bottom:443.304000px;}
.y71{bottom:446.571000px;}
.y84{bottom:448.723500px;}
.y37{bottom:452.169000px;}
.y8{bottom:461.191500px;}
.y70{bottom:465.400500px;}
.y36{bottom:470.998500px;}
.y7{bottom:479.079000px;}
.y6f{bottom:484.230000px;}
.y35{bottom:489.828000px;}
.y6{bottom:496.968000px;}
.y6e{bottom:503.059500px;}
.y34{bottom:508.657500px;}
.y5{bottom:514.855500px;}
.y6d{bottom:521.889000px;}
.y33{bottom:527.487000px;}
.y4{bottom:532.743000px;}
.y6c{bottom:540.718500px;}
.y32{bottom:546.316500px;}
.y1{bottom:550.631964px;}
.y6b{bottom:559.548000px;}
.y31{bottom:565.146000px;}
.y6a{bottom:578.377500px;}
.y30{bottom:583.975500px;}
.y69{bottom:597.207000px;}
.y2f{bottom:602.805000px;}
.y68{bottom:616.036500px;}
.y2e{bottom:621.634500px;}
.y67{bottom:634.866000px;}
.y2d{bottom:640.464000px;}
.y66{bottom:650.965500px;}
.y65{bottom:653.695500px;}
.y2c{bottom:659.292000px;}
.y64{bottom:672.525000px;}
.y2b{bottom:678.121500px;}
.y63{bottom:691.354500px;}
.y2a{bottom:696.951000px;}
.y62{bottom:710.184000px;}
.y29{bottom:715.780500px;}
.y61{bottom:729.013500px;}
.y28{bottom:734.610000px;}
.y60{bottom:747.843000px;}
.y27{bottom:753.439500px;}
.y5f{bottom:766.671000px;}
.y26{bottom:772.269000px;}
.y5e{bottom:785.500500px;}
.y25{bottom:791.098500px;}
.y5d{bottom:804.330000px;}
.y5c{bottom:823.159500px;}
.ya4{bottom:829.437000px;}
.y5b{bottom:841.989000px;}
.ya3{bottom:846.697500px;}
.y5a{bottom:860.818500px;}
.ya2{bottom:863.956500px;}
.y24{bottom:866.851500px;}
.y59{bottom:879.648000px;}
.ya1{bottom:881.217000px;}
.y23{bottom:882.990000px;}
.y57{bottom:898.477500px;}
.y22{bottom:903.469500px;}
.y58{bottom:903.903000px;}
.y21{bottom:915.270000px;}
.ya0{bottom:915.738000px;}
.y56{bottom:917.307000px;}
.y20{bottom:931.410000px;}
.y9f{bottom:932.998500px;}
.y55{bottom:936.136500px;}
.y9e{bottom:950.259000px;}
.y1f{bottom:951.888000px;}
.y54{bottom:954.966000px;}
.y9d{bottom:967.519500px;}
.y53{bottom:973.795500px;}
.y9c{bottom:984.780000px;}
.y52{bottom:992.625000px;}
.y1e{bottom:996.565500px;}
.y9b{bottom:1002.040500px;}
.y51{bottom:1011.454500px;}
.y9a{bottom:1019.299500px;}
.y50{bottom:1030.284000px;}
.y1d{bottom:1036.485000px;}
.y99{bottom:1036.560000px;}
.y4f{bottom:1049.113500px;}
.y98{bottom:1053.820500px;}
.y1c{bottom:1064.728500px;}
.y4e{bottom:1067.943000px;}
.y97{bottom:1071.081000px;}
.y4d{bottom:1086.772500px;}
.y96{bottom:1088.341500px;}
.y1b{bottom:1092.972000px;}
.y4c{bottom:1105.602000px;}
.y19{bottom:1136.460000px;}
.y4b{bottom:1168.366500px;}
.h2{height:25.508090px;}
.hc{height:26.110157px;}
.h5{height:30.461558px;}
.h6{height:30.670772px;}
.h10{height:33.072749px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.hd{height:34.813397px;}
.hf{height:35.052500px;}
.h11{height:38.734848px;}
.h12{height:39.165235px;}
.h14{height:39.434227px;}
.h13{height:43.038432px;}
.he{height:43.516637px;}
.h9{height:43.815515px;}
.h7{height:50.930649px;}
.hb{height:54.405312px;}
.ha{height:77.469696px;}
.h8{height:96.109904px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:192.612344px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x3{left:52.005000px;}
.x1{left:53.574073px;}
.x4{left:60.720389px;}
.x21{left:85.848000px;}
.x7{left:248.526000px;}
.x5{left:249.591000px;}
.x15{left:254.173500px;}
.x6{left:269.914500px;}
.x8{left:281.479500px;}
.x16{left:351.457500px;}
.xf{left:369.009000px;}
.x10{left:382.423500px;}
.x20{left:391.869000px;}
.x11{left:481.803000px;}
.x12{left:495.217500px;}
.xd{left:530.715000px;}
.xe{left:538.188000px;}
.x19{left:573.849000px;}
.x1a{left:581.535000px;}
.xb{left:585.540000px;}
.xc{left:593.013000px;}
.x13{left:607.759500px;}
.x14{left:616.990500px;}
.x24{left:628.731000px;}
.x26{left:633.985500px;}
.x25{left:655.630500px;}
.x27{left:660.885000px;}
.x1d{left:672.234000px;}
.x1e{left:679.705500px;}
.x17{left:703.215000px;}
.x18{left:710.686500px;}
.x22{left:758.653500px;}
.x23{left:785.553000px;}
.x1b{left:787.495500px;}
.x1c{left:795.181500px;}
.x1f{left:818.011500px;}
.x9{left:825.169500px;}
.xa{left:832.642500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.001718pt;}
.ls7{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls1{letter-spacing:9.298933pt;}
.ls6{letter-spacing:10.626533pt;}
.lsb{letter-spacing:11.495140pt;}
.ls9{letter-spacing:11.954133pt;}
.lsa{letter-spacing:11.959467pt;}
.lsc{letter-spacing:12.017589pt;}
.lsd{letter-spacing:12.101538pt;}
.ls3{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls2{letter-spacing:64.321067pt;}
.ws10{word-spacing:-98.031472pt;}
.ws52{word-spacing:-11.955200pt;}
.ws2a{word-spacing:-10.626800pt;}
.ws11{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws3d{word-spacing:-2.337890pt;}
.ws47{word-spacing:-2.125355pt;}
.ws1b{word-spacing:-1.912819pt;}
.ws1{word-spacing:-1.696326pt;}
.ws38{word-spacing:-1.647150pt;}
.ws48{word-spacing:-1.540882pt;}
.ws43{word-spacing:-1.434614pt;}
.ws61{word-spacing:-1.195520pt;}
.ws0{word-spacing:-1.175671pt;}
.ws6{word-spacing:-1.041421pt;}
.ws2e{word-spacing:-0.956410pt;}
.ws8{word-spacing:-0.929840pt;}
.ws31{word-spacing:-0.690740pt;}
.ws5d{word-spacing:-0.621670pt;}
.ws2d{word-spacing:-0.371937pt;}
.ws37{word-spacing:-0.318803pt;}
.ws17{word-spacing:-0.265669pt;}
.ws59{word-spacing:-0.239104pt;}
.ws22{word-spacing:-0.212535pt;}
.ws54{word-spacing:-0.191283pt;}
.ws28{word-spacing:-0.159402pt;}
.ws5a{word-spacing:-0.143462pt;}
.ws20{word-spacing:-0.106268pt;}
.ws5e{word-spacing:-0.095642pt;}
.ws13{word-spacing:-0.053134pt;}
.ws4e{word-spacing:-0.047821pt;}
.ws2b{word-spacing:-0.042507pt;}
.ws5{word-spacing:-0.037194pt;}
.ws4f{word-spacing:-0.025583pt;}
.ws3{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.047821pt;}
.ws1f{word-spacing:0.053134pt;}
.ws51{word-spacing:0.095642pt;}
.ws1d{word-spacing:0.106268pt;}
.ws58{word-spacing:0.143462pt;}
.ws25{word-spacing:0.159402pt;}
.ws57{word-spacing:0.191283pt;}
.ws1a{word-spacing:0.212535pt;}
.ws1c{word-spacing:0.265669pt;}
.ws3c{word-spacing:0.318803pt;}
.ws40{word-spacing:0.478205pt;}
.ws26{word-spacing:0.531339pt;}
.ws36{word-spacing:0.690740pt;}
.ws3b{word-spacing:0.743874pt;}
.ws7{word-spacing:0.892646pt;}
.ws23{word-spacing:1.062677pt;}
.ws4d{word-spacing:1.099878pt;}
.ws1e{word-spacing:1.275213pt;}
.ws4c{word-spacing:1.386803pt;}
.ws2f{word-spacing:1.540882pt;}
.ws32{word-spacing:1.700284pt;}
.ws30{word-spacing:1.753418pt;}
.ws4a{word-spacing:2.072221pt;}
.ws2{word-spacing:2.232481pt;}
.ws2c{word-spacing:2.284756pt;}
.ws35{word-spacing:2.337890pt;}
.ws56{word-spacing:2.391040pt;}
.ws46{word-spacing:2.444158pt;}
.ws12{word-spacing:2.550432pt;}
.ws15{word-spacing:2.603559pt;}
.ws55{word-spacing:2.677965pt;}
.ws33{word-spacing:2.816095pt;}
.ws5b{word-spacing:2.864674pt;}
.ws44{word-spacing:2.922363pt;}
.ws24{word-spacing:3.347434pt;}
.ws39{word-spacing:3.613103pt;}
.ws60{word-spacing:3.777843pt;}
.ws14{word-spacing:3.878772pt;}
.ws19{word-spacing:3.931906pt;}
.ws3a{word-spacing:3.985040pt;}
.wse{word-spacing:4.240070pt;}
.ws18{word-spacing:4.303843pt;}
.wsf{word-spacing:4.314458pt;}
.ws45{word-spacing:4.675780pt;}
.ws49{word-spacing:4.835182pt;}
.ws41{word-spacing:4.941450pt;}
.ws21{word-spacing:5.047717pt;}
.ws16{word-spacing:5.525922pt;}
.ws27{word-spacing:5.632190pt;}
.ws42{word-spacing:5.844725pt;}
.ws3f{word-spacing:6.004127pt;}
.ws3e{word-spacing:6.588599pt;}
.wsc{word-spacing:6.918010pt;}
.ws4b{word-spacing:7.545009pt;}
.ws34{word-spacing:8.448285pt;}
.ws5c{word-spacing:9.707622pt;}
.ws29{word-spacing:10.581291pt;}
.wsa{word-spacing:10.823338pt;}
.ws53{word-spacing:11.903863pt;}
.ws50{word-spacing:11.907379pt;}
.wsb{word-spacing:14.319536pt;}
.wsd{word-spacing:23.208806pt;}
.ws9{word-spacing:23.858002pt;}
._16{margin-left:-6.681414pt;}
._c{margin-left:-5.791591pt;}
._8{margin-left:-4.675792pt;}
._7{margin-left:-3.145533pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._4{width:2.045648pt;}
._6{width:3.267152pt;}
._2{width:10.859549pt;}
._18{width:12.772429pt;}
._f{width:13.662130pt;}
._d{width:15.375068pt;}
._b{width:16.850162pt;}
._e{width:17.746711pt;}
._10{width:19.878793pt;}
._15{width:21.891153pt;}
._3{width:23.063232pt;}
._a{width:24.820242pt;}
._1b{width:26.297460pt;}
._5{width:27.188522pt;}
._9{width:28.114542pt;}
._19{width:30.977044pt;}
._11{width:32.039722pt;}
._12{width:33.846273pt;}
._17{width:36.615961pt;}
._1a{width:78.904320pt;}
._13{width:742.487654pt;}
._14{width:2266.253067pt;}
.fs7{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:126.004462pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y1a{bottom:15.051618pt;}
.y4a{bottom:28.346667pt;}
.y18{bottom:93.018667pt;}
.y83{bottom:95.681333pt;}
.y49{bottom:100.657333pt;}
.y17{bottom:108.920000pt;}
.y95{bottom:110.705333pt;}
.y82{bottom:112.418667pt;}
.y48{bottom:117.394667pt;}
.y16{bottom:124.820000pt;}
.y94{bottom:126.048000pt;}
.y81{bottom:129.156000pt;}
.y47{bottom:134.130667pt;}
.y15{bottom:140.720000pt;}
.y93{bottom:141.389333pt;}
.y80{bottom:145.893333pt;}
.y46{bottom:150.868000pt;}
.y14{bottom:156.621333pt;}
.y92{bottom:156.732000pt;}
.y7f{bottom:162.630667pt;}
.y45{bottom:167.605333pt;}
.y91{bottom:172.074667pt;}
.y13{bottom:172.521333pt;}
.y7e{bottom:179.368000pt;}
.y44{bottom:184.342667pt;}
.y90{bottom:187.417333pt;}
.y12{bottom:188.421333pt;}
.y7d{bottom:196.105333pt;}
.y43{bottom:201.080000pt;}
.y8f{bottom:202.760000pt;}
.y11{bottom:204.322667pt;}
.y7c{bottom:212.841333pt;}
.y42{bottom:217.817333pt;}
.y8e{bottom:218.102667pt;}
.y7b{bottom:229.578667pt;}
.y8d{bottom:233.445333pt;}
.y41{bottom:234.554667pt;}
.y7a{bottom:246.316000pt;}
.y8c{bottom:248.788000pt;}
.y40{bottom:251.292000pt;}
.y79{bottom:263.053333pt;}
.y8b{bottom:264.129333pt;}
.y10{bottom:266.804000pt;}
.y3f{bottom:268.029333pt;}
.y8a{bottom:279.472000pt;}
.y78{bottom:279.790667pt;}
.yf{bottom:282.705333pt;}
.y3e{bottom:284.766667pt;}
.y89{bottom:294.814667pt;}
.y77{bottom:296.528000pt;}
.ye{bottom:298.605333pt;}
.y3d{bottom:301.504000pt;}
.y76{bottom:313.265333pt;}
.y88{bottom:314.142667pt;}
.yd{bottom:314.505333pt;}
.y3c{bottom:318.241333pt;}
.y75{bottom:330.002667pt;}
.y3b{bottom:334.978667pt;}
.yc{bottom:338.376000pt;}
.y87{bottom:344.030667pt;}
.y74{bottom:346.740000pt;}
.y3a{bottom:351.716000pt;}
.yb{bottom:354.277333pt;}
.y73{bottom:363.477333pt;}
.y86{bottom:367.622667pt;}
.y39{bottom:368.453333pt;}
.ya{bottom:370.177333pt;}
.y72{bottom:380.214667pt;}
.y85{bottom:383.244000pt;}
.y38{bottom:385.190667pt;}
.y9{bottom:394.048000pt;}
.y71{bottom:396.952000pt;}
.y84{bottom:398.865333pt;}
.y37{bottom:401.928000pt;}
.y8{bottom:409.948000pt;}
.y70{bottom:413.689333pt;}
.y36{bottom:418.665333pt;}
.y7{bottom:425.848000pt;}
.y6f{bottom:430.426667pt;}
.y35{bottom:435.402667pt;}
.y6{bottom:441.749333pt;}
.y6e{bottom:447.164000pt;}
.y34{bottom:452.140000pt;}
.y5{bottom:457.649333pt;}
.y6d{bottom:463.901333pt;}
.y33{bottom:468.877333pt;}
.y4{bottom:473.549333pt;}
.y6c{bottom:480.638667pt;}
.y32{bottom:485.614667pt;}
.y1{bottom:489.450634pt;}
.y6b{bottom:497.376000pt;}
.y31{bottom:502.352000pt;}
.y6a{bottom:514.113333pt;}
.y30{bottom:519.089333pt;}
.y69{bottom:530.850667pt;}
.y2f{bottom:535.826667pt;}
.y68{bottom:547.588000pt;}
.y2e{bottom:552.564000pt;}
.y67{bottom:564.325333pt;}
.y2d{bottom:569.301333pt;}
.y66{bottom:578.636000pt;}
.y65{bottom:581.062667pt;}
.y2c{bottom:586.037333pt;}
.y64{bottom:597.800000pt;}
.y2b{bottom:602.774667pt;}
.y63{bottom:614.537333pt;}
.y2a{bottom:619.512000pt;}
.y62{bottom:631.274667pt;}
.y29{bottom:636.249333pt;}
.y61{bottom:648.012000pt;}
.y28{bottom:652.986667pt;}
.y60{bottom:664.749333pt;}
.y27{bottom:669.724000pt;}
.y5f{bottom:681.485333pt;}
.y26{bottom:686.461333pt;}
.y5e{bottom:698.222667pt;}
.y25{bottom:703.198667pt;}
.y5d{bottom:714.960000pt;}
.y5c{bottom:731.697333pt;}
.ya4{bottom:737.277333pt;}
.y5b{bottom:748.434667pt;}
.ya3{bottom:752.620000pt;}
.y5a{bottom:765.172000pt;}
.ya2{bottom:767.961333pt;}
.y24{bottom:770.534667pt;}
.y59{bottom:781.909333pt;}
.ya1{bottom:783.304000pt;}
.y23{bottom:784.880000pt;}
.y57{bottom:798.646667pt;}
.y22{bottom:803.084000pt;}
.y58{bottom:803.469333pt;}
.y21{bottom:813.573333pt;}
.ya0{bottom:813.989333pt;}
.y56{bottom:815.384000pt;}
.y20{bottom:827.920000pt;}
.y9f{bottom:829.332000pt;}
.y55{bottom:832.121333pt;}
.y9e{bottom:844.674667pt;}
.y1f{bottom:846.122667pt;}
.y54{bottom:848.858667pt;}
.y9d{bottom:860.017333pt;}
.y53{bottom:865.596000pt;}
.y9c{bottom:875.360000pt;}
.y52{bottom:882.333333pt;}
.y1e{bottom:885.836000pt;}
.y9b{bottom:890.702667pt;}
.y51{bottom:899.070667pt;}
.y9a{bottom:906.044000pt;}
.y50{bottom:915.808000pt;}
.y1d{bottom:921.320000pt;}
.y99{bottom:921.386667pt;}
.y4f{bottom:932.545333pt;}
.y98{bottom:936.729333pt;}
.y1c{bottom:946.425333pt;}
.y4e{bottom:949.282667pt;}
.y97{bottom:952.072000pt;}
.y4d{bottom:966.020000pt;}
.y96{bottom:967.414667pt;}
.y1b{bottom:971.530667pt;}
.y4c{bottom:982.757333pt;}
.y19{bottom:1010.186667pt;}
.y4b{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.hc{height:23.209028pt;}
.h5{height:27.076941pt;}
.h6{height:27.262909pt;}
.h10{height:29.397999pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.hd{height:30.945242pt;}
.hf{height:31.157778pt;}
.h11{height:34.430976pt;}
.h12{height:34.813542pt;}
.h14{height:35.052646pt;}
.h13{height:38.256384pt;}
.he{height:38.681455pt;}
.h9{height:38.947124pt;}
.h7{height:45.271688pt;}
.hb{height:48.360277pt;}
.ha{height:68.861952pt;}
.h8{height:85.431026pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:171.210973pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x3{left:46.226667pt;}
.x1{left:47.621398pt;}
.x4{left:53.973679pt;}
.x21{left:76.309333pt;}
.x7{left:220.912000pt;}
.x5{left:221.858667pt;}
.x15{left:225.932000pt;}
.x6{left:239.924000pt;}
.x8{left:250.204000pt;}
.x16{left:312.406667pt;}
.xf{left:328.008000pt;}
.x10{left:339.932000pt;}
.x20{left:348.328000pt;}
.x11{left:428.269333pt;}
.x12{left:440.193333pt;}
.xd{left:471.746667pt;}
.xe{left:478.389333pt;}
.x19{left:510.088000pt;}
.x1a{left:516.920000pt;}
.xb{left:520.480000pt;}
.xc{left:527.122667pt;}
.x13{left:540.230667pt;}
.x14{left:548.436000pt;}
.x24{left:558.872000pt;}
.x26{left:563.542667pt;}
.x25{left:582.782667pt;}
.x27{left:587.453333pt;}
.x1d{left:597.541333pt;}
.x1e{left:604.182667pt;}
.x17{left:625.080000pt;}
.x18{left:631.721333pt;}
.x22{left:674.358667pt;}
.x23{left:698.269333pt;}
.x1b{left:699.996000pt;}
.x1c{left:706.828000pt;}
.x1f{left:727.121333pt;}
.x9{left:733.484000pt;}
.xa{left:740.126667pt;}
}




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