
    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_7de2674008876255095757ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938000;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_b79ef32bf7161bf133baa4f3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.731000;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_2c4d8aafa2d0230d00328d55.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.897000;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_d6427c6ea1967a41757d38a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_26e6375b036d1c8ae75185fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_d01661853d2cf238f465a5b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_88b5393c794867fe808b92ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895508;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_8c38f6a109d6c2079241879d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_7b181f570861cecea3abd54e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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;}
.m9{transform:matrix(0.000000,-0.249878,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249878,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249878,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249897,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249897,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249897,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250024,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250024,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250024,0.250000,0.000000,0,0);}
.m18{transform:matrix(0.000000,-0.250141,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250141,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250141,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250154,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250154,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250154,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.250324,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250324,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250324,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.250405,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250405,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250405,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.000000,-0.250458,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250458,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250458,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.250551,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250551,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250551,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,0.250154,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250154,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250154,-0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,0.250024,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250024,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250024,-0.250000,0.000000,0,0);}
.me{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249676,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249697,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,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);}
.m14{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250241,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-28.813936px;}
.v8{vertical-align:-25.785621px;}
.v7{vertical-align:-19.004354px;}
.vb{vertical-align:-17.278641px;}
.ve{vertical-align:-14.218636px;}
.vd{vertical-align:-12.911221px;}
.v4{vertical-align:-9.360000px;}
.va{vertical-align:-3.268932px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.360000px;}
.v9{vertical-align:22.036283px;}
.vc{vertical-align:24.683216px;}
.v1{vertical-align:26.633529px;}
.v5{vertical-align:30.240000px;}
.v3{vertical-align:40.500274px;}
.ls27{letter-spacing:-0.768000px;}
.ls36{letter-spacing:-0.630000px;}
.ls17{letter-spacing:-0.471645px;}
.lsf{letter-spacing:-0.471545px;}
.ls22{letter-spacing:-0.463799px;}
.ls1a{letter-spacing:-0.269663px;}
.ls12{letter-spacing:-0.269605px;}
.ls14{letter-spacing:-0.247760px;}
.ls18{letter-spacing:-0.228949px;}
.ls10{letter-spacing:-0.228900px;}
.ls24{letter-spacing:-0.216000px;}
.ls39{letter-spacing:-0.211358px;}
.ls13{letter-spacing:-0.190611px;}
.ls2f{letter-spacing:-0.140097px;}
.ls31{letter-spacing:-0.132600px;}
.ls38{letter-spacing:-0.115286px;}
.lsd{letter-spacing:-0.111540px;}
.lsc{letter-spacing:-0.111482px;}
.ls26{letter-spacing:-0.048960px;}
.ls28{letter-spacing:-0.046210px;}
.ls19{letter-spacing:-0.027284px;}
.ls11{letter-spacing:-0.027278px;}
.ls2d{letter-spacing:-0.023350px;}
.ls15{letter-spacing:-0.020378px;}
.ls32{letter-spacing:-0.019291px;}
.ls2e{letter-spacing:-0.017488px;}
.ls29{letter-spacing:-0.012411px;}
.ls2a{letter-spacing:-0.012406px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.020378px;}
.ls3{letter-spacing:0.027128px;}
.ls5{letter-spacing:0.041656px;}
.ls6{letter-spacing:0.055542px;}
.ls2c{letter-spacing:0.070049px;}
.ls33{letter-spacing:0.071184px;}
.ls1b{letter-spacing:0.083520px;}
.ls2{letter-spacing:0.105728px;}
.lsa{letter-spacing:0.105750px;}
.ls30{letter-spacing:0.116581px;}
.ls2b{letter-spacing:0.116748px;}
.ls34{letter-spacing:0.118640px;}
.lsb{letter-spacing:0.125405px;}
.ls1{letter-spacing:0.125604px;}
.ls9{letter-spacing:0.125631px;}
.ls1e{letter-spacing:0.129662px;}
.ls21{letter-spacing:0.129731px;}
.ls7{letter-spacing:0.151008px;}
.ls37{letter-spacing:0.151153px;}
.ls1d{letter-spacing:0.159834px;}
.ls20{letter-spacing:0.159919px;}
.ls1f{letter-spacing:0.184626px;}
.ls1c{letter-spacing:0.184695px;}
.ls25{letter-spacing:0.247800px;}
.ls23{letter-spacing:0.256200px;}
.lse{letter-spacing:0.265376px;}
.ls16{letter-spacing:0.265433px;}
.ls4{letter-spacing:0.267064px;}
.ls35{letter-spacing:13.565347px;}
.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;}
}
.ws33{word-spacing:-37.049457px;}
.ws18{word-spacing:-17.042887px;}
.wsa{word-spacing:-17.039262px;}
.ws17{word-spacing:-17.015787px;}
.ws14{word-spacing:-16.995408px;}
.ws1c{word-spacing:-16.883204px;}
.wse{word-spacing:-16.879613px;}
.ws19{word-spacing:-16.777454px;}
.wsb{word-spacing:-16.773885px;}
.ws13{word-spacing:-16.747648px;}
.ws1b{word-spacing:-16.548505px;}
.wsd{word-spacing:-16.544985px;}
.ws21{word-spacing:-14.921280px;}
.ws39{word-spacing:-14.837640px;}
.ws22{word-spacing:-14.506441px;}
.ws23{word-spacing:-14.202240px;}
.ws8{word-spacing:-13.548050px;}
.ws40{word-spacing:-13.044715px;}
.ws3a{word-spacing:-13.027345px;}
.ws35{word-spacing:-12.580564px;}
.ws12{word-spacing:-12.302927px;}
.ws36{word-spacing:-10.466666px;}
.ws2a{word-spacing:-10.300760px;}
.ws2d{word-spacing:-10.296924px;}
.ws24{word-spacing:-9.437760px;}
.ws28{word-spacing:-8.160090px;}
.ws1f{word-spacing:-0.322440px;}
.ws31{word-spacing:-0.046699px;}
.ws20{word-spacing:-0.041760px;}
.ws6{word-spacing:0.000000px;}
.ws3c{word-spacing:0.288216px;}
.ws3b{word-spacing:0.326644px;}
.ws1e{word-spacing:0.397559px;}
.ws3e{word-spacing:0.461145px;}
.ws3f{word-spacing:0.518788px;}
.ws42{word-spacing:0.659693px;}
.ws41{word-spacing:0.672503px;}
.ws3d{word-spacing:0.710932px;}
.ws0{word-spacing:18.220433px;}
.ws5{word-spacing:20.012837px;}
.ws3{word-spacing:23.206017px;}
.ws4{word-spacing:23.306440px;}
.ws2{word-spacing:23.381757px;}
.ws1{word-spacing:23.590971px;}
.ws29{word-spacing:35.378181px;}
.ws2f{word-spacing:47.344988px;}
.ws27{word-spacing:52.903695px;}
.ws11{word-spacing:72.800854px;}
.ws32{word-spacing:75.014392px;}
.ws25{word-spacing:77.492905px;}
.ws16{word-spacing:83.229184px;}
.ws9{word-spacing:88.740686px;}
.ws7{word-spacing:89.095942px;}
.ws10{word-spacing:89.555445px;}
.ws26{word-spacing:93.885711px;}
.ws15{word-spacing:99.567422px;}
.ws2c{word-spacing:106.837592px;}
.ws2e{word-spacing:135.683620px;}
.ws2b{word-spacing:135.734168px;}
.ws34{word-spacing:141.060340px;}
.ws37{word-spacing:283.402106px;}
.ws1a{word-spacing:678.303967px;}
.wsc{word-spacing:793.984213px;}
.ws1d{word-spacing:1113.902940px;}
.ws38{word-spacing:1138.995285px;}
.wsf{word-spacing:1184.503469px;}
.ws30{word-spacing:1228.534690px;}
._6{margin-left:-2339.848339px;}
._14{margin-left:-2.132795px;}
._2{margin-left:-1.001181px;}
._3{width:1.685082px;}
._b{width:2.691540px;}
._9{width:3.709440px;}
._a{width:4.857600px;}
._f{width:5.925021px;}
._13{width:6.996595px;}
._11{width:8.415162px;}
._c{width:10.134720px;}
._d{width:11.194560px;}
._12{width:13.123101px;}
._10{width:16.295040px;}
._4{width:17.421120px;}
._e{width:19.010995px;}
._1{width:20.012061px;}
._0{width:21.189219px;}
._7{width:122.303968px;}
._8{width:132.732298px;}
._5{width:849.185760px;}
.fc8{color:rgb(128,0,0);}
.fc7{color:rgb(0,0,128);}
.fc6{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc4{color:rgb(0,143,86);}
.fc3{color:rgb(0,102,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,128,0);}
.fc9{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:22.209242px;}
.fs13{font-size:22.218387px;}
.fs1a{font-size:23.903848px;}
.fs1e{font-size:23.916593px;}
.fs28{font-size:26.997362px;}
.fs7{font-size:29.150347px;}
.fs9{font-size:29.165486px;}
.fs17{font-size:29.352841px;}
.fs6{font-size:29.523890px;}
.fs2c{font-size:31.938942px;}
.fs12{font-size:36.223666px;}
.fs15{font-size:36.502748px;}
.fs1c{font-size:37.039293px;}
.fs22{font-size:37.049457px;}
.fs18{font-size:37.053092px;}
.fs29{font-size:37.649879px;}
.fs30{font-size:38.428746px;}
.fs19{font-size:39.958482px;}
.fs23{font-size:39.975616px;}
.fs1d{font-size:39.979787px;}
.fs1f{font-size:40.405347px;}
.fs24{font-size:40.417862px;}
.fs1b{font-size:40.420399px;}
.fs26{font-size:41.072871px;}
.fs11{font-size:41.760000px;}
.fsd{font-size:44.255133px;}
.fs27{font-size:45.253828px;}
.fs21{font-size:46.699028px;}
.fs4{font-size:48.733993px;}
.fs16{font-size:48.919641px;}
.fs5{font-size:49.059069px;}
.fs8{font-size:49.084548px;}
.fs2b{font-size:49.434785px;}
.fs2a{font-size:49.786396px;}
.fs2f{font-size:57.643119px;}
.fs31{font-size:57.719977px;}
.fsb{font-size:59.250869px;}
.fs25{font-size:59.760000px;}
.fsf{font-size:61.134563px;}
.fs0{font-size:65.754000px;}
.fs3{font-size:66.240000px;}
.fs20{font-size:70.048543px;}
.fs2d{font-size:71.183745px;}
.fs2{font-size:71.730600px;}
.fsc{font-size:73.470004px;}
.fsa{font-size:74.220732px;}
.fs10{font-size:74.236522px;}
.fse{font-size:74.266884px;}
.fs1{font-size:83.685600px;}
.fs2e{font-size:89.538978px;}
.y0{bottom:0.000000px;}
.y5d{bottom:0.923548px;}
.y6c{bottom:2.904323px;}
.y32{bottom:3.854913px;}
.y66{bottom:4.025783px;}
.yad{bottom:5.315151px;}
.y92{bottom:7.928597px;}
.y1c{bottom:10.209164px;}
.y26{bottom:12.516551px;}
.y54{bottom:15.575543px;}
.y61{bottom:23.824758px;}
.ya0{bottom:24.012022px;}
.y8a{bottom:24.366383px;}
.y91{bottom:25.953614px;}
.y21{bottom:32.139994px;}
.y14{bottom:32.228808px;}
.y8b{bottom:34.360612px;}
.y2d{bottom:35.828186px;}
.y55{bottom:36.496307px;}
.yc7{bottom:39.342229px;}
.ya1{bottom:39.767509px;}
.y22{bottom:43.238185px;}
.y15{bottom:43.326999px;}
.y2e{bottom:49.097797px;}
.y87{bottom:51.079339px;}
.y7b{bottom:51.098368px;}
.y5c{bottom:51.213657px;}
.y6b{bottom:51.741776px;}
.y62{bottom:52.269234px;}
.yb1{bottom:53.623337px;}
.y65{bottom:59.990991px;}
.y56{bottom:61.774052px;}
.yc6{bottom:62.322620px;}
.y31{bottom:62.367407px;}
.ya9{bottom:63.304854px;}
.yb5{bottom:64.063388px;}
.y8c{bottom:65.928658px;}
.y7d{bottom:67.329478px;}
.y71{bottom:67.354560px;}
.ya8{bottom:73.934775px;}
.y23{bottom:74.847960px;}
.y16{bottom:74.936774px;}
.y7e{bottom:77.320581px;}
.y72{bottom:77.349385px;}
.yac{bottom:78.775534px;}
.y5a{bottom:78.866616px;}
.yc5{bottom:79.615555px;}
.yb6{bottom:80.008745px;}
.y63{bottom:80.715031px;}
.y27{bottom:82.751514px;}
.y1d{bottom:82.839440px;}
.y2f{bottom:84.723587px;}
.y57{bottom:87.049816px;}
.ya2{bottom:92.064597px;}
.yb0{bottom:93.487680px;}
.y8d{bottom:97.591060px;}
.y6a{bottom:99.722686px;}
.yab{bottom:99.941391px;}
.y17{bottom:106.545660px;}
.yb4{bottom:106.868831px;}
.y64{bottom:109.225523px;}
.yc2{bottom:111.971759px;}
.y58{bottom:112.393575px;}
.ya7{bottom:113.702284px;}
.y25{bottom:114.271586px;}
.y6e{bottom:115.891702px;}
.y5f{bottom:116.023732px;}
.y68{bottom:116.287791px;}
.y1b{bottom:116.490159px;}
.yd7{bottom:116.799370px;}
.y30{bottom:120.352630px;}
.y7f{bottom:120.929246px;}
.y73{bottom:120.974297px;}
.y1e{bottom:122.350103px;}
.y6f{bottom:124.470991px;}
.y69{bottom:124.537006px;}
.y60{bottom:124.801066px;}
.y6d{bottom:127.045570px;}
.y5e{bottom:127.177600px;}
.y67{bottom:127.441659px;}
.y86{bottom:128.586756px;}
.y7a{bottom:128.634659px;}
.y8e{bottom:129.160041px;}
.yd6{bottom:134.092306px;}
.yc4{bottom:134.956953px;}
.yaf{bottom:135.913381px;}
.y59{bottom:137.671980px;}
.y24{bottom:138.155435px;}
.y18{bottom:138.244249px;}
.yaa{bottom:141.131033px;}
.ya3{bottom:144.453774px;}
.yc1{bottom:144.660211px;}
.yb3{bottom:145.118322px;}
.y5b{bottom:146.185255px;}
.y33{bottom:148.144162px;}
.yb2{bottom:149.010675px;}
.y52{bottom:149.436000px;}
.y29{bottom:151.119608px;}
.yc3{bottom:152.265900px;}
.ya6{bottom:152.807143px;}
.y20{bottom:155.648231px;}
.y8f{bottom:160.822443px;}
.y28{bottom:161.863432px;}
.y1f{bottom:161.952246px;}
.ycd{bottom:163.065979px;}
.y80{bottom:164.539780px;}
.y74{bottom:164.601077px;}
.y19{bottom:169.853135px;}
.y3c{bottom:170.713397px;}
.y36{bottom:171.235464px;}
.yae{bottom:172.736941px;}
.yd4{bottom:173.289627px;}
.y34{bottom:178.446820px;}
.y51{bottom:178.770000px;}
.ycc{bottom:180.358915px;}
.ya5{bottom:184.885830px;}
.yd3{bottom:190.582562px;}
.y90{bottom:192.388621px;}
.y94{bottom:193.256146px;}
.ya4{bottom:196.750862px;}
.ycb{bottom:197.667862px;}
.y50{bottom:198.930000px;}
.y1a{bottom:201.462909px;}
.y81{bottom:208.056895px;}
.y75{bottom:208.134404px;}
.y35{bottom:208.850313px;}
.y85{bottom:211.044417px;}
.y79{bottom:211.123039px;}
.y2b{bottom:215.063030px;}
.y4f{bottom:219.090000px;}
.y84{bottom:222.435863px;}
.y78{bottom:222.518728px;}
.yb8{bottom:227.679231px;}
.yd2{bottom:230.028069px;}
.y37{bottom:231.313833px;}
.y83{bottom:233.830111px;}
.y77{bottom:233.917221px;}
.y4e{bottom:239.250000px;}
.yca{bottom:249.338514px;}
.y82{bottom:251.665561px;}
.y76{bottom:251.759315px;}
.y3a{bottom:256.073798px;}
.y4d{bottom:259.410000px;}
.yc9{bottom:266.631450px;}
.y38{bottom:273.628913px;}
.y4c{bottom:279.615000px;}
.yc8{bottom:283.924385px;}
.y12{bottom:297.255000px;}
.y4b{bottom:299.775000px;}
.yd0{bottom:305.788741px;}
.yd5{bottom:311.761208px;}
.y39{bottom:316.048080px;}
.y4a{bottom:319.935000px;}
.y3b{bottom:321.990604px;}
.ycf{bottom:323.081676px;}
.y11{bottom:326.415000px;}
.y3d{bottom:328.815991px;}
.y3f{bottom:332.293036px;}
.y40{bottom:338.386882px;}
.y49{bottom:339.915000px;}
.yce{bottom:340.374612px;}
.y10{bottom:346.575000px;}
.yd1{bottom:347.868218px;}
.yc0{bottom:353.616518px;}
.y48{bottom:360.075000px;}
.yf{bottom:366.735000px;}
.y47{bottom:380.235000px;}
.y3e{bottom:391.350000px;}
.y2c{bottom:391.351694px;}
.ye{bottom:391.395000px;}
.y46{bottom:404.715000px;}
.y88{bottom:404.865000px;}
.y89{bottom:421.001470px;}
.y93{bottom:441.549043px;}
.y9e{bottom:442.875000px;}
.y9d{bottom:470.415000px;}
.y9c{bottom:490.575000px;}
.y9b{bottom:515.055000px;}
.y70{bottom:573.905754px;}
.y7c{bottom:574.139249px;}
.ybe{bottom:643.425000px;}
.ybd{bottom:679.965000px;}
.ybc{bottom:700.125000px;}
.ybb{bottom:720.285000px;}
.yba{bottom:740.445000px;}
.y6{bottom:754.384050px;}
.yd{bottom:766.365000px;}
.ybf{bottom:773.955000px;}
.yb9{bottom:774.105000px;}
.y9a{bottom:783.645000px;}
.y5{bottom:793.247682px;}
.yc{bottom:795.345000px;}
.y99{bottom:812.805000px;}
.yb{bottom:824.505000px;}
.y98{bottom:832.965000px;}
.y4{bottom:835.086297px;}
.y97{bottom:853.170000px;}
.ya{bottom:853.710000px;}
.y9{bottom:873.870000px;}
.y3{bottom:876.924913px;}
.yb7{bottom:877.710000px;}
.y9f{bottom:877.720817px;}
.y96{bottom:877.830000px;}
.y8{bottom:894.030000px;}
.y45{bottom:907.350000px;}
.y2a{bottom:918.555000px;}
.y13{bottom:918.563550px;}
.y7{bottom:918.690000px;}
.y44{bottom:927.510000px;}
.y43{bottom:947.670000px;}
.y42{bottom:967.830000px;}
.y2{bottom:971.234400px;}
.y41{bottom:992.490000px;}
.y53{bottom:998.010663px;}
.y1{bottom:1051.596600px;}
.y95{bottom:1141.200000px;}
.h1e{height:16.179780px;}
.h1d{height:16.186442px;}
.h37{height:23.268018px;}
.h1c{height:26.389507px;}
.h1f{height:26.592822px;}
.h26{height:26.983704px;}
.h2c{height:26.991109px;}
.h22{height:26.993756px;}
.h34{height:27.428525px;}
.h2d{height:29.122861px;}
.h28{height:29.435927px;}
.h2e{height:29.445044px;}
.h24{height:29.446893px;}
.h31{height:29.922228px;}
.h33{height:32.968121px;}
.h9{height:35.503475px;}
.h20{height:35.638723px;}
.ha{height:35.740299px;}
.hd{height:35.758860px;}
.h36{height:36.014013px;}
.h35{height:36.270167px;}
.h23{height:39.450610px;}
.h27{height:39.471645px;}
.h3e{height:41.374700px;}
.h3f{height:41.429866px;}
.h13{height:43.165184px;}
.h38{height:44.343621px;}
.h32{height:44.351216px;}
.h7{height:47.545312px;}
.h2{height:47.868912px;}
.hc{height:47.899792px;}
.hf{height:47.924669px;}
.hb{height:48.142144px;}
.he{height:48.152801px;}
.h4{height:49.063730px;}
.h2a{height:50.278983px;}
.h3a{height:51.093801px;}
.h11{height:53.273670px;}
.h19{height:53.285004px;}
.h16{height:53.524046px;}
.h15{height:54.104585px;}
.h1a{height:60.214219px;}
.h3{height:60.923117px;}
.h3b{height:62.211094px;}
.h2f{height:62.327813px;}
.h17{height:63.761439px;}
.h3d{height:64.268700px;}
.h14{height:72.740830px;}
.h1b{height:158.592085px;}
.h8{height:220.287027px;}
.h2b{height:222.276950px;}
.h30{height:225.888449px;}
.h10{height:238.058770px;}
.h39{height:249.746192px;}
.h25{height:319.560751px;}
.h21{height:319.767114px;}
.h12{height:355.954250px;}
.h18{height:361.347857px;}
.h3c{height:382.662245px;}
.h29{height:488.835000px;}
.h0{height:1174.479000px;}
.h1{height:1174.500000px;}
.h5{height:1262.880000px;}
.h6{height:1263.000000px;}
.wb{width:216.891441px;}
.wa{width:216.897201px;}
.wc{width:223.361683px;}
.wd{width:223.480780px;}
.w8{width:248.409828px;}
.w7{width:248.419985px;}
.w4{width:311.762788px;}
.w5{width:311.924703px;}
.wf{width:318.177364px;}
.w10{width:323.672979px;}
.w11{width:323.675144px;}
.w9{width:556.562120px;}
.w13{width:580.730610px;}
.we{width:584.751594px;}
.w12{width:637.724854px;}
.w6{width:646.724177px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.w0{width:904.479000px;}
.w1{width:904.500000px;}
.x0{left:0.000000px;}
.x3f{left:11.019576px;}
.x1a{left:12.107125px;}
.x19{left:13.359233px;}
.x9{left:14.575173px;}
.x16{left:15.762889px;}
.x13{left:17.015322px;}
.x35{left:18.051336px;}
.x2a{left:20.631529px;}
.x15{left:23.170908px;}
.x8{left:24.794925px;}
.x12{left:27.243716px;}
.x51{left:28.959714px;}
.x21{left:30.352915px;}
.x33{left:36.235480px;}
.x7{left:38.304099px;}
.x32{left:41.370939px;}
.x4e{left:42.825042px;}
.x11{left:45.510332px;}
.x39{left:46.836520px;}
.x2d{left:48.090609px;}
.x52{left:50.449051px;}
.x27{left:54.884886px;}
.x25{left:58.919393px;}
.x53{left:64.775276px;}
.x34{left:67.707651px;}
.x20{left:68.904287px;}
.x30{left:74.929914px;}
.x2e{left:76.103135px;}
.x46{left:84.838592px;}
.x2b{left:86.427878px;}
.x3c{left:87.498130px;}
.x23{left:88.875395px;}
.x43{left:97.569836px;}
.x3b{left:98.994013px;}
.x45{left:100.038662px;}
.x1{left:107.574750px;}
.x40{left:114.005268px;}
.x1b{left:118.757083px;}
.x3e{left:119.798752px;}
.x14{left:121.084268px;}
.x42{left:126.164375px;}
.x3{left:127.656000px;}
.xa{left:129.131544px;}
.xe{left:130.886801px;}
.x26{left:132.286587px;}
.x3d{left:137.185848px;}
.xd{left:141.385752px;}
.x1c{left:143.764795px;}
.x17{left:152.975042px;}
.x2f{left:154.095000px;}
.x48{left:156.105000px;}
.xf{left:168.771622px;}
.x10{left:177.339117px;}
.x28{left:184.296876px;}
.x24{left:185.486954px;}
.x3a{left:196.656833px;}
.x41{left:201.122921px;}
.x44{left:206.728540px;}
.x4f{left:209.436218px;}
.x22{left:210.880112px;}
.x4d{left:236.225874px;}
.x4c{left:240.994881px;}
.x4b{left:243.139334px;}
.x4a{left:244.331586px;}
.xb{left:264.483343px;}
.x50{left:271.009218px;}
.xc{left:293.189893px;}
.x36{left:332.556367px;}
.x2c{left:335.425694px;}
.x1f{left:341.745568px;}
.x49{left:412.679129px;}
.x38{left:441.626874px;}
.x4{left:446.475000px;}
.x6{left:462.525421px;}
.x18{left:476.302292px;}
.x31{left:515.472011px;}
.x29{left:548.311470px;}
.x37{left:606.345000px;}
.x5{left:724.830000px;}
.x47{left:736.890000px;}
.x1e{left:738.870000px;}
.x1d{left:765.510000px;}
.x2{left:774.510000px;}
@media print{
.v2{vertical-align:-25.612387pt;}
.v8{vertical-align:-22.920552pt;}
.v7{vertical-align:-16.892759pt;}
.vb{vertical-align:-15.358792pt;}
.ve{vertical-align:-12.638788pt;}
.vd{vertical-align:-11.476640pt;}
.v4{vertical-align:-8.320000pt;}
.va{vertical-align:-2.905717pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.320000pt;}
.v9{vertical-align:19.587807pt;}
.vc{vertical-align:21.940636pt;}
.v1{vertical-align:23.674248pt;}
.v5{vertical-align:26.880000pt;}
.v3{vertical-align:36.000244pt;}
.ls27{letter-spacing:-0.682667pt;}
.ls36{letter-spacing:-0.560000pt;}
.ls17{letter-spacing:-0.419240pt;}
.lsf{letter-spacing:-0.419151pt;}
.ls22{letter-spacing:-0.412266pt;}
.ls1a{letter-spacing:-0.239700pt;}
.ls12{letter-spacing:-0.239649pt;}
.ls14{letter-spacing:-0.220232pt;}
.ls18{letter-spacing:-0.203510pt;}
.ls10{letter-spacing:-0.203467pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls39{letter-spacing:-0.187874pt;}
.ls13{letter-spacing:-0.169432pt;}
.ls2f{letter-spacing:-0.124531pt;}
.ls31{letter-spacing:-0.117867pt;}
.ls38{letter-spacing:-0.102477pt;}
.lsd{letter-spacing:-0.099146pt;}
.lsc{letter-spacing:-0.099095pt;}
.ls26{letter-spacing:-0.043520pt;}
.ls28{letter-spacing:-0.041076pt;}
.ls19{letter-spacing:-0.024252pt;}
.ls11{letter-spacing:-0.024247pt;}
.ls2d{letter-spacing:-0.020755pt;}
.ls15{letter-spacing:-0.018114pt;}
.ls32{letter-spacing:-0.017147pt;}
.ls2e{letter-spacing:-0.015545pt;}
.ls29{letter-spacing:-0.011032pt;}
.ls2a{letter-spacing:-0.011028pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.018114pt;}
.ls3{letter-spacing:0.024114pt;}
.ls5{letter-spacing:0.037027pt;}
.ls6{letter-spacing:0.049371pt;}
.ls2c{letter-spacing:0.062265pt;}
.ls33{letter-spacing:0.063274pt;}
.ls1b{letter-spacing:0.074240pt;}
.ls2{letter-spacing:0.093980pt;}
.lsa{letter-spacing:0.094000pt;}
.ls30{letter-spacing:0.103627pt;}
.ls2b{letter-spacing:0.103776pt;}
.ls34{letter-spacing:0.105457pt;}
.lsb{letter-spacing:0.111471pt;}
.ls1{letter-spacing:0.111648pt;}
.ls9{letter-spacing:0.111672pt;}
.ls1e{letter-spacing:0.115255pt;}
.ls21{letter-spacing:0.115316pt;}
.ls7{letter-spacing:0.134229pt;}
.ls37{letter-spacing:0.134358pt;}
.ls1d{letter-spacing:0.142075pt;}
.ls20{letter-spacing:0.142150pt;}
.ls1f{letter-spacing:0.164112pt;}
.ls1c{letter-spacing:0.164173pt;}
.ls25{letter-spacing:0.220267pt;}
.ls23{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.235890pt;}
.ls16{letter-spacing:0.235940pt;}
.ls4{letter-spacing:0.237390pt;}
.ls35{letter-spacing:12.058087pt;}
.ws33{word-spacing:-32.932851pt;}
.ws18{word-spacing:-15.149233pt;}
.wsa{word-spacing:-15.146010pt;}
.ws17{word-spacing:-15.125144pt;}
.ws14{word-spacing:-15.107030pt;}
.ws1c{word-spacing:-15.007292pt;}
.wse{word-spacing:-15.004100pt;}
.ws19{word-spacing:-14.913292pt;}
.wsb{word-spacing:-14.910120pt;}
.ws13{word-spacing:-14.886798pt;}
.ws1b{word-spacing:-14.709782pt;}
.wsd{word-spacing:-14.706654pt;}
.ws21{word-spacing:-13.263360pt;}
.ws39{word-spacing:-13.189013pt;}
.ws22{word-spacing:-12.894614pt;}
.ws23{word-spacing:-12.624213pt;}
.ws8{word-spacing:-12.042711pt;}
.ws40{word-spacing:-11.595302pt;}
.ws3a{word-spacing:-11.579862pt;}
.ws35{word-spacing:-11.182724pt;}
.ws12{word-spacing:-10.935935pt;}
.ws36{word-spacing:-9.303703pt;}
.ws2a{word-spacing:-9.156231pt;}
.ws2d{word-spacing:-9.152821pt;}
.ws24{word-spacing:-8.389120pt;}
.ws28{word-spacing:-7.253413pt;}
.ws1f{word-spacing:-0.286613pt;}
.ws31{word-spacing:-0.041510pt;}
.ws20{word-spacing:-0.037120pt;}
.ws6{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.256192pt;}
.ws3b{word-spacing:0.290351pt;}
.ws1e{word-spacing:0.353386pt;}
.ws3e{word-spacing:0.409907pt;}
.ws3f{word-spacing:0.461145pt;}
.ws42{word-spacing:0.586394pt;}
.ws41{word-spacing:0.597780pt;}
.ws3d{word-spacing:0.631939pt;}
.ws0{word-spacing:16.195941pt;}
.ws5{word-spacing:17.789189pt;}
.ws3{word-spacing:20.627571pt;}
.ws4{word-spacing:20.716835pt;}
.ws2{word-spacing:20.783784pt;}
.ws1{word-spacing:20.969752pt;}
.ws29{word-spacing:31.447272pt;}
.ws2f{word-spacing:42.084434pt;}
.ws27{word-spacing:47.025507pt;}
.ws11{word-spacing:64.711870pt;}
.ws32{word-spacing:66.679460pt;}
.ws25{word-spacing:68.882582pt;}
.ws16{word-spacing:73.981497pt;}
.ws9{word-spacing:78.880610pt;}
.ws7{word-spacing:79.196393pt;}
.ws10{word-spacing:79.604840pt;}
.ws26{word-spacing:83.453966pt;}
.ws15{word-spacing:88.504375pt;}
.ws2c{word-spacing:94.966748pt;}
.ws2e{word-spacing:120.607662pt;}
.ws2b{word-spacing:120.652593pt;}
.ws34{word-spacing:125.386969pt;}
.ws37{word-spacing:251.912984pt;}
.ws1a{word-spacing:602.936859pt;}
.wsc{word-spacing:705.763745pt;}
.ws1d{word-spacing:990.135946pt;}
.ws38{word-spacing:1012.440253pt;}
.wsf{word-spacing:1052.891972pt;}
.ws30{word-spacing:1092.030836pt;}
._6{margin-left:-2079.865190pt;}
._14{margin-left:-1.895818pt;}
._2{margin-left:-0.889938pt;}
._3{width:1.497850pt;}
._b{width:2.392480pt;}
._9{width:3.297280pt;}
._a{width:4.317867pt;}
._f{width:5.266685pt;}
._13{width:6.219196pt;}
._11{width:7.480144pt;}
._c{width:9.008640pt;}
._d{width:9.950720pt;}
._12{width:11.664978pt;}
._10{width:14.484480pt;}
._4{width:15.485440pt;}
._e{width:16.898663pt;}
._1{width:17.788498pt;}
._0{width:18.834862pt;}
._7{width:108.714639pt;}
._8{width:117.984265pt;}
._5{width:754.831787pt;}
.fs14{font-size:19.741549pt;}
.fs13{font-size:19.749677pt;}
.fs1a{font-size:21.247865pt;}
.fs1e{font-size:21.259194pt;}
.fs28{font-size:23.997655pt;}
.fs7{font-size:25.911419pt;}
.fs9{font-size:25.924876pt;}
.fs17{font-size:26.091414pt;}
.fs6{font-size:26.243458pt;}
.fs2c{font-size:28.390171pt;}
.fs12{font-size:32.198814pt;}
.fs15{font-size:32.446887pt;}
.fs1c{font-size:32.923816pt;}
.fs22{font-size:32.932851pt;}
.fs18{font-size:32.936082pt;}
.fs29{font-size:33.466559pt;}
.fs30{font-size:34.158885pt;}
.fs19{font-size:35.518650pt;}
.fs23{font-size:35.533881pt;}
.fs1d{font-size:35.537589pt;}
.fs1f{font-size:35.915864pt;}
.fs24{font-size:35.926988pt;}
.fs1b{font-size:35.929244pt;}
.fs26{font-size:36.509219pt;}
.fs11{font-size:37.120000pt;}
.fsd{font-size:39.337896pt;}
.fs27{font-size:40.225625pt;}
.fs21{font-size:41.510247pt;}
.fs4{font-size:43.319105pt;}
.fs16{font-size:43.484126pt;}
.fs5{font-size:43.608062pt;}
.fs8{font-size:43.630710pt;}
.fs2b{font-size:43.942031pt;}
.fs2a{font-size:44.254574pt;}
.fs2f{font-size:51.238328pt;}
.fs31{font-size:51.306646pt;}
.fsb{font-size:52.667439pt;}
.fs25{font-size:53.120000pt;}
.fsf{font-size:54.341834pt;}
.fs0{font-size:58.448000pt;}
.fs3{font-size:58.880000pt;}
.fs20{font-size:62.265371pt;}
.fs2d{font-size:63.274440pt;}
.fs2{font-size:63.760533pt;}
.fsc{font-size:65.306670pt;}
.fsa{font-size:65.973984pt;}
.fs10{font-size:65.988020pt;}
.fse{font-size:66.015008pt;}
.fs1{font-size:74.387200pt;}
.fs2e{font-size:79.590203pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:0.820931pt;}
.y6c{bottom:2.581621pt;}
.y32{bottom:3.426590pt;}
.y66{bottom:3.578474pt;}
.yad{bottom:4.724578pt;}
.y92{bottom:7.047642pt;}
.y1c{bottom:9.074812pt;}
.y26{bottom:11.125823pt;}
.y54{bottom:13.844927pt;}
.y61{bottom:21.177562pt;}
.ya0{bottom:21.344020pt;}
.y8a{bottom:21.659007pt;}
.y91{bottom:23.069879pt;}
.y21{bottom:28.568883pt;}
.y14{bottom:28.647829pt;}
.y8b{bottom:30.542766pt;}
.y2d{bottom:31.847276pt;}
.y55{bottom:32.441162pt;}
.yc7{bottom:34.970871pt;}
.ya1{bottom:35.348897pt;}
.y22{bottom:38.433943pt;}
.y15{bottom:38.512888pt;}
.y2e{bottom:43.642486pt;}
.y87{bottom:45.403857pt;}
.y7b{bottom:45.420771pt;}
.y5c{bottom:45.523251pt;}
.y6b{bottom:45.992690pt;}
.y62{bottom:46.461542pt;}
.yb1{bottom:47.665188pt;}
.y65{bottom:53.325325pt;}
.y56{bottom:54.910268pt;}
.yc6{bottom:55.397884pt;}
.y31{bottom:55.437695pt;}
.ya9{bottom:56.270981pt;}
.yb5{bottom:56.945234pt;}
.y8c{bottom:58.603252pt;}
.y7d{bottom:59.848425pt;}
.y71{bottom:59.870720pt;}
.ya8{bottom:65.719800pt;}
.y23{bottom:66.531520pt;}
.y16{bottom:66.610466pt;}
.y7e{bottom:68.729405pt;}
.y72{bottom:68.755009pt;}
.yac{bottom:70.022697pt;}
.y5a{bottom:70.103658pt;}
.yc5{bottom:70.769382pt;}
.yb6{bottom:71.118885pt;}
.y63{bottom:71.746695pt;}
.y27{bottom:73.556901pt;}
.y1d{bottom:73.635057pt;}
.y2f{bottom:75.309855pt;}
.y57{bottom:77.377614pt;}
.ya2{bottom:81.835198pt;}
.yb0{bottom:83.100160pt;}
.y8d{bottom:86.747609pt;}
.y6a{bottom:88.642388pt;}
.yab{bottom:88.836792pt;}
.y17{bottom:94.707254pt;}
.yb4{bottom:94.994516pt;}
.y64{bottom:97.089354pt;}
.yc2{bottom:99.530452pt;}
.y58{bottom:99.905400pt;}
.ya7{bottom:101.068697pt;}
.y25{bottom:101.574743pt;}
.y6e{bottom:103.014846pt;}
.y5f{bottom:103.132206pt;}
.y68{bottom:103.366925pt;}
.y1b{bottom:103.546808pt;}
.yd7{bottom:103.821662pt;}
.y30{bottom:106.980115pt;}
.y7f{bottom:107.492663pt;}
.y73{bottom:107.532708pt;}
.y1e{bottom:108.755647pt;}
.y6f{bottom:110.640881pt;}
.y69{bottom:110.699561pt;}
.y60{bottom:110.934281pt;}
.y6d{bottom:112.929396pt;}
.y5e{bottom:113.046756pt;}
.y67{bottom:113.281475pt;}
.y86{bottom:114.299339pt;}
.y7a{bottom:114.341920pt;}
.y8e{bottom:114.808925pt;}
.yd6{bottom:119.193161pt;}
.yc4{bottom:119.961736pt;}
.yaf{bottom:120.811894pt;}
.y59{bottom:122.375093pt;}
.y24{bottom:122.804831pt;}
.y18{bottom:122.883777pt;}
.yaa{bottom:125.449807pt;}
.ya3{bottom:128.403354pt;}
.yc1{bottom:128.586854pt;}
.yb3{bottom:128.994064pt;}
.y5b{bottom:129.942449pt;}
.y33{bottom:131.683699pt;}
.yb2{bottom:132.453933pt;}
.y52{bottom:132.832000pt;}
.y29{bottom:134.328540pt;}
.yc3{bottom:135.347467pt;}
.ya6{bottom:135.828572pt;}
.y20{bottom:138.353983pt;}
.y8f{bottom:142.953283pt;}
.y28{bottom:143.878606pt;}
.y1f{bottom:143.957552pt;}
.ycd{bottom:144.947537pt;}
.y80{bottom:146.257582pt;}
.y74{bottom:146.312068pt;}
.y19{bottom:150.980564pt;}
.y3c{bottom:151.745241pt;}
.y36{bottom:152.209301pt;}
.yae{bottom:153.543948pt;}
.yd4{bottom:154.035224pt;}
.y34{bottom:158.619395pt;}
.y51{bottom:158.906667pt;}
.ycc{bottom:160.319035pt;}
.ya5{bottom:164.342960pt;}
.yd3{bottom:169.406722pt;}
.y90{bottom:171.012108pt;}
.y94{bottom:171.783241pt;}
.ya4{bottom:174.889655pt;}
.ycb{bottom:175.704767pt;}
.y50{bottom:176.826667pt;}
.y1a{bottom:179.078142pt;}
.y81{bottom:184.939462pt;}
.y75{bottom:185.008359pt;}
.y35{bottom:185.644723pt;}
.y85{bottom:187.595037pt;}
.y79{bottom:187.664924pt;}
.y2b{bottom:191.167138pt;}
.y4f{bottom:194.746667pt;}
.y84{bottom:197.720767pt;}
.y78{bottom:197.794425pt;}
.yb8{bottom:202.381539pt;}
.yd2{bottom:204.469395pt;}
.y37{bottom:205.612296pt;}
.y83{bottom:207.848987pt;}
.y77{bottom:207.926419pt;}
.y4e{bottom:212.666667pt;}
.yca{bottom:221.634235pt;}
.y82{bottom:223.702720pt;}
.y76{bottom:223.786058pt;}
.y3a{bottom:227.621154pt;}
.y4d{bottom:230.586667pt;}
.yc9{bottom:237.005733pt;}
.y38{bottom:243.225700pt;}
.y4c{bottom:248.546667pt;}
.yc8{bottom:252.377231pt;}
.y12{bottom:264.226667pt;}
.y4b{bottom:266.466667pt;}
.yd0{bottom:271.812214pt;}
.yd5{bottom:277.121074pt;}
.y39{bottom:280.931627pt;}
.y4a{bottom:284.386667pt;}
.y3b{bottom:286.213871pt;}
.ycf{bottom:287.183712pt;}
.y11{bottom:290.146667pt;}
.y3d{bottom:292.280881pt;}
.y3f{bottom:295.371588pt;}
.y40{bottom:300.788339pt;}
.y49{bottom:302.146667pt;}
.yce{bottom:302.555211pt;}
.y10{bottom:308.066667pt;}
.yd1{bottom:309.216193pt;}
.yc0{bottom:314.325793pt;}
.y48{bottom:320.066667pt;}
.yf{bottom:325.986667pt;}
.y47{bottom:337.986667pt;}
.y3e{bottom:347.866667pt;}
.y2c{bottom:347.868173pt;}
.ye{bottom:347.906667pt;}
.y46{bottom:359.746667pt;}
.y88{bottom:359.880000pt;}
.y89{bottom:374.223529pt;}
.y93{bottom:392.488038pt;}
.y9e{bottom:393.666667pt;}
.y9d{bottom:418.146667pt;}
.y9c{bottom:436.066667pt;}
.y9b{bottom:457.826667pt;}
.y70{bottom:510.138448pt;}
.y7c{bottom:510.345999pt;}
.ybe{bottom:571.933333pt;}
.ybd{bottom:604.413333pt;}
.ybc{bottom:622.333333pt;}
.ybb{bottom:640.253333pt;}
.yba{bottom:658.173333pt;}
.y6{bottom:670.563600pt;}
.yd{bottom:681.213333pt;}
.ybf{bottom:687.960000pt;}
.yb9{bottom:688.093333pt;}
.y9a{bottom:696.573333pt;}
.y5{bottom:705.109050pt;}
.yc{bottom:706.973333pt;}
.y99{bottom:722.493333pt;}
.yb{bottom:732.893333pt;}
.y98{bottom:740.413333pt;}
.y4{bottom:742.298931pt;}
.y97{bottom:758.373333pt;}
.ya{bottom:758.853333pt;}
.y9{bottom:776.773333pt;}
.y3{bottom:779.488812pt;}
.yb7{bottom:780.186667pt;}
.y9f{bottom:780.196282pt;}
.y96{bottom:780.293333pt;}
.y8{bottom:794.693333pt;}
.y45{bottom:806.533333pt;}
.y2a{bottom:816.493333pt;}
.y13{bottom:816.500934pt;}
.y7{bottom:816.613333pt;}
.y44{bottom:824.453333pt;}
.y43{bottom:842.373333pt;}
.y42{bottom:860.293333pt;}
.y2{bottom:863.319467pt;}
.y41{bottom:882.213333pt;}
.y53{bottom:887.120590pt;}
.y1{bottom:934.752533pt;}
.y95{bottom:1014.400000pt;}
.h1e{height:14.382027pt;}
.h1d{height:14.387948pt;}
.h37{height:20.682683pt;}
.h1c{height:23.457339pt;}
.h1f{height:23.638064pt;}
.h26{height:23.985515pt;}
.h2c{height:23.992097pt;}
.h22{height:23.994450pt;}
.h34{height:24.380911pt;}
.h2d{height:25.886988pt;}
.h28{height:26.165268pt;}
.h2e{height:26.173372pt;}
.h24{height:26.175016pt;}
.h31{height:26.597536pt;}
.h33{height:29.304996pt;}
.h9{height:31.558645pt;}
.h20{height:31.678865pt;}
.ha{height:31.769154pt;}
.hd{height:31.785654pt;}
.h36{height:32.012456pt;}
.h35{height:32.240149pt;}
.h23{height:35.067209pt;}
.h27{height:35.085906pt;}
.h3e{height:36.777511pt;}
.h3f{height:36.826548pt;}
.h13{height:38.369052pt;}
.h38{height:39.416552pt;}
.h32{height:39.423303pt;}
.h7{height:42.262500pt;}
.h2{height:42.550144pt;}
.hc{height:42.577593pt;}
.hf{height:42.599706pt;}
.hb{height:42.793017pt;}
.he{height:42.802490pt;}
.h4{height:43.612205pt;}
.h2a{height:44.692430pt;}
.h3a{height:45.416712pt;}
.h11{height:47.354373pt;}
.h19{height:47.364448pt;}
.h16{height:47.576929pt;}
.h15{height:48.092965pt;}
.h1a{height:53.523750pt;}
.h3{height:54.153882pt;}
.h3b{height:55.298750pt;}
.h2f{height:55.402500pt;}
.h17{height:56.676834pt;}
.h3d{height:57.127734pt;}
.h14{height:64.658515pt;}
.h1b{height:140.970742pt;}
.h8{height:195.810691pt;}
.h2b{height:197.579511pt;}
.h30{height:200.789733pt;}
.h10{height:211.607795pt;}
.h39{height:221.996615pt;}
.h25{height:284.054001pt;}
.h21{height:284.237435pt;}
.h12{height:316.403778pt;}
.h18{height:321.198095pt;}
.h3c{height:340.144218pt;}
.h29{height:434.520000pt;}
.h0{height:1043.981333pt;}
.h1{height:1044.000000pt;}
.h5{height:1122.560000pt;}
.h6{height:1122.666667pt;}
.wb{width:192.792392pt;}
.wa{width:192.797512pt;}
.wc{width:198.543719pt;}
.wd{width:198.649582pt;}
.w8{width:220.808736pt;}
.w7{width:220.817765pt;}
.w4{width:277.122478pt;}
.w5{width:277.266403pt;}
.wf{width:282.824323pt;}
.w10{width:287.709315pt;}
.w11{width:287.711239pt;}
.w9{width:494.721885pt;}
.w13{width:516.204986pt;}
.we{width:519.779195pt;}
.w12{width:566.866537pt;}
.w6{width:574.865935pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.w0{width:803.981333pt;}
.w1{width:804.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:9.795179pt;}
.x1a{left:10.761889pt;}
.x19{left:11.874874pt;}
.x9{left:12.955710pt;}
.x16{left:14.011457pt;}
.x13{left:15.124731pt;}
.x35{left:16.045632pt;}
.x2a{left:18.339137pt;}
.x15{left:20.596363pt;}
.x8{left:22.039933pt;}
.x12{left:24.216637pt;}
.x51{left:25.741968pt;}
.x21{left:26.980369pt;}
.x33{left:32.209316pt;}
.x7{left:34.048088pt;}
.x32{left:36.774168pt;}
.x4e{left:38.066704pt;}
.x11{left:40.453629pt;}
.x39{left:41.632462pt;}
.x2d{left:42.747208pt;}
.x52{left:44.843601pt;}
.x27{left:48.786565pt;}
.x25{left:52.372794pt;}
.x53{left:57.578023pt;}
.x34{left:60.184578pt;}
.x20{left:61.248255pt;}
.x30{left:66.604368pt;}
.x2e{left:67.647231pt;}
.x46{left:75.412082pt;}
.x2b{left:76.824780pt;}
.x3c{left:77.776115pt;}
.x23{left:79.000351pt;}
.x43{left:86.728743pt;}
.x3b{left:87.994678pt;}
.x45{left:88.923255pt;}
.x1{left:95.622000pt;}
.x40{left:101.338016pt;}
.x1b{left:105.561852pt;}
.x3e{left:106.487780pt;}
.x14{left:107.630460pt;}
.x42{left:112.146111pt;}
.x3{left:113.472000pt;}
.xa{left:114.783595pt;}
.xe{left:116.343823pt;}
.x26{left:117.588077pt;}
.x3d{left:121.942976pt;}
.xd{left:125.676224pt;}
.x1c{left:127.790929pt;}
.x17{left:135.977815pt;}
.x2f{left:136.973333pt;}
.x48{left:138.760000pt;}
.xf{left:150.019219pt;}
.x10{left:157.634771pt;}
.x28{left:163.819446pt;}
.x24{left:164.877292pt;}
.x3a{left:174.806074pt;}
.x41{left:178.775930pt;}
.x44{left:183.758702pt;}
.x4f{left:186.165527pt;}
.x22{left:187.448989pt;}
.x4d{left:209.978555pt;}
.x4c{left:214.217672pt;}
.x4b{left:216.123852pt;}
.x4a{left:217.183632pt;}
.xb{left:235.096305pt;}
.x50{left:240.897083pt;}
.xc{left:260.613238pt;}
.x36{left:295.605660pt;}
.x2c{left:298.156172pt;}
.x1f{left:303.773839pt;}
.x49{left:366.825892pt;}
.x38{left:392.557222pt;}
.x4{left:396.866667pt;}
.x6{left:411.133707pt;}
.x18{left:423.379815pt;}
.x31{left:458.197343pt;}
.x29{left:487.387973pt;}
.x37{left:538.973333pt;}
.x5{left:644.293333pt;}
.x47{left:655.013333pt;}
.x1e{left:656.773333pt;}
.x1d{left:680.453333pt;}
.x2{left:688.453333pt;}
}




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