
    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_e90cdb10f92daa4a2471a916.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.139160;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_0004fe09b52abc7230cd0217.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.188000;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_22aef7e288e8eb2833db9204.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.105469;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_f1574d791b7c52a8272e7a86.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.968750;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_699c025f36848533e7212211.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963379;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_79df49959f554ab145458ed7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.770020;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_f9d4f973927d11c5ec2cb26d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.026367;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_daa5fc1623daa3b61d72b25c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fecdc34d6b0a561b39ba6d3a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.957000;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_67ef8373754fce35f5753962.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.784000;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_5c7bdbfd86affab6c3cdae9d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.027344;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_11836b330e5696ea5719218e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.185000;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_07cbc2dd900ca7a525ac60eb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.976615;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:-17.982000px;}
.v3{vertical-align:-2.835000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls6{letter-spacing:-3.366000px;}
.ls7{letter-spacing:-1.836000px;}
.ls8{letter-spacing:-0.924000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005772px;}
.ls9{letter-spacing:0.009600px;}
.ls2{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.900000px;}
.ls3{letter-spacing:2.520000px;}
.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;}
}
.ws6a{word-spacing:-28.560000px;}
.ws24{word-spacing:-25.194000px;}
.ws8e{word-spacing:-22.596000px;}
.ws58{word-spacing:-19.296000px;}
.ws18{word-spacing:-17.700000px;}
.ws7e{word-spacing:-17.352000px;}
.ws5{word-spacing:-17.340000px;}
.ws19{word-spacing:-14.940000px;}
.wsa0{word-spacing:-14.580000px;}
.ws8f{word-spacing:-14.460000px;}
.ws0{word-spacing:-13.122000px;}
.ws2{word-spacing:-11.952000px;}
.ws3{word-spacing:-11.904000px;}
.ws4{word-spacing:-11.664000px;}
.ws1a{word-spacing:-11.568000px;}
.ws1{word-spacing:-8.675040px;}
.wsa3{word-spacing:-8.040000px;}
.wsa4{word-spacing:-7.920000px;}
.ws3d{word-spacing:-3.456000px;}
.ws48{word-spacing:-3.240000px;}
.ws96{word-spacing:-3.096000px;}
.ws46{word-spacing:-3.024000px;}
.ws37{word-spacing:-2.952000px;}
.ws6f{word-spacing:-2.808000px;}
.ws65{word-spacing:-2.736000px;}
.ws8b{word-spacing:-2.664000px;}
.wsbc{word-spacing:-2.640000px;}
.wsb0{word-spacing:-2.580000px;}
.ws8{word-spacing:-2.520000px;}
.ws1c{word-spacing:-2.400000px;}
.ws7c{word-spacing:-2.232000px;}
.ws3f{word-spacing:-2.160000px;}
.wsbb{word-spacing:-2.040000px;}
.ws93{word-spacing:-2.016000px;}
.ws2b{word-spacing:-1.944000px;}
.ws55{word-spacing:-1.872000px;}
.ws27{word-spacing:-1.800000px;}
.wsb4{word-spacing:-1.740000px;}
.ws47{word-spacing:-1.728000px;}
.ws30{word-spacing:-1.656000px;}
.ws80{word-spacing:-1.584000px;}
.wsb8{word-spacing:-1.560000px;}
.ws5e{word-spacing:-1.440000px;}
.wsa5{word-spacing:-1.200000px;}
.ws4b{word-spacing:-1.152000px;}
.wsaf{word-spacing:-1.140000px;}
.ws50{word-spacing:-1.008000px;}
.ws35{word-spacing:-0.936000px;}
.ws88{word-spacing:-0.864000px;}
.ws38{word-spacing:-0.720000px;}
.wsaa{word-spacing:-0.600000px;}
.ws6e{word-spacing:-0.576000px;}
.ws9{word-spacing:-0.540000px;}
.ws78{word-spacing:-0.504000px;}
.ws7{word-spacing:-0.480000px;}
.ws3c{word-spacing:-0.432000px;}
.ws29{word-spacing:-0.360000px;}
.ws4a{word-spacing:-0.288000px;}
.ws70{word-spacing:-0.216000px;}
.ws1d{word-spacing:-0.180000px;}
.ws5f{word-spacing:-0.144000px;}
.ws6{word-spacing:0.000000px;}
.ws23{word-spacing:0.060000px;}
.ws7f{word-spacing:0.072000px;}
.wsad{word-spacing:0.120000px;}
.ws6c{word-spacing:0.144000px;}
.ws52{word-spacing:0.216000px;}
.ws9f{word-spacing:0.240000px;}
.ws53{word-spacing:0.288000px;}
.ws4e{word-spacing:0.360000px;}
.ws28{word-spacing:0.432000px;}
.ws71{word-spacing:0.504000px;}
.wsac{word-spacing:0.540000px;}
.ws2f{word-spacing:0.648000px;}
.ws60{word-spacing:0.720000px;}
.ws11{word-spacing:0.780000px;}
.ws82{word-spacing:0.792000px;}
.ws89{word-spacing:0.864000px;}
.ws79{word-spacing:0.936000px;}
.ws99{word-spacing:0.960000px;}
.wsae{word-spacing:1.140000px;}
.ws26{word-spacing:1.152000px;}
.wsa9{word-spacing:1.260000px;}
.ws62{word-spacing:1.368000px;}
.ws39{word-spacing:1.440000px;}
.wsa{word-spacing:1.500000px;}
.ws66{word-spacing:1.512000px;}
.wsd{word-spacing:1.560000px;}
.ws57{word-spacing:1.584000px;}
.ws83{word-spacing:1.656000px;}
.ws98{word-spacing:1.680000px;}
.wsb6{word-spacing:1.740000px;}
.ws3e{word-spacing:1.800000px;}
.ws59{word-spacing:1.836000px;}
.ws9e{word-spacing:1.860000px;}
.ws9a{word-spacing:1.920000px;}
.ws32{word-spacing:1.944000px;}
.wsb{word-spacing:1.980000px;}
.ws6b{word-spacing:2.016000px;}
.wsb9{word-spacing:2.100000px;}
.wsb1{word-spacing:2.160000px;}
.ws2a{word-spacing:2.232000px;}
.ws1b{word-spacing:2.280000px;}
.ws84{word-spacing:2.304000px;}
.ws68{word-spacing:2.376000px;}
.ws1f{word-spacing:2.400000px;}
.ws67{word-spacing:2.448000px;}
.ws72{word-spacing:2.520000px;}
.ws54{word-spacing:2.664000px;}
.wsb2{word-spacing:2.700000px;}
.wsf{word-spacing:2.760000px;}
.ws7b{word-spacing:2.880000px;}
.ws13{word-spacing:2.940000px;}
.ws5b{word-spacing:2.952000px;}
.wsc{word-spacing:3.000000px;}
.wsb7{word-spacing:3.060000px;}
.ws2d{word-spacing:3.096000px;}
.ws75{word-spacing:3.168000px;}
.ws45{word-spacing:3.240000px;}
.ws4f{word-spacing:3.312000px;}
.ws2c{word-spacing:3.456000px;}
.ws7a{word-spacing:3.600000px;}
.ws5c{word-spacing:3.744000px;}
.wsab{word-spacing:3.780000px;}
.ws5a{word-spacing:3.816000px;}
.ws85{word-spacing:3.888000px;}
.ws22{word-spacing:3.900000px;}
.ws8a{word-spacing:4.176000px;}
.ws8d{word-spacing:4.248000px;}
.ws73{word-spacing:4.320000px;}
.ws97{word-spacing:4.440000px;}
.ws43{word-spacing:4.608000px;}
.ws3b{word-spacing:4.680000px;}
.ws21{word-spacing:4.740000px;}
.ws92{word-spacing:4.896000px;}
.ws61{word-spacing:4.968000px;}
.ws16{word-spacing:4.980000px;}
.ws76{word-spacing:5.112000px;}
.ws40{word-spacing:5.184000px;}
.wse{word-spacing:5.280000px;}
.ws7d{word-spacing:5.472000px;}
.wsb3{word-spacing:5.520000px;}
.ws12{word-spacing:5.640000px;}
.ws8c{word-spacing:5.688000px;}
.wsb5{word-spacing:5.700000px;}
.ws20{word-spacing:5.760000px;}
.ws44{word-spacing:5.832000px;}
.ws14{word-spacing:5.880000px;}
.ws77{word-spacing:5.904000px;}
.ws6d{word-spacing:5.976000px;}
.ws4d{word-spacing:6.192000px;}
.ws36{word-spacing:6.264000px;}
.ws17{word-spacing:6.360000px;}
.wsba{word-spacing:6.420000px;}
.wsa8{word-spacing:6.600000px;}
.ws10{word-spacing:6.720000px;}
.ws33{word-spacing:6.768000px;}
.wsa6{word-spacing:6.780000px;}
.ws51{word-spacing:6.912000px;}
.ws64{word-spacing:7.056000px;}
.ws2e{word-spacing:7.128000px;}
.ws49{word-spacing:7.272000px;}
.ws90{word-spacing:7.344000px;}
.wsa7{word-spacing:7.440000px;}
.ws34{word-spacing:7.488000px;}
.ws1e{word-spacing:7.500000px;}
.ws3a{word-spacing:7.632000px;}
.ws9d{word-spacing:7.740000px;}
.ws63{word-spacing:7.776000px;}
.ws9c{word-spacing:7.800000px;}
.ws94{word-spacing:7.992000px;}
.ws86{word-spacing:8.136000px;}
.ws9b{word-spacing:8.340000px;}
.ws41{word-spacing:8.424000px;}
.ws91{word-spacing:8.568000px;}
.ws25{word-spacing:8.712000px;}
.ws42{word-spacing:8.784000px;}
.ws15{word-spacing:9.060000px;}
.ws4c{word-spacing:9.072000px;}
.ws69{word-spacing:9.144000px;}
.ws31{word-spacing:9.216000px;}
.ws81{word-spacing:10.008000px;}
.ws95{word-spacing:10.296000px;}
.wsa2{word-spacing:11.820000px;}
.wsa1{word-spacing:11.940000px;}
.ws5d{word-spacing:11.952000px;}
.ws74{word-spacing:12.096000px;}
.ws56{word-spacing:12.168000px;}
.ws87{word-spacing:13.608000px;}
._9{margin-left:-11.617800px;}
._6{margin-left:-10.068000px;}
._5{margin-left:-8.712000px;}
._13{margin-left:-7.225800px;}
._0{margin-left:-5.859000px;}
._3{margin-left:-3.804000px;}
._2{margin-left:-2.292000px;}
._4{margin-left:-1.236000px;}
._1{width:1.392000px;}
._8{width:2.568000px;}
._7{width:4.452000px;}
._f{width:6.120000px;}
._10{width:8.164800px;}
._d{width:9.172800px;}
._e{width:10.271400px;}
._c{width:16.221600px;}
._11{width:315.723000px;}
._12{width:351.787200px;}
._a{width:454.020000px;}
._b{width:630.078000px;}
.fc3{color:rgb(157,44,63);}
.fc1{color:rgb(35,31,32);}
.fc2{color:rgb(129,178,49);}
.fc0{color:rgb(101,98,99);}
.fs6{font-size:31.482000px;}
.fs4{font-size:34.980000px;}
.fs5{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.fs8{font-size:102.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:50.527500px;}
.y1{bottom:52.591500px;}
.y36{bottom:52.653600px;}
.y35{bottom:53.249550px;}
.yfc{bottom:103.807050px;}
.y76{bottom:107.137650px;}
.y12d{bottom:115.629750px;}
.y15f{bottom:117.501900px;}
.y4c{bottom:118.504950px;}
.ye5{bottom:123.023550px;}
.yc2{bottom:123.141600px;}
.yfb{bottom:127.807050px;}
.y75{bottom:131.137650px;}
.y4b{bottom:135.004950px;}
.y12c{bottom:135.129750px;}
.y15e{bottom:141.253950px;}
.ye4{bottom:147.023550px;}
.yc1{bottom:147.141600px;}
.y4a{bottom:151.504950px;}
.yfa{bottom:151.807050px;}
.y12b{bottom:154.629750px;}
.y74{bottom:155.137650px;}
.y15d{bottom:160.753950px;}
.y49{bottom:170.131050px;}
.ye3{bottom:171.023550px;}
.yc0{bottom:171.141600px;}
.yf9{bottom:175.807050px;}
.y12a{bottom:178.381800px;}
.y73{bottom:179.137650px;}
.y15c{bottom:184.505700px;}
.ye2{bottom:195.023550px;}
.ybf{bottom:195.141600px;}
.y129{bottom:197.881800px;}
.yf8{bottom:199.807050px;}
.y72{bottom:203.137650px;}
.y15b{bottom:204.005700px;}
.y128{bottom:217.381800px;}
.y9b{bottom:217.535400px;}
.ye1{bottom:219.023550px;}
.ybe{bottom:219.141600px;}
.y15a{bottom:223.505700px;}
.y34{bottom:225.187800px;}
.y71{bottom:227.137650px;}
.y127{bottom:241.133700px;}
.y9a{bottom:241.535400px;}
.y159{bottom:243.005700px;}
.ye0{bottom:243.023550px;}
.ybd{bottom:243.141600px;}
.y70{bottom:251.137650px;}
.y33{bottom:254.189850px;}
.y126{bottom:260.633700px;}
.y99{bottom:265.535400px;}
.y158{bottom:266.757750px;}
.ydf{bottom:267.023550px;}
.ybc{bottom:267.141600px;}
.y32{bottom:272.189850px;}
.y6f{bottom:275.137650px;}
.y125{bottom:280.133700px;}
.y157{bottom:286.257750px;}
.y98{bottom:289.535400px;}
.y31{bottom:290.189850px;}
.yde{bottom:291.023550px;}
.ybb{bottom:291.141600px;}
.y6e{bottom:299.137650px;}
.y124{bottom:299.633700px;}
.y156{bottom:305.757750px;}
.y30{bottom:308.189850px;}
.y97{bottom:313.535400px;}
.ydd{bottom:315.023550px;}
.yba{bottom:315.141600px;}
.y123{bottom:319.133700px;}
.y155{bottom:325.257750px;}
.y2f{bottom:326.189850px;}
.y6d{bottom:331.387650px;}
.y96{bottom:337.535400px;}
.yb9{bottom:339.141600px;}
.y2e{bottom:344.189850px;}
.y122{bottom:347.137650px;}
.ydc{bottom:348.023550px;}
.y154{bottom:349.009800px;}
.y95{bottom:361.535400px;}
.y2d{bottom:362.189850px;}
.yb8{bottom:363.141600px;}
.y1f{bottom:365.256000px;}
.y153{bottom:368.509800px;}
.ydb{bottom:372.023550px;}
.y2c{bottom:380.189850px;}
.y6c{bottom:381.637650px;}
.y1e{bottom:381.756000px;}
.yb7{bottom:387.141600px;}
.y152{bottom:388.009800px;}
.y114{bottom:393.212550px;}
.y94{bottom:394.535400px;}
.yda{bottom:396.023550px;}
.y2b{bottom:398.189850px;}
.y1d{bottom:398.256000px;}
.y6b{bottom:405.637650px;}
.yb6{bottom:411.141600px;}
.y151{bottom:411.761700px;}
.y2a{bottom:416.189850px;}
.y1c{bottom:416.881950px;}
.y93{bottom:418.535400px;}
.yd9{bottom:420.023550px;}
.y6a{bottom:429.637650px;}
.y150{bottom:431.261700px;}
.y29{bottom:434.189850px;}
.y1b{bottom:442.511850px;}
.y92{bottom:442.535400px;}
.yd8{bottom:444.023550px;}
.yb5{bottom:444.141600px;}
.y113{bottom:450.212550px;}
.y14f{bottom:450.761700px;}
.y28{bottom:452.189850px;}
.y69{bottom:453.637650px;}
.y1a{bottom:459.011850px;}
.y91{bottom:466.535400px;}
.yd7{bottom:468.023550px;}
.yb4{bottom:468.141600px;}
.y110{bottom:472.056450px;}
.y27{bottom:474.441750px;}
.y14e{bottom:474.513750px;}
.y19{bottom:475.511850px;}
.y68{bottom:477.637650px;}
.y90{bottom:490.535400px;}
.yd6{bottom:492.023550px;}
.yb3{bottom:492.141600px;}
.y26{bottom:492.441750px;}
.y14d{bottom:494.013750px;}
.y18{bottom:494.137800px;}
.y67{bottom:501.637650px;}
.y25{bottom:510.441750px;}
.y8f{bottom:514.535400px;}
.yd5{bottom:516.023550px;}
.yb2{bottom:516.141600px;}
.y14c{bottom:517.765650px;}
.y17{bottom:519.767700px;}
.yf7{bottom:522.035400px;}
.y66{bottom:525.637650px;}
.y24{bottom:528.441750px;}
.y14b{bottom:537.265650px;}
.y16{bottom:538.393650px;}
.y8e{bottom:538.535400px;}
.yd4{bottom:540.023550px;}
.yb1{bottom:540.141600px;}
.yf6{bottom:546.035400px;}
.y23{bottom:546.441750px;}
.y65{bottom:549.637650px;}
.y15{bottom:557.019750px;}
.y14a{bottom:561.017550px;}
.yd3{bottom:564.023550px;}
.yb0{bottom:564.141600px;}
.y10e{bottom:567.602400px;}
.yf5{bottom:570.035400px;}
.y8d{bottom:570.785400px;}
.y22{bottom:572.945700px;}
.y64{bottom:573.637650px;}
.y14{bottom:575.645700px;}
.y149{bottom:580.517550px;}
.yd2{bottom:588.023550px;}
.yaf{bottom:588.141600px;}
.y10d{bottom:591.602400px;}
.yf4{bottom:594.035400px;}
.y63{bottom:597.637650px;}
.y148{bottom:604.269600px;}
.yd1{bottom:612.023550px;}
.yae{bottom:612.141600px;}
.y10c{bottom:615.602400px;}
.yf3{bottom:618.035400px;}
.y8c{bottom:621.035400px;}
.y62{bottom:621.637650px;}
.y147{bottom:623.769600px;}
.yd0{bottom:636.023550px;}
.yad{bottom:636.141600px;}
.y13{bottom:639.198600px;}
.y10b{bottom:639.602400px;}
.y8b{bottom:645.035400px;}
.y61{bottom:645.637650px;}
.y146{bottom:647.521500px;}
.yf2{bottom:650.285400px;}
.y12{bottom:657.824550px;}
.ycf{bottom:660.023550px;}
.yac{bottom:660.141600px;}
.y10a{bottom:663.602400px;}
.y145{bottom:667.021500px;}
.y8a{bottom:669.035400px;}
.y60{bottom:669.637650px;}
.yf1{bottom:674.285400px;}
.y11{bottom:676.450500px;}
.y121{bottom:678.637650px;}
.yce{bottom:684.023550px;}
.y144{bottom:686.521500px;}
.y109{bottom:687.602400px;}
.yab{bottom:692.391600px;}
.y89{bottom:693.035400px;}
.y5f{bottom:693.637650px;}
.y10{bottom:695.076600px;}
.y120{bottom:702.637650px;}
.y143{bottom:706.021500px;}
.ycd{bottom:708.023550px;}
.y108{bottom:711.602400px;}
.y88{bottom:717.035400px;}
.y5e{bottom:717.637650px;}
.yf{bottom:723.076050px;}
.yf0{bottom:723.785400px;}
.y142{bottom:725.521500px;}
.y11f{bottom:726.637650px;}
.ycc{bottom:732.023550px;}
.ye{bottom:739.332450px;}
.y87{bottom:741.035400px;}
.y5d{bottom:741.637650px;}
.yaa{bottom:742.145550px;}
.yef{bottom:747.785400px;}
.y141{bottom:749.273550px;}
.y11e{bottom:750.637650px;}
.y107{bottom:752.102400px;}
.yd{bottom:760.327950px;}
.ycb{bottom:765.023550px;}
.y86{bottom:765.035400px;}
.y5c{bottom:765.637650px;}
.ya9{bottom:766.145550px;}
.y140{bottom:768.773550px;}
.y101{bottom:772.160700px;}
.y11d{bottom:774.637650px;}
.yc{bottom:776.584500px;}
.yee{bottom:780.035400px;}
.y13f{bottom:788.273550px;}
.yca{bottom:789.023550px;}
.y85{bottom:789.035400px;}
.y5b{bottom:789.637650px;}
.ya8{bottom:790.145550px;}
.yb{bottom:797.580000px;}
.y11c{bottom:798.637650px;}
.yed{bottom:804.785400px;}
.y13e{bottom:807.773550px;}
.yc9{bottom:813.023550px;}
.y84{bottom:813.035400px;}
.ya7{bottom:814.145550px;}
.y5a{bottom:822.637650px;}
.y13d{bottom:827.273550px;}
.ya{bottom:830.844300px;}
.yc8{bottom:837.023550px;}
.ya6{bottom:838.145550px;}
.y83{bottom:846.035400px;}
.y59{bottom:846.637650px;}
.y13c{bottom:846.773550px;}
.yec{bottom:855.035400px;}
.y9{bottom:857.348100px;}
.yc7{bottom:861.023550px;}
.ya5{bottom:862.145550px;}
.y48{bottom:868.823550px;}
.y82{bottom:870.035400px;}
.y13b{bottom:870.525450px;}
.y58{bottom:870.637650px;}
.yeb{bottom:879.035400px;}
.y11b{bottom:879.637650px;}
.y8{bottom:883.852050px;}
.yc6{bottom:885.023550px;}
.ya4{bottom:886.145550px;}
.y81{bottom:894.035400px;}
.y13a{bottom:894.277500px;}
.y57{bottom:894.637650px;}
.y47{bottom:898.079400px;}
.y10f{bottom:901.025550px;}
.y16a{bottom:902.781450px;}
.yea{bottom:903.035400px;}
.y11a{bottom:903.637650px;}
.ya3{bottom:910.145550px;}
.y139{bottom:913.777500px;}
.y46{bottom:916.079400px;}
.yc5{bottom:917.273550px;}
.y80{bottom:918.035400px;}
.y56{bottom:918.637650px;}
.y169{bottom:922.281450px;}
.y7{bottom:923.111850px;}
.ye9{bottom:927.035400px;}
.y119{bottom:927.637650px;}
.y45{bottom:934.079400px;}
.ya2{bottom:934.145550px;}
.y138{bottom:937.529550px;}
.y168{bottom:941.781450px;}
.y7f{bottom:942.035400px;}
.y55{bottom:942.637650px;}
.y6{bottom:948.611850px;}
.y106{bottom:949.346400px;}
.ye8{bottom:951.035400px;}
.y118{bottom:951.637650px;}
.y44{bottom:952.079400px;}
.y137{bottom:957.029550px;}
.yc4{bottom:958.523550px;}
.y167{bottom:961.281450px;}
.y105{bottom:964.346400px;}
.y7e{bottom:966.035400px;}
.y54{bottom:966.637650px;}
.ya1{bottom:967.145550px;}
.y43{bottom:970.079400px;}
.ye7{bottom:975.035400px;}
.y117{bottom:975.637650px;}
.y136{bottom:976.529550px;}
.y104{bottom:979.346400px;}
.y166{bottom:980.781450px;}
.y5{bottom:982.615800px;}
.y42{bottom:988.079400px;}
.y7d{bottom:990.035400px;}
.y53{bottom:990.637650px;}
.ya0{bottom:991.145550px;}
.y103{bottom:994.346400px;}
.y135{bottom:996.029550px;}
.ye6{bottom:999.035400px;}
.y116{bottom:999.637650px;}
.y165{bottom:1004.533500px;}
.y41{bottom:1006.079400px;}
.y102{bottom:1009.346400px;}
.y7c{bottom:1014.035400px;}
.y52{bottom:1014.637650px;}
.y9f{bottom:1015.145550px;}
.y4{bottom:1018.615800px;}
.y134{bottom:1019.781450px;}
.yc3{bottom:1023.035400px;}
.y115{bottom:1023.637650px;}
.y164{bottom:1024.033500px;}
.y40{bottom:1024.079400px;}
.y100{bottom:1038.785400px;}
.y9e{bottom:1039.145550px;}
.y133{bottom:1039.281450px;}
.y3f{bottom:1042.079400px;}
.y7b{bottom:1047.035400px;}
.y51{bottom:1047.637650px;}
.y163{bottom:1047.785400px;}
.y3{bottom:1054.615800px;}
.y132{bottom:1058.781450px;}
.yff{bottom:1062.785400px;}
.y9d{bottom:1063.145550px;}
.y3e{bottom:1064.331450px;}
.y162{bottom:1067.285400px;}
.y7a{bottom:1071.035400px;}
.y50{bottom:1071.637650px;}
.y131{bottom:1078.281450px;}
.y3d{bottom:1082.331450px;}
.yfe{bottom:1086.785400px;}
.y2{bottom:1090.615800px;}
.y79{bottom:1095.035400px;}
.y9c{bottom:1095.395550px;}
.y4f{bottom:1095.637650px;}
.y20{bottom:1097.052000px;}
.y3c{bottom:1100.331450px;}
.y130{bottom:1102.033500px;}
.y161{bottom:1106.285400px;}
.yfd{bottom:1110.785400px;}
.y3b{bottom:1118.331450px;}
.y78{bottom:1119.035400px;}
.y12f{bottom:1121.533500px;}
.y112{bottom:1121.905500px;}
.y160{bottom:1125.785400px;}
.y4e{bottom:1136.645550px;}
.y111{bottom:1136.905500px;}
.y77{bottom:1143.035400px;}
.y3a{bottom:1144.835400px;}
.y12e{bottom:1145.285400px;}
.y38{bottom:1172.887500px;}
.y37{bottom:1187.287500px;}
.y4d{bottom:1199.055150px;}
.y21{bottom:1205.884050px;}
.h7{height:31.139470px;}
.h6{height:31.140070px;}
.h8{height:36.000000px;}
.hb{height:36.492188px;}
.hc{height:38.250000px;}
.h16{height:38.273438px;}
.h10{height:40.338000px;}
.ha{height:43.312500px;}
.h9{height:43.664062px;}
.he{height:46.020000px;}
.h18{height:47.812500px;}
.h19{height:47.841797px;}
.h2{height:49.122070px;}
.hf{height:52.320000px;}
.h5{height:54.140625px;}
.hd{height:54.580078px;}
.h13{height:57.375000px;}
.h15{height:57.410156px;}
.h14{height:62.568000px;}
.h12{height:65.496094px;}
.h17{height:73.248000px;}
.h4{height:81.870117px;}
.h11{height:88.944000px;}
.h3{height:104.640000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:47.474550px;}
.x5{left:61.386750px;}
.x3{left:75.796200px;}
.x6{left:119.055150px;}
.x7{left:131.811000px;}
.xa{left:161.574750px;}
.x1{left:238.110300px;}
.x9{left:535.747950px;}
.x8{left:731.338650px;}
.x4{left:816.378000px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v3{vertical-align:-2.520000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls6{letter-spacing:-2.992000pt;}
.ls7{letter-spacing:-1.632000pt;}
.ls8{letter-spacing:-0.821333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005131pt;}
.ls9{letter-spacing:0.008533pt;}
.ls2{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.800000pt;}
.ls3{letter-spacing:2.240000pt;}
.ws6a{word-spacing:-25.386667pt;}
.ws24{word-spacing:-22.394667pt;}
.ws8e{word-spacing:-20.085333pt;}
.ws58{word-spacing:-17.152000pt;}
.ws18{word-spacing:-15.733333pt;}
.ws7e{word-spacing:-15.424000pt;}
.ws5{word-spacing:-15.413333pt;}
.ws19{word-spacing:-13.280000pt;}
.wsa0{word-spacing:-12.960000pt;}
.ws8f{word-spacing:-12.853333pt;}
.ws0{word-spacing:-11.664000pt;}
.ws2{word-spacing:-10.624000pt;}
.ws3{word-spacing:-10.581333pt;}
.ws4{word-spacing:-10.368000pt;}
.ws1a{word-spacing:-10.282667pt;}
.ws1{word-spacing:-7.711147pt;}
.wsa3{word-spacing:-7.146667pt;}
.wsa4{word-spacing:-7.040000pt;}
.ws3d{word-spacing:-3.072000pt;}
.ws48{word-spacing:-2.880000pt;}
.ws96{word-spacing:-2.752000pt;}
.ws46{word-spacing:-2.688000pt;}
.ws37{word-spacing:-2.624000pt;}
.ws6f{word-spacing:-2.496000pt;}
.ws65{word-spacing:-2.432000pt;}
.ws8b{word-spacing:-2.368000pt;}
.wsbc{word-spacing:-2.346667pt;}
.wsb0{word-spacing:-2.293333pt;}
.ws8{word-spacing:-2.240000pt;}
.ws1c{word-spacing:-2.133333pt;}
.ws7c{word-spacing:-1.984000pt;}
.ws3f{word-spacing:-1.920000pt;}
.wsbb{word-spacing:-1.813333pt;}
.ws93{word-spacing:-1.792000pt;}
.ws2b{word-spacing:-1.728000pt;}
.ws55{word-spacing:-1.664000pt;}
.ws27{word-spacing:-1.600000pt;}
.wsb4{word-spacing:-1.546667pt;}
.ws47{word-spacing:-1.536000pt;}
.ws30{word-spacing:-1.472000pt;}
.ws80{word-spacing:-1.408000pt;}
.wsb8{word-spacing:-1.386667pt;}
.ws5e{word-spacing:-1.280000pt;}
.wsa5{word-spacing:-1.066667pt;}
.ws4b{word-spacing:-1.024000pt;}
.wsaf{word-spacing:-1.013333pt;}
.ws50{word-spacing:-0.896000pt;}
.ws35{word-spacing:-0.832000pt;}
.ws88{word-spacing:-0.768000pt;}
.ws38{word-spacing:-0.640000pt;}
.wsaa{word-spacing:-0.533333pt;}
.ws6e{word-spacing:-0.512000pt;}
.ws9{word-spacing:-0.480000pt;}
.ws78{word-spacing:-0.448000pt;}
.ws7{word-spacing:-0.426667pt;}
.ws3c{word-spacing:-0.384000pt;}
.ws29{word-spacing:-0.320000pt;}
.ws4a{word-spacing:-0.256000pt;}
.ws70{word-spacing:-0.192000pt;}
.ws1d{word-spacing:-0.160000pt;}
.ws5f{word-spacing:-0.128000pt;}
.ws6{word-spacing:0.000000pt;}
.ws23{word-spacing:0.053333pt;}
.ws7f{word-spacing:0.064000pt;}
.wsad{word-spacing:0.106667pt;}
.ws6c{word-spacing:0.128000pt;}
.ws52{word-spacing:0.192000pt;}
.ws9f{word-spacing:0.213333pt;}
.ws53{word-spacing:0.256000pt;}
.ws4e{word-spacing:0.320000pt;}
.ws28{word-spacing:0.384000pt;}
.ws71{word-spacing:0.448000pt;}
.wsac{word-spacing:0.480000pt;}
.ws2f{word-spacing:0.576000pt;}
.ws60{word-spacing:0.640000pt;}
.ws11{word-spacing:0.693333pt;}
.ws82{word-spacing:0.704000pt;}
.ws89{word-spacing:0.768000pt;}
.ws79{word-spacing:0.832000pt;}
.ws99{word-spacing:0.853333pt;}
.wsae{word-spacing:1.013333pt;}
.ws26{word-spacing:1.024000pt;}
.wsa9{word-spacing:1.120000pt;}
.ws62{word-spacing:1.216000pt;}
.ws39{word-spacing:1.280000pt;}
.wsa{word-spacing:1.333333pt;}
.ws66{word-spacing:1.344000pt;}
.wsd{word-spacing:1.386667pt;}
.ws57{word-spacing:1.408000pt;}
.ws83{word-spacing:1.472000pt;}
.ws98{word-spacing:1.493333pt;}
.wsb6{word-spacing:1.546667pt;}
.ws3e{word-spacing:1.600000pt;}
.ws59{word-spacing:1.632000pt;}
.ws9e{word-spacing:1.653333pt;}
.ws9a{word-spacing:1.706667pt;}
.ws32{word-spacing:1.728000pt;}
.wsb{word-spacing:1.760000pt;}
.ws6b{word-spacing:1.792000pt;}
.wsb9{word-spacing:1.866667pt;}
.wsb1{word-spacing:1.920000pt;}
.ws2a{word-spacing:1.984000pt;}
.ws1b{word-spacing:2.026667pt;}
.ws84{word-spacing:2.048000pt;}
.ws68{word-spacing:2.112000pt;}
.ws1f{word-spacing:2.133333pt;}
.ws67{word-spacing:2.176000pt;}
.ws72{word-spacing:2.240000pt;}
.ws54{word-spacing:2.368000pt;}
.wsb2{word-spacing:2.400000pt;}
.wsf{word-spacing:2.453333pt;}
.ws7b{word-spacing:2.560000pt;}
.ws13{word-spacing:2.613333pt;}
.ws5b{word-spacing:2.624000pt;}
.wsc{word-spacing:2.666667pt;}
.wsb7{word-spacing:2.720000pt;}
.ws2d{word-spacing:2.752000pt;}
.ws75{word-spacing:2.816000pt;}
.ws45{word-spacing:2.880000pt;}
.ws4f{word-spacing:2.944000pt;}
.ws2c{word-spacing:3.072000pt;}
.ws7a{word-spacing:3.200000pt;}
.ws5c{word-spacing:3.328000pt;}
.wsab{word-spacing:3.360000pt;}
.ws5a{word-spacing:3.392000pt;}
.ws85{word-spacing:3.456000pt;}
.ws22{word-spacing:3.466667pt;}
.ws8a{word-spacing:3.712000pt;}
.ws8d{word-spacing:3.776000pt;}
.ws73{word-spacing:3.840000pt;}
.ws97{word-spacing:3.946667pt;}
.ws43{word-spacing:4.096000pt;}
.ws3b{word-spacing:4.160000pt;}
.ws21{word-spacing:4.213333pt;}
.ws92{word-spacing:4.352000pt;}
.ws61{word-spacing:4.416000pt;}
.ws16{word-spacing:4.426667pt;}
.ws76{word-spacing:4.544000pt;}
.ws40{word-spacing:4.608000pt;}
.wse{word-spacing:4.693333pt;}
.ws7d{word-spacing:4.864000pt;}
.wsb3{word-spacing:4.906667pt;}
.ws12{word-spacing:5.013333pt;}
.ws8c{word-spacing:5.056000pt;}
.wsb5{word-spacing:5.066667pt;}
.ws20{word-spacing:5.120000pt;}
.ws44{word-spacing:5.184000pt;}
.ws14{word-spacing:5.226667pt;}
.ws77{word-spacing:5.248000pt;}
.ws6d{word-spacing:5.312000pt;}
.ws4d{word-spacing:5.504000pt;}
.ws36{word-spacing:5.568000pt;}
.ws17{word-spacing:5.653333pt;}
.wsba{word-spacing:5.706667pt;}
.wsa8{word-spacing:5.866667pt;}
.ws10{word-spacing:5.973333pt;}
.ws33{word-spacing:6.016000pt;}
.wsa6{word-spacing:6.026667pt;}
.ws51{word-spacing:6.144000pt;}
.ws64{word-spacing:6.272000pt;}
.ws2e{word-spacing:6.336000pt;}
.ws49{word-spacing:6.464000pt;}
.ws90{word-spacing:6.528000pt;}
.wsa7{word-spacing:6.613333pt;}
.ws34{word-spacing:6.656000pt;}
.ws1e{word-spacing:6.666667pt;}
.ws3a{word-spacing:6.784000pt;}
.ws9d{word-spacing:6.880000pt;}
.ws63{word-spacing:6.912000pt;}
.ws9c{word-spacing:6.933333pt;}
.ws94{word-spacing:7.104000pt;}
.ws86{word-spacing:7.232000pt;}
.ws9b{word-spacing:7.413333pt;}
.ws41{word-spacing:7.488000pt;}
.ws91{word-spacing:7.616000pt;}
.ws25{word-spacing:7.744000pt;}
.ws42{word-spacing:7.808000pt;}
.ws15{word-spacing:8.053333pt;}
.ws4c{word-spacing:8.064000pt;}
.ws69{word-spacing:8.128000pt;}
.ws31{word-spacing:8.192000pt;}
.ws81{word-spacing:8.896000pt;}
.ws95{word-spacing:9.152000pt;}
.wsa2{word-spacing:10.506667pt;}
.wsa1{word-spacing:10.613333pt;}
.ws5d{word-spacing:10.624000pt;}
.ws74{word-spacing:10.752000pt;}
.ws56{word-spacing:10.816000pt;}
.ws87{word-spacing:12.096000pt;}
._9{margin-left:-10.326933pt;}
._6{margin-left:-8.949333pt;}
._5{margin-left:-7.744000pt;}
._13{margin-left:-6.422933pt;}
._0{margin-left:-5.208000pt;}
._3{margin-left:-3.381333pt;}
._2{margin-left:-2.037333pt;}
._4{margin-left:-1.098667pt;}
._1{width:1.237333pt;}
._8{width:2.282667pt;}
._7{width:3.957333pt;}
._f{width:5.440000pt;}
._10{width:7.257600pt;}
._d{width:8.153600pt;}
._e{width:9.130133pt;}
._c{width:14.419200pt;}
._11{width:280.642667pt;}
._12{width:312.699733pt;}
._a{width:403.573333pt;}
._b{width:560.069333pt;}
.fs6{font-size:27.984000pt;}
.fs4{font-size:31.093333pt;}
.fs5{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.fs8{font-size:90.666667pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:44.913333pt;}
.y1{bottom:46.748000pt;}
.y36{bottom:46.803200pt;}
.y35{bottom:47.332933pt;}
.yfc{bottom:92.272933pt;}
.y76{bottom:95.233467pt;}
.y12d{bottom:102.782000pt;}
.y15f{bottom:104.446133pt;}
.y4c{bottom:105.337733pt;}
.ye5{bottom:109.354267pt;}
.yc2{bottom:109.459200pt;}
.yfb{bottom:113.606267pt;}
.y75{bottom:116.566800pt;}
.y4b{bottom:120.004400pt;}
.y12c{bottom:120.115333pt;}
.y15e{bottom:125.559067pt;}
.ye4{bottom:130.687600pt;}
.yc1{bottom:130.792533pt;}
.y4a{bottom:134.671067pt;}
.yfa{bottom:134.939600pt;}
.y12b{bottom:137.448667pt;}
.y74{bottom:137.900133pt;}
.y15d{bottom:142.892400pt;}
.y49{bottom:151.227600pt;}
.ye3{bottom:152.020933pt;}
.yc0{bottom:152.125867pt;}
.yf9{bottom:156.272933pt;}
.y12a{bottom:158.561600pt;}
.y73{bottom:159.233467pt;}
.y15c{bottom:164.005067pt;}
.ye2{bottom:173.354267pt;}
.ybf{bottom:173.459200pt;}
.y129{bottom:175.894933pt;}
.yf8{bottom:177.606267pt;}
.y72{bottom:180.566800pt;}
.y15b{bottom:181.338400pt;}
.y128{bottom:193.228267pt;}
.y9b{bottom:193.364800pt;}
.ye1{bottom:194.687600pt;}
.ybe{bottom:194.792533pt;}
.y15a{bottom:198.671733pt;}
.y34{bottom:200.166933pt;}
.y71{bottom:201.900133pt;}
.y127{bottom:214.341067pt;}
.y9a{bottom:214.698133pt;}
.y159{bottom:216.005067pt;}
.ye0{bottom:216.020933pt;}
.ybd{bottom:216.125867pt;}
.y70{bottom:223.233467pt;}
.y33{bottom:225.946533pt;}
.y126{bottom:231.674400pt;}
.y99{bottom:236.031467pt;}
.y158{bottom:237.118000pt;}
.ydf{bottom:237.354267pt;}
.ybc{bottom:237.459200pt;}
.y32{bottom:241.946533pt;}
.y6f{bottom:244.566800pt;}
.y125{bottom:249.007733pt;}
.y157{bottom:254.451333pt;}
.y98{bottom:257.364800pt;}
.y31{bottom:257.946533pt;}
.yde{bottom:258.687600pt;}
.ybb{bottom:258.792533pt;}
.y6e{bottom:265.900133pt;}
.y124{bottom:266.341067pt;}
.y156{bottom:271.784667pt;}
.y30{bottom:273.946533pt;}
.y97{bottom:278.698133pt;}
.ydd{bottom:280.020933pt;}
.yba{bottom:280.125867pt;}
.y123{bottom:283.674400pt;}
.y155{bottom:289.118000pt;}
.y2f{bottom:289.946533pt;}
.y6d{bottom:294.566800pt;}
.y96{bottom:300.031467pt;}
.yb9{bottom:301.459200pt;}
.y2e{bottom:305.946533pt;}
.y122{bottom:308.566800pt;}
.ydc{bottom:309.354267pt;}
.y154{bottom:310.230933pt;}
.y95{bottom:321.364800pt;}
.y2d{bottom:321.946533pt;}
.yb8{bottom:322.792533pt;}
.y1f{bottom:324.672000pt;}
.y153{bottom:327.564267pt;}
.ydb{bottom:330.687600pt;}
.y2c{bottom:337.946533pt;}
.y6c{bottom:339.233467pt;}
.y1e{bottom:339.338667pt;}
.yb7{bottom:344.125867pt;}
.y152{bottom:344.897600pt;}
.y114{bottom:349.522267pt;}
.y94{bottom:350.698133pt;}
.yda{bottom:352.020933pt;}
.y2b{bottom:353.946533pt;}
.y1d{bottom:354.005333pt;}
.y6b{bottom:360.566800pt;}
.yb6{bottom:365.459200pt;}
.y151{bottom:366.010400pt;}
.y2a{bottom:369.946533pt;}
.y1c{bottom:370.561733pt;}
.y93{bottom:372.031467pt;}
.yd9{bottom:373.354267pt;}
.y6a{bottom:381.900133pt;}
.y150{bottom:383.343733pt;}
.y29{bottom:385.946533pt;}
.y1b{bottom:393.343867pt;}
.y92{bottom:393.364800pt;}
.yd8{bottom:394.687600pt;}
.yb5{bottom:394.792533pt;}
.y113{bottom:400.188933pt;}
.y14f{bottom:400.677067pt;}
.y28{bottom:401.946533pt;}
.y69{bottom:403.233467pt;}
.y1a{bottom:408.010533pt;}
.y91{bottom:414.698133pt;}
.yd7{bottom:416.020933pt;}
.yb4{bottom:416.125867pt;}
.y110{bottom:419.605733pt;}
.y27{bottom:421.726000pt;}
.y14e{bottom:421.790000pt;}
.y19{bottom:422.677200pt;}
.y68{bottom:424.566800pt;}
.y90{bottom:436.031467pt;}
.yd6{bottom:437.354267pt;}
.yb3{bottom:437.459200pt;}
.y26{bottom:437.726000pt;}
.y14d{bottom:439.123333pt;}
.y18{bottom:439.233600pt;}
.y67{bottom:445.900133pt;}
.y25{bottom:453.726000pt;}
.y8f{bottom:457.364800pt;}
.yd5{bottom:458.687600pt;}
.yb2{bottom:458.792533pt;}
.y14c{bottom:460.236133pt;}
.y17{bottom:462.015733pt;}
.yf7{bottom:464.031467pt;}
.y66{bottom:467.233467pt;}
.y24{bottom:469.726000pt;}
.y14b{bottom:477.569467pt;}
.y16{bottom:478.572133pt;}
.y8e{bottom:478.698133pt;}
.yd4{bottom:480.020933pt;}
.yb1{bottom:480.125867pt;}
.yf6{bottom:485.364800pt;}
.y23{bottom:485.726000pt;}
.y65{bottom:488.566800pt;}
.y15{bottom:495.128667pt;}
.y14a{bottom:498.682267pt;}
.yd3{bottom:501.354267pt;}
.yb0{bottom:501.459200pt;}
.y10e{bottom:504.535467pt;}
.yf5{bottom:506.698133pt;}
.y8d{bottom:507.364800pt;}
.y22{bottom:509.285067pt;}
.y64{bottom:509.900133pt;}
.y14{bottom:511.685067pt;}
.y149{bottom:516.015600pt;}
.yd2{bottom:522.687600pt;}
.yaf{bottom:522.792533pt;}
.y10d{bottom:525.868800pt;}
.yf4{bottom:528.031467pt;}
.y63{bottom:531.233467pt;}
.y148{bottom:537.128533pt;}
.yd1{bottom:544.020933pt;}
.yae{bottom:544.125867pt;}
.y10c{bottom:547.202133pt;}
.yf3{bottom:549.364800pt;}
.y8c{bottom:552.031467pt;}
.y62{bottom:552.566800pt;}
.y147{bottom:554.461867pt;}
.yd0{bottom:565.354267pt;}
.yad{bottom:565.459200pt;}
.y13{bottom:568.176533pt;}
.y10b{bottom:568.535467pt;}
.y8b{bottom:573.364800pt;}
.y61{bottom:573.900133pt;}
.y146{bottom:575.574667pt;}
.yf2{bottom:578.031467pt;}
.y12{bottom:584.732933pt;}
.ycf{bottom:586.687600pt;}
.yac{bottom:586.792533pt;}
.y10a{bottom:589.868800pt;}
.y145{bottom:592.908000pt;}
.y8a{bottom:594.698133pt;}
.y60{bottom:595.233467pt;}
.yf1{bottom:599.364800pt;}
.y11{bottom:601.289333pt;}
.y121{bottom:603.233467pt;}
.yce{bottom:608.020933pt;}
.y144{bottom:610.241333pt;}
.y109{bottom:611.202133pt;}
.yab{bottom:615.459200pt;}
.y89{bottom:616.031467pt;}
.y5f{bottom:616.566800pt;}
.y10{bottom:617.845867pt;}
.y120{bottom:624.566800pt;}
.y143{bottom:627.574667pt;}
.ycd{bottom:629.354267pt;}
.y108{bottom:632.535467pt;}
.y88{bottom:637.364800pt;}
.y5e{bottom:637.900133pt;}
.yf{bottom:642.734267pt;}
.yf0{bottom:643.364800pt;}
.y142{bottom:644.908000pt;}
.y11f{bottom:645.900133pt;}
.ycc{bottom:650.687600pt;}
.ye{bottom:657.184400pt;}
.y87{bottom:658.698133pt;}
.y5d{bottom:659.233467pt;}
.yaa{bottom:659.684933pt;}
.yef{bottom:664.698133pt;}
.y141{bottom:666.020933pt;}
.y11e{bottom:667.233467pt;}
.y107{bottom:668.535467pt;}
.yd{bottom:675.847067pt;}
.ycb{bottom:680.020933pt;}
.y86{bottom:680.031467pt;}
.y5c{bottom:680.566800pt;}
.ya9{bottom:681.018267pt;}
.y140{bottom:683.354267pt;}
.y101{bottom:686.365067pt;}
.y11d{bottom:688.566800pt;}
.yc{bottom:690.297333pt;}
.yee{bottom:693.364800pt;}
.y13f{bottom:700.687600pt;}
.yca{bottom:701.354267pt;}
.y85{bottom:701.364800pt;}
.y5b{bottom:701.900133pt;}
.ya8{bottom:702.351600pt;}
.yb{bottom:708.960000pt;}
.y11c{bottom:709.900133pt;}
.yed{bottom:715.364800pt;}
.y13e{bottom:718.020933pt;}
.yc9{bottom:722.687600pt;}
.y84{bottom:722.698133pt;}
.ya7{bottom:723.684933pt;}
.y5a{bottom:731.233467pt;}
.y13d{bottom:735.354267pt;}
.ya{bottom:738.528267pt;}
.yc8{bottom:744.020933pt;}
.ya6{bottom:745.018267pt;}
.y83{bottom:752.031467pt;}
.y59{bottom:752.566800pt;}
.y13c{bottom:752.687600pt;}
.yec{bottom:760.031467pt;}
.y9{bottom:762.087200pt;}
.yc7{bottom:765.354267pt;}
.ya5{bottom:766.351600pt;}
.y48{bottom:772.287600pt;}
.y82{bottom:773.364800pt;}
.y13b{bottom:773.800400pt;}
.y58{bottom:773.900133pt;}
.yeb{bottom:781.364800pt;}
.y11b{bottom:781.900133pt;}
.y8{bottom:785.646267pt;}
.yc6{bottom:786.687600pt;}
.ya4{bottom:787.684933pt;}
.y81{bottom:794.698133pt;}
.y13a{bottom:794.913333pt;}
.y57{bottom:795.233467pt;}
.y47{bottom:798.292800pt;}
.y10f{bottom:800.911600pt;}
.y16a{bottom:802.472400pt;}
.yea{bottom:802.698133pt;}
.y11a{bottom:803.233467pt;}
.ya3{bottom:809.018267pt;}
.y139{bottom:812.246667pt;}
.y46{bottom:814.292800pt;}
.yc5{bottom:815.354267pt;}
.y80{bottom:816.031467pt;}
.y56{bottom:816.566800pt;}
.y169{bottom:819.805733pt;}
.y7{bottom:820.543867pt;}
.ye9{bottom:824.031467pt;}
.y119{bottom:824.566800pt;}
.y45{bottom:830.292800pt;}
.ya2{bottom:830.351600pt;}
.y138{bottom:833.359600pt;}
.y168{bottom:837.139067pt;}
.y7f{bottom:837.364800pt;}
.y55{bottom:837.900133pt;}
.y6{bottom:843.210533pt;}
.y106{bottom:843.863467pt;}
.ye8{bottom:845.364800pt;}
.y118{bottom:845.900133pt;}
.y44{bottom:846.292800pt;}
.y137{bottom:850.692933pt;}
.yc4{bottom:852.020933pt;}
.y167{bottom:854.472400pt;}
.y105{bottom:857.196800pt;}
.y7e{bottom:858.698133pt;}
.y54{bottom:859.233467pt;}
.ya1{bottom:859.684933pt;}
.y43{bottom:862.292800pt;}
.ye7{bottom:866.698133pt;}
.y117{bottom:867.233467pt;}
.y136{bottom:868.026267pt;}
.y104{bottom:870.530133pt;}
.y166{bottom:871.805733pt;}
.y5{bottom:873.436267pt;}
.y42{bottom:878.292800pt;}
.y7d{bottom:880.031467pt;}
.y53{bottom:880.566800pt;}
.ya0{bottom:881.018267pt;}
.y103{bottom:883.863467pt;}
.y135{bottom:885.359600pt;}
.ye6{bottom:888.031467pt;}
.y116{bottom:888.566800pt;}
.y165{bottom:892.918667pt;}
.y41{bottom:894.292800pt;}
.y102{bottom:897.196800pt;}
.y7c{bottom:901.364800pt;}
.y52{bottom:901.900133pt;}
.y9f{bottom:902.351600pt;}
.y4{bottom:905.436267pt;}
.y134{bottom:906.472400pt;}
.yc3{bottom:909.364800pt;}
.y115{bottom:909.900133pt;}
.y164{bottom:910.252000pt;}
.y40{bottom:910.292800pt;}
.y100{bottom:923.364800pt;}
.y9e{bottom:923.684933pt;}
.y133{bottom:923.805733pt;}
.y3f{bottom:926.292800pt;}
.y7b{bottom:930.698133pt;}
.y51{bottom:931.233467pt;}
.y163{bottom:931.364800pt;}
.y3{bottom:937.436267pt;}
.y132{bottom:941.139067pt;}
.yff{bottom:944.698133pt;}
.y9d{bottom:945.018267pt;}
.y3e{bottom:946.072400pt;}
.y162{bottom:948.698133pt;}
.y7a{bottom:952.031467pt;}
.y50{bottom:952.566800pt;}
.y131{bottom:958.472400pt;}
.y3d{bottom:962.072400pt;}
.yfe{bottom:966.031467pt;}
.y2{bottom:969.436267pt;}
.y79{bottom:973.364800pt;}
.y9c{bottom:973.684933pt;}
.y4f{bottom:973.900133pt;}
.y20{bottom:975.157333pt;}
.y3c{bottom:978.072400pt;}
.y130{bottom:979.585333pt;}
.y161{bottom:983.364800pt;}
.yfd{bottom:987.364800pt;}
.y3b{bottom:994.072400pt;}
.y78{bottom:994.698133pt;}
.y12f{bottom:996.918667pt;}
.y112{bottom:997.249333pt;}
.y160{bottom:1000.698133pt;}
.y4e{bottom:1010.351600pt;}
.y111{bottom:1010.582667pt;}
.y77{bottom:1016.031467pt;}
.y3a{bottom:1017.631467pt;}
.y12e{bottom:1018.031467pt;}
.y38{bottom:1042.566667pt;}
.y37{bottom:1055.366667pt;}
.y4d{bottom:1065.826800pt;}
.y21{bottom:1071.896933pt;}
.h7{height:27.679529pt;}
.h6{height:27.680063pt;}
.h8{height:32.000000pt;}
.hb{height:32.437500pt;}
.hc{height:34.000000pt;}
.h16{height:34.020833pt;}
.h10{height:35.856000pt;}
.ha{height:38.500000pt;}
.h9{height:38.812500pt;}
.he{height:40.906667pt;}
.h18{height:42.500000pt;}
.h19{height:42.526042pt;}
.h2{height:43.664062pt;}
.hf{height:46.506667pt;}
.h5{height:48.125000pt;}
.hd{height:48.515625pt;}
.h13{height:51.000000pt;}
.h15{height:51.031250pt;}
.h14{height:55.616000pt;}
.h12{height:58.218750pt;}
.h17{height:65.109333pt;}
.h4{height:72.773438pt;}
.h11{height:79.061333pt;}
.h3{height:93.013333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:42.199600pt;}
.x5{left:54.566000pt;}
.x3{left:67.374400pt;}
.x6{left:105.826800pt;}
.x7{left:117.165333pt;}
.xa{left:143.622000pt;}
.x1{left:211.653600pt;}
.x9{left:476.220400pt;}
.x8{left:650.078800pt;}
.x4{left:725.669333pt;}
}




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