
    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_0ba5c8e320824b8a9c52a9e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_689cd63882526f9130fda0b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_370a5a1125ed4441a2c11039.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.834473;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_0e655c4d431398b98d70069a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.965500;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_6ae060d02a811582973c7739.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908000;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_981043e95c0c58f4b18f65e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.965500;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_a8782f0030647ebee8058211.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_9dcca57894b62eed4319f306.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.731500;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_1337000cd1e9d36328302705.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.731000;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_eb6c723396ed9ed137b148de.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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);}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.880000px;}
.v1{vertical-align:43.200000px;}
.v6{vertical-align:58.320000px;}
.v5{vertical-align:64.800000px;}
.v2{vertical-align:74.299680px;}
.ls13{letter-spacing:-0.378000px;}
.ls16{letter-spacing:-0.371520px;}
.lsc{letter-spacing:-0.360720px;}
.ls19{letter-spacing:-0.336960px;}
.ls26{letter-spacing:-0.324000px;}
.ls24{letter-spacing:-0.288000px;}
.ls2c{letter-spacing:-0.287280px;}
.ls12{letter-spacing:-0.270000px;}
.ls4{letter-spacing:-0.264240px;}
.ls18{letter-spacing:-0.252720px;}
.ls15{letter-spacing:-0.252000px;}
.ls2{letter-spacing:-0.240480px;}
.ls21{letter-spacing:-0.239760px;}
.ls38{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.191520px;}
.lsa{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.120240px;}
.ls39{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.095760px;}
.ls1c{letter-spacing:-0.084240px;}
.ls27{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.084240px;}
.ls34{letter-spacing:0.095760px;}
.lsd{letter-spacing:0.120240px;}
.ls1e{letter-spacing:0.131760px;}
.ls23{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.191520px;}
.ls6{letter-spacing:0.192240px;}
.ls25{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.239760px;}
.lse{letter-spacing:0.240480px;}
.ls14{letter-spacing:0.252000px;}
.ls1b{letter-spacing:0.252720px;}
.ls30{letter-spacing:0.287280px;}
.ls0{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.312480px;}
.ls37{letter-spacing:0.324000px;}
.ls31{letter-spacing:0.331200px;}
.ls1a{letter-spacing:0.336960px;}
.ls11{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.360720px;}
.ls10{letter-spacing:0.378000px;}
.ls1{letter-spacing:0.432000px;}
.ls2f{letter-spacing:1.723680px;}
.ls22{letter-spacing:1.728000px;}
.lsf{letter-spacing:1.800000px;}
.ls29{letter-spacing:25.855200px;}
.ls1f{letter-spacing:25.871760px;}
.ls2e{letter-spacing:40.281840px;}
.ls8{letter-spacing:51.186960px;}
.ls2d{letter-spacing:59.414400px;}
.ls7{letter-spacing:60.739200px;}
.ls1d{letter-spacing:68.966640px;}
.ls28{letter-spacing:77.826960px;}
.ls36{letter-spacing:477.576000px;}
.ls35{letter-spacing:493.452000px;}
.ls32{letter-spacing:521.892000px;}
.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;}
}
.ws8c{word-spacing:-493.560000px;}
.ws96{word-spacing:-477.684000px;}
.wsa3{word-spacing:-97.812000px;}
.ws97{word-spacing:-53.568000px;}
.ws75{word-spacing:-53.352000px;}
.ws23{word-spacing:-45.511200px;}
.ws38{word-spacing:-27.936000px;}
.ws39{word-spacing:-27.792000px;}
.ws42{word-spacing:-27.648000px;}
.ws37{word-spacing:-27.504000px;}
.ws2f{word-spacing:-25.561440px;}
.ws30{word-spacing:-25.429680px;}
.ws15{word-spacing:-23.940000px;}
.ws1{word-spacing:-23.556960px;}
.wsa{word-spacing:-23.446800px;}
.ws8{word-spacing:-23.326560px;}
.ws9{word-spacing:-23.206320px;}
.ws55{word-spacing:-23.086080px;}
.ws0{word-spacing:-22.965840px;}
.ws9b{word-spacing:-21.168000px;}
.ws86{word-spacing:-21.060000px;}
.ws74{word-spacing:-20.844000px;}
.ws8a{word-spacing:-20.628000px;}
.ws43{word-spacing:-20.520000px;}
.ws5f{word-spacing:-18.768960px;}
.ws4e{word-spacing:-18.673200px;}
.ws50{word-spacing:-18.481680px;}
.ws79{word-spacing:-18.290160px;}
.ws4f{word-spacing:-18.194400px;}
.ws16{word-spacing:-17.370000px;}
.ws2b{word-spacing:-16.595280px;}
.ws2d{word-spacing:-16.511040px;}
.ws27{word-spacing:-16.342560px;}
.ws26{word-spacing:-16.258320px;}
.ws2e{word-spacing:-16.174080px;}
.ws28{word-spacing:-16.005600px;}
.ws2a{word-spacing:-15.921360px;}
.ws69{word-spacing:-14.112000px;}
.ws48{word-spacing:-13.896000px;}
.ws45{word-spacing:-13.824000px;}
.ws4b{word-spacing:-13.752000px;}
.ws11{word-spacing:-2.525040px;}
.ws98{word-spacing:-2.484000px;}
.ws5a{word-spacing:-2.404800px;}
.ws5e{word-spacing:-2.044080px;}
.ws1e{word-spacing:-1.890000px;}
.ws10{word-spacing:-1.803600px;}
.ws73{word-spacing:-1.683360px;}
.ws21{word-spacing:-1.512000px;}
.ws35{word-spacing:-1.406160px;}
.ws12{word-spacing:-1.322640px;}
.ws6{word-spacing:-1.296000px;}
.ws51{word-spacing:-1.202400px;}
.wsa4{word-spacing:-1.188000px;}
.ws18{word-spacing:-1.170000px;}
.ws3f{word-spacing:-1.152000px;}
.ws5b{word-spacing:-1.082160px;}
.ws77{word-spacing:-1.080000px;}
.ws3{word-spacing:-1.056960px;}
.ws52{word-spacing:-0.961920px;}
.ws7{word-spacing:-0.961200px;}
.ws34{word-spacing:-0.937440px;}
.ws1c{word-spacing:-0.882000px;}
.wsa0{word-spacing:-0.864000px;}
.wsc{word-spacing:-0.721440px;}
.ws59{word-spacing:-0.720000px;}
.ws82{word-spacing:-0.670320px;}
.ws36{word-spacing:-0.624960px;}
.wse{word-spacing:-0.601200px;}
.ws3a{word-spacing:-0.576000px;}
.ws1f{word-spacing:-0.540000px;}
.ws2{word-spacing:-0.528480px;}
.wsd{word-spacing:-0.480960px;}
.ws14{word-spacing:-0.479520px;}
.ws70{word-spacing:-0.478800px;}
.ws17{word-spacing:-0.450000px;}
.ws9f{word-spacing:-0.432000px;}
.ws33{word-spacing:-0.395280px;}
.ws57{word-spacing:-0.360720px;}
.wsa1{word-spacing:-0.360000px;}
.ws9a{word-spacing:-0.324000px;}
.ws4{word-spacing:-0.288000px;}
.ws56{word-spacing:-0.240480px;}
.ws84{word-spacing:-0.191520px;}
.ws32{word-spacing:-0.131760px;}
.ws1b{word-spacing:-0.090000px;}
.ws5{word-spacing:0.000000px;}
.ws7b{word-spacing:0.095760px;}
.ws9e{word-spacing:0.108000px;}
.ws58{word-spacing:0.120240px;}
.ws3e{word-spacing:0.144000px;}
.ws19{word-spacing:0.180000px;}
.ws9d{word-spacing:0.216000px;}
.ws40{word-spacing:0.239760px;}
.ws13{word-spacing:0.240480px;}
.ws53{word-spacing:0.287280px;}
.ws3c{word-spacing:0.288000px;}
.ws76{word-spacing:0.324000px;}
.ws83{word-spacing:0.383040px;}
.ws31{word-spacing:0.395280px;}
.wsb{word-spacing:0.432000px;}
.ws7e{word-spacing:0.478800px;}
.ws22{word-spacing:0.504000px;}
.ws25{word-spacing:0.557280px;}
.ws5d{word-spacing:0.576000px;}
.wsf{word-spacing:0.601200px;}
.ws1d{word-spacing:0.630000px;}
.ws41{word-spacing:0.648000px;}
.ws5c{word-spacing:0.719280px;}
.wsa2{word-spacing:0.864000px;}
.ws54{word-spacing:0.957600px;}
.ws7d{word-spacing:1.053360px;}
.ws99{word-spacing:1.080000px;}
.ws20{word-spacing:1.134000px;}
.ws3d{word-spacing:1.152000px;}
.ws1a{word-spacing:1.260000px;}
.ws71{word-spacing:1.819440px;}
.ws3b{word-spacing:2.016000px;}
.ws24{word-spacing:2.043360px;}
.ws7c{word-spacing:2.298240px;}
.ws72{word-spacing:2.394000px;}
.ws7f{word-spacing:2.489760px;}
.ws80{word-spacing:3.160080px;}
.ws81{word-spacing:3.255840px;}
.ws85{word-spacing:86.410800px;}
.ws62{word-spacing:114.615600px;}
.ws88{word-spacing:114.912000px;}
.ws66{word-spacing:160.560000px;}
.ws87{word-spacing:174.619800px;}
.ws6a{word-spacing:194.328000px;}
.ws67{word-spacing:203.112000px;}
.ws63{word-spacing:220.636128px;}
.ws6e{word-spacing:230.544000px;}
.ws89{word-spacing:240.796800px;}
.ws92{word-spacing:246.596400px;}
.ws93{word-spacing:247.428000px;}
.ws6d{word-spacing:250.992000px;}
.ws61{word-spacing:253.800000px;}
.ws65{word-spacing:265.248000px;}
.ws8f{word-spacing:266.220000px;}
.ws6b{word-spacing:286.920000px;}
.ws68{word-spacing:295.560000px;}
.ws6f{word-spacing:304.920000px;}
.ws6c{word-spacing:317.376000px;}
.ws90{word-spacing:329.616000px;}
.ws8d{word-spacing:335.340000px;}
.ws64{word-spacing:346.176000px;}
.ws60{word-spacing:369.648000px;}
.ws8e{word-spacing:379.803600px;}
.ws8b{word-spacing:391.284000px;}
.ws94{word-spacing:398.487600px;}
.ws78{word-spacing:409.862376px;}
.ws91{word-spacing:411.447600px;}
.ws44{word-spacing:416.160000px;}
.ws95{word-spacing:456.732000px;}
.ws9c{word-spacing:459.766200px;}
.ws7a{word-spacing:510.908328px;}
.ws4c{word-spacing:521.496000px;}
.ws49{word-spacing:533.736000px;}
.ws4a{word-spacing:576.216000px;}
.ws47{word-spacing:579.816000px;}
.ws46{word-spacing:638.136000px;}
.ws4d{word-spacing:685.512000px;}
.ws2c{word-spacing:3137.131296px;}
.ws29{word-spacing:3153.574944px;}
._d{margin-left:-35.748000px;}
._3{margin-left:-2.250000px;}
._2{margin-left:-1.049040px;}
._0{width:1.130256px;}
._1{width:2.252016px;}
._9{width:3.753216px;}
._a{width:4.950216px;}
._4{width:25.855200px;}
._6{width:92.590344px;}
._8{width:104.607648px;}
._b{width:226.299888px;}
._5{width:307.536192px;}
._c{width:442.476000px;}
._e{width:451.947600px;}
._f{width:513.432000px;}
._7{width:521.892000px;}
.fc5{color:rgb(255,158,24);}
.fc8{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(1,30,65);}
.fc7{color:rgb(36,134,252);}
.fc2{color:rgb(3,80,174);}
.fc6{color:rgb(255,216,163);}
.fc1{color:rgb(0,33,105);}
.fc0{color:rgb(34,47,93);}
.fs14{font-size:66.240000px;}
.fs11{font-size:72.000000px;}
.fs13{font-size:77.040000px;}
.fsa{font-size:84.240000px;}
.fs12{font-size:86.400000px;}
.fs7{font-size:90.000000px;}
.fs3{font-size:95.760000px;}
.fsb{font-size:105.840000px;}
.fs10{font-size:108.000000px;}
.fs5{font-size:115.200000px;}
.fs0{font-size:120.240000px;}
.fsd{font-size:124.560000px;}
.fs8{font-size:126.000000px;}
.fsc{font-size:131.760000px;}
.fs2{font-size:144.000000px;}
.fse{font-size:156.240000px;}
.fs9{font-size:185.760000px;}
.fs4{font-size:192.240000px;}
.fs15{font-size:216.000000px;}
.fs6{font-size:239.760000px;}
.fs1{font-size:264.240000px;}
.fsf{font-size:324.000000px;}
.fs16{font-size:360.000000px;}
.fs17{font-size:396.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:21.521100px;}
.yd2{bottom:79.194000px;}
.yb1{bottom:88.011510px;}
.y11{bottom:90.855120px;}
.yd1{bottom:108.354000px;}
.y35{bottom:109.908630px;}
.yb0{bottom:116.811330px;}
.y10{bottom:126.867000px;}
.y5{bottom:134.216850px;}
.y34{bottom:135.117450px;}
.y97{bottom:144.036450px;}
.y25{bottom:144.324150px;}
.yc9{bottom:146.371350px;}
.y89{bottom:146.611650px;}
.y59{bottom:152.009400px;}
.y27{bottom:152.604300px;}
.ydf{bottom:153.594810px;}
.yaf{bottom:156.408090px;}
.y40{bottom:156.483510px;}
.ybd{bottom:157.405800px;}
.y33{bottom:160.326270px;}
.y7e{bottom:164.838150px;}
.y24{bottom:172.584150px;}
.yf{bottom:177.975270px;}
.y60{bottom:180.318300px;}
.yae{bottom:185.207910px;}
.y32{bottom:185.535090px;}
.y26{bottom:186.624300px;}
.y49{bottom:187.605300px;}
.yde{bottom:189.606690px;}
.y88{bottom:189.811650px;}
.ye8{bottom:190.925100px;}
.yc8{bottom:193.711350px;}
.y3f{bottom:193.942050px;}
.y58{bottom:198.377400px;}
.y23{bottom:201.024150px;}
.ybc{bottom:203.764800px;}
.y4{bottom:208.376850px;}
.y9f{bottom:210.059340px;}
.y31{bottom:210.743910px;}
.y7d{bottom:212.178150px;}
.ye{bottom:213.987150px;}
.yad{bottom:214.007730px;}
.y98{bottom:217.606200px;}
.ydd{bottom:225.618570px;}
.y50{bottom:226.326450px;}
.yb5{bottom:232.618800px;}
.y87{bottom:233.011650px;}
.ye7{bottom:234.125100px;}
.y30{bottom:235.952730px;}
.yc7{bottom:241.231350px;}
.y2f{bottom:242.586630px;}
.y57{bottom:244.745400px;}
.y48{bottom:245.745300px;}
.y9e{bottom:246.071220px;}
.y69{bottom:248.177970px;}
.y5f{bottom:249.258300px;}
.ybb{bottom:250.123800px;}
.yac{bottom:253.604490px;}
.y72{bottom:256.024500px;}
.y7c{bottom:259.518150px;}
.ydc{bottom:261.630450px;}
.yd{bottom:264.915120px;}
.y2e{bottom:267.795450px;}
.y4f{bottom:269.526450px;}
.y67{bottom:274.104990px;}
.y20{bottom:274.729800px;}
.yb4{bottom:280.620000px;}
.yd0{bottom:281.319750px;}
.y22{bottom:281.951850px;}
.y9d{bottom:282.083100px;}
.yab{bottom:282.404310px;}
.yc6{bottom:288.571350px;}
.y56{bottom:291.113400px;}
.y86{bottom:291.151650px;}
.y96{bottom:291.176100px;}
.ye6{bottom:292.265100px;}
.y3e{bottom:293.122050px;}
.ycd{bottom:295.899750px;}
.yba{bottom:296.482800px;}
.y68{bottom:300.032010px;}
.yc{bottom:300.927000px;}
.yea{bottom:302.564550px;}
.y1f{bottom:302.989800px;}
.y47{bottom:304.065300px;}
.y66{bottom:304.341210px;}
.y71{bottom:306.964500px;}
.y7b{bottom:307.038000px;}
.ycf{bottom:310.479750px;}
.yaa{bottom:311.204130px;}
.ydb{bottom:312.030300px;}
.y4b{bottom:312.079950px;}
.y21{bottom:315.971850px;}
.y5e{bottom:318.378300px;}
.yc5{bottom:320.971350px;}
.y3{bottom:324.110910px;}
.ycc{bottom:325.059750px;}
.y65{bottom:330.268230px;}
.y1e{bottom:331.429800px;}
.y9c{bottom:332.483100px;}
.y55{bottom:337.481400px;}
.yce{bottom:339.639750px;}
.yb9{bottom:342.841800px;}
.y46{bottom:347.265300px;}
.y85{bottom:348.031650px;}
.ye5{bottom:350.405100px;}
.ya9{bottom:350.800890px;}
.yb{bottom:351.855120px;}
.y7a{bottom:354.378000px;}
.y70{bottom:357.904500px;}
.yda{bottom:359.370300px;}
.y64{bottom:360.504450px;}
.yc4{bottom:369.031350px;}
.y74{bottom:374.033250px;}
.y8f{bottom:374.178150px;}
.ya8{bottom:379.600710px;}
.y9b{bottom:380.003100px;}
.y54{bottom:383.849400px;}
.y4e{bottom:385.986450px;}
.y5d{bottom:387.318300px;}
.ya{bottom:387.867000px;}
.yb8{bottom:389.200800px;}
.yd9{bottom:391.770300px;}
.ye4{bottom:393.605100px;}
.ye9{bottom:394.697250px;}
.y1d{bottom:396.405750px;}
.y6a{bottom:396.955500px;}
.y3d{bottom:398.062050px;}
.y95{bottom:398.094390px;}
.y84{bottom:398.971650px;}
.yd3{bottom:400.819950px;}
.y79{bottom:403.158150px;}
.y2{bottom:403.316850px;}
.y37{bottom:404.811810px;}
.y2d{bottom:404.896050px;}
.y1a{bottom:405.135750px;}
.y45{bottom:405.405150px;}
.ya7{bottom:408.400530px;}
.y6f{bottom:409.012620px;}
.y4a{bottom:409.279950px;}
.y63{bottom:410.757000px;}
.y8e{bottom:417.918300px;}
.yc3{bottom:419.431350px;}
.y9a{bottom:427.343100px;}
.y36{bottom:430.020630px;}
.y2c{bottom:430.104870px;}
.y53{bottom:430.217400px;}
.y1c{bottom:430.425750px;}
.y19{bottom:433.395750px;}
.y94{bottom:434.106270px;}
.yb7{bottom:438.232800px;}
.yd8{bottom:439.110300px;}
.y9{bottom:440.247000px;}
.y4d{bottom:444.126600px;}
.y6e{bottom:445.024500px;}
.ya6{bottom:447.997290px;}
.y83{bottom:450.091650px;}
.ye3{bottom:450.485100px;}
.y5c{bottom:456.258300px;}
.y78{bottom:456.978150px;}
.y8d{bottom:461.658150px;}
.y18{bottom:461.835750px;}
.y44{bottom:463.545300px;}
.y1b{bottom:464.445750px;}
.yc2{bottom:466.771200px;}
.y93{bottom:470.118150px;}
.y73{bottom:471.233250px;}
.y99{bottom:475.403100px;}
.ya5{bottom:476.797110px;}
.y52{bottom:479.249400px;}
.yb6{bottom:480.838800px;}
.y38{bottom:483.786810px;}
.yd7{bottom:487.158420px;}
.y3c{bottom:495.802050px;}
.y77{bottom:495.858150px;}
.y6d{bottom:495.952620px;}
.y8{bottom:498.387000px;}
.ye2{bottom:501.605100px;}
.y82{bottom:502.291650px;}
.ya4{bottom:505.596930px;}
.y8c{bottom:506.118150px;}
.y43{bottom:506.745300px;}
.ycb{bottom:512.605350px;}
.yc1{bottom:514.111200px;}
.y92{bottom:519.978150px;}
.yb2{bottom:522.878550px;}
.yd6{bottom:523.170300px;}
.y5b{bottom:525.378300px;}
.y62{bottom:526.343100px;}
.y6c{bottom:531.964500px;}
.ya3{bottom:534.396750px;}
.y15{bottom:535.541400px;}
.yca{bottom:541.765350px;}
.y7f{bottom:542.416500px;}
.y3b{bottom:542.602050px;}
.y17{bottom:543.821550px;}
.y81{bottom:545.491650px;}
.y76{bottom:549.678150px;}
.ye1{bottom:552.545100px;}
.y8b{bottom:554.178150px;}
.yb3{bottom:555.845550px;}
.y4c{bottom:560.586450px;}
.yc0{bottom:561.631350px;}
.y91{bottom:563.718150px;}
.y14{bottom:563.801400px;}
.y42{bottom:565.065300px;}
.y7{bottom:570.207000px;}
.yd5{bottom:574.098420px;}
.y61{bottom:577.282950px;}
.y16{bottom:577.841550px;}
.ya2{bottom:578.206950px;}
.y6b{bottom:582.904500px;}
.y3a{bottom:589.213770px;}
.y13{bottom:592.241400px;}
.y5a{bottom:594.318300px;}
.y75{bottom:603.678150px;}
.y80{bottom:603.811650px;}
.y2b{bottom:604.186830px;}
.ye0{bottom:604.925100px;}
.y8a{bottom:605.118150px;}
.y90{bottom:608.178150px;}
.y41{bottom:608.265300px;}
.ybf{bottom:609.511350px;}
.yd4{bottom:610.110300px;}
.y6{bottom:619.527000px;}
.y39{bottom:620.902050px;}
.y51{bottom:628.369650px;}
.y2a{bottom:629.395650px;}
.ybe{bottom:655.505850px;}
.ya1{bottom:655.506000px;}
.y29{bottom:700.337010px;}
.y12{bottom:721.925850px;}
.ya0{bottom:721.926000px;}
.y28{bottom:744.965850px;}
.h17{height:55.836000px;}
.h16{height:56.520000px;}
.hb{height:65.328120px;}
.hd{height:66.128400px;}
.h8{height:69.795000px;}
.h18{height:74.261880px;}
.h1b{height:75.171600px;}
.h19{height:79.542000px;}
.h15{height:83.754000px;}
.h1c{height:84.780000px;}
.h1{height:93.246120px;}
.h6{height:94.388400px;}
.h9{height:98.910000px;}
.h11{height:102.179880px;}
.h10{height:103.431600px;}
.h5{height:111.672000px;}
.h13{height:113.040000px;}
.h3{height:116.469492px;}
.h12{height:121.164120px;}
.hc{height:139.627800px;}
.he{height:140.428080px;}
.ha{height:142.131797px;}
.h1f{height:143.100000px;}
.h4{height:147.089883px;}
.h1e{height:149.580000px;}
.h1a{height:165.269531px;}
.h7{height:183.449180px;}
.h2{height:202.179727px;}
.h14{height:247.904297px;}
.h20{height:275.449219px;}
.h21{height:302.994141px;}
.h1d{height:453.780000px;}
.h0{height:810.000000px;}
.hf{height:810.120000px;}
.w2{width:121.141500px;}
.w3{width:139.320000px;}
.w0{width:1440.000000px;}
.w1{width:1440.195000px;}
.x0{left:0.000000px;}
.x54{left:4.399350px;}
.x51{left:5.547600px;}
.x1{left:33.953250px;}
.x6{left:44.458650px;}
.x16{left:55.800150px;}
.x39{left:64.078500px;}
.x3a{left:71.872200px;}
.x4a{left:76.225800px;}
.x4f{left:81.391200px;}
.x3d{left:83.563200px;}
.x7{left:84.958650px;}
.x23{left:90.800100px;}
.x3e{left:91.913550px;}
.x28{left:94.140300px;}
.x69{left:95.253600px;}
.x8{left:98.458650px;}
.x57{left:99.542400px;}
.x49{left:111.145800px;}
.x3b{left:112.372200px;}
.x56{left:118.118400px;}
.x6c{left:119.284350px;}
.x24{left:131.267160px;}
.x9{left:132.298650px;}
.x29{left:134.640300px;}
.x6a{left:135.753600px;}
.x11{left:139.163400px;}
.x25{left:144.800100px;}
.x3f{left:145.913550px;}
.x43{left:147.984750px;}
.xc{left:149.502750px;}
.x34{left:152.710800px;}
.xf{left:163.906500px;}
.x26{left:178.640100px;}
.xe{left:182.806500px;}
.x33{left:193.684650px;}
.x44{left:198.800100px;}
.x2{left:205.938900px;}
.x12{left:209.077500px;}
.xd{left:210.518250px;}
.x67{left:240.864300px;}
.x10{left:242.940000px;}
.x65{left:250.426050px;}
.x63{left:266.248050px;}
.x5a{left:268.575300px;}
.x66{left:280.284300px;}
.x64{left:293.437050px;}
.x59{left:307.644300px;}
.x40{left:317.769750px;}
.x4d{left:354.018720px;}
.x2b{left:366.549750px;}
.x52{left:367.707600px;}
.xa{left:414.831300px;}
.x2a{left:418.753500px;}
.x6d{left:431.542350px;}
.x13{left:447.009750px;}
.x27{left:454.929750px;}
.x14{left:469.873500px;}
.x5{left:473.058900px;}
.x53{left:474.840000px;}
.x3{left:479.030940px;}
.x3c{left:482.833500px;}
.x36{left:485.038800px;}
.xb{left:487.906500px;}
.x4e{left:498.352980px;}
.x15{left:504.982140px;}
.x55{left:518.659350px;}
.x42{left:521.353500px;}
.x6b{left:524.593500px;}
.x58{left:550.329750px;}
.x4{left:554.958900px;}
.x62{left:558.844950px;}
.x4b{left:563.473500px;}
.x5b{left:568.372350px;}
.x2c{left:571.773600px;}
.x68{left:574.449750px;}
.x35{left:582.001650px;}
.x5c{left:588.163350px;}
.x61{left:592.675950px;}
.x47{left:639.440100px;}
.x4c{left:662.293500px;}
.x50{left:667.561200px;}
.x48{left:679.940100px;}
.x31{left:691.325250px;}
.x45{left:693.440100px;}
.x32{left:696.725250px;}
.x2d{left:702.485250px;}
.x30{left:708.245250px;}
.x2f{left:714.545250px;}
.x2e{left:726.965250px;}
.x46{left:747.440100px;}
.x37{left:837.715800px;}
.x38{left:858.064800px;}
.x5e{left:871.931250px;}
.x5f{left:884.540250px;}
.x60{left:887.591250px;}
.x5d{left:905.600250px;}
.x1a{left:931.896150px;}
.x20{left:937.498110px;}
.x19{left:939.456690px;}
.x18{left:942.152370px;}
.x22{left:949.375950px;}
.x1f{left:951.144990px;}
.x21{left:961.801350px;}
.x1c{left:962.854350px;}
.x1b{left:966.097590px;}
.x17{left:991.832910px;}
.x41{left:1055.447700px;}
.x1d{left:1058.951130px;}
.x1e{left:1089.909330px;}
@media print{
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v1{vertical-align:38.400000pt;}
.v6{vertical-align:51.840000pt;}
.v5{vertical-align:57.600000pt;}
.v2{vertical-align:66.044160pt;}
.ls13{letter-spacing:-0.336000pt;}
.ls16{letter-spacing:-0.330240pt;}
.lsc{letter-spacing:-0.320640pt;}
.ls19{letter-spacing:-0.299520pt;}
.ls26{letter-spacing:-0.288000pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls2c{letter-spacing:-0.255360pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls4{letter-spacing:-0.234880pt;}
.ls18{letter-spacing:-0.224640pt;}
.ls15{letter-spacing:-0.224000pt;}
.ls2{letter-spacing:-0.213760pt;}
.ls21{letter-spacing:-0.213120pt;}
.ls38{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.170240pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.106880pt;}
.ls39{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.085120pt;}
.ls1c{letter-spacing:-0.074880pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.074880pt;}
.ls34{letter-spacing:0.085120pt;}
.lsd{letter-spacing:0.106880pt;}
.ls1e{letter-spacing:0.117120pt;}
.ls23{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.170240pt;}
.ls6{letter-spacing:0.170880pt;}
.ls25{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.213120pt;}
.lse{letter-spacing:0.213760pt;}
.ls14{letter-spacing:0.224000pt;}
.ls1b{letter-spacing:0.224640pt;}
.ls30{letter-spacing:0.255360pt;}
.ls0{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.277760pt;}
.ls37{letter-spacing:0.288000pt;}
.ls31{letter-spacing:0.294400pt;}
.ls1a{letter-spacing:0.299520pt;}
.ls11{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.320640pt;}
.ls10{letter-spacing:0.336000pt;}
.ls1{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:1.532160pt;}
.ls22{letter-spacing:1.536000pt;}
.lsf{letter-spacing:1.600000pt;}
.ls29{letter-spacing:22.982400pt;}
.ls1f{letter-spacing:22.997120pt;}
.ls2e{letter-spacing:35.806080pt;}
.ls8{letter-spacing:45.499520pt;}
.ls2d{letter-spacing:52.812800pt;}
.ls7{letter-spacing:53.990400pt;}
.ls1d{letter-spacing:61.303680pt;}
.ls28{letter-spacing:69.179520pt;}
.ls36{letter-spacing:424.512000pt;}
.ls35{letter-spacing:438.624000pt;}
.ls32{letter-spacing:463.904000pt;}
.ws8c{word-spacing:-438.720000pt;}
.ws96{word-spacing:-424.608000pt;}
.wsa3{word-spacing:-86.944000pt;}
.ws97{word-spacing:-47.616000pt;}
.ws75{word-spacing:-47.424000pt;}
.ws23{word-spacing:-40.454400pt;}
.ws38{word-spacing:-24.832000pt;}
.ws39{word-spacing:-24.704000pt;}
.ws42{word-spacing:-24.576000pt;}
.ws37{word-spacing:-24.448000pt;}
.ws2f{word-spacing:-22.721280pt;}
.ws30{word-spacing:-22.604160pt;}
.ws15{word-spacing:-21.280000pt;}
.ws1{word-spacing:-20.939520pt;}
.wsa{word-spacing:-20.841600pt;}
.ws8{word-spacing:-20.734720pt;}
.ws9{word-spacing:-20.627840pt;}
.ws55{word-spacing:-20.520960pt;}
.ws0{word-spacing:-20.414080pt;}
.ws9b{word-spacing:-18.816000pt;}
.ws86{word-spacing:-18.720000pt;}
.ws74{word-spacing:-18.528000pt;}
.ws8a{word-spacing:-18.336000pt;}
.ws43{word-spacing:-18.240000pt;}
.ws5f{word-spacing:-16.683520pt;}
.ws4e{word-spacing:-16.598400pt;}
.ws50{word-spacing:-16.428160pt;}
.ws79{word-spacing:-16.257920pt;}
.ws4f{word-spacing:-16.172800pt;}
.ws16{word-spacing:-15.440000pt;}
.ws2b{word-spacing:-14.751360pt;}
.ws2d{word-spacing:-14.676480pt;}
.ws27{word-spacing:-14.526720pt;}
.ws26{word-spacing:-14.451840pt;}
.ws2e{word-spacing:-14.376960pt;}
.ws28{word-spacing:-14.227200pt;}
.ws2a{word-spacing:-14.152320pt;}
.ws69{word-spacing:-12.544000pt;}
.ws48{word-spacing:-12.352000pt;}
.ws45{word-spacing:-12.288000pt;}
.ws4b{word-spacing:-12.224000pt;}
.ws11{word-spacing:-2.244480pt;}
.ws98{word-spacing:-2.208000pt;}
.ws5a{word-spacing:-2.137600pt;}
.ws5e{word-spacing:-1.816960pt;}
.ws1e{word-spacing:-1.680000pt;}
.ws10{word-spacing:-1.603200pt;}
.ws73{word-spacing:-1.496320pt;}
.ws21{word-spacing:-1.344000pt;}
.ws35{word-spacing:-1.249920pt;}
.ws12{word-spacing:-1.175680pt;}
.ws6{word-spacing:-1.152000pt;}
.ws51{word-spacing:-1.068800pt;}
.wsa4{word-spacing:-1.056000pt;}
.ws18{word-spacing:-1.040000pt;}
.ws3f{word-spacing:-1.024000pt;}
.ws5b{word-spacing:-0.961920pt;}
.ws77{word-spacing:-0.960000pt;}
.ws3{word-spacing:-0.939520pt;}
.ws52{word-spacing:-0.855040pt;}
.ws7{word-spacing:-0.854400pt;}
.ws34{word-spacing:-0.833280pt;}
.ws1c{word-spacing:-0.784000pt;}
.wsa0{word-spacing:-0.768000pt;}
.wsc{word-spacing:-0.641280pt;}
.ws59{word-spacing:-0.640000pt;}
.ws82{word-spacing:-0.595840pt;}
.ws36{word-spacing:-0.555520pt;}
.wse{word-spacing:-0.534400pt;}
.ws3a{word-spacing:-0.512000pt;}
.ws1f{word-spacing:-0.480000pt;}
.ws2{word-spacing:-0.469760pt;}
.wsd{word-spacing:-0.427520pt;}
.ws14{word-spacing:-0.426240pt;}
.ws70{word-spacing:-0.425600pt;}
.ws17{word-spacing:-0.400000pt;}
.ws9f{word-spacing:-0.384000pt;}
.ws33{word-spacing:-0.351360pt;}
.ws57{word-spacing:-0.320640pt;}
.wsa1{word-spacing:-0.320000pt;}
.ws9a{word-spacing:-0.288000pt;}
.ws4{word-spacing:-0.256000pt;}
.ws56{word-spacing:-0.213760pt;}
.ws84{word-spacing:-0.170240pt;}
.ws32{word-spacing:-0.117120pt;}
.ws1b{word-spacing:-0.080000pt;}
.ws5{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.085120pt;}
.ws9e{word-spacing:0.096000pt;}
.ws58{word-spacing:0.106880pt;}
.ws3e{word-spacing:0.128000pt;}
.ws19{word-spacing:0.160000pt;}
.ws9d{word-spacing:0.192000pt;}
.ws40{word-spacing:0.213120pt;}
.ws13{word-spacing:0.213760pt;}
.ws53{word-spacing:0.255360pt;}
.ws3c{word-spacing:0.256000pt;}
.ws76{word-spacing:0.288000pt;}
.ws83{word-spacing:0.340480pt;}
.ws31{word-spacing:0.351360pt;}
.wsb{word-spacing:0.384000pt;}
.ws7e{word-spacing:0.425600pt;}
.ws22{word-spacing:0.448000pt;}
.ws25{word-spacing:0.495360pt;}
.ws5d{word-spacing:0.512000pt;}
.wsf{word-spacing:0.534400pt;}
.ws1d{word-spacing:0.560000pt;}
.ws41{word-spacing:0.576000pt;}
.ws5c{word-spacing:0.639360pt;}
.wsa2{word-spacing:0.768000pt;}
.ws54{word-spacing:0.851200pt;}
.ws7d{word-spacing:0.936320pt;}
.ws99{word-spacing:0.960000pt;}
.ws20{word-spacing:1.008000pt;}
.ws3d{word-spacing:1.024000pt;}
.ws1a{word-spacing:1.120000pt;}
.ws71{word-spacing:1.617280pt;}
.ws3b{word-spacing:1.792000pt;}
.ws24{word-spacing:1.816320pt;}
.ws7c{word-spacing:2.042880pt;}
.ws72{word-spacing:2.128000pt;}
.ws7f{word-spacing:2.213120pt;}
.ws80{word-spacing:2.808960pt;}
.ws81{word-spacing:2.894080pt;}
.ws85{word-spacing:76.809600pt;}
.ws62{word-spacing:101.880533pt;}
.ws88{word-spacing:102.144000pt;}
.ws66{word-spacing:142.720000pt;}
.ws87{word-spacing:155.217600pt;}
.ws6a{word-spacing:172.736000pt;}
.ws67{word-spacing:180.544000pt;}
.ws63{word-spacing:196.121003pt;}
.ws6e{word-spacing:204.928000pt;}
.ws89{word-spacing:214.041600pt;}
.ws92{word-spacing:219.196800pt;}
.ws93{word-spacing:219.936000pt;}
.ws6d{word-spacing:223.104000pt;}
.ws61{word-spacing:225.600000pt;}
.ws65{word-spacing:235.776000pt;}
.ws8f{word-spacing:236.640000pt;}
.ws6b{word-spacing:255.040000pt;}
.ws68{word-spacing:262.720000pt;}
.ws6f{word-spacing:271.040000pt;}
.ws6c{word-spacing:282.112000pt;}
.ws90{word-spacing:292.992000pt;}
.ws8d{word-spacing:298.080000pt;}
.ws64{word-spacing:307.712000pt;}
.ws60{word-spacing:328.576000pt;}
.ws8e{word-spacing:337.603200pt;}
.ws8b{word-spacing:347.808000pt;}
.ws94{word-spacing:354.211200pt;}
.ws78{word-spacing:364.322112pt;}
.ws91{word-spacing:365.731200pt;}
.ws44{word-spacing:369.920000pt;}
.ws95{word-spacing:405.984000pt;}
.ws9c{word-spacing:408.681067pt;}
.ws7a{word-spacing:454.140736pt;}
.ws4c{word-spacing:463.552000pt;}
.ws49{word-spacing:474.432000pt;}
.ws4a{word-spacing:512.192000pt;}
.ws47{word-spacing:515.392000pt;}
.ws46{word-spacing:567.232000pt;}
.ws4d{word-spacing:609.344000pt;}
.ws2c{word-spacing:2788.561152pt;}
.ws29{word-spacing:2803.177728pt;}
._d{margin-left:-31.776000pt;}
._3{margin-left:-2.000000pt;}
._2{margin-left:-0.932480pt;}
._0{width:1.004672pt;}
._1{width:2.001792pt;}
._9{width:3.336192pt;}
._a{width:4.400192pt;}
._4{width:22.982400pt;}
._6{width:82.302528pt;}
._8{width:92.984576pt;}
._b{width:201.155456pt;}
._5{width:273.365504pt;}
._c{width:393.312000pt;}
._e{width:401.731200pt;}
._f{width:456.384000pt;}
._7{width:463.904000pt;}
.fs14{font-size:58.880000pt;}
.fs11{font-size:64.000000pt;}
.fs13{font-size:68.480000pt;}
.fsa{font-size:74.880000pt;}
.fs12{font-size:76.800000pt;}
.fs7{font-size:80.000000pt;}
.fs3{font-size:85.120000pt;}
.fsb{font-size:94.080000pt;}
.fs10{font-size:96.000000pt;}
.fs5{font-size:102.400000pt;}
.fs0{font-size:106.880000pt;}
.fsd{font-size:110.720000pt;}
.fs8{font-size:112.000000pt;}
.fsc{font-size:117.120000pt;}
.fs2{font-size:128.000000pt;}
.fse{font-size:138.880000pt;}
.fs9{font-size:165.120000pt;}
.fs4{font-size:170.880000pt;}
.fs15{font-size:192.000000pt;}
.fs6{font-size:213.120000pt;}
.fs1{font-size:234.880000pt;}
.fsf{font-size:288.000000pt;}
.fs16{font-size:320.000000pt;}
.fs17{font-size:352.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:19.129867pt;}
.yd2{bottom:70.394667pt;}
.yb1{bottom:78.232453pt;}
.y11{bottom:80.760107pt;}
.yd1{bottom:96.314667pt;}
.y35{bottom:97.696560pt;}
.yb0{bottom:103.832293pt;}
.y10{bottom:112.770667pt;}
.y5{bottom:119.303867pt;}
.y34{bottom:120.104400pt;}
.y97{bottom:128.032400pt;}
.y25{bottom:128.288133pt;}
.yc9{bottom:130.107867pt;}
.y89{bottom:130.321467pt;}
.y59{bottom:135.119467pt;}
.y27{bottom:135.648267pt;}
.ydf{bottom:136.528720pt;}
.yaf{bottom:139.029413pt;}
.y40{bottom:139.096453pt;}
.ybd{bottom:139.916267pt;}
.y33{bottom:142.512240pt;}
.y7e{bottom:146.522800pt;}
.y24{bottom:153.408133pt;}
.yf{bottom:158.200240pt;}
.y60{bottom:160.282933pt;}
.yae{bottom:164.629253pt;}
.y32{bottom:164.920080pt;}
.y26{bottom:165.888267pt;}
.y49{bottom:166.760267pt;}
.yde{bottom:168.539280pt;}
.y88{bottom:168.721467pt;}
.ye8{bottom:169.711200pt;}
.yc8{bottom:172.187867pt;}
.y3f{bottom:172.392933pt;}
.y58{bottom:176.335467pt;}
.y23{bottom:178.688133pt;}
.ybc{bottom:181.124267pt;}
.y4{bottom:185.223867pt;}
.y9f{bottom:186.719413pt;}
.y31{bottom:187.327920pt;}
.y7d{bottom:188.602800pt;}
.ye{bottom:190.210800pt;}
.yad{bottom:190.229093pt;}
.y98{bottom:193.427733pt;}
.ydd{bottom:200.549840pt;}
.y50{bottom:201.179067pt;}
.yb5{bottom:206.772267pt;}
.y87{bottom:207.121467pt;}
.ye7{bottom:208.111200pt;}
.y30{bottom:209.735760pt;}
.yc7{bottom:214.427867pt;}
.y2f{bottom:215.632560pt;}
.y57{bottom:217.551467pt;}
.y48{bottom:218.440267pt;}
.y9e{bottom:218.729973pt;}
.y69{bottom:220.602640pt;}
.y5f{bottom:221.562933pt;}
.ybb{bottom:222.332267pt;}
.yac{bottom:225.426213pt;}
.y72{bottom:227.577333pt;}
.y7c{bottom:230.682800pt;}
.ydc{bottom:232.560400pt;}
.yd{bottom:235.480107pt;}
.y2e{bottom:238.040400pt;}
.y4f{bottom:239.579067pt;}
.y67{bottom:243.648880pt;}
.y20{bottom:244.204267pt;}
.yb4{bottom:249.440000pt;}
.yd0{bottom:250.062000pt;}
.y22{bottom:250.623867pt;}
.y9d{bottom:250.740533pt;}
.yab{bottom:251.026053pt;}
.yc6{bottom:256.507867pt;}
.y56{bottom:258.767467pt;}
.y86{bottom:258.801467pt;}
.y96{bottom:258.823200pt;}
.ye6{bottom:259.791200pt;}
.y3e{bottom:260.552933pt;}
.ycd{bottom:263.022000pt;}
.yba{bottom:263.540267pt;}
.y68{bottom:266.695120pt;}
.yc{bottom:267.490667pt;}
.yea{bottom:268.946267pt;}
.y1f{bottom:269.324267pt;}
.y47{bottom:270.280267pt;}
.y66{bottom:270.525520pt;}
.y71{bottom:272.857333pt;}
.y7b{bottom:272.922667pt;}
.ycf{bottom:275.982000pt;}
.yaa{bottom:276.625893pt;}
.ydb{bottom:277.360267pt;}
.y4b{bottom:277.404400pt;}
.y21{bottom:280.863867pt;}
.y5e{bottom:283.002933pt;}
.yc5{bottom:285.307867pt;}
.y3{bottom:288.098587pt;}
.ycc{bottom:288.942000pt;}
.y65{bottom:293.571760pt;}
.y1e{bottom:294.604267pt;}
.y9c{bottom:295.540533pt;}
.y55{bottom:299.983467pt;}
.yce{bottom:301.902000pt;}
.yb9{bottom:304.748267pt;}
.y46{bottom:308.680267pt;}
.y85{bottom:309.361467pt;}
.ye5{bottom:311.471200pt;}
.ya9{bottom:311.823013pt;}
.yb{bottom:312.760107pt;}
.y7a{bottom:315.002667pt;}
.y70{bottom:318.137333pt;}
.yda{bottom:319.440267pt;}
.y64{bottom:320.448400pt;}
.yc4{bottom:328.027867pt;}
.y74{bottom:332.474000pt;}
.y8f{bottom:332.602800pt;}
.ya8{bottom:337.422853pt;}
.y9b{bottom:337.780533pt;}
.y54{bottom:341.199467pt;}
.y4e{bottom:343.099067pt;}
.y5d{bottom:344.282933pt;}
.ya{bottom:344.770667pt;}
.yb8{bottom:345.956267pt;}
.yd9{bottom:348.240267pt;}
.ye4{bottom:349.871200pt;}
.ye9{bottom:350.842000pt;}
.y1d{bottom:352.360667pt;}
.y6a{bottom:352.849333pt;}
.y3d{bottom:353.832933pt;}
.y95{bottom:353.861680pt;}
.y84{bottom:354.641467pt;}
.yd3{bottom:356.284400pt;}
.y79{bottom:358.362800pt;}
.y2{bottom:358.503867pt;}
.y37{bottom:359.832720pt;}
.y2d{bottom:359.907600pt;}
.y1a{bottom:360.120667pt;}
.y45{bottom:360.360133pt;}
.ya7{bottom:363.022693pt;}
.y6f{bottom:363.566773pt;}
.y4a{bottom:363.804400pt;}
.y63{bottom:365.117333pt;}
.y8e{bottom:371.482933pt;}
.yc3{bottom:372.827867pt;}
.y9a{bottom:379.860533pt;}
.y36{bottom:382.240560pt;}
.y2c{bottom:382.315440pt;}
.y53{bottom:382.415467pt;}
.y1c{bottom:382.600667pt;}
.y19{bottom:385.240667pt;}
.y94{bottom:385.872240pt;}
.yb7{bottom:389.540267pt;}
.yd8{bottom:390.320267pt;}
.y9{bottom:391.330667pt;}
.y4d{bottom:394.779200pt;}
.y6e{bottom:395.577333pt;}
.ya6{bottom:398.219813pt;}
.y83{bottom:400.081467pt;}
.ye3{bottom:400.431200pt;}
.y5c{bottom:405.562933pt;}
.y78{bottom:406.202800pt;}
.y8d{bottom:410.362800pt;}
.y18{bottom:410.520667pt;}
.y44{bottom:412.040267pt;}
.y1b{bottom:412.840667pt;}
.yc2{bottom:414.907733pt;}
.y93{bottom:417.882800pt;}
.y73{bottom:418.874000pt;}
.y99{bottom:422.580533pt;}
.ya5{bottom:423.819653pt;}
.y52{bottom:425.999467pt;}
.yb6{bottom:427.412267pt;}
.y38{bottom:430.032720pt;}
.yd7{bottom:433.029707pt;}
.y3c{bottom:440.712933pt;}
.y77{bottom:440.762800pt;}
.y6d{bottom:440.846773pt;}
.y8{bottom:443.010667pt;}
.ye2{bottom:445.871200pt;}
.y82{bottom:446.481467pt;}
.ya4{bottom:449.419493pt;}
.y8c{bottom:449.882800pt;}
.y43{bottom:450.440267pt;}
.ycb{bottom:455.649200pt;}
.yc1{bottom:456.987733pt;}
.y92{bottom:462.202800pt;}
.yb2{bottom:464.780933pt;}
.yd6{bottom:465.040267pt;}
.y5b{bottom:467.002933pt;}
.y62{bottom:467.860533pt;}
.y6c{bottom:472.857333pt;}
.ya3{bottom:475.019333pt;}
.y15{bottom:476.036800pt;}
.yca{bottom:481.569200pt;}
.y7f{bottom:482.148000pt;}
.y3b{bottom:482.312933pt;}
.y17{bottom:483.396933pt;}
.y81{bottom:484.881467pt;}
.y76{bottom:488.602800pt;}
.ye1{bottom:491.151200pt;}
.y8b{bottom:492.602800pt;}
.yb3{bottom:494.084933pt;}
.y4c{bottom:498.299067pt;}
.yc0{bottom:499.227867pt;}
.y91{bottom:501.082800pt;}
.y14{bottom:501.156800pt;}
.y42{bottom:502.280267pt;}
.y7{bottom:506.850667pt;}
.yd5{bottom:510.309707pt;}
.y61{bottom:513.140400pt;}
.y16{bottom:513.636933pt;}
.ya2{bottom:513.961733pt;}
.y6b{bottom:518.137333pt;}
.y3a{bottom:523.745573pt;}
.y13{bottom:526.436800pt;}
.y5a{bottom:528.282933pt;}
.y75{bottom:536.602800pt;}
.y80{bottom:536.721467pt;}
.y2b{bottom:537.054960pt;}
.ye0{bottom:537.711200pt;}
.y8a{bottom:537.882800pt;}
.y90{bottom:540.602800pt;}
.y41{bottom:540.680267pt;}
.ybf{bottom:541.787867pt;}
.yd4{bottom:542.320267pt;}
.y6{bottom:550.690667pt;}
.y39{bottom:551.912933pt;}
.y51{bottom:558.550800pt;}
.y2a{bottom:559.462800pt;}
.ybe{bottom:582.671867pt;}
.ya1{bottom:582.672000pt;}
.y29{bottom:622.521787pt;}
.y12{bottom:641.711867pt;}
.ya0{bottom:641.712000pt;}
.y28{bottom:662.191867pt;}
.h17{height:49.632000pt;}
.h16{height:50.240000pt;}
.hb{height:58.069440pt;}
.hd{height:58.780800pt;}
.h8{height:62.040000pt;}
.h18{height:66.010560pt;}
.h1b{height:66.819200pt;}
.h19{height:70.704000pt;}
.h15{height:74.448000pt;}
.h1c{height:75.360000pt;}
.h1{height:82.885440pt;}
.h6{height:83.900800pt;}
.h9{height:87.920000pt;}
.h11{height:90.826560pt;}
.h10{height:91.939200pt;}
.h5{height:99.264000pt;}
.h13{height:100.480000pt;}
.h3{height:103.528438pt;}
.h12{height:107.701440pt;}
.hc{height:124.113600pt;}
.he{height:124.824960pt;}
.ha{height:126.339375pt;}
.h1f{height:127.200000pt;}
.h4{height:130.746563pt;}
.h1e{height:132.960000pt;}
.h1a{height:146.906250pt;}
.h7{height:163.065937pt;}
.h2{height:179.715313pt;}
.h14{height:220.359375pt;}
.h20{height:244.843750pt;}
.h21{height:269.328125pt;}
.h1d{height:403.360000pt;}
.h0{height:720.000000pt;}
.hf{height:720.106667pt;}
.w2{width:107.681333pt;}
.w3{width:123.840000pt;}
.w0{width:1280.000000pt;}
.w1{width:1280.173333pt;}
.x0{left:0.000000pt;}
.x54{left:3.910533pt;}
.x51{left:4.931200pt;}
.x1{left:30.180667pt;}
.x6{left:39.518800pt;}
.x16{left:49.600133pt;}
.x39{left:56.958667pt;}
.x3a{left:63.886400pt;}
.x4a{left:67.756267pt;}
.x4f{left:72.347733pt;}
.x3d{left:74.278400pt;}
.x7{left:75.518800pt;}
.x23{left:80.711200pt;}
.x3e{left:81.700933pt;}
.x28{left:83.680267pt;}
.x69{left:84.669867pt;}
.x8{left:87.518800pt;}
.x57{left:88.482133pt;}
.x49{left:98.796267pt;}
.x3b{left:99.886400pt;}
.x56{left:104.994133pt;}
.x6c{left:106.030533pt;}
.x24{left:116.681920pt;}
.x9{left:117.598800pt;}
.x29{left:119.680267pt;}
.x6a{left:120.669867pt;}
.x11{left:123.700800pt;}
.x25{left:128.711200pt;}
.x3f{left:129.700933pt;}
.x43{left:131.542000pt;}
.xc{left:132.891333pt;}
.x34{left:135.742933pt;}
.xf{left:145.694667pt;}
.x26{left:158.791200pt;}
.xe{left:162.494667pt;}
.x33{left:172.164133pt;}
.x44{left:176.711200pt;}
.x2{left:183.056800pt;}
.x12{left:185.846667pt;}
.xd{left:187.127333pt;}
.x67{left:214.101600pt;}
.x10{left:215.946667pt;}
.x65{left:222.600933pt;}
.x63{left:236.664933pt;}
.x5a{left:238.733600pt;}
.x66{left:249.141600pt;}
.x64{left:260.832933pt;}
.x59{left:273.461600pt;}
.x40{left:282.462000pt;}
.x4d{left:314.683307pt;}
.x2b{left:325.822000pt;}
.x52{left:326.851200pt;}
.xa{left:368.738933pt;}
.x2a{left:372.225333pt;}
.x6d{left:383.593200pt;}
.x13{left:397.342000pt;}
.x27{left:404.382000pt;}
.x14{left:417.665333pt;}
.x5{left:420.496800pt;}
.x53{left:422.080000pt;}
.x3{left:425.805280pt;}
.x3c{left:429.185333pt;}
.x36{left:431.145600pt;}
.xb{left:433.694667pt;}
.x4e{left:442.980427pt;}
.x15{left:448.873013pt;}
.x55{left:461.030533pt;}
.x42{left:463.425333pt;}
.x6b{left:466.305333pt;}
.x58{left:489.182000pt;}
.x4{left:493.296800pt;}
.x62{left:496.751067pt;}
.x4b{left:500.865333pt;}
.x5b{left:505.219867pt;}
.x2c{left:508.243200pt;}
.x68{left:510.622000pt;}
.x35{left:517.334800pt;}
.x5c{left:522.811867pt;}
.x61{left:526.823067pt;}
.x47{left:568.391200pt;}
.x4c{left:588.705333pt;}
.x50{left:593.387733pt;}
.x48{left:604.391200pt;}
.x31{left:614.511333pt;}
.x45{left:616.391200pt;}
.x32{left:619.311333pt;}
.x2d{left:624.431333pt;}
.x30{left:629.551333pt;}
.x2f{left:635.151333pt;}
.x2e{left:646.191333pt;}
.x46{left:664.391200pt;}
.x37{left:744.636267pt;}
.x38{left:762.724267pt;}
.x5e{left:775.050000pt;}
.x5f{left:786.258000pt;}
.x60{left:788.970000pt;}
.x5d{left:804.978000pt;}
.x1a{left:828.352133pt;}
.x20{left:833.331653pt;}
.x19{left:835.072613pt;}
.x18{left:837.468773pt;}
.x22{left:843.889733pt;}
.x1f{left:845.462213pt;}
.x21{left:854.934533pt;}
.x1c{left:855.870533pt;}
.x1b{left:858.753413pt;}
.x17{left:881.629253pt;}
.x41{left:938.175733pt;}
.x1d{left:941.289893pt;}
.x1e{left:968.808293pt;}
}




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