
    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_d2ec539dadd4369fe1531268.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_20ae2369118ecb7f5708338d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_3f579faf576dd5b8cd375c3b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3d9882e2c6d5c560a419b1ae.woff')format("woff");}.ff4{font-family:ff4;line-height:0.665000;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_a98f0ef6f486dbdecb47d3e5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_765c49087991041ed3daa8ce.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5096aa3362354b7522b255db.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_c49d8fb75320d410bc8b490e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.902000;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_5366833e4b01d707cf45da56.woff')format("woff");}.ff9{font-family:ff9;line-height:0.430000;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_73993cff0cc619201efe0499.woff')format("woff");}.ffa{font-family:ffa;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3a0f49b11b0a25f509ab0966.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0a2e8a0e37a9c9178debc497.woff')format("woff");}.ffc{font-family:ffc;line-height:0.921000;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_2654a9a299b80a9462e45d32.woff')format("woff");}.ffd{font-family:ffd;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3acc6a9b81fc0337d6584359.woff')format("woff");}.ffe{font-family:ffe;line-height:0.932000;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_b8f07f71cc028d3921f188ac.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f61ae23ee64c23ccb294084e.woff')format("woff");}.ff10{font-family:ff10;line-height:0.888000;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_80dfb62ccd93820d30ff6166.woff')format("woff");}.ff11{font-family:ff11;line-height:0.049000;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_61eb2a308a2a02c0d8b5c932.woff')format("woff");}.ff12{font-family:ff12;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_9f21de555a77b0241cce2bf1.woff')format("woff");}.ff13{font-family:ff13;line-height:1.200000;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_0ea3b51b78daf843bd230fc0.woff')format("woff");}.ff14{font-family:ff14;line-height:0.427000;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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-26.028000px;}
.v3{vertical-align:-16.872000px;}
.v6{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:14.778000px;}
.v9{vertical-align:21.696000px;}
.v7{vertical-align:24.678000px;}
.v1{vertical-align:26.028000px;}
.v5{vertical-align:31.470000px;}
.v4{vertical-align:40.434000px;}
.v8{vertical-align:55.026000px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.001866px;}
.ls18{letter-spacing:0.002400px;}
.ls23{letter-spacing:0.013599px;}
.ls1a{letter-spacing:0.014173px;}
.ls25{letter-spacing:0.014354px;}
.lsd{letter-spacing:0.020190px;}
.ls14{letter-spacing:0.022545px;}
.ls5{letter-spacing:2.151922px;}
.ls2{letter-spacing:2.986118px;}
.ls0{letter-spacing:2.990915px;}
.ls7{letter-spacing:2.991319px;}
.ls15{letter-spacing:2.993251px;}
.ls8{letter-spacing:4.853765px;}
.ls12{letter-spacing:6.814418px;}
.ls6{letter-spacing:9.342583px;}
.ls1d{letter-spacing:13.270183px;}
.ls22{letter-spacing:16.438290px;}
.ls1c{letter-spacing:16.617617px;}
.lsa{letter-spacing:18.649987px;}
.lsb{letter-spacing:18.889090px;}
.ls1f{letter-spacing:19.367294px;}
.ls24{letter-spacing:19.399202px;}
.ls17{letter-spacing:19.595251px;}
.ls20{letter-spacing:19.606397px;}
.ls13{letter-spacing:19.905275px;}
.lsc{letter-spacing:20.742133px;}
.ls10{letter-spacing:20.981236px;}
.lsf{letter-spacing:21.280114px;}
.lse{letter-spacing:21.597319px;}
.ls1b{letter-spacing:22.905089px;}
.ls11{letter-spacing:23.988775px;}
.ls4{letter-spacing:29.887800px;}
.ls1{letter-spacing:79.680875px;}
.ls19{letter-spacing:915.283987px;}
.ls21{letter-spacing:995.383202px;}
.ls9{letter-spacing:995.502296px;}
.ls1e{letter-spacing:1042.201202px;}
.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;}
}
.ws42{word-spacing:-38.937826px;}
.ws18{word-spacing:-35.327380px;}
.ws7b{word-spacing:-34.364992px;}
.ws45{word-spacing:-30.545332px;}
.ws4b{word-spacing:-17.687600px;}
.ws76{word-spacing:-17.627824px;}
.ws7e{word-spacing:-16.551864px;}
.ws80{word-spacing:-16.492088px;}
.ws79{word-spacing:-16.372537px;}
.ws72{word-spacing:-16.312761px;}
.ws0{word-spacing:-16.196248px;}
.ws27{word-spacing:-16.133434px;}
.ws92{word-spacing:-16.013883px;}
.ws4f{word-spacing:-15.894332px;}
.ws62{word-spacing:-15.834556px;}
.ws9e{word-spacing:-15.535678px;}
.ws4c{word-spacing:-15.416127px;}
.ws77{word-spacing:-15.296576px;}
.ws2c{word-spacing:-15.236800px;}
.ws7f{word-spacing:-15.183002px;}
.ws59{word-spacing:-15.177025px;}
.ws2a{word-spacing:-14.818371px;}
.ws8f{word-spacing:-14.758596px;}
.ws3f{word-spacing:-14.698820px;}
.ws6a{word-spacing:-14.519493px;}
.ws7a{word-spacing:-14.280391px;}
.ws49{word-spacing:-14.160840px;}
.ws84{word-spacing:-14.101064px;}
.ws28{word-spacing:-14.041288px;}
.ws5a{word-spacing:-13.981513px;}
.ws23{word-spacing:-13.802186px;}
.ws69{word-spacing:-13.742410px;}
.ws2b{word-spacing:-13.628837px;}
.ws65{word-spacing:-13.503308px;}
.ws4{word-spacing:-13.383757px;}
.ws98{word-spacing:-13.323981px;}
.ws2d{word-spacing:-13.264206px;}
.ws29{word-spacing:-13.084879px;}
.ws36{word-spacing:-12.905552px;}
.ws1a{word-spacing:-12.786001px;}
.wsa{word-spacing:-12.726225px;}
.ws3d{word-spacing:-12.606674px;}
.ws3b{word-spacing:-12.546898px;}
.ws60{word-spacing:-12.427347px;}
.ws85{word-spacing:-12.248020px;}
.ws7{word-spacing:-12.188245px;}
.ws63{word-spacing:-12.034952px;}
.ws1e{word-spacing:-11.949142px;}
.ws4a{word-spacing:-11.829591px;}
.ws1{word-spacing:-11.728051px;}
.ws66{word-spacing:-11.710040px;}
.ws1d{word-spacing:-11.650264px;}
.ws3e{word-spacing:-11.596466px;}
.ws9{word-spacing:-11.590489px;}
.ws12{word-spacing:-11.530713px;}
.ws83{word-spacing:-11.411162px;}
.ws38{word-spacing:-11.291611px;}
.ws5e{word-spacing:-11.231835px;}
.wsb{word-spacing:-11.052508px;}
.ws17{word-spacing:-10.992733px;}
.ws14{word-spacing:-10.932957px;}
.ws50{word-spacing:-10.873182px;}
.ws61{word-spacing:-10.813406px;}
.ws13{word-spacing:-10.753630px;}
.ws88{word-spacing:-10.693855px;}
.wsc{word-spacing:-10.634079px;}
.ws5d{word-spacing:-10.574304px;}
.ws5c{word-spacing:-10.514528px;}
.wsa6{word-spacing:-10.454752px;}
.ws9d{word-spacing:-10.275426px;}
.ws8b{word-spacing:-10.155874px;}
.ws2f{word-spacing:-10.096099px;}
.ws35{word-spacing:-10.036323px;}
.wse{word-spacing:-9.976548px;}
.ws87{word-spacing:-9.916772px;}
.ws93{word-spacing:-9.797221px;}
.wsa5{word-spacing:-9.743423px;}
.ws6e{word-spacing:-9.737445px;}
.ws6f{word-spacing:-9.558118px;}
.ws8a{word-spacing:-9.378792px;}
.ws5{word-spacing:-9.319016px;}
.ws24{word-spacing:-9.259240px;}
.wsa4{word-spacing:-9.205442px;}
.ws5f{word-spacing:-9.145667px;}
.ws34{word-spacing:-9.020138px;}
.ws10{word-spacing:-8.960362px;}
.ws43{word-spacing:-8.900587px;}
.ws1c{word-spacing:-8.840811px;}
.ws6b{word-spacing:-8.781036px;}
.ws56{word-spacing:-8.722952px;}
.ws78{word-spacing:-8.721260px;}
.ws73{word-spacing:-8.661484px;}
.ws33{word-spacing:-8.601709px;}
.ws6{word-spacing:-8.541933px;}
.ws94{word-spacing:-8.482158px;}
.ws97{word-spacing:-8.422382px;}
.ws3c{word-spacing:-8.308808px;}
.ws15{word-spacing:-8.243055px;}
.ws40{word-spacing:-8.123504px;}
.wsd{word-spacing:-7.764850px;}
.ws95{word-spacing:-7.705075px;}
.ws6c{word-spacing:-7.645299px;}
.ws8d{word-spacing:-7.585524px;}
.ws11{word-spacing:-7.286646px;}
.ws4e{word-spacing:-7.226870px;}
.ws4d{word-spacing:-7.167094px;}
.ws86{word-spacing:-7.047543px;}
.ws8e{word-spacing:-6.933970px;}
.ws8{word-spacing:-6.868216px;}
.ws1b{word-spacing:-6.808441px;}
.ws6d{word-spacing:-6.629114px;}
.ws8c{word-spacing:-6.569338px;}
.ws2e{word-spacing:-6.509563px;}
.wsa0{word-spacing:-6.390012px;}
.ws44{word-spacing:-6.330236px;}
.wsa7{word-spacing:-6.276438px;}
.wsa2{word-spacing:-6.270460px;}
.ws37{word-spacing:-6.210685px;}
.ws30{word-spacing:-6.031358px;}
.wsa1{word-spacing:-5.971582px;}
.wsa3{word-spacing:-5.798233px;}
.ws51{word-spacing:-5.553153px;}
.ws58{word-spacing:-5.433602px;}
.ws68{word-spacing:-5.373826px;}
.ws9c{word-spacing:-5.314051px;}
.ws31{word-spacing:-5.254275px;}
.ws16{word-spacing:-5.074948px;}
.ws46{word-spacing:-5.021150px;}
.ws25{word-spacing:-5.015173px;}
.ws39{word-spacing:-4.955397px;}
.ws67{word-spacing:-4.895622px;}
.ws32{word-spacing:-4.841824px;}
.ws52{word-spacing:-4.835846px;}
.ws71{word-spacing:-4.357641px;}
.ws74{word-spacing:-4.178314px;}
.ws53{word-spacing:-3.998988px;}
.ws96{word-spacing:-3.700110px;}
.ws75{word-spacing:-3.640334px;}
.ws57{word-spacing:-3.520783px;}
.ws47{word-spacing:-3.221905px;}
.ws1f{word-spacing:-3.042578px;}
.ws91{word-spacing:-2.564373px;}
.ws9a{word-spacing:-2.504598px;}
.ws9b{word-spacing:-2.385046px;}
.ws89{word-spacing:-2.325271px;}
.ws81{word-spacing:-2.265495px;}
.ws82{word-spacing:-1.966617px;}
.wsa8{word-spacing:-1.793268px;}
.ws90{word-spacing:-1.727515px;}
.ws26{word-spacing:-1.667739px;}
.ws7c{word-spacing:-0.950432px;}
.ws70{word-spacing:-0.890656px;}
.ws7d{word-spacing:-0.830881px;}
.ws9f{word-spacing:-0.086077px;}
.ws64{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.047821px;}
.ws21{word-spacing:0.000000px;}
.ws5b{word-spacing:10.870905px;}
.ws3{word-spacing:15.308531px;}
.ws41{word-spacing:16.498066px;}
.ws54{word-spacing:16.557841px;}
.ws20{word-spacing:16.880672px;}
.ws3a{word-spacing:26.827469px;}
.ws55{word-spacing:31.123048px;}
.ws48{word-spacing:31.418178px;}
.ws22{word-spacing:31.504255px;}
.wsf{word-spacing:51.233667px;}
.ws99{word-spacing:80.625869px;}
.ws19{word-spacing:94.598843px;}
._12{margin-left:-8.091257px;}
._18{margin-left:-6.742733px;}
._0{margin-left:-5.666765px;}
._c{margin-left:-4.339696px;}
._5{margin-left:-3.203959px;}
._1{margin-left:-1.936742px;}
._2{width:1.793280px;}
._4{width:3.168107px;}
._b{width:4.578798px;}
._1d{width:6.916362px;}
._21{width:14.023343px;}
._19{width:15.661195px;}
._13{width:17.430492px;}
._20{width:18.757597px;}
._9{width:20.000968px;}
._10{width:22.212661px;}
._d{width:24.233041px;}
._15{width:25.249226px;}
._8{width:26.528413px;}
._1b{width:28.022762px;}
._14{width:29.218327px;}
._6{width:30.664883px;}
._a{width:31.884318px;}
._1f{width:33.055907px;}
._7{width:35.805584px;}
._e{width:36.809840px;}
._16{width:38.854116px;}
._1e{width:41.783144px;}
._1a{width:44.736060px;}
._1c{width:46.194598px;}
._f{width:47.605301px;}
._17{width:80.697600px;}
._11{width:94.684920px;}
._3{width:104.402930px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y25{bottom:-21.739500px;}
.y0{bottom:0.000000px;}
.ya0{bottom:72.267000px;}
.y7a{bottom:72.991500px;}
.y52{bottom:74.679000px;}
.yc5{bottom:74.749500px;}
.y24{bottom:76.485000px;}
.ye1{bottom:83.605500px;}
.y9f{bottom:90.199500px;}
.y79{bottom:90.924000px;}
.y51{bottom:92.613000px;}
.yc4{bottom:92.682000px;}
.y23{bottom:98.418000px;}
.y78{bottom:108.858000px;}
.ye0{bottom:113.494500px;}
.y22{bottom:116.350500px;}
.y9e{bottom:119.359500px;}
.yc3{bottom:122.569500px;}
.y50{bottom:125.340000px;}
.y77{bottom:126.790500px;}
.ydf{bottom:131.427000px;}
.y21{bottom:134.283000px;}
.y9d{bottom:137.293500px;}
.yc2{bottom:140.503500px;}
.y20{bottom:152.215500px;}
.y76{bottom:159.666000px;}
.yde{bottom:161.314500px;}
.y9c{bottom:166.453500px;}
.y1f{bottom:170.148000px;}
.yc1{bottom:170.391000px;}
.y4f{bottom:174.753000px;}
.ydd{bottom:179.247000px;}
.y9b{bottom:184.386000px;}
.y1e{bottom:188.082000px;}
.yc0{bottom:188.323500px;}
.y4e{bottom:192.685500px;}
.y75{bottom:201.510000px;}
.y1d{bottom:206.014500px;}
.ydc{bottom:209.136000px;}
.y4d{bottom:210.619500px;}
.y9a{bottom:215.445000px;}
.y74{bottom:219.442500px;}
.ybf{bottom:221.200500px;}
.y4c{bottom:228.552000px;}
.y73{bottom:237.375000px;}
.y1c{bottom:238.741500px;}
.ydb{bottom:239.023500px;}
.ybe{bottom:239.133000px;}
.y99{bottom:243.027000px;}
.y4b{bottom:246.484500px;}
.yda{bottom:256.956000px;}
.y4a{bottom:264.417000px;}
.ybd{bottom:266.715000px;}
.y72{bottom:270.252000px;}
.y49{bottom:282.349500px;}
.y98{bottom:284.542500px;}
.yd9{bottom:286.843500px;}
.y1b{bottom:288.126000px;}
.y71{bottom:288.184500px;}
.y48{bottom:300.283500px;}
.y97{bottom:302.475000px;}
.yd8{bottom:304.777500px;}
.ybc{bottom:308.542500px;}
.y1a{bottom:314.526000px;}
.y96{bottom:320.407500px;}
.y70{bottom:320.913000px;}
.y47{bottom:326.227500px;}
.ybb{bottom:326.475000px;}
.y19{bottom:332.458500px;}
.y46{bottom:336.478500px;}
.yd7{bottom:337.504500px;}
.yba{bottom:344.407500px;}
.y95{bottom:349.569000px;}
.y18{bottom:350.391000px;}
.yb9{bottom:362.340000px;}
.y94{bottom:367.501500px;}
.y17{bottom:368.323500px;}
.y6f{bottom:370.326000px;}
.y45{bottom:377.223000px;}
.yb8{bottom:380.274000px;}
.y16{bottom:386.256000px;}
.yd6{bottom:386.917500px;}
.y6e{bottom:388.258500px;}
.y44{bottom:395.155500px;}
.y93{bottom:396.661500px;}
.yb7{bottom:398.206500px;}
.y15{bottom:404.188500px;}
.yd5{bottom:404.850000px;}
.y6c{bottom:409.927500px;}
.y43{bottom:413.088000px;}
.y92{bottom:414.595500px;}
.yb6{bottom:416.139000px;}
.y6d{bottom:416.484000px;}
.y14{bottom:422.122500px;}
.yd4{bottom:422.784000px;}
.y6b{bottom:430.288500px;}
.y42{bottom:431.020500px;}
.yb5{bottom:434.071500px;}
.y13{bottom:440.055000px;}
.y91{bottom:445.654500px;}
.yd3{bottom:455.511000px;}
.y12{bottom:457.987500px;}
.y41{bottom:458.602500px;}
.y6a{bottom:460.093500px;}
.yb4{bottom:461.653500px;}
.y90{bottom:473.235000px;}
.y69{bottom:478.026000px;}
.y11{bottom:487.291500px;}
.y68{bottom:495.958500px;}
.y40{bottom:500.430000px;}
.yb3{bottom:503.481000px;}
.yd2{bottom:504.924000px;}
.y10{bottom:513.690000px;}
.y67{bottom:513.891000px;}
.y8f{bottom:514.750500px;}
.y3f{bottom:518.362500px;}
.yb2{bottom:521.413500px;}
.yd1{bottom:522.858000px;}
.yf{bottom:531.622500px;}
.y66{bottom:531.823500px;}
.y8e{bottom:532.683000px;}
.y3e{bottom:536.295000px;}
.yb1{bottom:539.346000px;}
.yd0{bottom:540.790500px;}
.ye{bottom:549.555000px;}
.y65{bottom:549.756000px;}
.y3d{bottom:554.229000px;}
.yb0{bottom:557.278500px;}
.ycf{bottom:558.723000px;}
.y8d{bottom:561.844500px;}
.yd{bottom:567.487500px;}
.y3c{bottom:572.161500px;}
.yaf{bottom:575.212500px;}
.yce{bottom:576.655500px;}
.y64{bottom:577.338000px;}
.y8c{bottom:579.777000px;}
.yc{bottom:585.421500px;}
.yae{bottom:593.145000px;}
.ycd{bottom:594.588000px;}
.yb{bottom:603.354000px;}
.y3b{bottom:605.038500px;}
.y8b{bottom:608.937000px;}
.ycc{bottom:612.520500px;}
.y63{bottom:619.165500px;}
.ya{bottom:621.286500px;}
.y3a{bottom:622.971000px;}
.yad{bottom:625.872000px;}
.y8a{bottom:626.871000px;}
.ycb{bottom:630.454500px;}
.y9{bottom:639.219000px;}
.y39{bottom:640.903500px;}
.y62{bottom:652.042500px;}
.y8{bottom:657.151500px;}
.y89{bottom:657.930000px;}
.yca{bottom:658.035000px;}
.y38{bottom:658.836000px;}
.y7{bottom:675.084000px;}
.yac{bottom:675.286500px;}
.y88{bottom:675.862500px;}
.y37{bottom:676.768500px;}
.yab{bottom:693.219000px;}
.y87{bottom:693.795000px;}
.y61{bottom:693.885000px;}
.yc9{bottom:699.864000px;}
.y36{bottom:706.657500px;}
.yaa{bottom:711.151500px;}
.y60{bottom:711.819000px;}
.yc8{bottom:717.796500px;}
.y86{bottom:721.377000px;}
.y35{bottom:724.590000px;}
.ya9{bottom:729.084000px;}
.y5f{bottom:729.751500px;}
.y34{bottom:742.522500px;}
.ya8{bottom:747.016500px;}
.y5e{bottom:747.684000px;}
.y33{bottom:760.455000px;}
.y85{bottom:762.891000px;}
.yc7{bottom:765.616500px;}
.ya7{bottom:774.598500px;}
.y5d{bottom:777.571500px;}
.y84{bottom:780.823500px;}
.y32{bottom:790.342500px;}
.y5c{bottom:795.504000px;}
.y83{bottom:798.757500px;}
.y6{bottom:803.851500px;}
.y31{bottom:808.276500px;}
.y5b{bottom:813.438000px;}
.ya6{bottom:816.426000px;}
.y30{bottom:826.209000px;}
.y82{bottom:831.484500px;}
.y5{bottom:833.206500px;}
.ya5{bottom:834.358500px;}
.y5a{bottom:843.325500px;}
.y2f{bottom:844.141500px;}
.y59{bottom:861.258000px;}
.ya4{bottom:864.247500px;}
.y4{bottom:876.538500px;}
.y2e{bottom:877.018500px;}
.y58{bottom:879.190500px;}
.y81{bottom:880.585500px;}
.ya3{bottom:882.180000px;}
.yc6{bottom:894.135000px;}
.y2d{bottom:894.951000px;}
.y57{bottom:897.123000px;}
.y3{bottom:897.459000px;}
.y80{bottom:898.518000px;}
.ya2{bottom:912.067500px;}
.y2c{bottom:912.883500px;}
.y7f{bottom:916.450500px;}
.y56{bottom:930.000000px;}
.y2b{bottom:930.816000px;}
.y7e{bottom:934.383000px;}
.ye4{bottom:939.634500px;}
.y2{bottom:939.640500px;}
.y55{bottom:947.932500px;}
.y2a{bottom:948.748500px;}
.ya1{bottom:957.582000px;}
.y7d{bottom:963.544500px;}
.y29{bottom:966.682500px;}
.ye3{bottom:969.522000px;}
.y1{bottom:972.517500px;}
.y54{bottom:975.514500px;}
.y7c{bottom:981.477000px;}
.y28{bottom:984.615000px;}
.ye2{bottom:987.454500px;}
.y7b{bottom:999.409500px;}
.y27{bottom:1002.547500px;}
.y53{bottom:1017.342000px;}
.y26{bottom:1035.274500px;}
.h9{height:16.841523px;}
.h5{height:31.800699px;}
.hc{height:42.799330px;}
.h7{height:44.891476px;}
.ha{height:50.283571px;}
.h3{height:51.287808px;}
.h6{height:52.363426px;}
.hf{height:53.078100px;}
.hd{height:56.060100px;}
.he{height:57.417024px;}
.h12{height:57.747024px;}
.h11{height:59.669476px;}
.h4{height:59.741523px;}
.h8{height:60.426194px;}
.h2{height:73.131019px;}
.hb{height:85.265700px;}
.h10{height:97.064100px;}
.h1{height:1233.000000px;}
.h0{height:1233.070500px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x8{left:85.039500px;}
.x14{left:92.509500px;}
.x9{left:101.673000px;}
.x1{left:103.696500px;}
.xb{left:107.457000px;}
.x15{left:115.752000px;}
.xc{left:122.400000px;}
.x7{left:127.558500px;}
.x2{left:143.265000px;}
.x6{left:175.737000px;}
.x3{left:187.483500px;}
.x4{left:202.288500px;}
.x5{left:323.755500px;}
.xd{left:352.261500px;}
.x11{left:363.810000px;}
.x10{left:370.303500px;}
.x13{left:389.589000px;}
.xa{left:421.461000px;}
.xe{left:423.837000px;}
.xf{left:458.031000px;}
.x12{left:480.043500px;}
@media print{
.v2{vertical-align:-23.136000pt;}
.v3{vertical-align:-14.997333pt;}
.v6{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:13.136000pt;}
.v9{vertical-align:19.285333pt;}
.v7{vertical-align:21.936000pt;}
.v1{vertical-align:23.136000pt;}
.v5{vertical-align:27.973333pt;}
.v4{vertical-align:35.941333pt;}
.v8{vertical-align:48.912000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.001659pt;}
.ls18{letter-spacing:0.002133pt;}
.ls23{letter-spacing:0.012088pt;}
.ls1a{letter-spacing:0.012598pt;}
.ls25{letter-spacing:0.012759pt;}
.lsd{letter-spacing:0.017946pt;}
.ls14{letter-spacing:0.020040pt;}
.ls5{letter-spacing:1.912819pt;}
.ls2{letter-spacing:2.654327pt;}
.ls0{letter-spacing:2.658591pt;}
.ls7{letter-spacing:2.658950pt;}
.ls15{letter-spacing:2.660667pt;}
.ls8{letter-spacing:4.314458pt;}
.ls12{letter-spacing:6.057261pt;}
.ls6{letter-spacing:8.304518pt;}
.ls1d{letter-spacing:11.795718pt;}
.ls22{letter-spacing:14.611813pt;}
.ls1c{letter-spacing:14.771215pt;}
.lsa{letter-spacing:16.577766pt;}
.lsb{letter-spacing:16.790302pt;}
.ls1f{letter-spacing:17.215373pt;}
.ls24{letter-spacing:17.243735pt;}
.ls17{letter-spacing:17.418001pt;}
.ls20{letter-spacing:17.427908pt;}
.ls13{letter-spacing:17.693578pt;}
.lsc{letter-spacing:18.437452pt;}
.ls10{letter-spacing:18.649987pt;}
.lsf{letter-spacing:18.915657pt;}
.lse{letter-spacing:19.197617pt;}
.ls1b{letter-spacing:20.360079pt;}
.ls11{letter-spacing:21.323356pt;}
.ls4{letter-spacing:26.566933pt;}
.ls1{letter-spacing:70.827444pt;}
.ls19{letter-spacing:813.585766pt;}
.ls21{letter-spacing:884.785069pt;}
.ls9{letter-spacing:884.890929pt;}
.ls1e{letter-spacing:926.401069pt;}
.ws42{word-spacing:-34.611401pt;}
.ws18{word-spacing:-31.402115pt;}
.ws7b{word-spacing:-30.546660pt;}
.ws45{word-spacing:-27.151406pt;}
.ws4b{word-spacing:-15.722311pt;}
.ws76{word-spacing:-15.669177pt;}
.ws7e{word-spacing:-14.712768pt;}
.ws80{word-spacing:-14.659634pt;}
.ws79{word-spacing:-14.553366pt;}
.ws72{word-spacing:-14.500232pt;}
.ws0{word-spacing:-14.396665pt;}
.ws27{word-spacing:-14.340831pt;}
.ws92{word-spacing:-14.234563pt;}
.ws4f{word-spacing:-14.128295pt;}
.ws62{word-spacing:-14.075161pt;}
.ws9e{word-spacing:-13.809492pt;}
.ws4c{word-spacing:-13.703224pt;}
.ws77{word-spacing:-13.596956pt;}
.ws2c{word-spacing:-13.543823pt;}
.ws7f{word-spacing:-13.496002pt;}
.ws59{word-spacing:-13.490689pt;}
.ws2a{word-spacing:-13.171886pt;}
.ws8f{word-spacing:-13.118752pt;}
.ws3f{word-spacing:-13.065618pt;}
.ws6a{word-spacing:-12.906216pt;}
.ws7a{word-spacing:-12.693681pt;}
.ws49{word-spacing:-12.587413pt;}
.ws84{word-spacing:-12.534279pt;}
.ws28{word-spacing:-12.481145pt;}
.ws5a{word-spacing:-12.428011pt;}
.ws23{word-spacing:-12.268610pt;}
.ws69{word-spacing:-12.215476pt;}
.ws2b{word-spacing:-12.114522pt;}
.ws65{word-spacing:-12.002940pt;}
.ws4{word-spacing:-11.896673pt;}
.ws98{word-spacing:-11.843539pt;}
.ws2d{word-spacing:-11.790405pt;}
.ws29{word-spacing:-11.631003pt;}
.ws36{word-spacing:-11.471602pt;}
.ws1a{word-spacing:-11.365334pt;}
.wsa{word-spacing:-11.312200pt;}
.ws3d{word-spacing:-11.205932pt;}
.ws3b{word-spacing:-11.152799pt;}
.ws60{word-spacing:-11.046531pt;}
.ws85{word-spacing:-10.887129pt;}
.ws7{word-spacing:-10.833995pt;}
.ws63{word-spacing:-10.697735pt;}
.ws1e{word-spacing:-10.621460pt;}
.ws4a{word-spacing:-10.515192pt;}
.ws1{word-spacing:-10.424934pt;}
.ws66{word-spacing:-10.408924pt;}
.ws1d{word-spacing:-10.355791pt;}
.ws3e{word-spacing:-10.307970pt;}
.ws9{word-spacing:-10.302657pt;}
.ws12{word-spacing:-10.249523pt;}
.ws83{word-spacing:-10.143255pt;}
.ws38{word-spacing:-10.036987pt;}
.ws5e{word-spacing:-9.983854pt;}
.wsb{word-spacing:-9.824452pt;}
.ws17{word-spacing:-9.771318pt;}
.ws14{word-spacing:-9.718184pt;}
.ws50{word-spacing:-9.665050pt;}
.ws61{word-spacing:-9.611916pt;}
.ws13{word-spacing:-9.558783pt;}
.ws88{word-spacing:-9.505649pt;}
.wsc{word-spacing:-9.452515pt;}
.ws5d{word-spacing:-9.399381pt;}
.ws5c{word-spacing:-9.346247pt;}
.wsa6{word-spacing:-9.293113pt;}
.ws9d{word-spacing:-9.133712pt;}
.ws8b{word-spacing:-9.027444pt;}
.ws2f{word-spacing:-8.974310pt;}
.ws35{word-spacing:-8.921176pt;}
.wse{word-spacing:-8.868042pt;}
.ws87{word-spacing:-8.814908pt;}
.ws93{word-spacing:-8.708641pt;}
.wsa5{word-spacing:-8.660820pt;}
.ws6e{word-spacing:-8.655507pt;}
.ws6f{word-spacing:-8.496105pt;}
.ws8a{word-spacing:-8.336704pt;}
.ws5{word-spacing:-8.283570pt;}
.ws24{word-spacing:-8.230436pt;}
.wsa4{word-spacing:-8.182615pt;}
.ws5f{word-spacing:-8.129482pt;}
.ws34{word-spacing:-8.017900pt;}
.ws10{word-spacing:-7.964767pt;}
.ws43{word-spacing:-7.911633pt;}
.ws1c{word-spacing:-7.858499pt;}
.ws6b{word-spacing:-7.805365pt;}
.ws56{word-spacing:-7.753735pt;}
.ws78{word-spacing:-7.752231pt;}
.ws73{word-spacing:-7.699097pt;}
.ws33{word-spacing:-7.645963pt;}
.ws6{word-spacing:-7.592830pt;}
.ws94{word-spacing:-7.539696pt;}
.ws97{word-spacing:-7.486562pt;}
.ws3c{word-spacing:-7.385607pt;}
.ws15{word-spacing:-7.327160pt;}
.ws40{word-spacing:-7.220892pt;}
.wsd{word-spacing:-6.902089pt;}
.ws95{word-spacing:-6.848955pt;}
.ws6c{word-spacing:-6.795822pt;}
.ws8d{word-spacing:-6.742688pt;}
.ws11{word-spacing:-6.477018pt;}
.ws4e{word-spacing:-6.423884pt;}
.ws4d{word-spacing:-6.370751pt;}
.ws86{word-spacing:-6.264483pt;}
.ws8e{word-spacing:-6.163529pt;}
.ws8{word-spacing:-6.105081pt;}
.ws1b{word-spacing:-6.051947pt;}
.ws6d{word-spacing:-5.892546pt;}
.ws8c{word-spacing:-5.839412pt;}
.ws2e{word-spacing:-5.786278pt;}
.wsa0{word-spacing:-5.680010pt;}
.ws44{word-spacing:-5.626876pt;}
.wsa7{word-spacing:-5.579056pt;}
.wsa2{word-spacing:-5.573743pt;}
.ws37{word-spacing:-5.520609pt;}
.ws30{word-spacing:-5.361207pt;}
.wsa1{word-spacing:-5.308073pt;}
.wsa3{word-spacing:-5.153985pt;}
.ws51{word-spacing:-4.936136pt;}
.ws58{word-spacing:-4.829868pt;}
.ws68{word-spacing:-4.776735pt;}
.ws9c{word-spacing:-4.723601pt;}
.ws31{word-spacing:-4.670467pt;}
.ws16{word-spacing:-4.511065pt;}
.ws46{word-spacing:-4.463245pt;}
.ws25{word-spacing:-4.457931pt;}
.ws39{word-spacing:-4.404798pt;}
.ws67{word-spacing:-4.351664pt;}
.ws32{word-spacing:-4.303843pt;}
.ws52{word-spacing:-4.298530pt;}
.ws71{word-spacing:-3.873459pt;}
.ws74{word-spacing:-3.714057pt;}
.ws53{word-spacing:-3.554656pt;}
.ws96{word-spacing:-3.288986pt;}
.ws75{word-spacing:-3.235852pt;}
.ws57{word-spacing:-3.129585pt;}
.ws47{word-spacing:-2.863915pt;}
.ws1f{word-spacing:-2.704514pt;}
.ws91{word-spacing:-2.279443pt;}
.ws9a{word-spacing:-2.226309pt;}
.ws9b{word-spacing:-2.120041pt;}
.ws89{word-spacing:-2.066907pt;}
.ws81{word-spacing:-2.013774pt;}
.ws82{word-spacing:-1.748104pt;}
.wsa8{word-spacing:-1.594016pt;}
.ws90{word-spacing:-1.535569pt;}
.ws26{word-spacing:-1.482435pt;}
.ws7c{word-spacing:-0.844828pt;}
.ws70{word-spacing:-0.791695pt;}
.ws7d{word-spacing:-0.738561pt;}
.ws9f{word-spacing:-0.076513pt;}
.ws64{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.042507pt;}
.ws21{word-spacing:0.000000pt;}
.ws5b{word-spacing:9.663027pt;}
.ws3{word-spacing:13.607583pt;}
.ws41{word-spacing:14.664947pt;}
.ws54{word-spacing:14.718081pt;}
.ws20{word-spacing:15.005042pt;}
.ws3a{word-spacing:23.846639pt;}
.ws55{word-spacing:27.664931pt;}
.ws48{word-spacing:27.927269pt;}
.ws22{word-spacing:28.003782pt;}
.wsf{word-spacing:45.541037pt;}
.ws99{word-spacing:71.667439pt;}
.ws19{word-spacing:84.087860pt;}
._12{margin-left:-7.192228pt;}
._18{margin-left:-5.993540pt;}
._0{margin-left:-5.037124pt;}
._c{margin-left:-3.857507pt;}
._5{margin-left:-2.847964pt;}
._1{margin-left:-1.721549pt;}
._2{width:1.594027pt;}
._4{width:2.816095pt;}
._b{width:4.070043pt;}
._1d{width:6.147878pt;}
._21{width:12.465194pt;}
._19{width:13.921062pt;}
._13{width:15.493771pt;}
._20{width:16.673420pt;}
._9{width:17.778638pt;}
._10{width:19.744588pt;}
._d{width:21.540481pt;}
._15{width:22.443757pt;}
._8{width:23.580812pt;}
._1b{width:24.909122pt;}
._14{width:25.971846pt;}
._6{width:27.257674pt;}
._a{width:28.341616pt;}
._1f{width:29.383028pt;}
._7{width:31.827186pt;}
._e{width:32.719858pt;}
._16{width:34.536992pt;}
._1e{width:37.140573pt;}
._1a{width:39.765387pt;}
._1c{width:41.061865pt;}
._f{width:42.315823pt;}
._17{width:71.731200pt;}
._11{width:84.164373pt;}
._3{width:92.802604pt;}
.fs5{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y25{bottom:-19.324000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:64.237333pt;}
.y7a{bottom:64.881333pt;}
.y52{bottom:66.381333pt;}
.yc5{bottom:66.444000pt;}
.y24{bottom:67.986667pt;}
.ye1{bottom:74.316000pt;}
.y9f{bottom:80.177333pt;}
.y79{bottom:80.821333pt;}
.y51{bottom:82.322667pt;}
.yc4{bottom:82.384000pt;}
.y23{bottom:87.482667pt;}
.y78{bottom:96.762667pt;}
.ye0{bottom:100.884000pt;}
.y22{bottom:103.422667pt;}
.y9e{bottom:106.097333pt;}
.yc3{bottom:108.950667pt;}
.y50{bottom:111.413333pt;}
.y77{bottom:112.702667pt;}
.ydf{bottom:116.824000pt;}
.y21{bottom:119.362667pt;}
.y9d{bottom:122.038667pt;}
.yc2{bottom:124.892000pt;}
.y20{bottom:135.302667pt;}
.y76{bottom:141.925333pt;}
.yde{bottom:143.390667pt;}
.y9c{bottom:147.958667pt;}
.y1f{bottom:151.242667pt;}
.yc1{bottom:151.458667pt;}
.y4f{bottom:155.336000pt;}
.ydd{bottom:159.330667pt;}
.y9b{bottom:163.898667pt;}
.y1e{bottom:167.184000pt;}
.yc0{bottom:167.398667pt;}
.y4e{bottom:171.276000pt;}
.y75{bottom:179.120000pt;}
.y1d{bottom:183.124000pt;}
.ydc{bottom:185.898667pt;}
.y4d{bottom:187.217333pt;}
.y9a{bottom:191.506667pt;}
.y74{bottom:195.060000pt;}
.ybf{bottom:196.622667pt;}
.y4c{bottom:203.157333pt;}
.y73{bottom:211.000000pt;}
.y1c{bottom:212.214667pt;}
.ydb{bottom:212.465333pt;}
.ybe{bottom:212.562667pt;}
.y99{bottom:216.024000pt;}
.y4b{bottom:219.097333pt;}
.yda{bottom:228.405333pt;}
.y4a{bottom:235.037333pt;}
.ybd{bottom:237.080000pt;}
.y72{bottom:240.224000pt;}
.y49{bottom:250.977333pt;}
.y98{bottom:252.926667pt;}
.yd9{bottom:254.972000pt;}
.y1b{bottom:256.112000pt;}
.y71{bottom:256.164000pt;}
.y48{bottom:266.918667pt;}
.y97{bottom:268.866667pt;}
.yd8{bottom:270.913333pt;}
.ybc{bottom:274.260000pt;}
.y1a{bottom:279.578667pt;}
.y96{bottom:284.806667pt;}
.y70{bottom:285.256000pt;}
.y47{bottom:289.980000pt;}
.ybb{bottom:290.200000pt;}
.y19{bottom:295.518667pt;}
.y46{bottom:299.092000pt;}
.yd7{bottom:300.004000pt;}
.yba{bottom:306.140000pt;}
.y95{bottom:310.728000pt;}
.y18{bottom:311.458667pt;}
.yb9{bottom:322.080000pt;}
.y94{bottom:326.668000pt;}
.y17{bottom:327.398667pt;}
.y6f{bottom:329.178667pt;}
.y45{bottom:335.309333pt;}
.yb8{bottom:338.021333pt;}
.y16{bottom:343.338667pt;}
.yd6{bottom:343.926667pt;}
.y6e{bottom:345.118667pt;}
.y44{bottom:351.249333pt;}
.y93{bottom:352.588000pt;}
.yb7{bottom:353.961333pt;}
.y15{bottom:359.278667pt;}
.yd5{bottom:359.866667pt;}
.y6c{bottom:364.380000pt;}
.y43{bottom:367.189333pt;}
.y92{bottom:368.529333pt;}
.yb6{bottom:369.901333pt;}
.y6d{bottom:370.208000pt;}
.y14{bottom:375.220000pt;}
.yd4{bottom:375.808000pt;}
.y6b{bottom:382.478667pt;}
.y42{bottom:383.129333pt;}
.yb5{bottom:385.841333pt;}
.y13{bottom:391.160000pt;}
.y91{bottom:396.137333pt;}
.yd3{bottom:404.898667pt;}
.y12{bottom:407.100000pt;}
.y41{bottom:407.646667pt;}
.y6a{bottom:408.972000pt;}
.yb4{bottom:410.358667pt;}
.y90{bottom:420.653333pt;}
.y69{bottom:424.912000pt;}
.y11{bottom:433.148000pt;}
.y68{bottom:440.852000pt;}
.y40{bottom:444.826667pt;}
.yb3{bottom:447.538667pt;}
.yd2{bottom:448.821333pt;}
.y10{bottom:456.613333pt;}
.y67{bottom:456.792000pt;}
.y8f{bottom:457.556000pt;}
.y3f{bottom:460.766667pt;}
.yb2{bottom:463.478667pt;}
.yd1{bottom:464.762667pt;}
.yf{bottom:472.553333pt;}
.y66{bottom:472.732000pt;}
.y8e{bottom:473.496000pt;}
.y3e{bottom:476.706667pt;}
.yb1{bottom:479.418667pt;}
.yd0{bottom:480.702667pt;}
.ye{bottom:488.493333pt;}
.y65{bottom:488.672000pt;}
.y3d{bottom:492.648000pt;}
.yb0{bottom:495.358667pt;}
.ycf{bottom:496.642667pt;}
.y8d{bottom:499.417333pt;}
.yd{bottom:504.433333pt;}
.y3c{bottom:508.588000pt;}
.yaf{bottom:511.300000pt;}
.yce{bottom:512.582667pt;}
.y64{bottom:513.189333pt;}
.y8c{bottom:515.357333pt;}
.yc{bottom:520.374667pt;}
.yae{bottom:527.240000pt;}
.ycd{bottom:528.522667pt;}
.yb{bottom:536.314667pt;}
.y3b{bottom:537.812000pt;}
.y8b{bottom:541.277333pt;}
.ycc{bottom:544.462667pt;}
.y63{bottom:550.369333pt;}
.ya{bottom:552.254667pt;}
.y3a{bottom:553.752000pt;}
.yad{bottom:556.330667pt;}
.y8a{bottom:557.218667pt;}
.ycb{bottom:560.404000pt;}
.y9{bottom:568.194667pt;}
.y39{bottom:569.692000pt;}
.y62{bottom:579.593333pt;}
.y8{bottom:584.134667pt;}
.y89{bottom:584.826667pt;}
.yca{bottom:584.920000pt;}
.y38{bottom:585.632000pt;}
.y7{bottom:600.074667pt;}
.yac{bottom:600.254667pt;}
.y88{bottom:600.766667pt;}
.y37{bottom:601.572000pt;}
.yab{bottom:616.194667pt;}
.y87{bottom:616.706667pt;}
.y61{bottom:616.786667pt;}
.yc9{bottom:622.101333pt;}
.y36{bottom:628.140000pt;}
.yaa{bottom:632.134667pt;}
.y60{bottom:632.728000pt;}
.yc8{bottom:638.041333pt;}
.y86{bottom:641.224000pt;}
.y35{bottom:644.080000pt;}
.ya9{bottom:648.074667pt;}
.y5f{bottom:648.668000pt;}
.y34{bottom:660.020000pt;}
.ya8{bottom:664.014667pt;}
.y5e{bottom:664.608000pt;}
.y33{bottom:675.960000pt;}
.y85{bottom:678.125333pt;}
.yc7{bottom:680.548000pt;}
.ya7{bottom:688.532000pt;}
.y5d{bottom:691.174667pt;}
.y84{bottom:694.065333pt;}
.y32{bottom:702.526667pt;}
.y5c{bottom:707.114667pt;}
.y83{bottom:710.006667pt;}
.y6{bottom:714.534667pt;}
.y31{bottom:718.468000pt;}
.y5b{bottom:723.056000pt;}
.ya6{bottom:725.712000pt;}
.y30{bottom:734.408000pt;}
.y82{bottom:739.097333pt;}
.y5{bottom:740.628000pt;}
.ya5{bottom:741.652000pt;}
.y5a{bottom:749.622667pt;}
.y2f{bottom:750.348000pt;}
.y59{bottom:765.562667pt;}
.ya4{bottom:768.220000pt;}
.y4{bottom:779.145333pt;}
.y2e{bottom:779.572000pt;}
.y58{bottom:781.502667pt;}
.y81{bottom:782.742667pt;}
.ya3{bottom:784.160000pt;}
.yc6{bottom:794.786667pt;}
.y2d{bottom:795.512000pt;}
.y57{bottom:797.442667pt;}
.y3{bottom:797.741333pt;}
.y80{bottom:798.682667pt;}
.ya2{bottom:810.726667pt;}
.y2c{bottom:811.452000pt;}
.y7f{bottom:814.622667pt;}
.y56{bottom:826.666667pt;}
.y2b{bottom:827.392000pt;}
.y7e{bottom:830.562667pt;}
.ye4{bottom:835.230667pt;}
.y2{bottom:835.236000pt;}
.y55{bottom:842.606667pt;}
.y2a{bottom:843.332000pt;}
.ya1{bottom:851.184000pt;}
.y7d{bottom:856.484000pt;}
.y29{bottom:859.273333pt;}
.ye3{bottom:861.797333pt;}
.y1{bottom:864.460000pt;}
.y54{bottom:867.124000pt;}
.y7c{bottom:872.424000pt;}
.y28{bottom:875.213333pt;}
.ye2{bottom:877.737333pt;}
.y7b{bottom:888.364000pt;}
.y27{bottom:891.153333pt;}
.y53{bottom:904.304000pt;}
.y26{bottom:920.244000pt;}
.h9{height:14.970243pt;}
.h5{height:28.267288pt;}
.hc{height:38.043849pt;}
.h7{height:39.903534pt;}
.ha{height:44.696508pt;}
.h3{height:45.589163pt;}
.h6{height:46.545267pt;}
.hf{height:47.180533pt;}
.hd{height:49.831200pt;}
.he{height:51.037355pt;}
.h12{height:51.330688pt;}
.h11{height:53.039534pt;}
.h4{height:53.103576pt;}
.h8{height:53.712173pt;}
.h2{height:65.005350pt;}
.hb{height:75.791733pt;}
.h10{height:86.279200pt;}
.h1{height:1096.000000pt;}
.h0{height:1096.062667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x8{left:75.590667pt;}
.x14{left:82.230667pt;}
.x9{left:90.376000pt;}
.x1{left:92.174667pt;}
.xb{left:95.517333pt;}
.x15{left:102.890667pt;}
.xc{left:108.800000pt;}
.x7{left:113.385333pt;}
.x2{left:127.346667pt;}
.x6{left:156.210667pt;}
.x3{left:166.652000pt;}
.x4{left:179.812000pt;}
.x5{left:287.782667pt;}
.xd{left:313.121333pt;}
.x11{left:323.386667pt;}
.x10{left:329.158667pt;}
.x13{left:346.301333pt;}
.xa{left:374.632000pt;}
.xe{left:376.744000pt;}
.xf{left:407.138667pt;}
.x12{left:426.705333pt;}
}




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