
    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_6e5ac9f4461cb73b4b8aa162.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909000;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_4f3e07aa25b54b3c5c3a8801.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2756d3c378abd06b5eca8efe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.714000;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_6b9e105482d0a7e1145d34fd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.708000;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_581cc3322c18f84c2f284515.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3d39b8abc6d16b33f0e0984a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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_49bb8c9834721805a9182aaa.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f694b91fe61903bee7218002.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.899000;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_31aee002b11d48474ae3429c.woff2')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_80a6e9d0bbe8c64a3f01e798.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fee8a1e10fe1dfb9b4eb6184.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b05faf3e7ad23573d10f714a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.773000;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_1108821f2c98673a2fffef5d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.220000;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:ffe;src:url('chunks/assets/font_f2e2aa827556f864f734bfb1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.696000;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:fff;src:url('chunks/assets/font_9ad63f1bf6ab40599618cdd4.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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:ff10;src:url('chunks/assets/font_9aef63b2af7e0ee1f4c3d5f0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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:ff11;src:url('chunks/assets/font_8ed41aa2635dbe624b503b94.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.765137;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:ff12;src:url('chunks/assets/font_eb17b0047896c21000d371cd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.715820;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:ff13;src:url('chunks/assets/font_84e806802d1770359dbb7d78.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.901000;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:ff14;src:url('chunks/assets/font_8e982c333db7e92725f7898a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.637000;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:ff15;src:url('chunks/assets/font_b647e74636cf6c9c011d9ccb.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.451000;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:ff16;src:url('chunks/assets/font_9608904450d62b6208410507.woff2')format("woff");}.ff16{font-family:ff16;line-height:3.010000;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;}
.m3{transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.253421,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.253421,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.253421,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.216511,-0.124999,0.125003,0.216505,0,0);-ms-transform:matrix(0.216511,-0.124999,0.125003,0.216505,0,0);-webkit-transform:matrix(0.216511,-0.124999,0.125003,0.216505,0,0);}
.m6{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,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);}
.m2{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-16.878000px;}
.va{vertical-align:-12.552000px;}
.v8{vertical-align:-10.794000px;}
.v4{vertical-align:-8.964000px;}
.v7{vertical-align:-7.918914px;}
.v6{vertical-align:-1.940578px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.290000px;}
.v13{vertical-align:14.778000px;}
.ve{vertical-align:18.924000px;}
.v5{vertical-align:21.690000px;}
.v2{vertical-align:22.854000px;}
.v12{vertical-align:24.684000px;}
.vd{vertical-align:27.888000px;}
.v14{vertical-align:40.440000px;}
.vc{vertical-align:71.736000px;}
.vb{vertical-align:101.370000px;}
.v10{vertical-align:112.902000px;}
.v9{vertical-align:120.150000px;}
.vf{vertical-align:125.292000px;}
.v11{vertical-align:161.154000px;}
.ls10{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.002400px;}
.ls4d{letter-spacing:0.002512px;}
.ls39{letter-spacing:0.002800px;}
.ls21{letter-spacing:0.002961px;}
.ls27{letter-spacing:0.003181px;}
.ls42{letter-spacing:0.004104px;}
.ls18{letter-spacing:0.005493px;}
.ls3a{letter-spacing:0.005781px;}
.ls2a{letter-spacing:0.005956px;}
.ls55{letter-spacing:0.009670px;}
.ls51{letter-spacing:0.010179px;}
.ls17{letter-spacing:0.011155px;}
.ls44{letter-spacing:0.016264px;}
.ls2d{letter-spacing:0.016350px;}
.ls1b{letter-spacing:0.017863px;}
.ls2e{letter-spacing:0.018131px;}
.ls40{letter-spacing:0.018408px;}
.ls2c{letter-spacing:0.021189px;}
.ls4{letter-spacing:0.021824px;}
.ls47{letter-spacing:0.023153px;}
.ls3e{letter-spacing:0.024666px;}
.ls19{letter-spacing:0.027430px;}
.ls34{letter-spacing:1.673717px;}
.ls4e{letter-spacing:2.984017px;}
.ls9{letter-spacing:2.984525px;}
.ls54{letter-spacing:2.985089px;}
.ls43{letter-spacing:2.990017px;}
.ls3b{letter-spacing:2.990525px;}
.lsa{letter-spacing:9.803198px;}
.ls1e{letter-spacing:9.982525px;}
.lsd{letter-spacing:12.313774px;}
.ls29{letter-spacing:12.945089px;}
.ls2f{letter-spacing:12.953251px;}
.ls14{letter-spacing:13.270183px;}
.ls25{letter-spacing:13.290555px;}
.ls23{letter-spacing:13.296555px;}
.ls11{letter-spacing:15.332544px;}
.ls16{letter-spacing:16.268525px;}
.ls3c{letter-spacing:16.600350px;}
.ls28{letter-spacing:16.606350px;}
.ls20{letter-spacing:16.617617px;}
.ls0{letter-spacing:16.928492px;}
.ls6{letter-spacing:17.155597px;}
.ls3f{letter-spacing:17.813129px;}
.ls59{letter-spacing:18.231558px;}
.ls4a{letter-spacing:18.470660px;}
.ls1d{letter-spacing:18.889090px;}
.ls35{letter-spacing:19.592017px;}
.lsc{letter-spacing:19.592525px;}
.ls45{letter-spacing:19.595251px;}
.ls3{letter-spacing:19.905275px;}
.lsf{letter-spacing:19.926532px;}
.ls2{letter-spacing:19.965050px;}
.ls5{letter-spacing:20.157235px;}
.ls41{letter-spacing:20.306525px;}
.ls50{letter-spacing:20.612017px;}
.ls4f{letter-spacing:20.618017px;}
.ls57{letter-spacing:21.092525px;}
.lsb{letter-spacing:21.158525px;}
.ls58{letter-spacing:21.194017px;}
.ls1f{letter-spacing:21.290525px;}
.ls1{letter-spacing:21.354532px;}
.ls7{letter-spacing:21.638767px;}
.ls53{letter-spacing:21.818094px;}
.ls1c{letter-spacing:21.893251px;}
.ls1a{letter-spacing:21.899251px;}
.ls22{letter-spacing:22.043474px;}
.ls31{letter-spacing:22.356074px;}
.lse{letter-spacing:22.454525px;}
.ls15{letter-spacing:22.886525px;}
.ls8{letter-spacing:22.894055px;}
.ls12{letter-spacing:22.910525px;}
.ls3d{letter-spacing:23.114017px;}
.ls56{letter-spacing:23.612017px;}
.ls36{letter-spacing:23.778538px;}
.ls5a{letter-spacing:23.870525px;}
.ls32{letter-spacing:23.970016px;}
.ls52{letter-spacing:24.824017px;}
.ls30{letter-spacing:24.986201px;}
.ls33{letter-spacing:25.321409px;}
.ls2b{letter-spacing:26.063251px;}
.ls13{letter-spacing:26.462525px;}
.ls38{letter-spacing:28.275181px;}
.ls26{letter-spacing:28.281181px;}
.ls4c{letter-spacing:29.588922px;}
.ls46{letter-spacing:29.887800px;}
.ls49{letter-spacing:32.570525px;}
.ls4b{letter-spacing:32.571089px;}
.ls48{letter-spacing:32.576017px;}
.ls37{letter-spacing:45.925908px;}
.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;}
}
.ws41{word-spacing:-47.654765px;}
.ws49{word-spacing:-47.324343px;}
.ws23{word-spacing:-38.937826px;}
.ws48{word-spacing:-33.223278px;}
.ws57{word-spacing:-28.955301px;}
.ws43{word-spacing:-23.363289px;}
.ws5b{word-spacing:-22.379985px;}
.ws47{word-spacing:-22.320209px;}
.ws6{word-spacing:-16.605662px;}
.ws6c{word-spacing:-15.359443px;}
.ws2e{word-spacing:-8.171786px;}
.ws2d{word-spacing:-8.171614px;}
.ws20{word-spacing:-6.862239px;}
.ws3f{word-spacing:-6.682912px;}
.ws51{word-spacing:-6.623136px;}
.ws46{word-spacing:-6.563361px;}
.ws25{word-spacing:-4.232112px;}
.ws3c{word-spacing:-3.395254px;}
.ws1d{word-spacing:-2.797498px;}
.ws34{word-spacing:-2.555424px;}
.ws5f{word-spacing:-1.362884px;}
.ws9{word-spacing:-0.645576px;}
.ws59{word-spacing:-0.346698px;}
.ws44{word-spacing:-0.286923px;}
.ws66{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.047821px;}
.ws4e{word-spacing:-0.041843px;}
.ws30{word-spacing:-0.029412px;}
.ws2c{word-spacing:0.000000px;}
.ws24{word-spacing:0.011955px;}
.ws38{word-spacing:0.026899px;}
.ws60{word-spacing:0.191282px;}
.ws15{word-spacing:0.251058px;}
.ws6b{word-spacing:0.370609px;}
.ws65{word-spacing:0.490160px;}
.ws56{word-spacing:0.669487px;}
.ws58{word-spacing:0.729262px;}
.ws13{word-spacing:0.848814px;}
.wse{word-spacing:0.968365px;}
.ws5e{word-spacing:1.028140px;}
.ws40{word-spacing:1.087916px;}
.ws18{word-spacing:1.207467px;}
.ws8{word-spacing:1.327018px;}
.ws67{word-spacing:1.386794px;}
.ws69{word-spacing:1.506345px;}
.ws1f{word-spacing:1.566121px;}
.ws45{word-spacing:1.685672px;}
.wsc{word-spacing:1.745448px;}
.ws42{word-spacing:2.283428px;}
.ws4f{word-spacing:2.522530px;}
.ws36{word-spacing:2.555424px;}
.ws1b{word-spacing:2.642082px;}
.ws22{word-spacing:2.881184px;}
.ws62{word-spacing:3.000735px;}
.ws37{word-spacing:3.039610px;}
.ws39{word-spacing:3.093408px;}
.ws10{word-spacing:3.299613px;}
.ws1e{word-spacing:3.359389px;}
.ws54{word-spacing:3.478940px;}
.ws55{word-spacing:3.538716px;}
.wsf{word-spacing:3.598491px;}
.ws16{word-spacing:3.658267px;}
.ws3a{word-spacing:3.718042px;}
.ws61{word-spacing:3.957145px;}
.ws63{word-spacing:4.016920px;}
.wsd{word-spacing:4.136472px;}
.ws6a{word-spacing:4.256023px;}
.ws7{word-spacing:4.674452px;}
.ws21{word-spacing:4.794003px;}
.ws1c{word-spacing:5.033106px;}
.ws17{word-spacing:5.092881px;}
.ws35{word-spacing:5.837126px;}
.wsa{word-spacing:5.929740px;}
.ws28{word-spacing:6.109066px;}
.ws1a{word-spacing:6.288393px;}
.wsb{word-spacing:6.467720px;}
.ws50{word-spacing:6.706822px;}
.ws52{word-spacing:6.766598px;}
.ws26{word-spacing:7.005700px;}
.ws4c{word-spacing:7.185027px;}
.ws19{word-spacing:7.244803px;}
.ws3b{word-spacing:7.424130px;}
.ws53{word-spacing:7.603456px;}
.ws14{word-spacing:8.440315px;}
.ws4b{word-spacing:9.217398px;}
.ws64{word-spacing:9.456500px;}
.ws4a{word-spacing:10.115208px;}
.ws5c{word-spacing:11.130217px;}
.ws68{word-spacing:11.488870px;}
.ws5d{word-spacing:12.983260px;}
.ws33{word-spacing:14.686963px;}
.ws3e{word-spacing:16.557841px;}
.ws5a{word-spacing:16.629572px;}
.ws1{word-spacing:16.880672px;}
.ws0{word-spacing:18.028366px;}
.ws5{word-spacing:18.315290px;}
.ws3d{word-spacing:19.547208px;}
.ws4{word-spacing:20.281997px;}
.ws12{word-spacing:21.522102px;}
.ws29{word-spacing:22.523503px;}
.ws3{word-spacing:22.834279px;}
.ws11{word-spacing:23.312484px;}
.ws2b{word-spacing:24.101582px;}
.ws27{word-spacing:25.673208px;}
.ws2a{word-spacing:25.918765px;}
.ws4d{word-spacing:26.753208px;}
.ws31{word-spacing:77.971144px;}
.ws32{word-spacing:958.186328px;}
.ws2f{word-spacing:1116.741942px;}
._13{margin-left:-16.617617px;}
._2{margin-left:-6.355166px;}
._7{margin-left:-5.320028px;}
._3{margin-left:-4.160392px;}
._5{margin-left:-2.749670px;}
._0{margin-left:-1.434618px;}
._1{width:1.434618px;}
._8{width:2.450796px;}
._4{width:3.466988px;}
._b{width:16.557834px;}
._12{width:18.429088px;}
._15{width:20.921456px;}
._c{width:22.870155px;}
._f{width:24.663430px;}
._a{width:25.942610px;}
._14{width:27.855426px;}
._18{width:29.603538px;}
._d{width:31.441969px;}
._11{width:32.542197px;}
._9{width:34.610076px;}
._e{width:37.419526px;}
._17{width:45.369677px;}
._16{width:49.912626px;}
._6{width:66.303563px;}
._10{width:74.001225px;}
.fc5{color:transparent;}
.fc3{color:rgb(255,127,14);}
.fc1{color:rgb(46,49,146);}
.fc4{color:rgb(2,2,2);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:17.647100px;}
.fs13{font-size:23.529543px;}
.fsd{font-size:28.093890px;}
.fs6{font-size:29.411760px;}
.fs5{font-size:29.411834px;}
.fs8{font-size:29.412066px;}
.fsa{font-size:29.412686px;}
.fsc{font-size:32.354112px;}
.fs11{font-size:32.574171px;}
.fs10{font-size:33.712712px;}
.fs1{font-size:35.865600px;}
.fsf{font-size:40.898375px;}
.fs9{font-size:41.176567px;}
.fs7{font-size:41.177940px;}
.fse{font-size:41.458110px;}
.fs4{font-size:41.842800px;}
.fs0{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs12{font-size:82.353066px;}
.y0{bottom:0.000000px;}
.y41{bottom:1.856908px;}
.y5a{bottom:3.453949px;}
.y5e{bottom:11.338869px;}
.y3f{bottom:12.484063px;}
.y40{bottom:12.759799px;}
.y5d{bottom:29.764964px;}
.y42{bottom:45.236482px;}
.y4c{bottom:46.842837px;}
.y4b{bottom:52.174101px;}
.y49{bottom:52.497226px;}
.y48{bottom:52.519239px;}
.y4a{bottom:53.146343px;}
.y46{bottom:61.157427px;}
.y70{bottom:61.280676px;}
.y4d{bottom:63.440812px;}
.y6f{bottom:71.585449px;}
.y43{bottom:74.702657px;}
.y4e{bottom:80.038787px;}
.y6e{bottom:81.890222px;}
.y5f{bottom:83.051818px;}
.y53{bottom:87.421141px;}
.y6d{bottom:92.195046px;}
.y4f{bottom:96.636762px;}
.y56{bottom:98.398275px;}
.y75{bottom:98.557950px;}
.y5b{bottom:100.071605px;}
.y6c{bottom:102.499820px;}
.y44{bottom:104.168832px;}
.y91{bottom:106.777500px;}
.y74{bottom:109.331446px;}
.y54{bottom:111.268026px;}
.y6b{bottom:112.804576px;}
.y50{bottom:113.234738px;}
.y90{bottom:113.334000px;}
.y2d{bottom:116.805000px;}
.y8f{bottom:117.028500px;}
.y92{bottom:120.166500px;}
.y6a{bottom:123.109350px;}
.y55{bottom:123.303400px;}
.y51{bottom:129.832713px;}
.y45{bottom:133.635001px;}
.y2c{bottom:135.220500px;}
.y60{bottom:145.467318px;}
.y52{bottom:146.430688px;}
.y2b{bottom:147.306000px;}
.y64{bottom:154.607827px;}
.y8e{bottom:168.552000px;}
.y3d{bottom:168.869358px;}
.y3a{bottom:182.635106px;}
.y8d{bottom:187.233000px;}
.yc0{bottom:192.972000px;}
.y2a{bottom:195.217500px;}
.y8c{bottom:205.912500px;}
.y65{bottom:207.168383px;}
.y61{bottom:207.882751px;}
.ybf{bottom:212.400000px;}
.y3b{bottom:212.542993px;}
.y29{bottom:213.897000px;}
.yc8{bottom:223.335000px;}
.y8b{bottom:224.592000px;}
.ybe{bottom:231.826500px;}
.y28{bottom:232.576500px;}
.y71{bottom:236.411548px;}
.y58{bottom:237.109579px;}
.y3c{bottom:242.450886px;}
.y8a{bottom:243.271500px;}
.y57{bottom:247.839299px;}
.y3e{bottom:247.967373px;}
.yc7{bottom:248.773500px;}
.ybd{bottom:251.253000px;}
.y27{bottom:251.257500px;}
.y68{bottom:252.190075px;}
.y89{bottom:261.952500px;}
.y67{bottom:262.232578px;}
.y26{bottom:269.937000px;}
.y62{bottom:270.298201px;}
.ybc{bottom:270.681000px;}
.yc6{bottom:274.213500px;}
.y30{bottom:277.166969px;}
.y39{bottom:285.624785px;}
.y37{bottom:287.722054px;}
.ybb{bottom:290.107500px;}
.y32{bottom:291.190607px;}
.y72{bottom:294.342376px;}
.y25{bottom:294.594000px;}
.y38{bottom:296.192015px;}
.y31{bottom:298.403314px;}
.y88{bottom:302.986500px;}
.yc5{bottom:305.662500px;}
.yba{bottom:309.535500px;}
.y86{bottom:313.237500px;}
.y87{bottom:316.375500px;}
.y66{bottom:317.380440px;}
.y33{bottom:319.639664px;}
.y24{bottom:327.156000px;}
.yb9{bottom:328.962000px;}
.yc4{bottom:331.102500px;}
.y63{bottom:332.713625px;}
.y34{bottom:340.876014px;}
.y23{bottom:345.835500px;}
.y5c{bottom:346.755516px;}
.yb8{bottom:348.390000px;}
.yc3{bottom:349.782000px;}
.y35{bottom:362.112360px;}
.y85{bottom:363.693000px;}
.y22{bottom:364.516500px;}
.yb7{bottom:367.816500px;}
.y47{bottom:370.461571px;}
.yc2{bottom:375.220500px;}
.y84{bottom:382.372500px;}
.y21{bottom:383.196000px;}
.y36{bottom:383.348709px;}
.y73{bottom:385.837500px;}
.yb6{bottom:387.243000px;}
.yc1{bottom:400.659000px;}
.y83{bottom:401.053500px;}
.y20{bottom:401.875500px;}
.yb5{bottom:406.671000px;}
.y82{bottom:419.733000px;}
.y1f{bottom:420.556500px;}
.yb4{bottom:426.097500px;}
.y81{bottom:438.412500px;}
.y1e{bottom:439.236000px;}
.yb3{bottom:453.744000px;}
.y80{bottom:457.093500px;}
.y1d{bottom:457.915500px;}
.y1c{bottom:476.596500px;}
.y7f{bottom:485.452500px;}
.y1b{bottom:495.276000px;}
.yb2{bottom:502.312500px;}
.y7e{bottom:504.847500px;}
.y1a{bottom:513.955500px;}
.yb1{bottom:520.992000px;}
.y7d{bottom:523.527000px;}
.y19{bottom:532.635000px;}
.yb0{bottom:539.671500px;}
.y7c{bottom:542.206500px;}
.y18{bottom:551.316000px;}
.yaf{bottom:558.352500px;}
.y7b{bottom:560.886000px;}
.y17{bottom:569.995500px;}
.yae{bottom:577.032000px;}
.y7a{bottom:579.567000px;}
.y16{bottom:588.675000px;}
.yad{bottom:595.711500px;}
.y15{bottom:613.333500px;}
.yac{bottom:614.392500px;}
.y79{bottom:621.036000px;}
.yab{bottom:633.072000px;}
.y78{bottom:637.474500px;}
.yaa{bottom:651.751500px;}
.y77{bottom:653.913000px;}
.y14{bottom:656.853000px;}
.y76{bottom:670.351500px;}
.ya9{bottom:670.431000px;}
.ya8{bottom:689.112000px;}
.y2f{bottom:694.261500px;}
.ya7{bottom:707.791500px;}
.y13{bottom:714.936000px;}
.ya6{bottom:726.471000px;}
.y12{bottom:733.615500px;}
.y69{bottom:734.275635px;}
.ya5{bottom:745.152000px;}
.y11{bottom:752.296500px;}
.ya4{bottom:763.831500px;}
.y10{bottom:770.976000px;}
.ya3{bottom:782.511000px;}
.yf{bottom:789.655500px;}
.ya2{bottom:801.190500px;}
.ye{bottom:808.336500px;}
.ya1{bottom:819.871500px;}
.yd{bottom:827.016000px;}
.ya0{bottom:844.528500px;}
.yc{bottom:845.695500px;}
.yb{bottom:864.376500px;}
.y9f{bottom:878.152500px;}
.ya{bottom:883.056000px;}
.y9e{bottom:896.832000px;}
.y9{bottom:905.988000px;}
.y9d{bottom:911.818500px;}
.y9c{bottom:915.513000px;}
.y59{bottom:927.879045px;}
.y9b{bottom:930.498000px;}
.y9a{bottom:934.192500px;}
.y8{bottom:946.819500px;}
.y99{bottom:967.816500px;}
.y7{bottom:968.005500px;}
.y6{bottom:994.903500px;}
.y98{bottom:1001.440500px;}
.y5{bottom:1013.584500px;}
.y97{bottom:1020.120000px;}
.y96{bottom:1038.799500px;}
.y95{bottom:1053.786000px;}
.y94{bottom:1057.480500px;}
.y93{bottom:1076.160000px;}
.y4{bottom:1082.994000px;}
.y2{bottom:1085.566500px;}
.y3{bottom:1087.729500px;}
.y1{bottom:1099.764000px;}
.y2e{bottom:1110.573000px;}
.h11{height:12.469275px;}
.h10{height:12.847571px;}
.h1b{height:17.130151px;}
.h13{height:20.453120px;}
.h15{height:21.070418px;}
.hb{height:21.412566px;}
.ha{height:21.412619px;}
.hd{height:21.412788px;}
.hf{height:21.413240px;}
.h12{height:23.554678px;}
.h19{height:23.714887px;}
.h17{height:24.543777px;}
.h3{height:25.608038px;}
.h16{height:29.775136px;}
.he{height:29.977667px;}
.hc{height:29.978666px;}
.h14{height:30.182638px;}
.h1{height:34.239550px;}
.h2{height:35.865450px;}
.h1c{height:40.348800px;}
.h20{height:43.514100px;}
.h5{height:44.831700px;}
.h4{height:46.155450px;}
.h6{height:48.533770px;}
.h7{height:49.975733px;}
.h8{height:49.981733px;}
.h21{height:53.072100px;}
.h22{height:56.066100px;}
.h1a{height:58.949998px;}
.h24{height:59.609700px;}
.h23{height:100.049700px;}
.h1e{height:104.358780px;}
.h1d{height:123.138780px;}
.h1f{height:164.142780px;}
.h18{height:347.052300px;}
.h9{height:400.575000px;}
.h0{height:1188.000000px;}
.w2{width:20.697600px;}
.w3{width:206.182200px;}
.w1{width:764.400000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x33{left:2.205958px;}
.x2b{left:11.050977px;}
.x27{left:13.128593px;}
.x2a{left:25.479700px;}
.x29{left:50.876732px;}
.x2c{left:57.176838px;}
.x2d{left:66.838281px;}
.x2e{left:70.082314px;}
.xd{left:76.110000px;}
.xf{left:82.639500px;}
.x1{left:89.610000px;}
.x10{left:93.100500px;}
.x2f{left:110.844630px;}
.x30{left:112.763833px;}
.x31{left:115.785959px;}
.xb{left:126.919500px;}
.xa{left:140.370000px;}
.x2{left:175.381500px;}
.x3{left:181.512000px;}
.x4{left:188.569500px;}
.x3f{left:212.007000px;}
.x42{left:216.331500px;}
.x40{left:245.587500px;}
.x5{left:254.569500px;}
.x8{left:259.381500px;}
.x28{left:263.287599px;}
.x1b{left:265.265260px;}
.x13{left:267.608666px;}
.x15{left:274.216076px;}
.x11{left:278.309160px;}
.x6{left:299.025000px;}
.x37{left:307.195500px;}
.x23{left:310.582915px;}
.x14{left:315.856389px;}
.x3b{left:317.628000px;}
.xe{left:321.154500px;}
.x24{left:333.401284px;}
.x35{left:345.553975px;}
.x36{left:351.613500px;}
.x7{left:357.810000px;}
.x38{left:359.421000px;}
.x16{left:369.775277px;}
.xc{left:388.506000px;}
.x43{left:394.629000px;}
.x44{left:408.141000px;}
.x34{left:412.608185px;}
.x9{left:416.542500px;}
.x25{left:418.304826px;}
.x39{left:451.708500px;}
.x3c{left:463.030500px;}
.x26{left:464.709645px;}
.x17{left:480.515749px;}
.x41{left:486.850500px;}
.x1a{left:491.268262px;}
.x45{left:494.691000px;}
.x3a{left:496.239000px;}
.x3d{left:507.562500px;}
.x32{left:523.309254px;}
.x1c{left:542.594985px;}
.x18{left:595.425171px;}
.x1d{left:619.092642px;}
.x20{left:620.113318px;}
.x1e{left:627.916470px;}
.x19{left:705.688043px;}
.x1f{left:715.603261px;}
.x12{left:718.822329px;}
.x21{left:745.244382px;}
.x22{left:764.305214px;}
.x3e{left:835.438500px;}
@media print{
.v3{vertical-align:-15.002667pt;}
.va{vertical-align:-11.157333pt;}
.v8{vertical-align:-9.594667pt;}
.v4{vertical-align:-7.968000pt;}
.v7{vertical-align:-7.039035pt;}
.v6{vertical-align:-1.724959pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.146667pt;}
.v13{vertical-align:13.136000pt;}
.ve{vertical-align:16.821333pt;}
.v5{vertical-align:19.280000pt;}
.v2{vertical-align:20.314667pt;}
.v12{vertical-align:21.941333pt;}
.vd{vertical-align:24.789333pt;}
.v14{vertical-align:35.946667pt;}
.vc{vertical-align:63.765333pt;}
.vb{vertical-align:90.106667pt;}
.v10{vertical-align:100.357333pt;}
.v9{vertical-align:106.800000pt;}
.vf{vertical-align:111.370667pt;}
.v11{vertical-align:143.248000pt;}
.ls10{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.002133pt;}
.ls4d{letter-spacing:0.002233pt;}
.ls39{letter-spacing:0.002489pt;}
.ls21{letter-spacing:0.002632pt;}
.ls27{letter-spacing:0.002827pt;}
.ls42{letter-spacing:0.003648pt;}
.ls18{letter-spacing:0.004882pt;}
.ls3a{letter-spacing:0.005138pt;}
.ls2a{letter-spacing:0.005295pt;}
.ls55{letter-spacing:0.008596pt;}
.ls51{letter-spacing:0.009048pt;}
.ls17{letter-spacing:0.009916pt;}
.ls44{letter-spacing:0.014457pt;}
.ls2d{letter-spacing:0.014533pt;}
.ls1b{letter-spacing:0.015878pt;}
.ls2e{letter-spacing:0.016116pt;}
.ls40{letter-spacing:0.016363pt;}
.ls2c{letter-spacing:0.018835pt;}
.ls4{letter-spacing:0.019399pt;}
.ls47{letter-spacing:0.020581pt;}
.ls3e{letter-spacing:0.021925pt;}
.ls19{letter-spacing:0.024382pt;}
.ls34{letter-spacing:1.487748pt;}
.ls4e{letter-spacing:2.652459pt;}
.ls9{letter-spacing:2.652911pt;}
.ls54{letter-spacing:2.653413pt;}
.ls43{letter-spacing:2.657793pt;}
.ls3b{letter-spacing:2.658245pt;}
.lsa{letter-spacing:8.713954pt;}
.ls1e{letter-spacing:8.873356pt;}
.lsd{letter-spacing:10.945577pt;}
.ls29{letter-spacing:11.506746pt;}
.ls2f{letter-spacing:11.514001pt;}
.ls14{letter-spacing:11.795718pt;}
.ls25{letter-spacing:11.813827pt;}
.ls23{letter-spacing:11.819160pt;}
.ls11{letter-spacing:13.628928pt;}
.ls16{letter-spacing:14.460911pt;}
.ls3c{letter-spacing:14.755867pt;}
.ls28{letter-spacing:14.761200pt;}
.ls20{letter-spacing:14.771215pt;}
.ls0{letter-spacing:15.047549pt;}
.ls6{letter-spacing:15.249420pt;}
.ls3f{letter-spacing:15.833892pt;}
.ls59{letter-spacing:16.205829pt;}
.ls4a{letter-spacing:16.418365pt;}
.ls1d{letter-spacing:16.790302pt;}
.ls35{letter-spacing:17.415126pt;}
.lsc{letter-spacing:17.415578pt;}
.ls45{letter-spacing:17.418001pt;}
.ls3{letter-spacing:17.693578pt;}
.lsf{letter-spacing:17.712473pt;}
.ls2{letter-spacing:17.746711pt;}
.ls5{letter-spacing:17.917542pt;}
.ls41{letter-spacing:18.050245pt;}
.ls50{letter-spacing:18.321793pt;}
.ls4f{letter-spacing:18.327126pt;}
.ls57{letter-spacing:18.748911pt;}
.lsb{letter-spacing:18.807578pt;}
.ls58{letter-spacing:18.839126pt;}
.ls1f{letter-spacing:18.924911pt;}
.ls1{letter-spacing:18.981806pt;}
.ls7{letter-spacing:19.234460pt;}
.ls53{letter-spacing:19.393861pt;}
.ls1c{letter-spacing:19.460667pt;}
.ls1a{letter-spacing:19.466001pt;}
.ls22{letter-spacing:19.594199pt;}
.ls31{letter-spacing:19.872066pt;}
.lse{letter-spacing:19.959578pt;}
.ls15{letter-spacing:20.343578pt;}
.ls8{letter-spacing:20.350271pt;}
.ls12{letter-spacing:20.364911pt;}
.ls3d{letter-spacing:20.545793pt;}
.ls56{letter-spacing:20.988459pt;}
.ls36{letter-spacing:21.136479pt;}
.ls5a{letter-spacing:21.218245pt;}
.ls32{letter-spacing:21.306681pt;}
.ls52{letter-spacing:22.065793pt;}
.ls30{letter-spacing:22.209956pt;}
.ls33{letter-spacing:22.507919pt;}
.ls2b{letter-spacing:23.167334pt;}
.ls13{letter-spacing:23.522245pt;}
.ls38{letter-spacing:25.133494pt;}
.ls26{letter-spacing:25.138827pt;}
.ls4c{letter-spacing:26.301264pt;}
.ls46{letter-spacing:26.566933pt;}
.ls49{letter-spacing:28.951578pt;}
.ls4b{letter-spacing:28.952079pt;}
.ls48{letter-spacing:28.956459pt;}
.ls37{letter-spacing:40.823029pt;}
.ws41{word-spacing:-42.359791pt;}
.ws49{word-spacing:-42.066082pt;}
.ws23{word-spacing:-34.611401pt;}
.ws48{word-spacing:-29.531803pt;}
.ws57{word-spacing:-25.738045pt;}
.ws43{word-spacing:-20.767368pt;}
.ws5b{word-spacing:-19.893320pt;}
.ws47{word-spacing:-19.840186pt;}
.ws6{word-spacing:-14.760588pt;}
.ws6c{word-spacing:-13.652838pt;}
.ws2e{word-spacing:-7.263810pt;}
.ws2d{word-spacing:-7.263657pt;}
.ws20{word-spacing:-6.099768pt;}
.ws3f{word-spacing:-5.940366pt;}
.ws51{word-spacing:-5.887232pt;}
.ws46{word-spacing:-5.834099pt;}
.ws25{word-spacing:-3.761878pt;}
.ws3c{word-spacing:-3.018004pt;}
.ws1d{word-spacing:-2.486665pt;}
.ws34{word-spacing:-2.271488pt;}
.ws5f{word-spacing:-1.211452pt;}
.ws9{word-spacing:-0.573846pt;}
.ws59{word-spacing:-0.308176pt;}
.ws44{word-spacing:-0.255043pt;}
.ws66{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.042507pt;}
.ws4e{word-spacing:-0.037194pt;}
.ws30{word-spacing:-0.026144pt;}
.ws2c{word-spacing:0.000000pt;}
.ws24{word-spacing:0.010627pt;}
.ws38{word-spacing:0.023910pt;}
.ws60{word-spacing:0.170028pt;}
.ws15{word-spacing:0.223162pt;}
.ws6b{word-spacing:0.329430pt;}
.ws65{word-spacing:0.435698pt;}
.ws56{word-spacing:0.595099pt;}
.ws58{word-spacing:0.648233pt;}
.ws13{word-spacing:0.754501pt;}
.wse{word-spacing:0.860769pt;}
.ws5e{word-spacing:0.913903pt;}
.ws40{word-spacing:0.967036pt;}
.ws18{word-spacing:1.073304pt;}
.ws8{word-spacing:1.179572pt;}
.ws67{word-spacing:1.232706pt;}
.ws69{word-spacing:1.338973pt;}
.ws1f{word-spacing:1.392107pt;}
.ws45{word-spacing:1.498375pt;}
.wsc{word-spacing:1.551509pt;}
.ws42{word-spacing:2.029714pt;}
.ws4f{word-spacing:2.242249pt;}
.ws36{word-spacing:2.271488pt;}
.ws1b{word-spacing:2.348517pt;}
.ws22{word-spacing:2.561052pt;}
.ws62{word-spacing:2.667320pt;}
.ws37{word-spacing:2.701875pt;}
.ws39{word-spacing:2.749696pt;}
.ws10{word-spacing:2.932989pt;}
.ws1e{word-spacing:2.986123pt;}
.ws54{word-spacing:3.092391pt;}
.ws55{word-spacing:3.145525pt;}
.wsf{word-spacing:3.198659pt;}
.ws16{word-spacing:3.251793pt;}
.ws3a{word-spacing:3.304927pt;}
.ws61{word-spacing:3.517462pt;}
.ws63{word-spacing:3.570596pt;}
.wsd{word-spacing:3.676864pt;}
.ws6a{word-spacing:3.783131pt;}
.ws7{word-spacing:4.155068pt;}
.ws21{word-spacing:4.261336pt;}
.ws1c{word-spacing:4.473872pt;}
.ws17{word-spacing:4.527005pt;}
.ws35{word-spacing:5.188557pt;}
.wsa{word-spacing:5.270880pt;}
.ws28{word-spacing:5.430281pt;}
.ws1a{word-spacing:5.589683pt;}
.wsb{word-spacing:5.749084pt;}
.ws50{word-spacing:5.961620pt;}
.ws52{word-spacing:6.014754pt;}
.ws26{word-spacing:6.227289pt;}
.ws4c{word-spacing:6.386691pt;}
.ws19{word-spacing:6.439825pt;}
.ws3b{word-spacing:6.599226pt;}
.ws53{word-spacing:6.758628pt;}
.ws14{word-spacing:7.502502pt;}
.ws4b{word-spacing:8.193242pt;}
.ws64{word-spacing:8.405778pt;}
.ws4a{word-spacing:8.991296pt;}
.ws5c{word-spacing:9.893526pt;}
.ws68{word-spacing:10.212329pt;}
.ws5d{word-spacing:11.540676pt;}
.ws33{word-spacing:13.055078pt;}
.ws3e{word-spacing:14.718081pt;}
.ws5a{word-spacing:14.781842pt;}
.ws1{word-spacing:15.005042pt;}
.ws0{word-spacing:16.025214pt;}
.ws5{word-spacing:16.280258pt;}
.ws3d{word-spacing:17.375296pt;}
.ws4{word-spacing:18.028442pt;}
.ws12{word-spacing:19.130757pt;}
.ws29{word-spacing:20.020891pt;}
.ws3{word-spacing:20.297137pt;}
.ws11{word-spacing:20.722208pt;}
.ws2b{word-spacing:21.423629pt;}
.ws27{word-spacing:22.820629pt;}
.ws2a{word-spacing:23.038902pt;}
.ws4d{word-spacing:23.780629pt;}
.ws31{word-spacing:69.307683pt;}
.ws32{word-spacing:851.721180pt;}
.ws2f{word-spacing:992.659504pt;}
._13{margin-left:-14.771215pt;}
._2{margin-left:-5.649036pt;}
._7{margin-left:-4.728914pt;}
._3{margin-left:-3.698126pt;}
._5{margin-left:-2.444151pt;}
._0{margin-left:-1.275216pt;}
._1{width:1.275216pt;}
._8{width:2.178485pt;}
._4{width:3.081767pt;}
._b{width:14.718075pt;}
._12{width:16.381412pt;}
._15{width:18.596850pt;}
._c{width:20.329027pt;}
._f{width:21.923049pt;}
._a{width:23.060098pt;}
._14{width:24.760379pt;}
._18{width:26.314256pt;}
._d{width:27.948417pt;}
._11{width:28.926397pt;}
._9{width:30.764512pt;}
._e{width:33.261801pt;}
._17{width:40.328602pt;}
._16{width:44.366779pt;}
._6{width:58.936501pt;}
._10{width:65.778867pt;}
.fsb{font-size:15.686311pt;}
.fs13{font-size:20.915150pt;}
.fsd{font-size:24.972347pt;}
.fs6{font-size:26.143787pt;}
.fs5{font-size:26.143852pt;}
.fs8{font-size:26.144058pt;}
.fsa{font-size:26.144610pt;}
.fsc{font-size:28.759211pt;}
.fs11{font-size:28.954819pt;}
.fs10{font-size:29.966856pt;}
.fs1{font-size:31.880533pt;}
.fsf{font-size:36.354111pt;}
.fs9{font-size:36.601393pt;}
.fs7{font-size:36.602613pt;}
.fse{font-size:36.851653pt;}
.fs4{font-size:37.193600pt;}
.fs0{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs12{font-size:73.202725pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:1.650585pt;}
.y5a{bottom:3.070177pt;}
.y5e{bottom:10.078994pt;}
.y3f{bottom:11.096945pt;}
.y40{bottom:11.342044pt;}
.y5d{bottom:26.457746pt;}
.y42{bottom:40.210206pt;}
.y4c{bottom:41.638077pt;}
.y4b{bottom:46.376978pt;}
.y49{bottom:46.664201pt;}
.y48{bottom:46.683768pt;}
.y4a{bottom:47.241194pt;}
.y46{bottom:54.362157pt;}
.y70{bottom:54.471712pt;}
.y4d{bottom:56.391833pt;}
.y6f{bottom:63.631510pt;}
.y43{bottom:66.402362pt;}
.y4e{bottom:71.145589pt;}
.y6e{bottom:72.791308pt;}
.y5f{bottom:73.823838pt;}
.y53{bottom:77.707681pt;}
.y6d{bottom:81.951152pt;}
.y4f{bottom:85.899344pt;}
.y56{bottom:87.465133pt;}
.y75{bottom:87.607067pt;}
.y5b{bottom:88.952537pt;}
.y6c{bottom:91.110951pt;}
.y44{bottom:92.594517pt;}
.y91{bottom:94.913333pt;}
.y74{bottom:97.183507pt;}
.y54{bottom:98.904912pt;}
.y6b{bottom:100.270734pt;}
.y50{bottom:100.653100pt;}
.y90{bottom:100.741333pt;}
.y2d{bottom:103.826667pt;}
.y8f{bottom:104.025333pt;}
.y92{bottom:106.814667pt;}
.y6a{bottom:109.430533pt;}
.y55{bottom:109.603022pt;}
.y51{bottom:115.406856pt;}
.y45{bottom:118.786668pt;}
.y2c{bottom:120.196000pt;}
.y60{bottom:129.304283pt;}
.y52{bottom:130.160612pt;}
.y2b{bottom:130.938667pt;}
.y64{bottom:137.429180pt;}
.y8e{bottom:149.824000pt;}
.y3d{bottom:150.106096pt;}
.y3a{bottom:162.342316pt;}
.y8d{bottom:166.429333pt;}
.yc0{bottom:171.530667pt;}
.y2a{bottom:173.526667pt;}
.y8c{bottom:183.033333pt;}
.y65{bottom:184.149673pt;}
.y61{bottom:184.784668pt;}
.ybf{bottom:188.800000pt;}
.y3b{bottom:188.927105pt;}
.y29{bottom:190.130667pt;}
.yc8{bottom:198.520000pt;}
.y8b{bottom:199.637333pt;}
.ybe{bottom:206.068000pt;}
.y28{bottom:206.734667pt;}
.y71{bottom:210.143598pt;}
.y58{bottom:210.764070pt;}
.y3c{bottom:215.511899pt;}
.y8a{bottom:216.241333pt;}
.y57{bottom:220.301599pt;}
.y3e{bottom:220.415442pt;}
.yc7{bottom:221.132000pt;}
.ybd{bottom:223.336000pt;}
.y27{bottom:223.340000pt;}
.y68{bottom:224.168956pt;}
.y89{bottom:232.846667pt;}
.y67{bottom:233.095625pt;}
.y26{bottom:239.944000pt;}
.y62{bottom:240.265067pt;}
.ybc{bottom:240.605333pt;}
.yc6{bottom:243.745333pt;}
.y30{bottom:246.370639pt;}
.y39{bottom:253.888697pt;}
.y37{bottom:255.752937pt;}
.ybb{bottom:257.873333pt;}
.y32{bottom:258.836095pt;}
.y72{bottom:261.637668pt;}
.y25{bottom:261.861333pt;}
.y38{bottom:263.281791pt;}
.y31{bottom:265.247390pt;}
.y88{bottom:269.321333pt;}
.yc5{bottom:271.700000pt;}
.yba{bottom:275.142667pt;}
.y86{bottom:278.433333pt;}
.y87{bottom:281.222667pt;}
.y66{bottom:282.115946pt;}
.y33{bottom:284.124145pt;}
.y24{bottom:290.805333pt;}
.yb9{bottom:292.410667pt;}
.yc4{bottom:294.313333pt;}
.y63{bottom:295.745445pt;}
.y34{bottom:303.000901pt;}
.y23{bottom:307.409333pt;}
.y5c{bottom:308.227125pt;}
.yb8{bottom:309.680000pt;}
.yc3{bottom:310.917333pt;}
.y35{bottom:321.877654pt;}
.y85{bottom:323.282667pt;}
.y22{bottom:324.014667pt;}
.yb7{bottom:326.948000pt;}
.y47{bottom:329.299174pt;}
.yc2{bottom:333.529333pt;}
.y84{bottom:339.886667pt;}
.y21{bottom:340.618667pt;}
.y36{bottom:340.754408pt;}
.y73{bottom:342.966667pt;}
.yb6{bottom:344.216000pt;}
.yc1{bottom:356.141333pt;}
.y83{bottom:356.492000pt;}
.y20{bottom:357.222667pt;}
.yb5{bottom:361.485333pt;}
.y82{bottom:373.096000pt;}
.y1f{bottom:373.828000pt;}
.yb4{bottom:378.753333pt;}
.y81{bottom:389.700000pt;}
.y1e{bottom:390.432000pt;}
.yb3{bottom:403.328000pt;}
.y80{bottom:406.305333pt;}
.y1d{bottom:407.036000pt;}
.y1c{bottom:423.641333pt;}
.y7f{bottom:431.513333pt;}
.y1b{bottom:440.245333pt;}
.yb2{bottom:446.500000pt;}
.y7e{bottom:448.753333pt;}
.y1a{bottom:456.849333pt;}
.yb1{bottom:463.104000pt;}
.y7d{bottom:465.357333pt;}
.y19{bottom:473.453333pt;}
.yb0{bottom:479.708000pt;}
.y7c{bottom:481.961333pt;}
.y18{bottom:490.058667pt;}
.yaf{bottom:496.313333pt;}
.y7b{bottom:498.565333pt;}
.y17{bottom:506.662667pt;}
.yae{bottom:512.917333pt;}
.y7a{bottom:515.170667pt;}
.y16{bottom:523.266667pt;}
.yad{bottom:529.521333pt;}
.y15{bottom:545.185333pt;}
.yac{bottom:546.126667pt;}
.y79{bottom:552.032000pt;}
.yab{bottom:562.730667pt;}
.y78{bottom:566.644000pt;}
.yaa{bottom:579.334667pt;}
.y77{bottom:581.256000pt;}
.y14{bottom:583.869333pt;}
.y76{bottom:595.868000pt;}
.ya9{bottom:595.938667pt;}
.ya8{bottom:612.544000pt;}
.y2f{bottom:617.121333pt;}
.ya7{bottom:629.148000pt;}
.y13{bottom:635.498667pt;}
.ya6{bottom:645.752000pt;}
.y12{bottom:652.102667pt;}
.y69{bottom:652.689453pt;}
.ya5{bottom:662.357333pt;}
.y11{bottom:668.708000pt;}
.ya4{bottom:678.961333pt;}
.y10{bottom:685.312000pt;}
.ya3{bottom:695.565333pt;}
.yf{bottom:701.916000pt;}
.ya2{bottom:712.169333pt;}
.ye{bottom:718.521333pt;}
.ya1{bottom:728.774667pt;}
.yd{bottom:735.125333pt;}
.ya0{bottom:750.692000pt;}
.yc{bottom:751.729333pt;}
.yb{bottom:768.334667pt;}
.y9f{bottom:780.580000pt;}
.ya{bottom:784.938667pt;}
.y9e{bottom:797.184000pt;}
.y9{bottom:805.322667pt;}
.y9d{bottom:810.505333pt;}
.y9c{bottom:813.789333pt;}
.y59{bottom:824.781373pt;}
.y9b{bottom:827.109333pt;}
.y9a{bottom:830.393333pt;}
.y8{bottom:841.617333pt;}
.y99{bottom:860.281333pt;}
.y7{bottom:860.449333pt;}
.y6{bottom:884.358667pt;}
.y98{bottom:890.169333pt;}
.y5{bottom:900.964000pt;}
.y97{bottom:906.773333pt;}
.y96{bottom:923.377333pt;}
.y95{bottom:936.698667pt;}
.y94{bottom:939.982667pt;}
.y93{bottom:956.586667pt;}
.y4{bottom:962.661333pt;}
.y2{bottom:964.948000pt;}
.y3{bottom:966.870667pt;}
.y1{bottom:977.568000pt;}
.y2e{bottom:987.176000pt;}
.h11{height:11.083800pt;}
.h10{height:11.420063pt;}
.h1b{height:15.226801pt;}
.h13{height:18.180551pt;}
.h15{height:18.729260pt;}
.hb{height:19.033392pt;}
.ha{height:19.033439pt;}
.hd{height:19.033589pt;}
.hf{height:19.033991pt;}
.h12{height:20.937492pt;}
.h19{height:21.079900pt;}
.h17{height:21.816690pt;}
.h3{height:22.762701pt;}
.h16{height:26.466787pt;}
.he{height:26.646815pt;}
.hc{height:26.647703pt;}
.h14{height:26.829011pt;}
.h1{height:30.435155pt;}
.h2{height:31.880400pt;}
.h1c{height:35.865600pt;}
.h20{height:38.679200pt;}
.h5{height:39.850400pt;}
.h4{height:41.027067pt;}
.h6{height:43.141129pt;}
.h7{height:44.422874pt;}
.h8{height:44.428207pt;}
.h21{height:47.175200pt;}
.h22{height:49.836533pt;}
.h1a{height:52.399998pt;}
.h24{height:52.986400pt;}
.h23{height:88.933067pt;}
.h1e{height:92.763360pt;}
.h1d{height:109.456693pt;}
.h1f{height:145.904693pt;}
.h18{height:308.490933pt;}
.h9{height:356.066667pt;}
.h0{height:1056.000000pt;}
.w2{width:18.397867pt;}
.w3{width:183.273067pt;}
.w1{width:679.466667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x33{left:1.960852pt;}
.x2b{left:9.823091pt;}
.x27{left:11.669860pt;}
.x2a{left:22.648623pt;}
.x29{left:45.223762pt;}
.x2c{left:50.823856pt;}
.x2d{left:59.411806pt;}
.x2e{left:62.295390pt;}
.xd{left:67.653333pt;}
.xf{left:73.457333pt;}
.x1{left:79.653333pt;}
.x10{left:82.756000pt;}
.x2f{left:98.528560pt;}
.x30{left:100.234518pt;}
.x31{left:102.920852pt;}
.xb{left:112.817333pt;}
.xa{left:124.773333pt;}
.x2{left:155.894667pt;}
.x3{left:161.344000pt;}
.x4{left:167.617333pt;}
.x3f{left:188.450667pt;}
.x42{left:192.294667pt;}
.x40{left:218.300000pt;}
.x5{left:226.284000pt;}
.x8{left:230.561333pt;}
.x28{left:234.033421pt;}
.x1b{left:235.791342pt;}
.x13{left:237.874370pt;}
.x15{left:243.747623pt;}
.x11{left:247.385920pt;}
.x6{left:265.800000pt;}
.x37{left:273.062667pt;}
.x23{left:276.073702pt;}
.x14{left:280.761234pt;}
.x3b{left:282.336000pt;}
.xe{left:285.470667pt;}
.x24{left:296.356697pt;}
.x35{left:307.159089pt;}
.x36{left:312.545333pt;}
.x7{left:318.053333pt;}
.x38{left:319.485333pt;}
.x16{left:328.689135pt;}
.xc{left:345.338667pt;}
.x43{left:350.781333pt;}
.x44{left:362.792000pt;}
.x34{left:366.762831pt;}
.x9{left:370.260000pt;}
.x25{left:371.826512pt;}
.x39{left:401.518667pt;}
.x3c{left:411.582667pt;}
.x26{left:413.075240pt;}
.x17{left:427.125110pt;}
.x41{left:432.756000pt;}
.x1a{left:436.682899pt;}
.x45{left:439.725333pt;}
.x3a{left:441.101333pt;}
.x3d{left:451.166667pt;}
.x32{left:465.163781pt;}
.x1c{left:482.306653pt;}
.x18{left:529.266819pt;}
.x1d{left:550.304571pt;}
.x20{left:551.211838pt;}
.x1e{left:558.147973pt;}
.x19{left:627.278260pt;}
.x1f{left:636.091788pt;}
.x12{left:638.953181pt;}
.x21{left:662.439451pt;}
.x22{left:679.382412pt;}
.x3e{left:742.612000pt;}
}




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