
    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_3838099a57119e32b731a84f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.076000;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_96a095514c432dcb9dfa8637.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.087000;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_aa86cfc0d1cbb65820110fb4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962000;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_2e4b6c958fc6a73602797fe0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.082000;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_849198c41cf535d0300762be.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.076000;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_858e475e27f4c2d772e382c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.082000;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_849198c41cf535d0300762be.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.076000;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_a3c7cfd02a027ab0c885d6b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.947000;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);}
.v4{vertical-align:-22.977000px;}
.v3{vertical-align:-17.982000px;}
.v1{vertical-align:-5.755200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:22.977000px;}
.ls1e{letter-spacing:-7.668000px;}
.ls39{letter-spacing:-2.760000px;}
.ls52{letter-spacing:-2.553000px;}
.ls3f{letter-spacing:-2.070000px;}
.ls56{letter-spacing:-1.932000px;}
.ls43{letter-spacing:-1.863000px;}
.ls4e{letter-spacing:-1.656000px;}
.ls48{letter-spacing:-1.587000px;}
.ls1b{letter-spacing:-1.449000px;}
.ls32{letter-spacing:-1.242000px;}
.ls31{letter-spacing:-1.035000px;}
.ls25{letter-spacing:-0.966000px;}
.ls54{letter-spacing:-0.918000px;}
.ls1c{letter-spacing:-0.897000px;}
.ls33{letter-spacing:-0.844767px;}
.ls1a{letter-spacing:-0.828000px;}
.ls7{letter-spacing:-0.780000px;}
.ls3c{letter-spacing:-0.759000px;}
.ls45{letter-spacing:-0.756000px;}
.ls3a{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.648000px;}
.ls24{letter-spacing:-0.621000px;}
.ls1f{letter-spacing:-0.594000px;}
.ls2b{letter-spacing:-0.552000px;}
.ls42{letter-spacing:-0.483000px;}
.ls46{letter-spacing:-0.442497px;}
.ls3d{letter-spacing:-0.432000px;}
.ls57{letter-spacing:-0.420000px;}
.ls2c{letter-spacing:-0.414000px;}
.ls20{letter-spacing:-0.396000px;}
.ls55{letter-spacing:-0.345000px;}
.ls6{letter-spacing:-0.288000px;}
.ls35{letter-spacing:-0.276000px;}
.ls1d{letter-spacing:-0.207000px;}
.ls36{letter-spacing:-0.160908px;}
.ls11{letter-spacing:-0.138000px;}
.ls4d{letter-spacing:-0.120681px;}
.ls44{letter-spacing:-0.108000px;}
.ls40{letter-spacing:-0.080454px;}
.ls8{letter-spacing:-0.069000px;}
.ls3e{letter-spacing:-0.040227px;}
.ls5{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.040227px;}
.ls13{letter-spacing:0.062964px;}
.ls21{letter-spacing:0.063240px;}
.ls15{letter-spacing:0.069000px;}
.ls2a{letter-spacing:0.080454px;}
.lsd{letter-spacing:0.090840px;}
.ls28{letter-spacing:0.091440px;}
.lse{letter-spacing:0.108000px;}
.ls3b{letter-spacing:0.120681px;}
.ls4c{letter-spacing:0.121800px;}
.ls9{letter-spacing:0.138000px;}
.ls4{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.156000px;}
.ls23{letter-spacing:0.158400px;}
.ls38{letter-spacing:0.160908px;}
.ls41{letter-spacing:0.201135px;}
.ls12{letter-spacing:0.207000px;}
.ls18{letter-spacing:0.214440px;}
.ls2f{letter-spacing:0.241362px;}
.ls14{letter-spacing:0.276000px;}
.ls53{letter-spacing:0.281589px;}
.ls47{letter-spacing:0.321816px;}
.ls17{letter-spacing:0.345000px;}
.ls4a{letter-spacing:0.362043px;}
.ls51{letter-spacing:0.402270px;}
.ls2{letter-spacing:0.414000px;}
.ls34{letter-spacing:0.482724px;}
.lsa{letter-spacing:0.483000px;}
.ls16{letter-spacing:0.552000px;}
.ls4f{letter-spacing:0.563178px;}
.ls22{letter-spacing:0.621000px;}
.lsf{letter-spacing:0.660000px;}
.ls19{letter-spacing:0.690000px;}
.lsc{letter-spacing:0.759000px;}
.ls0{letter-spacing:0.828000px;}
.ls10{letter-spacing:0.897000px;}
.ls3{letter-spacing:0.936000px;}
.ls2d{letter-spacing:0.966000px;}
.ls37{letter-spacing:1.035000px;}
.ls1{letter-spacing:1.056000px;}
.ls50{letter-spacing:1.104000px;}
.ls49{letter-spacing:1.242000px;}
.ls27{letter-spacing:1.311000px;}
.ls4b{letter-spacing:1.380000px;}
.ls29{letter-spacing:47.388186px;}
.ls2e{letter-spacing:47.388786px;}
.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;}
}
.wsa8{word-spacing:-17.082000px;}
.ws95{word-spacing:-16.284000px;}
.ws1{word-spacing:-16.146000px;}
.ws0{word-spacing:-16.056000px;}
.ws7d{word-spacing:-16.008000px;}
.ws69{word-spacing:-15.939000px;}
.ws83{word-spacing:-15.870000px;}
.ws68{word-spacing:-15.801000px;}
.ws76{word-spacing:-15.663000px;}
.ws2e{word-spacing:-15.525000px;}
.wsa6{word-spacing:-15.456000px;}
.ws75{word-spacing:-15.387000px;}
.ws8f{word-spacing:-15.249000px;}
.ws40{word-spacing:-14.973000px;}
.ws6a{word-spacing:-14.904000px;}
.ws9b{word-spacing:-14.697000px;}
.ws2d{word-spacing:-14.352000px;}
.ws8d{word-spacing:-14.076000px;}
.ws82{word-spacing:-13.938000px;}
.wsa9{word-spacing:-13.869000px;}
.ws7b{word-spacing:-13.731000px;}
.ws9e{word-spacing:-13.248000px;}
.ws66{word-spacing:-12.366000px;}
.ws7f{word-spacing:-11.934000px;}
.wsa2{word-spacing:-11.448000px;}
.ws96{word-spacing:-9.694707px;}
.ws64{word-spacing:-9.614253px;}
.ws9a{word-spacing:-9.533799px;}
.ws90{word-spacing:-9.493572px;}
.ws8c{word-spacing:-9.453345px;}
.ws9f{word-spacing:-9.413118px;}
.ws5d{word-spacing:-9.372891px;}
.ws7e{word-spacing:-9.332664px;}
.ws67{word-spacing:-9.292437px;}
.ws70{word-spacing:-9.252210px;}
.ws57{word-spacing:-9.211983px;}
.ws5e{word-spacing:-9.171756px;}
.ws2f{word-spacing:-9.131529px;}
.ws7a{word-spacing:-9.091302px;}
.ws7c{word-spacing:-9.051075px;}
.ws94{word-spacing:-9.010848px;}
.ws65{word-spacing:-8.970621px;}
.ws8b{word-spacing:-8.689032px;}
.ws5f{word-spacing:-8.286762px;}
.ws58{word-spacing:-7.209378px;}
.wsd{word-spacing:-2.736000px;}
.ws37{word-spacing:-1.794000px;}
.ws2a{word-spacing:-1.656000px;}
.ws14{word-spacing:-1.587000px;}
.wsa{word-spacing:-1.584000px;}
.ws24{word-spacing:-1.518000px;}
.ws81{word-spacing:-1.449000px;}
.ws77{word-spacing:-1.380000px;}
.ws33{word-spacing:-1.311000px;}
.ws4e{word-spacing:-1.242000px;}
.ws43{word-spacing:-1.173000px;}
.ws23{word-spacing:-1.104000px;}
.ws84{word-spacing:-1.035000px;}
.ws35{word-spacing:-0.966000px;}
.ws42{word-spacing:-0.897000px;}
.ws29{word-spacing:-0.828000px;}
.wse{word-spacing:-0.792000px;}
.ws19{word-spacing:-0.759000px;}
.ws3b{word-spacing:-0.690000px;}
.ws17{word-spacing:-0.660000px;}
.ws28{word-spacing:-0.621000px;}
.ws73{word-spacing:-0.552000px;}
.ws8e{word-spacing:-0.483000px;}
.ws11{word-spacing:-0.414000px;}
.ws15{word-spacing:-0.390000px;}
.ws2{word-spacing:-0.345000px;}
.ws4{word-spacing:-0.288000px;}
.ws92{word-spacing:-0.276000px;}
.ws98{word-spacing:-0.207000px;}
.ws16{word-spacing:-0.138000px;}
.ws3e{word-spacing:-0.108000px;}
.ws6b{word-spacing:-0.069000px;}
.ws2c{word-spacing:-0.062964px;}
.wsa5{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.ws87{word-spacing:0.069000px;}
.ws3c{word-spacing:0.138000px;}
.ws49{word-spacing:0.207000px;}
.ws85{word-spacing:0.216000px;}
.ws50{word-spacing:0.276000px;}
.ws36{word-spacing:0.345000px;}
.ws34{word-spacing:0.414000px;}
.wsab{word-spacing:0.420000px;}
.ws55{word-spacing:0.483000px;}
.ws74{word-spacing:0.540000px;}
.ws71{word-spacing:0.552000px;}
.ws9{word-spacing:0.576000px;}
.ws79{word-spacing:0.621000px;}
.ws26{word-spacing:0.690000px;}
.ws3f{word-spacing:0.702000px;}
.ws4a{word-spacing:0.756000px;}
.ws22{word-spacing:0.759000px;}
.ws20{word-spacing:0.828000px;}
.ws8a{word-spacing:0.864000px;}
.ws21{word-spacing:0.897000px;}
.ws1d{word-spacing:0.966000px;}
.ws47{word-spacing:1.035000px;}
.ws52{word-spacing:1.104000px;}
.ws4f{word-spacing:1.173000px;}
.ws53{word-spacing:1.242000px;}
.ws30{word-spacing:1.311000px;}
.wsa7{word-spacing:1.350000px;}
.ws80{word-spacing:1.380000px;}
.ws46{word-spacing:1.449000px;}
.ws2b{word-spacing:1.518000px;}
.ws39{word-spacing:1.587000px;}
.ws72{word-spacing:1.656000px;}
.ws1c{word-spacing:1.725000px;}
.ws3a{word-spacing:1.794000px;}
.ws8{word-spacing:1.800000px;}
.ws1b{word-spacing:1.863000px;}
.ws61{word-spacing:1.932000px;}
.ws6d{word-spacing:2.001000px;}
.ws41{word-spacing:2.070000px;}
.ws5c{word-spacing:2.139000px;}
.ws62{word-spacing:2.208000px;}
.ws31{word-spacing:2.277000px;}
.ws4c{word-spacing:2.346000px;}
.ws25{word-spacing:2.415000px;}
.ws86{word-spacing:2.484000px;}
.ws51{word-spacing:2.553000px;}
.ws18{word-spacing:2.622000px;}
.ws1e{word-spacing:2.691000px;}
.ws27{word-spacing:2.760000px;}
.ws1f{word-spacing:2.829000px;}
.ws63{word-spacing:2.898000px;}
.ws5b{word-spacing:2.967000px;}
.ws59{word-spacing:3.036000px;}
.ws13{word-spacing:3.105000px;}
.ws12{word-spacing:3.174000px;}
.ws38{word-spacing:3.243000px;}
.ws89{word-spacing:3.312000px;}
.ws4d{word-spacing:3.381000px;}
.ws45{word-spacing:3.450000px;}
.ws1a{word-spacing:3.519000px;}
.ws48{word-spacing:3.588000px;}
.ws93{word-spacing:3.657000px;}
.ws5a{word-spacing:3.726000px;}
.ws56{word-spacing:3.795000px;}
.ws6e{word-spacing:3.864000px;}
.ws60{word-spacing:3.933000px;}
.ws88{word-spacing:4.002000px;}
.ws6f{word-spacing:4.140000px;}
.ws99{word-spacing:4.209000px;}
.ws78{word-spacing:4.347000px;}
.ws6c{word-spacing:4.416000px;}
.ws32{word-spacing:4.485000px;}
.ws9c{word-spacing:4.554000px;}
.ws9d{word-spacing:4.623000px;}
.wsa3{word-spacing:4.692000px;}
.wsa4{word-spacing:4.899000px;}
.ws44{word-spacing:4.968000px;}
.wsaa{word-spacing:5.382000px;}
.ws7{word-spacing:5.400000px;}
.ws91{word-spacing:5.589000px;}
.ws4b{word-spacing:5.658000px;}
.ws54{word-spacing:5.727000px;}
.wsa0{word-spacing:5.865000px;}
.wsa1{word-spacing:5.934000px;}
.ws97{word-spacing:6.279000px;}
.wsf{word-spacing:7.260000px;}
.ws3d{word-spacing:7.668000px;}
.ws10{word-spacing:7.680000px;}
.wsb{word-spacing:8.064000px;}
.wsc{word-spacing:8.424000px;}
.ws3{word-spacing:9.888000px;}
.ws5{word-spacing:11.592000px;}
._5{margin-left:-12.899400px;}
._d{margin-left:-11.172300px;}
._e{margin-left:-10.158000px;}
._f{margin-left:-7.743648px;}
._2{margin-left:-6.672300px;}
._6{margin-left:-5.491200px;}
._3{margin-left:-4.435200px;}
._4{margin-left:-3.340800px;}
._0{margin-left:-1.987200px;}
._1{width:1.504200px;}
._8{width:3.075600px;}
._7{width:4.737600px;}
._c{width:6.009900px;}
._b{width:7.786800px;}
._10{width:15.036948px;}
._a{width:62.579262px;}
._9{width:147.779100px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs6{font-size:40.227000px;}
.fs9{font-size:49.500000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:69.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:42.519750px;}
.y74{bottom:106.299150px;}
.yb9{bottom:106.299300px;}
.y3c{bottom:106.299450px;}
.y63{bottom:110.794650px;}
.y6f{bottom:110.794800px;}
.yf4{bottom:110.794950px;}
.y13f{bottom:114.437850px;}
.y12d{bottom:120.787050px;}
.y17{bottom:120.919500px;}
.y62{bottom:122.499150px;}
.y3b{bottom:122.499450px;}
.y73{bottom:126.994650px;}
.yac{bottom:126.994800px;}
.y6e{bottom:126.994950px;}
.yf3{bottom:126.995100px;}
.y13e{bottom:132.437850px;}
.y109{bottom:138.699150px;}
.yab{bottom:138.699300px;}
.ydb{bottom:138.699600px;}
.yf2{bottom:138.699750px;}
.y12c{bottom:141.487050px;}
.y16{bottom:141.619500px;}
.y61{bottom:143.194650px;}
.ye0{bottom:143.194800px;}
.y3a{bottom:143.194950px;}
.y97{bottom:143.195100px;}
.yce{bottom:154.899150px;}
.y7e{bottom:159.097650px;}
.y60{bottom:159.394650px;}
.yaa{bottom:159.394800px;}
.yd0{bottom:159.395100px;}
.yf1{bottom:159.395250px;}
.y12b{bottom:162.187050px;}
.y6d{bottom:162.362850px;}
.y5f{bottom:171.099150px;}
.yb8{bottom:171.099300px;}
.yda{bottom:171.099750px;}
.y13d{bottom:171.137850px;}
.y15{bottom:175.069500px;}
.ycd{bottom:175.594650px;}
.ydf{bottom:175.594800px;}
.y102{bottom:175.595250px;}
.yf0{bottom:175.595400px;}
.y72{bottom:176.572650px;}
.y39{bottom:179.238000px;}
.y7d{bottom:179.797650px;}
.yec{bottom:179.797950px;}
.y12a{bottom:182.887050px;}
.y6c{bottom:183.062850px;}
.y108{bottom:187.299150px;}
.ycc{bottom:191.794500px;}
.y5e{bottom:191.794650px;}
.yb7{bottom:191.794800px;}
.yd9{bottom:191.795250px;}
.y101{bottom:191.795400px;}
.yef{bottom:191.795550px;}
.y13c{bottom:191.837850px;}
.y96{bottom:193.447650px;}
.y71{bottom:197.272650px;}
.ya9{bottom:197.272950px;}
.y38{bottom:199.938000px;}
.y7c{bottom:200.497650px;}
.yeb{bottom:200.497950px;}
.yb6{bottom:203.499300px;}
.y129{bottom:203.587050px;}
.y6b{bottom:203.762850px;}
.ycb{bottom:207.994500px;}
.y107{bottom:207.994650px;}
.yd8{bottom:207.995400px;}
.y100{bottom:207.995550px;}
.yee{bottom:207.995700px;}
.yfd{bottom:210.253050px;}
.y13b{bottom:212.537850px;}
.y95{bottom:214.147650px;}
.y70{bottom:217.972650px;}
.ya8{bottom:217.972800px;}
.y106{bottom:219.699150px;}
.y37{bottom:220.638000px;}
.y7b{bottom:221.197650px;}
.yea{bottom:221.197800px;}
.yb5{bottom:224.194800px;}
.yff{bottom:224.195700px;}
.yed{bottom:224.195850px;}
.y128{bottom:224.287050px;}
.y6a{bottom:224.462850px;}
.y14{bottom:228.244500px;}
.yfc{bottom:230.953050px;}
.y13a{bottom:233.237850px;}
.y94{bottom:234.847650px;}
.y5d{bottom:238.672650px;}
.ya7{bottom:238.672950px;}
.y105{bottom:240.394650px;}
.y36{bottom:241.338000px;}
.y7a{bottom:241.897650px;}
.ye9{bottom:241.897950px;}
.yd7{bottom:243.703050px;}
.y127{bottom:244.987050px;}
.y69{bottom:245.162850px;}
.yde{bottom:245.163000px;}
.y13{bottom:246.244500px;}
.yfb{bottom:251.653050px;}
.y139{bottom:253.937850px;}
.y93{bottom:255.547650px;}
.y104{bottom:256.594650px;}
.y98{bottom:257.912850px;}
.y5c{bottom:259.372650px;}
.ya6{bottom:259.372950px;}
.y79{bottom:262.597650px;}
.ye8{bottom:262.597800px;}
.yca{bottom:264.403050px;}
.y126{bottom:265.687050px;}
.y68{bottom:265.862850px;}
.yb4{bottom:265.863000px;}
.yfa{bottom:272.353050px;}
.y138{bottom:274.637850px;}
.y35{bottom:274.788000px;}
.yae{bottom:275.347650px;}
.y12{bottom:276.244500px;}
.y92{bottom:276.247650px;}
.y5b{bottom:280.072650px;}
.ya5{bottom:280.072800px;}
.y78{bottom:283.297650px;}
.ye7{bottom:283.297950px;}
.y125{bottom:286.387050px;}
.y67{bottom:286.562850px;}
.yb3{bottom:286.563000px;}
.ycf{bottom:288.997650px;}
.yf9{bottom:293.053050px;}
.y137{bottom:295.337850px;}
.y91{bottom:296.947650px;}
.y5a{bottom:300.772650px;}
.ya4{bottom:300.772950px;}
.y11{bottom:303.244500px;}
.y77{bottom:303.997650px;}
.ye6{bottom:303.997950px;}
.y124{bottom:307.087050px;}
.yc9{bottom:307.262850px;}
.yb2{bottom:307.263000px;}
.yad{bottom:309.697650px;}
.y136{bottom:316.037850px;}
.y90{bottom:317.647650px;}
.y34{bottom:317.647950px;}
.y66{bottom:320.012850px;}
.y59{bottom:321.472650px;}
.ya3{bottom:321.472800px;}
.ye5{bottom:324.697800px;}
.yf8{bottom:326.503050px;}
.y123{bottom:327.787050px;}
.yc8{bottom:327.962850px;}
.yb1{bottom:327.963000px;}
.y10{bottom:330.244500px;}
.y135{bottom:336.737850px;}
.y76{bottom:337.447650px;}
.y8f{bottom:338.347650px;}
.y33{bottom:338.347800px;}
.yfe{bottom:340.712850px;}
.y58{bottom:342.172650px;}
.ya2{bottom:342.172950px;}
.ye4{bottom:345.397950px;}
.y122{bottom:348.487050px;}
.yc7{bottom:348.662850px;}
.yb0{bottom:348.663000px;}
.yf{bottom:357.244500px;}
.y134{bottom:357.437850px;}
.y8e{bottom:359.047650px;}
.y32{bottom:359.047950px;}
.y57{bottom:362.872650px;}
.ya1{bottom:362.872950px;}
.ye3{bottom:366.097800px;}
.y121{bottom:369.187050px;}
.yc6{bottom:369.362850px;}
.ydd{bottom:369.363000px;}
.y75{bottom:371.797650px;}
.y133{bottom:378.137850px;}
.y8d{bottom:379.747650px;}
.y31{bottom:379.747950px;}
.yaf{bottom:382.113000px;}
.y56{bottom:383.572650px;}
.ya0{bottom:383.572800px;}
.ye{bottom:384.244500px;}
.y120{bottom:389.887050px;}
.yc5{bottom:390.062850px;}
.ye2{bottom:399.547950px;}
.y8c{bottom:400.447650px;}
.y30{bottom:400.447800px;}
.ydc{bottom:402.813000px;}
.y55{bottom:404.272650px;}
.y9f{bottom:404.272950px;}
.y11f{bottom:410.587050px;}
.yc4{bottom:410.762850px;}
.yd{bottom:411.244500px;}
.y132{bottom:411.587850px;}
.y8b{bottom:421.147650px;}
.y2f{bottom:421.147950px;}
.y54{bottom:424.972650px;}
.y9e{bottom:424.972800px;}
.y11e{bottom:431.287050px;}
.yc3{bottom:431.462850px;}
.ye1{bottom:433.897950px;}
.yc{bottom:438.244500px;}
.y8a{bottom:441.847650px;}
.y2e{bottom:441.847800px;}
.y53{bottom:445.672650px;}
.y9d{bottom:445.672950px;}
.y11d{bottom:451.987050px;}
.yc2{bottom:452.162850px;}
.y89{bottom:462.547650px;}
.y2d{bottom:462.547950px;}
.yb{bottom:465.244500px;}
.y52{bottom:466.372650px;}
.y9c{bottom:466.372950px;}
.y131{bottom:467.197650px;}
.y11c{bottom:472.687050px;}
.yc1{bottom:472.862850px;}
.y88{bottom:483.247650px;}
.y51{bottom:487.072650px;}
.y9b{bottom:487.072800px;}
.y130{bottom:490.597650px;}
.ya{bottom:492.244500px;}
.y11b{bottom:493.387050px;}
.yc0{bottom:493.562850px;}
.y2c{bottom:495.997950px;}
.y87{bottom:503.947650px;}
.y50{bottom:507.772650px;}
.y9a{bottom:507.772950px;}
.y12f{bottom:513.997650px;}
.y11a{bottom:514.087050px;}
.ybf{bottom:514.262850px;}
.y9{bottom:519.244500px;}
.y86{bottom:524.647650px;}
.y4f{bottom:528.472650px;}
.y99{bottom:528.472800px;}
.y119{bottom:534.787050px;}
.ybe{bottom:534.962850px;}
.y12e{bottom:537.397650px;}
.y85{bottom:545.347650px;}
.y8{bottom:546.244500px;}
.y4e{bottom:549.172650px;}
.y2b{bottom:549.172800px;}
.y118{bottom:555.487050px;}
.ybd{bottom:555.662850px;}
.y84{bottom:566.047650px;}
.y4d{bottom:569.872650px;}
.y2a{bottom:569.872950px;}
.y117{bottom:576.187050px;}
.ybc{bottom:576.362850px;}
.y7{bottom:585.994500px;}
.y83{bottom:586.747650px;}
.y103{bottom:589.112850px;}
.y4c{bottom:590.572650px;}
.y29{bottom:590.572950px;}
.y116{bottom:596.887050px;}
.ybb{bottom:597.062850px;}
.y82{bottom:607.447650px;}
.y4b{bottom:611.272650px;}
.y28{bottom:611.272950px;}
.y115{bottom:617.587050px;}
.yd6{bottom:617.762850px;}
.y81{bottom:628.147650px;}
.yba{bottom:630.512850px;}
.y4a{bottom:631.972650px;}
.y27{bottom:631.972800px;}
.y114{bottom:638.287050px;}
.yd5{bottom:638.462850px;}
.y80{bottom:648.847650px;}
.y6{bottom:649.554300px;}
.y49{bottom:652.672650px;}
.y26{bottom:652.672800px;}
.y113{bottom:658.987050px;}
.yd4{bottom:659.162850px;}
.y48{bottom:673.372650px;}
.y25{bottom:673.372950px;}
.y5{bottom:679.554300px;}
.y112{bottom:679.687050px;}
.yd3{bottom:679.862850px;}
.y7f{bottom:682.297650px;}
.y47{bottom:694.072650px;}
.y24{bottom:694.072950px;}
.y111{bottom:700.387050px;}
.yd2{bottom:700.562850px;}
.y4{bottom:709.554300px;}
.y46{bottom:714.772650px;}
.y23{bottom:714.772950px;}
.y110{bottom:721.087050px;}
.yf7{bottom:721.262850px;}
.yd1{bottom:734.012850px;}
.y45{bottom:735.472650px;}
.y22{bottom:735.472800px;}
.y3{bottom:739.554300px;}
.y10f{bottom:741.787050px;}
.yf6{bottom:741.962850px;}
.y44{bottom:756.172650px;}
.y21{bottom:756.172800px;}
.y10e{bottom:762.487050px;}
.yf5{bottom:775.412850px;}
.y43{bottom:776.872800px;}
.y20{bottom:776.872950px;}
.y10d{bottom:783.187050px;}
.y2{bottom:790.254300px;}
.y42{bottom:797.572650px;}
.y1f{bottom:797.572950px;}
.y10c{bottom:803.887050px;}
.y1{bottom:810.954300px;}
.y41{bottom:818.272650px;}
.y1e{bottom:818.272950px;}
.y10b{bottom:824.587050px;}
.y40{bottom:838.972650px;}
.y1d{bottom:838.972800px;}
.y10a{bottom:845.287050px;}
.y19{bottom:856.598250px;}
.y3f{bottom:859.672650px;}
.y1c{bottom:859.672800px;}
.y18{bottom:878.737050px;}
.y3e{bottom:880.372800px;}
.y1b{bottom:880.372950px;}
.y65{bottom:916.287300px;}
.y3d{bottom:923.303400px;}
.y64{bottom:931.137300px;}
.hf{height:26.244000px;}
.h12{height:26.567400px;}
.hc{height:26.568000px;}
.h10{height:40.837500px;}
.hd{height:44.226000px;}
.he{height:44.550000px;}
.h8{height:49.500000px;}
.h7{height:50.520000px;}
.h4{height:51.264000px;}
.hb{height:54.054000px;}
.h2{height:56.511000px;}
.ha{height:56.925000px;}
.h5{height:58.968000px;}
.h6{height:59.400000px;}
.h11{height:60.624000px;}
.h9{height:65.676000px;}
.h3{height:80.832000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:693.000000px;}
.w0{width:693.070500px;}
.x0{left:0.000000px;}
.xa{left:85.121700px;}
.x1{left:97.881300px;}
.x2{left:101.197500px;}
.x23{left:102.877650px;}
.xc{left:106.299150px;}
.xb{left:118.796700px;}
.x3{left:119.934450px;}
.x7{left:131.811000px;}
.x24{left:135.147750px;}
.x17{left:147.153000px;}
.x4{left:152.034150px;}
.x5{left:156.107850px;}
.x21{left:165.752100px;}
.x12{left:167.040150px;}
.x22{left:169.851900px;}
.x20{left:173.711700px;}
.x14{left:188.207700px;}
.x1d{left:190.449750px;}
.x19{left:198.886650px;}
.x15{left:202.433100px;}
.x13{left:203.869950px;}
.x18{left:206.347950px;}
.x1f{left:209.903400px;}
.x10{left:211.560300px;}
.x1c{left:219.680250px;}
.x16{left:225.947550px;}
.x1a{left:229.817850px;}
.x1e{left:235.250250px;}
.x11{left:239.128200px;}
.xd{left:265.611600px;}
.xe{left:281.066250px;}
.x1b{left:287.870700px;}
.x25{left:297.626250px;}
.x6{left:307.524300px;}
.x26{left:316.497300px;}
.x8{left:326.777100px;}
.x9{left:478.015500px;}
.xf{left:583.859250px;}
@media print{
.v4{vertical-align:-20.424000pt;}
.v3{vertical-align:-15.984000pt;}
.v1{vertical-align:-5.115733pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.424000pt;}
.ls1e{letter-spacing:-6.816000pt;}
.ls39{letter-spacing:-2.453333pt;}
.ls52{letter-spacing:-2.269333pt;}
.ls3f{letter-spacing:-1.840000pt;}
.ls56{letter-spacing:-1.717333pt;}
.ls43{letter-spacing:-1.656000pt;}
.ls4e{letter-spacing:-1.472000pt;}
.ls48{letter-spacing:-1.410667pt;}
.ls1b{letter-spacing:-1.288000pt;}
.ls32{letter-spacing:-1.104000pt;}
.ls31{letter-spacing:-0.920000pt;}
.ls25{letter-spacing:-0.858667pt;}
.ls54{letter-spacing:-0.816000pt;}
.ls1c{letter-spacing:-0.797333pt;}
.ls33{letter-spacing:-0.750904pt;}
.ls1a{letter-spacing:-0.736000pt;}
.ls7{letter-spacing:-0.693333pt;}
.ls3c{letter-spacing:-0.674667pt;}
.ls45{letter-spacing:-0.672000pt;}
.ls3a{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.576000pt;}
.ls24{letter-spacing:-0.552000pt;}
.ls1f{letter-spacing:-0.528000pt;}
.ls2b{letter-spacing:-0.490667pt;}
.ls42{letter-spacing:-0.429333pt;}
.ls46{letter-spacing:-0.393331pt;}
.ls3d{letter-spacing:-0.384000pt;}
.ls57{letter-spacing:-0.373333pt;}
.ls2c{letter-spacing:-0.368000pt;}
.ls20{letter-spacing:-0.352000pt;}
.ls55{letter-spacing:-0.306667pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls35{letter-spacing:-0.245333pt;}
.ls1d{letter-spacing:-0.184000pt;}
.ls36{letter-spacing:-0.143029pt;}
.ls11{letter-spacing:-0.122667pt;}
.ls4d{letter-spacing:-0.107272pt;}
.ls44{letter-spacing:-0.096000pt;}
.ls40{letter-spacing:-0.071515pt;}
.ls8{letter-spacing:-0.061333pt;}
.ls3e{letter-spacing:-0.035757pt;}
.ls5{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.035757pt;}
.ls13{letter-spacing:0.055968pt;}
.ls21{letter-spacing:0.056213pt;}
.ls15{letter-spacing:0.061333pt;}
.ls2a{letter-spacing:0.071515pt;}
.lsd{letter-spacing:0.080747pt;}
.ls28{letter-spacing:0.081280pt;}
.lse{letter-spacing:0.096000pt;}
.ls3b{letter-spacing:0.107272pt;}
.ls4c{letter-spacing:0.108267pt;}
.ls9{letter-spacing:0.122667pt;}
.ls4{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.138667pt;}
.ls23{letter-spacing:0.140800pt;}
.ls38{letter-spacing:0.143029pt;}
.ls41{letter-spacing:0.178787pt;}
.ls12{letter-spacing:0.184000pt;}
.ls18{letter-spacing:0.190613pt;}
.ls2f{letter-spacing:0.214544pt;}
.ls14{letter-spacing:0.245333pt;}
.ls53{letter-spacing:0.250301pt;}
.ls47{letter-spacing:0.286059pt;}
.ls17{letter-spacing:0.306667pt;}
.ls4a{letter-spacing:0.321816pt;}
.ls51{letter-spacing:0.357573pt;}
.ls2{letter-spacing:0.368000pt;}
.ls34{letter-spacing:0.429088pt;}
.lsa{letter-spacing:0.429333pt;}
.ls16{letter-spacing:0.490667pt;}
.ls4f{letter-spacing:0.500603pt;}
.ls22{letter-spacing:0.552000pt;}
.lsf{letter-spacing:0.586667pt;}
.ls19{letter-spacing:0.613333pt;}
.lsc{letter-spacing:0.674667pt;}
.ls0{letter-spacing:0.736000pt;}
.ls10{letter-spacing:0.797333pt;}
.ls3{letter-spacing:0.832000pt;}
.ls2d{letter-spacing:0.858667pt;}
.ls37{letter-spacing:0.920000pt;}
.ls1{letter-spacing:0.938667pt;}
.ls50{letter-spacing:0.981333pt;}
.ls49{letter-spacing:1.104000pt;}
.ls27{letter-spacing:1.165333pt;}
.ls4b{letter-spacing:1.226667pt;}
.ls29{letter-spacing:42.122832pt;}
.ls2e{letter-spacing:42.123365pt;}
.wsa8{word-spacing:-15.184000pt;}
.ws95{word-spacing:-14.474667pt;}
.ws1{word-spacing:-14.352000pt;}
.ws0{word-spacing:-14.272000pt;}
.ws7d{word-spacing:-14.229333pt;}
.ws69{word-spacing:-14.168000pt;}
.ws83{word-spacing:-14.106667pt;}
.ws68{word-spacing:-14.045333pt;}
.ws76{word-spacing:-13.922667pt;}
.ws2e{word-spacing:-13.800000pt;}
.wsa6{word-spacing:-13.738667pt;}
.ws75{word-spacing:-13.677333pt;}
.ws8f{word-spacing:-13.554667pt;}
.ws40{word-spacing:-13.309333pt;}
.ws6a{word-spacing:-13.248000pt;}
.ws9b{word-spacing:-13.064000pt;}
.ws2d{word-spacing:-12.757333pt;}
.ws8d{word-spacing:-12.512000pt;}
.ws82{word-spacing:-12.389333pt;}
.wsa9{word-spacing:-12.328000pt;}
.ws7b{word-spacing:-12.205333pt;}
.ws9e{word-spacing:-11.776000pt;}
.ws66{word-spacing:-10.992000pt;}
.ws7f{word-spacing:-10.608000pt;}
.wsa2{word-spacing:-10.176000pt;}
.ws96{word-spacing:-8.617517pt;}
.ws64{word-spacing:-8.546003pt;}
.ws9a{word-spacing:-8.474488pt;}
.ws90{word-spacing:-8.438731pt;}
.ws8c{word-spacing:-8.402973pt;}
.ws9f{word-spacing:-8.367216pt;}
.ws5d{word-spacing:-8.331459pt;}
.ws7e{word-spacing:-8.295701pt;}
.ws67{word-spacing:-8.259944pt;}
.ws70{word-spacing:-8.224187pt;}
.ws57{word-spacing:-8.188429pt;}
.ws5e{word-spacing:-8.152672pt;}
.ws2f{word-spacing:-8.116915pt;}
.ws7a{word-spacing:-8.081157pt;}
.ws7c{word-spacing:-8.045400pt;}
.ws94{word-spacing:-8.009643pt;}
.ws65{word-spacing:-7.973885pt;}
.ws8b{word-spacing:-7.723584pt;}
.ws5f{word-spacing:-7.366011pt;}
.ws58{word-spacing:-6.408336pt;}
.wsd{word-spacing:-2.432000pt;}
.ws37{word-spacing:-1.594667pt;}
.ws2a{word-spacing:-1.472000pt;}
.ws14{word-spacing:-1.410667pt;}
.wsa{word-spacing:-1.408000pt;}
.ws24{word-spacing:-1.349333pt;}
.ws81{word-spacing:-1.288000pt;}
.ws77{word-spacing:-1.226667pt;}
.ws33{word-spacing:-1.165333pt;}
.ws4e{word-spacing:-1.104000pt;}
.ws43{word-spacing:-1.042667pt;}
.ws23{word-spacing:-0.981333pt;}
.ws84{word-spacing:-0.920000pt;}
.ws35{word-spacing:-0.858667pt;}
.ws42{word-spacing:-0.797333pt;}
.ws29{word-spacing:-0.736000pt;}
.wse{word-spacing:-0.704000pt;}
.ws19{word-spacing:-0.674667pt;}
.ws3b{word-spacing:-0.613333pt;}
.ws17{word-spacing:-0.586667pt;}
.ws28{word-spacing:-0.552000pt;}
.ws73{word-spacing:-0.490667pt;}
.ws8e{word-spacing:-0.429333pt;}
.ws11{word-spacing:-0.368000pt;}
.ws15{word-spacing:-0.346667pt;}
.ws2{word-spacing:-0.306667pt;}
.ws4{word-spacing:-0.256000pt;}
.ws92{word-spacing:-0.245333pt;}
.ws98{word-spacing:-0.184000pt;}
.ws16{word-spacing:-0.122667pt;}
.ws3e{word-spacing:-0.096000pt;}
.ws6b{word-spacing:-0.061333pt;}
.ws2c{word-spacing:-0.055968pt;}
.wsa5{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.ws87{word-spacing:0.061333pt;}
.ws3c{word-spacing:0.122667pt;}
.ws49{word-spacing:0.184000pt;}
.ws85{word-spacing:0.192000pt;}
.ws50{word-spacing:0.245333pt;}
.ws36{word-spacing:0.306667pt;}
.ws34{word-spacing:0.368000pt;}
.wsab{word-spacing:0.373333pt;}
.ws55{word-spacing:0.429333pt;}
.ws74{word-spacing:0.480000pt;}
.ws71{word-spacing:0.490667pt;}
.ws9{word-spacing:0.512000pt;}
.ws79{word-spacing:0.552000pt;}
.ws26{word-spacing:0.613333pt;}
.ws3f{word-spacing:0.624000pt;}
.ws4a{word-spacing:0.672000pt;}
.ws22{word-spacing:0.674667pt;}
.ws20{word-spacing:0.736000pt;}
.ws8a{word-spacing:0.768000pt;}
.ws21{word-spacing:0.797333pt;}
.ws1d{word-spacing:0.858667pt;}
.ws47{word-spacing:0.920000pt;}
.ws52{word-spacing:0.981333pt;}
.ws4f{word-spacing:1.042667pt;}
.ws53{word-spacing:1.104000pt;}
.ws30{word-spacing:1.165333pt;}
.wsa7{word-spacing:1.200000pt;}
.ws80{word-spacing:1.226667pt;}
.ws46{word-spacing:1.288000pt;}
.ws2b{word-spacing:1.349333pt;}
.ws39{word-spacing:1.410667pt;}
.ws72{word-spacing:1.472000pt;}
.ws1c{word-spacing:1.533333pt;}
.ws3a{word-spacing:1.594667pt;}
.ws8{word-spacing:1.600000pt;}
.ws1b{word-spacing:1.656000pt;}
.ws61{word-spacing:1.717333pt;}
.ws6d{word-spacing:1.778667pt;}
.ws41{word-spacing:1.840000pt;}
.ws5c{word-spacing:1.901333pt;}
.ws62{word-spacing:1.962667pt;}
.ws31{word-spacing:2.024000pt;}
.ws4c{word-spacing:2.085333pt;}
.ws25{word-spacing:2.146667pt;}
.ws86{word-spacing:2.208000pt;}
.ws51{word-spacing:2.269333pt;}
.ws18{word-spacing:2.330667pt;}
.ws1e{word-spacing:2.392000pt;}
.ws27{word-spacing:2.453333pt;}
.ws1f{word-spacing:2.514667pt;}
.ws63{word-spacing:2.576000pt;}
.ws5b{word-spacing:2.637333pt;}
.ws59{word-spacing:2.698667pt;}
.ws13{word-spacing:2.760000pt;}
.ws12{word-spacing:2.821333pt;}
.ws38{word-spacing:2.882667pt;}
.ws89{word-spacing:2.944000pt;}
.ws4d{word-spacing:3.005333pt;}
.ws45{word-spacing:3.066667pt;}
.ws1a{word-spacing:3.128000pt;}
.ws48{word-spacing:3.189333pt;}
.ws93{word-spacing:3.250667pt;}
.ws5a{word-spacing:3.312000pt;}
.ws56{word-spacing:3.373333pt;}
.ws6e{word-spacing:3.434667pt;}
.ws60{word-spacing:3.496000pt;}
.ws88{word-spacing:3.557333pt;}
.ws6f{word-spacing:3.680000pt;}
.ws99{word-spacing:3.741333pt;}
.ws78{word-spacing:3.864000pt;}
.ws6c{word-spacing:3.925333pt;}
.ws32{word-spacing:3.986667pt;}
.ws9c{word-spacing:4.048000pt;}
.ws9d{word-spacing:4.109333pt;}
.wsa3{word-spacing:4.170667pt;}
.wsa4{word-spacing:4.354667pt;}
.ws44{word-spacing:4.416000pt;}
.wsaa{word-spacing:4.784000pt;}
.ws7{word-spacing:4.800000pt;}
.ws91{word-spacing:4.968000pt;}
.ws4b{word-spacing:5.029333pt;}
.ws54{word-spacing:5.090667pt;}
.wsa0{word-spacing:5.213333pt;}
.wsa1{word-spacing:5.274667pt;}
.ws97{word-spacing:5.581333pt;}
.wsf{word-spacing:6.453333pt;}
.ws3d{word-spacing:6.816000pt;}
.ws10{word-spacing:6.826667pt;}
.wsb{word-spacing:7.168000pt;}
.wsc{word-spacing:7.488000pt;}
.ws3{word-spacing:8.789333pt;}
.ws5{word-spacing:10.304000pt;}
._5{margin-left:-11.466133pt;}
._d{margin-left:-9.930933pt;}
._e{margin-left:-9.029333pt;}
._f{margin-left:-6.883243pt;}
._2{margin-left:-5.930933pt;}
._6{margin-left:-4.881067pt;}
._3{margin-left:-3.942400pt;}
._4{margin-left:-2.969600pt;}
._0{margin-left:-1.766400pt;}
._1{width:1.337067pt;}
._8{width:2.733867pt;}
._7{width:4.211200pt;}
._c{width:5.342133pt;}
._b{width:6.921600pt;}
._10{width:13.366176pt;}
._a{width:55.626011pt;}
._9{width:131.359200pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:35.757333pt;}
.fs9{font-size:44.000000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:61.333333pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:37.795333pt;}
.y74{bottom:94.488133pt;}
.yb9{bottom:94.488267pt;}
.y3c{bottom:94.488400pt;}
.y63{bottom:98.484133pt;}
.y6f{bottom:98.484267pt;}
.yf4{bottom:98.484400pt;}
.y13f{bottom:101.722533pt;}
.y12d{bottom:107.366267pt;}
.y17{bottom:107.484000pt;}
.y62{bottom:108.888133pt;}
.y3b{bottom:108.888400pt;}
.y73{bottom:112.884133pt;}
.yac{bottom:112.884267pt;}
.y6e{bottom:112.884400pt;}
.yf3{bottom:112.884533pt;}
.y13e{bottom:117.722533pt;}
.y109{bottom:123.288133pt;}
.yab{bottom:123.288267pt;}
.ydb{bottom:123.288533pt;}
.yf2{bottom:123.288667pt;}
.y12c{bottom:125.766267pt;}
.y16{bottom:125.884000pt;}
.y61{bottom:127.284133pt;}
.ye0{bottom:127.284267pt;}
.y3a{bottom:127.284400pt;}
.y97{bottom:127.284533pt;}
.yce{bottom:137.688133pt;}
.y7e{bottom:141.420133pt;}
.y60{bottom:141.684133pt;}
.yaa{bottom:141.684267pt;}
.yd0{bottom:141.684533pt;}
.yf1{bottom:141.684667pt;}
.y12b{bottom:144.166267pt;}
.y6d{bottom:144.322533pt;}
.y5f{bottom:152.088133pt;}
.yb8{bottom:152.088267pt;}
.yda{bottom:152.088667pt;}
.y13d{bottom:152.122533pt;}
.y15{bottom:155.617333pt;}
.ycd{bottom:156.084133pt;}
.ydf{bottom:156.084267pt;}
.y102{bottom:156.084667pt;}
.yf0{bottom:156.084800pt;}
.y72{bottom:156.953467pt;}
.y39{bottom:159.322667pt;}
.y7d{bottom:159.820133pt;}
.yec{bottom:159.820400pt;}
.y12a{bottom:162.566267pt;}
.y6c{bottom:162.722533pt;}
.y108{bottom:166.488133pt;}
.ycc{bottom:170.484000pt;}
.y5e{bottom:170.484133pt;}
.yb7{bottom:170.484267pt;}
.yd9{bottom:170.484667pt;}
.y101{bottom:170.484800pt;}
.yef{bottom:170.484933pt;}
.y13c{bottom:170.522533pt;}
.y96{bottom:171.953467pt;}
.y71{bottom:175.353467pt;}
.ya9{bottom:175.353733pt;}
.y38{bottom:177.722667pt;}
.y7c{bottom:178.220133pt;}
.yeb{bottom:178.220400pt;}
.yb6{bottom:180.888267pt;}
.y129{bottom:180.966267pt;}
.y6b{bottom:181.122533pt;}
.ycb{bottom:184.884000pt;}
.y107{bottom:184.884133pt;}
.yd8{bottom:184.884800pt;}
.y100{bottom:184.884933pt;}
.yee{bottom:184.885067pt;}
.yfd{bottom:186.891600pt;}
.y13b{bottom:188.922533pt;}
.y95{bottom:190.353467pt;}
.y70{bottom:193.753467pt;}
.ya8{bottom:193.753600pt;}
.y106{bottom:195.288133pt;}
.y37{bottom:196.122667pt;}
.y7b{bottom:196.620133pt;}
.yea{bottom:196.620267pt;}
.yb5{bottom:199.284267pt;}
.yff{bottom:199.285067pt;}
.yed{bottom:199.285200pt;}
.y128{bottom:199.366267pt;}
.y6a{bottom:199.522533pt;}
.y14{bottom:202.884000pt;}
.yfc{bottom:205.291600pt;}
.y13a{bottom:207.322533pt;}
.y94{bottom:208.753467pt;}
.y5d{bottom:212.153467pt;}
.ya7{bottom:212.153733pt;}
.y105{bottom:213.684133pt;}
.y36{bottom:214.522667pt;}
.y7a{bottom:215.020133pt;}
.ye9{bottom:215.020400pt;}
.yd7{bottom:216.624933pt;}
.y127{bottom:217.766267pt;}
.y69{bottom:217.922533pt;}
.yde{bottom:217.922667pt;}
.y13{bottom:218.884000pt;}
.yfb{bottom:223.691600pt;}
.y139{bottom:225.722533pt;}
.y93{bottom:227.153467pt;}
.y104{bottom:228.084133pt;}
.y98{bottom:229.255867pt;}
.y5c{bottom:230.553467pt;}
.ya6{bottom:230.553733pt;}
.y79{bottom:233.420133pt;}
.ye8{bottom:233.420267pt;}
.yca{bottom:235.024933pt;}
.y126{bottom:236.166267pt;}
.y68{bottom:236.322533pt;}
.yb4{bottom:236.322667pt;}
.yfa{bottom:242.091600pt;}
.y138{bottom:244.122533pt;}
.y35{bottom:244.256000pt;}
.yae{bottom:244.753467pt;}
.y12{bottom:245.550667pt;}
.y92{bottom:245.553467pt;}
.y5b{bottom:248.953467pt;}
.ya5{bottom:248.953600pt;}
.y78{bottom:251.820133pt;}
.ye7{bottom:251.820400pt;}
.y125{bottom:254.566267pt;}
.y67{bottom:254.722533pt;}
.yb3{bottom:254.722667pt;}
.ycf{bottom:256.886800pt;}
.yf9{bottom:260.491600pt;}
.y137{bottom:262.522533pt;}
.y91{bottom:263.953467pt;}
.y5a{bottom:267.353467pt;}
.ya4{bottom:267.353733pt;}
.y11{bottom:269.550667pt;}
.y77{bottom:270.220133pt;}
.ye6{bottom:270.220400pt;}
.y124{bottom:272.966267pt;}
.yc9{bottom:273.122533pt;}
.yb2{bottom:273.122667pt;}
.yad{bottom:275.286800pt;}
.y136{bottom:280.922533pt;}
.y90{bottom:282.353467pt;}
.y34{bottom:282.353733pt;}
.y66{bottom:284.455867pt;}
.y59{bottom:285.753467pt;}
.ya3{bottom:285.753600pt;}
.ye5{bottom:288.620267pt;}
.yf8{bottom:290.224933pt;}
.y123{bottom:291.366267pt;}
.yc8{bottom:291.522533pt;}
.yb1{bottom:291.522667pt;}
.y10{bottom:293.550667pt;}
.y135{bottom:299.322533pt;}
.y76{bottom:299.953467pt;}
.y8f{bottom:300.753467pt;}
.y33{bottom:300.753600pt;}
.yfe{bottom:302.855867pt;}
.y58{bottom:304.153467pt;}
.ya2{bottom:304.153733pt;}
.ye4{bottom:307.020400pt;}
.y122{bottom:309.766267pt;}
.yc7{bottom:309.922533pt;}
.yb0{bottom:309.922667pt;}
.yf{bottom:317.550667pt;}
.y134{bottom:317.722533pt;}
.y8e{bottom:319.153467pt;}
.y32{bottom:319.153733pt;}
.y57{bottom:322.553467pt;}
.ya1{bottom:322.553733pt;}
.ye3{bottom:325.420267pt;}
.y121{bottom:328.166267pt;}
.yc6{bottom:328.322533pt;}
.ydd{bottom:328.322667pt;}
.y75{bottom:330.486800pt;}
.y133{bottom:336.122533pt;}
.y8d{bottom:337.553467pt;}
.y31{bottom:337.553733pt;}
.yaf{bottom:339.656000pt;}
.y56{bottom:340.953467pt;}
.ya0{bottom:340.953600pt;}
.ye{bottom:341.550667pt;}
.y120{bottom:346.566267pt;}
.yc5{bottom:346.722533pt;}
.ye2{bottom:355.153733pt;}
.y8c{bottom:355.953467pt;}
.y30{bottom:355.953600pt;}
.ydc{bottom:358.056000pt;}
.y55{bottom:359.353467pt;}
.y9f{bottom:359.353733pt;}
.y11f{bottom:364.966267pt;}
.yc4{bottom:365.122533pt;}
.yd{bottom:365.550667pt;}
.y132{bottom:365.855867pt;}
.y8b{bottom:374.353467pt;}
.y2f{bottom:374.353733pt;}
.y54{bottom:377.753467pt;}
.y9e{bottom:377.753600pt;}
.y11e{bottom:383.366267pt;}
.yc3{bottom:383.522533pt;}
.ye1{bottom:385.687067pt;}
.yc{bottom:389.550667pt;}
.y8a{bottom:392.753467pt;}
.y2e{bottom:392.753600pt;}
.y53{bottom:396.153467pt;}
.y9d{bottom:396.153733pt;}
.y11d{bottom:401.766267pt;}
.yc2{bottom:401.922533pt;}
.y89{bottom:411.153467pt;}
.y2d{bottom:411.153733pt;}
.yb{bottom:413.550667pt;}
.y52{bottom:414.553467pt;}
.y9c{bottom:414.553733pt;}
.y131{bottom:415.286800pt;}
.y11c{bottom:420.166267pt;}
.yc1{bottom:420.322533pt;}
.y88{bottom:429.553467pt;}
.y51{bottom:432.953467pt;}
.y9b{bottom:432.953600pt;}
.y130{bottom:436.086800pt;}
.ya{bottom:437.550667pt;}
.y11b{bottom:438.566267pt;}
.yc0{bottom:438.722533pt;}
.y2c{bottom:440.887067pt;}
.y87{bottom:447.953467pt;}
.y50{bottom:451.353467pt;}
.y9a{bottom:451.353733pt;}
.y12f{bottom:456.886800pt;}
.y11a{bottom:456.966267pt;}
.ybf{bottom:457.122533pt;}
.y9{bottom:461.550667pt;}
.y86{bottom:466.353467pt;}
.y4f{bottom:469.753467pt;}
.y99{bottom:469.753600pt;}
.y119{bottom:475.366267pt;}
.ybe{bottom:475.522533pt;}
.y12e{bottom:477.686800pt;}
.y85{bottom:484.753467pt;}
.y8{bottom:485.550667pt;}
.y4e{bottom:488.153467pt;}
.y2b{bottom:488.153600pt;}
.y118{bottom:493.766267pt;}
.ybd{bottom:493.922533pt;}
.y84{bottom:503.153467pt;}
.y4d{bottom:506.553467pt;}
.y2a{bottom:506.553733pt;}
.y117{bottom:512.166267pt;}
.ybc{bottom:512.322533pt;}
.y7{bottom:520.884000pt;}
.y83{bottom:521.553467pt;}
.y103{bottom:523.655867pt;}
.y4c{bottom:524.953467pt;}
.y29{bottom:524.953733pt;}
.y116{bottom:530.566267pt;}
.ybb{bottom:530.722533pt;}
.y82{bottom:539.953467pt;}
.y4b{bottom:543.353467pt;}
.y28{bottom:543.353733pt;}
.y115{bottom:548.966267pt;}
.yd6{bottom:549.122533pt;}
.y81{bottom:558.353467pt;}
.yba{bottom:560.455867pt;}
.y4a{bottom:561.753467pt;}
.y27{bottom:561.753600pt;}
.y114{bottom:567.366267pt;}
.yd5{bottom:567.522533pt;}
.y80{bottom:576.753467pt;}
.y6{bottom:577.381600pt;}
.y49{bottom:580.153467pt;}
.y26{bottom:580.153600pt;}
.y113{bottom:585.766267pt;}
.yd4{bottom:585.922533pt;}
.y48{bottom:598.553467pt;}
.y25{bottom:598.553733pt;}
.y5{bottom:604.048267pt;}
.y112{bottom:604.166267pt;}
.yd3{bottom:604.322533pt;}
.y7f{bottom:606.486800pt;}
.y47{bottom:616.953467pt;}
.y24{bottom:616.953733pt;}
.y111{bottom:622.566267pt;}
.yd2{bottom:622.722533pt;}
.y4{bottom:630.714933pt;}
.y46{bottom:635.353467pt;}
.y23{bottom:635.353733pt;}
.y110{bottom:640.966267pt;}
.yf7{bottom:641.122533pt;}
.yd1{bottom:652.455867pt;}
.y45{bottom:653.753467pt;}
.y22{bottom:653.753600pt;}
.y3{bottom:657.381600pt;}
.y10f{bottom:659.366267pt;}
.yf6{bottom:659.522533pt;}
.y44{bottom:672.153467pt;}
.y21{bottom:672.153600pt;}
.y10e{bottom:677.766267pt;}
.yf5{bottom:689.255867pt;}
.y43{bottom:690.553600pt;}
.y20{bottom:690.553733pt;}
.y10d{bottom:696.166267pt;}
.y2{bottom:702.448267pt;}
.y42{bottom:708.953467pt;}
.y1f{bottom:708.953733pt;}
.y10c{bottom:714.566267pt;}
.y1{bottom:720.848267pt;}
.y41{bottom:727.353467pt;}
.y1e{bottom:727.353733pt;}
.y10b{bottom:732.966267pt;}
.y40{bottom:745.753467pt;}
.y1d{bottom:745.753600pt;}
.y10a{bottom:751.366267pt;}
.y19{bottom:761.420667pt;}
.y3f{bottom:764.153467pt;}
.y1c{bottom:764.153600pt;}
.y18{bottom:781.099600pt;}
.y3e{bottom:782.553600pt;}
.y1b{bottom:782.553733pt;}
.y65{bottom:814.477600pt;}
.y3d{bottom:820.714133pt;}
.y64{bottom:827.677600pt;}
.hf{height:23.328000pt;}
.h12{height:23.615467pt;}
.hc{height:23.616000pt;}
.h10{height:36.300000pt;}
.hd{height:39.312000pt;}
.he{height:39.600000pt;}
.h8{height:44.000000pt;}
.h7{height:44.906667pt;}
.h4{height:45.568000pt;}
.hb{height:48.048000pt;}
.h2{height:50.232000pt;}
.ha{height:50.600000pt;}
.h5{height:52.416000pt;}
.h6{height:52.800000pt;}
.h11{height:53.888000pt;}
.h9{height:58.378667pt;}
.h3{height:71.850667pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:616.000000pt;}
.w0{width:616.062667pt;}
.x0{left:0.000000pt;}
.xa{left:75.663733pt;}
.x1{left:87.005600pt;}
.x2{left:89.953333pt;}
.x23{left:91.446800pt;}
.xc{left:94.488133pt;}
.xb{left:105.597067pt;}
.x3{left:106.608400pt;}
.x7{left:117.165333pt;}
.x24{left:120.131333pt;}
.x17{left:130.802667pt;}
.x4{left:135.141467pt;}
.x5{left:138.762533pt;}
.x21{left:147.335200pt;}
.x12{left:148.480133pt;}
.x22{left:150.979467pt;}
.x20{left:154.410400pt;}
.x14{left:167.295733pt;}
.x1d{left:169.288667pt;}
.x19{left:176.788133pt;}
.x15{left:179.940533pt;}
.x13{left:181.217733pt;}
.x18{left:183.420400pt;}
.x1f{left:186.580800pt;}
.x10{left:188.053600pt;}
.x1c{left:195.271333pt;}
.x16{left:200.842267pt;}
.x1a{left:204.282533pt;}
.x1e{left:209.111333pt;}
.x11{left:212.558400pt;}
.xd{left:236.099200pt;}
.xe{left:249.836667pt;}
.x1b{left:255.885067pt;}
.x25{left:264.556667pt;}
.x6{left:273.354933pt;}
.x26{left:281.330933pt;}
.x8{left:290.468533pt;}
.x9{left:424.902667pt;}
.xf{left:518.986000pt;}
}




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