
    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_f197b03a8c03a8136d61bb99.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_f197b03a8c03a8136d61bb99.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_a9f6720801913c896958f7d3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d370f1d7ffe0158ec58bd699.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_705ce7b5907d71fa4bfbcdb9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_92647186c5a9a604543cd9ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.909639;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_990a35ea85e087ff3e39c394.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f41a14a765311c00edeb21e7.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0ab8f5e2f3eab7efbd767fdc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f8151a72df060dca4ee0bb45.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_dd1813f8581a33ee2162dfae.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0dcf546e641e40596c969bdc.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1f116a9d367ad23d879e03fb.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c7751eac1a5689bfc8e01c68.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_a9f6720801913c896958f7d3.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e7cced53a1c3ba145b9e0fe1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.945813;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;}
.m8{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m3{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.mb{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);}
.m7{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);}
.m10{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);}
.m4{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);}
.ma{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);}
.m9{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);}
.m1{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);}
.m2{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);}
.mf{transform:matrix(0.240001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240001,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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.v3{vertical-align:23.904000px;}
.ls1{letter-spacing:-0.768000px;}
.ls2{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
.ws23{word-spacing:-71.712000px;}
.ws1f{word-spacing:-71.640000px;}
.ws24{word-spacing:-60.696000px;}
.ws7f{word-spacing:-60.624000px;}
.ws35{word-spacing:-59.976000px;}
.ws4f{word-spacing:-59.904000px;}
.ws2c{word-spacing:-59.688000px;}
.wsa1{word-spacing:-59.616000px;}
.wsa0{word-spacing:-59.593500px;}
.ws41{word-spacing:-59.472000px;}
.ws7b{word-spacing:-59.040000px;}
.ws17{word-spacing:-58.968000px;}
.ws28{word-spacing:-58.752000px;}
.ws69{word-spacing:-58.392000px;}
.ws61{word-spacing:-58.248000px;}
.ws63{word-spacing:-57.744000px;}
.ws4{word-spacing:-57.168000px;}
.ws81{word-spacing:-57.096000px;}
.ws56{word-spacing:-56.808000px;}
.ws3f{word-spacing:-56.520000px;}
.ws99{word-spacing:-56.304000px;}
.ws60{word-spacing:-55.224000px;}
.wsc{word-spacing:-54.576000px;}
.ws20{word-spacing:-54.072000px;}
.ws80{word-spacing:-53.712000px;}
.ws5c{word-spacing:-52.344000px;}
.ws25{word-spacing:-52.056000px;}
.ws5d{word-spacing:-51.336000px;}
.ws1d{word-spacing:-51.120000px;}
.ws7d{word-spacing:-50.205600px;}
.ws8b{word-spacing:-50.184000px;}
.ws86{word-spacing:-47.952000px;}
.ws59{word-spacing:-47.448000px;}
.ws8{word-spacing:-46.800000px;}
.ws33{word-spacing:-46.728000px;}
.ws5f{word-spacing:-46.512000px;}
.ws18{word-spacing:-45.648000px;}
.ws6b{word-spacing:-45.000000px;}
.ws34{word-spacing:-44.856000px;}
.ws84{word-spacing:-43.272000px;}
.ws76{word-spacing:-43.128000px;}
.ws29{word-spacing:-42.480000px;}
.ws62{word-spacing:-42.120000px;}
.ws97{word-spacing:-41.976000px;}
.ws67{word-spacing:-41.328000px;}
.ws90{word-spacing:-40.752000px;}
.ws48{word-spacing:-40.248000px;}
.ws78{word-spacing:-40.176000px;}
.ws7{word-spacing:-40.032000px;}
.ws13{word-spacing:-39.888000px;}
.ws4a{word-spacing:-39.600000px;}
.ws16{word-spacing:-39.384000px;}
.ws8a{word-spacing:-39.312000px;}
.ws55{word-spacing:-39.096000px;}
.ws44{word-spacing:-38.808000px;}
.ws2{word-spacing:-38.232000px;}
.ws32{word-spacing:-37.872000px;}
.ws53{word-spacing:-37.656000px;}
.wsd{word-spacing:-36.648000px;}
.ws77{word-spacing:-35.856000px;}
.ws8f{word-spacing:-34.056000px;}
.ws9{word-spacing:-33.480000px;}
.ws36{word-spacing:-33.408000px;}
.ws9e{word-spacing:-32.544000px;}
.wsa{word-spacing:-32.112000px;}
.ws1a{word-spacing:-31.032000px;}
.ws6e{word-spacing:-30.240000px;}
.ws27{word-spacing:-29.880000px;}
.ws5b{word-spacing:-29.376000px;}
.ws6{word-spacing:-29.016000px;}
.ws8e{word-spacing:-28.944000px;}
.ws45{word-spacing:-28.800000px;}
.ws6d{word-spacing:-28.584000px;}
.ws12{word-spacing:-27.720000px;}
.ws1b{word-spacing:-27.288000px;}
.ws92{word-spacing:-26.712000px;}
.ws7e{word-spacing:-26.424000px;}
.ws9d{word-spacing:-25.920000px;}
.ws31{word-spacing:-25.128000px;}
.ws83{word-spacing:-24.480000px;}
.wsb{word-spacing:-24.264000px;}
.ws3a{word-spacing:-24.048000px;}
.ws65{word-spacing:-23.688000px;}
.ws2f{word-spacing:-22.896000px;}
.ws73{word-spacing:-21.312000px;}
.ws79{word-spacing:-20.664000px;}
.ws3c{word-spacing:-19.296000px;}
.ws2e{word-spacing:-18.936000px;}
.ws94{word-spacing:-18.720000px;}
.ws85{word-spacing:-17.136000px;}
.ws82{word-spacing:-14.688000px;}
.ws52{word-spacing:-12.744000px;}
.ws9f{word-spacing:-12.384000px;}
.ws47{word-spacing:-12.168000px;}
.ws57{word-spacing:-12.096000px;}
.ws5{word-spacing:-11.232000px;}
.ws5a{word-spacing:-11.088000px;}
.ws2b{word-spacing:-10.872000px;}
.ws7a{word-spacing:-10.440000px;}
.ws89{word-spacing:-9.792000px;}
.ws49{word-spacing:-9.576000px;}
.ws50{word-spacing:-9.360000px;}
.ws74{word-spacing:-7.776000px;}
.ws3d{word-spacing:-7.488000px;}
.ws15{word-spacing:-7.200000px;}
.ws51{word-spacing:-6.408000px;}
.ws91{word-spacing:-5.832000px;}
.ws3e{word-spacing:-5.680800px;}
.ws87{word-spacing:-5.328000px;}
.ws8c{word-spacing:-5.040000px;}
.ws39{word-spacing:-4.320000px;}
.ws1e{word-spacing:-4.248000px;}
.ws88{word-spacing:-4.032000px;}
.ws72{word-spacing:-3.312000px;}
.ws66{word-spacing:-2.138400px;}
.ws7c{word-spacing:-1.584000px;}
.ws43{word-spacing:-1.080000px;}
.ws21{word-spacing:-0.936000px;}
.ws58{word-spacing:-0.648000px;}
.wse{word-spacing:-0.060000px;}
.ws4c{word-spacing:-0.054000px;}
.wsf{word-spacing:0.000000px;}
.ws1{word-spacing:0.720000px;}
.ws40{word-spacing:1.296000px;}
.ws3b{word-spacing:1.440000px;}
.ws96{word-spacing:1.800000px;}
.ws5e{word-spacing:2.880000px;}
.ws4b{word-spacing:3.168000px;}
.ws9a{word-spacing:4.752000px;}
.ws75{word-spacing:6.048000px;}
.ws68{word-spacing:9.432000px;}
.ws8d{word-spacing:10.080000px;}
.ws37{word-spacing:10.872000px;}
.ws42{word-spacing:12.240000px;}
.ws6c{word-spacing:12.816000px;}
.ws2a{word-spacing:12.888000px;}
.ws70{word-spacing:13.320000px;}
.ws95{word-spacing:13.536000px;}
.ws26{word-spacing:21.096000px;}
.ws98{word-spacing:21.672000px;}
.ws9c{word-spacing:22.032000px;}
.ws4d{word-spacing:22.608000px;}
.ws19{word-spacing:23.616000px;}
.ws71{word-spacing:25.920000px;}
.ws54{word-spacing:28.224000px;}
.ws93{word-spacing:33.048000px;}
.ws10{word-spacing:33.621000px;}
.ws1c{word-spacing:34.848000px;}
.ws6a{word-spacing:36.432000px;}
.ws38{word-spacing:45.360000px;}
.ws6f{word-spacing:49.104000px;}
.ws14{word-spacing:50.040000px;}
.ws9b{word-spacing:52.200000px;}
.ws22{word-spacing:53.640000px;}
.ws2d{word-spacing:55.656000px;}
.ws30{word-spacing:56.592000px;}
.ws64{word-spacing:98.568000px;}
.ws4e{word-spacing:101.088000px;}
.ws46{word-spacing:114.408000px;}
.ws11{word-spacing:386.314800px;}
.ws0{word-spacing:1699.977600px;}
._a{margin-left:-18.935375px;}
._12{margin-left:-14.976000px;}
._14{margin-left:-13.176000px;}
._11{margin-left:-11.736000px;}
._16{margin-left:-10.224000px;}
._d{margin-left:-8.784000px;}
._b{margin-left:-7.776000px;}
._4{margin-left:-6.327600px;}
._2{margin-left:-4.386000px;}
._3{margin-left:-2.409600px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._f{width:2.484000px;}
._19{width:3.888000px;}
._9{width:5.184000px;}
._e{width:6.840000px;}
._c{width:8.352000px;}
._18{width:9.590400px;}
._5{width:10.612800px;}
._1b{width:12.456000px;}
._7{width:17.690400px;}
._6{width:21.477600px;}
._10{width:66.319200px;}
._8{width:69.861600px;}
._13{width:88.120800px;}
._17{width:93.736800px;}
._1a{width:109.058400px;}
._15{width:188.200800px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.976000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y87{bottom:102.186450px;}
.y5e{bottom:102.204450px;}
.yeb{bottom:102.216150px;}
.yaf{bottom:102.228150px;}
.ycd{bottom:102.240150px;}
.y28{bottom:113.443050px;}
.y86{bottom:123.930450px;}
.y5d{bottom:123.948450px;}
.yea{bottom:123.960150px;}
.yae{bottom:123.972150px;}
.ycc{bottom:123.984150px;}
.yfe{bottom:125.460150px;}
.y27{bottom:135.943050px;}
.y85{bottom:145.674450px;}
.y5c{bottom:145.692450px;}
.ye9{bottom:145.710150px;}
.yad{bottom:145.716150px;}
.ycb{bottom:145.728150px;}
.yfd{bottom:147.960150px;}
.y26{bottom:158.443050px;}
.y84{bottom:167.418450px;}
.y5b{bottom:167.436450px;}
.yac{bottom:167.460150px;}
.yca{bottom:167.472150px;}
.yfc{bottom:170.460150px;}
.y25{bottom:180.943050px;}
.y83{bottom:189.162450px;}
.y5a{bottom:189.180450px;}
.ye8{bottom:189.210150px;}
.yc9{bottom:189.216150px;}
.yfb{bottom:192.960150px;}
.y24{bottom:203.443050px;}
.y82{bottom:210.906450px;}
.y59{bottom:210.924450px;}
.yab{bottom:210.960150px;}
.ye7{bottom:210.972150px;}
.yfa{bottom:215.460150px;}
.y23{bottom:225.943050px;}
.y81{bottom:232.650450px;}
.y58{bottom:232.668450px;}
.yc8{bottom:232.710150px;}
.ye6{bottom:232.716150px;}
.yaa{bottom:232.758150px;}
.yf9{bottom:234.960150px;}
.y22{bottom:248.443050px;}
.y57{bottom:254.412450px;}
.y80{bottom:254.442450px;}
.yc7{bottom:254.460150px;}
.ya9{bottom:254.502150px;}
.y21{bottom:270.943050px;}
.yf8{bottom:273.960150px;}
.y56{bottom:276.156450px;}
.y7f{bottom:276.186450px;}
.yc6{bottom:276.210150px;}
.ya8{bottom:276.246150px;}
.y20{bottom:293.443050px;}
.y55{bottom:297.900450px;}
.y7e{bottom:297.930450px;}
.ye5{bottom:297.960150px;}
.ye4{bottom:297.966150px;}
.ya7{bottom:297.990150px;}
.y1f{bottom:315.943050px;}
.yf7{bottom:318.966150px;}
.y7d{bottom:319.674450px;}
.ye3{bottom:319.710150px;}
.yc5{bottom:319.728150px;}
.ya6{bottom:319.734150px;}
.y1e{bottom:338.443050px;}
.y54{bottom:341.400450px;}
.y7c{bottom:341.418450px;}
.ye2{bottom:341.460150px;}
.yf6{bottom:341.466150px;}
.yc4{bottom:341.472150px;}
.ya5{bottom:341.478150px;}
.y1d{bottom:360.943050px;}
.y53{bottom:363.150450px;}
.y7b{bottom:363.162450px;}
.yf5{bottom:363.210150px;}
.yc3{bottom:363.216150px;}
.ya4{bottom:363.222150px;}
.y1c{bottom:383.443050px;}
.y7a{bottom:384.906450px;}
.y52{bottom:384.912450px;}
.yc2{bottom:384.960150px;}
.ya3{bottom:384.966150px;}
.y1b{bottom:405.943050px;}
.y79{bottom:406.650450px;}
.y51{bottom:406.656450px;}
.ya2{bottom:406.710150px;}
.yc1{bottom:406.716150px;}
.ye1{bottom:406.740150px;}
.y50{bottom:428.400450px;}
.y4f{bottom:428.406450px;}
.y1a{bottom:428.443050px;}
.ya1{bottom:428.460150px;}
.yc0{bottom:428.466150px;}
.ye0{bottom:428.484150px;}
.y4e{bottom:450.150450px;}
.y78{bottom:450.168450px;}
.ybf{bottom:450.210150px;}
.ydf{bottom:450.228150px;}
.ya0{bottom:450.258150px;}
.y19{bottom:450.943050px;}
.y31{bottom:456.139950px;}
.y77{bottom:471.912450px;}
.ybe{bottom:471.960150px;}
.ybd{bottom:471.972150px;}
.y9f{bottom:472.002150px;}
.y30{bottom:478.639950px;}
.y18{bottom:485.443050px;}
.y76{bottom:493.656450px;}
.y4d{bottom:493.668450px;}
.ybc{bottom:493.716150px;}
.y9e{bottom:493.746150px;}
.y2f{bottom:501.139950px;}
.y17{bottom:507.943050px;}
.y75{bottom:515.400450px;}
.y4c{bottom:515.412450px;}
.ybb{bottom:515.460150px;}
.y9d{bottom:515.490150px;}
.y16{bottom:530.443050px;}
.y4b{bottom:537.156450px;}
.y74{bottom:537.192450px;}
.yba{bottom:537.210150px;}
.y9c{bottom:537.234150px;}
.y2e{bottom:541.639950px;}
.y15{bottom:552.943050px;}
.y4a{bottom:558.900450px;}
.y49{bottom:558.906450px;}
.y73{bottom:558.936450px;}
.yde{bottom:558.960150px;}
.ydd{bottom:558.972150px;}
.y9b{bottom:558.978150px;}
.y14{bottom:575.443050px;}
.y48{bottom:580.650450px;}
.y72{bottom:580.680450px;}
.ydc{bottom:580.716150px;}
.y9a{bottom:580.722150px;}
.yb9{bottom:580.740150px;}
.y2d{bottom:586.639950px;}
.y13{bottom:597.943050px;}
.y47{bottom:602.400450px;}
.y71{bottom:602.424450px;}
.ydb{bottom:602.460150px;}
.y99{bottom:602.466150px;}
.yb8{bottom:602.484150px;}
.y12{bottom:620.443050px;}
.y46{bottom:624.150450px;}
.y70{bottom:624.168450px;}
.y98{bottom:624.210150px;}
.yda{bottom:624.222150px;}
.yb7{bottom:624.228150px;}
.y2c{bottom:627.139950px;}
.y45{bottom:645.900450px;}
.y6f{bottom:645.912450px;}
.yf4{bottom:645.960150px;}
.yd9{bottom:645.966150px;}
.y97{bottom:645.972150px;}
.y2b{bottom:663.139950px;}
.y11{bottom:665.413050px;}
.y6e{bottom:667.656450px;}
.yd8{bottom:667.710150px;}
.y96{bottom:667.716150px;}
.y44{bottom:667.722450px;}
.y10{bottom:686.419050px;}
.y6d{bottom:689.400450px;}
.y95{bottom:689.460150px;}
.y43{bottom:689.466450px;}
.yd7{bottom:689.472150px;}
.y2a{bottom:699.139950px;}
.yf{bottom:707.425050px;}
.y6c{bottom:711.150450px;}
.y94{bottom:711.210150px;}
.y42{bottom:711.210450px;}
.yd6{bottom:711.216150px;}
.ye{bottom:728.431050px;}
.y6b{bottom:732.930450px;}
.y41{bottom:732.954450px;}
.y93{bottom:732.960150px;}
.yd4{bottom:732.966150px;}
.yf3{bottom:732.984150px;}
.y29{bottom:735.139950px;}
.yd5{bottom:738.954150px;}
.yd{bottom:749.437050px;}
.y6a{bottom:754.674450px;}
.y40{bottom:754.698450px;}
.y92{bottom:754.710150px;}
.yb6{bottom:754.728150px;}
.yc{bottom:770.443050px;}
.y69{bottom:776.418450px;}
.y3f{bottom:776.442450px;}
.yd3{bottom:776.460150px;}
.yb5{bottom:776.472150px;}
.y91{bottom:776.502150px;}
.yb{bottom:791.443050px;}
.y68{bottom:798.162450px;}
.y3e{bottom:798.186450px;}
.yb4{bottom:798.216150px;}
.y90{bottom:798.246150px;}
.ya{bottom:812.443050px;}
.y67{bottom:819.906450px;}
.y3d{bottom:819.930450px;}
.yb3{bottom:819.960150px;}
.y8f{bottom:819.990150px;}
.y66{bottom:841.650450px;}
.y3c{bottom:841.674450px;}
.yb2{bottom:841.710150px;}
.yf2{bottom:841.722150px;}
.y8e{bottom:841.734150px;}
.y9{bottom:855.934050px;}
.y3b{bottom:863.418450px;}
.yd2{bottom:863.460150px;}
.yf1{bottom:863.466150px;}
.yd1{bottom:863.472150px;}
.y8d{bottom:863.478150px;}
.y65{bottom:863.496450px;}
.y8{bottom:876.938550px;}
.y3a{bottom:885.162450px;}
.yf0{bottom:885.210150px;}
.yd0{bottom:885.216150px;}
.y8c{bottom:885.222150px;}
.y64{bottom:885.240450px;}
.y7{bottom:897.943050px;}
.y39{bottom:906.906450px;}
.ycf{bottom:906.960150px;}
.y8b{bottom:906.966150px;}
.yef{bottom:906.978150px;}
.y63{bottom:906.984450px;}
.y6{bottom:918.943050px;}
.y38{bottom:928.650450px;}
.y8a{bottom:928.710150px;}
.yee{bottom:928.722150px;}
.y62{bottom:928.728450px;}
.y37{bottom:950.400450px;}
.y36{bottom:950.406450px;}
.yb1{bottom:950.460150px;}
.yed{bottom:950.466150px;}
.yce{bottom:950.472150px;}
.y61{bottom:950.472450px;}
.y5{bottom:968.443050px;}
.y35{bottom:972.150450px;}
.yb0{bottom:972.210150px;}
.y89{bottom:972.216150px;}
.y60{bottom:972.216450px;}
.y34{bottom:993.900450px;}
.y88{bottom:993.960150px;}
.y5f{bottom:993.960450px;}
.yec{bottom:993.972150px;}
.y4{bottom:1024.374150px;}
.y33{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h11{height:29.383200px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.ha{height:40.634766px;}
.hb{height:41.660156px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.h8{height:46.200000px;}
.h9{height:50.400000px;}
.hd{height:52.492611px;}
.he{height:53.287200px;}
.hf{height:53.334600px;}
.h10{height:53.359200px;}
.hc{height:53.467611px;}
.h7{height:54.600000px;}
.h6{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xe{left:65.202600px;}
.xd{left:71.253150px;}
.xc{left:73.027500px;}
.xf{left:85.039350px;}
.x14{left:145.856850px;}
.x15{left:151.327200px;}
.x9{left:223.656300px;}
.xb{left:244.916250px;}
.x5{left:262.302900px;}
.x11{left:279.370800px;}
.x16{left:281.407050px;}
.x10{left:374.424150px;}
.x12{left:399.983550px;}
.x4{left:412.272150px;}
.x13{left:421.195650px;}
.x8{left:427.065450px;}
.x7{left:481.284450px;}
.x6{left:525.797850px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
.xa{left:709.972350px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.v3{vertical-align:21.248000pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws23{word-spacing:-63.744000pt;}
.ws1f{word-spacing:-63.680000pt;}
.ws24{word-spacing:-53.952000pt;}
.ws7f{word-spacing:-53.888000pt;}
.ws35{word-spacing:-53.312000pt;}
.ws4f{word-spacing:-53.248000pt;}
.ws2c{word-spacing:-53.056000pt;}
.wsa1{word-spacing:-52.992000pt;}
.wsa0{word-spacing:-52.972000pt;}
.ws41{word-spacing:-52.864000pt;}
.ws7b{word-spacing:-52.480000pt;}
.ws17{word-spacing:-52.416000pt;}
.ws28{word-spacing:-52.224000pt;}
.ws69{word-spacing:-51.904000pt;}
.ws61{word-spacing:-51.776000pt;}
.ws63{word-spacing:-51.328000pt;}
.ws4{word-spacing:-50.816000pt;}
.ws81{word-spacing:-50.752000pt;}
.ws56{word-spacing:-50.496000pt;}
.ws3f{word-spacing:-50.240000pt;}
.ws99{word-spacing:-50.048000pt;}
.ws60{word-spacing:-49.088000pt;}
.wsc{word-spacing:-48.512000pt;}
.ws20{word-spacing:-48.064000pt;}
.ws80{word-spacing:-47.744000pt;}
.ws5c{word-spacing:-46.528000pt;}
.ws25{word-spacing:-46.272000pt;}
.ws5d{word-spacing:-45.632000pt;}
.ws1d{word-spacing:-45.440000pt;}
.ws7d{word-spacing:-44.627200pt;}
.ws8b{word-spacing:-44.608000pt;}
.ws86{word-spacing:-42.624000pt;}
.ws59{word-spacing:-42.176000pt;}
.ws8{word-spacing:-41.600000pt;}
.ws33{word-spacing:-41.536000pt;}
.ws5f{word-spacing:-41.344000pt;}
.ws18{word-spacing:-40.576000pt;}
.ws6b{word-spacing:-40.000000pt;}
.ws34{word-spacing:-39.872000pt;}
.ws84{word-spacing:-38.464000pt;}
.ws76{word-spacing:-38.336000pt;}
.ws29{word-spacing:-37.760000pt;}
.ws62{word-spacing:-37.440000pt;}
.ws97{word-spacing:-37.312000pt;}
.ws67{word-spacing:-36.736000pt;}
.ws90{word-spacing:-36.224000pt;}
.ws48{word-spacing:-35.776000pt;}
.ws78{word-spacing:-35.712000pt;}
.ws7{word-spacing:-35.584000pt;}
.ws13{word-spacing:-35.456000pt;}
.ws4a{word-spacing:-35.200000pt;}
.ws16{word-spacing:-35.008000pt;}
.ws8a{word-spacing:-34.944000pt;}
.ws55{word-spacing:-34.752000pt;}
.ws44{word-spacing:-34.496000pt;}
.ws2{word-spacing:-33.984000pt;}
.ws32{word-spacing:-33.664000pt;}
.ws53{word-spacing:-33.472000pt;}
.wsd{word-spacing:-32.576000pt;}
.ws77{word-spacing:-31.872000pt;}
.ws8f{word-spacing:-30.272000pt;}
.ws9{word-spacing:-29.760000pt;}
.ws36{word-spacing:-29.696000pt;}
.ws9e{word-spacing:-28.928000pt;}
.wsa{word-spacing:-28.544000pt;}
.ws1a{word-spacing:-27.584000pt;}
.ws6e{word-spacing:-26.880000pt;}
.ws27{word-spacing:-26.560000pt;}
.ws5b{word-spacing:-26.112000pt;}
.ws6{word-spacing:-25.792000pt;}
.ws8e{word-spacing:-25.728000pt;}
.ws45{word-spacing:-25.600000pt;}
.ws6d{word-spacing:-25.408000pt;}
.ws12{word-spacing:-24.640000pt;}
.ws1b{word-spacing:-24.256000pt;}
.ws92{word-spacing:-23.744000pt;}
.ws7e{word-spacing:-23.488000pt;}
.ws9d{word-spacing:-23.040000pt;}
.ws31{word-spacing:-22.336000pt;}
.ws83{word-spacing:-21.760000pt;}
.wsb{word-spacing:-21.568000pt;}
.ws3a{word-spacing:-21.376000pt;}
.ws65{word-spacing:-21.056000pt;}
.ws2f{word-spacing:-20.352000pt;}
.ws73{word-spacing:-18.944000pt;}
.ws79{word-spacing:-18.368000pt;}
.ws3c{word-spacing:-17.152000pt;}
.ws2e{word-spacing:-16.832000pt;}
.ws94{word-spacing:-16.640000pt;}
.ws85{word-spacing:-15.232000pt;}
.ws82{word-spacing:-13.056000pt;}
.ws52{word-spacing:-11.328000pt;}
.ws9f{word-spacing:-11.008000pt;}
.ws47{word-spacing:-10.816000pt;}
.ws57{word-spacing:-10.752000pt;}
.ws5{word-spacing:-9.984000pt;}
.ws5a{word-spacing:-9.856000pt;}
.ws2b{word-spacing:-9.664000pt;}
.ws7a{word-spacing:-9.280000pt;}
.ws89{word-spacing:-8.704000pt;}
.ws49{word-spacing:-8.512000pt;}
.ws50{word-spacing:-8.320000pt;}
.ws74{word-spacing:-6.912000pt;}
.ws3d{word-spacing:-6.656000pt;}
.ws15{word-spacing:-6.400000pt;}
.ws51{word-spacing:-5.696000pt;}
.ws91{word-spacing:-5.184000pt;}
.ws3e{word-spacing:-5.049600pt;}
.ws87{word-spacing:-4.736000pt;}
.ws8c{word-spacing:-4.480000pt;}
.ws39{word-spacing:-3.840000pt;}
.ws1e{word-spacing:-3.776000pt;}
.ws88{word-spacing:-3.584000pt;}
.ws72{word-spacing:-2.944000pt;}
.ws66{word-spacing:-1.900800pt;}
.ws7c{word-spacing:-1.408000pt;}
.ws43{word-spacing:-0.960000pt;}
.ws21{word-spacing:-0.832000pt;}
.ws58{word-spacing:-0.576000pt;}
.wse{word-spacing:-0.053333pt;}
.ws4c{word-spacing:-0.048000pt;}
.wsf{word-spacing:0.000000pt;}
.ws1{word-spacing:0.640000pt;}
.ws40{word-spacing:1.152000pt;}
.ws3b{word-spacing:1.280000pt;}
.ws96{word-spacing:1.600000pt;}
.ws5e{word-spacing:2.560000pt;}
.ws4b{word-spacing:2.816000pt;}
.ws9a{word-spacing:4.224000pt;}
.ws75{word-spacing:5.376000pt;}
.ws68{word-spacing:8.384000pt;}
.ws8d{word-spacing:8.960000pt;}
.ws37{word-spacing:9.664000pt;}
.ws42{word-spacing:10.880000pt;}
.ws6c{word-spacing:11.392000pt;}
.ws2a{word-spacing:11.456000pt;}
.ws70{word-spacing:11.840000pt;}
.ws95{word-spacing:12.032000pt;}
.ws26{word-spacing:18.752000pt;}
.ws98{word-spacing:19.264000pt;}
.ws9c{word-spacing:19.584000pt;}
.ws4d{word-spacing:20.096000pt;}
.ws19{word-spacing:20.992000pt;}
.ws71{word-spacing:23.040000pt;}
.ws54{word-spacing:25.088000pt;}
.ws93{word-spacing:29.376000pt;}
.ws10{word-spacing:29.885333pt;}
.ws1c{word-spacing:30.976000pt;}
.ws6a{word-spacing:32.384000pt;}
.ws38{word-spacing:40.320000pt;}
.ws6f{word-spacing:43.648000pt;}
.ws14{word-spacing:44.480000pt;}
.ws9b{word-spacing:46.400000pt;}
.ws22{word-spacing:47.680000pt;}
.ws2d{word-spacing:49.472000pt;}
.ws30{word-spacing:50.304000pt;}
.ws64{word-spacing:87.616000pt;}
.ws4e{word-spacing:89.856000pt;}
.ws46{word-spacing:101.696000pt;}
.ws11{word-spacing:343.390933pt;}
.ws0{word-spacing:1511.091200pt;}
._a{margin-left:-16.831444pt;}
._12{margin-left:-13.312000pt;}
._14{margin-left:-11.712000pt;}
._11{margin-left:-10.432000pt;}
._16{margin-left:-9.088000pt;}
._d{margin-left:-7.808000pt;}
._b{margin-left:-6.912000pt;}
._4{margin-left:-5.624533pt;}
._2{margin-left:-3.898667pt;}
._3{margin-left:-2.141867pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._f{width:2.208000pt;}
._19{width:3.456000pt;}
._9{width:4.608000pt;}
._e{width:6.080000pt;}
._c{width:7.424000pt;}
._18{width:8.524800pt;}
._5{width:9.433600pt;}
._1b{width:11.072000pt;}
._7{width:15.724800pt;}
._6{width:19.091200pt;}
._10{width:58.950400pt;}
._8{width:62.099200pt;}
._13{width:78.329600pt;}
._17{width:83.321600pt;}
._1a{width:96.940800pt;}
._15{width:167.289600pt;}
.fs6{font-size:37.312000pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y87{bottom:90.832400pt;}
.y5e{bottom:90.848400pt;}
.yeb{bottom:90.858800pt;}
.yaf{bottom:90.869467pt;}
.ycd{bottom:90.880133pt;}
.y28{bottom:100.838267pt;}
.y86{bottom:110.160400pt;}
.y5d{bottom:110.176400pt;}
.yea{bottom:110.186800pt;}
.yae{bottom:110.197467pt;}
.ycc{bottom:110.208133pt;}
.yfe{bottom:111.520133pt;}
.y27{bottom:120.838267pt;}
.y85{bottom:129.488400pt;}
.y5c{bottom:129.504400pt;}
.ye9{bottom:129.520133pt;}
.yad{bottom:129.525467pt;}
.ycb{bottom:129.536133pt;}
.yfd{bottom:131.520133pt;}
.y26{bottom:140.838267pt;}
.y84{bottom:148.816400pt;}
.y5b{bottom:148.832400pt;}
.yac{bottom:148.853467pt;}
.yca{bottom:148.864133pt;}
.yfc{bottom:151.520133pt;}
.y25{bottom:160.838267pt;}
.y83{bottom:168.144400pt;}
.y5a{bottom:168.160400pt;}
.ye8{bottom:168.186800pt;}
.yc9{bottom:168.192133pt;}
.yfb{bottom:171.520133pt;}
.y24{bottom:180.838267pt;}
.y82{bottom:187.472400pt;}
.y59{bottom:187.488400pt;}
.yab{bottom:187.520133pt;}
.ye7{bottom:187.530800pt;}
.yfa{bottom:191.520133pt;}
.y23{bottom:200.838267pt;}
.y81{bottom:206.800400pt;}
.y58{bottom:206.816400pt;}
.yc8{bottom:206.853467pt;}
.ye6{bottom:206.858800pt;}
.yaa{bottom:206.896133pt;}
.yf9{bottom:208.853467pt;}
.y22{bottom:220.838267pt;}
.y57{bottom:226.144400pt;}
.y80{bottom:226.171067pt;}
.yc7{bottom:226.186800pt;}
.ya9{bottom:226.224133pt;}
.y21{bottom:240.838267pt;}
.yf8{bottom:243.520133pt;}
.y56{bottom:245.472400pt;}
.y7f{bottom:245.499067pt;}
.yc6{bottom:245.520133pt;}
.ya8{bottom:245.552133pt;}
.y20{bottom:260.838267pt;}
.y55{bottom:264.800400pt;}
.y7e{bottom:264.827067pt;}
.ye5{bottom:264.853467pt;}
.ye4{bottom:264.858800pt;}
.ya7{bottom:264.880133pt;}
.y1f{bottom:280.838267pt;}
.yf7{bottom:283.525467pt;}
.y7d{bottom:284.155067pt;}
.ye3{bottom:284.186800pt;}
.yc5{bottom:284.202800pt;}
.ya6{bottom:284.208133pt;}
.y1e{bottom:300.838267pt;}
.y54{bottom:303.467067pt;}
.y7c{bottom:303.483067pt;}
.ye2{bottom:303.520133pt;}
.yf6{bottom:303.525467pt;}
.yc4{bottom:303.530800pt;}
.ya5{bottom:303.536133pt;}
.y1d{bottom:320.838267pt;}
.y53{bottom:322.800400pt;}
.y7b{bottom:322.811067pt;}
.yf5{bottom:322.853467pt;}
.yc3{bottom:322.858800pt;}
.ya4{bottom:322.864133pt;}
.y1c{bottom:340.838267pt;}
.y7a{bottom:342.139067pt;}
.y52{bottom:342.144400pt;}
.yc2{bottom:342.186800pt;}
.ya3{bottom:342.192133pt;}
.y1b{bottom:360.838267pt;}
.y79{bottom:361.467067pt;}
.y51{bottom:361.472400pt;}
.ya2{bottom:361.520133pt;}
.yc1{bottom:361.525467pt;}
.ye1{bottom:361.546800pt;}
.y50{bottom:380.800400pt;}
.y4f{bottom:380.805733pt;}
.y1a{bottom:380.838267pt;}
.ya1{bottom:380.853467pt;}
.yc0{bottom:380.858800pt;}
.ye0{bottom:380.874800pt;}
.y4e{bottom:400.133733pt;}
.y78{bottom:400.149733pt;}
.ybf{bottom:400.186800pt;}
.ydf{bottom:400.202800pt;}
.ya0{bottom:400.229467pt;}
.y19{bottom:400.838267pt;}
.y31{bottom:405.457733pt;}
.y77{bottom:419.477733pt;}
.ybe{bottom:419.520133pt;}
.ybd{bottom:419.530800pt;}
.y9f{bottom:419.557467pt;}
.y30{bottom:425.457733pt;}
.y18{bottom:431.504933pt;}
.y76{bottom:438.805733pt;}
.y4d{bottom:438.816400pt;}
.ybc{bottom:438.858800pt;}
.y9e{bottom:438.885467pt;}
.y2f{bottom:445.457733pt;}
.y17{bottom:451.504933pt;}
.y75{bottom:458.133733pt;}
.y4c{bottom:458.144400pt;}
.ybb{bottom:458.186800pt;}
.y9d{bottom:458.213467pt;}
.y16{bottom:471.504933pt;}
.y4b{bottom:477.472400pt;}
.y74{bottom:477.504400pt;}
.yba{bottom:477.520133pt;}
.y9c{bottom:477.541467pt;}
.y2e{bottom:481.457733pt;}
.y15{bottom:491.504933pt;}
.y4a{bottom:496.800400pt;}
.y49{bottom:496.805733pt;}
.y73{bottom:496.832400pt;}
.yde{bottom:496.853467pt;}
.ydd{bottom:496.864133pt;}
.y9b{bottom:496.869467pt;}
.y14{bottom:511.504933pt;}
.y48{bottom:516.133733pt;}
.y72{bottom:516.160400pt;}
.ydc{bottom:516.192133pt;}
.y9a{bottom:516.197467pt;}
.yb9{bottom:516.213467pt;}
.y2d{bottom:521.457733pt;}
.y13{bottom:531.504933pt;}
.y47{bottom:535.467067pt;}
.y71{bottom:535.488400pt;}
.ydb{bottom:535.520133pt;}
.y99{bottom:535.525467pt;}
.yb8{bottom:535.541467pt;}
.y12{bottom:551.504933pt;}
.y46{bottom:554.800400pt;}
.y70{bottom:554.816400pt;}
.y98{bottom:554.853467pt;}
.yda{bottom:554.864133pt;}
.yb7{bottom:554.869467pt;}
.y2c{bottom:557.457733pt;}
.y45{bottom:574.133733pt;}
.y6f{bottom:574.144400pt;}
.yf4{bottom:574.186800pt;}
.yd9{bottom:574.192133pt;}
.y97{bottom:574.197467pt;}
.y2b{bottom:589.457733pt;}
.y11{bottom:591.478267pt;}
.y6e{bottom:593.472400pt;}
.yd8{bottom:593.520133pt;}
.y96{bottom:593.525467pt;}
.y44{bottom:593.531067pt;}
.y10{bottom:610.150267pt;}
.y6d{bottom:612.800400pt;}
.y95{bottom:612.853467pt;}
.y43{bottom:612.859067pt;}
.yd7{bottom:612.864133pt;}
.y2a{bottom:621.457733pt;}
.yf{bottom:628.822267pt;}
.y6c{bottom:632.133733pt;}
.y94{bottom:632.186800pt;}
.y42{bottom:632.187067pt;}
.yd6{bottom:632.192133pt;}
.ye{bottom:647.494267pt;}
.y6b{bottom:651.493733pt;}
.y41{bottom:651.515067pt;}
.y93{bottom:651.520133pt;}
.yd4{bottom:651.525467pt;}
.yf3{bottom:651.541467pt;}
.y29{bottom:653.457733pt;}
.yd5{bottom:656.848133pt;}
.yd{bottom:666.166267pt;}
.y6a{bottom:670.821733pt;}
.y40{bottom:670.843067pt;}
.y92{bottom:670.853467pt;}
.yb6{bottom:670.869467pt;}
.yc{bottom:684.838267pt;}
.y69{bottom:690.149733pt;}
.y3f{bottom:690.171067pt;}
.yd3{bottom:690.186800pt;}
.yb5{bottom:690.197467pt;}
.y91{bottom:690.224133pt;}
.yb{bottom:703.504933pt;}
.y68{bottom:709.477733pt;}
.y3e{bottom:709.499067pt;}
.yb4{bottom:709.525467pt;}
.y90{bottom:709.552133pt;}
.ya{bottom:722.171600pt;}
.y67{bottom:728.805733pt;}
.y3d{bottom:728.827067pt;}
.yb3{bottom:728.853467pt;}
.y8f{bottom:728.880133pt;}
.y66{bottom:748.133733pt;}
.y3c{bottom:748.155067pt;}
.yb2{bottom:748.186800pt;}
.yf2{bottom:748.197467pt;}
.y8e{bottom:748.208133pt;}
.y9{bottom:760.830267pt;}
.y3b{bottom:767.483067pt;}
.yd2{bottom:767.520133pt;}
.yf1{bottom:767.525467pt;}
.yd1{bottom:767.530800pt;}
.y8d{bottom:767.536133pt;}
.y65{bottom:767.552400pt;}
.y8{bottom:779.500933pt;}
.y3a{bottom:786.811067pt;}
.yf0{bottom:786.853467pt;}
.yd0{bottom:786.858800pt;}
.y8c{bottom:786.864133pt;}
.y64{bottom:786.880400pt;}
.y7{bottom:798.171600pt;}
.y39{bottom:806.139067pt;}
.ycf{bottom:806.186800pt;}
.y8b{bottom:806.192133pt;}
.yef{bottom:806.202800pt;}
.y63{bottom:806.208400pt;}
.y6{bottom:816.838267pt;}
.y38{bottom:825.467067pt;}
.y8a{bottom:825.520133pt;}
.yee{bottom:825.530800pt;}
.y62{bottom:825.536400pt;}
.y37{bottom:844.800400pt;}
.y36{bottom:844.805733pt;}
.yb1{bottom:844.853467pt;}
.yed{bottom:844.858800pt;}
.yce{bottom:844.864133pt;}
.y61{bottom:844.864400pt;}
.y5{bottom:860.838267pt;}
.y35{bottom:864.133733pt;}
.yb0{bottom:864.186800pt;}
.y89{bottom:864.192133pt;}
.y60{bottom:864.192400pt;}
.y34{bottom:883.467067pt;}
.y88{bottom:883.520133pt;}
.y5f{bottom:883.520400pt;}
.yec{bottom:883.530800pt;}
.y4{bottom:910.554800pt;}
.y33{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h11{height:26.118400pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.ha{height:36.119792pt;}
.hb{height:37.031250pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.h8{height:41.066667pt;}
.h9{height:44.800000pt;}
.hd{height:46.660099pt;}
.he{height:47.366400pt;}
.hf{height:47.408533pt;}
.h10{height:47.430400pt;}
.hc{height:47.526765pt;}
.h7{height:48.533333pt;}
.h6{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xe{left:57.957867pt;}
.xd{left:63.336133pt;}
.xc{left:64.913333pt;}
.xf{left:75.590533pt;}
.x14{left:129.650533pt;}
.x15{left:134.513067pt;}
.x9{left:198.805600pt;}
.xb{left:217.703333pt;}
.x5{left:233.158133pt;}
.x11{left:248.329600pt;}
.x16{left:250.139600pt;}
.x10{left:332.821467pt;}
.x12{left:355.540933pt;}
.x4{left:366.464133pt;}
.x13{left:374.396133pt;}
.x8{left:379.613733pt;}
.x7{left:427.808400pt;}
.x6{left:467.375867pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
.xa{left:631.086533pt;}
}




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