
    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_e2c29e2e462be90f8311bd8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_ca87eb5a38548cd35dd8711c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.720000;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_cec1bb5630634cdc4ab8d441.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.961648;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_73c1f8497d881da8de12dda4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900485;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_7fb7055d38d0614d9425f0b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.990000;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_d4fcf5a54ef2427b9bc32023.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1c9a1d9d44c6ab10bfff9045.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_9d494589685a6b0cb974eb9f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.974000;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_8c426e5c7566ae1b3786f784.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.971000;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_da67b248ee88e419a9ca33fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.707000;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_5648562d2b71d88337d43b8a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_0bb3d562ab1365060eded704.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692871;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_dbd26d7bdd905ee155db5c02.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ca87eb5a38548cd35dd8711c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_97fd92fb20a2e8ff28d0150c.woff2')format("woff");}.fff{font-family:fff;line-height:0.692871;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_f7414d7297577d7017dad7b0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910645;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;}
.md{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-4.923600px;}
.v1{vertical-align:-1.402200px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000273px;}
.ls7{letter-spacing:0.000600px;}
.ls9{letter-spacing:0.000766px;}
.ls8{letter-spacing:60.593400px;}
.lsb{letter-spacing:66.297000px;}
.ls0{letter-spacing:66.319200px;}
.lsa{letter-spacing:66.391200px;}
.ls3{letter-spacing:100.426200px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.wse{word-spacing:-71.856000px;}
.ws42{word-spacing:-71.784000px;}
.ws58{word-spacing:-71.712000px;}
.ws32{word-spacing:-60.430800px;}
.ws7e{word-spacing:-60.408000px;}
.ws33{word-spacing:-60.264000px;}
.ws25{word-spacing:-60.192000px;}
.ws9c{word-spacing:-60.120000px;}
.wsab{word-spacing:-60.048000px;}
.ws8b{word-spacing:-59.832000px;}
.ws6f{word-spacing:-59.256000px;}
.wsd9{word-spacing:-59.184000px;}
.ws77{word-spacing:-59.112000px;}
.wsa3{word-spacing:-58.176000px;}
.ws47{word-spacing:-58.104000px;}
.wse5{word-spacing:-57.960000px;}
.ws95{word-spacing:-57.096000px;}
.ws87{word-spacing:-57.024000px;}
.ws6b{word-spacing:-56.808000px;}
.wsd7{word-spacing:-56.664000px;}
.ws71{word-spacing:-56.592000px;}
.wsda{word-spacing:-56.448000px;}
.ws39{word-spacing:-56.016000px;}
.wsd2{word-spacing:-55.735200px;}
.ws1f{word-spacing:-55.728000px;}
.ws1a{word-spacing:-55.512000px;}
.wsba{word-spacing:-54.792000px;}
.ws8{word-spacing:-54.648000px;}
.ws7b{word-spacing:-54.144000px;}
.ws5f{word-spacing:-53.496000px;}
.ws3e{word-spacing:-53.424000px;}
.ws41{word-spacing:-53.136000px;}
.wse2{word-spacing:-52.466400px;}
.ws21{word-spacing:-51.696000px;}
.wsc{word-spacing:-51.264000px;}
.wsc6{word-spacing:-50.991000px;}
.wsc7{word-spacing:-50.832000px;}
.ws1e{word-spacing:-50.688000px;}
.wsf{word-spacing:-50.544000px;}
.ws97{word-spacing:-49.536000px;}
.wsd0{word-spacing:-49.392000px;}
.wsb4{word-spacing:-49.320000px;}
.ws94{word-spacing:-49.248000px;}
.ws7f{word-spacing:-49.032000px;}
.wsc1{word-spacing:-48.816000px;}
.ws8f{word-spacing:-47.959200px;}
.ws16{word-spacing:-47.952000px;}
.wsb3{word-spacing:-47.808000px;}
.ws35{word-spacing:-47.736000px;}
.ws49{word-spacing:-47.664000px;}
.ws20{word-spacing:-47.160000px;}
.wsbb{word-spacing:-47.016000px;}
.wsb{word-spacing:-46.944000px;}
.ws59{word-spacing:-46.800000px;}
.ws86{word-spacing:-45.936000px;}
.wsdc{word-spacing:-45.792000px;}
.ws9e{word-spacing:-45.072000px;}
.ws15{word-spacing:-44.568000px;}
.ws8d{word-spacing:-44.275200px;}
.ws8e{word-spacing:-44.208000px;}
.wscf{word-spacing:-44.064000px;}
.ws36{word-spacing:-43.776000px;}
.ws81{word-spacing:-43.488000px;}
.wsd4{word-spacing:-42.984000px;}
.ws63{word-spacing:-42.912000px;}
.wsb6{word-spacing:-42.840000px;}
.ws19{word-spacing:-41.400000px;}
.ws85{word-spacing:-41.119200px;}
.wsa2{word-spacing:-41.040000px;}
.wsd1{word-spacing:-40.032000px;}
.ws6{word-spacing:-39.312000px;}
.ws5c{word-spacing:-39.240000px;}
.ws9f{word-spacing:-38.736000px;}
.ws3a{word-spacing:-38.160000px;}
.ws24{word-spacing:-37.512000px;}
.ws7{word-spacing:-37.296000px;}
.ws3b{word-spacing:-36.864000px;}
.wsdd{word-spacing:-36.072000px;}
.ws7a{word-spacing:-35.856000px;}
.wsbe{word-spacing:-35.136000px;}
.ws9a{word-spacing:-34.776000px;}
.wsde{word-spacing:-34.704000px;}
.ws99{word-spacing:-34.272000px;}
.ws30{word-spacing:-34.128000px;}
.wsd{word-spacing:-33.912000px;}
.ws2c{word-spacing:-33.624000px;}
.wsc8{word-spacing:-33.480000px;}
.ws61{word-spacing:-33.408000px;}
.ws72{word-spacing:-33.048000px;}
.ws7d{word-spacing:-32.904000px;}
.wsc5{word-spacing:-32.760000px;}
.ws89{word-spacing:-32.328000px;}
.ws1b{word-spacing:-32.184000px;}
.wsa0{word-spacing:-31.968000px;}
.wsbc{word-spacing:-31.248000px;}
.wsb8{word-spacing:-31.176000px;}
.ws14{word-spacing:-30.528000px;}
.wsac{word-spacing:-30.240000px;}
.ws2f{word-spacing:-30.168000px;}
.ws18{word-spacing:-29.016000px;}
.ws29{word-spacing:-28.728000px;}
.wsc3{word-spacing:-28.224000px;}
.ws65{word-spacing:-27.792000px;}
.wsb9{word-spacing:-26.712000px;}
.ws1c{word-spacing:-26.136000px;}
.ws73{word-spacing:-25.632000px;}
.wsaa{word-spacing:-25.056000px;}
.wscb{word-spacing:-24.840000px;}
.ws5e{word-spacing:-24.336000px;}
.ws37{word-spacing:-24.264000px;}
.wscd{word-spacing:-23.760000px;}
.ws6e{word-spacing:-23.328000px;}
.ws3f{word-spacing:-23.083200px;}
.ws8c{word-spacing:-22.536000px;}
.ws78{word-spacing:-22.176000px;}
.ws6c{word-spacing:-21.456000px;}
.ws28{word-spacing:-19.296000px;}
.wsa{word-spacing:-18.720000px;}
.ws93{word-spacing:-18.288000px;}
.wsc2{word-spacing:-17.784000px;}
.wsc9{word-spacing:-17.568000px;}
.ws2d{word-spacing:-17.136000px;}
.ws52{word-spacing:-16.848000px;}
.ws4e{word-spacing:-16.776000px;}
.wsd6{word-spacing:-16.704000px;}
.ws76{word-spacing:-16.056000px;}
.ws46{word-spacing:-15.768000px;}
.ws75{word-spacing:-15.696000px;}
.ws88{word-spacing:-15.408000px;}
.ws10{word-spacing:-15.000000px;}
.ws68{word-spacing:-14.184000px;}
.ws4c{word-spacing:-13.824000px;}
.ws4{word-spacing:-13.500000px;}
.ws57{word-spacing:-13.248000px;}
.ws2a{word-spacing:-12.816000px;}
.ws6d{word-spacing:-12.744000px;}
.wse6{word-spacing:-12.456000px;}
.wsb5{word-spacing:-11.952000px;}
.ws8a{word-spacing:-11.376000px;}
.ws9d{word-spacing:-10.944000px;}
.ws9{word-spacing:-10.872000px;}
.ws5{word-spacing:-10.800000px;}
.wsaf{word-spacing:-10.728000px;}
.wsb7{word-spacing:-9.288000px;}
.ws12{word-spacing:-9.216000px;}
.ws2e{word-spacing:-9.000000px;}
.ws3d{word-spacing:-8.280000px;}
.wsce{word-spacing:-8.208000px;}
.ws40{word-spacing:-7.272000px;}
.ws82{word-spacing:-7.128000px;}
.ws2{word-spacing:-5.680800px;}
.ws62{word-spacing:-5.544000px;}
.wse4{word-spacing:-4.752000px;}
.ws1d{word-spacing:-4.104000px;}
.ws55{word-spacing:-1.944000px;}
.ws34{word-spacing:-1.584000px;}
.wsb2{word-spacing:-0.936000px;}
.wscc{word-spacing:-0.720000px;}
.ws11{word-spacing:0.000000px;}
.ws5b{word-spacing:0.864000px;}
.ws44{word-spacing:1.656000px;}
.ws56{word-spacing:1.800000px;}
.wsae{word-spacing:3.600000px;}
.wsb1{word-spacing:4.176000px;}
.wse0{word-spacing:5.616000px;}
.wsd8{word-spacing:6.552000px;}
.ws70{word-spacing:7.920000px;}
.wsa1{word-spacing:9.000000px;}
.wsca{word-spacing:9.288000px;}
.wse7{word-spacing:9.450000px;}
.ws83{word-spacing:13.248000px;}
.wsa8{word-spacing:13.320000px;}
.ws5a{word-spacing:14.688000px;}
.wsbd{word-spacing:15.264000px;}
.ws96{word-spacing:15.408000px;}
.ws2b{word-spacing:15.840000px;}
.ws43{word-spacing:17.208000px;}
.ws79{word-spacing:17.280000px;}
.ws31{word-spacing:18.144000px;}
.ws92{word-spacing:21.744000px;}
.ws54{word-spacing:21.960000px;}
.ws6a{word-spacing:22.392000px;}
.ws98{word-spacing:24.336000px;}
.wsc0{word-spacing:24.552000px;}
.wsa5{word-spacing:25.488000px;}
.wsc4{word-spacing:27.864000px;}
.ws17{word-spacing:28.224000px;}
.ws5d{word-spacing:28.584000px;}
.wsad{word-spacing:28.872000px;}
.wsbf{word-spacing:29.304000px;}
.ws4b{word-spacing:30.240000px;}
.ws22{word-spacing:30.816000px;}
.ws0{word-spacing:31.881600px;}
.wsb0{word-spacing:32.184000px;}
.wsd3{word-spacing:32.472000px;}
.wsa6{word-spacing:33.552000px;}
.ws69{word-spacing:33.840000px;}
.ws48{word-spacing:36.360000px;}
.ws3c{word-spacing:37.008000px;}
.ws38{word-spacing:40.176000px;}
.ws51{word-spacing:42.912000px;}
.ws91{word-spacing:44.352000px;}
.ws53{word-spacing:44.640000px;}
.ws4d{word-spacing:50.688000px;}
.ws74{word-spacing:50.904000px;}
.ws26{word-spacing:52.776000px;}
.ws27{word-spacing:52.848000px;}
.wsdb{word-spacing:53.424000px;}
.ws84{word-spacing:53.568000px;}
.ws4a{word-spacing:56.664000px;}
.wsa4{word-spacing:57.888000px;}
.wsa9{word-spacing:59.040000px;}
.ws67{word-spacing:60.408000px;}
.ws4f{word-spacing:66.312000px;}
.ws45{word-spacing:71.496000px;}
.wsdf{word-spacing:71.550000px;}
.wsd5{word-spacing:73.944000px;}
.ws90{word-spacing:74.592000px;}
.wsa7{word-spacing:79.992000px;}
.ws9b{word-spacing:81.288000px;}
.ws23{word-spacing:81.720000px;}
.ws66{word-spacing:82.152000px;}
.ws64{word-spacing:96.696000px;}
.ws7c{word-spacing:96.768000px;}
.ws50{word-spacing:96.840000px;}
.ws80{word-spacing:114.696000px;}
.ws60{word-spacing:144.360000px;}
.wse1{word-spacing:191.592000px;}
.wse3{word-spacing:220.104000px;}
.ws1{word-spacing:931.579200px;}
.ws13{word-spacing:1716.003000px;}
._c{margin-left:-18.720000px;}
._8{margin-left:-15.048000px;}
._b{margin-left:-13.248000px;}
._19{margin-left:-12.043200px;}
._7{margin-left:-10.728000px;}
._1{margin-left:-9.195000px;}
._6{margin-left:-7.149000px;}
._18{margin-left:-6.120000px;}
._3{margin-left:-5.112000px;}
._9{margin-left:-3.918000px;}
._a{margin-left:-2.707200px;}
._0{margin-left:-1.663200px;}
._10{width:1.144800px;}
._4{width:3.096000px;}
._11{width:4.392000px;}
._2{width:5.544000px;}
._f{width:6.624000px;}
._5{width:7.827600px;}
._12{width:9.144000px;}
._d{width:10.152000px;}
._1a{width:20.548800px;}
._14{width:26.742000px;}
._17{width:47.599200px;}
._e{width:66.319200px;}
._13{width:92.152800px;}
._16{width:101.944800px;}
._15{width:168.904800px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.943200px;}
.y31{bottom:64.760550px;}
.y30{bottom:66.091050px;}
.y5c{bottom:93.092700px;}
.y85{bottom:93.960150px;}
.yaa{bottom:105.984150px;}
.yed{bottom:106.020150px;}
.ycd{bottom:107.502150px;}
.y26{bottom:111.943050px;}
.y5b{bottom:115.592700px;}
.y83{bottom:116.460150px;}
.ya9{bottom:129.978150px;}
.yec{bottom:130.014150px;}
.ycc{bottom:131.496150px;}
.y25{bottom:134.443050px;}
.y5a{bottom:138.092700px;}
.y82{bottom:138.960150px;}
.ya8{bottom:153.972150px;}
.yeb{bottom:154.008150px;}
.ycb{bottom:155.490150px;}
.y24{bottom:156.943050px;}
.y59{bottom:160.592700px;}
.y81{bottom:161.460150px;}
.ya7{bottom:177.966150px;}
.yea{bottom:178.002150px;}
.y23{bottom:179.443050px;}
.yca{bottom:179.484150px;}
.y58{bottom:183.092700px;}
.y80{bottom:183.960150px;}
.y22{bottom:201.943050px;}
.ya6{bottom:201.960150px;}
.ye9{bottom:201.996150px;}
.yc9{bottom:203.478150px;}
.y57{bottom:205.592700px;}
.y7f{bottom:206.460150px;}
.y21{bottom:224.443050px;}
.ya5{bottom:225.960150px;}
.ye8{bottom:225.990150px;}
.yc8{bottom:227.472150px;}
.y56{bottom:228.092700px;}
.y7e{bottom:228.960150px;}
.y20{bottom:246.943050px;}
.ye7{bottom:249.984150px;}
.ya4{bottom:250.002150px;}
.y55{bottom:250.592700px;}
.y7d{bottom:251.460150px;}
.yc7{bottom:251.466150px;}
.y1f{bottom:269.443050px;}
.y54{bottom:273.092700px;}
.y7c{bottom:273.960150px;}
.ye6{bottom:273.978150px;}
.ya3{bottom:273.996150px;}
.yc6{bottom:275.460150px;}
.y53{bottom:295.592700px;}
.y7b{bottom:296.460150px;}
.ye5{bottom:297.972150px;}
.ya2{bottom:297.990150px;}
.yc5{bottom:299.472150px;}
.y1e{bottom:314.443050px;}
.y52{bottom:318.092700px;}
.y7a{bottom:318.960150px;}
.ye4{bottom:321.966150px;}
.ya1{bottom:321.984150px;}
.yc4{bottom:323.466150px;}
.y1d{bottom:336.943050px;}
.y51{bottom:340.592700px;}
.y79{bottom:341.460150px;}
.ye3{bottom:345.960150px;}
.ya0{bottom:345.978150px;}
.yc3{bottom:347.466150px;}
.y1c{bottom:359.443050px;}
.y50{bottom:363.092700px;}
.y78{bottom:363.960150px;}
.y9f{bottom:369.972150px;}
.yc2{bottom:371.496150px;}
.y1b{bottom:381.943050px;}
.y4f{bottom:385.592700px;}
.y77{bottom:386.460150px;}
.y9e{bottom:393.966150px;}
.ye2{bottom:393.978150px;}
.yc1{bottom:395.490150px;}
.y1a{bottom:404.443050px;}
.y4e{bottom:408.092700px;}
.y76{bottom:408.960150px;}
.y9d{bottom:417.966150px;}
.ye1{bottom:417.972150px;}
.yc0{bottom:419.484150px;}
.y19{bottom:426.943050px;}
.y4d{bottom:430.592700px;}
.y75{bottom:431.460150px;}
.ye0{bottom:441.966150px;}
.y9c{bottom:441.990150px;}
.ybf{bottom:443.478150px;}
.y18{bottom:449.443050px;}
.y4c{bottom:453.092700px;}
.y74{bottom:453.960150px;}
.y2f{bottom:456.139950px;}
.ydf{bottom:465.960150px;}
.y9b{bottom:465.984150px;}
.ybe{bottom:467.472150px;}
.y17{bottom:471.943050px;}
.y4b{bottom:475.592700px;}
.y73{bottom:476.460150px;}
.y2e{bottom:478.639950px;}
.yde{bottom:489.960150px;}
.y9a{bottom:489.978150px;}
.ybd{bottom:491.466150px;}
.y16{bottom:494.443050px;}
.y4a{bottom:498.092700px;}
.y72{bottom:498.960150px;}
.y2d{bottom:501.139950px;}
.y99{bottom:513.972150px;}
.ydd{bottom:514.008150px;}
.ybc{bottom:515.460150px;}
.y15{bottom:516.943050px;}
.y49{bottom:520.592700px;}
.y71{bottom:521.460150px;}
.y98{bottom:537.966150px;}
.ydc{bottom:538.002150px;}
.y14{bottom:539.443050px;}
.ybb{bottom:539.460150px;}
.y2c{bottom:541.639950px;}
.y48{bottom:543.092700px;}
.y84{bottom:543.960150px;}
.y13{bottom:561.943050px;}
.y97{bottom:561.960150px;}
.ydb{bottom:561.996150px;}
.y47{bottom:565.592700px;}
.y70{bottom:566.460150px;}
.y12{bottom:584.443050px;}
.yda{bottom:585.990150px;}
.yba{bottom:586.062150px;}
.y2b{bottom:586.639950px;}
.y46{bottom:588.092700px;}
.y6f{bottom:588.960150px;}
.y11{bottom:606.943050px;}
.y96{bottom:609.960150px;}
.yd9{bottom:609.984150px;}
.yb9{bottom:610.056150px;}
.y45{bottom:610.592700px;}
.y6e{bottom:611.460150px;}
.y2a{bottom:627.139950px;}
.y10{bottom:629.443050px;}
.y44{bottom:633.092700px;}
.y6d{bottom:633.960150px;}
.yd8{bottom:633.978150px;}
.yb8{bottom:634.050150px;}
.y43{bottom:655.592700px;}
.y6c{bottom:656.460150px;}
.yd7{bottom:657.972150px;}
.y95{bottom:658.002150px;}
.yb7{bottom:658.044150px;}
.y29{bottom:663.139950px;}
.ye{bottom:674.434050px;}
.yf{bottom:674.443050px;}
.y42{bottom:678.092700px;}
.y6b{bottom:678.960150px;}
.yd6{bottom:681.966150px;}
.y94{bottom:681.996150px;}
.yb6{bottom:682.038150px;}
.yd{bottom:695.438550px;}
.y28{bottom:699.139950px;}
.y41{bottom:700.592700px;}
.y6a{bottom:701.460150px;}
.yd5{bottom:705.960150px;}
.y93{bottom:705.990150px;}
.yb5{bottom:706.032150px;}
.yc{bottom:716.443050px;}
.y40{bottom:723.092700px;}
.y69{bottom:723.960150px;}
.yd4{bottom:729.960150px;}
.y92{bottom:729.984150px;}
.yb4{bottom:730.026150px;}
.y27{bottom:735.139950px;}
.yb{bottom:737.443050px;}
.y3f{bottom:745.592700px;}
.y68{bottom:746.460150px;}
.y91{bottom:753.978150px;}
.yb3{bottom:754.020150px;}
.y3e{bottom:768.092700px;}
.y67{bottom:768.960150px;}
.y90{bottom:777.972150px;}
.yb2{bottom:778.014150px;}
.y9{bottom:786.938550px;}
.ya{bottom:786.943050px;}
.y3d{bottom:790.592700px;}
.y66{bottom:791.460150px;}
.y8f{bottom:801.966150px;}
.yb1{bottom:802.008150px;}
.y8{bottom:807.943050px;}
.y3c{bottom:813.092700px;}
.y65{bottom:813.960150px;}
.y8e{bottom:825.960150px;}
.yb0{bottom:826.002150px;}
.y7{bottom:828.938550px;}
.y3b{bottom:835.592700px;}
.y64{bottom:836.460150px;}
.y6{bottom:849.943050px;}
.y8d{bottom:849.960150px;}
.yaf{bottom:849.996150px;}
.y3a{bottom:858.092700px;}
.y63{bottom:858.960150px;}
.y5{bottom:870.943050px;}
.yd3{bottom:873.966150px;}
.y8c{bottom:873.978150px;}
.yae{bottom:873.990150px;}
.y39{bottom:880.592700px;}
.y62{bottom:881.460150px;}
.yd2{bottom:897.960150px;}
.y8b{bottom:897.972150px;}
.yad{bottom:897.984150px;}
.yf2{bottom:898.002150px;}
.y38{bottom:903.092700px;}
.y61{bottom:903.960150px;}
.y4{bottom:920.450550px;}
.yd1{bottom:921.960150px;}
.y8a{bottom:921.966150px;}
.yac{bottom:921.978150px;}
.yf1{bottom:923.508150px;}
.y37{bottom:925.592700px;}
.y60{bottom:926.460150px;}
.y3{bottom:945.943050px;}
.y89{bottom:945.960150px;}
.y88{bottom:945.966150px;}
.yab{bottom:945.972150px;}
.yf0{bottom:946.008150px;}
.yd0{bottom:946.014150px;}
.y36{bottom:948.092700px;}
.y5f{bottom:948.960150px;}
.y87{bottom:969.960150px;}
.y86{bottom:969.966150px;}
.yef{bottom:970.002150px;}
.ycf{bottom:970.008150px;}
.y35{bottom:970.592700px;}
.y5e{bottom:971.460150px;}
.y34{bottom:993.092700px;}
.y5d{bottom:993.960150px;}
.yee{bottom:993.996150px;}
.yce{bottom:994.002150px;}
.y33{bottom:1024.979400px;}
.y2{bottom:1027.321050px;}
.y32{bottom:1039.979400px;}
.hb{height:32.507812px;}
.hc{height:33.351562px;}
.h8{height:40.634766px;}
.h9{height:41.689453px;}
.ha{height:42.000000px;}
.h6{height:46.200000px;}
.h7{height:50.400000px;}
.h2{height:51.449400px;}
.h3{height:53.250000px;}
.h5{height:54.600000px;}
.h4{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x12{left:63.779550px;}
.x2{left:65.194200px;}
.x1{left:74.553000px;}
.x16{left:85.039350px;}
.x29{left:90.779550px;}
.x22{left:152.716500px;}
.x25{left:209.478450px;}
.x17{left:217.286400px;}
.x11{left:224.187900px;}
.xe{left:243.178350px;}
.x9{left:246.137280px;}
.x3{left:285.030750px;}
.x23{left:286.657350px;}
.x1b{left:288.781200px;}
.x18{left:293.928900px;}
.x1a{left:298.590900px;}
.x4{left:361.013250px;}
.x19{left:374.424150px;}
.xc{left:392.899350px;}
.xf{left:394.930950px;}
.x1c{left:399.931200px;}
.x15{left:412.540200px;}
.x1d{left:421.195650px;}
.x1f{left:425.337750px;}
.x28{left:426.953850px;}
.x24{left:448.651950px;}
.xd{left:457.447350px;}
.x8{left:462.508050px;}
.xa{left:469.491450px;}
.x10{left:473.451300px;}
.x6{left:479.226150px;}
.xb{left:480.953700px;}
.x7{left:526.663650px;}
.x26{left:591.528300px;}
.x5{left:593.759250px;}
.x14{left:611.464200px;}
.x1e{left:620.275650px;}
.x20{left:622.849500px;}
.x13{left:632.875800px;}
.x27{left:654.277200px;}
.x21{left:710.580450px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v1{vertical-align:-1.246400pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000242pt;}
.ls7{letter-spacing:0.000533pt;}
.ls9{letter-spacing:0.000681pt;}
.ls8{letter-spacing:53.860800pt;}
.lsb{letter-spacing:58.930667pt;}
.ls0{letter-spacing:58.950400pt;}
.lsa{letter-spacing:59.014400pt;}
.ls3{letter-spacing:89.267733pt;}
.ws3{word-spacing:-64.000000pt;}
.wse{word-spacing:-63.872000pt;}
.ws42{word-spacing:-63.808000pt;}
.ws58{word-spacing:-63.744000pt;}
.ws32{word-spacing:-53.716267pt;}
.ws7e{word-spacing:-53.696000pt;}
.ws33{word-spacing:-53.568000pt;}
.ws25{word-spacing:-53.504000pt;}
.ws9c{word-spacing:-53.440000pt;}
.wsab{word-spacing:-53.376000pt;}
.ws8b{word-spacing:-53.184000pt;}
.ws6f{word-spacing:-52.672000pt;}
.wsd9{word-spacing:-52.608000pt;}
.ws77{word-spacing:-52.544000pt;}
.wsa3{word-spacing:-51.712000pt;}
.ws47{word-spacing:-51.648000pt;}
.wse5{word-spacing:-51.520000pt;}
.ws95{word-spacing:-50.752000pt;}
.ws87{word-spacing:-50.688000pt;}
.ws6b{word-spacing:-50.496000pt;}
.wsd7{word-spacing:-50.368000pt;}
.ws71{word-spacing:-50.304000pt;}
.wsda{word-spacing:-50.176000pt;}
.ws39{word-spacing:-49.792000pt;}
.wsd2{word-spacing:-49.542400pt;}
.ws1f{word-spacing:-49.536000pt;}
.ws1a{word-spacing:-49.344000pt;}
.wsba{word-spacing:-48.704000pt;}
.ws8{word-spacing:-48.576000pt;}
.ws7b{word-spacing:-48.128000pt;}
.ws5f{word-spacing:-47.552000pt;}
.ws3e{word-spacing:-47.488000pt;}
.ws41{word-spacing:-47.232000pt;}
.wse2{word-spacing:-46.636800pt;}
.ws21{word-spacing:-45.952000pt;}
.wsc{word-spacing:-45.568000pt;}
.wsc6{word-spacing:-45.325333pt;}
.wsc7{word-spacing:-45.184000pt;}
.ws1e{word-spacing:-45.056000pt;}
.wsf{word-spacing:-44.928000pt;}
.ws97{word-spacing:-44.032000pt;}
.wsd0{word-spacing:-43.904000pt;}
.wsb4{word-spacing:-43.840000pt;}
.ws94{word-spacing:-43.776000pt;}
.ws7f{word-spacing:-43.584000pt;}
.wsc1{word-spacing:-43.392000pt;}
.ws8f{word-spacing:-42.630400pt;}
.ws16{word-spacing:-42.624000pt;}
.wsb3{word-spacing:-42.496000pt;}
.ws35{word-spacing:-42.432000pt;}
.ws49{word-spacing:-42.368000pt;}
.ws20{word-spacing:-41.920000pt;}
.wsbb{word-spacing:-41.792000pt;}
.wsb{word-spacing:-41.728000pt;}
.ws59{word-spacing:-41.600000pt;}
.ws86{word-spacing:-40.832000pt;}
.wsdc{word-spacing:-40.704000pt;}
.ws9e{word-spacing:-40.064000pt;}
.ws15{word-spacing:-39.616000pt;}
.ws8d{word-spacing:-39.355733pt;}
.ws8e{word-spacing:-39.296000pt;}
.wscf{word-spacing:-39.168000pt;}
.ws36{word-spacing:-38.912000pt;}
.ws81{word-spacing:-38.656000pt;}
.wsd4{word-spacing:-38.208000pt;}
.ws63{word-spacing:-38.144000pt;}
.wsb6{word-spacing:-38.080000pt;}
.ws19{word-spacing:-36.800000pt;}
.ws85{word-spacing:-36.550400pt;}
.wsa2{word-spacing:-36.480000pt;}
.wsd1{word-spacing:-35.584000pt;}
.ws6{word-spacing:-34.944000pt;}
.ws5c{word-spacing:-34.880000pt;}
.ws9f{word-spacing:-34.432000pt;}
.ws3a{word-spacing:-33.920000pt;}
.ws24{word-spacing:-33.344000pt;}
.ws7{word-spacing:-33.152000pt;}
.ws3b{word-spacing:-32.768000pt;}
.wsdd{word-spacing:-32.064000pt;}
.ws7a{word-spacing:-31.872000pt;}
.wsbe{word-spacing:-31.232000pt;}
.ws9a{word-spacing:-30.912000pt;}
.wsde{word-spacing:-30.848000pt;}
.ws99{word-spacing:-30.464000pt;}
.ws30{word-spacing:-30.336000pt;}
.wsd{word-spacing:-30.144000pt;}
.ws2c{word-spacing:-29.888000pt;}
.wsc8{word-spacing:-29.760000pt;}
.ws61{word-spacing:-29.696000pt;}
.ws72{word-spacing:-29.376000pt;}
.ws7d{word-spacing:-29.248000pt;}
.wsc5{word-spacing:-29.120000pt;}
.ws89{word-spacing:-28.736000pt;}
.ws1b{word-spacing:-28.608000pt;}
.wsa0{word-spacing:-28.416000pt;}
.wsbc{word-spacing:-27.776000pt;}
.wsb8{word-spacing:-27.712000pt;}
.ws14{word-spacing:-27.136000pt;}
.wsac{word-spacing:-26.880000pt;}
.ws2f{word-spacing:-26.816000pt;}
.ws18{word-spacing:-25.792000pt;}
.ws29{word-spacing:-25.536000pt;}
.wsc3{word-spacing:-25.088000pt;}
.ws65{word-spacing:-24.704000pt;}
.wsb9{word-spacing:-23.744000pt;}
.ws1c{word-spacing:-23.232000pt;}
.ws73{word-spacing:-22.784000pt;}
.wsaa{word-spacing:-22.272000pt;}
.wscb{word-spacing:-22.080000pt;}
.ws5e{word-spacing:-21.632000pt;}
.ws37{word-spacing:-21.568000pt;}
.wscd{word-spacing:-21.120000pt;}
.ws6e{word-spacing:-20.736000pt;}
.ws3f{word-spacing:-20.518400pt;}
.ws8c{word-spacing:-20.032000pt;}
.ws78{word-spacing:-19.712000pt;}
.ws6c{word-spacing:-19.072000pt;}
.ws28{word-spacing:-17.152000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws93{word-spacing:-16.256000pt;}
.wsc2{word-spacing:-15.808000pt;}
.wsc9{word-spacing:-15.616000pt;}
.ws2d{word-spacing:-15.232000pt;}
.ws52{word-spacing:-14.976000pt;}
.ws4e{word-spacing:-14.912000pt;}
.wsd6{word-spacing:-14.848000pt;}
.ws76{word-spacing:-14.272000pt;}
.ws46{word-spacing:-14.016000pt;}
.ws75{word-spacing:-13.952000pt;}
.ws88{word-spacing:-13.696000pt;}
.ws10{word-spacing:-13.333333pt;}
.ws68{word-spacing:-12.608000pt;}
.ws4c{word-spacing:-12.288000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws57{word-spacing:-11.776000pt;}
.ws2a{word-spacing:-11.392000pt;}
.ws6d{word-spacing:-11.328000pt;}
.wse6{word-spacing:-11.072000pt;}
.wsb5{word-spacing:-10.624000pt;}
.ws8a{word-spacing:-10.112000pt;}
.ws9d{word-spacing:-9.728000pt;}
.ws9{word-spacing:-9.664000pt;}
.ws5{word-spacing:-9.600000pt;}
.wsaf{word-spacing:-9.536000pt;}
.wsb7{word-spacing:-8.256000pt;}
.ws12{word-spacing:-8.192000pt;}
.ws2e{word-spacing:-8.000000pt;}
.ws3d{word-spacing:-7.360000pt;}
.wsce{word-spacing:-7.296000pt;}
.ws40{word-spacing:-6.464000pt;}
.ws82{word-spacing:-6.336000pt;}
.ws2{word-spacing:-5.049600pt;}
.ws62{word-spacing:-4.928000pt;}
.wse4{word-spacing:-4.224000pt;}
.ws1d{word-spacing:-3.648000pt;}
.ws55{word-spacing:-1.728000pt;}
.ws34{word-spacing:-1.408000pt;}
.wsb2{word-spacing:-0.832000pt;}
.wscc{word-spacing:-0.640000pt;}
.ws11{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.768000pt;}
.ws44{word-spacing:1.472000pt;}
.ws56{word-spacing:1.600000pt;}
.wsae{word-spacing:3.200000pt;}
.wsb1{word-spacing:3.712000pt;}
.wse0{word-spacing:4.992000pt;}
.wsd8{word-spacing:5.824000pt;}
.ws70{word-spacing:7.040000pt;}
.wsa1{word-spacing:8.000000pt;}
.wsca{word-spacing:8.256000pt;}
.wse7{word-spacing:8.400000pt;}
.ws83{word-spacing:11.776000pt;}
.wsa8{word-spacing:11.840000pt;}
.ws5a{word-spacing:13.056000pt;}
.wsbd{word-spacing:13.568000pt;}
.ws96{word-spacing:13.696000pt;}
.ws2b{word-spacing:14.080000pt;}
.ws43{word-spacing:15.296000pt;}
.ws79{word-spacing:15.360000pt;}
.ws31{word-spacing:16.128000pt;}
.ws92{word-spacing:19.328000pt;}
.ws54{word-spacing:19.520000pt;}
.ws6a{word-spacing:19.904000pt;}
.ws98{word-spacing:21.632000pt;}
.wsc0{word-spacing:21.824000pt;}
.wsa5{word-spacing:22.656000pt;}
.wsc4{word-spacing:24.768000pt;}
.ws17{word-spacing:25.088000pt;}
.ws5d{word-spacing:25.408000pt;}
.wsad{word-spacing:25.664000pt;}
.wsbf{word-spacing:26.048000pt;}
.ws4b{word-spacing:26.880000pt;}
.ws22{word-spacing:27.392000pt;}
.ws0{word-spacing:28.339200pt;}
.wsb0{word-spacing:28.608000pt;}
.wsd3{word-spacing:28.864000pt;}
.wsa6{word-spacing:29.824000pt;}
.ws69{word-spacing:30.080000pt;}
.ws48{word-spacing:32.320000pt;}
.ws3c{word-spacing:32.896000pt;}
.ws38{word-spacing:35.712000pt;}
.ws51{word-spacing:38.144000pt;}
.ws91{word-spacing:39.424000pt;}
.ws53{word-spacing:39.680000pt;}
.ws4d{word-spacing:45.056000pt;}
.ws74{word-spacing:45.248000pt;}
.ws26{word-spacing:46.912000pt;}
.ws27{word-spacing:46.976000pt;}
.wsdb{word-spacing:47.488000pt;}
.ws84{word-spacing:47.616000pt;}
.ws4a{word-spacing:50.368000pt;}
.wsa4{word-spacing:51.456000pt;}
.wsa9{word-spacing:52.480000pt;}
.ws67{word-spacing:53.696000pt;}
.ws4f{word-spacing:58.944000pt;}
.ws45{word-spacing:63.552000pt;}
.wsdf{word-spacing:63.600000pt;}
.wsd5{word-spacing:65.728000pt;}
.ws90{word-spacing:66.304000pt;}
.wsa7{word-spacing:71.104000pt;}
.ws9b{word-spacing:72.256000pt;}
.ws23{word-spacing:72.640000pt;}
.ws66{word-spacing:73.024000pt;}
.ws64{word-spacing:85.952000pt;}
.ws7c{word-spacing:86.016000pt;}
.ws50{word-spacing:86.080000pt;}
.ws80{word-spacing:101.952000pt;}
.ws60{word-spacing:128.320000pt;}
.wse1{word-spacing:170.304000pt;}
.wse3{word-spacing:195.648000pt;}
.ws1{word-spacing:828.070400pt;}
.ws13{word-spacing:1525.336000pt;}
._c{margin-left:-16.640000pt;}
._8{margin-left:-13.376000pt;}
._b{margin-left:-11.776000pt;}
._19{margin-left:-10.705067pt;}
._7{margin-left:-9.536000pt;}
._1{margin-left:-8.173333pt;}
._6{margin-left:-6.354667pt;}
._18{margin-left:-5.440000pt;}
._3{margin-left:-4.544000pt;}
._9{margin-left:-3.482667pt;}
._a{margin-left:-2.406400pt;}
._0{margin-left:-1.478400pt;}
._10{width:1.017600pt;}
._4{width:2.752000pt;}
._11{width:3.904000pt;}
._2{width:4.928000pt;}
._f{width:5.888000pt;}
._5{width:6.957867pt;}
._12{width:8.128000pt;}
._d{width:9.024000pt;}
._1a{width:18.265600pt;}
._14{width:23.770667pt;}
._17{width:42.310400pt;}
._e{width:58.950400pt;}
._13{width:81.913600pt;}
._16{width:90.617600pt;}
._15{width:150.137600pt;}
.fs6{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.838400pt;}
.y31{bottom:57.564933pt;}
.y30{bottom:58.747600pt;}
.y5c{bottom:82.749067pt;}
.y85{bottom:83.520133pt;}
.yaa{bottom:94.208133pt;}
.yed{bottom:94.240133pt;}
.ycd{bottom:95.557467pt;}
.y26{bottom:99.504933pt;}
.y5b{bottom:102.749067pt;}
.y83{bottom:103.520133pt;}
.ya9{bottom:115.536133pt;}
.yec{bottom:115.568133pt;}
.ycc{bottom:116.885467pt;}
.y25{bottom:119.504933pt;}
.y5a{bottom:122.749067pt;}
.y82{bottom:123.520133pt;}
.ya8{bottom:136.864133pt;}
.yeb{bottom:136.896133pt;}
.ycb{bottom:138.213467pt;}
.y24{bottom:139.504933pt;}
.y59{bottom:142.749067pt;}
.y81{bottom:143.520133pt;}
.ya7{bottom:158.192133pt;}
.yea{bottom:158.224133pt;}
.y23{bottom:159.504933pt;}
.yca{bottom:159.541467pt;}
.y58{bottom:162.749067pt;}
.y80{bottom:163.520133pt;}
.y22{bottom:179.504933pt;}
.ya6{bottom:179.520133pt;}
.ye9{bottom:179.552133pt;}
.yc9{bottom:180.869467pt;}
.y57{bottom:182.749067pt;}
.y7f{bottom:183.520133pt;}
.y21{bottom:199.504933pt;}
.ya5{bottom:200.853467pt;}
.ye8{bottom:200.880133pt;}
.yc8{bottom:202.197467pt;}
.y56{bottom:202.749067pt;}
.y7e{bottom:203.520133pt;}
.y20{bottom:219.504933pt;}
.ye7{bottom:222.208133pt;}
.ya4{bottom:222.224133pt;}
.y55{bottom:222.749067pt;}
.y7d{bottom:223.520133pt;}
.yc7{bottom:223.525467pt;}
.y1f{bottom:239.504933pt;}
.y54{bottom:242.749067pt;}
.y7c{bottom:243.520133pt;}
.ye6{bottom:243.536133pt;}
.ya3{bottom:243.552133pt;}
.yc6{bottom:244.853467pt;}
.y53{bottom:262.749067pt;}
.y7b{bottom:263.520133pt;}
.ye5{bottom:264.864133pt;}
.ya2{bottom:264.880133pt;}
.yc5{bottom:266.197467pt;}
.y1e{bottom:279.504933pt;}
.y52{bottom:282.749067pt;}
.y7a{bottom:283.520133pt;}
.ye4{bottom:286.192133pt;}
.ya1{bottom:286.208133pt;}
.yc4{bottom:287.525467pt;}
.y1d{bottom:299.504933pt;}
.y51{bottom:302.749067pt;}
.y79{bottom:303.520133pt;}
.ye3{bottom:307.520133pt;}
.ya0{bottom:307.536133pt;}
.yc3{bottom:308.858800pt;}
.y1c{bottom:319.504933pt;}
.y50{bottom:322.749067pt;}
.y78{bottom:323.520133pt;}
.y9f{bottom:328.864133pt;}
.yc2{bottom:330.218800pt;}
.y1b{bottom:339.504933pt;}
.y4f{bottom:342.749067pt;}
.y77{bottom:343.520133pt;}
.y9e{bottom:350.192133pt;}
.ye2{bottom:350.202800pt;}
.yc1{bottom:351.546800pt;}
.y1a{bottom:359.504933pt;}
.y4e{bottom:362.749067pt;}
.y76{bottom:363.520133pt;}
.y9d{bottom:371.525467pt;}
.ye1{bottom:371.530800pt;}
.yc0{bottom:372.874800pt;}
.y19{bottom:379.504933pt;}
.y4d{bottom:382.749067pt;}
.y75{bottom:383.520133pt;}
.ye0{bottom:392.858800pt;}
.y9c{bottom:392.880133pt;}
.ybf{bottom:394.202800pt;}
.y18{bottom:399.504933pt;}
.y4c{bottom:402.749067pt;}
.y74{bottom:403.520133pt;}
.y2f{bottom:405.457733pt;}
.ydf{bottom:414.186800pt;}
.y9b{bottom:414.208133pt;}
.ybe{bottom:415.530800pt;}
.y17{bottom:419.504933pt;}
.y4b{bottom:422.749067pt;}
.y73{bottom:423.520133pt;}
.y2e{bottom:425.457733pt;}
.yde{bottom:435.520133pt;}
.y9a{bottom:435.536133pt;}
.ybd{bottom:436.858800pt;}
.y16{bottom:439.504933pt;}
.y4a{bottom:442.749067pt;}
.y72{bottom:443.520133pt;}
.y2d{bottom:445.457733pt;}
.y99{bottom:456.864133pt;}
.ydd{bottom:456.896133pt;}
.ybc{bottom:458.186800pt;}
.y15{bottom:459.504933pt;}
.y49{bottom:462.749067pt;}
.y71{bottom:463.520133pt;}
.y98{bottom:478.192133pt;}
.ydc{bottom:478.224133pt;}
.y14{bottom:479.504933pt;}
.ybb{bottom:479.520133pt;}
.y2c{bottom:481.457733pt;}
.y48{bottom:482.749067pt;}
.y84{bottom:483.520133pt;}
.y13{bottom:499.504933pt;}
.y97{bottom:499.520133pt;}
.ydb{bottom:499.552133pt;}
.y47{bottom:502.749067pt;}
.y70{bottom:503.520133pt;}
.y12{bottom:519.504933pt;}
.yda{bottom:520.880133pt;}
.yba{bottom:520.944133pt;}
.y2b{bottom:521.457733pt;}
.y46{bottom:522.749067pt;}
.y6f{bottom:523.520133pt;}
.y11{bottom:539.504933pt;}
.y96{bottom:542.186800pt;}
.yd9{bottom:542.208133pt;}
.yb9{bottom:542.272133pt;}
.y45{bottom:542.749067pt;}
.y6e{bottom:543.520133pt;}
.y2a{bottom:557.457733pt;}
.y10{bottom:559.504933pt;}
.y44{bottom:562.749067pt;}
.y6d{bottom:563.520133pt;}
.yd8{bottom:563.536133pt;}
.yb8{bottom:563.600133pt;}
.y43{bottom:582.749067pt;}
.y6c{bottom:583.520133pt;}
.yd7{bottom:584.864133pt;}
.y95{bottom:584.890800pt;}
.yb7{bottom:584.928133pt;}
.y29{bottom:589.457733pt;}
.ye{bottom:599.496933pt;}
.yf{bottom:599.504933pt;}
.y42{bottom:602.749067pt;}
.y6b{bottom:603.520133pt;}
.yd6{bottom:606.192133pt;}
.y94{bottom:606.218800pt;}
.yb6{bottom:606.256133pt;}
.yd{bottom:618.167600pt;}
.y28{bottom:621.457733pt;}
.y41{bottom:622.749067pt;}
.y6a{bottom:623.520133pt;}
.yd5{bottom:627.520133pt;}
.y93{bottom:627.546800pt;}
.yb5{bottom:627.584133pt;}
.yc{bottom:636.838267pt;}
.y40{bottom:642.749067pt;}
.y69{bottom:643.520133pt;}
.yd4{bottom:648.853467pt;}
.y92{bottom:648.874800pt;}
.yb4{bottom:648.912133pt;}
.y27{bottom:653.457733pt;}
.yb{bottom:655.504933pt;}
.y3f{bottom:662.749067pt;}
.y68{bottom:663.520133pt;}
.y91{bottom:670.202800pt;}
.yb3{bottom:670.240133pt;}
.y3e{bottom:682.749067pt;}
.y67{bottom:683.520133pt;}
.y90{bottom:691.530800pt;}
.yb2{bottom:691.568133pt;}
.y9{bottom:699.500933pt;}
.ya{bottom:699.504933pt;}
.y3d{bottom:702.749067pt;}
.y66{bottom:703.520133pt;}
.y8f{bottom:712.858800pt;}
.yb1{bottom:712.896133pt;}
.y8{bottom:718.171600pt;}
.y3c{bottom:722.749067pt;}
.y65{bottom:723.520133pt;}
.y8e{bottom:734.186800pt;}
.yb0{bottom:734.224133pt;}
.y7{bottom:736.834267pt;}
.y3b{bottom:742.749067pt;}
.y64{bottom:743.520133pt;}
.y6{bottom:755.504933pt;}
.y8d{bottom:755.520133pt;}
.yaf{bottom:755.552133pt;}
.y3a{bottom:762.749067pt;}
.y63{bottom:763.520133pt;}
.y5{bottom:774.171600pt;}
.yd3{bottom:776.858800pt;}
.y8c{bottom:776.869467pt;}
.yae{bottom:776.880133pt;}
.y39{bottom:782.749067pt;}
.y62{bottom:783.520133pt;}
.yd2{bottom:798.186800pt;}
.y8b{bottom:798.197467pt;}
.yad{bottom:798.208133pt;}
.yf2{bottom:798.224133pt;}
.y38{bottom:802.749067pt;}
.y61{bottom:803.520133pt;}
.y4{bottom:818.178267pt;}
.yd1{bottom:819.520133pt;}
.y8a{bottom:819.525467pt;}
.yac{bottom:819.536133pt;}
.yf1{bottom:820.896133pt;}
.y37{bottom:822.749067pt;}
.y60{bottom:823.520133pt;}
.y3{bottom:840.838267pt;}
.y89{bottom:840.853467pt;}
.y88{bottom:840.858800pt;}
.yab{bottom:840.864133pt;}
.yf0{bottom:840.896133pt;}
.yd0{bottom:840.901467pt;}
.y36{bottom:842.749067pt;}
.y5f{bottom:843.520133pt;}
.y87{bottom:862.186800pt;}
.y86{bottom:862.192133pt;}
.yef{bottom:862.224133pt;}
.ycf{bottom:862.229467pt;}
.y35{bottom:862.749067pt;}
.y5e{bottom:863.520133pt;}
.y34{bottom:882.749067pt;}
.y5d{bottom:883.520133pt;}
.yee{bottom:883.552133pt;}
.yce{bottom:883.557467pt;}
.y33{bottom:911.092800pt;}
.y2{bottom:913.174267pt;}
.y32{bottom:924.426133pt;}
.hb{height:28.895833pt;}
.hc{height:29.645833pt;}
.h8{height:36.119792pt;}
.h9{height:37.057292pt;}
.ha{height:37.333333pt;}
.h6{height:41.066667pt;}
.h7{height:44.800000pt;}
.h2{height:45.732800pt;}
.h3{height:47.333333pt;}
.h5{height:48.533333pt;}
.h4{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x12{left:56.692933pt;}
.x2{left:57.950400pt;}
.x1{left:66.269333pt;}
.x16{left:75.590533pt;}
.x29{left:80.692933pt;}
.x22{left:135.748000pt;}
.x25{left:186.203067pt;}
.x17{left:193.143467pt;}
.x11{left:199.278133pt;}
.xe{left:216.158533pt;}
.x9{left:218.788693pt;}
.x3{left:253.360667pt;}
.x23{left:254.806533pt;}
.x1b{left:256.694400pt;}
.x18{left:261.270133pt;}
.x1a{left:265.414133pt;}
.x4{left:320.900667pt;}
.x19{left:332.821467pt;}
.xc{left:349.243867pt;}
.xf{left:351.049733pt;}
.x1c{left:355.494400pt;}
.x15{left:366.702400pt;}
.x1d{left:374.396133pt;}
.x1f{left:378.078000pt;}
.x28{left:379.514533pt;}
.x24{left:398.801733pt;}
.xd{left:406.619867pt;}
.x8{left:411.118267pt;}
.xa{left:417.325733pt;}
.x10{left:420.845600pt;}
.x6{left:425.978800pt;}
.xb{left:427.514400pt;}
.x7{left:468.145467pt;}
.x26{left:525.802933pt;}
.x5{left:527.786000pt;}
.x14{left:543.523733pt;}
.x1e{left:551.356133pt;}
.x20{left:553.644000pt;}
.x13{left:562.556267pt;}
.x27{left:581.579733pt;}
.x21{left:631.627067pt;}
}




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