
    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_c40df577204302c8477cd000.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_77f746823a127c35ce63bae8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.925000;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_e2ffe9cb0a25690d3cd67770.woff')format("woff");}.ff3{font-family:ff3;line-height:0.684000;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_00d85aaada554129012fa444.woff')format("woff");}.ff4{font-family:ff4;line-height:1.159000;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_f3d28926a6a8720a96f4b9a0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.686000;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_4c9a00ec28032fec13e9797c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_95911ac1db532ccd7b25e328.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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_5db727074122b4d5c10c1d74.woff')format("woff");}.ff8{font-family:ff8;line-height:1.159000;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:ff9;src:url('chunks/assets/font_8f589f11a0e422647d2881d7.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_03b6b443c70d7e7408ce1c21.woff')format("woff");}.ffa{font-family:ffa;line-height:1.159000;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:ffb;src:url('chunks/assets/font_2d09ecb8525fb047d6ede832.woff')format("woff");}.ffb{font-family:ffb;line-height:0.704000;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:ffc;src:url('chunks/assets/font_ec0f0746e2a66429ab1f5921.woff')format("woff");}.ffc{font-family:ffc;line-height:0.979980;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;}
.m26{transform:matrix(0.241458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241458,0.000000,0.000000,0.250000,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);}
.m1a{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);}
.m6{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);}
.m1d{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.ma{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m17{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);}
.m15{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);}
.mf{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);}
.m19{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);}
.m0{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);}
.m9{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);}
.m4{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);}
.m7{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);}
.m11{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);}
.m23{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);}
.m10{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);}
.m25{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);}
.m14{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);}
.m12{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);}
.m28{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);}
.m1b{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);}
.m22{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);}
.m21{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);}
.m18{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);}
.me{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);}
.m16{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);}
.m24{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);}
.m5{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);}
.mb{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);}
.m27{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);}
.m1e{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);}
.m1c{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);}
.m1f{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);}
.mc{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:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.v3{vertical-align:23.748000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.196364px;}
.ls2{letter-spacing:2.988532px;}
.ls0{letter-spacing:2.988710px;}
.lsa{letter-spacing:5.138547px;}
.ls9{letter-spacing:5.591020px;}
.ls11{letter-spacing:8.836371px;}
.lse{letter-spacing:19.767289px;}
.lsc{letter-spacing:21.796382px;}
.ls10{letter-spacing:21.992746px;}
.ls1{letter-spacing:22.914710px;}
.ls8{letter-spacing:25.985476px;}
.lsf{letter-spacing:29.061842px;}
.lsb{letter-spacing:29.127297px;}
.lsd{letter-spacing:29.585479px;}
.ls4{letter-spacing:30.305480px;}
.ls6{letter-spacing:30.370934px;}
.ls7{letter-spacing:32.727300px;}
.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;}
}
.ws57{word-spacing:-39.452160px;}
.wsa{word-spacing:-37.636395px;}
.ws5f{word-spacing:-33.453846px;}
.ws1b{word-spacing:-32.727300px;}
.ws52{word-spacing:-31.456017px;}
.ws1{word-spacing:-22.687425px;}
.ws0{word-spacing:-22.563450px;}
.ws3d{word-spacing:-18.523652px;}
.ws59{word-spacing:-17.280014px;}
.ws56{word-spacing:-16.625468px;}
.ws38{word-spacing:-15.905468px;}
.ws5a{word-spacing:-15.846559px;}
.ws3c{word-spacing:-15.840013px;}
.ws25{word-spacing:-15.774559px;}
.ws12{word-spacing:-15.709104px;}
.ws13{word-spacing:-15.643649px;}
.ws11{word-spacing:-15.447286px;}
.ws24{word-spacing:-15.185467px;}
.ws32{word-spacing:-14.858194px;}
.ws40{word-spacing:-14.661830px;}
.ws35{word-spacing:-14.465467px;}
.ws29{word-spacing:-14.269103px;}
.ws1f{word-spacing:-14.203648px;}
.ws71{word-spacing:-14.144739px;}
.ws65{word-spacing:-14.072739px;}
.ws70{word-spacing:-14.007284px;}
.ws55{word-spacing:-13.876375px;}
.ws66{word-spacing:-13.752011px;}
.ws33{word-spacing:-13.680011px;}
.ws3f{word-spacing:-13.614557px;}
.ws4e{word-spacing:-13.352738px;}
.ws8{word-spacing:-13.287284px;}
.ws2d{word-spacing:-13.198541px;}
.ws6{word-spacing:-13.126810px;}
.ws42{word-spacing:-13.025465px;}
.ws3e{word-spacing:-12.960011px;}
.ws67{word-spacing:-12.835647px;}
.ws9{word-spacing:-12.698192px;}
.ws44{word-spacing:-12.567283px;}
.ws4f{word-spacing:-12.240010px;}
.ws30{word-spacing:-12.174556px;}
.ws19{word-spacing:-12.109101px;}
.wsf{word-spacing:-12.043646px;}
.ws1e{word-spacing:-11.978192px;}
.ws5e{word-spacing:-11.912737px;}
.ws68{word-spacing:-11.853828px;}
.ws28{word-spacing:-11.781828px;}
.ws26{word-spacing:-11.716373px;}
.ws54{word-spacing:-11.650919px;}
.ws18{word-spacing:-11.585464px;}
.ws2a{word-spacing:-11.389100px;}
.ws31{word-spacing:-11.323646px;}
.wsc{word-spacing:-11.258191px;}
.ws17{word-spacing:-11.192737px;}
.ws1a{word-spacing:-11.127282px;}
.ws20{word-spacing:-11.061827px;}
.ws23{word-spacing:-10.996373px;}
.wse{word-spacing:-10.930918px;}
.ws14{word-spacing:-10.865464px;}
.wsb{word-spacing:-10.800009px;}
.ws10{word-spacing:-10.734554px;}
.ws16{word-spacing:-10.669100px;}
.ws7{word-spacing:-10.603645px;}
.wsd{word-spacing:-10.538191px;}
.ws34{word-spacing:-10.472736px;}
.ws1d{word-spacing:-10.341827px;}
.ws6a{word-spacing:-10.282918px;}
.ws63{word-spacing:-10.217463px;}
.ws4b{word-spacing:-10.210918px;}
.ws2e{word-spacing:-10.145463px;}
.ws5b{word-spacing:-10.021099px;}
.ws60{word-spacing:-9.955645px;}
.ws77{word-spacing:-9.890190px;}
.ws4a{word-spacing:-9.824735px;}
.ws47{word-spacing:-9.628372px;}
.ws15{word-spacing:-9.425462px;}
.ws72{word-spacing:-9.366553px;}
.ws50{word-spacing:-9.229099px;}
.ws45{word-spacing:-9.163644px;}
.ws51{word-spacing:-8.967280px;}
.ws4d{word-spacing:-8.443643px;}
.ws3b{word-spacing:-8.312734px;}
.ws46{word-spacing:-8.181825px;}
.ws76{word-spacing:-8.116370px;}
.ws21{word-spacing:-7.985461px;}
.ws41{word-spacing:-7.920007px;}
.ws2b{word-spacing:-7.854552px;}
.ws36{word-spacing:-7.658188px;}
.ws37{word-spacing:-7.592734px;}
.ws69{word-spacing:-7.461824px;}
.ws3a{word-spacing:-7.265461px;}
.ws43{word-spacing:-7.003642px;}
.ws58{word-spacing:-6.283642px;}
.ws2f{word-spacing:-6.218187px;}
.ws6f{word-spacing:-5.956369px;}
.ws27{word-spacing:-5.629096px;}
.ws6c{word-spacing:-5.570186px;}
.ws75{word-spacing:-5.563641px;}
.ws64{word-spacing:-5.236368px;}
.ws4c{word-spacing:-4.843640px;}
.ws6b{word-spacing:-4.647277px;}
.ws6e{word-spacing:-4.130185px;}
.ws2c{word-spacing:-3.992731px;}
.ws39{word-spacing:-3.796367px;}
.ws61{word-spacing:-3.672003px;}
.ws5d{word-spacing:-3.600003px;}
.ws5c{word-spacing:-3.541094px;}
.ws74{word-spacing:-3.534548px;}
.ws73{word-spacing:-3.272730px;}
.ws53{word-spacing:-2.945457px;}
.ws6d{word-spacing:-2.618184px;}
.ws62{word-spacing:-2.493820px;}
.ws22{word-spacing:-1.963638px;}
.ws48{word-spacing:-0.065455px;}
.ws1c{word-spacing:0.000000px;}
.ws5{word-spacing:18.345254px;}
.ws4{word-spacing:18.399053px;}
.ws3{word-spacing:22.475626px;}
.ws2{word-spacing:22.535401px;}
.ws49{word-spacing:24.760862px;}
._2{margin-left:-11.529675px;}
._d{margin-left:-9.162473px;}
._4{margin-left:-6.993745px;}
._6{margin-left:-5.187999px;}
._0{margin-left:-3.967200px;}
._7{margin-left:-2.349223px;}
._3{margin-left:-1.315063px;}
._8{width:1.362946px;}
._b{width:2.497705px;}
._1{width:3.843225px;}
._1c{width:5.138547px;}
._1d{width:6.443712px;}
._1b{width:9.486930px;}
._f{width:10.996373px;}
._1e{width:17.808110px;}
._c{width:18.842611px;}
._16{width:21.080840px;}
._11{width:22.651750px;}
._18{width:25.065186px;}
._17{width:27.059094px;}
._e{width:28.080023px;}
._a{width:29.258206px;}
._12{width:30.505131px;}
._9{width:31.541975px;}
._13{width:32.727300px;}
._1f{width:34.150542px;}
._19{width:36.069943px;}
._1a{width:37.169899px;}
._10{width:39.861851px;}
._21{width:42.563987px;}
._15{width:44.164816px;}
._23{width:45.172446px;}
._14{width:46.217035px;}
._22{width:49.438124px;}
._20{width:50.661860px;}
._5{width:63.708898px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs8{font-size:52.252521px;}
.fs4{font-size:53.798400px;}
.fs9{font-size:54.089972px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fsa{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:39.673690px;}
.yb9{bottom:40.703855px;}
.yb2{bottom:57.081628px;}
.yb8{bottom:57.524830px;}
.yb7{bottom:74.345804px;}
.yb1{bottom:74.492757px;}
.yb6{bottom:91.166779px;}
.yb0{bottom:91.903887px;}
.y20{bottom:95.208000px;}
.yb5{bottom:107.984566px;}
.yb4{bottom:124.805541px;}
.y1f{bottom:166.341000px;}
.y47{bottom:169.081500px;}
.y53{bottom:170.083500px;}
.y109{bottom:173.929500px;}
.ya7{bottom:175.516500px;}
.y78{bottom:182.979000px;}
.ydc{bottom:186.666000px;}
.y46{bottom:189.405000px;}
.y52{bottom:190.408500px;}
.y108{bottom:194.253000px;}
.ya6{bottom:195.840000px;}
.y1e{bottom:201.264000px;}
.y77{bottom:203.302500px;}
.ydb{bottom:206.989500px;}
.y51{bottom:210.732000px;}
.y107{bottom:214.576500px;}
.ya5{bottom:216.163500px;}
.y1d{bottom:221.587500px;}
.y76{bottom:223.626000px;}
.y45{bottom:224.373000px;}
.y50{bottom:231.055500px;}
.y106{bottom:234.900000px;}
.ya4{bottom:236.487000px;}
.y1c{bottom:241.911000px;}
.y75{bottom:243.949500px;}
.y44{bottom:244.698000px;}
.yda{bottom:248.043000px;}
.y4f{bottom:251.379000px;}
.yba{bottom:252.034500px;}
.y105{bottom:255.225000px;}
.ya3{bottom:256.810500px;}
.y1b{bottom:262.236000px;}
.y74{bottom:264.274500px;}
.y4e{bottom:271.702500px;}
.y104{bottom:275.548500px;}
.ya2{bottom:277.135500px;}
.y73{bottom:284.598000px;}
.y43{bottom:285.751500px;}
.ya8{bottom:287.302500px;}
.yaf{bottom:290.692924px;}
.y4d{bottom:292.027500px;}
.y1a{bottom:292.720500px;}
.y103{bottom:295.872000px;}
.yd9{bottom:301.992000px;}
.y72{bottom:304.921500px;}
.yae{bottom:307.513899px;}
.ya1{bottom:312.103500px;}
.y4c{bottom:312.351000px;}
.y19{bottom:313.045500px;}
.y102{bottom:316.195500px;}
.yd8{bottom:322.315500px;}
.yad{bottom:324.331686px;}
.y71{bottom:325.245000px;}
.ya0{bottom:332.427000px;}
.y4b{bottom:332.674500px;}
.y18{bottom:333.369000px;}
.y101{bottom:336.519000px;}
.y42{bottom:339.732000px;}
.yac{bottom:341.152661px;}
.yd7{bottom:342.639000px;}
.y70{bottom:345.568500px;}
.y9f{bottom:352.752000px;}
.y4a{bottom:352.998000px;}
.y17{bottom:353.692500px;}
.y100{bottom:356.844000px;}
.yab{bottom:357.973635px;}
.y41{bottom:360.055500px;}
.y6f{bottom:365.893500px;}
.yaa{bottom:374.794610px;}
.yff{bottom:377.167500px;}
.y40{bottom:380.379000px;}
.y9e{bottom:383.236500px;}
.yd6{bottom:383.692500px;}
.y16{bottom:384.178500px;}
.y6e{bottom:386.217000px;}
.y8f{bottom:386.623500px;}
.ya9{bottom:391.615585px;}
.y49{bottom:394.051500px;}
.yfe{bottom:397.491000px;}
.y9d{bottom:403.561500px;}
.y15{bottom:404.502000px;}
.y6d{bottom:406.540500px;}
.y3f{bottom:411.910500px;}
.yfd{bottom:417.814500px;}
.y9c{bottom:423.885000px;}
.y14{bottom:424.825500px;}
.y6c{bottom:426.864000px;}
.y3e{bottom:432.235500px;}
.yd5{bottom:437.641500px;}
.yfc{bottom:438.138000px;}
.y8e{bottom:440.604000px;}
.y13{bottom:445.149000px;}
.y6b{bottom:447.187500px;}
.y3d{bottom:452.559000px;}
.yd4{bottom:457.965000px;}
.yfb{bottom:458.463000px;}
.y48{bottom:458.719500px;}
.y8d{bottom:460.927500px;}
.y9b{bottom:464.938500px;}
.y12{bottom:465.474000px;}
.y6a{bottom:467.512500px;}
.y3c{bottom:472.882500px;}
.yfa{bottom:478.786500px;}
.y8c{bottom:481.251000px;}
.y11{bottom:485.797500px;}
.y69{bottom:487.836000px;}
.yd3{bottom:492.900000px;}
.y3b{bottom:493.206000px;}
.yf9{bottom:499.110000px;}
.y8b{bottom:501.574500px;}
.y10{bottom:506.121000px;}
.y68{bottom:508.159500px;}
.yd2{bottom:513.223500px;}
.y3a{bottom:513.529500px;}
.y9a{bottom:518.322000px;}
.yf8{bottom:519.433500px;}
.y8a{bottom:521.899500px;}
.y67{bottom:528.483000px;}
.y39{bottom:533.854500px;}
.y99{bottom:538.645500px;}
.yf7{bottom:539.757000px;}
.y89{bottom:542.223000px;}
.yf{bottom:547.174500px;}
.yd1{bottom:548.158500px;}
.y38{bottom:554.178000px;}
.y98{bottom:558.969000px;}
.yf6{bottom:560.082000px;}
.y66{bottom:569.536500px;}
.y88{bottom:572.709000px;}
.y37{bottom:574.501500px;}
.yf5{bottom:580.405500px;}
.yd0{bottom:589.213500px;}
.y97{bottom:589.455000px;}
.y87{bottom:593.032500px;}
.ye{bottom:600.514500px;}
.yf4{bottom:600.729000px;}
.y36{bottom:609.471000px;}
.y96{bottom:609.778500px;}
.y86{bottom:613.356000px;}
.yd{bottom:620.838000px;}
.yf3{bottom:621.052500px;}
.y65{bottom:623.518500px;}
.y35{bottom:629.794500px;}
.y95{bottom:630.102000px;}
.y85{bottom:633.679500px;}
.yc{bottom:641.161500px;}
.yf2{bottom:641.376000px;}
.ycf{bottom:642.564000px;}
.y64{bottom:643.842000px;}
.y34{bottom:650.118000px;}
.y94{bottom:650.425500px;}
.y84{bottom:654.003000px;}
.yb{bottom:661.485000px;}
.yf1{bottom:661.701000px;}
.yce{bottom:662.887500px;}
.y33{bottom:670.441500px;}
.y63{bottom:674.328000px;}
.ya{bottom:681.810000px;}
.yf0{bottom:682.024500px;}
.ycd{bottom:683.211000px;}
.y32{bottom:690.765000px;}
.y93{bottom:691.480500px;}
.y62{bottom:694.651500px;}
.y9{bottom:702.133500px;}
.yef{bottom:702.348000px;}
.ycc{bottom:703.534500px;}
.y61{bottom:714.975000px;}
.y31{bottom:721.251000px;}
.yee{bottom:722.671500px;}
.ycb{bottom:723.859500px;}
.y60{bottom:735.298500px;}
.y30{bottom:741.574500px;}
.yed{bottom:742.995000px;}
.y8{bottom:743.187000px;}
.yca{bottom:744.183000px;}
.y92{bottom:745.461000px;}
.y83{bottom:755.622000px;}
.y2f{bottom:761.899500px;}
.yec{bottom:763.320000px;}
.yc9{bottom:764.506500px;}
.y5f{bottom:765.784500px;}
.y82{bottom:775.947000px;}
.y2e{bottom:782.223000px;}
.yeb{bottom:783.643500px;}
.yc8{bottom:784.830000px;}
.y5e{bottom:786.108000px;}
.y81{bottom:796.270500px;}
.y2d{bottom:802.546500px;}
.yea{bottom:803.967000px;}
.yc7{bottom:805.153500px;}
.y5d{bottom:806.431500px;}
.y80{bottom:816.594000px;}
.y2c{bottom:822.870000px;}
.ye9{bottom:824.290500px;}
.yc6{bottom:825.478500px;}
.y5c{bottom:826.755000px;}
.y7f{bottom:836.917500px;}
.ye8{bottom:844.614000px;}
.yc5{bottom:845.802000px;}
.y5b{bottom:847.080000px;}
.y2b{bottom:863.923500px;}
.ye7{bottom:864.939000px;}
.yc4{bottom:866.125500px;}
.y5a{bottom:867.403500px;}
.y7{bottom:875.205000px;}
.y7e{bottom:877.971000px;}
.ye6{bottom:885.262500px;}
.yc3{bottom:886.449000px;}
.y59{bottom:887.727000px;}
.y6{bottom:891.643500px;}
.ye5{bottom:905.586000px;}
.y5{bottom:908.082000px;}
.y91{bottom:908.457000px;}
.y2a{bottom:917.307000px;}
.yc2{bottom:921.384000px;}
.ye4{bottom:925.909500px;}
.y58{bottom:928.780500px;}
.y7d{bottom:931.951500px;}
.y4{bottom:935.077500px;}
.y29{bottom:937.630500px;}
.yc1{bottom:941.707500px;}
.ye3{bottom:946.233000px;}
.y7c{bottom:952.276500px;}
.y3{bottom:953.010000px;}
.y28{bottom:957.954000px;}
.yc0{bottom:962.031000px;}
.y90{bottom:962.437500px;}
.ye2{bottom:966.558000px;}
.y7b{bottom:972.600000px;}
.y27{bottom:978.279000px;}
.y57{bottom:982.761000px;}
.ye1{bottom:986.881500px;}
.ybf{bottom:992.517000px;}
.y7a{bottom:992.923500px;}
.y26{bottom:998.602500px;}
.y56{bottom:1003.086000px;}
.ye0{bottom:1007.205000px;}
.y2{bottom:1007.419500px;}
.ybe{bottom:1012.840500px;}
.y79{bottom:1013.247000px;}
.y55{bottom:1023.409500px;}
.ydf{bottom:1027.528500px;}
.ybd{bottom:1033.165500px;}
.y25{bottom:1033.570500px;}
.y54{bottom:1043.733000px;}
.y1{bottom:1044.778500px;}
.yde{bottom:1047.852000px;}
.ybc{bottom:1053.489000px;}
.y24{bottom:1053.895500px;}
.ydd{bottom:1068.177000px;}
.ybb{bottom:1073.812500px;}
.y23{bottom:1074.219000px;}
.y22{bottom:1094.542500px;}
.y21{bottom:1114.866000px;}
.h5{height:23.850624px;}
.ha{height:39.980322px;}
.hb{height:41.386224px;}
.h8{height:46.865494px;}
.hd{height:49.090950px;}
.h4{height:49.473619px;}
.h6{height:51.359539px;}
.h3{height:54.336020px;}
.h7{height:59.498231px;}
.hc{height:61.631275px;}
.h2{height:88.766100px;}
.h9{height:811.745130px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.799745px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:17.589767px;}
.x12{left:73.156718px;}
.x8{left:86.967000px;}
.x1{left:89.292000px;}
.x9{left:109.291500px;}
.x15{left:112.443000px;}
.x14{left:113.697000px;}
.x3{left:120.171000px;}
.xf{left:127.555500px;}
.xb{left:129.366000px;}
.xc{left:145.291500px;}
.xd{left:156.343500px;}
.xe{left:171.276000px;}
.x6{left:199.302000px;}
.x2{left:251.731500px;}
.x5{left:281.382000px;}
.x13{left:332.547000px;}
.x7{left:354.766500px;}
.x4{left:364.674000px;}
.x11{left:428.314353px;}
.x16{left:438.274500px;}
.xa{left:442.366500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.v3{vertical-align:21.109333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.174546pt;}
.ls2{letter-spacing:2.656473pt;}
.ls0{letter-spacing:2.656631pt;}
.lsa{letter-spacing:4.567598pt;}
.ls9{letter-spacing:4.969795pt;}
.ls11{letter-spacing:7.854552pt;}
.lse{letter-spacing:17.570924pt;}
.lsc{letter-spacing:19.374562pt;}
.ls10{letter-spacing:19.549107pt;}
.ls1{letter-spacing:20.368631pt;}
.ls8{letter-spacing:23.098201pt;}
.lsf{letter-spacing:25.832749pt;}
.lsb{letter-spacing:25.890931pt;}
.lsd{letter-spacing:26.298204pt;}
.ls4{letter-spacing:26.938204pt;}
.ls6{letter-spacing:26.996386pt;}
.ls7{letter-spacing:29.090933pt;}
.ws57{word-spacing:-35.068587pt;}
.wsa{word-spacing:-33.454573pt;}
.ws5f{word-spacing:-29.736752pt;}
.ws1b{word-spacing:-29.090933pt;}
.ws52{word-spacing:-27.960904pt;}
.ws1{word-spacing:-20.166600pt;}
.ws0{word-spacing:-20.056400pt;}
.ws3d{word-spacing:-16.465468pt;}
.ws59{word-spacing:-15.360013pt;}
.ws56{word-spacing:-14.778194pt;}
.ws38{word-spacing:-14.138194pt;}
.ws5a{word-spacing:-14.085830pt;}
.ws3c{word-spacing:-14.080012pt;}
.ws25{word-spacing:-14.021830pt;}
.ws12{word-spacing:-13.963648pt;}
.ws13{word-spacing:-13.905466pt;}
.ws11{word-spacing:-13.730921pt;}
.ws24{word-spacing:-13.498193pt;}
.ws32{word-spacing:-13.207284pt;}
.ws40{word-spacing:-13.032738pt;}
.ws35{word-spacing:-12.858193pt;}
.ws29{word-spacing:-12.683647pt;}
.ws1f{word-spacing:-12.625465pt;}
.ws71{word-spacing:-12.573101pt;}
.ws65{word-spacing:-12.509101pt;}
.ws70{word-spacing:-12.450919pt;}
.ws55{word-spacing:-12.334556pt;}
.ws66{word-spacing:-12.224010pt;}
.ws33{word-spacing:-12.160010pt;}
.ws3f{word-spacing:-12.101828pt;}
.ws4e{word-spacing:-11.869101pt;}
.ws8{word-spacing:-11.810919pt;}
.ws2d{word-spacing:-11.732036pt;}
.ws6{word-spacing:-11.668275pt;}
.ws42{word-spacing:-11.578191pt;}
.ws3e{word-spacing:-11.520010pt;}
.ws67{word-spacing:-11.409464pt;}
.ws9{word-spacing:-11.287282pt;}
.ws44{word-spacing:-11.170918pt;}
.ws4f{word-spacing:-10.880009pt;}
.ws30{word-spacing:-10.821827pt;}
.ws19{word-spacing:-10.763645pt;}
.wsf{word-spacing:-10.705463pt;}
.ws1e{word-spacing:-10.647282pt;}
.ws5e{word-spacing:-10.589100pt;}
.ws68{word-spacing:-10.536736pt;}
.ws28{word-spacing:-10.472736pt;}
.ws26{word-spacing:-10.414554pt;}
.ws54{word-spacing:-10.356372pt;}
.ws18{word-spacing:-10.298190pt;}
.ws2a{word-spacing:-10.123645pt;}
.ws31{word-spacing:-10.065463pt;}
.wsc{word-spacing:-10.007281pt;}
.ws17{word-spacing:-9.949099pt;}
.ws1a{word-spacing:-9.890917pt;}
.ws20{word-spacing:-9.832735pt;}
.ws23{word-spacing:-9.774554pt;}
.wse{word-spacing:-9.716372pt;}
.ws14{word-spacing:-9.658190pt;}
.wsb{word-spacing:-9.600008pt;}
.ws10{word-spacing:-9.541826pt;}
.ws16{word-spacing:-9.483644pt;}
.ws7{word-spacing:-9.425462pt;}
.wsd{word-spacing:-9.367281pt;}
.ws34{word-spacing:-9.309099pt;}
.ws1d{word-spacing:-9.192735pt;}
.ws6a{word-spacing:-9.140371pt;}
.ws63{word-spacing:-9.082189pt;}
.ws4b{word-spacing:-9.076371pt;}
.ws2e{word-spacing:-9.018189pt;}
.ws5b{word-spacing:-8.907644pt;}
.ws60{word-spacing:-8.849462pt;}
.ws77{word-spacing:-8.791280pt;}
.ws4a{word-spacing:-8.733098pt;}
.ws47{word-spacing:-8.558553pt;}
.ws15{word-spacing:-8.378189pt;}
.ws72{word-spacing:-8.325825pt;}
.ws50{word-spacing:-8.203643pt;}
.ws45{word-spacing:-8.145461pt;}
.ws51{word-spacing:-7.970916pt;}
.ws4d{word-spacing:-7.505461pt;}
.ws3b{word-spacing:-7.389097pt;}
.ws46{word-spacing:-7.272733pt;}
.ws76{word-spacing:-7.214551pt;}
.ws21{word-spacing:-7.098188pt;}
.ws41{word-spacing:-7.040006pt;}
.ws2b{word-spacing:-6.981824pt;}
.ws36{word-spacing:-6.807278pt;}
.ws37{word-spacing:-6.749097pt;}
.ws69{word-spacing:-6.632733pt;}
.ws3a{word-spacing:-6.458187pt;}
.ws43{word-spacing:-6.225460pt;}
.ws58{word-spacing:-5.585459pt;}
.ws2f{word-spacing:-5.527277pt;}
.ws6f{word-spacing:-5.294550pt;}
.ws27{word-spacing:-5.003641pt;}
.ws6c{word-spacing:-4.951277pt;}
.ws75{word-spacing:-4.945459pt;}
.ws64{word-spacing:-4.654549pt;}
.ws4c{word-spacing:-4.305458pt;}
.ws6b{word-spacing:-4.130913pt;}
.ws6e{word-spacing:-3.671276pt;}
.ws2c{word-spacing:-3.549094pt;}
.ws39{word-spacing:-3.374548pt;}
.ws61{word-spacing:-3.264003pt;}
.ws5d{word-spacing:-3.200003pt;}
.ws5c{word-spacing:-3.147639pt;}
.ws74{word-spacing:-3.141821pt;}
.ws73{word-spacing:-2.909093pt;}
.ws53{word-spacing:-2.618184pt;}
.ws6d{word-spacing:-2.327275pt;}
.ws62{word-spacing:-2.216729pt;}
.ws22{word-spacing:-1.745456pt;}
.ws48{word-spacing:-0.058182pt;}
.ws1c{word-spacing:0.000000pt;}
.ws5{word-spacing:16.306893pt;}
.ws4{word-spacing:16.354714pt;}
.ws3{word-spacing:19.978334pt;}
.ws2{word-spacing:20.031468pt;}
.ws49{word-spacing:22.009655pt;}
._2{margin-left:-10.248600pt;}
._d{margin-left:-8.144420pt;}
._4{margin-left:-6.216662pt;}
._6{margin-left:-4.611554pt;}
._0{margin-left:-3.526400pt;}
._7{margin-left:-2.088198pt;}
._3{margin-left:-1.168945pt;}
._8{width:1.211507pt;}
._b{width:2.220182pt;}
._1{width:3.416200pt;}
._1c{width:4.567598pt;}
._1d{width:5.727744pt;}
._1b{width:8.432827pt;}
._f{width:9.774554pt;}
._1e{width:15.829431pt;}
._c{width:16.748988pt;}
._16{width:18.738524pt;}
._11{width:20.134889pt;}
._18{width:22.280165pt;}
._17{width:24.052528pt;}
._e{width:24.960021pt;}
._a{width:26.007294pt;}
._12{width:27.115672pt;}
._9{width:28.037311pt;}
._13{width:29.090933pt;}
._1f{width:30.356037pt;}
._19{width:32.062172pt;}
._1a{width:33.039910pt;}
._10{width:35.432757pt;}
._21{width:37.834655pt;}
._15{width:39.257614pt;}
._23{width:40.153285pt;}
._14{width:41.081809pt;}
._22{width:43.944999pt;}
._20{width:45.032765pt;}
._5{width:56.630132pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs8{font-size:46.446685pt;}
.fs4{font-size:47.820800pt;}
.fs9{font-size:48.079975pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fsa{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:35.265502pt;}
.yb9{bottom:36.181204pt;}
.yb2{bottom:50.739225pt;}
.yb8{bottom:51.133182pt;}
.yb7{bottom:66.085159pt;}
.yb1{bottom:66.215784pt;}
.yb6{bottom:81.037137pt;}
.yb0{bottom:81.692344pt;}
.y20{bottom:84.629333pt;}
.yb5{bottom:95.986281pt;}
.yb4{bottom:110.938259pt;}
.y1f{bottom:147.858667pt;}
.y47{bottom:150.294667pt;}
.y53{bottom:151.185333pt;}
.y109{bottom:154.604000pt;}
.ya7{bottom:156.014667pt;}
.y78{bottom:162.648000pt;}
.ydc{bottom:165.925333pt;}
.y46{bottom:168.360000pt;}
.y52{bottom:169.252000pt;}
.y108{bottom:172.669333pt;}
.ya6{bottom:174.080000pt;}
.y1e{bottom:178.901333pt;}
.y77{bottom:180.713333pt;}
.ydb{bottom:183.990667pt;}
.y51{bottom:187.317333pt;}
.y107{bottom:190.734667pt;}
.ya5{bottom:192.145333pt;}
.y1d{bottom:196.966667pt;}
.y76{bottom:198.778667pt;}
.y45{bottom:199.442667pt;}
.y50{bottom:205.382667pt;}
.y106{bottom:208.800000pt;}
.ya4{bottom:210.210667pt;}
.y1c{bottom:215.032000pt;}
.y75{bottom:216.844000pt;}
.y44{bottom:217.509333pt;}
.yda{bottom:220.482667pt;}
.y4f{bottom:223.448000pt;}
.yba{bottom:224.030667pt;}
.y105{bottom:226.866667pt;}
.ya3{bottom:228.276000pt;}
.y1b{bottom:233.098667pt;}
.y74{bottom:234.910667pt;}
.y4e{bottom:241.513333pt;}
.y104{bottom:244.932000pt;}
.ya2{bottom:246.342667pt;}
.y73{bottom:252.976000pt;}
.y43{bottom:254.001333pt;}
.ya8{bottom:255.380000pt;}
.yaf{bottom:258.393710pt;}
.y4d{bottom:259.580000pt;}
.y1a{bottom:260.196000pt;}
.y103{bottom:262.997333pt;}
.yd9{bottom:268.437333pt;}
.y72{bottom:271.041333pt;}
.yae{bottom:273.345688pt;}
.ya1{bottom:277.425333pt;}
.y4c{bottom:277.645333pt;}
.y19{bottom:278.262667pt;}
.y102{bottom:281.062667pt;}
.yd8{bottom:286.502667pt;}
.yad{bottom:288.294832pt;}
.y71{bottom:289.106667pt;}
.ya0{bottom:295.490667pt;}
.y4b{bottom:295.710667pt;}
.y18{bottom:296.328000pt;}
.y101{bottom:299.128000pt;}
.y42{bottom:301.984000pt;}
.yac{bottom:303.246809pt;}
.yd7{bottom:304.568000pt;}
.y70{bottom:307.172000pt;}
.y9f{bottom:313.557333pt;}
.y4a{bottom:313.776000pt;}
.y17{bottom:314.393333pt;}
.y100{bottom:317.194667pt;}
.yab{bottom:318.198787pt;}
.y41{bottom:320.049333pt;}
.y6f{bottom:325.238667pt;}
.yaa{bottom:333.150764pt;}
.yff{bottom:335.260000pt;}
.y40{bottom:338.114667pt;}
.y9e{bottom:340.654667pt;}
.yd6{bottom:341.060000pt;}
.y16{bottom:341.492000pt;}
.y6e{bottom:343.304000pt;}
.y8f{bottom:343.665333pt;}
.ya9{bottom:348.102742pt;}
.y49{bottom:350.268000pt;}
.yfe{bottom:353.325333pt;}
.y9d{bottom:358.721333pt;}
.y15{bottom:359.557333pt;}
.y6d{bottom:361.369333pt;}
.y3f{bottom:366.142667pt;}
.yfd{bottom:371.390667pt;}
.y9c{bottom:376.786667pt;}
.y14{bottom:377.622667pt;}
.y6c{bottom:379.434667pt;}
.y3e{bottom:384.209333pt;}
.yd5{bottom:389.014667pt;}
.yfc{bottom:389.456000pt;}
.y8e{bottom:391.648000pt;}
.y13{bottom:395.688000pt;}
.y6b{bottom:397.500000pt;}
.y3d{bottom:402.274667pt;}
.yd4{bottom:407.080000pt;}
.yfb{bottom:407.522667pt;}
.y48{bottom:407.750667pt;}
.y8d{bottom:409.713333pt;}
.y9b{bottom:413.278667pt;}
.y12{bottom:413.754667pt;}
.y6a{bottom:415.566667pt;}
.y3c{bottom:420.340000pt;}
.yfa{bottom:425.588000pt;}
.y8c{bottom:427.778667pt;}
.y11{bottom:431.820000pt;}
.y69{bottom:433.632000pt;}
.yd3{bottom:438.133333pt;}
.y3b{bottom:438.405333pt;}
.yf9{bottom:443.653333pt;}
.y8b{bottom:445.844000pt;}
.y10{bottom:449.885333pt;}
.y68{bottom:451.697333pt;}
.yd2{bottom:456.198667pt;}
.y3a{bottom:456.470667pt;}
.y9a{bottom:460.730667pt;}
.yf8{bottom:461.718667pt;}
.y8a{bottom:463.910667pt;}
.y67{bottom:469.762667pt;}
.y39{bottom:474.537333pt;}
.y99{bottom:478.796000pt;}
.yf7{bottom:479.784000pt;}
.y89{bottom:481.976000pt;}
.yf{bottom:486.377333pt;}
.yd1{bottom:487.252000pt;}
.y38{bottom:492.602667pt;}
.y98{bottom:496.861333pt;}
.yf6{bottom:497.850667pt;}
.y66{bottom:506.254667pt;}
.y88{bottom:509.074667pt;}
.y37{bottom:510.668000pt;}
.yf5{bottom:515.916000pt;}
.yd0{bottom:523.745333pt;}
.y97{bottom:523.960000pt;}
.y87{bottom:527.140000pt;}
.ye{bottom:533.790667pt;}
.yf4{bottom:533.981333pt;}
.y36{bottom:541.752000pt;}
.y96{bottom:542.025333pt;}
.y86{bottom:545.205333pt;}
.yd{bottom:551.856000pt;}
.yf3{bottom:552.046667pt;}
.y65{bottom:554.238667pt;}
.y35{bottom:559.817333pt;}
.y95{bottom:560.090667pt;}
.y85{bottom:563.270667pt;}
.yc{bottom:569.921333pt;}
.yf2{bottom:570.112000pt;}
.ycf{bottom:571.168000pt;}
.y64{bottom:572.304000pt;}
.y34{bottom:577.882667pt;}
.y94{bottom:578.156000pt;}
.y84{bottom:581.336000pt;}
.yb{bottom:587.986667pt;}
.yf1{bottom:588.178667pt;}
.yce{bottom:589.233333pt;}
.y33{bottom:595.948000pt;}
.y63{bottom:599.402667pt;}
.ya{bottom:606.053333pt;}
.yf0{bottom:606.244000pt;}
.ycd{bottom:607.298667pt;}
.y32{bottom:614.013333pt;}
.y93{bottom:614.649333pt;}
.y62{bottom:617.468000pt;}
.y9{bottom:624.118667pt;}
.yef{bottom:624.309333pt;}
.ycc{bottom:625.364000pt;}
.y61{bottom:635.533333pt;}
.y31{bottom:641.112000pt;}
.yee{bottom:642.374667pt;}
.ycb{bottom:643.430667pt;}
.y60{bottom:653.598667pt;}
.y30{bottom:659.177333pt;}
.yed{bottom:660.440000pt;}
.y8{bottom:660.610667pt;}
.yca{bottom:661.496000pt;}
.y92{bottom:662.632000pt;}
.y83{bottom:671.664000pt;}
.y2f{bottom:677.244000pt;}
.yec{bottom:678.506667pt;}
.yc9{bottom:679.561333pt;}
.y5f{bottom:680.697333pt;}
.y82{bottom:689.730667pt;}
.y2e{bottom:695.309333pt;}
.yeb{bottom:696.572000pt;}
.yc8{bottom:697.626667pt;}
.y5e{bottom:698.762667pt;}
.y81{bottom:707.796000pt;}
.y2d{bottom:713.374667pt;}
.yea{bottom:714.637333pt;}
.yc7{bottom:715.692000pt;}
.y5d{bottom:716.828000pt;}
.y80{bottom:725.861333pt;}
.y2c{bottom:731.440000pt;}
.ye9{bottom:732.702667pt;}
.yc6{bottom:733.758667pt;}
.y5c{bottom:734.893333pt;}
.y7f{bottom:743.926667pt;}
.ye8{bottom:750.768000pt;}
.yc5{bottom:751.824000pt;}
.y5b{bottom:752.960000pt;}
.y2b{bottom:767.932000pt;}
.ye7{bottom:768.834667pt;}
.yc4{bottom:769.889333pt;}
.y5a{bottom:771.025333pt;}
.y7{bottom:777.960000pt;}
.y7e{bottom:780.418667pt;}
.ye6{bottom:786.900000pt;}
.yc3{bottom:787.954667pt;}
.y59{bottom:789.090667pt;}
.y6{bottom:792.572000pt;}
.ye5{bottom:804.965333pt;}
.y5{bottom:807.184000pt;}
.y91{bottom:807.517333pt;}
.y2a{bottom:815.384000pt;}
.yc2{bottom:819.008000pt;}
.ye4{bottom:823.030667pt;}
.y58{bottom:825.582667pt;}
.y7d{bottom:828.401333pt;}
.y4{bottom:831.180000pt;}
.y29{bottom:833.449333pt;}
.yc1{bottom:837.073333pt;}
.ye3{bottom:841.096000pt;}
.y7c{bottom:846.468000pt;}
.y3{bottom:847.120000pt;}
.y28{bottom:851.514667pt;}
.yc0{bottom:855.138667pt;}
.y90{bottom:855.500000pt;}
.ye2{bottom:859.162667pt;}
.y7b{bottom:864.533333pt;}
.y27{bottom:869.581333pt;}
.y57{bottom:873.565333pt;}
.ye1{bottom:877.228000pt;}
.ybf{bottom:882.237333pt;}
.y7a{bottom:882.598667pt;}
.y26{bottom:887.646667pt;}
.y56{bottom:891.632000pt;}
.ye0{bottom:895.293333pt;}
.y2{bottom:895.484000pt;}
.ybe{bottom:900.302667pt;}
.y79{bottom:900.664000pt;}
.y55{bottom:909.697333pt;}
.ydf{bottom:913.358667pt;}
.ybd{bottom:918.369333pt;}
.y25{bottom:918.729333pt;}
.y54{bottom:927.762667pt;}
.y1{bottom:928.692000pt;}
.yde{bottom:931.424000pt;}
.ybc{bottom:936.434667pt;}
.y24{bottom:936.796000pt;}
.ydd{bottom:949.490667pt;}
.ybb{bottom:954.500000pt;}
.y23{bottom:954.861333pt;}
.y22{bottom:972.926667pt;}
.y21{bottom:990.992000pt;}
.h5{height:21.200555pt;}
.ha{height:35.538064pt;}
.hb{height:36.787754pt;}
.h8{height:41.658217pt;}
.hd{height:43.636400pt;}
.h4{height:43.976550pt;}
.h6{height:45.652924pt;}
.h3{height:48.298685pt;}
.h7{height:52.887317pt;}
.hc{height:54.783356pt;}
.h2{height:78.903200pt;}
.h9{height:721.551227pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.933107pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:15.635349pt;}
.x12{left:65.028194pt;}
.x8{left:77.304000pt;}
.x1{left:79.370667pt;}
.x9{left:97.148000pt;}
.x15{left:99.949333pt;}
.x14{left:101.064000pt;}
.x3{left:106.818667pt;}
.xf{left:113.382667pt;}
.xb{left:114.992000pt;}
.xc{left:129.148000pt;}
.xd{left:138.972000pt;}
.xe{left:152.245333pt;}
.x6{left:177.157333pt;}
.x2{left:223.761333pt;}
.x5{left:250.117333pt;}
.x13{left:295.597333pt;}
.x7{left:315.348000pt;}
.x4{left:324.154667pt;}
.x11{left:380.723869pt;}
.x16{left:389.577333pt;}
.xa{left:393.214667pt;}
}




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