
    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_9feb606c0755d794a2d2a530.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.118000;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_4254c44c8cf88ec46765d699.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_5f098075b954e4faad702c68.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.141000;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_8ad3b127ac96541c02a62258.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.140000;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_4c218452afd5e431cc83c026.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.178000;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_e7c776bad97e732b8ac9da3d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970000;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_b06cc1c99efa1080f3236c35.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.175000;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_cd2f1be33cfc88edc41733b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.860352;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_87fc608073fd7bc002f8831f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.707000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c65f35a4ac2db12015d08828.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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_c4aaeda2645f1b854e3b42ef.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.116000;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_a45d83eca47f1b05743bd320.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.071000;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-3.756000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-2.760000px;}
.lsc{letter-spacing:-2.268000px;}
.ls5{letter-spacing:-0.840000px;}
.ls4{letter-spacing:-0.570000px;}
.ls2{letter-spacing:-0.420000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.594000px;}
.ls7{letter-spacing:0.798000px;}
.lsa{letter-spacing:2.508000px;}
.ls6{letter-spacing:8.778000px;}
.ls8{letter-spacing:9.828000px;}
.ls1{letter-spacing:10.500000px;}
.ls0{letter-spacing:14.592000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc9{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.380000px;}
.ws3a{word-spacing:-15.960000px;}
.ws73{word-spacing:-14.820000px;}
.ws1{word-spacing:-14.250000px;}
.wsca{word-spacing:-14.040000px;}
.wscd{word-spacing:-13.500000px;}
.wsce{word-spacing:-12.150000px;}
.wscc{word-spacing:-11.232000px;}
.ws2{word-spacing:-10.500000px;}
.wscb{word-spacing:-9.450000px;}
.ws100{word-spacing:-3.762000px;}
.ws84{word-spacing:-3.363000px;}
.wsb4{word-spacing:-3.249000px;}
.wsb3{word-spacing:-3.192000px;}
.ws3b{word-spacing:-3.021000px;}
.ws36{word-spacing:-2.907000px;}
.ws6d{word-spacing:-2.736000px;}
.ws77{word-spacing:-2.679000px;}
.ws11{word-spacing:-2.622000px;}
.wseb{word-spacing:-2.592000px;}
.ws6f{word-spacing:-2.394000px;}
.wsf7{word-spacing:-2.280000px;}
.ws1b{word-spacing:-2.223000px;}
.ws9b{word-spacing:-2.052000px;}
.ws5b{word-spacing:-1.995000px;}
.ws8{word-spacing:-1.653000px;}
.ws75{word-spacing:-1.596000px;}
.wsb{word-spacing:-1.482000px;}
.ws42{word-spacing:-1.425000px;}
.ws30{word-spacing:-1.368000px;}
.ws33{word-spacing:-1.311000px;}
.wsc8{word-spacing:-1.254000px;}
.wsf2{word-spacing:-1.242000px;}
.ws34{word-spacing:-1.197000px;}
.wsed{word-spacing:-1.134000px;}
.wsc{word-spacing:-1.083000px;}
.wsee{word-spacing:-1.026000px;}
.ws5a{word-spacing:-0.969000px;}
.ws8a{word-spacing:-0.912000px;}
.wsd5{word-spacing:-0.864000px;}
.ws49{word-spacing:-0.855000px;}
.wsb8{word-spacing:-0.798000px;}
.wsd6{word-spacing:-0.756000px;}
.wsfb{word-spacing:-0.684000px;}
.ws31{word-spacing:-0.627000px;}
.wse7{word-spacing:-0.594000px;}
.ws86{word-spacing:-0.570000px;}
.wse{word-spacing:-0.456000px;}
.wsd{word-spacing:-0.399000px;}
.wsf{word-spacing:-0.342000px;}
.ws78{word-spacing:-0.171000px;}
.ws98{word-spacing:-0.114000px;}
.ws3{word-spacing:0.000000px;}
.wse2{word-spacing:0.054000px;}
.ws19{word-spacing:0.057000px;}
.wsd8{word-spacing:0.162000px;}
.wsbf{word-spacing:0.171000px;}
.ws74{word-spacing:0.228000px;}
.wsf3{word-spacing:0.270000px;}
.ws5d{word-spacing:0.285000px;}
.wsb5{word-spacing:0.342000px;}
.wsd4{word-spacing:0.378000px;}
.ws71{word-spacing:0.399000px;}
.wse4{word-spacing:0.486000px;}
.ws97{word-spacing:0.513000px;}
.wse5{word-spacing:0.540000px;}
.ws56{word-spacing:0.627000px;}
.wse8{word-spacing:0.648000px;}
.ws3e{word-spacing:0.684000px;}
.ws4d{word-spacing:0.798000px;}
.ws89{word-spacing:0.855000px;}
.ws17{word-spacing:0.912000px;}
.ws88{word-spacing:0.969000px;}
.ws76{word-spacing:1.026000px;}
.ws50{word-spacing:1.197000px;}
.wsc2{word-spacing:1.254000px;}
.ws7c{word-spacing:1.425000px;}
.wsc1{word-spacing:1.539000px;}
.ws90{word-spacing:1.653000px;}
.ws3f{word-spacing:1.767000px;}
.ws12{word-spacing:1.881000px;}
.wsde{word-spacing:1.890000px;}
.wsb6{word-spacing:1.938000px;}
.ws57{word-spacing:1.995000px;}
.wsd9{word-spacing:2.106000px;}
.ws5e{word-spacing:2.166000px;}
.wsda{word-spacing:2.322000px;}
.ws5{word-spacing:2.337000px;}
.wsf0{word-spacing:2.484000px;}
.ws79{word-spacing:2.508000px;}
.ws48{word-spacing:2.565000px;}
.ws93{word-spacing:2.622000px;}
.wse3{word-spacing:2.646000px;}
.ws65{word-spacing:2.679000px;}
.wsa2{word-spacing:2.736000px;}
.wsf1{word-spacing:2.754000px;}
.ws40{word-spacing:2.793000px;}
.ws94{word-spacing:2.907000px;}
.wsef{word-spacing:2.916000px;}
.wsbe{word-spacing:2.964000px;}
.ws4e{word-spacing:3.021000px;}
.ws44{word-spacing:3.078000px;}
.ws68{word-spacing:3.135000px;}
.ws99{word-spacing:3.249000px;}
.ws6e{word-spacing:3.306000px;}
.wsbc{word-spacing:3.420000px;}
.ws6{word-spacing:3.477000px;}
.ws1e{word-spacing:3.591000px;}
.ws54{word-spacing:3.648000px;}
.wsb9{word-spacing:3.705000px;}
.ws1d{word-spacing:3.762000px;}
.wsc0{word-spacing:3.933000px;}
.ws22{word-spacing:4.047000px;}
.wsb1{word-spacing:4.104000px;}
.ws70{word-spacing:4.161000px;}
.wsfa{word-spacing:4.218000px;}
.wsdf{word-spacing:4.266000px;}
.ws8c{word-spacing:4.275000px;}
.wsa9{word-spacing:4.332000px;}
.ws2f{word-spacing:4.389000px;}
.ws4a{word-spacing:4.446000px;}
.wsa{word-spacing:4.617000px;}
.wse0{word-spacing:4.752000px;}
.ws26{word-spacing:4.788000px;}
.ws5c{word-spacing:4.845000px;}
.ws72{word-spacing:4.959000px;}
.ws41{word-spacing:5.073000px;}
.ws13{word-spacing:5.301000px;}
.ws60{word-spacing:5.358000px;}
.ws2a{word-spacing:5.415000px;}
.wsc6{word-spacing:5.529000px;}
.ws51{word-spacing:5.586000px;}
.ws18{word-spacing:5.757000px;}
.wsd3{word-spacing:5.778000px;}
.ws8e{word-spacing:5.871000px;}
.ws7a{word-spacing:5.928000px;}
.ws9{word-spacing:5.985000px;}
.ws4c{word-spacing:6.099000px;}
.ws6b{word-spacing:6.156000px;}
.ws23{word-spacing:6.213000px;}
.wsd7{word-spacing:6.264000px;}
.ws2b{word-spacing:6.270000px;}
.ws25{word-spacing:6.327000px;}
.wsc3{word-spacing:6.384000px;}
.ws62{word-spacing:6.498000px;}
.wsc5{word-spacing:6.555000px;}
.ws3c{word-spacing:6.612000px;}
.wsa5{word-spacing:6.669000px;}
.ws91{word-spacing:6.897000px;}
.wsff{word-spacing:7.011000px;}
.ws9e{word-spacing:7.068000px;}
.ws4b{word-spacing:7.125000px;}
.wsfc{word-spacing:7.182000px;}
.ws85{word-spacing:7.353000px;}
.ws7b{word-spacing:7.410000px;}
.ws2d{word-spacing:7.467000px;}
.wsa3{word-spacing:7.581000px;}
.ws6c{word-spacing:7.638000px;}
.ws9a{word-spacing:7.695000px;}
.ws4f{word-spacing:7.809000px;}
.ws87{word-spacing:7.980000px;}
.ws1a{word-spacing:8.037000px;}
.ws5f{word-spacing:8.208000px;}
.ws59{word-spacing:8.265000px;}
.wsbd{word-spacing:8.322000px;}
.wse9{word-spacing:8.424000px;}
.wsad{word-spacing:8.493000px;}
.ws15{word-spacing:8.550000px;}
.ws8f{word-spacing:8.664000px;}
.ws66{word-spacing:8.721000px;}
.ws55{word-spacing:8.778000px;}
.ws47{word-spacing:8.892000px;}
.wsec{word-spacing:9.126000px;}
.ws38{word-spacing:9.177000px;}
.wsea{word-spacing:9.342000px;}
.ws35{word-spacing:9.519000px;}
.ws81{word-spacing:9.747000px;}
.ws27{word-spacing:9.804000px;}
.ws32{word-spacing:9.861000px;}
.wsf9{word-spacing:9.975000px;}
.ws1f{word-spacing:10.032000px;}
.wsa4{word-spacing:10.089000px;}
.wsf5{word-spacing:10.206000px;}
.wsbb{word-spacing:10.317000px;}
.ws2e{word-spacing:10.602000px;}
.ws96{word-spacing:10.887000px;}
.wse6{word-spacing:10.908000px;}
.wsc4{word-spacing:11.172000px;}
.ws28{word-spacing:11.229000px;}
.wsf4{word-spacing:11.340000px;}
.ws21{word-spacing:11.457000px;}
.ws16{word-spacing:11.628000px;}
.ws10{word-spacing:11.685000px;}
.wsac{word-spacing:11.742000px;}
.ws43{word-spacing:12.027000px;}
.wsdb{word-spacing:12.042000px;}
.ws37{word-spacing:12.141000px;}
.wse1{word-spacing:12.258000px;}
.ws8b{word-spacing:12.312000px;}
.ws29{word-spacing:12.369000px;}
.wsdd{word-spacing:12.582000px;}
.ws63{word-spacing:12.597000px;}
.ws80{word-spacing:12.825000px;}
.wsb7{word-spacing:12.882000px;}
.ws14{word-spacing:13.110000px;}
.ws20{word-spacing:13.167000px;}
.wsc7{word-spacing:13.281000px;}
.ws82{word-spacing:13.509000px;}
.ws67{word-spacing:13.737000px;}
.ws2c{word-spacing:13.965000px;}
.wsdc{word-spacing:13.986000px;}
.ws7f{word-spacing:14.193000px;}
.ws69{word-spacing:14.478000px;}
.wsf6{word-spacing:14.535000px;}
.ws4{word-spacing:14.592000px;}
.ws64{word-spacing:15.048000px;}
.ws3d{word-spacing:15.105000px;}
.wsfe{word-spacing:15.162000px;}
.ws53{word-spacing:15.333000px;}
.ws52{word-spacing:15.447000px;}
.ws83{word-spacing:15.561000px;}
.wsaa{word-spacing:15.789000px;}
.wsb2{word-spacing:15.846000px;}
.ws8d{word-spacing:16.017000px;}
.ws58{word-spacing:16.245000px;}
.ws45{word-spacing:16.302000px;}
.wsfd{word-spacing:16.359000px;}
.ws24{word-spacing:16.416000px;}
.wsa0{word-spacing:16.473000px;}
.wsa8{word-spacing:16.929000px;}
.wsae{word-spacing:16.986000px;}
.wsaf{word-spacing:17.157000px;}
.wscf{word-spacing:17.214000px;}
.wsa1{word-spacing:17.385000px;}
.wsd2{word-spacing:17.550000px;}
.ws61{word-spacing:17.841000px;}
.ws1c{word-spacing:17.898000px;}
.wsa7{word-spacing:18.297000px;}
.wsb0{word-spacing:18.867000px;}
.wsf8{word-spacing:18.981000px;}
.wsba{word-spacing:19.209000px;}
.wsab{word-spacing:19.437000px;}
.ws46{word-spacing:19.836000px;}
.ws7d{word-spacing:20.691000px;}
.ws7{word-spacing:21.261000px;}
.wsd1{word-spacing:21.717000px;}
.ws92{word-spacing:22.686000px;}
.ws9f{word-spacing:23.142000px;}
.ws95{word-spacing:23.313000px;}
.wsa6{word-spacing:23.541000px;}
.ws7e{word-spacing:24.282000px;}
.wsd0{word-spacing:28.158000px;}
.ws6a{word-spacing:36.537000px;}
.ws9c{word-spacing:38.133000px;}
.ws9d{word-spacing:42.978000px;}
.ws39{word-spacing:56.532000px;}
._c{margin-left:-26.097000px;}
._9{margin-left:-15.102600px;}
._3{margin-left:-4.713000px;}
._2{margin-left:-2.793000px;}
._7{margin-left:-1.140000px;}
._0{width:1.920000px;}
._4{width:3.534000px;}
._6{width:6.156000px;}
._e{width:7.809000px;}
._8{width:8.892000px;}
._d{width:11.346000px;}
._a{width:15.846000px;}
._b{width:19.332000px;}
._1{width:21.261000px;}
._5{width:1828.992600px;}
.fc6{color:transparent;}
.fc4{color:rgb(167,165,166);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(145,143,143);}
.fc0{color:rgb(90,87,88);}
.fs0{font-size:30.000000px;}
.fs6{font-size:36.000000px;}
.fs8{font-size:37.800000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:96.000000px;}
.fs3{font-size:183.227400px;}
.y47{bottom:-27.490650px;}
.y0{bottom:0.000000px;}
.y45{bottom:83.896500px;}
.y8f{bottom:83.909250px;}
.ybe{bottom:84.123000px;}
.y75{bottom:85.320000px;}
.yec{bottom:85.391250px;}
.y2b{bottom:85.578000px;}
.y44{bottom:102.450000px;}
.y8e{bottom:102.462750px;}
.ybd{bottom:102.676500px;}
.y74{bottom:103.873500px;}
.yeb{bottom:103.944750px;}
.y2a{bottom:104.131500px;}
.y43{bottom:121.003500px;}
.y8d{bottom:121.016250px;}
.ybc{bottom:121.230000px;}
.y73{bottom:122.427000px;}
.yea{bottom:122.498250px;}
.y29{bottom:122.685000px;}
.y42{bottom:139.557000px;}
.y8c{bottom:139.569750px;}
.ybb{bottom:139.783500px;}
.y72{bottom:140.980500px;}
.ye9{bottom:141.051750px;}
.y28{bottom:141.238500px;}
.y41{bottom:158.110500px;}
.y8b{bottom:158.123250px;}
.yba{bottom:158.337000px;}
.y71{bottom:159.534000px;}
.ye8{bottom:159.605250px;}
.y27{bottom:159.792000px;}
.y40{bottom:176.664000px;}
.y8a{bottom:176.676750px;}
.yb9{bottom:176.890500px;}
.y70{bottom:178.087500px;}
.ye7{bottom:178.158750px;}
.y26{bottom:178.345500px;}
.y3f{bottom:195.217500px;}
.y89{bottom:195.230250px;}
.yb8{bottom:195.444000px;}
.y6f{bottom:196.641000px;}
.ye6{bottom:196.712250px;}
.y25{bottom:196.899000px;}
.y3e{bottom:213.771000px;}
.y88{bottom:213.783750px;}
.yb7{bottom:213.997500px;}
.y6e{bottom:215.194500px;}
.ye5{bottom:215.265750px;}
.y24{bottom:215.452500px;}
.y3d{bottom:232.324500px;}
.y87{bottom:232.337250px;}
.yb6{bottom:232.551000px;}
.y6d{bottom:233.748000px;}
.ye4{bottom:233.819250px;}
.y23{bottom:234.006000px;}
.y3c{bottom:250.878000px;}
.y86{bottom:250.890750px;}
.yb5{bottom:251.104500px;}
.y6c{bottom:252.301500px;}
.ye3{bottom:252.372750px;}
.y22{bottom:252.559500px;}
.y10d{bottom:260.983500px;}
.y3b{bottom:269.431500px;}
.y85{bottom:269.444250px;}
.yb4{bottom:269.658000px;}
.y6b{bottom:270.855000px;}
.ye2{bottom:270.926250px;}
.y21{bottom:271.113000px;}
.y10c{bottom:285.715500px;}
.y3a{bottom:287.985000px;}
.y84{bottom:287.997750px;}
.yb3{bottom:288.211500px;}
.y6a{bottom:289.408500px;}
.ye1{bottom:289.479750px;}
.y20{bottom:289.666500px;}
.y10b{bottom:302.064000px;}
.y39{bottom:306.538500px;}
.y83{bottom:306.551250px;}
.yb2{bottom:306.765000px;}
.y69{bottom:307.962000px;}
.ye0{bottom:308.033250px;}
.y1f{bottom:308.220000px;}
.y10a{bottom:318.412500px;}
.y38{bottom:325.092000px;}
.y82{bottom:325.104750px;}
.yb1{bottom:325.318500px;}
.y68{bottom:326.515500px;}
.ydf{bottom:326.586750px;}
.y1e{bottom:326.773500px;}
.y109{bottom:334.761000px;}
.y37{bottom:343.645500px;}
.y81{bottom:343.658250px;}
.yb0{bottom:343.872000px;}
.y67{bottom:345.069000px;}
.yde{bottom:345.140250px;}
.y1d{bottom:345.327000px;}
.y108{bottom:351.109500px;}
.y36{bottom:362.199000px;}
.y80{bottom:362.211750px;}
.yaf{bottom:362.425500px;}
.y66{bottom:363.622500px;}
.ydd{bottom:363.693750px;}
.y1c{bottom:363.880500px;}
.y107{bottom:367.458000px;}
.y35{bottom:380.752500px;}
.y7f{bottom:380.765250px;}
.yae{bottom:380.979000px;}
.y65{bottom:382.176000px;}
.ydc{bottom:382.247250px;}
.y1b{bottom:382.434000px;}
.y106{bottom:383.806500px;}
.y34{bottom:399.306000px;}
.y7e{bottom:399.318750px;}
.yad{bottom:399.532500px;}
.y105{bottom:400.155000px;}
.y64{bottom:400.729500px;}
.ydb{bottom:400.800750px;}
.y1a{bottom:400.987500px;}
.y104{bottom:416.503500px;}
.y33{bottom:417.859500px;}
.y7d{bottom:417.872250px;}
.yac{bottom:418.086000px;}
.y63{bottom:419.283000px;}
.yda{bottom:419.354250px;}
.y19{bottom:419.541000px;}
.y103{bottom:432.852000px;}
.y32{bottom:436.413000px;}
.y7c{bottom:436.425750px;}
.yab{bottom:436.639500px;}
.y62{bottom:437.836500px;}
.yd9{bottom:437.907750px;}
.y18{bottom:438.094500px;}
.y102{bottom:449.200500px;}
.y31{bottom:454.966500px;}
.y7b{bottom:454.979250px;}
.yaa{bottom:455.193000px;}
.y61{bottom:456.390000px;}
.yd8{bottom:456.461250px;}
.y17{bottom:456.648000px;}
.y101{bottom:465.549000px;}
.y30{bottom:473.520000px;}
.y7a{bottom:473.532750px;}
.ya9{bottom:473.746500px;}
.y60{bottom:474.943500px;}
.yd7{bottom:475.014750px;}
.y16{bottom:475.201500px;}
.y100{bottom:481.911000px;}
.y2f{bottom:492.073500px;}
.y79{bottom:492.086250px;}
.ya8{bottom:492.300000px;}
.y5f{bottom:493.497000px;}
.yd6{bottom:493.568250px;}
.y15{bottom:493.755000px;}
.yff{bottom:498.259500px;}
.y2e{bottom:510.627000px;}
.y78{bottom:510.639750px;}
.ya7{bottom:510.853500px;}
.y5e{bottom:512.050500px;}
.yd5{bottom:512.121750px;}
.y14{bottom:512.308500px;}
.yfe{bottom:514.608000px;}
.y2d{bottom:529.180500px;}
.y77{bottom:529.193250px;}
.ya6{bottom:529.407000px;}
.y5d{bottom:530.604000px;}
.yd4{bottom:530.675250px;}
.y13{bottom:530.862000px;}
.yfd{bottom:530.956500px;}
.yfc{bottom:547.305000px;}
.y2c{bottom:547.734000px;}
.y76{bottom:547.746750px;}
.ya5{bottom:547.960500px;}
.y5c{bottom:549.157500px;}
.yd3{bottom:549.228750px;}
.y12{bottom:549.415500px;}
.yfb{bottom:563.653500px;}
.ya4{bottom:566.514000px;}
.y5b{bottom:567.711000px;}
.yd2{bottom:567.782250px;}
.y11{bottom:567.969000px;}
.yfa{bottom:580.002000px;}
.ya3{bottom:585.067500px;}
.y5a{bottom:586.264500px;}
.yd1{bottom:586.335750px;}
.y10{bottom:586.522500px;}
.yf9{bottom:596.350500px;}
.y90{bottom:596.791500px;}
.y46{bottom:600.943500px;}
.ya2{bottom:603.621000px;}
.y59{bottom:604.818000px;}
.yd0{bottom:604.889250px;}
.yf{bottom:605.076000px;}
.yf8{bottom:612.699000px;}
.ya1{bottom:622.174500px;}
.y58{bottom:623.371500px;}
.ycf{bottom:623.442750px;}
.ye{bottom:623.629500px;}
.yf7{bottom:629.062500px;}
.ya0{bottom:640.728000px;}
.y57{bottom:641.925000px;}
.yce{bottom:641.996250px;}
.yd{bottom:642.183000px;}
.yf6{bottom:645.411000px;}
.y9f{bottom:659.281500px;}
.y56{bottom:660.478500px;}
.ycd{bottom:660.549750px;}
.yc{bottom:660.736500px;}
.yf5{bottom:661.759500px;}
.y9e{bottom:677.835000px;}
.yf4{bottom:678.108000px;}
.y55{bottom:679.032000px;}
.ycc{bottom:679.103250px;}
.yb{bottom:679.290000px;}
.yf3{bottom:694.456500px;}
.y9d{bottom:696.388500px;}
.y54{bottom:697.585500px;}
.ycb{bottom:697.656750px;}
.ya{bottom:697.843500px;}
.yf2{bottom:710.805000px;}
.y9c{bottom:714.942000px;}
.y53{bottom:716.139000px;}
.yca{bottom:716.210250px;}
.y9{bottom:716.397000px;}
.yf1{bottom:727.153500px;}
.y9b{bottom:733.495500px;}
.y52{bottom:734.692500px;}
.yc9{bottom:734.763750px;}
.y8{bottom:734.950500px;}
.yf0{bottom:743.502000px;}
.y9a{bottom:752.049000px;}
.y51{bottom:753.246000px;}
.yc8{bottom:753.317250px;}
.y7{bottom:753.504000px;}
.yef{bottom:759.850500px;}
.y99{bottom:770.602500px;}
.y50{bottom:771.799500px;}
.yc7{bottom:771.870750px;}
.y4{bottom:772.056000px;}
.y6{bottom:772.057500px;}
.yee{bottom:776.199000px;}
.y98{bottom:789.156000px;}
.y4f{bottom:790.353000px;}
.yc6{bottom:790.424250px;}
.y5{bottom:790.611000px;}
.yed{bottom:792.547500px;}
.y97{bottom:807.709500px;}
.y4e{bottom:808.906500px;}
.yc5{bottom:808.977750px;}
.y96{bottom:826.263000px;}
.y4d{bottom:827.460000px;}
.yc4{bottom:827.531250px;}
.y95{bottom:844.816500px;}
.y4c{bottom:846.013500px;}
.yc3{bottom:846.084750px;}
.y94{bottom:863.370000px;}
.y4b{bottom:864.567000px;}
.yc2{bottom:864.638250px;}
.y93{bottom:881.923500px;}
.y4a{bottom:883.120500px;}
.yc1{bottom:883.191750px;}
.y92{bottom:900.477000px;}
.y49{bottom:901.674000px;}
.yc0{bottom:901.745250px;}
.y3{bottom:913.338000px;}
.y91{bottom:919.030500px;}
.y48{bottom:920.227500px;}
.ybf{bottom:920.298750px;}
.y2{bottom:979.093500px;}
.y1{bottom:980.032500px;}
.h2{height:25.800000px;}
.h8{height:26.472656px;}
.h7{height:41.712000px;}
.hb{height:46.926000px;}
.hc{height:48.924000px;}
.h9{height:49.164000px;}
.ha{height:51.357000px;}
.h6{height:51.642000px;}
.h3{height:52.920000px;}
.h4{height:83.424000px;}
.h5{height:159.224611px;}
.h0{height:1040.794500px;}
.h1{height:1041.000000px;}
.w0{width:712.394400px;}
.w1{width:712.500000px;}
.x0{left:0.000000px;}
.xd{left:15.347250px;}
.x7{left:24.347250px;}
.x2{left:56.909250px;}
.xe{left:57.974250px;}
.x9{left:85.386750px;}
.xa{left:98.140500px;}
.x1{left:102.890550px;}
.x3{left:115.646400px;}
.x4{left:138.528900px;}
.xf{left:255.543900px;}
.xb{left:366.012000px;}
.xc{left:378.765750px;}
.x5{left:383.528550px;}
.x6{left:396.282300px;}
.x10{left:419.157900px;}
.x8{left:533.543400px;}
@media print{
.v1{vertical-align:-3.338667pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-2.453333pt;}
.lsc{letter-spacing:-2.016000pt;}
.ls5{letter-spacing:-0.746667pt;}
.ls4{letter-spacing:-0.506667pt;}
.ls2{letter-spacing:-0.373333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.528000pt;}
.ls7{letter-spacing:0.709333pt;}
.lsa{letter-spacing:2.229333pt;}
.ls6{letter-spacing:7.802667pt;}
.ls8{letter-spacing:8.736000pt;}
.ls1{letter-spacing:9.333333pt;}
.ls0{letter-spacing:12.970667pt;}
.wsc9{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.560000pt;}
.ws3a{word-spacing:-14.186667pt;}
.ws73{word-spacing:-13.173333pt;}
.ws1{word-spacing:-12.666667pt;}
.wsca{word-spacing:-12.480000pt;}
.wscd{word-spacing:-12.000000pt;}
.wsce{word-spacing:-10.800000pt;}
.wscc{word-spacing:-9.984000pt;}
.ws2{word-spacing:-9.333333pt;}
.wscb{word-spacing:-8.400000pt;}
.ws100{word-spacing:-3.344000pt;}
.ws84{word-spacing:-2.989333pt;}
.wsb4{word-spacing:-2.888000pt;}
.wsb3{word-spacing:-2.837333pt;}
.ws3b{word-spacing:-2.685333pt;}
.ws36{word-spacing:-2.584000pt;}
.ws6d{word-spacing:-2.432000pt;}
.ws77{word-spacing:-2.381333pt;}
.ws11{word-spacing:-2.330667pt;}
.wseb{word-spacing:-2.304000pt;}
.ws6f{word-spacing:-2.128000pt;}
.wsf7{word-spacing:-2.026667pt;}
.ws1b{word-spacing:-1.976000pt;}
.ws9b{word-spacing:-1.824000pt;}
.ws5b{word-spacing:-1.773333pt;}
.ws8{word-spacing:-1.469333pt;}
.ws75{word-spacing:-1.418667pt;}
.wsb{word-spacing:-1.317333pt;}
.ws42{word-spacing:-1.266667pt;}
.ws30{word-spacing:-1.216000pt;}
.ws33{word-spacing:-1.165333pt;}
.wsc8{word-spacing:-1.114667pt;}
.wsf2{word-spacing:-1.104000pt;}
.ws34{word-spacing:-1.064000pt;}
.wsed{word-spacing:-1.008000pt;}
.wsc{word-spacing:-0.962667pt;}
.wsee{word-spacing:-0.912000pt;}
.ws5a{word-spacing:-0.861333pt;}
.ws8a{word-spacing:-0.810667pt;}
.wsd5{word-spacing:-0.768000pt;}
.ws49{word-spacing:-0.760000pt;}
.wsb8{word-spacing:-0.709333pt;}
.wsd6{word-spacing:-0.672000pt;}
.wsfb{word-spacing:-0.608000pt;}
.ws31{word-spacing:-0.557333pt;}
.wse7{word-spacing:-0.528000pt;}
.ws86{word-spacing:-0.506667pt;}
.wse{word-spacing:-0.405333pt;}
.wsd{word-spacing:-0.354667pt;}
.wsf{word-spacing:-0.304000pt;}
.ws78{word-spacing:-0.152000pt;}
.ws98{word-spacing:-0.101333pt;}
.ws3{word-spacing:0.000000pt;}
.wse2{word-spacing:0.048000pt;}
.ws19{word-spacing:0.050667pt;}
.wsd8{word-spacing:0.144000pt;}
.wsbf{word-spacing:0.152000pt;}
.ws74{word-spacing:0.202667pt;}
.wsf3{word-spacing:0.240000pt;}
.ws5d{word-spacing:0.253333pt;}
.wsb5{word-spacing:0.304000pt;}
.wsd4{word-spacing:0.336000pt;}
.ws71{word-spacing:0.354667pt;}
.wse4{word-spacing:0.432000pt;}
.ws97{word-spacing:0.456000pt;}
.wse5{word-spacing:0.480000pt;}
.ws56{word-spacing:0.557333pt;}
.wse8{word-spacing:0.576000pt;}
.ws3e{word-spacing:0.608000pt;}
.ws4d{word-spacing:0.709333pt;}
.ws89{word-spacing:0.760000pt;}
.ws17{word-spacing:0.810667pt;}
.ws88{word-spacing:0.861333pt;}
.ws76{word-spacing:0.912000pt;}
.ws50{word-spacing:1.064000pt;}
.wsc2{word-spacing:1.114667pt;}
.ws7c{word-spacing:1.266667pt;}
.wsc1{word-spacing:1.368000pt;}
.ws90{word-spacing:1.469333pt;}
.ws3f{word-spacing:1.570667pt;}
.ws12{word-spacing:1.672000pt;}
.wsde{word-spacing:1.680000pt;}
.wsb6{word-spacing:1.722667pt;}
.ws57{word-spacing:1.773333pt;}
.wsd9{word-spacing:1.872000pt;}
.ws5e{word-spacing:1.925333pt;}
.wsda{word-spacing:2.064000pt;}
.ws5{word-spacing:2.077333pt;}
.wsf0{word-spacing:2.208000pt;}
.ws79{word-spacing:2.229333pt;}
.ws48{word-spacing:2.280000pt;}
.ws93{word-spacing:2.330667pt;}
.wse3{word-spacing:2.352000pt;}
.ws65{word-spacing:2.381333pt;}
.wsa2{word-spacing:2.432000pt;}
.wsf1{word-spacing:2.448000pt;}
.ws40{word-spacing:2.482667pt;}
.ws94{word-spacing:2.584000pt;}
.wsef{word-spacing:2.592000pt;}
.wsbe{word-spacing:2.634667pt;}
.ws4e{word-spacing:2.685333pt;}
.ws44{word-spacing:2.736000pt;}
.ws68{word-spacing:2.786667pt;}
.ws99{word-spacing:2.888000pt;}
.ws6e{word-spacing:2.938667pt;}
.wsbc{word-spacing:3.040000pt;}
.ws6{word-spacing:3.090667pt;}
.ws1e{word-spacing:3.192000pt;}
.ws54{word-spacing:3.242667pt;}
.wsb9{word-spacing:3.293333pt;}
.ws1d{word-spacing:3.344000pt;}
.wsc0{word-spacing:3.496000pt;}
.ws22{word-spacing:3.597333pt;}
.wsb1{word-spacing:3.648000pt;}
.ws70{word-spacing:3.698667pt;}
.wsfa{word-spacing:3.749333pt;}
.wsdf{word-spacing:3.792000pt;}
.ws8c{word-spacing:3.800000pt;}
.wsa9{word-spacing:3.850667pt;}
.ws2f{word-spacing:3.901333pt;}
.ws4a{word-spacing:3.952000pt;}
.wsa{word-spacing:4.104000pt;}
.wse0{word-spacing:4.224000pt;}
.ws26{word-spacing:4.256000pt;}
.ws5c{word-spacing:4.306667pt;}
.ws72{word-spacing:4.408000pt;}
.ws41{word-spacing:4.509333pt;}
.ws13{word-spacing:4.712000pt;}
.ws60{word-spacing:4.762667pt;}
.ws2a{word-spacing:4.813333pt;}
.wsc6{word-spacing:4.914667pt;}
.ws51{word-spacing:4.965333pt;}
.ws18{word-spacing:5.117333pt;}
.wsd3{word-spacing:5.136000pt;}
.ws8e{word-spacing:5.218667pt;}
.ws7a{word-spacing:5.269333pt;}
.ws9{word-spacing:5.320000pt;}
.ws4c{word-spacing:5.421333pt;}
.ws6b{word-spacing:5.472000pt;}
.ws23{word-spacing:5.522667pt;}
.wsd7{word-spacing:5.568000pt;}
.ws2b{word-spacing:5.573333pt;}
.ws25{word-spacing:5.624000pt;}
.wsc3{word-spacing:5.674667pt;}
.ws62{word-spacing:5.776000pt;}
.wsc5{word-spacing:5.826667pt;}
.ws3c{word-spacing:5.877333pt;}
.wsa5{word-spacing:5.928000pt;}
.ws91{word-spacing:6.130667pt;}
.wsff{word-spacing:6.232000pt;}
.ws9e{word-spacing:6.282667pt;}
.ws4b{word-spacing:6.333333pt;}
.wsfc{word-spacing:6.384000pt;}
.ws85{word-spacing:6.536000pt;}
.ws7b{word-spacing:6.586667pt;}
.ws2d{word-spacing:6.637333pt;}
.wsa3{word-spacing:6.738667pt;}
.ws6c{word-spacing:6.789333pt;}
.ws9a{word-spacing:6.840000pt;}
.ws4f{word-spacing:6.941333pt;}
.ws87{word-spacing:7.093333pt;}
.ws1a{word-spacing:7.144000pt;}
.ws5f{word-spacing:7.296000pt;}
.ws59{word-spacing:7.346667pt;}
.wsbd{word-spacing:7.397333pt;}
.wse9{word-spacing:7.488000pt;}
.wsad{word-spacing:7.549333pt;}
.ws15{word-spacing:7.600000pt;}
.ws8f{word-spacing:7.701333pt;}
.ws66{word-spacing:7.752000pt;}
.ws55{word-spacing:7.802667pt;}
.ws47{word-spacing:7.904000pt;}
.wsec{word-spacing:8.112000pt;}
.ws38{word-spacing:8.157333pt;}
.wsea{word-spacing:8.304000pt;}
.ws35{word-spacing:8.461333pt;}
.ws81{word-spacing:8.664000pt;}
.ws27{word-spacing:8.714667pt;}
.ws32{word-spacing:8.765333pt;}
.wsf9{word-spacing:8.866667pt;}
.ws1f{word-spacing:8.917333pt;}
.wsa4{word-spacing:8.968000pt;}
.wsf5{word-spacing:9.072000pt;}
.wsbb{word-spacing:9.170667pt;}
.ws2e{word-spacing:9.424000pt;}
.ws96{word-spacing:9.677333pt;}
.wse6{word-spacing:9.696000pt;}
.wsc4{word-spacing:9.930667pt;}
.ws28{word-spacing:9.981333pt;}
.wsf4{word-spacing:10.080000pt;}
.ws21{word-spacing:10.184000pt;}
.ws16{word-spacing:10.336000pt;}
.ws10{word-spacing:10.386667pt;}
.wsac{word-spacing:10.437333pt;}
.ws43{word-spacing:10.690667pt;}
.wsdb{word-spacing:10.704000pt;}
.ws37{word-spacing:10.792000pt;}
.wse1{word-spacing:10.896000pt;}
.ws8b{word-spacing:10.944000pt;}
.ws29{word-spacing:10.994667pt;}
.wsdd{word-spacing:11.184000pt;}
.ws63{word-spacing:11.197333pt;}
.ws80{word-spacing:11.400000pt;}
.wsb7{word-spacing:11.450667pt;}
.ws14{word-spacing:11.653333pt;}
.ws20{word-spacing:11.704000pt;}
.wsc7{word-spacing:11.805333pt;}
.ws82{word-spacing:12.008000pt;}
.ws67{word-spacing:12.210667pt;}
.ws2c{word-spacing:12.413333pt;}
.wsdc{word-spacing:12.432000pt;}
.ws7f{word-spacing:12.616000pt;}
.ws69{word-spacing:12.869333pt;}
.wsf6{word-spacing:12.920000pt;}
.ws4{word-spacing:12.970667pt;}
.ws64{word-spacing:13.376000pt;}
.ws3d{word-spacing:13.426667pt;}
.wsfe{word-spacing:13.477333pt;}
.ws53{word-spacing:13.629333pt;}
.ws52{word-spacing:13.730667pt;}
.ws83{word-spacing:13.832000pt;}
.wsaa{word-spacing:14.034667pt;}
.wsb2{word-spacing:14.085333pt;}
.ws8d{word-spacing:14.237333pt;}
.ws58{word-spacing:14.440000pt;}
.ws45{word-spacing:14.490667pt;}
.wsfd{word-spacing:14.541333pt;}
.ws24{word-spacing:14.592000pt;}
.wsa0{word-spacing:14.642667pt;}
.wsa8{word-spacing:15.048000pt;}
.wsae{word-spacing:15.098667pt;}
.wsaf{word-spacing:15.250667pt;}
.wscf{word-spacing:15.301333pt;}
.wsa1{word-spacing:15.453333pt;}
.wsd2{word-spacing:15.600000pt;}
.ws61{word-spacing:15.858667pt;}
.ws1c{word-spacing:15.909333pt;}
.wsa7{word-spacing:16.264000pt;}
.wsb0{word-spacing:16.770667pt;}
.wsf8{word-spacing:16.872000pt;}
.wsba{word-spacing:17.074667pt;}
.wsab{word-spacing:17.277333pt;}
.ws46{word-spacing:17.632000pt;}
.ws7d{word-spacing:18.392000pt;}
.ws7{word-spacing:18.898667pt;}
.wsd1{word-spacing:19.304000pt;}
.ws92{word-spacing:20.165333pt;}
.ws9f{word-spacing:20.570667pt;}
.ws95{word-spacing:20.722667pt;}
.wsa6{word-spacing:20.925333pt;}
.ws7e{word-spacing:21.584000pt;}
.wsd0{word-spacing:25.029333pt;}
.ws6a{word-spacing:32.477333pt;}
.ws9c{word-spacing:33.896000pt;}
.ws9d{word-spacing:38.202667pt;}
.ws39{word-spacing:50.250667pt;}
._c{margin-left:-23.197333pt;}
._9{margin-left:-13.424533pt;}
._3{margin-left:-4.189333pt;}
._2{margin-left:-2.482667pt;}
._7{margin-left:-1.013333pt;}
._0{width:1.706667pt;}
._4{width:3.141333pt;}
._6{width:5.472000pt;}
._e{width:6.941333pt;}
._8{width:7.904000pt;}
._d{width:10.085333pt;}
._a{width:14.085333pt;}
._b{width:17.184000pt;}
._1{width:18.898667pt;}
._5{width:1625.771200pt;}
.fs0{font-size:26.666667pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:33.600000pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:85.333333pt;}
.fs3{font-size:162.868800pt;}
.y47{bottom:-24.436133pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:74.574667pt;}
.y8f{bottom:74.586000pt;}
.ybe{bottom:74.776000pt;}
.y75{bottom:75.840000pt;}
.yec{bottom:75.903333pt;}
.y2b{bottom:76.069333pt;}
.y44{bottom:91.066667pt;}
.y8e{bottom:91.078000pt;}
.ybd{bottom:91.268000pt;}
.y74{bottom:92.332000pt;}
.yeb{bottom:92.395333pt;}
.y2a{bottom:92.561333pt;}
.y43{bottom:107.558667pt;}
.y8d{bottom:107.570000pt;}
.ybc{bottom:107.760000pt;}
.y73{bottom:108.824000pt;}
.yea{bottom:108.887333pt;}
.y29{bottom:109.053333pt;}
.y42{bottom:124.050667pt;}
.y8c{bottom:124.062000pt;}
.ybb{bottom:124.252000pt;}
.y72{bottom:125.316000pt;}
.ye9{bottom:125.379333pt;}
.y28{bottom:125.545333pt;}
.y41{bottom:140.542667pt;}
.y8b{bottom:140.554000pt;}
.yba{bottom:140.744000pt;}
.y71{bottom:141.808000pt;}
.ye8{bottom:141.871333pt;}
.y27{bottom:142.037333pt;}
.y40{bottom:157.034667pt;}
.y8a{bottom:157.046000pt;}
.yb9{bottom:157.236000pt;}
.y70{bottom:158.300000pt;}
.ye7{bottom:158.363333pt;}
.y26{bottom:158.529333pt;}
.y3f{bottom:173.526667pt;}
.y89{bottom:173.538000pt;}
.yb8{bottom:173.728000pt;}
.y6f{bottom:174.792000pt;}
.ye6{bottom:174.855333pt;}
.y25{bottom:175.021333pt;}
.y3e{bottom:190.018667pt;}
.y88{bottom:190.030000pt;}
.yb7{bottom:190.220000pt;}
.y6e{bottom:191.284000pt;}
.ye5{bottom:191.347333pt;}
.y24{bottom:191.513333pt;}
.y3d{bottom:206.510667pt;}
.y87{bottom:206.522000pt;}
.yb6{bottom:206.712000pt;}
.y6d{bottom:207.776000pt;}
.ye4{bottom:207.839333pt;}
.y23{bottom:208.005333pt;}
.y3c{bottom:223.002667pt;}
.y86{bottom:223.014000pt;}
.yb5{bottom:223.204000pt;}
.y6c{bottom:224.268000pt;}
.ye3{bottom:224.331333pt;}
.y22{bottom:224.497333pt;}
.y10d{bottom:231.985333pt;}
.y3b{bottom:239.494667pt;}
.y85{bottom:239.506000pt;}
.yb4{bottom:239.696000pt;}
.y6b{bottom:240.760000pt;}
.ye2{bottom:240.823333pt;}
.y21{bottom:240.989333pt;}
.y10c{bottom:253.969333pt;}
.y3a{bottom:255.986667pt;}
.y84{bottom:255.998000pt;}
.yb3{bottom:256.188000pt;}
.y6a{bottom:257.252000pt;}
.ye1{bottom:257.315333pt;}
.y20{bottom:257.481333pt;}
.y10b{bottom:268.501333pt;}
.y39{bottom:272.478667pt;}
.y83{bottom:272.490000pt;}
.yb2{bottom:272.680000pt;}
.y69{bottom:273.744000pt;}
.ye0{bottom:273.807333pt;}
.y1f{bottom:273.973333pt;}
.y10a{bottom:283.033333pt;}
.y38{bottom:288.970667pt;}
.y82{bottom:288.982000pt;}
.yb1{bottom:289.172000pt;}
.y68{bottom:290.236000pt;}
.ydf{bottom:290.299333pt;}
.y1e{bottom:290.465333pt;}
.y109{bottom:297.565333pt;}
.y37{bottom:305.462667pt;}
.y81{bottom:305.474000pt;}
.yb0{bottom:305.664000pt;}
.y67{bottom:306.728000pt;}
.yde{bottom:306.791333pt;}
.y1d{bottom:306.957333pt;}
.y108{bottom:312.097333pt;}
.y36{bottom:321.954667pt;}
.y80{bottom:321.966000pt;}
.yaf{bottom:322.156000pt;}
.y66{bottom:323.220000pt;}
.ydd{bottom:323.283333pt;}
.y1c{bottom:323.449333pt;}
.y107{bottom:326.629333pt;}
.y35{bottom:338.446667pt;}
.y7f{bottom:338.458000pt;}
.yae{bottom:338.648000pt;}
.y65{bottom:339.712000pt;}
.ydc{bottom:339.775333pt;}
.y1b{bottom:339.941333pt;}
.y106{bottom:341.161333pt;}
.y34{bottom:354.938667pt;}
.y7e{bottom:354.950000pt;}
.yad{bottom:355.140000pt;}
.y105{bottom:355.693333pt;}
.y64{bottom:356.204000pt;}
.ydb{bottom:356.267333pt;}
.y1a{bottom:356.433333pt;}
.y104{bottom:370.225333pt;}
.y33{bottom:371.430667pt;}
.y7d{bottom:371.442000pt;}
.yac{bottom:371.632000pt;}
.y63{bottom:372.696000pt;}
.yda{bottom:372.759333pt;}
.y19{bottom:372.925333pt;}
.y103{bottom:384.757333pt;}
.y32{bottom:387.922667pt;}
.y7c{bottom:387.934000pt;}
.yab{bottom:388.124000pt;}
.y62{bottom:389.188000pt;}
.yd9{bottom:389.251333pt;}
.y18{bottom:389.417333pt;}
.y102{bottom:399.289333pt;}
.y31{bottom:404.414667pt;}
.y7b{bottom:404.426000pt;}
.yaa{bottom:404.616000pt;}
.y61{bottom:405.680000pt;}
.yd8{bottom:405.743333pt;}
.y17{bottom:405.909333pt;}
.y101{bottom:413.821333pt;}
.y30{bottom:420.906667pt;}
.y7a{bottom:420.918000pt;}
.ya9{bottom:421.108000pt;}
.y60{bottom:422.172000pt;}
.yd7{bottom:422.235333pt;}
.y16{bottom:422.401333pt;}
.y100{bottom:428.365333pt;}
.y2f{bottom:437.398667pt;}
.y79{bottom:437.410000pt;}
.ya8{bottom:437.600000pt;}
.y5f{bottom:438.664000pt;}
.yd6{bottom:438.727333pt;}
.y15{bottom:438.893333pt;}
.yff{bottom:442.897333pt;}
.y2e{bottom:453.890667pt;}
.y78{bottom:453.902000pt;}
.ya7{bottom:454.092000pt;}
.y5e{bottom:455.156000pt;}
.yd5{bottom:455.219333pt;}
.y14{bottom:455.385333pt;}
.yfe{bottom:457.429333pt;}
.y2d{bottom:470.382667pt;}
.y77{bottom:470.394000pt;}
.ya6{bottom:470.584000pt;}
.y5d{bottom:471.648000pt;}
.yd4{bottom:471.711333pt;}
.y13{bottom:471.877333pt;}
.yfd{bottom:471.961333pt;}
.yfc{bottom:486.493333pt;}
.y2c{bottom:486.874667pt;}
.y76{bottom:486.886000pt;}
.ya5{bottom:487.076000pt;}
.y5c{bottom:488.140000pt;}
.yd3{bottom:488.203333pt;}
.y12{bottom:488.369333pt;}
.yfb{bottom:501.025333pt;}
.ya4{bottom:503.568000pt;}
.y5b{bottom:504.632000pt;}
.yd2{bottom:504.695333pt;}
.y11{bottom:504.861333pt;}
.yfa{bottom:515.557333pt;}
.ya3{bottom:520.060000pt;}
.y5a{bottom:521.124000pt;}
.yd1{bottom:521.187333pt;}
.y10{bottom:521.353333pt;}
.yf9{bottom:530.089333pt;}
.y90{bottom:530.481333pt;}
.y46{bottom:534.172000pt;}
.ya2{bottom:536.552000pt;}
.y59{bottom:537.616000pt;}
.yd0{bottom:537.679333pt;}
.yf{bottom:537.845333pt;}
.yf8{bottom:544.621333pt;}
.ya1{bottom:553.044000pt;}
.y58{bottom:554.108000pt;}
.ycf{bottom:554.171333pt;}
.ye{bottom:554.337333pt;}
.yf7{bottom:559.166667pt;}
.ya0{bottom:569.536000pt;}
.y57{bottom:570.600000pt;}
.yce{bottom:570.663333pt;}
.yd{bottom:570.829333pt;}
.yf6{bottom:573.698667pt;}
.y9f{bottom:586.028000pt;}
.y56{bottom:587.092000pt;}
.ycd{bottom:587.155333pt;}
.yc{bottom:587.321333pt;}
.yf5{bottom:588.230667pt;}
.y9e{bottom:602.520000pt;}
.yf4{bottom:602.762667pt;}
.y55{bottom:603.584000pt;}
.ycc{bottom:603.647333pt;}
.yb{bottom:603.813333pt;}
.yf3{bottom:617.294667pt;}
.y9d{bottom:619.012000pt;}
.y54{bottom:620.076000pt;}
.ycb{bottom:620.139333pt;}
.ya{bottom:620.305333pt;}
.yf2{bottom:631.826667pt;}
.y9c{bottom:635.504000pt;}
.y53{bottom:636.568000pt;}
.yca{bottom:636.631333pt;}
.y9{bottom:636.797333pt;}
.yf1{bottom:646.358667pt;}
.y9b{bottom:651.996000pt;}
.y52{bottom:653.060000pt;}
.yc9{bottom:653.123333pt;}
.y8{bottom:653.289333pt;}
.yf0{bottom:660.890667pt;}
.y9a{bottom:668.488000pt;}
.y51{bottom:669.552000pt;}
.yc8{bottom:669.615333pt;}
.y7{bottom:669.781333pt;}
.yef{bottom:675.422667pt;}
.y99{bottom:684.980000pt;}
.y50{bottom:686.044000pt;}
.yc7{bottom:686.107333pt;}
.y4{bottom:686.272000pt;}
.y6{bottom:686.273333pt;}
.yee{bottom:689.954667pt;}
.y98{bottom:701.472000pt;}
.y4f{bottom:702.536000pt;}
.yc6{bottom:702.599333pt;}
.y5{bottom:702.765333pt;}
.yed{bottom:704.486667pt;}
.y97{bottom:717.964000pt;}
.y4e{bottom:719.028000pt;}
.yc5{bottom:719.091333pt;}
.y96{bottom:734.456000pt;}
.y4d{bottom:735.520000pt;}
.yc4{bottom:735.583333pt;}
.y95{bottom:750.948000pt;}
.y4c{bottom:752.012000pt;}
.yc3{bottom:752.075333pt;}
.y94{bottom:767.440000pt;}
.y4b{bottom:768.504000pt;}
.yc2{bottom:768.567333pt;}
.y93{bottom:783.932000pt;}
.y4a{bottom:784.996000pt;}
.yc1{bottom:785.059333pt;}
.y92{bottom:800.424000pt;}
.y49{bottom:801.488000pt;}
.yc0{bottom:801.551333pt;}
.y3{bottom:811.856000pt;}
.y91{bottom:816.916000pt;}
.y48{bottom:817.980000pt;}
.ybf{bottom:818.043333pt;}
.y2{bottom:870.305333pt;}
.y1{bottom:871.140000pt;}
.h2{height:22.933333pt;}
.h8{height:23.531250pt;}
.h7{height:37.077333pt;}
.hb{height:41.712000pt;}
.hc{height:43.488000pt;}
.h9{height:43.701333pt;}
.ha{height:45.650667pt;}
.h6{height:45.904000pt;}
.h3{height:47.040000pt;}
.h4{height:74.154667pt;}
.h5{height:141.532987pt;}
.h0{height:925.150667pt;}
.h1{height:925.333333pt;}
.w0{width:633.239467pt;}
.w1{width:633.333333pt;}
.x0{left:0.000000pt;}
.xd{left:13.642000pt;}
.x7{left:21.642000pt;}
.x2{left:50.586000pt;}
.xe{left:51.532667pt;}
.x9{left:75.899333pt;}
.xa{left:87.236000pt;}
.x1{left:91.458267pt;}
.x3{left:102.796800pt;}
.x4{left:123.136800pt;}
.xf{left:227.150133pt;}
.xb{left:325.344000pt;}
.xc{left:336.680667pt;}
.x5{left:340.914267pt;}
.x6{left:352.250933pt;}
.x10{left:372.584800pt;}
.x8{left:474.260800pt;}
}




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