
    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_3547e67c0200076252b0672d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8ed1f3045dff1fdab961d255.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_004ddf574724a697177af42c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.943848;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_2dd4c9e3a767aba1dae13ad8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_300282996a2b51b26428873a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_2128e1795d227adc7ed260c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.793457;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_911dd8014a4083005b2190a2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.972168;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_24e6e602f0d7617afc21d279.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.947754;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_c4fb753a03264e5a320a6ca4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973145;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_10268922aa6ba803255f46ed.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973633;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_0fc6de3f0d3b45ab14ad08b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.962402;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_a0d1836d8e8ceb7ede67b626.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_5aaf43d01924dbe3d055b603.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.927734;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_5cedbc1bfdbb1753a842ee5f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.957520;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_d93ad0973521fbd973b75257.woff2')format("woff");}.fff{font-family:fff;line-height:0.758789;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_06111f8949fff54133e0403d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.747070;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_9e1886c3e6d0d7f9097988b4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.973633;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_05af1678e34a00e09b7d5950.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_8720b68acd6bc0798fbc03df.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7964815ff7b4f98a5d4dee51.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.853027;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_5258cb0b2b54694cf0d9d298.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.770996;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.192044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192044,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m8{transform:matrix(0.253243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253243,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257187,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.262567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262567,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.263308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263308,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.263539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263539,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v8{vertical-align:-55.564829px;}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-15.120000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:5.227558px;}
.v9{vertical-align:12.240000px;}
.v4{vertical-align:15.120000px;}
.v5{vertical-align:18.047761px;}
.v1{vertical-align:20.880000px;}
.ls5{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.628980px;}
.ls1b{letter-spacing:-0.349056px;}
.ls8{letter-spacing:-0.331200px;}
.ls25{letter-spacing:-0.324000px;}
.ls1e{letter-spacing:-0.306000px;}
.ls9{letter-spacing:-0.234000px;}
.ls1d{letter-spacing:-0.208338px;}
.lsa{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.126000px;}
.ls1f{letter-spacing:-0.099600px;}
.ls4{letter-spacing:-0.091200px;}
.ls6{letter-spacing:-0.090000px;}
.ls1a{letter-spacing:-0.054000px;}
.ls7{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.031680px;}
.ls18{letter-spacing:0.036000px;}
.ls16{letter-spacing:0.054000px;}
.ls2d{letter-spacing:0.072000px;}
.ls27{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.216000px;}
.ls24{letter-spacing:0.234000px;}
.ls20{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.331200px;}
.ls2c{letter-spacing:0.342000px;}
.ls14{letter-spacing:0.508559px;}
.ls21{letter-spacing:0.558000px;}
.ls13{letter-spacing:0.568867px;}
.ls19{letter-spacing:0.630000px;}
.ls22{letter-spacing:0.738000px;}
.ls29{letter-spacing:1.008000px;}
.ls15{letter-spacing:1.037994px;}
.lsb{letter-spacing:4.986000px;}
.ls28{letter-spacing:7.866000px;}
.ls2a{letter-spacing:10.764000px;}
.lsc{letter-spacing:52.524000px;}
.ls11{letter-spacing:148.485262px;}
.ls12{letter-spacing:155.612909px;}
.lsd{letter-spacing:171.157953px;}
.lse{letter-spacing:171.326644px;}
.lsf{letter-spacing:190.746000px;}
.ls10{letter-spacing:202.986000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws31{word-spacing:-54.000000px;}
.ws19{word-spacing:-39.741786px;}
.ws22{word-spacing:-39.598203px;}
.ws10{word-spacing:-39.412580px;}
.ws1{word-spacing:-25.472160px;}
.ws2{word-spacing:-25.382160px;}
.ws0{word-spacing:-22.316640px;}
.ws6{word-spacing:-18.234000px;}
.ws1c{word-spacing:-18.097352px;}
.ws4{word-spacing:-18.000000px;}
.ws1d{word-spacing:-17.987938px;}
.ws14{word-spacing:-17.961654px;}
.ws5{word-spacing:-16.824960px;}
.ws33{word-spacing:-14.058000px;}
.ws2c{word-spacing:-14.004000px;}
.ws2f{word-spacing:-13.950000px;}
.ws30{word-spacing:-13.932000px;}
.ws28{word-spacing:-13.896000px;}
.ws2e{word-spacing:-13.824000px;}
.ws34{word-spacing:-13.788000px;}
.ws2b{word-spacing:-13.770000px;}
.ws24{word-spacing:-13.752000px;}
.ws29{word-spacing:-13.716000px;}
.ws2d{word-spacing:-13.140000px;}
.ws11{word-spacing:-13.068000px;}
.wsa{word-spacing:-13.014000px;}
.ws32{word-spacing:-12.978000px;}
.ws8{word-spacing:-12.924000px;}
.ws12{word-spacing:-12.888000px;}
.ws23{word-spacing:-12.834000px;}
.ws2a{word-spacing:-12.690000px;}
.ws25{word-spacing:-11.625840px;}
.ws27{word-spacing:-11.526240px;}
.ws3{word-spacing:-10.342080px;}
.ws13{word-spacing:-8.712000px;}
.ws9{word-spacing:-8.676000px;}
.ws26{word-spacing:-7.287840px;}
.wse{word-spacing:-1.109784px;}
.wsd{word-spacing:-0.580349px;}
.ws16{word-spacing:-0.072389px;}
.ws1f{word-spacing:-0.072128px;}
.ws1e{word-spacing:-0.071952px;}
.ws15{word-spacing:-0.071847px;}
.ws7{word-spacing:0.000000px;}
.ws20{word-spacing:0.136210px;}
.ws17{word-spacing:0.276666px;}
.ws1a{word-spacing:0.556591px;}
.ws18{word-spacing:170.597898px;}
.ws21{word-spacing:171.775143px;}
.wsc{word-spacing:199.075773px;}
.ws1b{word-spacing:237.745804px;}
.wsb{word-spacing:386.361636px;}
.wsf{word-spacing:577.884397px;}
._28{margin-left:-426.623552px;}
._2d{margin-left:-413.106247px;}
._31{margin-left:-367.887127px;}
._2c{margin-left:-332.312609px;}
._3b{margin-left:-327.213033px;}
._33{margin-left:-318.977913px;}
._2a{margin-left:-315.065206px;}
._32{margin-left:-305.665711px;}
._3d{margin-left:-301.532200px;}
._36{margin-left:-293.817140px;}
._3c{margin-left:-284.960009px;}
._2b{margin-left:-270.396316px;}
._29{margin-left:-261.622656px;}
._2e{margin-left:-222.899792px;}
._38{margin-left:-210.654457px;}
._3e{margin-left:-198.285030px;}
._34{margin-left:-196.617510px;}
._35{margin-left:-149.580000px;}
._30{margin-left:-147.348999px;}
._39{margin-left:-113.580000px;}
._37{margin-left:-108.124731px;}
._3f{margin-left:-102.060000px;}
._27{margin-left:-7.266898px;}
._2f{margin-left:-2.328731px;}
._0{margin-left:-1.263600px;}
._3{width:1.643760px;}
._a{width:2.784240px;}
._f{width:3.881520px;}
._d{width:5.400000px;}
._b{width:6.534000px;}
._c{width:7.644240px;}
._e{width:8.661360px;}
._8{width:10.152000px;}
._9{width:11.232000px;}
._1{width:13.203360px;}
._2{width:14.232384px;}
._15{width:15.843312px;}
._1c{width:17.550000px;}
._21{width:18.627840px;}
._7{width:19.944000px;}
._14{width:21.600000px;}
._10{width:23.274000px;}
._11{width:24.516000px;}
._18{width:26.352000px;}
._16{width:27.486000px;}
._17{width:28.944000px;}
._1f{width:30.182640px;}
._4{width:31.233360px;}
._5{width:32.319840px;}
._6{width:33.384480px;}
._25{width:34.709520px;}
._1a{width:35.964000px;}
._1b{width:36.990000px;}
._12{width:38.124000px;}
._13{width:39.312000px;}
._19{width:40.662000px;}
._20{width:42.195600px;}
._1d{width:43.254000px;}
._1e{width:44.658000px;}
._40{width:46.008000px;}
._3a{width:48.006000px;}
._42{width:52.992000px;}
._46{width:54.270000px;}
._45{width:55.296000px;}
._22{width:56.916000px;}
._23{width:58.158000px;}
._43{width:65.586000px;}
._41{width:100.776000px;}
._44{width:123.273840px;}
._24{width:202.986000px;}
._26{width:456.992119px;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(0,0,128);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(77,81,86);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs15{font-size:30.240000px;}
.fs8{font-size:33.120000px;}
.fsd{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fsf{font-size:41.902490px;}
.fs6{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fsb{font-size:66.240000px;}
.fs10{font-size:71.789763px;}
.fs11{font-size:71.846616px;}
.fs13{font-size:71.951751px;}
.fs0{font-size:72.000000px;}
.fs14{font-size:72.127874px;}
.fs12{font-size:72.389410px;}
.fsc{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fse{font-size:94.816996px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:100.938894px;}
.fs2{font-size:108.000000px;}
.y3d{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y12{bottom:3.240000px;}
.y25{bottom:3.600000px;}
.y27{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y9a{bottom:4.288433px;}
.y82{bottom:4.303982px;}
.y3{bottom:4.500000px;}
.y6e{bottom:4.511940px;}
.y7c{bottom:4.896577px;}
.y94{bottom:4.903742px;}
.y23{bottom:5.040000px;}
.yb2{bottom:8.100000px;}
.y3c{bottom:9.000000px;}
.y6d{bottom:9.095496px;}
.y35{bottom:10.800000px;}
.y1d{bottom:10.980000px;}
.y20{bottom:14.760000px;}
.y21{bottom:14.940000px;}
.y14{bottom:15.300000px;}
.y37{bottom:16.380000px;}
.y7b{bottom:19.223023px;}
.y93{bottom:19.251152px;}
.y10{bottom:20.205000px;}
.y7a{bottom:20.927853px;}
.y92{bottom:20.958477px;}
.y1a{bottom:21.060000px;}
.yb1{bottom:27.225000px;}
.y3b{bottom:30.240000px;}
.y7d{bottom:30.757424px;}
.y95{bottom:30.802432px;}
.y7e{bottom:32.064313px;}
.y96{bottom:32.111234px;}
.y34{bottom:33.840000px;}
.y19{bottom:45.720000px;}
.y3a{bottom:51.660000px;}
.y33{bottom:56.880000px;}
.y5{bottom:58.320000px;}
.yf{bottom:60.885000px;}
.y2{bottom:74.520000px;}
.y39{bottom:75.810000px;}
.y32{bottom:79.920000px;}
.ya{bottom:80.460000px;}
.y18{bottom:82.260000px;}
.y9{bottom:91.440000px;}
.ye{bottom:101.745000px;}
.y31{bottom:103.005000px;}
.ybd{bottom:111.600000px;}
.y99{bottom:119.640000px;}
.y9b{bottom:124.020000px;}
.yd2{bottom:125.820000px;}
.y30{bottom:125.865000px;}
.y6b{bottom:130.320000px;}
.ybc{bottom:134.640000px;}
.yd1{bottom:148.896000px;}
.y2f{bottom:148.905000px;}
.y98{bottom:151.230000px;}
.y6a{bottom:153.210000px;}
.ybb{bottom:157.710000px;}
.y91{bottom:171.240000px;}
.yd0{bottom:171.930000px;}
.y2e{bottom:171.945000px;}
.y69{bottom:176.250000px;}
.yba{bottom:180.750000px;}
.y97{bottom:192.270000px;}
.ycf{bottom:194.790000px;}
.y2d{bottom:194.985000px;}
.y68{bottom:199.290000px;}
.yb9{bottom:203.790000px;}
.yce{bottom:217.830000px;}
.y2c{bottom:218.025000px;}
.y67{bottom:222.330000px;}
.yb8{bottom:226.650000px;}
.y90{bottom:232.770000px;}
.ycd{bottom:240.870000px;}
.y2b{bottom:241.065000px;}
.y66{bottom:245.370000px;}
.y8f{bottom:255.810000px;}
.ycc{bottom:263.910000px;}
.y2a{bottom:263.925000px;}
.y65{bottom:268.410000px;}
.yb7{bottom:272.730000px;}
.y36{bottom:275.250000px;}
.y8e{bottom:278.850000px;}
.ycb{bottom:286.950000px;}
.y29{bottom:286.965000px;}
.yb6{bottom:287.130000px;}
.y64{bottom:291.270000px;}
.y28{bottom:301.170000px;}
.y8d{bottom:301.890000px;}
.yb5{bottom:307.290000px;}
.yca{bottom:309.810000px;}
.y63{bottom:314.310000px;}
.y8c{bottom:324.930000px;}
.yb4{bottom:327.450000px;}
.yc9{bottom:332.850000px;}
.y62{bottom:337.350000px;}
.yb3{bottom:347.610000px;}
.y8b{bottom:347.970000px;}
.yc8{bottom:355.890000px;}
.y61{bottom:360.390000px;}
.y89{bottom:367.815000px;}
.yb0{bottom:367.950000px;}
.y8a{bottom:372.270000px;}
.yc7{bottom:378.930000px;}
.y60{bottom:383.430000px;}
.y88{bottom:399.495000px;}
.yc6{bottom:402.015000px;}
.y5f{bottom:406.515000px;}
.yaf{bottom:419.295000px;}
.y87{bottom:422.535000px;}
.yc5{bottom:425.055000px;}
.y5e{bottom:429.375000px;}
.yae{bottom:442.335000px;}
.y86{bottom:445.575000px;}
.yc4{bottom:447.915000px;}
.y5d{bottom:452.415000px;}
.yad{bottom:465.375000px;}
.y85{bottom:468.615000px;}
.yc3{bottom:470.955000px;}
.y5c{bottom:475.455000px;}
.yac{bottom:488.415000px;}
.y84{bottom:491.655000px;}
.yc2{bottom:493.995000px;}
.y5b{bottom:498.495000px;}
.yab{bottom:511.275000px;}
.y81{bottom:511.440000px;}
.y83{bottom:515.955000px;}
.yc1{bottom:517.035000px;}
.y5a{bottom:521.535000px;}
.yaa{bottom:534.315000px;}
.yc0{bottom:540.075000px;}
.y80{bottom:543.135000px;}
.y59{bottom:544.575000px;}
.ya9{bottom:557.355000px;}
.y79{bottom:563.115000px;}
.y58{bottom:567.435000px;}
.ya8{bottom:580.395000px;}
.y7f{bottom:584.175000px;}
.ybf{bottom:585.975000px;}
.yde{bottom:589.755000px;}
.y57{bottom:590.475000px;}
.y26{bottom:600.195000px;}
.ya7{bottom:603.435000px;}
.ydd{bottom:612.795000px;}
.y56{bottom:613.515000px;}
.y24{bottom:615.495000px;}
.y78{bottom:624.855000px;}
.ya6{bottom:626.475000px;}
.ybe{bottom:632.055000px;}
.y22{bottom:634.215000px;}
.ydc{bottom:635.835000px;}
.y55{bottom:636.555000px;}
.y77{bottom:647.925000px;}
.ya5{bottom:649.365000px;}
.y1f{bottom:654.405000px;}
.ydb{bottom:658.905000px;}
.y54{bottom:659.625000px;}
.y76{bottom:670.965000px;}
.ya4{bottom:672.405000px;}
.yda{bottom:681.765000px;}
.y53{bottom:682.485000px;}
.y1e{bottom:684.285000px;}
.y75{bottom:694.005000px;}
.ya3{bottom:695.445000px;}
.y1c{bottom:697.605000px;}
.yd9{bottom:704.805000px;}
.y52{bottom:705.525000px;}
.y74{bottom:716.865000px;}
.ya2{bottom:718.485000px;}
.y1b{bottom:720.645000px;}
.yd8{bottom:727.845000px;}
.y51{bottom:728.565000px;}
.ya1{bottom:732.705000px;}
.y17{bottom:737.745000px;}
.y73{bottom:739.905000px;}
.yd7{bottom:750.885000px;}
.y50{bottom:751.605000px;}
.ya0{bottom:756.825000px;}
.y72{bottom:762.945000px;}
.yd6{bottom:773.925000px;}
.y4f{bottom:774.645000px;}
.y9f{bottom:781.125000px;}
.y71{bottom:785.985000px;}
.yd5{bottom:796.965000px;}
.y4e{bottom:797.685000px;}
.y9e{bottom:805.245000px;}
.y70{bottom:809.025000px;}
.yd4{bottom:819.825000px;}
.y4d{bottom:820.545000px;}
.y6c{bottom:828.840000px;}
.y9d{bottom:829.365000px;}
.y15{bottom:829.545000px;}
.y6f{bottom:837.825000px;}
.yd3{bottom:843.045000px;}
.y4c{bottom:843.585000px;}
.y13{bottom:844.125000px;}
.y9c{bottom:853.485000px;}
.y4b{bottom:866.625000px;}
.y11{bottom:874.725000px;}
.yd{bottom:888.225000px;}
.y4a{bottom:889.710000px;}
.y49{bottom:912.750000px;}
.y48{bottom:935.790000px;}
.y47{bottom:958.650000px;}
.y46{bottom:981.690000px;}
.y45{bottom:1004.730000px;}
.yc{bottom:1013.370000px;}
.y44{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.y8{bottom:1046.850000px;}
.y43{bottom:1050.810000px;}
.y38{bottom:1065.210000px;}
.y42{bottom:1073.850000px;}
.y41{bottom:1096.710000px;}
.y40{bottom:1119.750000px;}
.y3f{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y3e{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h1b{height:13.320000px;}
.h10{height:13.500000px;}
.h14{height:14.580000px;}
.h22{height:15.300000px;}
.h18{height:17.100000px;}
.h20{height:18.720000px;}
.h42{height:19.080000px;}
.h1f{height:20.196000px;}
.h3{height:20.700000px;}
.h3d{height:20.849331px;}
.h5{height:20.880000px;}
.h35{height:20.924931px;}
.h3f{height:22.860000px;}
.h1a{height:23.040000px;}
.h17{height:25.001719px;}
.h26{height:25.920000px;}
.h2d{height:27.000895px;}
.h27{height:29.145586px;}
.h1d{height:29.880000px;}
.h12{height:30.600000px;}
.h11{height:32.670352px;}
.h1c{height:33.588984px;}
.h43{height:36.486211px;}
.h41{height:36.509766px;}
.h15{height:36.886641px;}
.h40{height:38.196000px;}
.h19{height:40.472227px;}
.h23{height:40.842773px;}
.h25{height:40.869141px;}
.h2a{height:41.291016px;}
.h2c{height:42.366094px;}
.h44{height:45.509766px;}
.h13{height:48.761719px;}
.h21{height:50.100469px;}
.h1e{height:50.132812px;}
.h30{height:50.924637px;}
.h38{height:50.999157px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h29{height:55.054688px;}
.h2b{height:55.209375px;}
.h6{height:57.051211px;}
.he{height:64.853086px;}
.h32{height:66.549332px;}
.h3a{height:66.646715px;}
.hf{height:68.360471px;}
.h34{height:70.478444px;}
.h31{height:70.513525px;}
.h3c{height:70.581576px;}
.h39{height:70.616709px;}
.h2{height:70.664062px;}
.h3e{height:70.754345px;}
.h36{height:71.010900px;}
.h37{height:71.046247px;}
.h33{height:71.776890px;}
.h3b{height:71.881922px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.h7{height:84.898125px;}
.h2e{height:87.826095px;}
.h2f{height:88.470434px;}
.h16{height:91.800000px;}
.h28{height:93.816000px;}
.h8{height:108.036000px;}
.hd{height:122.436000px;}
.h24{height:299.010000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.540000px;}
.w6{width:76.680000px;}
.w5{width:124.020000px;}
.w11{width:133.574275px;}
.wf{width:136.425529px;}
.w18{width:141.696000px;}
.we{width:145.420677px;}
.w17{width:148.536000px;}
.w15{width:155.370000px;}
.w16{width:162.030000px;}
.w13{width:168.870000px;}
.w19{width:175.530000px;}
.w10{width:202.501747px;}
.w14{width:209.190000px;}
.wd{width:219.078174px;}
.wc{width:253.416729px;}
.w12{width:297.030000px;}
.wa{width:332.130000px;}
.w9{width:356.475000px;}
.wb{width:464.475000px;}
.w4{width:551.805000px;}
.w7{width:616.470000px;}
.w3{width:628.305000px;}
.w8{width:688.605000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:2.167576px;}
.x21{left:3.274685px;}
.x4{left:6.480000px;}
.x9{left:8.100000px;}
.x3c{left:9.540000px;}
.x5{left:10.800000px;}
.x2{left:12.060000px;}
.x3f{left:13.680000px;}
.x13{left:16.740000px;}
.x40{left:18.000000px;}
.x43{left:28.260000px;}
.x2f{left:35.670000px;}
.x33{left:37.830000px;}
.x7{left:39.780000px;}
.x28{left:42.910588px;}
.x31{left:46.485000px;}
.x1f{left:48.789801px;}
.x35{left:53.814000px;}
.x32{left:55.254000px;}
.x19{left:57.415473px;}
.x39{left:58.494000px;}
.x37{left:61.194000px;}
.x1e{left:62.514264px;}
.x3a{left:63.930000px;}
.x42{left:66.825000px;}
.x44{left:68.445000px;}
.x10{left:70.560000px;}
.x45{left:75.420000px;}
.x41{left:78.300000px;}
.x36{left:79.374000px;}
.x34{left:91.305000px;}
.x38{left:92.925000px;}
.x2c{left:95.593001px;}
.x8{left:100.116000px;}
.xb{left:101.376000px;}
.x14{left:105.300000px;}
.x1{left:108.036000px;}
.x24{left:109.823042px;}
.x29{left:114.180954px;}
.x20{left:127.090406px;}
.x27{left:152.241272px;}
.x3{left:156.990000px;}
.x1d{left:169.963127px;}
.x26{left:172.485488px;}
.xa{left:176.790000px;}
.x1c{left:190.223830px;}
.x3b{left:209.370000px;}
.x16{left:211.170000px;}
.x1a{left:230.658141px;}
.x15{left:263.910000px;}
.x12{left:325.875000px;}
.xc{left:347.289000px;}
.x3d{left:371.415000px;}
.x2e{left:405.075000px;}
.x17{left:453.855000px;}
.xf{left:457.845000px;}
.x18{left:462.705000px;}
.x3e{left:519.945000px;}
.xe{left:539.934000px;}
.xd{left:542.274000px;}
.x30{left:573.945000px;}
.x2d{left:596.265000px;}
.x25{left:599.145000px;}
.x23{left:608.145000px;}
.x6{left:661.650000px;}
.x2b{left:665.250000px;}
.x11{left:680.334000px;}
.x22{left:681.810000px;}
.x1b{left:716.190000px;}
@media print{
.v8{vertical-align:-49.390959pt;}
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-13.440000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:4.646718pt;}
.v9{vertical-align:10.880000pt;}
.v4{vertical-align:13.440000pt;}
.v5{vertical-align:16.042454pt;}
.v1{vertical-align:18.560000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.559094pt;}
.ls1b{letter-spacing:-0.310272pt;}
.ls8{letter-spacing:-0.294400pt;}
.ls25{letter-spacing:-0.288000pt;}
.ls1e{letter-spacing:-0.272000pt;}
.ls9{letter-spacing:-0.208000pt;}
.ls1d{letter-spacing:-0.185189pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.112000pt;}
.ls1f{letter-spacing:-0.088533pt;}
.ls4{letter-spacing:-0.081067pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls1a{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.028160pt;}
.ls18{letter-spacing:0.032000pt;}
.ls16{letter-spacing:0.048000pt;}
.ls2d{letter-spacing:0.064000pt;}
.ls27{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.192000pt;}
.ls24{letter-spacing:0.208000pt;}
.ls20{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.294400pt;}
.ls2c{letter-spacing:0.304000pt;}
.ls14{letter-spacing:0.452053pt;}
.ls21{letter-spacing:0.496000pt;}
.ls13{letter-spacing:0.505660pt;}
.ls19{letter-spacing:0.560000pt;}
.ls22{letter-spacing:0.656000pt;}
.ls29{letter-spacing:0.896000pt;}
.ls15{letter-spacing:0.922661pt;}
.lsb{letter-spacing:4.432000pt;}
.ls28{letter-spacing:6.992000pt;}
.ls2a{letter-spacing:9.568000pt;}
.lsc{letter-spacing:46.688000pt;}
.ls11{letter-spacing:131.986899pt;}
.ls12{letter-spacing:138.322585pt;}
.lsd{letter-spacing:152.140403pt;}
.lse{letter-spacing:152.290351pt;}
.lsf{letter-spacing:169.552000pt;}
.ls10{letter-spacing:180.432000pt;}
.ws31{word-spacing:-48.000000pt;}
.ws19{word-spacing:-35.326032pt;}
.ws22{word-spacing:-35.198402pt;}
.ws10{word-spacing:-35.033404pt;}
.ws1{word-spacing:-22.641920pt;}
.ws2{word-spacing:-22.561920pt;}
.ws0{word-spacing:-19.837013pt;}
.ws6{word-spacing:-16.208000pt;}
.ws1c{word-spacing:-16.086536pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1d{word-spacing:-15.989278pt;}
.ws14{word-spacing:-15.965915pt;}
.ws5{word-spacing:-14.955520pt;}
.ws33{word-spacing:-12.496000pt;}
.ws2c{word-spacing:-12.448000pt;}
.ws2f{word-spacing:-12.400000pt;}
.ws30{word-spacing:-12.384000pt;}
.ws28{word-spacing:-12.352000pt;}
.ws2e{word-spacing:-12.288000pt;}
.ws34{word-spacing:-12.256000pt;}
.ws2b{word-spacing:-12.240000pt;}
.ws24{word-spacing:-12.224000pt;}
.ws29{word-spacing:-12.192000pt;}
.ws2d{word-spacing:-11.680000pt;}
.ws11{word-spacing:-11.616000pt;}
.wsa{word-spacing:-11.568000pt;}
.ws32{word-spacing:-11.536000pt;}
.ws8{word-spacing:-11.488000pt;}
.ws12{word-spacing:-11.456000pt;}
.ws23{word-spacing:-11.408000pt;}
.ws2a{word-spacing:-11.280000pt;}
.ws25{word-spacing:-10.334080pt;}
.ws27{word-spacing:-10.245547pt;}
.ws3{word-spacing:-9.192960pt;}
.ws13{word-spacing:-7.744000pt;}
.ws9{word-spacing:-7.712000pt;}
.ws26{word-spacing:-6.478080pt;}
.wse{word-spacing:-0.986475pt;}
.wsd{word-spacing:-0.515866pt;}
.ws16{word-spacing:-0.064346pt;}
.ws1f{word-spacing:-0.064114pt;}
.ws1e{word-spacing:-0.063957pt;}
.ws15{word-spacing:-0.063864pt;}
.ws7{word-spacing:0.000000pt;}
.ws20{word-spacing:0.121076pt;}
.ws17{word-spacing:0.245926pt;}
.ws1a{word-spacing:0.494748pt;}
.ws18{word-spacing:151.642576pt;}
.ws21{word-spacing:152.689016pt;}
.wsc{word-spacing:176.956243pt;}
.ws1b{word-spacing:211.329604pt;}
.wsb{word-spacing:343.432565pt;}
.wsf{word-spacing:513.675019pt;}
._28{margin-left:-379.220935pt;}
._2d{margin-left:-367.205553pt;}
._31{margin-left:-327.010779pt;}
._2c{margin-left:-295.388986pt;}
._3b{margin-left:-290.856029pt;}
._33{margin-left:-283.535923pt;}
._2a{margin-left:-280.057961pt;}
._32{margin-left:-271.702854pt;}
._3d{margin-left:-268.028622pt;}
._36{margin-left:-261.170791pt;}
._3c{margin-left:-253.297786pt;}
._2b{margin-left:-240.352281pt;}
._29{margin-left:-232.553472pt;}
._2e{margin-left:-198.133148pt;}
._38{margin-left:-187.248407pt;}
._3e{margin-left:-176.253360pt;}
._34{margin-left:-174.771120pt;}
._35{margin-left:-132.960000pt;}
._30{margin-left:-130.976888pt;}
._39{margin-left:-100.960000pt;}
._37{margin-left:-96.110872pt;}
._3f{margin-left:-90.720000pt;}
._27{margin-left:-6.459465pt;}
._2f{margin-left:-2.069983pt;}
._0{margin-left:-1.123200pt;}
._3{width:1.461120pt;}
._a{width:2.474880pt;}
._f{width:3.450240pt;}
._d{width:4.800000pt;}
._b{width:5.808000pt;}
._c{width:6.794880pt;}
._e{width:7.698987pt;}
._8{width:9.024000pt;}
._9{width:9.984000pt;}
._1{width:11.736320pt;}
._2{width:12.651008pt;}
._15{width:14.082944pt;}
._1c{width:15.600000pt;}
._21{width:16.558080pt;}
._7{width:17.728000pt;}
._14{width:19.200000pt;}
._10{width:20.688000pt;}
._11{width:21.792000pt;}
._18{width:23.424000pt;}
._16{width:24.432000pt;}
._17{width:25.728000pt;}
._1f{width:26.829013pt;}
._4{width:27.762987pt;}
._5{width:28.728747pt;}
._6{width:29.675093pt;}
._25{width:30.852907pt;}
._1a{width:31.968000pt;}
._1b{width:32.880000pt;}
._12{width:33.888000pt;}
._13{width:34.944000pt;}
._19{width:36.144000pt;}
._20{width:37.507200pt;}
._1d{width:38.448000pt;}
._1e{width:39.696000pt;}
._40{width:40.896000pt;}
._3a{width:42.672000pt;}
._42{width:47.104000pt;}
._46{width:48.240000pt;}
._45{width:49.152000pt;}
._22{width:50.592000pt;}
._23{width:51.696000pt;}
._43{width:58.298667pt;}
._41{width:89.578667pt;}
._44{width:109.576747pt;}
._24{width:180.432000pt;}
._26{width:406.215217pt;}
.fs3{font-size:10.880000pt;}
.fs15{font-size:26.880000pt;}
.fs8{font-size:29.440000pt;}
.fsd{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fsf{font-size:37.246658pt;}
.fs6{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fsb{font-size:58.880000pt;}
.fs10{font-size:63.813123pt;}
.fs11{font-size:63.863659pt;}
.fs13{font-size:63.957112pt;}
.fs0{font-size:64.000000pt;}
.fs14{font-size:64.113666pt;}
.fs12{font-size:64.346142pt;}
.fsc{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fse{font-size:84.281775pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:89.723461pt;}
.fs2{font-size:96.000000pt;}
.y3d{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y12{bottom:2.880000pt;}
.y25{bottom:3.200000pt;}
.y27{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y9a{bottom:3.811940pt;}
.y82{bottom:3.825762pt;}
.y3{bottom:4.000000pt;}
.y6e{bottom:4.010614pt;}
.y7c{bottom:4.352513pt;}
.y94{bottom:4.358882pt;}
.y23{bottom:4.480000pt;}
.yb2{bottom:7.200000pt;}
.y3c{bottom:8.000000pt;}
.y6d{bottom:8.084886pt;}
.y35{bottom:9.600000pt;}
.y1d{bottom:9.760000pt;}
.y20{bottom:13.120000pt;}
.y21{bottom:13.280000pt;}
.y14{bottom:13.600000pt;}
.y37{bottom:14.560000pt;}
.y7b{bottom:17.087131pt;}
.y93{bottom:17.112135pt;}
.y10{bottom:17.960000pt;}
.y7a{bottom:18.602536pt;}
.y92{bottom:18.629757pt;}
.y1a{bottom:18.720000pt;}
.yb1{bottom:24.200000pt;}
.y3b{bottom:26.880000pt;}
.y7d{bottom:27.339932pt;}
.y95{bottom:27.379939pt;}
.y7e{bottom:28.501612pt;}
.y96{bottom:28.543319pt;}
.y34{bottom:30.080000pt;}
.y19{bottom:40.640000pt;}
.y3a{bottom:45.920000pt;}
.y33{bottom:50.560000pt;}
.y5{bottom:51.840000pt;}
.yf{bottom:54.120000pt;}
.y2{bottom:66.240000pt;}
.y39{bottom:67.386667pt;}
.y32{bottom:71.040000pt;}
.ya{bottom:71.520000pt;}
.y18{bottom:73.120000pt;}
.y9{bottom:81.280000pt;}
.ye{bottom:90.440000pt;}
.y31{bottom:91.560000pt;}
.ybd{bottom:99.200000pt;}
.y99{bottom:106.346667pt;}
.y9b{bottom:110.240000pt;}
.yd2{bottom:111.840000pt;}
.y30{bottom:111.880000pt;}
.y6b{bottom:115.840000pt;}
.ybc{bottom:119.680000pt;}
.yd1{bottom:132.352000pt;}
.y2f{bottom:132.360000pt;}
.y98{bottom:134.426667pt;}
.y6a{bottom:136.186667pt;}
.ybb{bottom:140.186667pt;}
.y91{bottom:152.213333pt;}
.yd0{bottom:152.826667pt;}
.y2e{bottom:152.840000pt;}
.y69{bottom:156.666667pt;}
.yba{bottom:160.666667pt;}
.y97{bottom:170.906667pt;}
.ycf{bottom:173.146667pt;}
.y2d{bottom:173.320000pt;}
.y68{bottom:177.146667pt;}
.yb9{bottom:181.146667pt;}
.yce{bottom:193.626667pt;}
.y2c{bottom:193.800000pt;}
.y67{bottom:197.626667pt;}
.yb8{bottom:201.466667pt;}
.y90{bottom:206.906667pt;}
.ycd{bottom:214.106667pt;}
.y2b{bottom:214.280000pt;}
.y66{bottom:218.106667pt;}
.y8f{bottom:227.386667pt;}
.ycc{bottom:234.586667pt;}
.y2a{bottom:234.600000pt;}
.y65{bottom:238.586667pt;}
.yb7{bottom:242.426667pt;}
.y36{bottom:244.666667pt;}
.y8e{bottom:247.866667pt;}
.ycb{bottom:255.066667pt;}
.y29{bottom:255.080000pt;}
.yb6{bottom:255.226667pt;}
.y64{bottom:258.906667pt;}
.y28{bottom:267.706667pt;}
.y8d{bottom:268.346667pt;}
.yb5{bottom:273.146667pt;}
.yca{bottom:275.386667pt;}
.y63{bottom:279.386667pt;}
.y8c{bottom:288.826667pt;}
.yb4{bottom:291.066667pt;}
.yc9{bottom:295.866667pt;}
.y62{bottom:299.866667pt;}
.yb3{bottom:308.986667pt;}
.y8b{bottom:309.306667pt;}
.yc8{bottom:316.346667pt;}
.y61{bottom:320.346667pt;}
.y89{bottom:326.946667pt;}
.yb0{bottom:327.066667pt;}
.y8a{bottom:330.906667pt;}
.yc7{bottom:336.826667pt;}
.y60{bottom:340.826667pt;}
.y88{bottom:355.106667pt;}
.yc6{bottom:357.346667pt;}
.y5f{bottom:361.346667pt;}
.yaf{bottom:372.706667pt;}
.y87{bottom:375.586667pt;}
.yc5{bottom:377.826667pt;}
.y5e{bottom:381.666667pt;}
.yae{bottom:393.186667pt;}
.y86{bottom:396.066667pt;}
.yc4{bottom:398.146667pt;}
.y5d{bottom:402.146667pt;}
.yad{bottom:413.666667pt;}
.y85{bottom:416.546667pt;}
.yc3{bottom:418.626667pt;}
.y5c{bottom:422.626667pt;}
.yac{bottom:434.146667pt;}
.y84{bottom:437.026667pt;}
.yc2{bottom:439.106667pt;}
.y5b{bottom:443.106667pt;}
.yab{bottom:454.466667pt;}
.y81{bottom:454.613333pt;}
.y83{bottom:458.626667pt;}
.yc1{bottom:459.586667pt;}
.y5a{bottom:463.586667pt;}
.yaa{bottom:474.946667pt;}
.yc0{bottom:480.066667pt;}
.y80{bottom:482.786667pt;}
.y59{bottom:484.066667pt;}
.ya9{bottom:495.426667pt;}
.y79{bottom:500.546667pt;}
.y58{bottom:504.386667pt;}
.ya8{bottom:515.906667pt;}
.y7f{bottom:519.266667pt;}
.ybf{bottom:520.866667pt;}
.yde{bottom:524.226667pt;}
.y57{bottom:524.866667pt;}
.y26{bottom:533.506667pt;}
.ya7{bottom:536.386667pt;}
.ydd{bottom:544.706667pt;}
.y56{bottom:545.346667pt;}
.y24{bottom:547.106667pt;}
.y78{bottom:555.426667pt;}
.ya6{bottom:556.866667pt;}
.ybe{bottom:561.826667pt;}
.y22{bottom:563.746667pt;}
.ydc{bottom:565.186667pt;}
.y55{bottom:565.826667pt;}
.y77{bottom:575.933333pt;}
.ya5{bottom:577.213333pt;}
.y1f{bottom:581.693333pt;}
.ydb{bottom:585.693333pt;}
.y54{bottom:586.333333pt;}
.y76{bottom:596.413333pt;}
.ya4{bottom:597.693333pt;}
.yda{bottom:606.013333pt;}
.y53{bottom:606.653333pt;}
.y1e{bottom:608.253333pt;}
.y75{bottom:616.893333pt;}
.ya3{bottom:618.173333pt;}
.y1c{bottom:620.093333pt;}
.yd9{bottom:626.493333pt;}
.y52{bottom:627.133333pt;}
.y74{bottom:637.213333pt;}
.ya2{bottom:638.653333pt;}
.y1b{bottom:640.573333pt;}
.yd8{bottom:646.973333pt;}
.y51{bottom:647.613333pt;}
.ya1{bottom:651.293333pt;}
.y17{bottom:655.773333pt;}
.y73{bottom:657.693333pt;}
.yd7{bottom:667.453333pt;}
.y50{bottom:668.093333pt;}
.ya0{bottom:672.733333pt;}
.y72{bottom:678.173333pt;}
.yd6{bottom:687.933333pt;}
.y4f{bottom:688.573333pt;}
.y9f{bottom:694.333333pt;}
.y71{bottom:698.653333pt;}
.yd5{bottom:708.413333pt;}
.y4e{bottom:709.053333pt;}
.y9e{bottom:715.773333pt;}
.y70{bottom:719.133333pt;}
.yd4{bottom:728.733333pt;}
.y4d{bottom:729.373333pt;}
.y6c{bottom:736.746667pt;}
.y9d{bottom:737.213333pt;}
.y15{bottom:737.373333pt;}
.y6f{bottom:744.733333pt;}
.yd3{bottom:749.373333pt;}
.y4c{bottom:749.853333pt;}
.y13{bottom:750.333333pt;}
.y9c{bottom:758.653333pt;}
.y4b{bottom:770.333333pt;}
.y11{bottom:777.533333pt;}
.yd{bottom:789.533333pt;}
.y4a{bottom:790.853333pt;}
.y49{bottom:811.333333pt;}
.y48{bottom:831.813333pt;}
.y47{bottom:852.133333pt;}
.y46{bottom:872.613333pt;}
.y45{bottom:893.093333pt;}
.yc{bottom:900.773333pt;}
.y44{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.y8{bottom:930.533333pt;}
.y43{bottom:934.053333pt;}
.y38{bottom:946.853333pt;}
.y42{bottom:954.533333pt;}
.y41{bottom:974.853333pt;}
.y40{bottom:995.333333pt;}
.y3f{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y3e{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h1b{height:11.840000pt;}
.h10{height:12.000000pt;}
.h14{height:12.960000pt;}
.h22{height:13.600000pt;}
.h18{height:15.200000pt;}
.h20{height:16.640000pt;}
.h42{height:16.960000pt;}
.h1f{height:17.952000pt;}
.h3{height:18.400000pt;}
.h3d{height:18.532739pt;}
.h5{height:18.560000pt;}
.h35{height:18.599939pt;}
.h3f{height:20.320000pt;}
.h1a{height:20.480000pt;}
.h17{height:22.223750pt;}
.h26{height:23.040000pt;}
.h2d{height:24.000796pt;}
.h27{height:25.907188pt;}
.h1d{height:26.560000pt;}
.h12{height:27.200000pt;}
.h11{height:29.040312pt;}
.h1c{height:29.856875pt;}
.h43{height:32.432187pt;}
.h41{height:32.453125pt;}
.h15{height:32.788125pt;}
.h40{height:33.952000pt;}
.h19{height:35.975313pt;}
.h23{height:36.304688pt;}
.h25{height:36.328125pt;}
.h2a{height:36.703125pt;}
.h2c{height:37.658750pt;}
.h44{height:40.453125pt;}
.h13{height:43.343750pt;}
.h21{height:44.533750pt;}
.h1e{height:44.562500pt;}
.h30{height:45.266344pt;}
.h38{height:45.332584pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h29{height:48.937500pt;}
.h2b{height:49.075000pt;}
.h6{height:50.712187pt;}
.he{height:57.647187pt;}
.h32{height:59.154962pt;}
.h3a{height:59.241524pt;}
.hf{height:60.764863pt;}
.h34{height:62.647505pt;}
.h31{height:62.678689pt;}
.h3c{height:62.739179pt;}
.h39{height:62.770408pt;}
.h2{height:62.812500pt;}
.h3e{height:62.892751pt;}
.h36{height:63.120800pt;}
.h37{height:63.152219pt;}
.h33{height:63.801680pt;}
.h3b{height:63.895042pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.h7{height:75.465000pt;}
.h2e{height:78.067640pt;}
.h2f{height:78.640385pt;}
.h16{height:81.600000pt;}
.h28{height:83.392000pt;}
.h8{height:96.032000pt;}
.hd{height:108.832000pt;}
.h24{height:265.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.480000pt;}
.w6{width:68.160000pt;}
.w5{width:110.240000pt;}
.w11{width:118.732689pt;}
.wf{width:121.267137pt;}
.w18{width:125.952000pt;}
.we{width:129.262824pt;}
.w17{width:132.032000pt;}
.w15{width:138.106667pt;}
.w16{width:144.026667pt;}
.w13{width:150.106667pt;}
.w19{width:156.026667pt;}
.w10{width:180.001552pt;}
.w14{width:185.946667pt;}
.wd{width:194.736155pt;}
.wc{width:225.259315pt;}
.w12{width:264.026667pt;}
.wa{width:295.226667pt;}
.w9{width:316.866667pt;}
.wb{width:412.866667pt;}
.w4{width:490.493333pt;}
.w7{width:547.973333pt;}
.w3{width:558.493333pt;}
.w8{width:612.093333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:1.926734pt;}
.x21{left:2.910831pt;}
.x4{left:5.760000pt;}
.x9{left:7.200000pt;}
.x3c{left:8.480000pt;}
.x5{left:9.600000pt;}
.x2{left:10.720000pt;}
.x3f{left:12.160000pt;}
.x13{left:14.880000pt;}
.x40{left:16.000000pt;}
.x43{left:25.120000pt;}
.x2f{left:31.706667pt;}
.x33{left:33.626667pt;}
.x7{left:35.360000pt;}
.x28{left:38.142745pt;}
.x31{left:41.320000pt;}
.x1f{left:43.368712pt;}
.x35{left:47.834667pt;}
.x32{left:49.114667pt;}
.x19{left:51.035976pt;}
.x39{left:51.994667pt;}
.x37{left:54.394667pt;}
.x1e{left:55.568235pt;}
.x3a{left:56.826667pt;}
.x42{left:59.400000pt;}
.x44{left:60.840000pt;}
.x10{left:62.720000pt;}
.x45{left:67.040000pt;}
.x41{left:69.600000pt;}
.x36{left:70.554667pt;}
.x34{left:81.160000pt;}
.x38{left:82.600000pt;}
.x2c{left:84.971557pt;}
.x8{left:88.992000pt;}
.xb{left:90.112000pt;}
.x14{left:93.600000pt;}
.x1{left:96.032000pt;}
.x24{left:97.620482pt;}
.x29{left:101.494181pt;}
.x20{left:112.969250pt;}
.x27{left:135.325575pt;}
.x3{left:139.546667pt;}
.x1d{left:151.078335pt;}
.x26{left:153.320434pt;}
.xa{left:157.146667pt;}
.x1c{left:169.087849pt;}
.x3b{left:186.106667pt;}
.x16{left:187.706667pt;}
.x1a{left:205.029458pt;}
.x15{left:234.586667pt;}
.x12{left:289.666667pt;}
.xc{left:308.701333pt;}
.x3d{left:330.146667pt;}
.x2e{left:360.066667pt;}
.x17{left:403.426667pt;}
.xf{left:406.973333pt;}
.x18{left:411.293333pt;}
.x3e{left:462.173333pt;}
.xe{left:479.941333pt;}
.xd{left:482.021333pt;}
.x30{left:510.173333pt;}
.x2d{left:530.013333pt;}
.x25{left:532.573333pt;}
.x23{left:540.573333pt;}
.x6{left:588.133333pt;}
.x2b{left:591.333333pt;}
.x11{left:604.741333pt;}
.x22{left:606.053333pt;}
.x1b{left:636.613333pt;}
}




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