
    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_bed8c90d9c1b3473576d67ca.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_cb829022ba799a332a884531.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8a880a42fc12a45a496b27cc.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e3d3047bebfa78f29bc1cf16.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911484;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_076b18983f2ee3e1ca56f9e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.905000;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_f5b72ca9a0932430e55d2727.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_12eaa52c93237821036dd925.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0730b71b1b405f193a79d174.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972000;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_1bcf253476e0ea2af87c87f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_5a94ddf51de750164197537e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_354d3fc8ab9f985b51334abc.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_dfb9e5f39771a0088e2d5692.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_9e0329ad7d9146e100dc857a.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_bed8c90d9c1b3473576d67ca.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cb829022ba799a332a884531.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_cdddedf126cdffba7274afff.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_32929daa8fc41fc184b590bb.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m9{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);}
.m8{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);}
.me{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);}
.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);}
.m5{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);}
.m6{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);}
.mc{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);}
.ma{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);}
.m1{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);}
.mb{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);}
.m3{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);}
.md{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);}
.m4{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:66.319200px;}
.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;}
.ws48{word-spacing:-61.272000px;}
.wsa3{word-spacing:-60.984000px;}
.ws29{word-spacing:-60.408000px;}
.ws19{word-spacing:-60.336000px;}
.ws35{word-spacing:-60.048000px;}
.ws55{word-spacing:-59.976000px;}
.wsae{word-spacing:-59.616000px;}
.ws9f{word-spacing:-59.400000px;}
.ws98{word-spacing:-59.328000px;}
.ws2b{word-spacing:-58.968000px;}
.wsc8{word-spacing:-58.680000px;}
.wsb4{word-spacing:-58.464000px;}
.ws8d{word-spacing:-57.744000px;}
.ws96{word-spacing:-57.600000px;}
.ws40{word-spacing:-57.240000px;}
.wsd8{word-spacing:-57.024000px;}
.ws75{word-spacing:-55.296000px;}
.ws3b{word-spacing:-55.224000px;}
.wsaa{word-spacing:-54.936000px;}
.ws81{word-spacing:-54.792000px;}
.wsce{word-spacing:-54.216000px;}
.ws7b{word-spacing:-53.496000px;}
.ws9a{word-spacing:-52.776000px;}
.wsbb{word-spacing:-51.984000px;}
.ws85{word-spacing:-50.688000px;}
.ws9c{word-spacing:-50.400000px;}
.ws7e{word-spacing:-49.824000px;}
.ws65{word-spacing:-49.464000px;}
.ws1c{word-spacing:-49.392000px;}
.ws6b{word-spacing:-49.248000px;}
.ws7a{word-spacing:-49.104000px;}
.wsc{word-spacing:-48.960000px;}
.ws7c{word-spacing:-48.384000px;}
.ws43{word-spacing:-48.240000px;}
.ws4b{word-spacing:-47.016000px;}
.ws47{word-spacing:-46.872000px;}
.ws1e{word-spacing:-46.080000px;}
.wsac{word-spacing:-45.936000px;}
.ws4c{word-spacing:-45.864000px;}
.wse2{word-spacing:-45.792000px;}
.wsb1{word-spacing:-44.640000px;}
.ws2f{word-spacing:-44.568000px;}
.ws8{word-spacing:-44.496000px;}
.ws25{word-spacing:-43.560000px;}
.wsf7{word-spacing:-43.344000px;}
.wsa9{word-spacing:-42.912000px;}
.ws71{word-spacing:-42.768000px;}
.ws3e{word-spacing:-42.336000px;}
.wsc9{word-spacing:-42.048000px;}
.ws2e{word-spacing:-41.400000px;}
.ws4a{word-spacing:-41.184000px;}
.wsa6{word-spacing:-40.824000px;}
.ws4{word-spacing:-40.032000px;}
.ws21{word-spacing:-39.744000px;}
.wscd{word-spacing:-39.528000px;}
.wsd6{word-spacing:-39.024000px;}
.ws8b{word-spacing:-38.592000px;}
.ws97{word-spacing:-38.088000px;}
.wsb9{word-spacing:-37.800000px;}
.wsb6{word-spacing:-37.512000px;}
.wsec{word-spacing:-37.440000px;}
.ws86{word-spacing:-37.008000px;}
.ws52{word-spacing:-36.792000px;}
.ws69{word-spacing:-36.360000px;}
.ws30{word-spacing:-36.144000px;}
.wsf6{word-spacing:-36.072000px;}
.ws6e{word-spacing:-35.496000px;}
.ws42{word-spacing:-35.280000px;}
.ws77{word-spacing:-34.776000px;}
.ws3f{word-spacing:-34.272000px;}
.wsef{word-spacing:-34.128000px;}
.wse8{word-spacing:-33.984000px;}
.wsf{word-spacing:-33.264000px;}
.wsf2{word-spacing:-32.184000px;}
.wsbe{word-spacing:-32.112000px;}
.ws6c{word-spacing:-31.248000px;}
.ws82{word-spacing:-31.104000px;}
.wsca{word-spacing:-30.672000px;}
.ws87{word-spacing:-30.600000px;}
.wse{word-spacing:-30.096000px;}
.wsd9{word-spacing:-29.880000px;}
.ws3c{word-spacing:-29.592000px;}
.wsd{word-spacing:-29.232000px;}
.wse4{word-spacing:-28.872000px;}
.ws10{word-spacing:-28.296000px;}
.wsb5{word-spacing:-27.936000px;}
.ws7d{word-spacing:-27.576000px;}
.wsc4{word-spacing:-27.144000px;}
.wsa1{word-spacing:-27.007200px;}
.ws66{word-spacing:-26.784000px;}
.wsab{word-spacing:-26.352000px;}
.ws58{word-spacing:-26.208000px;}
.ws9d{word-spacing:-25.416000px;}
.ws76{word-spacing:-25.200000px;}
.wsb8{word-spacing:-24.984000px;}
.ws1d{word-spacing:-24.768000px;}
.ws79{word-spacing:-23.688000px;}
.ws3d{word-spacing:-23.616000px;}
.ws11{word-spacing:-23.544000px;}
.ws60{word-spacing:-22.536000px;}
.ws84{word-spacing:-21.960000px;}
.ws5e{word-spacing:-21.528000px;}
.wsb2{word-spacing:-21.456000px;}
.wsed{word-spacing:-20.808000px;}
.ws57{word-spacing:-20.664000px;}
.wsa{word-spacing:-20.448000px;}
.wsc1{word-spacing:-19.944000px;}
.wsd1{word-spacing:-18.936000px;}
.ws36{word-spacing:-18.216000px;}
.ws2c{word-spacing:-17.928000px;}
.wsee{word-spacing:-17.568000px;}
.wsa5{word-spacing:-16.632000px;}
.ws59{word-spacing:-16.488000px;}
.ws8c{word-spacing:-16.344000px;}
.ws7f{word-spacing:-15.552000px;}
.ws18{word-spacing:-15.336000px;}
.ws89{word-spacing:-15.264000px;}
.ws6f{word-spacing:-15.120000px;}
.ws13{word-spacing:-15.000000px;}
.wse5{word-spacing:-14.976000px;}
.ws3a{word-spacing:-14.616000px;}
.ws27{word-spacing:-14.328000px;}
.wsdc{word-spacing:-14.184000px;}
.wsf5{word-spacing:-14.112000px;}
.ws68{word-spacing:-13.824000px;}
.ws95{word-spacing:-13.752000px;}
.ws12{word-spacing:-13.500000px;}
.wsf3{word-spacing:-13.320000px;}
.ws9{word-spacing:-12.960000px;}
.wsda{word-spacing:-11.808000px;}
.ws33{word-spacing:-11.592000px;}
.wsa8{word-spacing:-11.232000px;}
.ws2d{word-spacing:-10.872000px;}
.wscc{word-spacing:-10.152000px;}
.ws5b{word-spacing:-9.936000px;}
.wsa7{word-spacing:-9.216000px;}
.wscb{word-spacing:-8.856000px;}
.wsc7{word-spacing:-8.064000px;}
.wsb{word-spacing:-6.717600px;}
.ws1a{word-spacing:-6.624000px;}
.wsaf{word-spacing:-6.264000px;}
.ws9b{word-spacing:-5.839200px;}
.ws23{word-spacing:-5.680800px;}
.ws80{word-spacing:-3.456000px;}
.ws26{word-spacing:-3.384000px;}
.ws62{word-spacing:-3.240000px;}
.ws56{word-spacing:-2.808000px;}
.ws4d{word-spacing:-2.520000px;}
.ws6a{word-spacing:-1.944000px;}
.wsb3{word-spacing:-1.584000px;}
.ws5d{word-spacing:-0.720000px;}
.ws5{word-spacing:-0.144000px;}
.ws14{word-spacing:0.000000px;}
.ws1f{word-spacing:0.648000px;}
.ws17{word-spacing:0.720000px;}
.ws41{word-spacing:0.864000px;}
.ws8f{word-spacing:1.008000px;}
.wsa0{word-spacing:1.872000px;}
.wsd3{word-spacing:3.744000px;}
.ws32{word-spacing:4.320000px;}
.ws6{word-spacing:4.968000px;}
.wscf{word-spacing:5.976000px;}
.wse3{word-spacing:6.120000px;}
.ws1b{word-spacing:7.272000px;}
.ws7{word-spacing:7.344000px;}
.wsde{word-spacing:7.632000px;}
.wsad{word-spacing:8.352000px;}
.wsea{word-spacing:8.856000px;}
.ws38{word-spacing:9.216000px;}
.ws94{word-spacing:9.648000px;}
.ws4f{word-spacing:9.792000px;}
.ws67{word-spacing:10.152000px;}
.wsd2{word-spacing:10.440000px;}
.ws50{word-spacing:11.664000px;}
.wsdf{word-spacing:13.327200px;}
.ws88{word-spacing:13.752000px;}
.wse0{word-spacing:13.896000px;}
.wsb0{word-spacing:14.184000px;}
.ws44{word-spacing:14.904000px;}
.ws20{word-spacing:14.976000px;}
.wsbd{word-spacing:15.624000px;}
.ws8e{word-spacing:16.848000px;}
.wsd5{word-spacing:17.064000px;}
.ws4e{word-spacing:17.712000px;}
.ws2{word-spacing:17.856000px;}
.ws83{word-spacing:18.576000px;}
.wse7{word-spacing:18.792000px;}
.wsf8{word-spacing:19.440000px;}
.ws64{word-spacing:20.232000px;}
.ws54{word-spacing:21.384000px;}
.ws28{word-spacing:22.680000px;}
.wsf4{word-spacing:23.040000px;}
.ws8a{word-spacing:23.328000px;}
.wsb7{word-spacing:23.544000px;}
.ws63{word-spacing:23.976000px;}
.ws53{word-spacing:28.440000px;}
.wse1{word-spacing:28.656000px;}
.wsbc{word-spacing:31.104000px;}
.wsbf{word-spacing:32.184000px;}
.ws0{word-spacing:33.621000px;}
.ws61{word-spacing:35.568000px;}
.wse9{word-spacing:36.072000px;}
.wsd0{word-spacing:36.936000px;}
.ws6d{word-spacing:39.528000px;}
.wsf9{word-spacing:40.320000px;}
.wsc3{word-spacing:40.680000px;}
.ws78{word-spacing:41.904000px;}
.ws49{word-spacing:44.352000px;}
.ws5f{word-spacing:44.784000px;}
.wsc5{word-spacing:46.656000px;}
.wse6{word-spacing:49.824000px;}
.ws72{word-spacing:50.400000px;}
.ws22{word-spacing:50.976000px;}
.ws45{word-spacing:55.872000px;}
.ws99{word-spacing:56.448000px;}
.wsc0{word-spacing:59.616000px;}
.wsa2{word-spacing:62.856000px;}
.ws24{word-spacing:63.288000px;}
.wsba{word-spacing:64.440000px;}
.ws51{word-spacing:68.328000px;}
.ws73{word-spacing:68.688000px;}
.ws5c{word-spacing:68.904000px;}
.ws15{word-spacing:70.524000px;}
.wsa4{word-spacing:72.072000px;}
.ws74{word-spacing:72.432000px;}
.ws92{word-spacing:75.168000px;}
.wseb{word-spacing:77.040000px;}
.wsdb{word-spacing:77.832000px;}
.wsc6{word-spacing:82.368000px;}
.ws91{word-spacing:82.512000px;}
.wsdd{word-spacing:82.656000px;}
.ws39{word-spacing:85.320000px;}
.ws9e{word-spacing:92.448000px;}
.ws37{word-spacing:100.080000px;}
.ws5a{word-spacing:112.392000px;}
.ws70{word-spacing:134.136000px;}
.wsc2{word-spacing:135.144000px;}
.ws2a{word-spacing:135.720000px;}
.ws93{word-spacing:136.728000px;}
.ws31{word-spacing:142.416000px;}
.wsd7{word-spacing:157.536000px;}
.wsf1{word-spacing:194.112000px;}
.ws46{word-spacing:199.512000px;}
.ws90{word-spacing:200.376000px;}
.ws34{word-spacing:214.488000px;}
.wsf0{word-spacing:240.192000px;}
.wsd4{word-spacing:279.072000px;}
.ws1{word-spacing:386.314800px;}
.ws16{word-spacing:1699.977600px;}
._1{margin-left:-18.770400px;}
._18{margin-left:-17.725763px;}
._17{margin-left:-13.968000px;}
._3{margin-left:-12.456000px;}
._f{margin-left:-11.016000px;}
._d{margin-left:-9.000000px;}
._11{margin-left:-7.063837px;}
._8{margin-left:-5.594400px;}
._2{margin-left:-4.320000px;}
._6{margin-left:-3.024000px;}
._7{margin-left:-1.080000px;}
._4{width:1.152000px;}
._9{width:2.664000px;}
._5{width:4.536000px;}
._a{width:6.264000px;}
._b{width:7.416000px;}
._16{width:8.848800px;}
._c{width:10.152000px;}
._0{width:65.282400px;}
._13{width:66.319200px;}
._15{width:87.112800px;}
._1a{width:106.120800px;}
._14{width:110.872800px;}
._19{width:123.256800px;}
._12{width:152.848800px;}
._e{width:193.888800px;}
._10{width:205.336800px;}
.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.438750px;}
.y31{bottom:64.760550px;}
.y30{bottom:65.586600px;}
.y85{bottom:93.143700px;}
.y5c{bottom:93.364800px;}
.yd7{bottom:93.551850px;}
.yae{bottom:94.997550px;}
.y26{bottom:111.943050px;}
.y84{bottom:115.643700px;}
.y5b{bottom:115.864800px;}
.yd6{bottom:116.051850px;}
.yad{bottom:117.497550px;}
.y25{bottom:134.443050px;}
.y82{bottom:138.143700px;}
.y5a{bottom:138.364800px;}
.yd5{bottom:138.551850px;}
.yac{bottom:139.997550px;}
.y24{bottom:156.943050px;}
.y81{bottom:160.643700px;}
.y59{bottom:160.864800px;}
.yd4{bottom:161.051850px;}
.yab{bottom:162.497550px;}
.y23{bottom:179.443050px;}
.y80{bottom:183.143700px;}
.y58{bottom:183.364800px;}
.yd3{bottom:183.551850px;}
.yaa{bottom:184.997550px;}
.y22{bottom:201.943050px;}
.y7f{bottom:205.643700px;}
.y57{bottom:205.864800px;}
.yd2{bottom:206.051850px;}
.ya9{bottom:207.497550px;}
.y21{bottom:224.443050px;}
.y7e{bottom:228.143700px;}
.y56{bottom:228.364800px;}
.yd1{bottom:228.551850px;}
.ya8{bottom:229.997550px;}
.y20{bottom:246.943050px;}
.y7d{bottom:250.643700px;}
.y55{bottom:250.864800px;}
.yd0{bottom:251.051850px;}
.ya7{bottom:252.497550px;}
.y1f{bottom:269.443050px;}
.y7c{bottom:273.143700px;}
.y54{bottom:273.364800px;}
.ycf{bottom:273.551850px;}
.ya6{bottom:274.997550px;}
.y1e{bottom:291.943050px;}
.y7b{bottom:295.643700px;}
.yf7{bottom:295.830750px;}
.y53{bottom:295.864800px;}
.yce{bottom:296.051850px;}
.ya5{bottom:297.497550px;}
.y1d{bottom:314.443050px;}
.y7a{bottom:318.143700px;}
.yf6{bottom:318.330750px;}
.y52{bottom:318.364800px;}
.ycd{bottom:318.551850px;}
.ya4{bottom:319.997550px;}
.y1c{bottom:336.943050px;}
.y79{bottom:340.643700px;}
.yf5{bottom:340.830750px;}
.y51{bottom:340.864800px;}
.ycc{bottom:341.051850px;}
.ya3{bottom:342.497550px;}
.y1b{bottom:359.443050px;}
.y78{bottom:363.143700px;}
.yf4{bottom:363.330750px;}
.y50{bottom:363.364800px;}
.ycb{bottom:363.551850px;}
.ya2{bottom:364.997550px;}
.y1a{bottom:381.943050px;}
.y83{bottom:385.643700px;}
.yf3{bottom:385.830750px;}
.y4f{bottom:385.864800px;}
.yca{bottom:386.051850px;}
.ya1{bottom:387.497550px;}
.y19{bottom:404.443050px;}
.y77{bottom:408.143700px;}
.yf2{bottom:408.330750px;}
.y4e{bottom:408.364800px;}
.yc9{bottom:408.551850px;}
.ya0{bottom:409.997550px;}
.y18{bottom:426.943050px;}
.y76{bottom:430.643700px;}
.yf1{bottom:430.830750px;}
.y4d{bottom:430.864800px;}
.yc8{bottom:431.051850px;}
.y9f{bottom:432.497550px;}
.y75{bottom:453.143700px;}
.yf0{bottom:453.330750px;}
.y4c{bottom:453.364800px;}
.yc7{bottom:453.551850px;}
.y9e{bottom:454.997550px;}
.y2f{bottom:456.139950px;}
.y17{bottom:471.943050px;}
.y74{bottom:475.643700px;}
.yef{bottom:475.830750px;}
.y4b{bottom:475.864800px;}
.yc6{bottom:476.051850px;}
.y9d{bottom:477.497550px;}
.y2e{bottom:478.639950px;}
.y16{bottom:494.443050px;}
.y73{bottom:498.143700px;}
.yee{bottom:498.330750px;}
.y4a{bottom:498.364800px;}
.yc5{bottom:498.551850px;}
.y9c{bottom:499.997550px;}
.y2d{bottom:501.139950px;}
.y15{bottom:516.943050px;}
.y72{bottom:520.643700px;}
.yed{bottom:520.830750px;}
.y49{bottom:520.864800px;}
.yc4{bottom:521.051850px;}
.y9b{bottom:522.497550px;}
.y14{bottom:539.443050px;}
.y2c{bottom:541.639950px;}
.y71{bottom:543.143700px;}
.yec{bottom:543.330750px;}
.y48{bottom:543.364800px;}
.yc3{bottom:543.551850px;}
.y9a{bottom:544.997550px;}
.y13{bottom:561.943050px;}
.y70{bottom:565.643700px;}
.yeb{bottom:565.830750px;}
.y47{bottom:565.864800px;}
.yc2{bottom:566.051850px;}
.y99{bottom:567.497550px;}
.y12{bottom:584.443050px;}
.y2b{bottom:586.639950px;}
.y6f{bottom:588.143700px;}
.yea{bottom:588.330750px;}
.y46{bottom:588.364800px;}
.yc1{bottom:588.551850px;}
.y98{bottom:589.997550px;}
.y11{bottom:606.943050px;}
.y6e{bottom:610.643700px;}
.ye9{bottom:610.830750px;}
.y45{bottom:610.864800px;}
.yc0{bottom:611.051850px;}
.y97{bottom:612.497550px;}
.y2a{bottom:627.139950px;}
.y10{bottom:629.443050px;}
.y6d{bottom:633.143700px;}
.ye8{bottom:633.330750px;}
.y44{bottom:633.364800px;}
.ybf{bottom:633.551850px;}
.y96{bottom:634.997550px;}
.yf{bottom:651.943050px;}
.y6c{bottom:655.643700px;}
.ye7{bottom:655.830750px;}
.y43{bottom:655.864800px;}
.ybe{bottom:656.051850px;}
.y95{bottom:657.497550px;}
.y29{bottom:663.139950px;}
.ye{bottom:674.443050px;}
.y6b{bottom:678.143700px;}
.ye6{bottom:678.330750px;}
.y42{bottom:678.364800px;}
.ybd{bottom:678.551850px;}
.y94{bottom:679.997550px;}
.yd{bottom:696.943050px;}
.y28{bottom:699.139950px;}
.y6a{bottom:700.643700px;}
.ye5{bottom:700.830750px;}
.y41{bottom:700.864800px;}
.ybc{bottom:701.051850px;}
.y93{bottom:702.497550px;}
.yc{bottom:719.443050px;}
.y69{bottom:723.143700px;}
.ye4{bottom:723.330750px;}
.y40{bottom:723.364800px;}
.ybb{bottom:723.551850px;}
.y92{bottom:724.997550px;}
.y27{bottom:735.139950px;}
.yb{bottom:741.943050px;}
.y68{bottom:745.643700px;}
.ye3{bottom:745.830750px;}
.y3f{bottom:745.864800px;}
.yba{bottom:746.051850px;}
.y91{bottom:747.497550px;}
.ya{bottom:764.443050px;}
.y67{bottom:768.143700px;}
.ye2{bottom:768.330750px;}
.y3e{bottom:768.364800px;}
.yb9{bottom:768.551850px;}
.y90{bottom:769.997550px;}
.y9{bottom:786.943050px;}
.y66{bottom:790.643700px;}
.ye1{bottom:790.830750px;}
.y3d{bottom:790.864800px;}
.yb8{bottom:791.051850px;}
.y8f{bottom:792.497550px;}
.y8{bottom:809.443050px;}
.y65{bottom:813.143700px;}
.ye0{bottom:813.330750px;}
.y3c{bottom:813.364800px;}
.yb7{bottom:813.551850px;}
.y8e{bottom:814.997550px;}
.y7{bottom:831.943050px;}
.y64{bottom:835.643700px;}
.ydf{bottom:835.830750px;}
.y3b{bottom:835.864800px;}
.yb6{bottom:836.051850px;}
.y8d{bottom:837.497550px;}
.y63{bottom:858.143700px;}
.yde{bottom:858.330750px;}
.y3a{bottom:858.364800px;}
.yb5{bottom:858.551850px;}
.y8c{bottom:859.997550px;}
.y6{bottom:876.938550px;}
.y62{bottom:880.643700px;}
.ydd{bottom:880.830750px;}
.y39{bottom:880.864800px;}
.yb4{bottom:881.051850px;}
.y8b{bottom:882.497550px;}
.y5{bottom:897.943050px;}
.y61{bottom:903.143700px;}
.ydc{bottom:903.330750px;}
.y38{bottom:903.364800px;}
.yb3{bottom:903.551850px;}
.y8a{bottom:904.997550px;}
.y4{bottom:918.943050px;}
.y60{bottom:925.643700px;}
.ydb{bottom:925.830750px;}
.y37{bottom:925.864800px;}
.yb2{bottom:926.051850px;}
.y89{bottom:927.497550px;}
.y5f{bottom:948.143700px;}
.yda{bottom:948.330750px;}
.y36{bottom:948.364800px;}
.yb1{bottom:948.551850px;}
.y88{bottom:949.997550px;}
.y3{bottom:968.443050px;}
.y5e{bottom:970.643700px;}
.yd9{bottom:970.830750px;}
.y35{bottom:970.864800px;}
.yb0{bottom:971.051850px;}
.y87{bottom:972.497550px;}
.y5d{bottom:993.143700px;}
.yd8{bottom:993.330750px;}
.y34{bottom:993.364800px;}
.yaf{bottom:993.551850px;}
.y86{bottom:994.997550px;}
.y33{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y32{bottom:1039.374150px;}
.hd{height:34.176000px;}
.hc{height:34.560000px;}
.h8{height:40.634766px;}
.h9{height:41.660156px;}
.hb{height:42.000000px;}
.ha{height:42.720000px;}
.h6{height:46.200000px;}
.h7{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.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;}
.x9{left:63.779550px;}
.x2{left:65.202600px;}
.x1{left:71.253150px;}
.x8{left:73.559100px;}
.xd{left:85.039350px;}
.x7{left:224.187900px;}
.x3{left:275.051850px;}
.x6{left:389.152350px;}
.xe{left:399.965550px;}
.x11{left:409.295700px;}
.xc{left:412.272150px;}
.xf{left:421.195650px;}
.x5{left:502.507350px;}
.x4{left:539.277300px;}
.xb{left:614.196150px;}
.xa{left:632.875800px;}
.x10{left:664.454700px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:58.950400pt;}
.ws3{word-spacing:-64.000000pt;}
.ws48{word-spacing:-54.464000pt;}
.wsa3{word-spacing:-54.208000pt;}
.ws29{word-spacing:-53.696000pt;}
.ws19{word-spacing:-53.632000pt;}
.ws35{word-spacing:-53.376000pt;}
.ws55{word-spacing:-53.312000pt;}
.wsae{word-spacing:-52.992000pt;}
.ws9f{word-spacing:-52.800000pt;}
.ws98{word-spacing:-52.736000pt;}
.ws2b{word-spacing:-52.416000pt;}
.wsc8{word-spacing:-52.160000pt;}
.wsb4{word-spacing:-51.968000pt;}
.ws8d{word-spacing:-51.328000pt;}
.ws96{word-spacing:-51.200000pt;}
.ws40{word-spacing:-50.880000pt;}
.wsd8{word-spacing:-50.688000pt;}
.ws75{word-spacing:-49.152000pt;}
.ws3b{word-spacing:-49.088000pt;}
.wsaa{word-spacing:-48.832000pt;}
.ws81{word-spacing:-48.704000pt;}
.wsce{word-spacing:-48.192000pt;}
.ws7b{word-spacing:-47.552000pt;}
.ws9a{word-spacing:-46.912000pt;}
.wsbb{word-spacing:-46.208000pt;}
.ws85{word-spacing:-45.056000pt;}
.ws9c{word-spacing:-44.800000pt;}
.ws7e{word-spacing:-44.288000pt;}
.ws65{word-spacing:-43.968000pt;}
.ws1c{word-spacing:-43.904000pt;}
.ws6b{word-spacing:-43.776000pt;}
.ws7a{word-spacing:-43.648000pt;}
.wsc{word-spacing:-43.520000pt;}
.ws7c{word-spacing:-43.008000pt;}
.ws43{word-spacing:-42.880000pt;}
.ws4b{word-spacing:-41.792000pt;}
.ws47{word-spacing:-41.664000pt;}
.ws1e{word-spacing:-40.960000pt;}
.wsac{word-spacing:-40.832000pt;}
.ws4c{word-spacing:-40.768000pt;}
.wse2{word-spacing:-40.704000pt;}
.wsb1{word-spacing:-39.680000pt;}
.ws2f{word-spacing:-39.616000pt;}
.ws8{word-spacing:-39.552000pt;}
.ws25{word-spacing:-38.720000pt;}
.wsf7{word-spacing:-38.528000pt;}
.wsa9{word-spacing:-38.144000pt;}
.ws71{word-spacing:-38.016000pt;}
.ws3e{word-spacing:-37.632000pt;}
.wsc9{word-spacing:-37.376000pt;}
.ws2e{word-spacing:-36.800000pt;}
.ws4a{word-spacing:-36.608000pt;}
.wsa6{word-spacing:-36.288000pt;}
.ws4{word-spacing:-35.584000pt;}
.ws21{word-spacing:-35.328000pt;}
.wscd{word-spacing:-35.136000pt;}
.wsd6{word-spacing:-34.688000pt;}
.ws8b{word-spacing:-34.304000pt;}
.ws97{word-spacing:-33.856000pt;}
.wsb9{word-spacing:-33.600000pt;}
.wsb6{word-spacing:-33.344000pt;}
.wsec{word-spacing:-33.280000pt;}
.ws86{word-spacing:-32.896000pt;}
.ws52{word-spacing:-32.704000pt;}
.ws69{word-spacing:-32.320000pt;}
.ws30{word-spacing:-32.128000pt;}
.wsf6{word-spacing:-32.064000pt;}
.ws6e{word-spacing:-31.552000pt;}
.ws42{word-spacing:-31.360000pt;}
.ws77{word-spacing:-30.912000pt;}
.ws3f{word-spacing:-30.464000pt;}
.wsef{word-spacing:-30.336000pt;}
.wse8{word-spacing:-30.208000pt;}
.wsf{word-spacing:-29.568000pt;}
.wsf2{word-spacing:-28.608000pt;}
.wsbe{word-spacing:-28.544000pt;}
.ws6c{word-spacing:-27.776000pt;}
.ws82{word-spacing:-27.648000pt;}
.wsca{word-spacing:-27.264000pt;}
.ws87{word-spacing:-27.200000pt;}
.wse{word-spacing:-26.752000pt;}
.wsd9{word-spacing:-26.560000pt;}
.ws3c{word-spacing:-26.304000pt;}
.wsd{word-spacing:-25.984000pt;}
.wse4{word-spacing:-25.664000pt;}
.ws10{word-spacing:-25.152000pt;}
.wsb5{word-spacing:-24.832000pt;}
.ws7d{word-spacing:-24.512000pt;}
.wsc4{word-spacing:-24.128000pt;}
.wsa1{word-spacing:-24.006400pt;}
.ws66{word-spacing:-23.808000pt;}
.wsab{word-spacing:-23.424000pt;}
.ws58{word-spacing:-23.296000pt;}
.ws9d{word-spacing:-22.592000pt;}
.ws76{word-spacing:-22.400000pt;}
.wsb8{word-spacing:-22.208000pt;}
.ws1d{word-spacing:-22.016000pt;}
.ws79{word-spacing:-21.056000pt;}
.ws3d{word-spacing:-20.992000pt;}
.ws11{word-spacing:-20.928000pt;}
.ws60{word-spacing:-20.032000pt;}
.ws84{word-spacing:-19.520000pt;}
.ws5e{word-spacing:-19.136000pt;}
.wsb2{word-spacing:-19.072000pt;}
.wsed{word-spacing:-18.496000pt;}
.ws57{word-spacing:-18.368000pt;}
.wsa{word-spacing:-18.176000pt;}
.wsc1{word-spacing:-17.728000pt;}
.wsd1{word-spacing:-16.832000pt;}
.ws36{word-spacing:-16.192000pt;}
.ws2c{word-spacing:-15.936000pt;}
.wsee{word-spacing:-15.616000pt;}
.wsa5{word-spacing:-14.784000pt;}
.ws59{word-spacing:-14.656000pt;}
.ws8c{word-spacing:-14.528000pt;}
.ws7f{word-spacing:-13.824000pt;}
.ws18{word-spacing:-13.632000pt;}
.ws89{word-spacing:-13.568000pt;}
.ws6f{word-spacing:-13.440000pt;}
.ws13{word-spacing:-13.333333pt;}
.wse5{word-spacing:-13.312000pt;}
.ws3a{word-spacing:-12.992000pt;}
.ws27{word-spacing:-12.736000pt;}
.wsdc{word-spacing:-12.608000pt;}
.wsf5{word-spacing:-12.544000pt;}
.ws68{word-spacing:-12.288000pt;}
.ws95{word-spacing:-12.224000pt;}
.ws12{word-spacing:-12.000000pt;}
.wsf3{word-spacing:-11.840000pt;}
.ws9{word-spacing:-11.520000pt;}
.wsda{word-spacing:-10.496000pt;}
.ws33{word-spacing:-10.304000pt;}
.wsa8{word-spacing:-9.984000pt;}
.ws2d{word-spacing:-9.664000pt;}
.wscc{word-spacing:-9.024000pt;}
.ws5b{word-spacing:-8.832000pt;}
.wsa7{word-spacing:-8.192000pt;}
.wscb{word-spacing:-7.872000pt;}
.wsc7{word-spacing:-7.168000pt;}
.wsb{word-spacing:-5.971200pt;}
.ws1a{word-spacing:-5.888000pt;}
.wsaf{word-spacing:-5.568000pt;}
.ws9b{word-spacing:-5.190400pt;}
.ws23{word-spacing:-5.049600pt;}
.ws80{word-spacing:-3.072000pt;}
.ws26{word-spacing:-3.008000pt;}
.ws62{word-spacing:-2.880000pt;}
.ws56{word-spacing:-2.496000pt;}
.ws4d{word-spacing:-2.240000pt;}
.ws6a{word-spacing:-1.728000pt;}
.wsb3{word-spacing:-1.408000pt;}
.ws5d{word-spacing:-0.640000pt;}
.ws5{word-spacing:-0.128000pt;}
.ws14{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.576000pt;}
.ws17{word-spacing:0.640000pt;}
.ws41{word-spacing:0.768000pt;}
.ws8f{word-spacing:0.896000pt;}
.wsa0{word-spacing:1.664000pt;}
.wsd3{word-spacing:3.328000pt;}
.ws32{word-spacing:3.840000pt;}
.ws6{word-spacing:4.416000pt;}
.wscf{word-spacing:5.312000pt;}
.wse3{word-spacing:5.440000pt;}
.ws1b{word-spacing:6.464000pt;}
.ws7{word-spacing:6.528000pt;}
.wsde{word-spacing:6.784000pt;}
.wsad{word-spacing:7.424000pt;}
.wsea{word-spacing:7.872000pt;}
.ws38{word-spacing:8.192000pt;}
.ws94{word-spacing:8.576000pt;}
.ws4f{word-spacing:8.704000pt;}
.ws67{word-spacing:9.024000pt;}
.wsd2{word-spacing:9.280000pt;}
.ws50{word-spacing:10.368000pt;}
.wsdf{word-spacing:11.846400pt;}
.ws88{word-spacing:12.224000pt;}
.wse0{word-spacing:12.352000pt;}
.wsb0{word-spacing:12.608000pt;}
.ws44{word-spacing:13.248000pt;}
.ws20{word-spacing:13.312000pt;}
.wsbd{word-spacing:13.888000pt;}
.ws8e{word-spacing:14.976000pt;}
.wsd5{word-spacing:15.168000pt;}
.ws4e{word-spacing:15.744000pt;}
.ws2{word-spacing:15.872000pt;}
.ws83{word-spacing:16.512000pt;}
.wse7{word-spacing:16.704000pt;}
.wsf8{word-spacing:17.280000pt;}
.ws64{word-spacing:17.984000pt;}
.ws54{word-spacing:19.008000pt;}
.ws28{word-spacing:20.160000pt;}
.wsf4{word-spacing:20.480000pt;}
.ws8a{word-spacing:20.736000pt;}
.wsb7{word-spacing:20.928000pt;}
.ws63{word-spacing:21.312000pt;}
.ws53{word-spacing:25.280000pt;}
.wse1{word-spacing:25.472000pt;}
.wsbc{word-spacing:27.648000pt;}
.wsbf{word-spacing:28.608000pt;}
.ws0{word-spacing:29.885333pt;}
.ws61{word-spacing:31.616000pt;}
.wse9{word-spacing:32.064000pt;}
.wsd0{word-spacing:32.832000pt;}
.ws6d{word-spacing:35.136000pt;}
.wsf9{word-spacing:35.840000pt;}
.wsc3{word-spacing:36.160000pt;}
.ws78{word-spacing:37.248000pt;}
.ws49{word-spacing:39.424000pt;}
.ws5f{word-spacing:39.808000pt;}
.wsc5{word-spacing:41.472000pt;}
.wse6{word-spacing:44.288000pt;}
.ws72{word-spacing:44.800000pt;}
.ws22{word-spacing:45.312000pt;}
.ws45{word-spacing:49.664000pt;}
.ws99{word-spacing:50.176000pt;}
.wsc0{word-spacing:52.992000pt;}
.wsa2{word-spacing:55.872000pt;}
.ws24{word-spacing:56.256000pt;}
.wsba{word-spacing:57.280000pt;}
.ws51{word-spacing:60.736000pt;}
.ws73{word-spacing:61.056000pt;}
.ws5c{word-spacing:61.248000pt;}
.ws15{word-spacing:62.688000pt;}
.wsa4{word-spacing:64.064000pt;}
.ws74{word-spacing:64.384000pt;}
.ws92{word-spacing:66.816000pt;}
.wseb{word-spacing:68.480000pt;}
.wsdb{word-spacing:69.184000pt;}
.wsc6{word-spacing:73.216000pt;}
.ws91{word-spacing:73.344000pt;}
.wsdd{word-spacing:73.472000pt;}
.ws39{word-spacing:75.840000pt;}
.ws9e{word-spacing:82.176000pt;}
.ws37{word-spacing:88.960000pt;}
.ws5a{word-spacing:99.904000pt;}
.ws70{word-spacing:119.232000pt;}
.wsc2{word-spacing:120.128000pt;}
.ws2a{word-spacing:120.640000pt;}
.ws93{word-spacing:121.536000pt;}
.ws31{word-spacing:126.592000pt;}
.wsd7{word-spacing:140.032000pt;}
.wsf1{word-spacing:172.544000pt;}
.ws46{word-spacing:177.344000pt;}
.ws90{word-spacing:178.112000pt;}
.ws34{word-spacing:190.656000pt;}
.wsf0{word-spacing:213.504000pt;}
.wsd4{word-spacing:248.064000pt;}
.ws1{word-spacing:343.390933pt;}
.ws16{word-spacing:1511.091200pt;}
._1{margin-left:-16.684800pt;}
._18{margin-left:-15.756234pt;}
._17{margin-left:-12.416000pt;}
._3{margin-left:-11.072000pt;}
._f{margin-left:-9.792000pt;}
._d{margin-left:-8.000000pt;}
._11{margin-left:-6.278966pt;}
._8{margin-left:-4.972800pt;}
._2{margin-left:-3.840000pt;}
._6{margin-left:-2.688000pt;}
._7{margin-left:-0.960000pt;}
._4{width:1.024000pt;}
._9{width:2.368000pt;}
._5{width:4.032000pt;}
._a{width:5.568000pt;}
._b{width:6.592000pt;}
._16{width:7.865600pt;}
._c{width:9.024000pt;}
._0{width:58.028800pt;}
._13{width:58.950400pt;}
._15{width:77.433600pt;}
._1a{width:94.329600pt;}
._14{width:98.553600pt;}
._19{width:109.561600pt;}
._12{width:135.865600pt;}
._e{width:172.345600pt;}
._10{width:182.521600pt;}
.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.390000pt;}
.y31{bottom:57.564933pt;}
.y30{bottom:58.299200pt;}
.y85{bottom:82.794400pt;}
.y5c{bottom:82.990933pt;}
.yd7{bottom:83.157200pt;}
.yae{bottom:84.442267pt;}
.y26{bottom:99.504933pt;}
.y84{bottom:102.794400pt;}
.y5b{bottom:102.990933pt;}
.yd6{bottom:103.157200pt;}
.yad{bottom:104.442267pt;}
.y25{bottom:119.504933pt;}
.y82{bottom:122.794400pt;}
.y5a{bottom:122.990933pt;}
.yd5{bottom:123.157200pt;}
.yac{bottom:124.442267pt;}
.y24{bottom:139.504933pt;}
.y81{bottom:142.794400pt;}
.y59{bottom:142.990933pt;}
.yd4{bottom:143.157200pt;}
.yab{bottom:144.442267pt;}
.y23{bottom:159.504933pt;}
.y80{bottom:162.794400pt;}
.y58{bottom:162.990933pt;}
.yd3{bottom:163.157200pt;}
.yaa{bottom:164.442267pt;}
.y22{bottom:179.504933pt;}
.y7f{bottom:182.794400pt;}
.y57{bottom:182.990933pt;}
.yd2{bottom:183.157200pt;}
.ya9{bottom:184.442267pt;}
.y21{bottom:199.504933pt;}
.y7e{bottom:202.794400pt;}
.y56{bottom:202.990933pt;}
.yd1{bottom:203.157200pt;}
.ya8{bottom:204.442267pt;}
.y20{bottom:219.504933pt;}
.y7d{bottom:222.794400pt;}
.y55{bottom:222.990933pt;}
.yd0{bottom:223.157200pt;}
.ya7{bottom:224.442267pt;}
.y1f{bottom:239.504933pt;}
.y7c{bottom:242.794400pt;}
.y54{bottom:242.990933pt;}
.ycf{bottom:243.157200pt;}
.ya6{bottom:244.442267pt;}
.y1e{bottom:259.504933pt;}
.y7b{bottom:262.794400pt;}
.yf7{bottom:262.960667pt;}
.y53{bottom:262.990933pt;}
.yce{bottom:263.157200pt;}
.ya5{bottom:264.442267pt;}
.y1d{bottom:279.504933pt;}
.y7a{bottom:282.794400pt;}
.yf6{bottom:282.960667pt;}
.y52{bottom:282.990933pt;}
.ycd{bottom:283.157200pt;}
.ya4{bottom:284.442267pt;}
.y1c{bottom:299.504933pt;}
.y79{bottom:302.794400pt;}
.yf5{bottom:302.960667pt;}
.y51{bottom:302.990933pt;}
.ycc{bottom:303.157200pt;}
.ya3{bottom:304.442267pt;}
.y1b{bottom:319.504933pt;}
.y78{bottom:322.794400pt;}
.yf4{bottom:322.960667pt;}
.y50{bottom:322.990933pt;}
.ycb{bottom:323.157200pt;}
.ya2{bottom:324.442267pt;}
.y1a{bottom:339.504933pt;}
.y83{bottom:342.794400pt;}
.yf3{bottom:342.960667pt;}
.y4f{bottom:342.990933pt;}
.yca{bottom:343.157200pt;}
.ya1{bottom:344.442267pt;}
.y19{bottom:359.504933pt;}
.y77{bottom:362.794400pt;}
.yf2{bottom:362.960667pt;}
.y4e{bottom:362.990933pt;}
.yc9{bottom:363.157200pt;}
.ya0{bottom:364.442267pt;}
.y18{bottom:379.504933pt;}
.y76{bottom:382.794400pt;}
.yf1{bottom:382.960667pt;}
.y4d{bottom:382.990933pt;}
.yc8{bottom:383.157200pt;}
.y9f{bottom:384.442267pt;}
.y75{bottom:402.794400pt;}
.yf0{bottom:402.960667pt;}
.y4c{bottom:402.990933pt;}
.yc7{bottom:403.157200pt;}
.y9e{bottom:404.442267pt;}
.y2f{bottom:405.457733pt;}
.y17{bottom:419.504933pt;}
.y74{bottom:422.794400pt;}
.yef{bottom:422.960667pt;}
.y4b{bottom:422.990933pt;}
.yc6{bottom:423.157200pt;}
.y9d{bottom:424.442267pt;}
.y2e{bottom:425.457733pt;}
.y16{bottom:439.504933pt;}
.y73{bottom:442.794400pt;}
.yee{bottom:442.960667pt;}
.y4a{bottom:442.990933pt;}
.yc5{bottom:443.157200pt;}
.y9c{bottom:444.442267pt;}
.y2d{bottom:445.457733pt;}
.y15{bottom:459.504933pt;}
.y72{bottom:462.794400pt;}
.yed{bottom:462.960667pt;}
.y49{bottom:462.990933pt;}
.yc4{bottom:463.157200pt;}
.y9b{bottom:464.442267pt;}
.y14{bottom:479.504933pt;}
.y2c{bottom:481.457733pt;}
.y71{bottom:482.794400pt;}
.yec{bottom:482.960667pt;}
.y48{bottom:482.990933pt;}
.yc3{bottom:483.157200pt;}
.y9a{bottom:484.442267pt;}
.y13{bottom:499.504933pt;}
.y70{bottom:502.794400pt;}
.yeb{bottom:502.960667pt;}
.y47{bottom:502.990933pt;}
.yc2{bottom:503.157200pt;}
.y99{bottom:504.442267pt;}
.y12{bottom:519.504933pt;}
.y2b{bottom:521.457733pt;}
.y6f{bottom:522.794400pt;}
.yea{bottom:522.960667pt;}
.y46{bottom:522.990933pt;}
.yc1{bottom:523.157200pt;}
.y98{bottom:524.442267pt;}
.y11{bottom:539.504933pt;}
.y6e{bottom:542.794400pt;}
.ye9{bottom:542.960667pt;}
.y45{bottom:542.990933pt;}
.yc0{bottom:543.157200pt;}
.y97{bottom:544.442267pt;}
.y2a{bottom:557.457733pt;}
.y10{bottom:559.504933pt;}
.y6d{bottom:562.794400pt;}
.ye8{bottom:562.960667pt;}
.y44{bottom:562.990933pt;}
.ybf{bottom:563.157200pt;}
.y96{bottom:564.442267pt;}
.yf{bottom:579.504933pt;}
.y6c{bottom:582.794400pt;}
.ye7{bottom:582.960667pt;}
.y43{bottom:582.990933pt;}
.ybe{bottom:583.157200pt;}
.y95{bottom:584.442267pt;}
.y29{bottom:589.457733pt;}
.ye{bottom:599.504933pt;}
.y6b{bottom:602.794400pt;}
.ye6{bottom:602.960667pt;}
.y42{bottom:602.990933pt;}
.ybd{bottom:603.157200pt;}
.y94{bottom:604.442267pt;}
.yd{bottom:619.504933pt;}
.y28{bottom:621.457733pt;}
.y6a{bottom:622.794400pt;}
.ye5{bottom:622.960667pt;}
.y41{bottom:622.990933pt;}
.ybc{bottom:623.157200pt;}
.y93{bottom:624.442267pt;}
.yc{bottom:639.504933pt;}
.y69{bottom:642.794400pt;}
.ye4{bottom:642.960667pt;}
.y40{bottom:642.990933pt;}
.ybb{bottom:643.157200pt;}
.y92{bottom:644.442267pt;}
.y27{bottom:653.457733pt;}
.yb{bottom:659.504933pt;}
.y68{bottom:662.794400pt;}
.ye3{bottom:662.960667pt;}
.y3f{bottom:662.990933pt;}
.yba{bottom:663.157200pt;}
.y91{bottom:664.442267pt;}
.ya{bottom:679.504933pt;}
.y67{bottom:682.794400pt;}
.ye2{bottom:682.960667pt;}
.y3e{bottom:682.990933pt;}
.yb9{bottom:683.157200pt;}
.y90{bottom:684.442267pt;}
.y9{bottom:699.504933pt;}
.y66{bottom:702.794400pt;}
.ye1{bottom:702.960667pt;}
.y3d{bottom:702.990933pt;}
.yb8{bottom:703.157200pt;}
.y8f{bottom:704.442267pt;}
.y8{bottom:719.504933pt;}
.y65{bottom:722.794400pt;}
.ye0{bottom:722.960667pt;}
.y3c{bottom:722.990933pt;}
.yb7{bottom:723.157200pt;}
.y8e{bottom:724.442267pt;}
.y7{bottom:739.504933pt;}
.y64{bottom:742.794400pt;}
.ydf{bottom:742.960667pt;}
.y3b{bottom:742.990933pt;}
.yb6{bottom:743.157200pt;}
.y8d{bottom:744.442267pt;}
.y63{bottom:762.794400pt;}
.yde{bottom:762.960667pt;}
.y3a{bottom:762.990933pt;}
.yb5{bottom:763.157200pt;}
.y8c{bottom:764.442267pt;}
.y6{bottom:779.500933pt;}
.y62{bottom:782.794400pt;}
.ydd{bottom:782.960667pt;}
.y39{bottom:782.990933pt;}
.yb4{bottom:783.157200pt;}
.y8b{bottom:784.442267pt;}
.y5{bottom:798.171600pt;}
.y61{bottom:802.794400pt;}
.ydc{bottom:802.960667pt;}
.y38{bottom:802.990933pt;}
.yb3{bottom:803.157200pt;}
.y8a{bottom:804.442267pt;}
.y4{bottom:816.838267pt;}
.y60{bottom:822.794400pt;}
.ydb{bottom:822.960667pt;}
.y37{bottom:822.990933pt;}
.yb2{bottom:823.157200pt;}
.y89{bottom:824.442267pt;}
.y5f{bottom:842.794400pt;}
.yda{bottom:842.960667pt;}
.y36{bottom:842.990933pt;}
.yb1{bottom:843.157200pt;}
.y88{bottom:844.442267pt;}
.y3{bottom:860.838267pt;}
.y5e{bottom:862.794400pt;}
.yd9{bottom:862.960667pt;}
.y35{bottom:862.990933pt;}
.yb0{bottom:863.157200pt;}
.y87{bottom:864.442267pt;}
.y5d{bottom:882.794400pt;}
.yd8{bottom:882.960667pt;}
.y34{bottom:882.990933pt;}
.yaf{bottom:883.157200pt;}
.y86{bottom:884.442267pt;}
.y33{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y32{bottom:923.888133pt;}
.hd{height:30.378667pt;}
.hc{height:30.720000pt;}
.h8{height:36.119792pt;}
.h9{height:37.031250pt;}
.hb{height:37.333333pt;}
.ha{height:37.973333pt;}
.h6{height:41.066667pt;}
.h7{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.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;}
.x9{left:56.692933pt;}
.x2{left:57.957867pt;}
.x1{left:63.336133pt;}
.x8{left:65.385867pt;}
.xd{left:75.590533pt;}
.x7{left:199.278133pt;}
.x3{left:244.490533pt;}
.x6{left:345.913200pt;}
.xe{left:355.524933pt;}
.x11{left:363.818400pt;}
.xc{left:366.464133pt;}
.xf{left:374.396133pt;}
.x5{left:446.673200pt;}
.x4{left:479.357600pt;}
.xb{left:545.952133pt;}
.xa{left:562.556267pt;}
.x10{left:590.626400pt;}
}




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