
    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_46fa1b1e1c86fcd245fa4315.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_6ea258e55163cb9e00b83bbb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.948242;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_a3636457b61c1da56d5f3120.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948242;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_4930fbbfb6c4d592be8fe08e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_da5483e52d47e3f8a6c8a43b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.020020;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_f800320275d40a7dfcc6a268.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983398;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_24d1d64542cf2bc37d5e3d61.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_35a15cc30a6a0a712c449deb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_6885532526725d791287f9ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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_f893fd121f84dee8a39105b0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_c9abf3296275ec6d60fe66a1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.106934;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_bb5537933f9c523880e40f3e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.087891;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_fb855e4a0d96026d36808f6c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.090332;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_234b1f617860fb6b6e6e87d3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.854004;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_be562f1fea6e10eeab851497.woff2')format("woff");}.fff{font-family:fff;line-height:0.769531;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_dbf154dc3f0d5e00e4af823d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.106934;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_0460f6c6e2a311dd58af253e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.983398;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.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);}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-20.160000px;}
.v5{vertical-align:-15.120002px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.160000px;}
.v1{vertical-align:25.200000px;}
.v8{vertical-align:26.640000px;}
.v7{vertical-align:70.704000px;}
.v6{vertical-align:72.576000px;}
.lsd{letter-spacing:-1.044000px;}
.ls22{letter-spacing:-1.008000px;}
.ls30{letter-spacing:-0.972000px;}
.ls3b{letter-spacing:-0.744000px;}
.ls36{letter-spacing:-0.696000px;}
.ls2c{letter-spacing:-0.618000px;}
.ls2a{letter-spacing:-0.569400px;}
.ls27{letter-spacing:-0.539400px;}
.ls20{letter-spacing:-0.504000px;}
.ls3c{letter-spacing:-0.458400px;}
.ls32{letter-spacing:-0.443400px;}
.ls26{letter-spacing:-0.421200px;}
.ls2d{letter-spacing:-0.420600px;}
.ls21{letter-spacing:-0.408000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.344400px;}
.ls10{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.320400px;}
.ls1c{letter-spacing:-0.295200px;}
.ls2e{letter-spacing:-0.290400px;}
.lsf{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.250800px;}
.ls1a{letter-spacing:-0.222600px;}
.ls1d{letter-spacing:-0.216600px;}
.ls24{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.114600px;}
.ls7{letter-spacing:-0.109200px;}
.ls37{letter-spacing:-0.091200px;}
.ls19{letter-spacing:-0.067200px;}
.ls3{letter-spacing:-0.057300px;}
.ls35{letter-spacing:-0.050700px;}
.lsb{letter-spacing:-0.036000px;}
.ls23{letter-spacing:-0.033120px;}
.ls39{letter-spacing:-0.029520px;}
.ls5{letter-spacing:-0.025920px;}
.ls38{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.022320px;}
.ls2f{letter-spacing:0.026640px;}
.ls6{letter-spacing:0.030240px;}
.ls11{letter-spacing:0.036000px;}
.ls3a{letter-spacing:0.083520px;}
.ls13{letter-spacing:0.099600px;}
.lse{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.175800px;}
.ls16{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.220200px;}
.ls3e{letter-spacing:0.270000px;}
.ls31{letter-spacing:0.276600px;}
.ls1f{letter-spacing:0.288000px;}
.ls29{letter-spacing:0.299400px;}
.ls3d{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.497400px;}
.lsc{letter-spacing:0.828000px;}
.ls14{letter-spacing:8.208000px;}
.ls25{letter-spacing:13.139280px;}
.ls0{letter-spacing:22.216896px;}
.ls1{letter-spacing:22.296960px;}
.ls15{letter-spacing:30.528000px;}
.ls8{letter-spacing:48.636000px;}
.ls17{letter-spacing:56.229600px;}
.ls18{letter-spacing:56.280000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(127,127,127),0 0.015em rgb(127,127,127),0.015em 0 rgb(127,127,127),0 -0.015em  rgb(127,127,127);}
.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(127,127,127);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4d{word-spacing:-84.240000px;}
.ws44{word-spacing:-48.384000px;}
.ws1c{word-spacing:-48.240000px;}
.ws3b{word-spacing:-36.569232px;}
.ws4f{word-spacing:-25.020000px;}
.ws13{word-spacing:-24.440544px;}
.wsd{word-spacing:-24.408000px;}
.ws6{word-spacing:-24.372000px;}
.ws7{word-spacing:-22.752000px;}
.ws9{word-spacing:-22.129032px;}
.ws4{word-spacing:-22.068000px;}
.wsa{word-spacing:-22.032000px;}
.wse{word-spacing:-21.960000px;}
.wsc{word-spacing:-21.953232px;}
.ws5{word-spacing:-21.924000px;}
.ws11{word-spacing:-21.674304px;}
.wsf{word-spacing:-21.641760px;}
.wsb{word-spacing:-21.636000px;}
.ws8{word-spacing:-20.880000px;}
.ws34{word-spacing:-17.400120px;}
.ws36{word-spacing:-17.350152px;}
.ws3c{word-spacing:-17.129952px;}
.ws3a{word-spacing:-17.127360px;}
.ws10{word-spacing:-17.100720px;}
.ws4b{word-spacing:-17.009520px;}
.ws39{word-spacing:-16.810320px;}
.ws32{word-spacing:-16.708752px;}
.ws38{word-spacing:-16.680120px;}
.ws4c{word-spacing:-16.642320px;}
.ws31{word-spacing:-16.590552px;}
.ws27{word-spacing:-16.560000px;}
.ws35{word-spacing:-16.531320px;}
.ws37{word-spacing:-16.511952px;}
.ws26{word-spacing:-16.488000px;}
.ws4a{word-spacing:-16.356720px;}
.ws12{word-spacing:-16.272000px;}
.ws2b{word-spacing:-16.271424px;}
.ws3e{word-spacing:-16.061880px;}
.ws2c{word-spacing:-16.056000px;}
.ws2d{word-spacing:-15.984000px;}
.ws25{word-spacing:-15.912000px;}
.ws29{word-spacing:-15.896544px;}
.ws28{word-spacing:-15.768000px;}
.ws0{word-spacing:-15.612480px;}
.ws41{word-spacing:-15.534480px;}
.ws40{word-spacing:-15.341880px;}
.ws2a{word-spacing:-15.296544px;}
.ws21{word-spacing:-15.002784px;}
.ws3d{word-spacing:-14.813280px;}
.ws15{word-spacing:-14.645232px;}
.ws14{word-spacing:-14.616000px;}
.ws24{word-spacing:-14.351904px;}
.ws1f{word-spacing:-14.319360px;}
.ws2{word-spacing:-12.240000px;}
.ws46{word-spacing:-12.236544px;}
.ws47{word-spacing:-12.204000px;}
.ws42{word-spacing:-11.399640px;}
.ws1d{word-spacing:-11.001840px;}
.ws1b{word-spacing:-10.924560px;}
.ws1e{word-spacing:-10.902240px;}
.ws43{word-spacing:-10.884084px;}
.ws16{word-spacing:-10.835040px;}
.ws1a{word-spacing:-10.685640px;}
.ws17{word-spacing:-10.679640px;}
.ws19{word-spacing:-10.607040px;}
.ws18{word-spacing:-10.581840px;}
.ws45{word-spacing:-10.206240px;}
.ws20{word-spacing:-9.437760px;}
.ws2f{word-spacing:-1.497600px;}
.ws4e{word-spacing:-1.440000px;}
.ws2e{word-spacing:-0.011520px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:2.732904px;}
.ws49{word-spacing:35.701056px;}
.ws33{word-spacing:76.999680px;}
.ws30{word-spacing:77.082768px;}
.ws3f{word-spacing:795.538464px;}
.ws22{word-spacing:802.853520px;}
.ws23{word-spacing:864.552000px;}
.ws48{word-spacing:2258.120640px;}
._12{margin-left:-8.110800px;}
._3{margin-left:-5.184000px;}
._11{margin-left:-3.487920px;}
._0{margin-left:-2.304000px;}
._1{margin-left:-1.296000px;}
._4{width:1.048080px;}
._2{width:2.448000px;}
._6{width:3.877200px;}
._e{width:5.310000px;}
._18{width:7.420080px;}
._17{width:8.671920px;}
._19{width:9.988848px;}
._1e{width:11.826480px;}
._1d{width:13.161600px;}
._1b{width:14.832000px;}
._22{width:15.837840px;}
._1a{width:17.343840px;}
._5{width:22.694400px;}
._13{width:24.204864px;}
._21{width:25.724016px;}
._1c{width:28.604160px;}
._f{width:30.775920px;}
._10{width:31.956000px;}
._1f{width:35.147760px;}
._15{width:40.707840px;}
._14{width:41.832000px;}
._a{width:45.384000px;}
._9{width:47.767920px;}
._23{width:51.911760px;}
._20{width:54.731760px;}
._8{width:70.332000px;}
._7{width:71.424000px;}
._16{width:105.552000px;}
._b{width:265.246224px;}
._c{width:266.950992px;}
._d{width:437.496000px;}
.fc9{color:rgb(5,99,193);}
.fc8{color:rgb(192,0,0);}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(32,56,100);}
.fc4{color:transparent;}
.fc3{color:rgb(28,154,117);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(86,86,86);}
.fs13{font-size:41.760000px;}
.fs8{font-size:43.920000px;}
.fs11{font-size:48.240000px;}
.fs17{font-size:48.384000px;}
.fs6{font-size:51.840000px;}
.fs3{font-size:51.984000px;}
.fs18{font-size:54.000000px;}
.fs19{font-size:54.144000px;}
.fs2{font-size:56.160000px;}
.fs12{font-size:63.360000px;}
.fs15{font-size:63.504000px;}
.fs7{font-size:66.240000px;}
.fs14{font-size:66.384000px;}
.fsf{font-size:72.000000px;}
.fs10{font-size:72.144000px;}
.fs5{font-size:77.760000px;}
.fs4{font-size:77.904000px;}
.fs1{font-size:84.240000px;}
.fs16{font-size:84.384000px;}
.fs1c{font-size:90.000000px;}
.fs1d{font-size:90.144000px;}
.fsd{font-size:95.760000px;}
.fse{font-size:95.904000px;}
.fsa{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fs1b{font-size:126.000000px;}
.fs0{font-size:144.000000px;}
.fsc{font-size:162.144000px;}
.fs9{font-size:180.144000px;}
.fs1a{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.ybc{bottom:3.960000px;}
.yb0{bottom:4.320000px;}
.y9{bottom:28.224000px;}
.y2c{bottom:32.616000px;}
.y70{bottom:39.060000px;}
.y7a{bottom:39.420000px;}
.y87{bottom:42.840000px;}
.y90{bottom:43.380000px;}
.y2b{bottom:47.016000px;}
.y6b{bottom:61.020000px;}
.y6e{bottom:65.592000px;}
.y8{bottom:67.248000px;}
.y6a{bottom:75.420000px;}
.y6d{bottom:79.992000px;}
.y4e{bottom:80.748000px;}
.y7{bottom:94.248000px;}
.ya6{bottom:95.940000px;}
.y9b{bottom:99.180000px;}
.y3b{bottom:101.808000px;}
.y4d{bottom:102.348000px;}
.y3a{bottom:103.068000px;}
.y39{bottom:103.824000px;}
.y61{bottom:111.636000px;}
.ydf{bottom:114.696000px;}
.y6{bottom:121.248000px;}
.y53{bottom:121.968000px;}
.y38{bottom:122.724000px;}
.y4c{bottom:123.948000px;}
.yee{bottom:125.136000px;}
.y5e{bottom:129.816000px;}
.y15{bottom:132.156000px;}
.y9a{bottom:133.848000px;}
.y64{bottom:134.604000px;}
.y60{bottom:136.836000px;}
.ye0{bottom:137.232000px;}
.y84{bottom:141.372000px;}
.y5{bottom:148.284000px;}
.y99{bottom:150.090000px;}
.yed{bottom:150.330000px;}
.y1a{bottom:154.515000px;}
.y83{bottom:157.575000px;}
.ydd{bottom:161.565000px;}
.y14{bottom:164.550000px;}
.y4b{bottom:167.145000px;}
.yec{bottom:175.530000px;}
.yc7{bottom:177.150000px;}
.y9d{bottom:177.300000px;}
.ycf{bottom:179.610000px;}
.y72{bottom:179.670000px;}
.ybd{bottom:179.820000px;}
.yc9{bottom:179.970000px;}
.y89{bottom:180.000000px;}
.y7b{bottom:180.030000px;}
.yb1{bottom:180.180000px;}
.y91{bottom:180.540000px;}
.y40{bottom:183.090000px;}
.y37{bottom:184.140000px;}
.ydc{bottom:184.245000px;}
.y3c{bottom:185.400000px;}
.y22{bottom:188.100000px;}
.y4a{bottom:188.790000px;}
.y5f{bottom:189.105000px;}
.y9c{bottom:189.615000px;}
.y67{bottom:194.325000px;}
.y1f{bottom:194.760000px;}
.y98{bottom:195.690000px;}
.y13{bottom:196.950000px;}
.yeb{bottom:200.775000px;}
.y69{bottom:205.305000px;}
.ybe{bottom:206.895000px;}
.yb2{bottom:207.255000px;}
.y4{bottom:208.950000px;}
.y9e{bottom:209.910000px;}
.ya7{bottom:211.140000px;}
.y66{bottom:217.725000px;}
.yd0{bottom:218.265000px;}
.y73{bottom:218.310000px;}
.yca{bottom:218.625000px;}
.y7c{bottom:218.670000px;}
.y29{bottom:223.020000px;}
.y2a{bottom:223.410000px;}
.y8a{bottom:225.105000px;}
.y92{bottom:225.645000px;}
.yea{bottom:225.975000px;}
.y68{bottom:228.705000px;}
.y12{bottom:229.350000px;}
.y49{bottom:231.990000px;}
.ybf{bottom:233.970000px;}
.yb3{bottom:234.330000px;}
.yaf{bottom:235.290000px;}
.yde{bottom:237.090000px;}
.y88{bottom:237.315000px;}
.y86{bottom:238.350000px;}
.y71{bottom:240.195000px;}
.y9f{bottom:242.490000px;}
.ya8{bottom:244.980000px;}
.y6f{bottom:249.330000px;}
.ye9{bottom:251.175000px;}
.y48{bottom:253.590000px;}
.yd1{bottom:256.890000px;}
.y74{bottom:256.935000px;}
.ycb{bottom:257.250000px;}
.y7d{bottom:257.295000px;}
.yc0{bottom:261.030000px;}
.yb4{bottom:261.390000px;}
.y11{bottom:261.795000px;}
.ye1{bottom:264.135000px;}
.yce{bottom:269.205000px;}
.yc8{bottom:269.565000px;}
.y8b{bottom:270.210000px;}
.y3{bottom:270.510000px;}
.y93{bottom:270.750000px;}
.ya0{bottom:275.115000px;}
.ya9{bottom:278.790000px;}
.y52{bottom:281.370000px;}
.y19{bottom:287.280000px;}
.y28{bottom:287.970000px;}
.yc1{bottom:288.075000px;}
.ydb{bottom:288.330000px;}
.yb5{bottom:288.435000px;}
.y63{bottom:290.490000px;}
.y47{bottom:293.250000px;}
.y10{bottom:294.195000px;}
.y75{bottom:295.560000px;}
.ycc{bottom:295.920000px;}
.y7e{bottom:295.950000px;}
.ye8{bottom:296.100000px;}
.y34{bottom:298.290000px;}
.ya1{bottom:307.725000px;}
.yda{bottom:311.010000px;}
.y1e{bottom:312.270000px;}
.yaa{bottom:312.630000px;}
.y56{bottom:312.735000px;}
.y2{bottom:313.710000px;}
.yc2{bottom:315.150000px;}
.y8c{bottom:315.330000px;}
.yb6{bottom:315.510000px;}
.y62{bottom:315.690000px;}
.y94{bottom:315.870000px;}
.y65{bottom:316.365000px;}
.y33{bottom:317.190000px;}
.y21{bottom:317.265000px;}
.y25{bottom:317.850000px;}
.y18{bottom:319.680000px;}
.y27{bottom:320.370000px;}
.yf{bottom:326.595000px;}
.yd2{bottom:334.185000px;}
.y76{bottom:334.230000px;}
.ycd{bottom:334.545000px;}
.y7f{bottom:334.590000px;}
.y32{bottom:336.090000px;}
.y46{bottom:336.450000px;}
.y24{bottom:339.450000px;}
.ya2{bottom:340.350000px;}
.y1d{bottom:341.070000px;}
.yc3{bottom:342.210000px;}
.y5d{bottom:342.255000px;}
.yb7{bottom:342.570000px;}
.y55{bottom:345.135000px;}
.yd9{bottom:345.570000px;}
.yab{bottom:346.470000px;}
.ye7{bottom:350.130000px;}
.y26{bottom:352.800000px;}
.y31{bottom:354.990000px;}
.y36{bottom:356.250000px;}
.y1{bottom:356.940000px;}
.ye{bottom:358.995000px;}
.y8d{bottom:360.435000px;}
.y95{bottom:360.975000px;}
.y5c{bottom:364.935000px;}
.yc4{bottom:369.285000px;}
.yb8{bottom:369.645000px;}
.y3e{bottom:370.050000px;}
.y77{bottom:372.855000px;}
.ya3{bottom:372.960000px;}
.y80{bottom:373.215000px;}
.y30{bottom:373.890000px;}
.ye6{bottom:377.130000px;}
.y54{bottom:377.535000px;}
.y20{bottom:377.670000px;}
.y45{bottom:379.650000px;}
.yac{bottom:380.310000px;}
.yd8{bottom:386.925000px;}
.y3f{bottom:387.510000px;}
.y3d{bottom:388.950000px;}
.yd{bottom:391.425000px;}
.y2f{bottom:392.790000px;}
.yc5{bottom:396.360000px;}
.yb9{bottom:396.720000px;}
.y5b{bottom:399.705000px;}
.ye5{bottom:404.130000px;}
.ya4{bottom:405.540000px;}
.y8e{bottom:405.570000px;}
.y96{bottom:406.110000px;}
.yd7{bottom:409.605000px;}
.y78{bottom:411.480000px;}
.y81{bottom:411.840000px;}
.y2e{bottom:411.915000px;}
.yad{bottom:414.150000px;}
.y44{bottom:422.895000px;}
.yc6{bottom:423.435000px;}
.yc{bottom:423.645000px;}
.yba{bottom:423.795000px;}
.ye4{bottom:434.370000px;}
.y5a{bottom:434.445000px;}
.y17{bottom:437.730000px;}
.ya5{bottom:438.150000px;}
.y23{bottom:440.025000px;}
.y2d{bottom:442.875000px;}
.y35{bottom:443.595000px;}
.yd6{bottom:444.345000px;}
.y43{bottom:444.495000px;}
.yae{bottom:447.990000px;}
.y79{bottom:450.150000px;}
.y82{bottom:450.510000px;}
.y8f{bottom:450.690000px;}
.ybb{bottom:450.870000px;}
.y97{bottom:451.230000px;}
.yb{bottom:456.225000px;}
.y59{bottom:457.125000px;}
.y51{bottom:463.170000px;}
.yd5{bottom:467.025000px;}
.y16{bottom:470.130000px;}
.ye3{bottom:472.170000px;}
.y50{bottom:482.070000px;}
.y85{bottom:482.295000px;}
.y42{bottom:487.695000px;}
.y58{bottom:491.685000px;}
.y1b{bottom:492.765000px;}
.y4f{bottom:500.970000px;}
.yd4{bottom:501.585000px;}
.y41{bottom:509.295000px;}
.y57{bottom:514.410000px;}
.ye2{bottom:543.315000px;}
.yd3{bottom:543.450000px;}
.y1c{bottom:557.025000px;}
.ya{bottom:557.970000px;}
.y6c{bottom:587.670000px;}
.h5{height:38.247187px;}
.h3{height:38.353430px;}
.h14{height:47.980898px;}
.h24{height:48.124125px;}
.h17{height:48.324375px;}
.h6{height:52.563867px;}
.h27{height:53.709961px;}
.h28{height:53.853187px;}
.h1d{height:54.914062px;}
.h4{height:57.370781px;}
.h1f{height:57.937500px;}
.h2f{height:60.855469px;}
.h25{height:62.226562px;}
.h12{height:62.402344px;}
.h13{height:62.527148px;}
.h15{height:63.019688px;}
.h1b{height:63.162914px;}
.h20{height:64.546875px;}
.h1e{height:64.675969px;}
.h18{height:64.875938px;}
.h2{height:66.634453px;}
.h22{height:67.394531px;}
.h34{height:67.786875px;}
.h35{height:67.902750px;}
.h16{height:67.972289px;}
.h29{height:71.200898px;}
.h10{height:71.613281px;}
.he{height:73.010742px;}
.h21{height:73.135547px;}
.h1c{height:73.722656px;}
.h32{height:80.683594px;}
.h33{height:80.812687px;}
.ha{height:82.371094px;}
.h11{height:82.480922px;}
.h8{height:93.603516px;}
.h9{height:93.728320px;}
.hd{height:95.245664px;}
.hf{height:95.388891px;}
.h1{height:108.281250px;}
.hb{height:110.583984px;}
.h23{height:121.885664px;}
.h31{height:125.323242px;}
.h1a{height:135.727383px;}
.h2e{height:137.131102px;}
.h19{height:137.451937px;}
.hc{height:140.530078px;}
.h30{height:144.555469px;}
.h7{height:156.130664px;}
.h2b{height:442.440000px;}
.h2a{height:554.040000px;}
.h26{height:560.700000px;}
.h2c{height:603.180000px;}
.h2d{height:603.540000px;}
.h0{height:607.500000px;}
.w2{width:16.380000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x52{left:12.705000px;}
.x6d{left:16.235984px;}
.x27{left:27.071984px;}
.x19{left:32.111984px;}
.x3f{left:36.107984px;}
.x4{left:37.583984px;}
.x5{left:39.887984px;}
.x39{left:45.611984px;}
.x63{left:55.223984px;}
.x1e{left:59.903984px;}
.x34{left:62.783984px;}
.x1{left:64.799984px;}
.x2{left:67.283984px;}
.x1c{left:71.423984px;}
.x40{left:76.643984px;}
.x1f{left:80.423984px;}
.x35{left:82.043984px;}
.x1d{left:89.603984px;}
.x42{left:104.615984px;}
.xf{left:120.311984px;}
.x4e{left:122.147984px;}
.x3a{left:148.319984px;}
.x50{left:155.264984px;}
.x67{left:164.054984px;}
.x51{left:179.640000px;}
.x5d{left:180.900000px;}
.x5a{left:183.989984px;}
.x25{left:191.729984px;}
.x53{left:205.814984px;}
.x5e{left:207.074984px;}
.x23{left:210.749984px;}
.x2c{left:220.529984px;}
.x64{left:221.759984px;}
.xe{left:228.269984px;}
.x26{left:229.529984px;}
.x65{left:231.044984px;}
.x41{left:254.549984px;}
.x1a{left:257.579984px;}
.x3e{left:271.694984px;}
.x3c{left:274.574984px;}
.x56{left:287.099984px;}
.x28{left:291.209984px;}
.x69{left:295.304984px;}
.x1b{left:303.734984px;}
.x3d{left:306.254984px;}
.x2a{left:310.394984px;}
.x2b{left:329.324984px;}
.x16{left:338.579984px;}
.x14{left:341.459984px;}
.x6a{left:343.904984px;}
.x31{left:351.689984px;}
.x2f{left:354.029984px;}
.x57{left:365.219984px;}
.x15{left:373.139984px;}
.x6c{left:379.184984px;}
.x32{left:384.224984px;}
.x6b{left:388.364984px;}
.x33{left:403.124984px;}
.x36{left:413.669984px;}
.x3b{left:418.349984px;}
.x68{left:425.669984px;}
.x37{left:432.569984px;}
.x30{left:436.424984px;}
.x38{left:451.469984px;}
.x3{left:455.474984px;}
.x66{left:474.194984px;}
.x20{left:497.699984px;}
.x18{left:505.769984px;}
.x21{left:516.599984px;}
.x8{left:520.484984px;}
.xa{left:524.084984px;}
.x4f{left:526.754984px;}
.x9{left:539.384984px;}
.x43{left:547.814984px;}
.x22{left:553.649984px;}
.x17{left:562.679984px;}
.x29{left:573.479984px;}
.x54{left:576.360000px;}
.x5b{left:577.620000px;}
.x5f{left:579.960000px;}
.x61{left:581.760000px;}
.x44{left:592.274984px;}
.x55{left:602.609984px;}
.x5c{left:603.869984px;}
.x60{left:606.209984px;}
.x62{left:608.009984px;}
.x24{left:631.619984px;}
.x10{left:661.289984px;}
.x45{left:678.089984px;}
.x58{left:684.794984px;}
.xc{left:707.399984px;}
.x2d{left:713.444984px;}
.x4b{left:715.424984px;}
.xb{left:718.019984px;}
.x46{left:722.369984px;}
.x2e{left:733.889984px;}
.x4c{left:744.044984px;}
.x59{left:762.944984px;}
.x47{left:802.004984px;}
.x13{left:836.129984px;}
.x48{left:845.384984px;}
.x12{left:849.809984px;}
.x6{left:867.029984px;}
.x49{left:919.469984px;}
.x7{left:934.199984px;}
.x11{left:951.374984px;}
.xd{left:955.694984px;}
.x4a{left:963.029984px;}
.x4d{left:1040.189984px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-17.920000pt;}
.v5{vertical-align:-13.440002pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.920000pt;}
.v1{vertical-align:22.400000pt;}
.v8{vertical-align:23.680000pt;}
.v7{vertical-align:62.848000pt;}
.v6{vertical-align:64.512000pt;}
.lsd{letter-spacing:-0.928000pt;}
.ls22{letter-spacing:-0.896000pt;}
.ls30{letter-spacing:-0.864000pt;}
.ls3b{letter-spacing:-0.661333pt;}
.ls36{letter-spacing:-0.618667pt;}
.ls2c{letter-spacing:-0.549333pt;}
.ls2a{letter-spacing:-0.506133pt;}
.ls27{letter-spacing:-0.479467pt;}
.ls20{letter-spacing:-0.448000pt;}
.ls3c{letter-spacing:-0.407467pt;}
.ls32{letter-spacing:-0.394133pt;}
.ls26{letter-spacing:-0.374400pt;}
.ls2d{letter-spacing:-0.373867pt;}
.ls21{letter-spacing:-0.362667pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.306133pt;}
.ls10{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.284800pt;}
.ls1c{letter-spacing:-0.262400pt;}
.ls2e{letter-spacing:-0.258133pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.222933pt;}
.ls1a{letter-spacing:-0.197867pt;}
.ls1d{letter-spacing:-0.192533pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.101867pt;}
.ls7{letter-spacing:-0.097067pt;}
.ls37{letter-spacing:-0.081067pt;}
.ls19{letter-spacing:-0.059733pt;}
.ls3{letter-spacing:-0.050933pt;}
.ls35{letter-spacing:-0.045067pt;}
.lsb{letter-spacing:-0.032000pt;}
.ls23{letter-spacing:-0.029440pt;}
.ls39{letter-spacing:-0.026240pt;}
.ls5{letter-spacing:-0.023040pt;}
.ls38{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.019840pt;}
.ls2f{letter-spacing:0.023680pt;}
.ls6{letter-spacing:0.026880pt;}
.ls11{letter-spacing:0.032000pt;}
.ls3a{letter-spacing:0.074240pt;}
.ls13{letter-spacing:0.088533pt;}
.lse{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.156267pt;}
.ls16{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.195733pt;}
.ls3e{letter-spacing:0.240000pt;}
.ls31{letter-spacing:0.245867pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls29{letter-spacing:0.266133pt;}
.ls3d{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.442133pt;}
.lsc{letter-spacing:0.736000pt;}
.ls14{letter-spacing:7.296000pt;}
.ls25{letter-spacing:11.679360pt;}
.ls0{letter-spacing:19.748352pt;}
.ls1{letter-spacing:19.819520pt;}
.ls15{letter-spacing:27.136000pt;}
.ls8{letter-spacing:43.232000pt;}
.ls17{letter-spacing:49.981867pt;}
.ls18{letter-spacing:50.026667pt;}
.ws4d{word-spacing:-74.880000pt;}
.ws44{word-spacing:-43.008000pt;}
.ws1c{word-spacing:-42.880000pt;}
.ws3b{word-spacing:-32.505984pt;}
.ws4f{word-spacing:-22.240000pt;}
.ws13{word-spacing:-21.724928pt;}
.wsd{word-spacing:-21.696000pt;}
.ws6{word-spacing:-21.664000pt;}
.ws7{word-spacing:-20.224000pt;}
.ws9{word-spacing:-19.670251pt;}
.ws4{word-spacing:-19.616000pt;}
.wsa{word-spacing:-19.584000pt;}
.wse{word-spacing:-19.520000pt;}
.wsc{word-spacing:-19.513984pt;}
.ws5{word-spacing:-19.488000pt;}
.ws11{word-spacing:-19.266048pt;}
.wsf{word-spacing:-19.237120pt;}
.wsb{word-spacing:-19.232000pt;}
.ws8{word-spacing:-18.560000pt;}
.ws34{word-spacing:-15.466773pt;}
.ws36{word-spacing:-15.422357pt;}
.ws3c{word-spacing:-15.226624pt;}
.ws3a{word-spacing:-15.224320pt;}
.ws10{word-spacing:-15.200640pt;}
.ws4b{word-spacing:-15.119573pt;}
.ws39{word-spacing:-14.942507pt;}
.ws32{word-spacing:-14.852224pt;}
.ws38{word-spacing:-14.826773pt;}
.ws4c{word-spacing:-14.793173pt;}
.ws31{word-spacing:-14.747157pt;}
.ws27{word-spacing:-14.720000pt;}
.ws35{word-spacing:-14.694507pt;}
.ws37{word-spacing:-14.677291pt;}
.ws26{word-spacing:-14.656000pt;}
.ws4a{word-spacing:-14.539307pt;}
.ws12{word-spacing:-14.464000pt;}
.ws2b{word-spacing:-14.463488pt;}
.ws3e{word-spacing:-14.277227pt;}
.ws2c{word-spacing:-14.272000pt;}
.ws2d{word-spacing:-14.208000pt;}
.ws25{word-spacing:-14.144000pt;}
.ws29{word-spacing:-14.130261pt;}
.ws28{word-spacing:-14.016000pt;}
.ws0{word-spacing:-13.877760pt;}
.ws41{word-spacing:-13.808427pt;}
.ws40{word-spacing:-13.637227pt;}
.ws2a{word-spacing:-13.596928pt;}
.ws21{word-spacing:-13.335808pt;}
.ws3d{word-spacing:-13.167360pt;}
.ws15{word-spacing:-13.017984pt;}
.ws14{word-spacing:-12.992000pt;}
.ws24{word-spacing:-12.757248pt;}
.ws1f{word-spacing:-12.728320pt;}
.ws2{word-spacing:-10.880000pt;}
.ws46{word-spacing:-10.876928pt;}
.ws47{word-spacing:-10.848000pt;}
.ws42{word-spacing:-10.133013pt;}
.ws1d{word-spacing:-9.779413pt;}
.ws1b{word-spacing:-9.710720pt;}
.ws1e{word-spacing:-9.690880pt;}
.ws43{word-spacing:-9.674741pt;}
.ws16{word-spacing:-9.631147pt;}
.ws1a{word-spacing:-9.498347pt;}
.ws17{word-spacing:-9.493013pt;}
.ws19{word-spacing:-9.428480pt;}
.ws18{word-spacing:-9.406080pt;}
.ws45{word-spacing:-9.072213pt;}
.ws20{word-spacing:-8.389120pt;}
.ws2f{word-spacing:-1.331200pt;}
.ws4e{word-spacing:-1.280000pt;}
.ws2e{word-spacing:-0.010240pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:2.429248pt;}
.ws49{word-spacing:31.734272pt;}
.ws33{word-spacing:68.444160pt;}
.ws30{word-spacing:68.518016pt;}
.ws3f{word-spacing:707.145301pt;}
.ws22{word-spacing:713.647573pt;}
.ws23{word-spacing:768.490667pt;}
.ws48{word-spacing:2007.218347pt;}
._12{margin-left:-7.209600pt;}
._3{margin-left:-4.608000pt;}
._11{margin-left:-3.100373pt;}
._0{margin-left:-2.048000pt;}
._1{margin-left:-1.152000pt;}
._4{width:0.931627pt;}
._2{width:2.176000pt;}
._6{width:3.446400pt;}
._e{width:4.720000pt;}
._18{width:6.595627pt;}
._17{width:7.708373pt;}
._19{width:8.878976pt;}
._1e{width:10.512427pt;}
._1d{width:11.699200pt;}
._1b{width:13.184000pt;}
._22{width:14.078080pt;}
._1a{width:15.416747pt;}
._5{width:20.172800pt;}
._13{width:21.515435pt;}
._21{width:22.865792pt;}
._1c{width:25.425920pt;}
._f{width:27.356373pt;}
._10{width:28.405333pt;}
._1f{width:31.242453pt;}
._15{width:36.184747pt;}
._14{width:37.184000pt;}
._a{width:40.341333pt;}
._9{width:42.460373pt;}
._23{width:46.143787pt;}
._20{width:48.650453pt;}
._8{width:62.517333pt;}
._7{width:63.488000pt;}
._16{width:93.824000pt;}
._b{width:235.774421pt;}
._c{width:237.289771pt;}
._d{width:388.885333pt;}
.fs13{font-size:37.120000pt;}
.fs8{font-size:39.040000pt;}
.fs11{font-size:42.880000pt;}
.fs17{font-size:43.008000pt;}
.fs6{font-size:46.080000pt;}
.fs3{font-size:46.208000pt;}
.fs18{font-size:48.000000pt;}
.fs19{font-size:48.128000pt;}
.fs2{font-size:49.920000pt;}
.fs12{font-size:56.320000pt;}
.fs15{font-size:56.448000pt;}
.fs7{font-size:58.880000pt;}
.fs14{font-size:59.008000pt;}
.fsf{font-size:64.000000pt;}
.fs10{font-size:64.128000pt;}
.fs5{font-size:69.120000pt;}
.fs4{font-size:69.248000pt;}
.fs1{font-size:74.880000pt;}
.fs16{font-size:75.008000pt;}
.fs1c{font-size:80.000000pt;}
.fs1d{font-size:80.128000pt;}
.fsd{font-size:85.120000pt;}
.fse{font-size:85.248000pt;}
.fsa{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fs1b{font-size:112.000000pt;}
.fs0{font-size:128.000000pt;}
.fsc{font-size:144.128000pt;}
.fs9{font-size:160.128000pt;}
.fs1a{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:3.520000pt;}
.yb0{bottom:3.840000pt;}
.y9{bottom:25.088000pt;}
.y2c{bottom:28.992000pt;}
.y70{bottom:34.720000pt;}
.y7a{bottom:35.040000pt;}
.y87{bottom:38.080000pt;}
.y90{bottom:38.560000pt;}
.y2b{bottom:41.792000pt;}
.y6b{bottom:54.240000pt;}
.y6e{bottom:58.304000pt;}
.y8{bottom:59.776000pt;}
.y6a{bottom:67.040000pt;}
.y6d{bottom:71.104000pt;}
.y4e{bottom:71.776000pt;}
.y7{bottom:83.776000pt;}
.ya6{bottom:85.280000pt;}
.y9b{bottom:88.160000pt;}
.y3b{bottom:90.496000pt;}
.y4d{bottom:90.976000pt;}
.y3a{bottom:91.616000pt;}
.y39{bottom:92.288000pt;}
.y61{bottom:99.232000pt;}
.ydf{bottom:101.952000pt;}
.y6{bottom:107.776000pt;}
.y53{bottom:108.416000pt;}
.y38{bottom:109.088000pt;}
.y4c{bottom:110.176000pt;}
.yee{bottom:111.232000pt;}
.y5e{bottom:115.392000pt;}
.y15{bottom:117.472000pt;}
.y9a{bottom:118.976000pt;}
.y64{bottom:119.648000pt;}
.y60{bottom:121.632000pt;}
.ye0{bottom:121.984000pt;}
.y84{bottom:125.664000pt;}
.y5{bottom:131.808000pt;}
.y99{bottom:133.413333pt;}
.yed{bottom:133.626667pt;}
.y1a{bottom:137.346667pt;}
.y83{bottom:140.066667pt;}
.ydd{bottom:143.613333pt;}
.y14{bottom:146.266667pt;}
.y4b{bottom:148.573333pt;}
.yec{bottom:156.026667pt;}
.yc7{bottom:157.466667pt;}
.y9d{bottom:157.600000pt;}
.ycf{bottom:159.653333pt;}
.y72{bottom:159.706667pt;}
.ybd{bottom:159.840000pt;}
.yc9{bottom:159.973333pt;}
.y89{bottom:160.000000pt;}
.y7b{bottom:160.026667pt;}
.yb1{bottom:160.160000pt;}
.y91{bottom:160.480000pt;}
.y40{bottom:162.746667pt;}
.y37{bottom:163.680000pt;}
.ydc{bottom:163.773333pt;}
.y3c{bottom:164.800000pt;}
.y22{bottom:167.200000pt;}
.y4a{bottom:167.813333pt;}
.y5f{bottom:168.093333pt;}
.y9c{bottom:168.546667pt;}
.y67{bottom:172.733333pt;}
.y1f{bottom:173.120000pt;}
.y98{bottom:173.946667pt;}
.y13{bottom:175.066667pt;}
.yeb{bottom:178.466667pt;}
.y69{bottom:182.493333pt;}
.ybe{bottom:183.906667pt;}
.yb2{bottom:184.226667pt;}
.y4{bottom:185.733333pt;}
.y9e{bottom:186.586667pt;}
.ya7{bottom:187.680000pt;}
.y66{bottom:193.533333pt;}
.yd0{bottom:194.013333pt;}
.y73{bottom:194.053333pt;}
.yca{bottom:194.333333pt;}
.y7c{bottom:194.373333pt;}
.y29{bottom:198.240000pt;}
.y2a{bottom:198.586667pt;}
.y8a{bottom:200.093333pt;}
.y92{bottom:200.573333pt;}
.yea{bottom:200.866667pt;}
.y68{bottom:203.293333pt;}
.y12{bottom:203.866667pt;}
.y49{bottom:206.213333pt;}
.ybf{bottom:207.973333pt;}
.yb3{bottom:208.293333pt;}
.yaf{bottom:209.146667pt;}
.yde{bottom:210.746667pt;}
.y88{bottom:210.946667pt;}
.y86{bottom:211.866667pt;}
.y71{bottom:213.506667pt;}
.y9f{bottom:215.546667pt;}
.ya8{bottom:217.760000pt;}
.y6f{bottom:221.626667pt;}
.ye9{bottom:223.266667pt;}
.y48{bottom:225.413333pt;}
.yd1{bottom:228.346667pt;}
.y74{bottom:228.386667pt;}
.ycb{bottom:228.666667pt;}
.y7d{bottom:228.706667pt;}
.yc0{bottom:232.026667pt;}
.yb4{bottom:232.346667pt;}
.y11{bottom:232.706667pt;}
.ye1{bottom:234.786667pt;}
.yce{bottom:239.293333pt;}
.yc8{bottom:239.613333pt;}
.y8b{bottom:240.186667pt;}
.y3{bottom:240.453333pt;}
.y93{bottom:240.666667pt;}
.ya0{bottom:244.546667pt;}
.ya9{bottom:247.813333pt;}
.y52{bottom:250.106667pt;}
.y19{bottom:255.360000pt;}
.y28{bottom:255.973333pt;}
.yc1{bottom:256.066667pt;}
.ydb{bottom:256.293333pt;}
.yb5{bottom:256.386667pt;}
.y63{bottom:258.213333pt;}
.y47{bottom:260.666667pt;}
.y10{bottom:261.506667pt;}
.y75{bottom:262.720000pt;}
.ycc{bottom:263.040000pt;}
.y7e{bottom:263.066667pt;}
.ye8{bottom:263.200000pt;}
.y34{bottom:265.146667pt;}
.ya1{bottom:273.533333pt;}
.yda{bottom:276.453333pt;}
.y1e{bottom:277.573333pt;}
.yaa{bottom:277.893333pt;}
.y56{bottom:277.986667pt;}
.y2{bottom:278.853333pt;}
.yc2{bottom:280.133333pt;}
.y8c{bottom:280.293333pt;}
.yb6{bottom:280.453333pt;}
.y62{bottom:280.613333pt;}
.y94{bottom:280.773333pt;}
.y65{bottom:281.213333pt;}
.y33{bottom:281.946667pt;}
.y21{bottom:282.013333pt;}
.y25{bottom:282.533333pt;}
.y18{bottom:284.160000pt;}
.y27{bottom:284.773333pt;}
.yf{bottom:290.306667pt;}
.yd2{bottom:297.053333pt;}
.y76{bottom:297.093333pt;}
.ycd{bottom:297.373333pt;}
.y7f{bottom:297.413333pt;}
.y32{bottom:298.746667pt;}
.y46{bottom:299.066667pt;}
.y24{bottom:301.733333pt;}
.ya2{bottom:302.533333pt;}
.y1d{bottom:303.173333pt;}
.yc3{bottom:304.186667pt;}
.y5d{bottom:304.226667pt;}
.yb7{bottom:304.506667pt;}
.y55{bottom:306.786667pt;}
.yd9{bottom:307.173333pt;}
.yab{bottom:307.973333pt;}
.ye7{bottom:311.226667pt;}
.y26{bottom:313.600000pt;}
.y31{bottom:315.546667pt;}
.y36{bottom:316.666667pt;}
.y1{bottom:317.280000pt;}
.ye{bottom:319.106667pt;}
.y8d{bottom:320.386667pt;}
.y95{bottom:320.866667pt;}
.y5c{bottom:324.386667pt;}
.yc4{bottom:328.253333pt;}
.yb8{bottom:328.573333pt;}
.y3e{bottom:328.933333pt;}
.y77{bottom:331.426667pt;}
.ya3{bottom:331.520000pt;}
.y80{bottom:331.746667pt;}
.y30{bottom:332.346667pt;}
.ye6{bottom:335.226667pt;}
.y54{bottom:335.586667pt;}
.y20{bottom:335.706667pt;}
.y45{bottom:337.466667pt;}
.yac{bottom:338.053333pt;}
.yd8{bottom:343.933333pt;}
.y3f{bottom:344.453333pt;}
.y3d{bottom:345.733333pt;}
.yd{bottom:347.933333pt;}
.y2f{bottom:349.146667pt;}
.yc5{bottom:352.320000pt;}
.yb9{bottom:352.640000pt;}
.y5b{bottom:355.293333pt;}
.ye5{bottom:359.226667pt;}
.ya4{bottom:360.480000pt;}
.y8e{bottom:360.506667pt;}
.y96{bottom:360.986667pt;}
.yd7{bottom:364.093333pt;}
.y78{bottom:365.760000pt;}
.y81{bottom:366.080000pt;}
.y2e{bottom:366.146667pt;}
.yad{bottom:368.133333pt;}
.y44{bottom:375.906667pt;}
.yc6{bottom:376.386667pt;}
.yc{bottom:376.573333pt;}
.yba{bottom:376.706667pt;}
.ye4{bottom:386.106667pt;}
.y5a{bottom:386.173333pt;}
.y17{bottom:389.093333pt;}
.ya5{bottom:389.466667pt;}
.y23{bottom:391.133333pt;}
.y2d{bottom:393.666667pt;}
.y35{bottom:394.306667pt;}
.yd6{bottom:394.973333pt;}
.y43{bottom:395.106667pt;}
.yae{bottom:398.213333pt;}
.y79{bottom:400.133333pt;}
.y82{bottom:400.453333pt;}
.y8f{bottom:400.613333pt;}
.ybb{bottom:400.773333pt;}
.y97{bottom:401.093333pt;}
.yb{bottom:405.533333pt;}
.y59{bottom:406.333333pt;}
.y51{bottom:411.706667pt;}
.yd5{bottom:415.133333pt;}
.y16{bottom:417.893333pt;}
.ye3{bottom:419.706667pt;}
.y50{bottom:428.506667pt;}
.y85{bottom:428.706667pt;}
.y42{bottom:433.506667pt;}
.y58{bottom:437.053333pt;}
.y1b{bottom:438.013333pt;}
.y4f{bottom:445.306667pt;}
.yd4{bottom:445.853333pt;}
.y41{bottom:452.706667pt;}
.y57{bottom:457.253333pt;}
.ye2{bottom:482.946667pt;}
.yd3{bottom:483.066667pt;}
.y1c{bottom:495.133333pt;}
.ya{bottom:495.973333pt;}
.y6c{bottom:522.373333pt;}
.h5{height:33.997500pt;}
.h3{height:34.091937pt;}
.h14{height:42.649687pt;}
.h24{height:42.777000pt;}
.h17{height:42.955000pt;}
.h6{height:46.723437pt;}
.h27{height:47.742188pt;}
.h28{height:47.869500pt;}
.h1d{height:48.812500pt;}
.h4{height:50.996250pt;}
.h1f{height:51.500000pt;}
.h2f{height:54.093750pt;}
.h25{height:55.312500pt;}
.h12{height:55.468750pt;}
.h13{height:55.579687pt;}
.h15{height:56.017500pt;}
.h1b{height:56.144813pt;}
.h20{height:57.375000pt;}
.h1e{height:57.489750pt;}
.h18{height:57.667500pt;}
.h2{height:59.230625pt;}
.h22{height:59.906250pt;}
.h34{height:60.255000pt;}
.h35{height:60.358000pt;}
.h16{height:60.419812pt;}
.h29{height:63.289687pt;}
.h10{height:63.656250pt;}
.he{height:64.898438pt;}
.h21{height:65.009375pt;}
.h1c{height:65.531250pt;}
.h32{height:71.718750pt;}
.h33{height:71.833500pt;}
.ha{height:73.218750pt;}
.h11{height:73.316375pt;}
.h8{height:83.203125pt;}
.h9{height:83.314062pt;}
.hd{height:84.662813pt;}
.hf{height:84.790125pt;}
.h1{height:96.250000pt;}
.hb{height:98.296875pt;}
.h23{height:108.342812pt;}
.h31{height:111.398438pt;}
.h1a{height:120.646563pt;}
.h2e{height:121.894312pt;}
.h19{height:122.179500pt;}
.hc{height:124.915625pt;}
.h30{height:128.493750pt;}
.h7{height:138.782813pt;}
.h2b{height:393.280000pt;}
.h2a{height:492.480000pt;}
.h26{height:498.400000pt;}
.h2c{height:536.160000pt;}
.h2d{height:536.480000pt;}
.h0{height:540.000000pt;}
.w2{width:14.560000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x52{left:11.293333pt;}
.x6d{left:14.431986pt;}
.x27{left:24.063986pt;}
.x19{left:28.543986pt;}
.x3f{left:32.095986pt;}
.x4{left:33.407986pt;}
.x5{left:35.455986pt;}
.x39{left:40.543986pt;}
.x63{left:49.087986pt;}
.x1e{left:53.247986pt;}
.x34{left:55.807986pt;}
.x1{left:57.599986pt;}
.x2{left:59.807986pt;}
.x1c{left:63.487986pt;}
.x40{left:68.127986pt;}
.x1f{left:71.487986pt;}
.x35{left:72.927986pt;}
.x1d{left:79.647986pt;}
.x42{left:92.991986pt;}
.xf{left:106.943986pt;}
.x4e{left:108.575986pt;}
.x3a{left:131.839986pt;}
.x50{left:138.013319pt;}
.x67{left:145.826652pt;}
.x51{left:159.680000pt;}
.x5d{left:160.800000pt;}
.x5a{left:163.546652pt;}
.x25{left:170.426652pt;}
.x53{left:182.946652pt;}
.x5e{left:184.066652pt;}
.x23{left:187.333319pt;}
.x2c{left:196.026652pt;}
.x64{left:197.119986pt;}
.xe{left:202.906652pt;}
.x26{left:204.026652pt;}
.x65{left:205.373319pt;}
.x41{left:226.266652pt;}
.x1a{left:228.959986pt;}
.x3e{left:241.506652pt;}
.x3c{left:244.066652pt;}
.x56{left:255.199986pt;}
.x28{left:258.853319pt;}
.x69{left:262.493319pt;}
.x1b{left:269.986652pt;}
.x3d{left:272.226652pt;}
.x2a{left:275.906652pt;}
.x2b{left:292.733319pt;}
.x16{left:300.959986pt;}
.x14{left:303.519986pt;}
.x6a{left:305.693319pt;}
.x31{left:312.613319pt;}
.x2f{left:314.693319pt;}
.x57{left:324.639986pt;}
.x15{left:331.679986pt;}
.x6c{left:337.053319pt;}
.x32{left:341.533319pt;}
.x6b{left:345.213319pt;}
.x33{left:358.333319pt;}
.x36{left:367.706652pt;}
.x3b{left:371.866652pt;}
.x68{left:378.373319pt;}
.x37{left:384.506652pt;}
.x30{left:387.933319pt;}
.x38{left:401.306652pt;}
.x3{left:404.866652pt;}
.x66{left:421.506652pt;}
.x20{left:442.399986pt;}
.x18{left:449.573319pt;}
.x21{left:459.199986pt;}
.x8{left:462.653319pt;}
.xa{left:465.853319pt;}
.x4f{left:468.226652pt;}
.x9{left:479.453319pt;}
.x43{left:486.946652pt;}
.x22{left:492.133319pt;}
.x17{left:500.159986pt;}
.x29{left:509.759986pt;}
.x54{left:512.320000pt;}
.x5b{left:513.440000pt;}
.x5f{left:515.520000pt;}
.x61{left:517.120000pt;}
.x44{left:526.466652pt;}
.x55{left:535.653319pt;}
.x5c{left:536.773319pt;}
.x60{left:538.853319pt;}
.x62{left:540.453319pt;}
.x24{left:561.439986pt;}
.x10{left:587.813319pt;}
.x45{left:602.746652pt;}
.x58{left:608.706652pt;}
.xc{left:628.799986pt;}
.x2d{left:634.173319pt;}
.x4b{left:635.933319pt;}
.xb{left:638.239986pt;}
.x46{left:642.106652pt;}
.x2e{left:652.346652pt;}
.x4c{left:661.373319pt;}
.x59{left:678.173319pt;}
.x47{left:712.893319pt;}
.x13{left:743.226652pt;}
.x48{left:751.453319pt;}
.x12{left:755.386652pt;}
.x6{left:770.693319pt;}
.x49{left:817.306652pt;}
.x7{left:830.399986pt;}
.x11{left:845.666652pt;}
.xd{left:849.506652pt;}
.x4a{left:856.026652pt;}
.x4d{left:924.613319pt;}
}




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