
    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_fde86929cd4c6c348a45af44.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_0e57ad5a977697d9efd7fe94.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_31293bf1e4dbb28d70b3380f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_21820420e8db6f2ef8522fe0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_5b9c5d60da426bf34e302f17.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_042c4efe2be0d4d3404492f1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_f9b667f11d2c2113f7979153.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_20bf3c4b3bced325ff46978d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_180269cf92f04247e941c42e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_6ed48df3947fc22f05ec9323.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_db369aef6194fd5570e90981.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919922;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_920d2fe90ed938778e5b4403.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.776855;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_d47ca82a0acaa6d016825f43.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.940430;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_bd86ccd6612e6a9e71ace3f1.woff2')format("woff");}.fff{font-family:fff;line-height:1.040039;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_898eb21f35853732de419457.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.752441;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_2950fdc3cb52ea9d1a728277.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.751953;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m4{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-27.360000px;}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.ve{vertical-align:-18.000000px;}
.vb{vertical-align:-15.120000px;}
.v9{vertical-align:-11.520000px;}
.v7{vertical-align:-8.640000px;}
.v4{vertical-align:-5.760000px;}
.v10{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:2.880000px;}
.v5{vertical-align:5.760000px;}
.v6{vertical-align:9.360000px;}
.v8{vertical-align:12.240000px;}
.va{vertical-align:15.120000px;}
.v1{vertical-align:23.760000px;}
.vc{vertical-align:27.360000px;}
.ls2c{letter-spacing:-1.182000px;}
.ls51{letter-spacing:-1.134000px;}
.ls4e{letter-spacing:-1.080000px;}
.ls25{letter-spacing:-0.720000px;}
.ls46{letter-spacing:-0.666000px;}
.ls39{letter-spacing:-0.460200px;}
.ls38{letter-spacing:-0.360000px;}
.ls4d{letter-spacing:-0.337200px;}
.ls3a{letter-spacing:-0.305400px;}
.ls5d{letter-spacing:-0.259800px;}
.ls28{letter-spacing:-0.216000px;}
.ls50{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.053280px;}
.lsa{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.004320px;}
.ls35{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.053280px;}
.ls1a{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.106560px;}
.ls29{letter-spacing:0.106800px;}
.ls53{letter-spacing:0.120000px;}
.ls30{letter-spacing:0.120960px;}
.ls40{letter-spacing:0.124320px;}
.ls2b{letter-spacing:0.135600px;}
.ls1f{letter-spacing:0.144000px;}
.ls5c{letter-spacing:0.153600px;}
.lsd{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.206400px;}
.ls24{letter-spacing:0.206640px;}
.ls2f{letter-spacing:0.209520px;}
.ls19{letter-spacing:0.216000px;}
.ls54{letter-spacing:0.246240px;}
.ls34{letter-spacing:0.259200px;}
.ls27{letter-spacing:0.259800px;}
.lse{letter-spacing:0.259920px;}
.ls3b{letter-spacing:0.262200px;}
.ls5b{letter-spacing:0.298800px;}
.ls41{letter-spacing:0.329040px;}
.ls1e{letter-spacing:0.336000px;}
.ls9{letter-spacing:0.360000px;}
.ls3f{letter-spacing:0.386640px;}
.ls57{letter-spacing:0.466800px;}
.ls49{letter-spacing:0.491471px;}
.ls21{letter-spacing:0.504000px;}
.ls26{letter-spacing:0.666000px;}
.ls4a{letter-spacing:0.707340px;}
.ls4f{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.792000px;}
.ls5e{letter-spacing:0.828000px;}
.ls37{letter-spacing:0.924000px;}
.ls4b{letter-spacing:1.040277px;}
.ls3{letter-spacing:1.098720px;}
.ls4{letter-spacing:1.416000px;}
.ls8{letter-spacing:1.421280px;}
.ls1{letter-spacing:1.458000px;}
.ls5{letter-spacing:1.591920px;}
.ls0{letter-spacing:1.629360px;}
.ls7{letter-spacing:1.762560px;}
.ls2{letter-spacing:1.800000px;}
.ls6{letter-spacing:2.280000px;}
.ls55{letter-spacing:2.340000px;}
.ls48{letter-spacing:5.940000px;}
.ls1d{letter-spacing:6.480000px;}
.ls3d{letter-spacing:6.665760px;}
.ls1b{letter-spacing:7.200000px;}
.ls45{letter-spacing:8.100000px;}
.ls4c{letter-spacing:8.820000px;}
.ls47{letter-spacing:9.306720px;}
.ls33{letter-spacing:10.026720px;}
.ls2d{letter-spacing:10.746720px;}
.ls1c{letter-spacing:10.800000px;}
.ls5a{letter-spacing:11.466720px;}
.ls15{letter-spacing:11.700000px;}
.ls36{letter-spacing:12.420000px;}
.ls20{letter-spacing:14.400000px;}
.ls2e{letter-spacing:19.620000px;}
.ls56{letter-spacing:24.426720px;}
.ls52{letter-spacing:25.866720px;}
.ls59{letter-spacing:41.850720px;}
.ls10{letter-spacing:42.426720px;}
.lsf{letter-spacing:43.866720px;}
.ls11{letter-spacing:46.026720px;}
.ls42{letter-spacing:51.786720px;}
.ls32{letter-spacing:64.944000px;}
.ls31{letter-spacing:65.664000px;}
.ls17{letter-spacing:66.420000px;}
.ls44{letter-spacing:67.284000px;}
.ls3c{letter-spacing:70.695360px;}
.ls43{letter-spacing:93.060000px;}
.ls22{letter-spacing:93.204000px;}
.ls12{letter-spacing:108.090720px;}
.ls58{letter-spacing:154.170720px;}
.ls13{letter-spacing:172.170720px;}
.ls16{letter-spacing:198.810720px;}
.ls14{letter-spacing:307.530720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(43,43,54),0 0.015em rgb(43,43,54),0.015em 0 rgb(43,43,54),0 -0.015em  rgb(43,43,54);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(43,43,54);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-72.000000px;}
.wsa{word-spacing:-59.760000px;}
.ws1d{word-spacing:-59.422800px;}
.wsf{word-spacing:-41.040000px;}
.ws18{word-spacing:-38.880000px;}
.ws1c{word-spacing:-34.063200px;}
.ws0{word-spacing:-20.856000px;}
.wsc{word-spacing:-18.000000px;}
.ws1f{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws1a{word-spacing:-16.822200px;}
.ws1{word-spacing:-16.560000px;}
.ws19{word-spacing:-16.254600px;}
.ws15{word-spacing:-15.864000px;}
.ws9{word-spacing:-15.606000px;}
.ws21{word-spacing:-15.406800px;}
.ws7{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.ws12{word-spacing:-15.146400px;}
.ws22{word-spacing:-15.093600px;}
.ws13{word-spacing:-15.075600px;}
.ws11{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws23{word-spacing:-14.680200px;}
.ws16{word-spacing:-14.580000px;}
.ws17{word-spacing:-14.479800px;}
.ws1b{word-spacing:-14.274000px;}
.ws1e{word-spacing:-13.860000px;}
.ws20{word-spacing:-13.806000px;}
.ws14{word-spacing:-13.758000px;}
.wsd{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._2{margin-left:-2681.838480px;}
._4{margin-left:-1391.774400px;}
._6{margin-left:-1023.235200px;}
._5{margin-left:-997.269120px;}
._d{margin-left:-762.600000px;}
._7{margin-left:-543.193920px;}
._e{margin-left:-532.503360px;}
._19{margin-left:-526.143360px;}
._1a{margin-left:-524.845440px;}
._2b{margin-left:-523.350720px;}
._c{margin-left:-462.620160px;}
._2a{margin-left:-461.520000px;}
._29{margin-left:-445.860000px;}
._b{margin-left:-363.060000px;}
._15{margin-left:-271.248480px;}
._10{margin-left:-264.240000px;}
._8{margin-left:-243.360000px;}
._f{margin-left:-230.400000px;}
._16{margin-left:-204.151680px;}
._9{margin-left:-193.950720px;}
._11{margin-left:-165.600000px;}
._18{margin-left:-151.920000px;}
._28{margin-left:-146.880000px;}
._14{margin-left:-101.520000px;}
._13{margin-left:-99.360000px;}
._a{margin-left:-82.800000px;}
._27{margin-left:-81.699840px;}
._12{margin-left:-66.240000px;}
._17{margin-left:-49.680000px;}
._30{margin-left:-9.846840px;}
._1b{margin-left:-6.349440px;}
._26{margin-left:-4.962240px;}
._1f{margin-left:-3.359520px;}
._1c{margin-left:-2.160000px;}
._3{margin-left:-1.059840px;}
._1{width:1.321920px;}
._0{width:2.740080px;}
._1d{width:4.023600px;}
._1e{width:5.339760px;}
._23{width:6.550560px;}
._24{width:7.609200px;}
._25{width:9.458880px;}
._20{width:10.595520px;}
._21{width:12.515760px;}
._2c{width:13.864320px;}
._2f{width:16.668000px;}
._2e{width:23.771280px;}
._31{width:32.379840px;}
._32{width:34.003440px;}
._2d{width:165.744000px;}
._22{width:252.144000px;}
.fc4{color:rgb(28,28,31);}
.fc3{color:rgb(17,23,37);}
.fc2{color:rgb(43,43,54);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs9{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:62.991941px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fsa{font-size:87.120000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:3.240000px;}
.ya0{bottom:3.600000px;}
.yaa{bottom:3.780000px;}
.ya2{bottom:5.040000px;}
.ya3{bottom:5.220000px;}
.ycd{bottom:9.225000px;}
.yd1{bottom:9.360000px;}
.ycf{bottom:9.720000px;}
.yb0{bottom:10.074000px;}
.ya6{bottom:10.080000px;}
.yac{bottom:10.260000px;}
.yb7{bottom:10.440000px;}
.ybd{bottom:10.620000px;}
.yaf{bottom:10.794000px;}
.ya5{bottom:10.800000px;}
.yb1{bottom:10.974000px;}
.ya7{bottom:10.980000px;}
.yb3{bottom:11.160000px;}
.y6{bottom:60.336000px;}
.yf6{bottom:90.936000px;}
.y30{bottom:93.276000px;}
.yb4{bottom:95.796000px;}
.y62{bottom:99.756000px;}
.y118{bottom:101.196000px;}
.y111{bottom:102.096000px;}
.y73{bottom:106.956000px;}
.yf5{bottom:110.916000px;}
.y2f{bottom:113.076000px;}
.yb2{bottom:116.316000px;}
.y110{bottom:119.376000px;}
.y61{bottom:119.556000px;}
.y117{bottom:121.176000px;}
.yf4{bottom:130.716000px;}
.y2e{bottom:132.876000px;}
.y10f{bottom:138.996000px;}
.y60{bottom:139.536000px;}
.y116{bottom:140.976000px;}
.yae{bottom:141.696000px;}
.yf3{bottom:150.510000px;}
.y2d{bottom:152.670000px;}
.y8a{bottom:156.090000px;}
.y10e{bottom:158.790000px;}
.y5f{bottom:159.330000px;}
.y115{bottom:160.770000px;}
.yad{bottom:166.890000px;}
.yf2{bottom:170.310000px;}
.y2c{bottom:172.650000px;}
.y89{bottom:176.070000px;}
.y10d{bottom:179.310000px;}
.y114{bottom:180.570000px;}
.y5e{bottom:180.750000px;}
.yf1{bottom:190.110000px;}
.yab{bottom:192.090000px;}
.y2b{bottom:192.450000px;}
.y10c{bottom:200.370000px;}
.y72{bottom:201.270000px;}
.y5d{bottom:203.430000px;}
.yf0{bottom:210.090000px;}
.y2a{bottom:212.250000px;}
.ya9{bottom:217.290000px;}
.y71{bottom:218.010000px;}
.yd3{bottom:220.170000px;}
.y10b{bottom:220.350000px;}
.y5c{bottom:224.850000px;}
.y5b{bottom:227.010000px;}
.yef{bottom:229.890000px;}
.y29{bottom:232.050000px;}
.ya8{bottom:235.290000px;}
.yd2{bottom:239.970000px;}
.y10a{bottom:240.150000px;}
.y5a{bottom:249.150000px;}
.yee{bottom:249.690000px;}
.y28{bottom:251.850000px;}
.yd0{bottom:254.550000px;}
.y109{bottom:259.950000px;}
.ya4{bottom:260.490000px;}
.yed{bottom:269.130000px;}
.y59{bottom:270.390000px;}
.y27{bottom:271.650000px;}
.yce{bottom:278.310000px;}
.y108{bottom:279.750000px;}
.ya1{bottom:285.690000px;}
.yec{bottom:289.290000px;}
.y58{bottom:292.710000px;}
.y107{bottom:299.550000px;}
.y26{bottom:300.630000px;}
.ycc{bottom:302.430000px;}
.y9f{bottom:305.310000px;}
.yeb{bottom:309.315000px;}
.y106{bottom:319.575000px;}
.y70{bottom:320.115000px;}
.y25{bottom:320.475000px;}
.y9d{bottom:323.355000px;}
.yea{bottom:329.115000px;}
.ycb{bottom:332.175000px;}
.y57{bottom:336.855000px;}
.y105{bottom:339.375000px;}
.y24{bottom:340.275000px;}
.y6f{bottom:340.455000px;}
.y9c{bottom:347.115000px;}
.ye9{bottom:348.915000px;}
.yca{bottom:352.155000px;}
.y56{bottom:356.295000px;}
.y104{bottom:359.175000px;}
.y23{bottom:360.075000px;}
.y6e{bottom:360.255000px;}
.ye8{bottom:368.715000px;}
.yc9{bottom:372.315000px;}
.y6d{bottom:376.995000px;}
.y103{bottom:378.975000px;}
.y55{bottom:385.455000px;}
.y9b{bottom:388.335000px;}
.ye7{bottom:388.515000px;}
.y88{bottom:388.695000px;}
.y22{bottom:388.875000px;}
.yc8{bottom:392.115000px;}
.y102{bottom:398.775000px;}
.y54{bottom:406.515000px;}
.y87{bottom:408.135000px;}
.ye6{bottom:408.495000px;}
.y21{bottom:408.855000px;}
.yc7{bottom:411.915000px;}
.y9a{bottom:415.695000px;}
.y101{bottom:418.755000px;}
.y53{bottom:427.395000px;}
.ye5{bottom:428.295000px;}
.y86{bottom:428.475000px;}
.y20{bottom:428.655000px;}
.yc6{bottom:434.055000px;}
.y99{bottom:435.495000px;}
.y100{bottom:438.555000px;}
.ye4{bottom:447.735000px;}
.y52{bottom:448.275000px;}
.y1f{bottom:448.455000px;}
.yff{bottom:458.355000px;}
.ye3{bottom:467.895000px;}
.y85{bottom:468.075000px;}
.y1e{bottom:468.255000px;}
.y51{bottom:469.155000px;}
.yfe{bottom:478.155000px;}
.ye2{bottom:487.695000px;}
.y84{bottom:487.875000px;}
.y50{bottom:488.595000px;}
.y1d{bottom:489.135000px;}
.yfd{bottom:497.955000px;}
.y83{bottom:507.675000px;}
.y4f{bottom:517.935000px;}
.y82{bottom:527.295000px;}
.ye1{bottom:527.475000px;}
.y1c{bottom:535.755000px;}
.y4e{bottom:537.735000px;}
.y81{bottom:547.095000px;}
.ye0{bottom:547.275000px;}
.y4d{bottom:557.535000px;}
.y1b{bottom:564.585000px;}
.ydf{bottom:567.105000px;}
.y80{bottom:569.625000px;}
.y4c{bottom:577.365000px;}
.y1a{bottom:584.385000px;}
.yde{bottom:586.905000px;}
.y7f{bottom:594.825000px;}
.y4b{bottom:596.805000px;}
.yfc{bottom:597.165000px;}
.y6c{bottom:599.325000px;}
.y19{bottom:604.185000px;}
.ydd{bottom:606.885000px;}
.y4a{bottom:616.785000px;}
.y113{bottom:617.145000px;}
.y6b{bottom:623.085000px;}
.y18{bottom:624.165000px;}
.ydc{bottom:633.345000px;}
.y49{bottom:636.945000px;}
.y17{bottom:643.965000px;}
.y6a{bottom:644.865000px;}
.ydb{bottom:653.145000px;}
.yfb{bottom:656.385000px;}
.y48{bottom:656.745000px;}
.y16{bottom:663.765000px;}
.y69{bottom:666.285000px;}
.yda{bottom:673.125000px;}
.y47{bottom:676.545000px;}
.yc5{bottom:679.065000px;}
.y15{bottom:683.565000px;}
.yd9{bottom:692.925000px;}
.y46{bottom:696.345000px;}
.yc4{bottom:700.665000px;}
.y14{bottom:703.365000px;}
.y7e{bottom:703.725000px;}
.yd8{bottom:712.365000px;}
.yfa{bottom:715.965000px;}
.y45{bottom:716.325000px;}
.y13{bottom:723.345000px;}
.y7d{bottom:723.525000px;}
.y98{bottom:724.785000px;}
.yc3{bottom:725.145000px;}
.yd7{bottom:733.965000px;}
.y44{bottom:735.765000px;}
.yf9{bottom:736.125000px;}
.y7c{bottom:740.265000px;}
.y12{bottom:743.145000px;}
.y97{bottom:745.305000px;}
.y43{bottom:755.925000px;}
.yc2{bottom:756.465000px;}
.y11b{bottom:756.825000px;}
.yd6{bottom:762.405000px;}
.y11{bottom:765.105000px;}
.y42{bottom:775.725000px;}
.y11a{bottom:776.265000px;}
.yc1{bottom:781.305000px;}
.yd5{bottom:782.205000px;}
.y96{bottom:784.545000px;}
.y68{bottom:789.945000px;}
.y10{bottom:790.305000px;}
.y119{bottom:794.265000px;}
.y41{bottom:795.165000px;}
.y112{bottom:795.525000px;}
.yc0{bottom:803.445000px;}
.yd4{bottom:804.345000px;}
.y95{bottom:804.705000px;}
.y67{bottom:809.745000px;}
.yf{bottom:810.105000px;}
.y7b{bottom:813.570000px;}
.y40{bottom:815.550000px;}
.y94{bottom:824.550000px;}
.ye{bottom:829.950000px;}
.y3f{bottom:835.350000px;}
.y7a{bottom:840.930000px;}
.ybf{bottom:843.810000px;}
.y93{bottom:845.790000px;}
.y79{bottom:846.150000px;}
.yd{bottom:849.750000px;}
.y66{bottom:850.110000px;}
.yf8{bottom:854.790000px;}
.y3e{bottom:855.150000px;}
.yc{bottom:864.330000px;}
.y78{bottom:864.870000px;}
.ybe{bottom:868.650000px;}
.yb{bottom:869.550000px;}
.y65{bottom:871.710000px;}
.y3d{bottom:874.950000px;}
.y77{bottom:880.710000px;}
.ya{bottom:884.670000px;}
.y64{bottom:888.450000px;}
.y92{bottom:893.310000px;}
.ybc{bottom:893.490000px;}
.y3c{bottom:894.750000px;}
.y9{bottom:906.090000px;}
.y3b{bottom:914.730000px;}
.y91{bottom:917.070000px;}
.ybb{bottom:918.510000px;}
.y8{bottom:929.130000px;}
.y3a{bottom:934.530000px;}
.y90{bottom:941.010000px;}
.yba{bottom:943.350000px;}
.y39{bottom:954.330000px;}
.y7{bottom:960.990000px;}
.y8f{bottom:964.770000px;}
.yb9{bottom:968.190000px;}
.y38{bottom:974.130000px;}
.y76{bottom:985.470000px;}
.y8e{bottom:988.530000px;}
.yb8{bottom:993.030000px;}
.y37{bottom:993.930000px;}
.y5{bottom:998.430000px;}
.y75{bottom:1009.950000px;}
.y8d{bottom:1013.370000px;}
.y36{bottom:1013.910000px;}
.yb6{bottom:1017.870000px;}
.y4{bottom:1026.510000px;}
.y63{bottom:1033.350000px;}
.y74{bottom:1033.530000px;}
.y35{bottom:1033.710000px;}
.y8c{bottom:1039.470000px;}
.yb5{bottom:1042.710000px;}
.yf7{bottom:1053.150000px;}
.y34{bottom:1053.510000px;}
.y3{bottom:1054.410000px;}
.y8b{bottom:1072.980000px;}
.y33{bottom:1073.340000px;}
.y2{bottom:1082.520000px;}
.y32{bottom:1099.800000px;}
.y1{bottom:1111.680000px;}
.y31{bottom:1118.700000px;}
.h17{height:17.100000px;}
.h18{height:17.136000px;}
.h1c{height:17.280000px;}
.h19{height:18.720000px;}
.h25{height:23.040000px;}
.h23{height:23.256000px;}
.h24{height:23.400000px;}
.h21{height:23.940000px;}
.h20{height:24.120000px;}
.h22{height:24.300000px;}
.h1f{height:24.336000px;}
.h1a{height:24.480000px;}
.h1e{height:24.660000px;}
.h12{height:34.706602px;}
.h5{height:38.158594px;}
.h15{height:44.236406px;}
.h16{height:53.296875px;}
.hf{height:55.089844px;}
.h1b{height:55.771172px;}
.hd{height:58.621992px;}
.h4{height:58.651172px;}
.h7{height:60.226875px;}
.h9{height:61.423863px;}
.h1d{height:61.501992px;}
.ha{height:62.211094px;}
.hb{height:64.411172px;}
.h13{height:64.489219px;}
.h6{height:64.745789px;}
.h3{height:65.010937px;}
.h2{height:66.757500px;}
.hc{height:68.011172px;}
.h10{height:68.956875px;}
.h14{height:70.664062px;}
.h11{height:70.861992px;}
.he{height:70.891172px;}
.h8{height:72.562500px;}
.h26{height:86.011172px;}
.h1{height:96.508125px;}
.h0{height:1188.000000px;}
.w3{width:95.796000px;}
.w4{width:95.940000px;}
.w5{width:95.976000px;}
.w9{width:96.696000px;}
.w8{width:96.840000px;}
.wa{width:96.876000px;}
.w7{width:196.770000px;}
.w6{width:224.130000px;}
.w2{width:247.890000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1a{left:8.100000px;}
.x1d{left:21.600000px;}
.xe{left:51.839986px;}
.x1{left:54.179986px;}
.x5{left:58.499986px;}
.x6{left:59.939986px;}
.x27{left:69.525000px;}
.x23{left:73.485000px;}
.x8{left:78.659986px;}
.x18{left:80.999986px;}
.x1e{left:82.665000px;}
.x20{left:84.285000px;}
.x1f{left:85.905000px;}
.x9{left:87.659986px;}
.x26{left:89.685000px;}
.x24{left:91.650000px;}
.xc{left:94.139986px;}
.x25{left:95.805000px;}
.x2f{left:108.035986px;}
.x11{left:134.315986px;}
.x12{left:145.115986px;}
.x19{left:215.670000px;}
.x14{left:217.469986px;}
.x21{left:248.250000px;}
.x7{left:257.069986px;}
.x10{left:264.629986px;}
.xa{left:273.989986px;}
.x17{left:282.089986px;}
.xb{left:284.609986px;}
.x2a{left:291.269986px;}
.x2e{left:299.594986px;}
.x28{left:327.134986px;}
.x15{left:338.654986px;}
.x2b{left:389.775000px;}
.x16{left:464.654986px;}
.x22{left:473.115000px;}
.x2c{left:487.185000px;}
.x1b{left:560.805000px;}
.x2d{left:584.745000px;}
.x3{left:646.844986px;}
.x1c{left:657.465000px;}
.x29{left:658.544986px;}
.xd{left:693.149986px;}
.x13{left:697.649986px;}
.xf{left:724.469986px;}
.x2{left:807.269986px;}
.x4{left:836.069986px;}
.x30{left:864.149986px;}
@media print{
.vd{vertical-align:-24.320000pt;}
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.ve{vertical-align:-16.000000pt;}
.vb{vertical-align:-13.440000pt;}
.v9{vertical-align:-10.240000pt;}
.v7{vertical-align:-7.680000pt;}
.v4{vertical-align:-5.120000pt;}
.v10{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:2.560000pt;}
.v5{vertical-align:5.120000pt;}
.v6{vertical-align:8.320000pt;}
.v8{vertical-align:10.880000pt;}
.va{vertical-align:13.440000pt;}
.v1{vertical-align:21.120000pt;}
.vc{vertical-align:24.320000pt;}
.ls2c{letter-spacing:-1.050667pt;}
.ls51{letter-spacing:-1.008000pt;}
.ls4e{letter-spacing:-0.960000pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls46{letter-spacing:-0.592000pt;}
.ls39{letter-spacing:-0.409067pt;}
.ls38{letter-spacing:-0.320000pt;}
.ls4d{letter-spacing:-0.299733pt;}
.ls3a{letter-spacing:-0.271467pt;}
.ls5d{letter-spacing:-0.230933pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls50{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.003840pt;}
.ls35{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.047360pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.094720pt;}
.ls29{letter-spacing:0.094933pt;}
.ls53{letter-spacing:0.106667pt;}
.ls30{letter-spacing:0.107520pt;}
.ls40{letter-spacing:0.110507pt;}
.ls2b{letter-spacing:0.120533pt;}
.ls1f{letter-spacing:0.128000pt;}
.ls5c{letter-spacing:0.136533pt;}
.lsd{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.183467pt;}
.ls24{letter-spacing:0.183680pt;}
.ls2f{letter-spacing:0.186240pt;}
.ls19{letter-spacing:0.192000pt;}
.ls54{letter-spacing:0.218880pt;}
.ls34{letter-spacing:0.230400pt;}
.ls27{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.231040pt;}
.ls3b{letter-spacing:0.233067pt;}
.ls5b{letter-spacing:0.265600pt;}
.ls41{letter-spacing:0.292480pt;}
.ls1e{letter-spacing:0.298667pt;}
.ls9{letter-spacing:0.320000pt;}
.ls3f{letter-spacing:0.343680pt;}
.ls57{letter-spacing:0.414933pt;}
.ls49{letter-spacing:0.436863pt;}
.ls21{letter-spacing:0.448000pt;}
.ls26{letter-spacing:0.592000pt;}
.ls4a{letter-spacing:0.628747pt;}
.ls4f{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.704000pt;}
.ls5e{letter-spacing:0.736000pt;}
.ls37{letter-spacing:0.821333pt;}
.ls4b{letter-spacing:0.924691pt;}
.ls3{letter-spacing:0.976640pt;}
.ls4{letter-spacing:1.258667pt;}
.ls8{letter-spacing:1.263360pt;}
.ls1{letter-spacing:1.296000pt;}
.ls5{letter-spacing:1.415040pt;}
.ls0{letter-spacing:1.448320pt;}
.ls7{letter-spacing:1.566720pt;}
.ls2{letter-spacing:1.600000pt;}
.ls6{letter-spacing:2.026667pt;}
.ls55{letter-spacing:2.080000pt;}
.ls48{letter-spacing:5.280000pt;}
.ls1d{letter-spacing:5.760000pt;}
.ls3d{letter-spacing:5.925120pt;}
.ls1b{letter-spacing:6.400000pt;}
.ls45{letter-spacing:7.200000pt;}
.ls4c{letter-spacing:7.840000pt;}
.ls47{letter-spacing:8.272640pt;}
.ls33{letter-spacing:8.912640pt;}
.ls2d{letter-spacing:9.552640pt;}
.ls1c{letter-spacing:9.600000pt;}
.ls5a{letter-spacing:10.192640pt;}
.ls15{letter-spacing:10.400000pt;}
.ls36{letter-spacing:11.040000pt;}
.ls20{letter-spacing:12.800000pt;}
.ls2e{letter-spacing:17.440000pt;}
.ls56{letter-spacing:21.712640pt;}
.ls52{letter-spacing:22.992640pt;}
.ls59{letter-spacing:37.200640pt;}
.ls10{letter-spacing:37.712640pt;}
.lsf{letter-spacing:38.992640pt;}
.ls11{letter-spacing:40.912640pt;}
.ls42{letter-spacing:46.032640pt;}
.ls32{letter-spacing:57.728000pt;}
.ls31{letter-spacing:58.368000pt;}
.ls17{letter-spacing:59.040000pt;}
.ls44{letter-spacing:59.808000pt;}
.ls3c{letter-spacing:62.840320pt;}
.ls43{letter-spacing:82.720000pt;}
.ls22{letter-spacing:82.848000pt;}
.ls12{letter-spacing:96.080640pt;}
.ls58{letter-spacing:137.040640pt;}
.ls13{letter-spacing:153.040640pt;}
.ls16{letter-spacing:176.720640pt;}
.ls14{letter-spacing:273.360640pt;}
.ws10{word-spacing:-64.000000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws1d{word-spacing:-52.820267pt;}
.wsf{word-spacing:-36.480000pt;}
.ws18{word-spacing:-34.560000pt;}
.ws1c{word-spacing:-30.278400pt;}
.ws0{word-spacing:-18.538667pt;}
.wsc{word-spacing:-16.000000pt;}
.ws1f{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws1a{word-spacing:-14.953067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws19{word-spacing:-14.448533pt;}
.ws15{word-spacing:-14.101333pt;}
.ws9{word-spacing:-13.872000pt;}
.ws21{word-spacing:-13.694933pt;}
.ws7{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.ws12{word-spacing:-13.463467pt;}
.ws22{word-spacing:-13.416533pt;}
.ws13{word-spacing:-13.400533pt;}
.ws11{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws23{word-spacing:-13.049067pt;}
.ws16{word-spacing:-12.960000pt;}
.ws17{word-spacing:-12.870933pt;}
.ws1b{word-spacing:-12.688000pt;}
.ws1e{word-spacing:-12.320000pt;}
.ws20{word-spacing:-12.272000pt;}
.ws14{word-spacing:-12.229333pt;}
.wsd{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._2{margin-left:-2383.856427pt;}
._4{margin-left:-1237.132800pt;}
._6{margin-left:-909.542400pt;}
._5{margin-left:-886.461440pt;}
._d{margin-left:-677.866667pt;}
._7{margin-left:-482.839040pt;}
._e{margin-left:-473.336320pt;}
._19{margin-left:-467.682987pt;}
._1a{margin-left:-466.529280pt;}
._2b{margin-left:-465.200640pt;}
._c{margin-left:-411.217920pt;}
._2a{margin-left:-410.240000pt;}
._29{margin-left:-396.320000pt;}
._b{margin-left:-322.720000pt;}
._15{margin-left:-241.109760pt;}
._10{margin-left:-234.880000pt;}
._8{margin-left:-216.320000pt;}
._f{margin-left:-204.800000pt;}
._16{margin-left:-181.468160pt;}
._9{margin-left:-172.400640pt;}
._11{margin-left:-147.200000pt;}
._18{margin-left:-135.040000pt;}
._28{margin-left:-130.560000pt;}
._14{margin-left:-90.240000pt;}
._13{margin-left:-88.320000pt;}
._a{margin-left:-73.600000pt;}
._27{margin-left:-72.622080pt;}
._12{margin-left:-58.880000pt;}
._17{margin-left:-44.160000pt;}
._30{margin-left:-8.752747pt;}
._1b{margin-left:-5.643947pt;}
._26{margin-left:-4.410880pt;}
._1f{margin-left:-2.986240pt;}
._1c{margin-left:-1.920000pt;}
._3{margin-left:-0.942080pt;}
._1{width:1.175040pt;}
._0{width:2.435627pt;}
._1d{width:3.576533pt;}
._1e{width:4.746453pt;}
._23{width:5.822720pt;}
._24{width:6.763733pt;}
._25{width:8.407893pt;}
._20{width:9.418240pt;}
._21{width:11.125120pt;}
._2c{width:12.323840pt;}
._2f{width:14.816000pt;}
._2e{width:21.130027pt;}
._31{width:28.782080pt;}
._32{width:30.225280pt;}
._2d{width:147.328000pt;}
._22{width:224.128000pt;}
.fsb{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs9{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:55.992837pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fsa{font-size:77.440000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:2.880000pt;}
.ya0{bottom:3.200000pt;}
.yaa{bottom:3.360000pt;}
.ya2{bottom:4.480000pt;}
.ya3{bottom:4.640000pt;}
.ycd{bottom:8.200000pt;}
.yd1{bottom:8.320000pt;}
.ycf{bottom:8.640000pt;}
.yb0{bottom:8.954667pt;}
.ya6{bottom:8.960000pt;}
.yac{bottom:9.120000pt;}
.yb7{bottom:9.280000pt;}
.ybd{bottom:9.440000pt;}
.yaf{bottom:9.594667pt;}
.ya5{bottom:9.600000pt;}
.yb1{bottom:9.754667pt;}
.ya7{bottom:9.760000pt;}
.yb3{bottom:9.920000pt;}
.y6{bottom:53.632000pt;}
.yf6{bottom:80.832000pt;}
.y30{bottom:82.912000pt;}
.yb4{bottom:85.152000pt;}
.y62{bottom:88.672000pt;}
.y118{bottom:89.952000pt;}
.y111{bottom:90.752000pt;}
.y73{bottom:95.072000pt;}
.yf5{bottom:98.592000pt;}
.y2f{bottom:100.512000pt;}
.yb2{bottom:103.392000pt;}
.y110{bottom:106.112000pt;}
.y61{bottom:106.272000pt;}
.y117{bottom:107.712000pt;}
.yf4{bottom:116.192000pt;}
.y2e{bottom:118.112000pt;}
.y10f{bottom:123.552000pt;}
.y60{bottom:124.032000pt;}
.y116{bottom:125.312000pt;}
.yae{bottom:125.952000pt;}
.yf3{bottom:133.786667pt;}
.y2d{bottom:135.706667pt;}
.y8a{bottom:138.746667pt;}
.y10e{bottom:141.146667pt;}
.y5f{bottom:141.626667pt;}
.y115{bottom:142.906667pt;}
.yad{bottom:148.346667pt;}
.yf2{bottom:151.386667pt;}
.y2c{bottom:153.466667pt;}
.y89{bottom:156.506667pt;}
.y10d{bottom:159.386667pt;}
.y114{bottom:160.506667pt;}
.y5e{bottom:160.666667pt;}
.yf1{bottom:168.986667pt;}
.yab{bottom:170.746667pt;}
.y2b{bottom:171.066667pt;}
.y10c{bottom:178.106667pt;}
.y72{bottom:178.906667pt;}
.y5d{bottom:180.826667pt;}
.yf0{bottom:186.746667pt;}
.y2a{bottom:188.666667pt;}
.ya9{bottom:193.146667pt;}
.y71{bottom:193.786667pt;}
.yd3{bottom:195.706667pt;}
.y10b{bottom:195.866667pt;}
.y5c{bottom:199.866667pt;}
.y5b{bottom:201.786667pt;}
.yef{bottom:204.346667pt;}
.y29{bottom:206.266667pt;}
.ya8{bottom:209.146667pt;}
.yd2{bottom:213.306667pt;}
.y10a{bottom:213.466667pt;}
.y5a{bottom:221.466667pt;}
.yee{bottom:221.946667pt;}
.y28{bottom:223.866667pt;}
.yd0{bottom:226.266667pt;}
.y109{bottom:231.066667pt;}
.ya4{bottom:231.546667pt;}
.yed{bottom:239.226667pt;}
.y59{bottom:240.346667pt;}
.y27{bottom:241.466667pt;}
.yce{bottom:247.386667pt;}
.y108{bottom:248.666667pt;}
.ya1{bottom:253.946667pt;}
.yec{bottom:257.146667pt;}
.y58{bottom:260.186667pt;}
.y107{bottom:266.266667pt;}
.y26{bottom:267.226667pt;}
.ycc{bottom:268.826667pt;}
.y9f{bottom:271.386667pt;}
.yeb{bottom:274.946667pt;}
.y106{bottom:284.066667pt;}
.y70{bottom:284.546667pt;}
.y25{bottom:284.866667pt;}
.y9d{bottom:287.426667pt;}
.yea{bottom:292.546667pt;}
.ycb{bottom:295.266667pt;}
.y57{bottom:299.426667pt;}
.y105{bottom:301.666667pt;}
.y24{bottom:302.466667pt;}
.y6f{bottom:302.626667pt;}
.y9c{bottom:308.546667pt;}
.ye9{bottom:310.146667pt;}
.yca{bottom:313.026667pt;}
.y56{bottom:316.706667pt;}
.y104{bottom:319.266667pt;}
.y23{bottom:320.066667pt;}
.y6e{bottom:320.226667pt;}
.ye8{bottom:327.746667pt;}
.yc9{bottom:330.946667pt;}
.y6d{bottom:335.106667pt;}
.y103{bottom:336.866667pt;}
.y55{bottom:342.626667pt;}
.y9b{bottom:345.186667pt;}
.ye7{bottom:345.346667pt;}
.y88{bottom:345.506667pt;}
.y22{bottom:345.666667pt;}
.yc8{bottom:348.546667pt;}
.y102{bottom:354.466667pt;}
.y54{bottom:361.346667pt;}
.y87{bottom:362.786667pt;}
.ye6{bottom:363.106667pt;}
.y21{bottom:363.426667pt;}
.yc7{bottom:366.146667pt;}
.y9a{bottom:369.506667pt;}
.y101{bottom:372.226667pt;}
.y53{bottom:379.906667pt;}
.ye5{bottom:380.706667pt;}
.y86{bottom:380.866667pt;}
.y20{bottom:381.026667pt;}
.yc6{bottom:385.826667pt;}
.y99{bottom:387.106667pt;}
.y100{bottom:389.826667pt;}
.ye4{bottom:397.986667pt;}
.y52{bottom:398.466667pt;}
.y1f{bottom:398.626667pt;}
.yff{bottom:407.426667pt;}
.ye3{bottom:415.906667pt;}
.y85{bottom:416.066667pt;}
.y1e{bottom:416.226667pt;}
.y51{bottom:417.026667pt;}
.yfe{bottom:425.026667pt;}
.ye2{bottom:433.506667pt;}
.y84{bottom:433.666667pt;}
.y50{bottom:434.306667pt;}
.y1d{bottom:434.786667pt;}
.yfd{bottom:442.626667pt;}
.y83{bottom:451.266667pt;}
.y4f{bottom:460.386667pt;}
.y82{bottom:468.706667pt;}
.ye1{bottom:468.866667pt;}
.y1c{bottom:476.226667pt;}
.y4e{bottom:477.986667pt;}
.y81{bottom:486.306667pt;}
.ye0{bottom:486.466667pt;}
.y4d{bottom:495.586667pt;}
.y1b{bottom:501.853333pt;}
.ydf{bottom:504.093333pt;}
.y80{bottom:506.333333pt;}
.y4c{bottom:513.213333pt;}
.y1a{bottom:519.453333pt;}
.yde{bottom:521.693333pt;}
.y7f{bottom:528.733333pt;}
.y4b{bottom:530.493333pt;}
.yfc{bottom:530.813333pt;}
.y6c{bottom:532.733333pt;}
.y19{bottom:537.053333pt;}
.ydd{bottom:539.453333pt;}
.y4a{bottom:548.253333pt;}
.y113{bottom:548.573333pt;}
.y6b{bottom:553.853333pt;}
.y18{bottom:554.813333pt;}
.ydc{bottom:562.973333pt;}
.y49{bottom:566.173333pt;}
.y17{bottom:572.413333pt;}
.y6a{bottom:573.213333pt;}
.ydb{bottom:580.573333pt;}
.yfb{bottom:583.453333pt;}
.y48{bottom:583.773333pt;}
.y16{bottom:590.013333pt;}
.y69{bottom:592.253333pt;}
.yda{bottom:598.333333pt;}
.y47{bottom:601.373333pt;}
.yc5{bottom:603.613333pt;}
.y15{bottom:607.613333pt;}
.yd9{bottom:615.933333pt;}
.y46{bottom:618.973333pt;}
.yc4{bottom:622.813333pt;}
.y14{bottom:625.213333pt;}
.y7e{bottom:625.533333pt;}
.yd8{bottom:633.213333pt;}
.yfa{bottom:636.413333pt;}
.y45{bottom:636.733333pt;}
.y13{bottom:642.973333pt;}
.y7d{bottom:643.133333pt;}
.y98{bottom:644.253333pt;}
.yc3{bottom:644.573333pt;}
.yd7{bottom:652.413333pt;}
.y44{bottom:654.013333pt;}
.yf9{bottom:654.333333pt;}
.y7c{bottom:658.013333pt;}
.y12{bottom:660.573333pt;}
.y97{bottom:662.493333pt;}
.y43{bottom:671.933333pt;}
.yc2{bottom:672.413333pt;}
.y11b{bottom:672.733333pt;}
.yd6{bottom:677.693333pt;}
.y11{bottom:680.093333pt;}
.y42{bottom:689.533333pt;}
.y11a{bottom:690.013333pt;}
.yc1{bottom:694.493333pt;}
.yd5{bottom:695.293333pt;}
.y96{bottom:697.373333pt;}
.y68{bottom:702.173333pt;}
.y10{bottom:702.493333pt;}
.y119{bottom:706.013333pt;}
.y41{bottom:706.813333pt;}
.y112{bottom:707.133333pt;}
.yc0{bottom:714.173333pt;}
.yd4{bottom:714.973333pt;}
.y95{bottom:715.293333pt;}
.y67{bottom:719.773333pt;}
.yf{bottom:720.093333pt;}
.y7b{bottom:723.173333pt;}
.y40{bottom:724.933333pt;}
.y94{bottom:732.933333pt;}
.ye{bottom:737.733333pt;}
.y3f{bottom:742.533333pt;}
.y7a{bottom:747.493333pt;}
.ybf{bottom:750.053333pt;}
.y93{bottom:751.813333pt;}
.y79{bottom:752.133333pt;}
.yd{bottom:755.333333pt;}
.y66{bottom:755.653333pt;}
.yf8{bottom:759.813333pt;}
.y3e{bottom:760.133333pt;}
.yc{bottom:768.293333pt;}
.y78{bottom:768.773333pt;}
.ybe{bottom:772.133333pt;}
.yb{bottom:772.933333pt;}
.y65{bottom:774.853333pt;}
.y3d{bottom:777.733333pt;}
.y77{bottom:782.853333pt;}
.ya{bottom:786.373333pt;}
.y64{bottom:789.733333pt;}
.y92{bottom:794.053333pt;}
.ybc{bottom:794.213333pt;}
.y3c{bottom:795.333333pt;}
.y9{bottom:805.413333pt;}
.y3b{bottom:813.093333pt;}
.y91{bottom:815.173333pt;}
.ybb{bottom:816.453333pt;}
.y8{bottom:825.893333pt;}
.y3a{bottom:830.693333pt;}
.y90{bottom:836.453333pt;}
.yba{bottom:838.533333pt;}
.y39{bottom:848.293333pt;}
.y7{bottom:854.213333pt;}
.y8f{bottom:857.573333pt;}
.yb9{bottom:860.613333pt;}
.y38{bottom:865.893333pt;}
.y76{bottom:875.973333pt;}
.y8e{bottom:878.693333pt;}
.yb8{bottom:882.693333pt;}
.y37{bottom:883.493333pt;}
.y5{bottom:887.493333pt;}
.y75{bottom:897.733333pt;}
.y8d{bottom:900.773333pt;}
.y36{bottom:901.253333pt;}
.yb6{bottom:904.773333pt;}
.y4{bottom:912.453333pt;}
.y63{bottom:918.533333pt;}
.y74{bottom:918.693333pt;}
.y35{bottom:918.853333pt;}
.y8c{bottom:923.973333pt;}
.yb5{bottom:926.853333pt;}
.yf7{bottom:936.133333pt;}
.y34{bottom:936.453333pt;}
.y3{bottom:937.253333pt;}
.y8b{bottom:953.760000pt;}
.y33{bottom:954.080000pt;}
.y2{bottom:962.240000pt;}
.y32{bottom:977.600000pt;}
.y1{bottom:988.160000pt;}
.y31{bottom:994.400000pt;}
.h17{height:15.200000pt;}
.h18{height:15.232000pt;}
.h1c{height:15.360000pt;}
.h19{height:16.640000pt;}
.h25{height:20.480000pt;}
.h23{height:20.672000pt;}
.h24{height:20.800000pt;}
.h21{height:21.280000pt;}
.h20{height:21.440000pt;}
.h22{height:21.600000pt;}
.h1f{height:21.632000pt;}
.h1a{height:21.760000pt;}
.h1e{height:21.920000pt;}
.h12{height:30.850312pt;}
.h5{height:33.918750pt;}
.h15{height:39.321250pt;}
.h16{height:47.375000pt;}
.hf{height:48.968750pt;}
.h1b{height:49.574375pt;}
.hd{height:52.108438pt;}
.h4{height:52.134375pt;}
.h7{height:53.535000pt;}
.h9{height:54.598989pt;}
.h1d{height:54.668438pt;}
.ha{height:55.298750pt;}
.hb{height:57.254375pt;}
.h13{height:57.323750pt;}
.h6{height:57.551813pt;}
.h3{height:57.787500pt;}
.h2{height:59.340000pt;}
.hc{height:60.454375pt;}
.h10{height:61.295000pt;}
.h14{height:62.812500pt;}
.h11{height:62.988437pt;}
.he{height:63.014375pt;}
.h8{height:64.500000pt;}
.h26{height:76.454375pt;}
.h1{height:85.785000pt;}
.h0{height:1056.000000pt;}
.w3{width:85.152000pt;}
.w4{width:85.280000pt;}
.w5{width:85.312000pt;}
.w9{width:85.952000pt;}
.w8{width:86.080000pt;}
.wa{width:86.112000pt;}
.w7{width:174.906667pt;}
.w6{width:199.226667pt;}
.w2{width:220.346667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.200000pt;}
.x1d{left:19.200000pt;}
.xe{left:46.079988pt;}
.x1{left:48.159988pt;}
.x5{left:51.999988pt;}
.x6{left:53.279988pt;}
.x27{left:61.800000pt;}
.x23{left:65.320000pt;}
.x8{left:69.919988pt;}
.x18{left:71.999988pt;}
.x1e{left:73.480000pt;}
.x20{left:74.920000pt;}
.x1f{left:76.360000pt;}
.x9{left:77.919988pt;}
.x26{left:79.720000pt;}
.x24{left:81.466667pt;}
.xc{left:83.679988pt;}
.x25{left:85.160000pt;}
.x2f{left:96.031988pt;}
.x11{left:119.391988pt;}
.x12{left:128.991988pt;}
.x19{left:191.706667pt;}
.x14{left:193.306655pt;}
.x21{left:220.666667pt;}
.x7{left:228.506655pt;}
.x10{left:235.226655pt;}
.xa{left:243.546655pt;}
.x17{left:250.746655pt;}
.xb{left:252.986655pt;}
.x2a{left:258.906655pt;}
.x2e{left:266.306655pt;}
.x28{left:290.786655pt;}
.x15{left:301.026655pt;}
.x2b{left:346.466667pt;}
.x16{left:413.026655pt;}
.x22{left:420.546667pt;}
.x2c{left:433.053333pt;}
.x1b{left:498.493333pt;}
.x2d{left:519.773333pt;}
.x3{left:574.973321pt;}
.x1c{left:584.413333pt;}
.x29{left:585.373321pt;}
.xd{left:616.133321pt;}
.x13{left:620.133321pt;}
.xf{left:643.973321pt;}
.x2{left:717.573321pt;}
.x4{left:743.173321pt;}
.x30{left:768.133321pt;}
}




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