
    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_91e3588eba8934c3e0d429b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752441;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_fbaceb970f7ea9615e933e30.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_fc4f3fba8fae676e4a24f734.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.935059;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_90906110d1afa2de8c29cbfd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_99f1441e28b46488d475a017.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_c6342f374cb54695ac49e4b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_a8244e16fc66beeb1e98071b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_fa12d67a1660d57cb96316f8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_78f18906306a3823f5f4ed42.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.142090;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_97f4d0a58602069387a8139d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_8adfb21734f999fcfd8c3afb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940430;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:ffd;src:url('chunks/assets/font_b70b993abcdec531fcc23987.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;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;}
.me{transform:matrix(0.137634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137634,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.184915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184915,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.190815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190815,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.190869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190869,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.191022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191022,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.191098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191098,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.191434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191434,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.191440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191440,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.234954,0.000000,-0.078310,0.237418,0,0);-ms-transform:matrix(0.234954,0.000000,-0.078310,0.237418,0,0);-webkit-transform:matrix(0.234954,0.000000,-0.078310,0.237418,0,0);}
.m15{transform:matrix(0.238860,0.000000,-0.079612,0.236985,0,0);-ms-transform:matrix(0.238860,0.000000,-0.079612,0.236985,0,0);-webkit-transform:matrix(0.238860,0.000000,-0.079612,0.236985,0,0);}
.m12{transform:matrix(0.247405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247405,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);}
.mc{transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251977,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252529,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253836,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253846,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254492,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254834,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255003,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.255012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255012,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261551,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.263438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263438,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-128.662352px;}
.v2{vertical-align:-64.446825px;}
.v5{vertical-align:-30.680821px;}
.v3{vertical-align:-14.514071px;}
.v1{vertical-align:-9.141102px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-8.465072px;}
.ls15{letter-spacing:-1.012501px;}
.ls14{letter-spacing:-0.653416px;}
.ls3{letter-spacing:-0.180000px;}
.ls23{letter-spacing:-0.177132px;}
.lsc{letter-spacing:-0.028080px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls7{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.218002px;}
.lsd{letter-spacing:0.341400px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:4.414770px;}
.ls24{letter-spacing:9.180000px;}
.ls5{letter-spacing:17.239659px;}
.ls6{letter-spacing:25.156331px;}
.ls19{letter-spacing:28.733801px;}
.ls8{letter-spacing:39.526923px;}
.ls1d{letter-spacing:64.026720px;}
.ls1c{letter-spacing:64.746720px;}
.lsb{letter-spacing:74.336259px;}
.ls1f{letter-spacing:110.911030px;}
.ls1e{letter-spacing:122.972404px;}
.ls26{letter-spacing:131.323471px;}
.ls1b{letter-spacing:135.967924px;}
.ls9{letter-spacing:155.030901px;}
.ls16{letter-spacing:159.292269px;}
.ls17{letter-spacing:161.352590px;}
.ls22{letter-spacing:210.923740px;}
.lse{letter-spacing:213.456725px;}
.ls21{letter-spacing:243.829251px;}
.ls25{letter-spacing:272.879940px;}
.lsa{letter-spacing:275.160786px;}
.ls18{letter-spacing:367.679051px;}
.ls20{letter-spacing:387.363063px;}
.ls4{letter-spacing:536.826725px;}
.ls10{letter-spacing:612.638948px;}
.lsf{letter-spacing:617.969695px;}
.ls1a{letter-spacing:1444.395686px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-320.660103px;}
.ws2a{word-spacing:-272.961874px;}
.ws29{word-spacing:-32.808240px;}
.ws9{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.401400px;}
.ws1{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws8{word-spacing:-21.031920px;}
.ws23{word-spacing:-0.084005px;}
.ws1e{word-spacing:-0.082877px;}
.ws2{word-spacing:0.000000px;}
.ws1a{word-spacing:1.148619px;}
.ws12{word-spacing:11.646928px;}
.ws21{word-spacing:19.993113px;}
.ws19{word-spacing:21.962330px;}
.ws14{word-spacing:22.369446px;}
.ws25{word-spacing:25.033393px;}
.ws15{word-spacing:26.139577px;}
.wsb{word-spacing:26.978727px;}
.ws20{word-spacing:27.217515px;}
.ws17{word-spacing:28.905649px;}
.ws3{word-spacing:32.730419px;}
.ws22{word-spacing:33.433860px;}
.ws7{word-spacing:35.559597px;}
.ws11{word-spacing:43.952276px;}
.ws28{word-spacing:47.714674px;}
.ws10{word-spacing:77.702864px;}
.ws5{word-spacing:99.037676px;}
.wsf{word-spacing:110.060279px;}
.wsd{word-spacing:133.845896px;}
.ws1c{word-spacing:145.293122px;}
.ws1d{word-spacing:148.146987px;}
.ws18{word-spacing:153.653431px;}
.wse{word-spacing:159.537678px;}
.ws24{word-spacing:164.481153px;}
.ws26{word-spacing:172.293588px;}
.ws4{word-spacing:197.545406px;}
.ws27{word-spacing:270.684101px;}
.ws1f{word-spacing:384.969201px;}
.ws1b{word-spacing:466.991791px;}
.ws16{word-spacing:766.286567px;}
.wsc{word-spacing:966.537288px;}
.ws13{word-spacing:988.871737px;}
._27{margin-left:-1094.840593px;}
._32{margin-left:-1030.485193px;}
._2e{margin-left:-845.798443px;}
._20{margin-left:-799.649506px;}
._29{margin-left:-725.889140px;}
._3d{margin-left:-650.641465px;}
._39{margin-left:-579.716454px;}
._47{margin-left:-530.028093px;}
._17{margin-left:-460.676763px;}
._16{margin-left:-425.986520px;}
._46{margin-left:-360.582881px;}
._19{margin-left:-339.383869px;}
._13{margin-left:-273.676889px;}
._23{margin-left:-208.948291px;}
._41{margin-left:-8.409493px;}
._1a{margin-left:-7.162316px;}
._12{margin-left:-3.570591px;}
._f{margin-left:-2.364480px;}
._1{margin-left:-1.204800px;}
._0{width:1.915200px;}
._2{width:3.018480px;}
._7{width:6.991920px;}
._6{width:8.028240px;}
._d{width:9.072480px;}
._e{width:10.291680px;}
._10{width:11.371440px;}
._8{width:12.804480px;}
._c{width:14.002320px;}
._4{width:16.511040px;}
._3{width:17.606160px;}
._48{width:19.307280px;}
._33{width:25.508930px;}
._43{width:26.605348px;}
._34{width:28.988121px;}
._38{width:36.191981px;}
._36{width:37.773883px;}
._3e{width:39.287197px;}
._5{width:42.288480px;}
._9{width:45.236880px;}
._a{width:46.610160px;}
._b{width:48.294960px;}
._2c{width:49.478191px;}
._3b{width:51.756482px;}
._1c{width:59.008222px;}
._2b{width:71.071766px;}
._1e{width:78.318497px;}
._18{width:83.409376px;}
._35{width:84.991236px;}
._15{width:100.612333px;}
._11{width:109.243086px;}
._2f{width:112.898691px;}
._1d{width:116.607539px;}
._3a{width:122.408910px;}
._1b{width:128.790417px;}
._2a{width:133.982181px;}
._22{width:138.818499px;}
._1f{width:142.879458px;}
._3c{width:146.194527px;}
._14{width:148.183568px;}
._26{width:153.960489px;}
._3f{width:161.980311px;}
._37{width:173.194211px;}
._21{width:184.815077px;}
._2d{width:187.415351px;}
._25{width:207.179299px;}
._30{width:295.933993px;}
._31{width:303.925316px;}
._40{width:310.890235px;}
._24{width:375.422153px;}
._28{width:847.448831px;}
._44{width:1148.343902px;}
._45{width:1239.908997px;}
._42{width:1263.114899px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,103,152);}
.fs8{font-size:47.338200px;}
.fs5{font-size:47.936399px;}
.fsd{font-size:48.135836px;}
.fsc{font-size:48.475468px;}
.fs1c{font-size:48.543483px;}
.fs16{font-size:48.588817px;}
.fs12{font-size:48.831969px;}
.fs1b{font-size:48.945921px;}
.fs3{font-size:49.137579px;}
.fs1e{font-size:59.760000px;}
.fs10{font-size:64.193725px;}
.fs7{font-size:81.934554px;}
.fs6{font-size:82.876716px;}
.fse{font-size:83.183300px;}
.fsb{font-size:83.780696px;}
.fs1d{font-size:83.859965px;}
.fs17{font-size:84.004675px;}
.fs1{font-size:84.240000px;}
.fs13{font-size:84.620339px;}
.fs1a{font-size:84.750754px;}
.fs2{font-size:85.014074px;}
.fs15{font-size:86.276520px;}
.fs18{font-size:88.618082px;}
.fs0{font-size:95.760000px;}
.fs9{font-size:108.580288px;}
.fs4{font-size:109.014351px;}
.fs19{font-size:111.321514px;}
.fsa{font-size:112.475124px;}
.fsf{font-size:124.774950px;}
.fs14{font-size:126.933452px;}
.fs11{font-size:154.029620px;}
.y0{bottom:0.000000px;}
.y42{bottom:3.115549px;}
.y26{bottom:3.115583px;}
.y5b{bottom:3.646802px;}
.y69{bottom:3.706371px;}
.y33{bottom:3.993222px;}
.yb3{bottom:3.993292px;}
.y8e{bottom:4.844508px;}
.y51{bottom:5.007655px;}
.y7b{bottom:5.028005px;}
.y81{bottom:5.028012px;}
.y2c{bottom:5.322552px;}
.y3c{bottom:5.322581px;}
.y6b{bottom:7.376392px;}
.y9b{bottom:8.037837px;}
.y50{bottom:8.164568px;}
.y25{bottom:8.611446px;}
.y41{bottom:8.611448px;}
.y43{bottom:8.611465px;}
.y27{bottom:8.611504px;}
.y3a{bottom:9.052003px;}
.y74{bottom:9.232932px;}
.y39{bottom:9.232970px;}
.y2b{bottom:9.269153px;}
.y55{bottom:9.269186px;}
.y32{bottom:9.329671px;}
.yb2{bottom:9.329718px;}
.yb4{bottom:9.329750px;}
.y49{bottom:9.942671px;}
.y87{bottom:10.496427px;}
.y84{bottom:10.496443px;}
.y7e{bottom:10.496495px;}
.y2d{bottom:10.717545px;}
.y3b{bottom:10.717568px;}
.y56{bottom:10.717570px;}
.y3d{bottom:10.717585px;}
.y99{bottom:12.056876px;}
.y48{bottom:12.228661px;}
.y9a{bottom:13.505065px;}
.y9c{bottom:13.505083px;}
.ya0{bottom:15.599414px;}
.yb8{bottom:16.725000px;}
.yba{bottom:16.740000px;}
.ybc{bottom:16.920000px;}
.y92{bottom:17.100000px;}
.y95{bottom:17.280000px;}
.y5e{bottom:18.014679px;}
.y8d{bottom:18.166702px;}
.y6d{bottom:18.350104px;}
.y6f{bottom:18.968201px;}
.y66{bottom:19.804103px;}
.ya3{bottom:21.029966px;}
.ya2{bottom:21.029977px;}
.y4a{bottom:22.896882px;}
.y61{bottom:23.413027px;}
.y6e{bottom:23.836446px;}
.y6{bottom:24.480000px;}
.y4f{bottom:28.340392px;}
.y4c{bottom:28.340395px;}
.y9f{bottom:31.161868px;}
.y65{bottom:33.720101px;}
.y6c{bottom:34.629586px;}
.y80{bottom:36.627569px;}
.y7a{bottom:36.627639px;}
.ya1{bottom:36.629337px;}
.y6a{bottom:37.100500px;}
.y8c{bottom:38.461837px;}
.y4e{bottom:40.460433px;}
.y86{bottom:42.058843px;}
.y7d{bottom:42.058893px;}
.y8b{bottom:42.058897px;}
.y83{bottom:42.058901px;}
.y4b{bottom:43.762688px;}
.y4d{bottom:44.415209px;}
.y5a{bottom:44.564803px;}
.y68{bottom:45.312352px;}
.y5d{bottom:45.402249px;}
.y47{bottom:46.047967px;}
.y67{bottom:49.599292px;}
.y60{bottom:50.800597px;}
.y8a{bottom:54.244299px;}
.y5c{bottom:58.421794px;}
.y5{bottom:60.660000px;}
.y5f{bottom:63.820142px;}
.y79{bottom:68.226674px;}
.y7f{bottom:68.226680px;}
.y89{bottom:72.079462px;}
.y85{bottom:73.657936px;}
.y88{bottom:73.657938px;}
.y82{bottom:73.657947px;}
.y7c{bottom:73.658004px;}
.y4{bottom:84.600000px;}
.y71{bottom:119.556000px;}
.yad{bottom:141.156000px;}
.yc3{bottom:148.176000px;}
.y64{bottom:150.915000px;}
.y22{bottom:151.590000px;}
.y70{bottom:174.810000px;}
.yac{bottom:177.150000px;}
.yc2{bottom:184.710000px;}
.y21{bottom:187.770000px;}
.yab{bottom:213.690000px;}
.yc1{bottom:220.530000px;}
.y20{bottom:223.950000px;}
.y63{bottom:230.970000px;}
.yaa{bottom:249.870000px;}
.yc0{bottom:252.030000px;}
.y1f{bottom:260.130000px;}
.y59{bottom:262.140000px;}
.ya9{bottom:285.690000px;}
.y1e{bottom:296.310000px;}
.y62{bottom:313.050000px;}
.ya8{bottom:322.230000px;}
.y1d{bottom:332.670000px;}
.ya7{bottom:358.590000px;}
.y58{bottom:362.910000px;}
.y1c{bottom:368.895000px;}
.y54{bottom:394.139959px;}
.ya6{bottom:394.815000px;}
.y57{bottom:404.535000px;}
.y1b{bottom:405.075000px;}
.ya5{bottom:430.635000px;}
.y1a{bottom:441.255000px;}
.y53{bottom:442.695000px;}
.ya4{bottom:467.175000px;}
.y46{bottom:474.014959px;}
.y19{bottom:477.615000px;}
.y9e{bottom:498.314959px;}
.y52{bottom:502.455000px;}
.y98{bottom:505.889959px;}
.y18{bottom:513.435000px;}
.yc5{bottom:513.795000px;}
.y9d{bottom:519.375000px;}
.y17{bottom:549.975000px;}
.y45{bottom:558.255000px;}
.y97{bottom:572.655000px;}
.y16{bottom:586.155000px;}
.y40{bottom:589.589959px;}
.y96{bottom:592.455000px;}
.y44{bottom:598.575000px;}
.ybf{bottom:614.415000px;}
.y15{bottom:622.515000px;}
.y94{bottom:629.385000px;}
.y3f{bottom:635.145000px;}
.ybe{bottom:650.625000px;}
.y14{bottom:658.725000px;}
.y38{bottom:666.239959px;}
.y93{bottom:666.465000px;}
.ybd{bottom:670.425000px;}
.y3e{bottom:676.725000px;}
.y13{bottom:694.905000px;}
.y91{bottom:703.365000px;}
.ybb{bottom:707.325000px;}
.y37{bottom:715.065000px;}
.y12{bottom:731.085000px;}
.yb9{bottom:744.405000px;}
.y36{bottom:750.885000px;}
.y90{bottom:757.545000px;}
.y11{bottom:767.445000px;}
.yb7{bottom:781.320000px;}
.y35{bottom:787.425000px;}
.y78{bottom:788.639919px;}
.y10{bottom:803.265000px;}
.y31{bottom:818.715000px;}
.y34{bottom:818.745000px;}
.y8f{bottom:830.625000px;}
.yb6{bottom:835.485000px;}
.yf{bottom:839.805000px;}
.y30{bottom:864.285000px;}
.yb1{bottom:866.639919px;}
.yb5{bottom:875.625000px;}
.ye{bottom:875.985000px;}
.y2f{bottom:900.510000px;}
.yd{bottom:912.210000px;}
.y2a{bottom:931.590000px;}
.y2e{bottom:931.650000px;}
.y77{bottom:940.650000px;}
.yc4{bottom:948.210000px;}
.yc{bottom:948.570000px;}
.y76{bottom:977.370000px;}
.y29{bottom:980.430000px;}
.yb{bottom:984.390000px;}
.yb0{bottom:984.750000px;}
.y73{bottom:1008.465000px;}
.y24{bottom:1011.539919px;}
.y28{bottom:1011.570000px;}
.y75{bottom:1018.950000px;}
.ya{bottom:1020.570000px;}
.yaf{bottom:1020.930000px;}
.y9{bottom:1056.750000px;}
.y23{bottom:1057.110000px;}
.y8{bottom:1093.110000px;}
.y72{bottom:1093.470000px;}
.y7{bottom:1129.290000px;}
.yae{bottom:1129.650000px;}
.y3{bottom:1168.740000px;}
.y2{bottom:1193.760000px;}
.y1{bottom:1225.620000px;}
.hf{height:28.424504px;}
.h18{height:28.424548px;}
.h45{height:28.424585px;}
.h7{height:28.424589px;}
.hb{height:31.500367px;}
.h13{height:31.500408px;}
.h46{height:36.165000px;}
.h39{height:36.180000px;}
.h3b{height:36.210000px;}
.h3a{height:36.360000px;}
.h3c{height:37.800320px;}
.h23{height:44.586759px;}
.h2c{height:45.231565px;}
.h11{height:46.436741px;}
.h2f{height:46.459855px;}
.hd{height:47.023548px;}
.h1e{height:47.046954px;}
.h21{height:47.219187px;}
.h20{height:47.242691px;}
.h1b{height:47.552352px;}
.h42{height:47.619071px;}
.h35{height:47.663542px;}
.h33{height:47.687267px;}
.h2a{height:47.902064px;}
.h28{height:47.925907px;}
.h3f{height:48.013846px;}
.h9{height:48.201854px;}
.h41{height:57.074768px;}
.h6{height:58.819922px;}
.h26{height:59.460691px;}
.h25{height:63.226846px;}
.h19{height:67.348798px;}
.h2{height:70.884844px;}
.h31{height:75.893481px;}
.h24{height:77.050157px;}
.h1d{height:77.603506px;}
.h44{height:77.676930px;}
.h38{height:77.810971px;}
.h2d{height:78.381242px;}
.h30{height:79.915312px;}
.h12{height:80.374277px;}
.h10{height:80.414284px;}
.h17{height:81.298497px;}
.h16{height:81.338964px;}
.h22{height:81.599243px;}
.h37{height:82.084229px;}
.h1c{height:82.185263px;}
.h1a{height:82.226171px;}
.h43{height:82.263022px;}
.h36{height:82.404976px;}
.h34{height:82.445994px;}
.h3{height:82.676953px;}
.h2b{height:83.008916px;}
.h29{height:83.050235px;}
.h40{height:83.136848px;}
.h3e{height:83.178230px;}
.ha{height:83.395154px;}
.h8{height:83.436665px;}
.h1f{height:83.548113px;}
.h5{height:84.898125px;}
.he{height:85.184204px;}
.h4{height:86.255508px;}
.h32{height:94.724583px;}
.h14{height:100.574613px;}
.hc{height:100.976672px;}
.h3d{height:103.113727px;}
.h15{height:104.182281px;}
.h2e{height:117.574589px;}
.h27{height:142.672944px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:16.545000px;}
.wc{width:55.048309px;}
.w16{width:65.376000px;}
.we{width:72.165000px;}
.w13{width:72.377522px;}
.w17{width:82.965000px;}
.w9{width:88.796809px;}
.w14{width:91.649112px;}
.wb{width:98.847241px;}
.w2{width:108.000651px;}
.w4{width:128.402030px;}
.w12{width:135.605687px;}
.w3{width:135.605728px;}
.w15{width:149.220000px;}
.w10{width:149.961000px;}
.w8{width:211.803813px;}
.wa{width:214.947258px;}
.w5{width:294.304491px;}
.w6{width:325.264602px;}
.w7{width:367.860383px;}
.w11{width:373.755000px;}
.wd{width:453.443402px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:2.012663px;}
.x11{left:3.322531px;}
.x5c{left:5.321803px;}
.x56{left:8.085000px;}
.x10{left:11.172396px;}
.x46{left:12.681265px;}
.x26{left:16.077051px;}
.x59{left:18.445927px;}
.x1c{left:21.394923px;}
.x53{left:23.380054px;}
.x36{left:24.531932px;}
.x5d{left:25.618869px;}
.x29{left:28.946769px;}
.x45{left:36.210849px;}
.x14{left:38.881268px;}
.x28{left:45.061253px;}
.x2f{left:47.351977px;}
.x35{left:50.011620px;}
.x4c{left:51.480742px;}
.x33{left:53.912174px;}
.x30{left:55.917287px;}
.x2c{left:59.160767px;}
.x23{left:61.912781px;}
.x31{left:65.177074px;}
.x3f{left:66.451205px;}
.x34{left:67.873736px;}
.x25{left:70.210473px;}
.x3e{left:71.724494px;}
.x32{left:78.735842px;}
.xf{left:80.069370px;}
.x1e{left:81.113103px;}
.x1d{left:89.062325px;}
.x27{left:90.306760px;}
.x17{left:92.249192px;}
.x41{left:93.445450px;}
.x3c{left:96.062602px;}
.x42{left:100.230339px;}
.x3d{left:106.093898px;}
.x18{left:108.715681px;}
.x3a{left:115.091469px;}
.x3{left:127.656000px;}
.x39{left:133.345794px;}
.x40{left:138.102257px;}
.x21{left:143.200391px;}
.x5{left:146.016000px;}
.x5f{left:154.650000px;}
.x4{left:162.570000px;}
.xe{left:170.130000px;}
.x55{left:172.305000px;}
.x8{left:180.030000px;}
.x1{left:183.270000px;}
.x3b{left:205.434299px;}
.xc{left:245.190000px;}
.x4a{left:251.714980px;}
.x24{left:258.712692px;}
.x57{left:261.045000px;}
.x6{left:304.815000px;}
.xa{left:306.435000px;}
.x2{left:315.615000px;}
.x50{left:326.146058px;}
.x62{left:329.655000px;}
.x20{left:337.064980px;}
.xb{left:341.715000px;}
.x1b{left:352.514959px;}
.x9{left:362.955000px;}
.x4f{left:365.127770px;}
.x58{left:369.240000px;}
.x38{left:371.039959px;}
.x2b{left:372.539959px;}
.x4e{left:404.259311px;}
.x4d{left:405.472802px;}
.x13{left:410.639959px;}
.x16{left:414.239959px;}
.x52{left:415.315609px;}
.xd{left:424.155000px;}
.x51{left:427.750222px;}
.x44{left:429.014959px;}
.x60{left:432.614959px;}
.x2e{left:434.039959px;}
.x4b{left:439.255959px;}
.x48{left:450.990000px;}
.x7{left:478.515000px;}
.x5a{left:504.825000px;}
.x49{left:506.085000px;}
.x5b{left:515.264959px;}
.x37{left:522.825000px;}
.x61{left:524.265000px;}
.x47{left:527.865000px;}
.x12{left:532.545000px;}
.x1a{left:542.625000px;}
.x63{left:544.260000px;}
.x15{left:546.225000px;}
.x2d{left:584.385000px;}
.x43{left:586.005000px;}
.x5e{left:587.625000px;}
.x1f{left:646.845000px;}
.x22{left:662.325000px;}
.x2a{left:683.745000px;}
.x54{left:705.210000px;}
.x64{left:753.270000px;}
@media print{
.v4{vertical-align:-114.366535pt;}
.v2{vertical-align:-57.286067pt;}
.v5{vertical-align:-27.271841pt;}
.v3{vertical-align:-12.901396pt;}
.v1{vertical-align:-8.125424pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-7.524508pt;}
.ls15{letter-spacing:-0.900001pt;}
.ls14{letter-spacing:-0.580814pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls23{letter-spacing:-0.157450pt;}
.lsc{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls7{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.193779pt;}
.lsd{letter-spacing:0.303467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:3.924240pt;}
.ls24{letter-spacing:8.160000pt;}
.ls5{letter-spacing:15.324142pt;}
.ls6{letter-spacing:22.361184pt;}
.ls19{letter-spacing:25.541157pt;}
.ls8{letter-spacing:35.135042pt;}
.ls1d{letter-spacing:56.912640pt;}
.ls1c{letter-spacing:57.552640pt;}
.lsb{letter-spacing:66.076675pt;}
.ls1f{letter-spacing:98.587583pt;}
.ls1e{letter-spacing:109.308804pt;}
.ls26{letter-spacing:116.731974pt;}
.ls1b{letter-spacing:120.860377pt;}
.ls9{letter-spacing:137.805246pt;}
.ls16{letter-spacing:141.593128pt;}
.ls17{letter-spacing:143.424525pt;}
.ls22{letter-spacing:187.487769pt;}
.lse{letter-spacing:189.739311pt;}
.ls21{letter-spacing:216.737112pt;}
.ls25{letter-spacing:242.559947pt;}
.lsa{letter-spacing:244.587365pt;}
.ls18{letter-spacing:326.825824pt;}
.ls20{letter-spacing:344.322723pt;}
.ls4{letter-spacing:477.179312pt;}
.ls10{letter-spacing:544.567953pt;}
.lsf{letter-spacing:549.306395pt;}
.ls1a{letter-spacing:1283.907277pt;}
.ws6{word-spacing:-285.031203pt;}
.ws2a{word-spacing:-242.632777pt;}
.ws29{word-spacing:-29.162880pt;}
.ws9{word-spacing:-19.040000pt;}
.wsa{word-spacing:-19.023467pt;}
.ws1{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.695040pt;}
.ws23{word-spacing:-0.074671pt;}
.ws1e{word-spacing:-0.073668pt;}
.ws2{word-spacing:0.000000pt;}
.ws1a{word-spacing:1.020995pt;}
.ws12{word-spacing:10.352825pt;}
.ws21{word-spacing:17.771656pt;}
.ws19{word-spacing:19.522071pt;}
.ws14{word-spacing:19.883952pt;}
.ws25{word-spacing:22.251905pt;}
.ws15{word-spacing:23.235180pt;}
.wsb{word-spacing:23.981091pt;}
.ws20{word-spacing:24.193346pt;}
.ws17{word-spacing:25.693910pt;}
.ws3{word-spacing:29.093705pt;}
.ws22{word-spacing:29.718987pt;}
.ws7{word-spacing:31.608530pt;}
.ws11{word-spacing:39.068690pt;}
.ws28{word-spacing:42.413044pt;}
.ws10{word-spacing:69.069212pt;}
.ws5{word-spacing:88.033489pt;}
.wsf{word-spacing:97.831359pt;}
.wsd{word-spacing:118.974130pt;}
.ws1c{word-spacing:129.149442pt;}
.ws1d{word-spacing:131.686211pt;}
.ws18{word-spacing:136.580828pt;}
.wse{word-spacing:141.811270pt;}
.ws24{word-spacing:146.205469pt;}
.ws26{word-spacing:153.149856pt;}
.ws4{word-spacing:175.595916pt;}
.ws27{word-spacing:240.608090pt;}
.ws1f{word-spacing:342.194845pt;}
.ws1b{word-spacing:415.103814pt;}
.ws16{word-spacing:681.143616pt;}
.wsc{word-spacing:859.144256pt;}
.ws13{word-spacing:878.997099pt;}
._27{margin-left:-973.191638pt;}
._32{margin-left:-915.986839pt;}
._2e{margin-left:-751.820838pt;}
._20{margin-left:-710.799561pt;}
._29{margin-left:-645.234791pt;}
._3d{margin-left:-578.347969pt;}
._39{margin-left:-515.303515pt;}
._47{margin-left:-471.136082pt;}
._17{margin-left:-409.490456pt;}
._16{margin-left:-378.654684pt;}
._46{margin-left:-320.518116pt;}
._19{margin-left:-301.674550pt;}
._13{margin-left:-243.268346pt;}
._23{margin-left:-185.731814pt;}
._41{margin-left:-7.475105pt;}
._1a{margin-left:-6.366503pt;}
._12{margin-left:-3.173859pt;}
._f{margin-left:-2.101760pt;}
._1{margin-left:-1.070933pt;}
._0{width:1.702400pt;}
._2{width:2.683093pt;}
._7{width:6.215040pt;}
._6{width:7.136213pt;}
._d{width:8.064427pt;}
._e{width:9.148160pt;}
._10{width:10.107947pt;}
._8{width:11.381760pt;}
._c{width:12.446507pt;}
._4{width:14.676480pt;}
._3{width:15.649920pt;}
._48{width:17.162027pt;}
._33{width:22.674605pt;}
._43{width:23.649198pt;}
._34{width:25.767218pt;}
._38{width:32.170650pt;}
._36{width:33.576785pt;}
._3e{width:34.921953pt;}
._5{width:37.589760pt;}
._9{width:40.210560pt;}
._a{width:41.431253pt;}
._b{width:42.928853pt;}
._2c{width:43.980615pt;}
._3b{width:46.005762pt;}
._1c{width:52.451753pt;}
._2b{width:63.174903pt;}
._1e{width:69.616441pt;}
._18{width:74.141668pt;}
._35{width:75.547765pt;}
._15{width:89.433185pt;}
._11{width:97.104965pt;}
._2f{width:100.354392pt;}
._1d{width:103.651146pt;}
._3a{width:108.807920pt;}
._1b{width:114.480370pt;}
._2a{width:119.095272pt;}
._22{width:123.394222pt;}
._1f{width:127.003963pt;}
._3c{width:129.950691pt;}
._14{width:131.718727pt;}
._26{width:136.853768pt;}
._3f{width:143.982499pt;}
._37{width:153.950410pt;}
._21{width:164.280068pt;}
._2d{width:166.591423pt;}
._25{width:184.159377pt;}
._30{width:263.052438pt;}
._31{width:270.155837pt;}
._40{width:276.346876pt;}
._24{width:333.708580pt;}
._28{width:753.287849pt;}
._44{width:1020.750135pt;}
._45{width:1102.141331pt;}
._42{width:1122.768799pt;}
.fs8{font-size:42.078400pt;}
.fs5{font-size:42.610133pt;}
.fsd{font-size:42.787410pt;}
.fsc{font-size:43.089305pt;}
.fs1c{font-size:43.149763pt;}
.fs16{font-size:43.190060pt;}
.fs12{font-size:43.406195pt;}
.fs1b{font-size:43.507486pt;}
.fs3{font-size:43.677848pt;}
.fs1e{font-size:53.120000pt;}
.fs10{font-size:57.061089pt;}
.fs7{font-size:72.830715pt;}
.fs6{font-size:73.668192pt;}
.fse{font-size:73.940711pt;}
.fsb{font-size:74.471730pt;}
.fs1d{font-size:74.542191pt;}
.fs17{font-size:74.670822pt;}
.fs1{font-size:74.880000pt;}
.fs13{font-size:75.218079pt;}
.fs1a{font-size:75.334004pt;}
.fs2{font-size:75.568066pt;}
.fs15{font-size:76.690240pt;}
.fs18{font-size:78.771628pt;}
.fs0{font-size:85.120000pt;}
.fs9{font-size:96.515812pt;}
.fs4{font-size:96.901645pt;}
.fs19{font-size:98.952457pt;}
.fsa{font-size:99.977888pt;}
.fsf{font-size:110.911067pt;}
.fs14{font-size:112.829735pt;}
.fs11{font-size:136.915218pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:2.769377pt;}
.y26{bottom:2.769407pt;}
.y5b{bottom:3.241602pt;}
.y69{bottom:3.294552pt;}
.y33{bottom:3.549530pt;}
.yb3{bottom:3.549593pt;}
.y8e{bottom:4.306230pt;}
.y51{bottom:4.451249pt;}
.y7b{bottom:4.469338pt;}
.y81{bottom:4.469344pt;}
.y2c{bottom:4.731157pt;}
.y3c{bottom:4.731183pt;}
.y6b{bottom:6.556793pt;}
.y9b{bottom:7.144744pt;}
.y50{bottom:7.257394pt;}
.y25{bottom:7.654619pt;}
.y41{bottom:7.654620pt;}
.y43{bottom:7.654636pt;}
.y27{bottom:7.654670pt;}
.y3a{bottom:8.046225pt;}
.y74{bottom:8.207051pt;}
.y39{bottom:8.207084pt;}
.y2b{bottom:8.239247pt;}
.y55{bottom:8.239276pt;}
.y32{bottom:8.293041pt;}
.yb2{bottom:8.293083pt;}
.yb4{bottom:8.293111pt;}
.y49{bottom:8.837930pt;}
.y87{bottom:9.330157pt;}
.y84{bottom:9.330172pt;}
.y7e{bottom:9.330218pt;}
.y2d{bottom:9.526707pt;}
.y3b{bottom:9.526727pt;}
.y56{bottom:9.526729pt;}
.y3d{bottom:9.526742pt;}
.y99{bottom:10.717223pt;}
.y48{bottom:10.869920pt;}
.y9a{bottom:12.004502pt;}
.y9c{bottom:12.004518pt;}
.ya0{bottom:13.866146pt;}
.yb8{bottom:14.866667pt;}
.yba{bottom:14.880000pt;}
.ybc{bottom:15.040000pt;}
.y92{bottom:15.200000pt;}
.y95{bottom:15.360000pt;}
.y5e{bottom:16.013048pt;}
.y8d{bottom:16.148180pt;}
.y6d{bottom:16.311204pt;}
.y6f{bottom:16.860623pt;}
.y66{bottom:17.603647pt;}
.ya3{bottom:18.693303pt;}
.ya2{bottom:18.693313pt;}
.y4a{bottom:20.352784pt;}
.y61{bottom:20.811579pt;}
.y6e{bottom:21.187952pt;}
.y6{bottom:21.760000pt;}
.y4f{bottom:25.191460pt;}
.y4c{bottom:25.191462pt;}
.y9f{bottom:27.699438pt;}
.y65{bottom:29.973423pt;}
.y6c{bottom:30.781854pt;}
.y80{bottom:32.557839pt;}
.y7a{bottom:32.557902pt;}
.ya1{bottom:32.559411pt;}
.y6a{bottom:32.978222pt;}
.y8c{bottom:34.188299pt;}
.y4e{bottom:35.964830pt;}
.y86{bottom:37.385638pt;}
.y7d{bottom:37.385682pt;}
.y8b{bottom:37.385686pt;}
.y83{bottom:37.385690pt;}
.y4b{bottom:38.900167pt;}
.y4d{bottom:39.480186pt;}
.y5a{bottom:39.613158pt;}
.y68{bottom:40.277646pt;}
.y5d{bottom:40.357554pt;}
.y47{bottom:40.931526pt;}
.y67{bottom:44.088259pt;}
.y60{bottom:45.156086pt;}
.y8a{bottom:48.217155pt;}
.y5c{bottom:51.930484pt;}
.y5{bottom:53.920000pt;}
.y5f{bottom:56.729015pt;}
.y79{bottom:60.645933pt;}
.y7f{bottom:60.645938pt;}
.y89{bottom:64.070633pt;}
.y85{bottom:65.473721pt;}
.y88{bottom:65.473723pt;}
.y82{bottom:65.473731pt;}
.y7c{bottom:65.473781pt;}
.y4{bottom:75.200000pt;}
.y71{bottom:106.272000pt;}
.yad{bottom:125.472000pt;}
.yc3{bottom:131.712000pt;}
.y64{bottom:134.146667pt;}
.y22{bottom:134.746667pt;}
.y70{bottom:155.386667pt;}
.yac{bottom:157.466667pt;}
.yc2{bottom:164.186667pt;}
.y21{bottom:166.906667pt;}
.yab{bottom:189.946667pt;}
.yc1{bottom:196.026667pt;}
.y20{bottom:199.066667pt;}
.y63{bottom:205.306667pt;}
.yaa{bottom:222.106667pt;}
.yc0{bottom:224.026667pt;}
.y1f{bottom:231.226667pt;}
.y59{bottom:233.013333pt;}
.ya9{bottom:253.946667pt;}
.y1e{bottom:263.386667pt;}
.y62{bottom:278.266667pt;}
.ya8{bottom:286.426667pt;}
.y1d{bottom:295.706667pt;}
.ya7{bottom:318.746667pt;}
.y58{bottom:322.586667pt;}
.y1c{bottom:327.906667pt;}
.y54{bottom:350.346630pt;}
.ya6{bottom:350.946667pt;}
.y57{bottom:359.586667pt;}
.y1b{bottom:360.066667pt;}
.ya5{bottom:382.786667pt;}
.y1a{bottom:392.226667pt;}
.y53{bottom:393.506667pt;}
.ya4{bottom:415.266667pt;}
.y46{bottom:421.346630pt;}
.y19{bottom:424.546667pt;}
.y9e{bottom:442.946630pt;}
.y52{bottom:446.626667pt;}
.y98{bottom:449.679964pt;}
.y18{bottom:456.386667pt;}
.yc5{bottom:456.706667pt;}
.y9d{bottom:461.666667pt;}
.y17{bottom:488.866667pt;}
.y45{bottom:496.226667pt;}
.y97{bottom:509.026667pt;}
.y16{bottom:521.026667pt;}
.y40{bottom:524.079964pt;}
.y96{bottom:526.626667pt;}
.y44{bottom:532.066667pt;}
.ybf{bottom:546.146667pt;}
.y15{bottom:553.346667pt;}
.y94{bottom:559.453333pt;}
.y3f{bottom:564.573333pt;}
.ybe{bottom:578.333333pt;}
.y14{bottom:585.533333pt;}
.y38{bottom:592.213297pt;}
.y93{bottom:592.413333pt;}
.ybd{bottom:595.933333pt;}
.y3e{bottom:601.533333pt;}
.y13{bottom:617.693333pt;}
.y91{bottom:625.213333pt;}
.ybb{bottom:628.733333pt;}
.y37{bottom:635.613333pt;}
.y12{bottom:649.853333pt;}
.yb9{bottom:661.693333pt;}
.y36{bottom:667.453333pt;}
.y90{bottom:673.373333pt;}
.y11{bottom:682.173333pt;}
.yb7{bottom:694.506667pt;}
.y35{bottom:699.933333pt;}
.y78{bottom:701.013261pt;}
.y10{bottom:714.013333pt;}
.y31{bottom:727.746667pt;}
.y34{bottom:727.773333pt;}
.y8f{bottom:738.333333pt;}
.yb6{bottom:742.653333pt;}
.yf{bottom:746.493333pt;}
.y30{bottom:768.253333pt;}
.yb1{bottom:770.346594pt;}
.yb5{bottom:778.333333pt;}
.ye{bottom:778.653333pt;}
.y2f{bottom:800.453333pt;}
.yd{bottom:810.853333pt;}
.y2a{bottom:828.080000pt;}
.y2e{bottom:828.133333pt;}
.y77{bottom:836.133333pt;}
.yc4{bottom:842.853333pt;}
.yc{bottom:843.173333pt;}
.y76{bottom:868.773333pt;}
.y29{bottom:871.493333pt;}
.yb{bottom:875.013333pt;}
.yb0{bottom:875.333333pt;}
.y73{bottom:896.413333pt;}
.y24{bottom:899.146594pt;}
.y28{bottom:899.173333pt;}
.y75{bottom:905.733333pt;}
.ya{bottom:907.173333pt;}
.yaf{bottom:907.493333pt;}
.y9{bottom:939.333333pt;}
.y23{bottom:939.653333pt;}
.y8{bottom:971.653333pt;}
.y72{bottom:971.973333pt;}
.y7{bottom:1003.813333pt;}
.yae{bottom:1004.133333pt;}
.y3{bottom:1038.880000pt;}
.y2{bottom:1061.120000pt;}
.y1{bottom:1089.440000pt;}
.hf{height:25.266225pt;}
.h18{height:25.266265pt;}
.h45{height:25.266298pt;}
.h7{height:25.266301pt;}
.hb{height:28.000326pt;}
.h13{height:28.000362pt;}
.h46{height:32.146667pt;}
.h39{height:32.160000pt;}
.h3b{height:32.186667pt;}
.h3a{height:32.320000pt;}
.h3c{height:33.600284pt;}
.h23{height:39.632674pt;}
.h2c{height:40.205836pt;}
.h11{height:41.277103pt;}
.h2f{height:41.297649pt;}
.hd{height:41.798709pt;}
.h1e{height:41.819515pt;}
.h21{height:41.972611pt;}
.h20{height:41.993503pt;}
.h1b{height:42.268757pt;}
.h42{height:42.328063pt;}
.h35{height:42.367593pt;}
.h33{height:42.388682pt;}
.h2a{height:42.579612pt;}
.h28{height:42.600807pt;}
.h3f{height:42.678974pt;}
.h9{height:42.846092pt;}
.h41{height:50.733127pt;}
.h6{height:52.284375pt;}
.h26{height:52.853948pt;}
.h25{height:56.201640pt;}
.h19{height:59.865598pt;}
.h2{height:63.008750pt;}
.h31{height:67.460872pt;}
.h24{height:68.489028pt;}
.h1d{height:68.980894pt;}
.h44{height:69.046160pt;}
.h38{height:69.165307pt;}
.h2d{height:69.672215pt;}
.h30{height:71.035833pt;}
.h12{height:71.443802pt;}
.h10{height:71.479364pt;}
.h17{height:72.265331pt;}
.h16{height:72.301302pt;}
.h22{height:72.532661pt;}
.h37{height:72.963759pt;}
.h1c{height:73.053567pt;}
.h1a{height:73.089930pt;}
.h43{height:73.122686pt;}
.h36{height:73.248868pt;}
.h34{height:73.285328pt;}
.h3{height:73.490625pt;}
.h2b{height:73.785703pt;}
.h29{height:73.822431pt;}
.h40{height:73.899420pt;}
.h3e{height:73.936205pt;}
.ha{height:74.129026pt;}
.h8{height:74.165924pt;}
.h1f{height:74.264990pt;}
.h5{height:75.465000pt;}
.he{height:75.719293pt;}
.h4{height:76.671562pt;}
.h32{height:84.199629pt;}
.h14{height:89.399656pt;}
.hc{height:89.757042pt;}
.h3d{height:91.656646pt;}
.h15{height:92.606472pt;}
.h2e{height:104.510746pt;}
.h27{height:126.820395pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:14.706667pt;}
.wc{width:48.931830pt;}
.w16{width:58.112000pt;}
.we{width:64.146667pt;}
.w13{width:64.335575pt;}
.w17{width:73.746667pt;}
.w9{width:78.930497pt;}
.w14{width:81.465877pt;}
.wb{width:87.864214pt;}
.w2{width:96.000579pt;}
.w4{width:114.135137pt;}
.w12{width:120.538389pt;}
.w3{width:120.538425pt;}
.w15{width:132.640000pt;}
.w10{width:133.298667pt;}
.w8{width:188.270056pt;}
.wa{width:191.064229pt;}
.w5{width:261.603992pt;}
.w6{width:289.124091pt;}
.w7{width:326.987007pt;}
.w11{width:332.226667pt;}
.wd{width:403.060801pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:1.789034pt;}
.x11{left:2.953361pt;}
.x5c{left:4.730491pt;}
.x56{left:7.186667pt;}
.x10{left:9.931018pt;}
.x46{left:11.272236pt;}
.x26{left:14.290712pt;}
.x59{left:16.396380pt;}
.x1c{left:19.017710pt;}
.x53{left:20.782270pt;}
.x36{left:21.806161pt;}
.x5d{left:22.772328pt;}
.x29{left:25.730462pt;}
.x45{left:32.187421pt;}
.x14{left:34.561127pt;}
.x28{left:40.054448pt;}
.x2f{left:42.090646pt;}
.x35{left:44.454774pt;}
.x4c{left:45.760660pt;}
.x33{left:47.921933pt;}
.x30{left:49.704255pt;}
.x2c{left:52.587348pt;}
.x23{left:55.033583pt;}
.x31{left:57.935177pt;}
.x3f{left:59.067738pt;}
.x34{left:60.332210pt;}
.x25{left:62.409309pt;}
.x3e{left:63.755105pt;}
.x32{left:69.987415pt;}
.xf{left:71.172773pt;}
.x1e{left:72.100536pt;}
.x1d{left:79.166511pt;}
.x27{left:80.272676pt;}
.x17{left:81.999281pt;}
.x41{left:83.062622pt;}
.x3c{left:85.388979pt;}
.x42{left:89.093635pt;}
.x3d{left:94.305687pt;}
.x18{left:96.636161pt;}
.x3a{left:102.303528pt;}
.x3{left:113.472000pt;}
.x39{left:118.529595pt;}
.x40{left:122.757562pt;}
.x21{left:127.289236pt;}
.x5{left:129.792000pt;}
.x5f{left:137.466667pt;}
.x4{left:144.506667pt;}
.xe{left:151.226667pt;}
.x55{left:153.160000pt;}
.x8{left:160.026667pt;}
.x1{left:162.906667pt;}
.x3b{left:182.608265pt;}
.xc{left:217.946667pt;}
.x4a{left:223.746649pt;}
.x24{left:229.966837pt;}
.x57{left:232.040000pt;}
.x6{left:270.946667pt;}
.xa{left:272.386667pt;}
.x2{left:280.546667pt;}
.x50{left:289.907608pt;}
.x62{left:293.026667pt;}
.x20{left:299.613315pt;}
.xb{left:303.746667pt;}
.x1b{left:313.346630pt;}
.x9{left:322.626667pt;}
.x4f{left:324.558018pt;}
.x58{left:328.213333pt;}
.x38{left:329.813297pt;}
.x2b{left:331.146630pt;}
.x4e{left:359.341610pt;}
.x4d{left:360.420268pt;}
.x13{left:365.013297pt;}
.x16{left:368.213297pt;}
.x52{left:369.169431pt;}
.xd{left:377.026667pt;}
.x51{left:380.222420pt;}
.x44{left:381.346630pt;}
.x60{left:384.546630pt;}
.x2e{left:385.813297pt;}
.x4b{left:390.449741pt;}
.x48{left:400.880000pt;}
.x7{left:425.346667pt;}
.x5a{left:448.733333pt;}
.x49{left:449.853333pt;}
.x5b{left:458.013297pt;}
.x37{left:464.733333pt;}
.x61{left:466.013333pt;}
.x47{left:469.213333pt;}
.x12{left:473.373333pt;}
.x1a{left:482.333333pt;}
.x63{left:483.786667pt;}
.x15{left:485.533333pt;}
.x2d{left:519.453333pt;}
.x43{left:520.893333pt;}
.x5e{left:522.333333pt;}
.x1f{left:574.973333pt;}
.x22{left:588.733333pt;}
.x2a{left:607.773333pt;}
.x54{left:626.853333pt;}
.x64{left:669.573333pt;}
}




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