
    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_2ddef977b17064bf2789be06.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003000;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_ac49c0cd0ab8121c82754005.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003000;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_8bc73d2034aae328e543acf0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a9f90ea8d25d6f60ce12b1e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d6e398002c8b0caab4ca6743.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003000;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_a9f90ea8d25d6f60ce12b1e2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a62b7ab3be71ceec8c3a65e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e107418ce202c6f0a533c73f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2881de82dbe3da8c6e271c90.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0111c8ddc77b96609c947302.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001953;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-3.324600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v4{vertical-align:27.873600px;}
.v2{vertical-align:90.000000px;}
.ls7{letter-spacing:-2.400000px;}
.lsb{letter-spacing:-1.920000px;}
.ls4{letter-spacing:-1.800000px;}
.ls5{letter-spacing:-1.200000px;}
.ls1{letter-spacing:-0.660000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000150px;}
.ls6{letter-spacing:0.000180px;}
.lsa{letter-spacing:0.000240px;}
.ls3{letter-spacing:0.600000px;}
.ls8{letter-spacing:198.857400px;}
.ls9{letter-spacing:199.367400px;}
.ls2{letter-spacing:200.297400px;}
.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;}
}
.ws10{word-spacing:-56.297880px;}
.ws1{word-spacing:-28.800000px;}
.wsd9{word-spacing:-27.333900px;}
.wscb{word-spacing:-27.000000px;}
.ws12{word-spacing:-18.600000px;}
.ws11{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.800000px;}
.ws2{word-spacing:-16.560000px;}
.ws37{word-spacing:-16.200000px;}
.wsd{word-spacing:-15.720000px;}
.ws8{word-spacing:-14.640000px;}
.wse{word-spacing:-13.620000px;}
.ws3d{word-spacing:-11.700000px;}
.ws38{word-spacing:-10.494000px;}
.wsa{word-spacing:-9.180000px;}
.ws4{word-spacing:-8.820000px;}
.ws78{word-spacing:-8.520000px;}
.ws6{word-spacing:-8.340000px;}
.wsc{word-spacing:-6.780000px;}
.ws44{word-spacing:-6.480000px;}
.ws5{word-spacing:-6.240000px;}
.wsd6{word-spacing:-6.120000px;}
.ws58{word-spacing:-5.520000px;}
.wsf{word-spacing:-5.400000px;}
.ws18{word-spacing:-4.740000px;}
.ws62{word-spacing:-4.620000px;}
.ws4c{word-spacing:-4.260000px;}
.ws96{word-spacing:-4.200000px;}
.ws7b{word-spacing:-4.020000px;}
.wsc4{word-spacing:-3.420000px;}
.ws27{word-spacing:-3.360000px;}
.wsab{word-spacing:-3.300000px;}
.wsb{word-spacing:-3.120000px;}
.wsac{word-spacing:-2.580000px;}
.wsc9{word-spacing:-2.460000px;}
.wsc2{word-spacing:-2.400000px;}
.wsbc{word-spacing:-2.340000px;}
.ws1c{word-spacing:-2.280000px;}
.wsd7{word-spacing:-2.220000px;}
.ws65{word-spacing:-1.980000px;}
.wsc3{word-spacing:-1.920000px;}
.wsa8{word-spacing:-1.860000px;}
.wsb2{word-spacing:-1.836000px;}
.ws22{word-spacing:-1.800000px;}
.ws5e{word-spacing:-1.740000px;}
.ws8d{word-spacing:-1.680000px;}
.wsb1{word-spacing:-1.620000px;}
.ws6a{word-spacing:-1.380000px;}
.wsd0{word-spacing:-1.320000px;}
.wsb7{word-spacing:-1.200000px;}
.ws9{word-spacing:-1.140000px;}
.wsa9{word-spacing:-1.020000px;}
.ws39{word-spacing:-0.660000px;}
.ws66{word-spacing:-0.540000px;}
.ws3a{word-spacing:-0.480000px;}
.ws2c{word-spacing:-0.360000px;}
.ws0{word-spacing:0.000000px;}
.ws7e{word-spacing:0.300000px;}
.ws45{word-spacing:0.360000px;}
.wsaf{word-spacing:0.378000px;}
.ws3e{word-spacing:0.600000px;}
.wsc0{word-spacing:0.780000px;}
.ws42{word-spacing:0.900000px;}
.ws19{word-spacing:1.140000px;}
.wsd8{word-spacing:1.200000px;}
.wsbe{word-spacing:1.260000px;}
.ws40{word-spacing:1.380000px;}
.ws67{word-spacing:1.440000px;}
.ws48{word-spacing:1.500000px;}
.wsad{word-spacing:1.674000px;}
.wsa0{word-spacing:1.680000px;}
.ws89{word-spacing:1.728000px;}
.ws9c{word-spacing:1.740000px;}
.ws24{word-spacing:1.800000px;}
.ws7f{word-spacing:1.920000px;}
.wsb0{word-spacing:1.944000px;}
.wsa7{word-spacing:2.100000px;}
.wsb3{word-spacing:2.106000px;}
.ws4a{word-spacing:2.340000px;}
.ws6e{word-spacing:2.640000px;}
.ws94{word-spacing:2.880000px;}
.wsca{word-spacing:3.120000px;}
.ws83{word-spacing:3.180000px;}
.wsbb{word-spacing:3.240000px;}
.wsba{word-spacing:3.300000px;}
.wsa5{word-spacing:3.360000px;}
.ws8a{word-spacing:3.780000px;}
.ws7c{word-spacing:3.900000px;}
.wsb5{word-spacing:4.080000px;}
.ws6d{word-spacing:4.140000px;}
.ws55{word-spacing:4.260000px;}
.wsd2{word-spacing:4.320000px;}
.ws1e{word-spacing:4.380000px;}
.ws8f{word-spacing:4.440000px;}
.ws1a{word-spacing:4.500000px;}
.ws63{word-spacing:4.740000px;}
.ws95{word-spacing:4.920000px;}
.ws51{word-spacing:5.220000px;}
.ws90{word-spacing:5.280000px;}
.ws8c{word-spacing:5.460000px;}
.ws70{word-spacing:5.580000px;}
.wsa3{word-spacing:5.640000px;}
.wsae{word-spacing:5.670000px;}
.wsd1{word-spacing:5.820000px;}
.wsbf{word-spacing:5.940000px;}
.ws91{word-spacing:6.000000px;}
.ws5d{word-spacing:6.060000px;}
.ws43{word-spacing:6.120000px;}
.wsa4{word-spacing:6.180000px;}
.ws3c{word-spacing:6.360000px;}
.ws57{word-spacing:6.480000px;}
.wsc8{word-spacing:6.660000px;}
.ws60{word-spacing:6.720000px;}
.ws6b{word-spacing:6.780000px;}
.ws3b{word-spacing:7.020000px;}
.ws5a{word-spacing:7.140000px;}
.ws9d{word-spacing:7.440000px;}
.ws85{word-spacing:7.860000px;}
.ws8e{word-spacing:8.280000px;}
.ws41{word-spacing:8.340000px;}
.ws4b{word-spacing:8.580000px;}
.ws81{word-spacing:8.640000px;}
.wsb4{word-spacing:8.700000px;}
.wsaa{word-spacing:8.820000px;}
.ws7{word-spacing:10.020000px;}
.wscd{word-spacing:10.080000px;}
.ws68{word-spacing:10.260000px;}
.ws93{word-spacing:10.320000px;}
.wsc6{word-spacing:10.380000px;}
.wsb6{word-spacing:10.500000px;}
.wsa2{word-spacing:10.680000px;}
.ws61{word-spacing:10.740000px;}
.wsa1{word-spacing:10.860000px;}
.ws8b{word-spacing:10.980000px;}
.wsa6{word-spacing:11.040000px;}
.wsd5{word-spacing:11.160000px;}
.ws36{word-spacing:11.220000px;}
.ws5f{word-spacing:11.280000px;}
.ws87{word-spacing:11.502000px;}
.ws86{word-spacing:11.580000px;}
.ws33{word-spacing:11.820000px;}
.ws6f{word-spacing:11.880000px;}
.ws77{word-spacing:12.060000px;}
.ws80{word-spacing:12.420000px;}
.ws9f{word-spacing:12.780000px;}
.ws69{word-spacing:13.080000px;}
.ws6c{word-spacing:13.140000px;}
.ws84{word-spacing:13.680000px;}
.wsc5{word-spacing:14.040000px;}
.ws3f{word-spacing:14.160000px;}
.ws99{word-spacing:14.280000px;}
.wsbd{word-spacing:14.580000px;}
.ws32{word-spacing:14.700000px;}
.ws71{word-spacing:14.820000px;}
.ws59{word-spacing:15.000000px;}
.wsc7{word-spacing:15.960000px;}
.ws76{word-spacing:16.320000px;}
.ws29{word-spacing:16.380000px;}
.ws1f{word-spacing:16.560000px;}
.ws7d{word-spacing:17.280000px;}
.wsb9{word-spacing:17.340000px;}
.ws64{word-spacing:17.580000px;}
.ws88{word-spacing:17.604000px;}
.ws2b{word-spacing:17.820000px;}
.wscc{word-spacing:17.880000px;}
.ws4d{word-spacing:18.120000px;}
.ws98{word-spacing:18.180000px;}
.wscf{word-spacing:18.300000px;}
.wsb8{word-spacing:18.600000px;}
.ws97{word-spacing:18.660000px;}
.ws9b{word-spacing:18.720000px;}
.ws82{word-spacing:19.020000px;}
.ws23{word-spacing:19.140000px;}
.ws72{word-spacing:19.260000px;}
.ws46{word-spacing:19.740000px;}
.ws1b{word-spacing:20.040000px;}
.wsd4{word-spacing:20.160000px;}
.ws26{word-spacing:20.400000px;}
.ws5b{word-spacing:20.520000px;}
.ws79{word-spacing:21.240000px;}
.ws49{word-spacing:21.480000px;}
.ws9a{word-spacing:21.600000px;}
.ws5c{word-spacing:21.720000px;}
.ws2e{word-spacing:22.200000px;}
.ws56{word-spacing:22.320000px;}
.ws2a{word-spacing:22.620000px;}
.ws54{word-spacing:22.920000px;}
.ws2f{word-spacing:23.400000px;}
.ws53{word-spacing:23.880000px;}
.ws4f{word-spacing:25.020000px;}
.ws28{word-spacing:25.140000px;}
.ws34{word-spacing:25.680000px;}
.ws92{word-spacing:25.980000px;}
.ws47{word-spacing:26.100000px;}
.ws4e{word-spacing:26.460000px;}
.ws52{word-spacing:27.600000px;}
.ws74{word-spacing:28.260000px;}
.ws73{word-spacing:28.320000px;}
.ws9e{word-spacing:30.000000px;}
.ws21{word-spacing:31.620000px;}
.ws35{word-spacing:31.920000px;}
.ws31{word-spacing:32.460000px;}
.ws17{word-spacing:36.960000px;}
.ws30{word-spacing:37.200000px;}
.ws15{word-spacing:37.440000px;}
.wsce{word-spacing:38.340000px;}
.wsd3{word-spacing:40.380000px;}
.ws75{word-spacing:41.760000px;}
.ws20{word-spacing:44.040000px;}
.ws13{word-spacing:45.480000px;}
.ws2d{word-spacing:49.860000px;}
.ws1d{word-spacing:51.720000px;}
.ws7a{word-spacing:54.840000px;}
.ws50{word-spacing:56.940000px;}
.ws16{word-spacing:79.680000px;}
.ws14{word-spacing:95.400000px;}
.ws25{word-spacing:151.440000px;}
.wsc1{word-spacing:168.076800px;}
._4{margin-left:-16.416000px;}
._2{margin-left:-12.960000px;}
._9{margin-left:-10.879046px;}
._e{margin-left:-9.770400px;}
._10{margin-left:-8.220000px;}
._15{margin-left:-6.345787px;}
._d{margin-left:-5.342587px;}
._1{margin-left:-4.305787px;}
._3{margin-left:-3.233174px;}
._0{margin-left:-1.634213px;}
._7{width:1.108013px;}
._5{width:2.908613px;}
._6{width:3.942226px;}
._8{width:5.324102px;}
._a{width:6.393638px;}
._b{width:9.208613px;}
._f{width:21.341400px;}
._11{width:42.012000px;}
._13{width:47.952000px;}
._12{width:51.030000px;}
._14{width:54.432000px;}
._c{width:66.515400px;}
.fc5{color:rgb(98,197,241);}
.fc2{color:rgb(90,79,171);}
.fc4{color:rgb(125,210,177);}
.fc1{color:rgb(42,62,146);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:34.980000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:74.282400px;}
.fs9{font-size:78.000000px;}
.fsb{font-size:90.000000px;}
.fsd{font-size:91.113000px;}
.fs4{font-size:96.000000px;}
.fs1{font-size:108.000000px;}
.fs6{font-size:144.000000px;}
.fsc{font-size:164.003400px;}
.fs7{font-size:187.659600px;}
.fs3{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:25.889850px;}
.y3{bottom:57.877200px;}
.y6{bottom:64.672650px;}
.y7{bottom:68.872500px;}
.y43{bottom:85.039500px;}
.y94{bottom:104.539500px;}
.y93{bottom:124.039500px;}
.y92{bottom:143.539650px;}
.y91{bottom:163.039650px;}
.yf6{bottom:166.192800px;}
.y90{bottom:182.539650px;}
.yca{bottom:182.539800px;}
.yf5{bottom:188.692800px;}
.y8e{bottom:194.710650px;}
.y78{bottom:195.691050px;}
.yc9{bottom:202.039800px;}
.yf4{bottom:211.192800px;}
.y8d{bottom:217.210650px;}
.y77{bottom:218.191050px;}
.yc8{bottom:221.539800px;}
.y8c{bottom:239.710650px;}
.yc7{bottom:241.039800px;}
.yf3{bottom:246.448800px;}
.y76{bottom:257.946900px;}
.yc6{bottom:260.539800px;}
.y8b{bottom:262.210650px;}
.ya3{bottom:270.891750px;}
.ya{bottom:271.890750px;}
.yf2{bottom:284.456700px;}
.y8a{bottom:284.710650px;}
.y75{bottom:295.954800px;}
.yf1{bottom:306.956700px;}
.y89{bottom:307.210650px;}
.y74{bottom:318.454800px;}
.yf0{bottom:329.456700px;}
.y88{bottom:329.710650px;}
.y9{bottom:336.690750px;}
.y73{bottom:340.954800px;}
.yef{bottom:351.956700px;}
.y87{bottom:352.210650px;}
.y72{bottom:363.454800px;}
.y86{bottom:374.710650px;}
.yfe{bottom:377.506500px;}
.y71{bottom:385.954800px;}
.yba{bottom:388.661100px;}
.yee{bottom:391.712550px;}
.y85{bottom:397.210650px;}
.y8{bottom:401.490750px;}
.yde{bottom:405.934050px;}
.y70{bottom:408.454800px;}
.yb9{bottom:411.161100px;}
.yed{bottom:418.712550px;}
.y84{bottom:419.710650px;}
.y6f{bottom:430.954800px;}
.yc5{bottom:433.446900px;}
.yb8{bottom:433.661100px;}
.y83{bottom:442.210800px;}
.y6e{bottom:453.454800px;}
.yb7{bottom:456.161100px;}
.yfd{bottom:463.762350px;}
.y82{bottom:464.710800px;}
.y105{bottom:465.319800px;}
.y6d{bottom:475.954800px;}
.y81{bottom:487.210800px;}
.y5{bottom:489.869550px;}
.yfc{bottom:490.762350px;}
.yb6{bottom:491.416950px;}
.y6c{bottom:498.454800px;}
.y104{bottom:505.943850px;}
.y54{bottom:509.464200px;}
.y80{bottom:509.710800px;}
.y63{bottom:517.708350px;}
.y6b{bottom:520.954800px;}
.yb5{bottom:529.424850px;}
.y53{bottom:531.964200px;}
.y7f{bottom:532.210800px;}
.y62{bottom:540.208350px;}
.y6a{bottom:543.454800px;}
.yec{bottom:545.988150px;}
.y103{bottom:546.568050px;}
.yb4{bottom:551.924850px;}
.y52{bottom:554.464200px;}
.y7e{bottom:554.710800px;}
.y61{bottom:562.708350px;}
.y69{bottom:565.954800px;}
.yeb{bottom:568.488150px;}
.yb3{bottom:574.424850px;}
.y2f{bottom:575.157000px;}
.y51{bottom:576.964200px;}
.y7d{bottom:577.210800px;}
.y60{bottom:585.208350px;}
.y102{bottom:587.192250px;}
.y68{bottom:588.454800px;}
.yea{bottom:590.988150px;}
.yb2{bottom:596.924850px;}
.y50{bottom:599.464200px;}
.y7c{bottom:599.710800px;}
.y1b{bottom:603.040500px;}
.y5f{bottom:607.708350px;}
.y2e{bottom:610.413000px;}
.y67{bottom:610.954800px;}
.y4f{bottom:621.964200px;}
.y7b{bottom:622.210800px;}
.ye9{bottom:626.244000px;}
.y101{bottom:627.816300px;}
.y5e{bottom:630.208350px;}
.yb1{bottom:632.180700px;}
.y66{bottom:633.454800px;}
.y4e{bottom:644.464200px;}
.y7a{bottom:644.710800px;}
.y2d{bottom:645.668850px;}
.y5d{bottom:652.708350px;}
.yb0{bottom:659.180700px;}
.y42{bottom:660.727950px;}
.ye8{bottom:664.251900px;}
.y4d{bottom:666.964200px;}
.y79{bottom:667.210800px;}
.y100{bottom:668.440500px;}
.y65{bottom:668.710800px;}
.y5c{bottom:675.208350px;}
.y2c{bottom:680.924850px;}
.y41{bottom:683.227950px;}
.ye7{bottom:686.751900px;}
.y4c{bottom:689.464200px;}
.y5b{bottom:697.708350px;}
.y2b{bottom:703.424850px;}
.y40{bottom:705.727950px;}
.ye6{bottom:709.251900px;}
.y64{bottom:710.970600px;}
.y4b{bottom:711.964200px;}
.y5a{bottom:720.208350px;}
.y3f{bottom:728.227950px;}
.ye5{bottom:731.751900px;}
.y4a{bottom:734.464200px;}
.y2a{bottom:738.680700px;}
.y1a{bottom:739.068000px;}
.y59{bottom:742.708350px;}
.yff{bottom:749.688750px;}
.y3e{bottom:750.727950px;}
.y49{bottom:756.964200px;}
.y29{bottom:761.180700px;}
.y19{bottom:761.568000px;}
.ydd{bottom:763.783350px;}
.y58{bottom:765.208350px;}
.ye4{bottom:767.007900px;}
.y3d{bottom:773.227950px;}
.y48{bottom:779.464200px;}
.ydc{bottom:786.283500px;}
.yaf{bottom:786.456300px;}
.y57{bottom:787.708350px;}
.ye3{bottom:794.007900px;}
.y3c{bottom:795.727950px;}
.y28{bottom:796.436700px;}
.y47{bottom:801.964200px;}
.ya2{bottom:802.847550px;}
.y18{bottom:806.568000px;}
.ydb{bottom:808.783500px;}
.yae{bottom:808.956300px;}
.y3b{bottom:818.227950px;}
.y46{bottom:824.464200px;}
.ya1{bottom:825.347550px;}
.y56{bottom:827.464200px;}
.y17{bottom:829.068000px;}
.yda{bottom:831.283500px;}
.yad{bottom:831.456300px;}
.y27{bottom:831.692550px;}
.y3a{bottom:840.727950px;}
.y45{bottom:846.964200px;}
.ya0{bottom:847.847550px;}
.y55{bottom:848.464200px;}
.y16{bottom:851.568000px;}
.yd9{bottom:853.783500px;}
.yac{bottom:853.956300px;}
.y39{bottom:863.227950px;}
.y26{bottom:866.948400px;}
.y9f{bottom:870.347550px;}
.yd8{bottom:876.283500px;}
.yce{bottom:880.783500px;}
.yfa{bottom:885.727950px;}
.y44{bottom:886.720050px;}
.y15{bottom:886.823850px;}
.yab{bottom:889.212150px;}
.y25{bottom:889.448400px;}
.y9e{bottom:892.847550px;}
.y38{bottom:898.483950px;}
.ycd{bottom:903.283500px;}
.yf9{bottom:908.227950px;}
.y14{bottom:909.323850px;}
.yd7{bottom:911.539350px;}
.y9d{bottom:915.347550px;}
.y37{bottom:920.983950px;}
.ye2{bottom:921.283500px;}
.y24{bottom:924.704250px;}
.yc4{bottom:925.783500px;}
.yaa{bottom:927.220050px;}
.yf8{bottom:930.727950px;}
.y9c{bottom:937.847550px;}
.y36{bottom:943.483950px;}
.ye1{bottom:943.783500px;}
.y13{bottom:944.579700px;}
.yc3{bottom:948.283500px;}
.yd6{bottom:949.547250px;}
.ya9{bottom:949.720050px;}
.yf7{bottom:953.227950px;}
.y23{bottom:959.960250px;}
.y9b{bottom:960.347550px;}
.y35{bottom:965.983950px;}
.ye0{bottom:966.283500px;}
.y12{bottom:967.079700px;}
.yc2{bottom:970.783500px;}
.yd5{bottom:972.047250px;}
.ya8{bottom:972.220050px;}
.yfb{bottom:975.727950px;}
.y9a{bottom:982.847550px;}
.ycc{bottom:983.539350px;}
.y34{bottom:988.483950px;}
.yd4{bottom:994.547250px;}
.ya7{bottom:994.720050px;}
.y22{bottom:995.216100px;}
.ydf{bottom:1001.539350px;}
.y11{bottom:1002.335700px;}
.y99{bottom:1005.347550px;}
.yc1{bottom:1006.039350px;}
.y33{bottom:1010.983950px;}
.yd3{bottom:1017.047250px;}
.ya6{bottom:1017.220050px;}
.y2{bottom:1020.847500px;}
.ycb{bottom:1021.547250px;}
.y10{bottom:1024.835700px;}
.y98{bottom:1027.847550px;}
.y21{bottom:1030.472100px;}
.y32{bottom:1033.483950px;}
.yd2{bottom:1039.547250px;}
.yc0{bottom:1044.047250px;}
.y97{bottom:1050.347550px;}
.ya5{bottom:1052.475900px;}
.y31{bottom:1055.983950px;}
.y4{bottom:1056.439800px;}
.yf{bottom:1060.091550px;}
.yd1{bottom:1062.047250px;}
.y20{bottom:1065.727950px;}
.ybf{bottom:1066.547250px;}
.y96{bottom:1072.847550px;}
.y30{bottom:1078.483950px;}
.y1{bottom:1078.724700px;}
.ya4{bottom:1079.475900px;}
.ye{bottom:1082.591550px;}
.yd0{bottom:1084.547250px;}
.ybe{bottom:1089.047250px;}
.y95{bottom:1095.347550px;}
.y1f{bottom:1100.983950px;}
.ybd{bottom:1111.547250px;}
.yd{bottom:1117.847550px;}
.ycf{bottom:1119.803100px;}
.yc{bottom:1140.347550px;}
.ybc{bottom:1146.803100px;}
.y1e{bottom:1166.003550px;}
.y1d{bottom:1166.834700px;}
.ybb{bottom:1173.803100px;}
.y8f{bottom:1175.603400px;}
.yb{bottom:1175.603550px;}
.hd{height:43.362000px;}
.h8{height:48.000000px;}
.h9{height:48.180000px;}
.h5{height:52.998000px;}
.h2{height:59.648767px;}
.he{height:62.634000px;}
.h10{height:68.250000px;}
.h13{height:72.000000px;}
.h16{height:73.163739px;}
.h7{height:76.800000px;}
.h15{height:79.723875px;}
.hf{height:84.000000px;}
.h12{height:86.400000px;}
.h4{height:86.724000px;}
.h11{height:111.873600px;}
.hb{height:112.307400px;}
.ha{height:115.632000px;}
.h14{height:131.694730px;}
.hc{height:150.690659px;}
.h6{height:172.800000px;}
.h3{height:189.139500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:397.843500px;}
.w2{width:397.845000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:5.417250px;}
.xb{left:8.972100px;}
.x5{left:26.043300px;}
.x19{left:45.945000px;}
.xc{left:65.964300px;}
.x7{left:68.031450px;}
.x9{left:80.787300px;}
.xd{left:96.364950px;}
.x1a{left:114.841350px;}
.x13{left:173.671350px;}
.x11{left:182.153100px;}
.x6{left:208.594500px;}
.x18{left:213.978750px;}
.x15{left:227.125950px;}
.x16{left:272.013000px;}
.x12{left:281.827050px;}
.x3{left:287.033850px;}
.x17{left:348.368400px;}
.xa{left:434.483100px;}
.x2{left:442.221000px;}
.xe{left:455.456700px;}
.x10{left:457.086600px;}
.x1{left:610.254750px;}
.x4{left:649.488150px;}
.xf{left:872.725500px;}
.x8{left:874.638000px;}
@media print{
.v1{vertical-align:-2.955200pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v4{vertical-align:24.776533pt;}
.v2{vertical-align:80.000000pt;}
.ls7{letter-spacing:-2.133333pt;}
.lsb{letter-spacing:-1.706667pt;}
.ls4{letter-spacing:-1.600000pt;}
.ls5{letter-spacing:-1.066667pt;}
.ls1{letter-spacing:-0.586667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000133pt;}
.ls6{letter-spacing:0.000160pt;}
.lsa{letter-spacing:0.000213pt;}
.ls3{letter-spacing:0.533333pt;}
.ls8{letter-spacing:176.762133pt;}
.ls9{letter-spacing:177.215467pt;}
.ls2{letter-spacing:178.042133pt;}
.ws10{word-spacing:-50.042560pt;}
.ws1{word-spacing:-25.600000pt;}
.wsd9{word-spacing:-24.296800pt;}
.wscb{word-spacing:-24.000000pt;}
.ws12{word-spacing:-16.533333pt;}
.ws11{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.933333pt;}
.ws2{word-spacing:-14.720000pt;}
.ws37{word-spacing:-14.400000pt;}
.wsd{word-spacing:-13.973333pt;}
.ws8{word-spacing:-13.013333pt;}
.wse{word-spacing:-12.106667pt;}
.ws3d{word-spacing:-10.400000pt;}
.ws38{word-spacing:-9.328000pt;}
.wsa{word-spacing:-8.160000pt;}
.ws4{word-spacing:-7.840000pt;}
.ws78{word-spacing:-7.573333pt;}
.ws6{word-spacing:-7.413333pt;}
.wsc{word-spacing:-6.026667pt;}
.ws44{word-spacing:-5.760000pt;}
.ws5{word-spacing:-5.546667pt;}
.wsd6{word-spacing:-5.440000pt;}
.ws58{word-spacing:-4.906667pt;}
.wsf{word-spacing:-4.800000pt;}
.ws18{word-spacing:-4.213333pt;}
.ws62{word-spacing:-4.106667pt;}
.ws4c{word-spacing:-3.786667pt;}
.ws96{word-spacing:-3.733333pt;}
.ws7b{word-spacing:-3.573333pt;}
.wsc4{word-spacing:-3.040000pt;}
.ws27{word-spacing:-2.986667pt;}
.wsab{word-spacing:-2.933333pt;}
.wsb{word-spacing:-2.773333pt;}
.wsac{word-spacing:-2.293333pt;}
.wsc9{word-spacing:-2.186667pt;}
.wsc2{word-spacing:-2.133333pt;}
.wsbc{word-spacing:-2.080000pt;}
.ws1c{word-spacing:-2.026667pt;}
.wsd7{word-spacing:-1.973333pt;}
.ws65{word-spacing:-1.760000pt;}
.wsc3{word-spacing:-1.706667pt;}
.wsa8{word-spacing:-1.653333pt;}
.wsb2{word-spacing:-1.632000pt;}
.ws22{word-spacing:-1.600000pt;}
.ws5e{word-spacing:-1.546667pt;}
.ws8d{word-spacing:-1.493333pt;}
.wsb1{word-spacing:-1.440000pt;}
.ws6a{word-spacing:-1.226667pt;}
.wsd0{word-spacing:-1.173333pt;}
.wsb7{word-spacing:-1.066667pt;}
.ws9{word-spacing:-1.013333pt;}
.wsa9{word-spacing:-0.906667pt;}
.ws39{word-spacing:-0.586667pt;}
.ws66{word-spacing:-0.480000pt;}
.ws3a{word-spacing:-0.426667pt;}
.ws2c{word-spacing:-0.320000pt;}
.ws0{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.266667pt;}
.ws45{word-spacing:0.320000pt;}
.wsaf{word-spacing:0.336000pt;}
.ws3e{word-spacing:0.533333pt;}
.wsc0{word-spacing:0.693333pt;}
.ws42{word-spacing:0.800000pt;}
.ws19{word-spacing:1.013333pt;}
.wsd8{word-spacing:1.066667pt;}
.wsbe{word-spacing:1.120000pt;}
.ws40{word-spacing:1.226667pt;}
.ws67{word-spacing:1.280000pt;}
.ws48{word-spacing:1.333333pt;}
.wsad{word-spacing:1.488000pt;}
.wsa0{word-spacing:1.493333pt;}
.ws89{word-spacing:1.536000pt;}
.ws9c{word-spacing:1.546667pt;}
.ws24{word-spacing:1.600000pt;}
.ws7f{word-spacing:1.706667pt;}
.wsb0{word-spacing:1.728000pt;}
.wsa7{word-spacing:1.866667pt;}
.wsb3{word-spacing:1.872000pt;}
.ws4a{word-spacing:2.080000pt;}
.ws6e{word-spacing:2.346667pt;}
.ws94{word-spacing:2.560000pt;}
.wsca{word-spacing:2.773333pt;}
.ws83{word-spacing:2.826667pt;}
.wsbb{word-spacing:2.880000pt;}
.wsba{word-spacing:2.933333pt;}
.wsa5{word-spacing:2.986667pt;}
.ws8a{word-spacing:3.360000pt;}
.ws7c{word-spacing:3.466667pt;}
.wsb5{word-spacing:3.626667pt;}
.ws6d{word-spacing:3.680000pt;}
.ws55{word-spacing:3.786667pt;}
.wsd2{word-spacing:3.840000pt;}
.ws1e{word-spacing:3.893333pt;}
.ws8f{word-spacing:3.946667pt;}
.ws1a{word-spacing:4.000000pt;}
.ws63{word-spacing:4.213333pt;}
.ws95{word-spacing:4.373333pt;}
.ws51{word-spacing:4.640000pt;}
.ws90{word-spacing:4.693333pt;}
.ws8c{word-spacing:4.853333pt;}
.ws70{word-spacing:4.960000pt;}
.wsa3{word-spacing:5.013333pt;}
.wsae{word-spacing:5.040000pt;}
.wsd1{word-spacing:5.173333pt;}
.wsbf{word-spacing:5.280000pt;}
.ws91{word-spacing:5.333333pt;}
.ws5d{word-spacing:5.386667pt;}
.ws43{word-spacing:5.440000pt;}
.wsa4{word-spacing:5.493333pt;}
.ws3c{word-spacing:5.653333pt;}
.ws57{word-spacing:5.760000pt;}
.wsc8{word-spacing:5.920000pt;}
.ws60{word-spacing:5.973333pt;}
.ws6b{word-spacing:6.026667pt;}
.ws3b{word-spacing:6.240000pt;}
.ws5a{word-spacing:6.346667pt;}
.ws9d{word-spacing:6.613333pt;}
.ws85{word-spacing:6.986667pt;}
.ws8e{word-spacing:7.360000pt;}
.ws41{word-spacing:7.413333pt;}
.ws4b{word-spacing:7.626667pt;}
.ws81{word-spacing:7.680000pt;}
.wsb4{word-spacing:7.733333pt;}
.wsaa{word-spacing:7.840000pt;}
.ws7{word-spacing:8.906667pt;}
.wscd{word-spacing:8.960000pt;}
.ws68{word-spacing:9.120000pt;}
.ws93{word-spacing:9.173333pt;}
.wsc6{word-spacing:9.226667pt;}
.wsb6{word-spacing:9.333333pt;}
.wsa2{word-spacing:9.493333pt;}
.ws61{word-spacing:9.546667pt;}
.wsa1{word-spacing:9.653333pt;}
.ws8b{word-spacing:9.760000pt;}
.wsa6{word-spacing:9.813333pt;}
.wsd5{word-spacing:9.920000pt;}
.ws36{word-spacing:9.973333pt;}
.ws5f{word-spacing:10.026667pt;}
.ws87{word-spacing:10.224000pt;}
.ws86{word-spacing:10.293333pt;}
.ws33{word-spacing:10.506667pt;}
.ws6f{word-spacing:10.560000pt;}
.ws77{word-spacing:10.720000pt;}
.ws80{word-spacing:11.040000pt;}
.ws9f{word-spacing:11.360000pt;}
.ws69{word-spacing:11.626667pt;}
.ws6c{word-spacing:11.680000pt;}
.ws84{word-spacing:12.160000pt;}
.wsc5{word-spacing:12.480000pt;}
.ws3f{word-spacing:12.586667pt;}
.ws99{word-spacing:12.693333pt;}
.wsbd{word-spacing:12.960000pt;}
.ws32{word-spacing:13.066667pt;}
.ws71{word-spacing:13.173333pt;}
.ws59{word-spacing:13.333333pt;}
.wsc7{word-spacing:14.186667pt;}
.ws76{word-spacing:14.506667pt;}
.ws29{word-spacing:14.560000pt;}
.ws1f{word-spacing:14.720000pt;}
.ws7d{word-spacing:15.360000pt;}
.wsb9{word-spacing:15.413333pt;}
.ws64{word-spacing:15.626667pt;}
.ws88{word-spacing:15.648000pt;}
.ws2b{word-spacing:15.840000pt;}
.wscc{word-spacing:15.893333pt;}
.ws4d{word-spacing:16.106667pt;}
.ws98{word-spacing:16.160000pt;}
.wscf{word-spacing:16.266667pt;}
.wsb8{word-spacing:16.533333pt;}
.ws97{word-spacing:16.586667pt;}
.ws9b{word-spacing:16.640000pt;}
.ws82{word-spacing:16.906667pt;}
.ws23{word-spacing:17.013333pt;}
.ws72{word-spacing:17.120000pt;}
.ws46{word-spacing:17.546667pt;}
.ws1b{word-spacing:17.813333pt;}
.wsd4{word-spacing:17.920000pt;}
.ws26{word-spacing:18.133333pt;}
.ws5b{word-spacing:18.240000pt;}
.ws79{word-spacing:18.880000pt;}
.ws49{word-spacing:19.093333pt;}
.ws9a{word-spacing:19.200000pt;}
.ws5c{word-spacing:19.306667pt;}
.ws2e{word-spacing:19.733333pt;}
.ws56{word-spacing:19.840000pt;}
.ws2a{word-spacing:20.106667pt;}
.ws54{word-spacing:20.373333pt;}
.ws2f{word-spacing:20.800000pt;}
.ws53{word-spacing:21.226667pt;}
.ws4f{word-spacing:22.240000pt;}
.ws28{word-spacing:22.346667pt;}
.ws34{word-spacing:22.826667pt;}
.ws92{word-spacing:23.093333pt;}
.ws47{word-spacing:23.200000pt;}
.ws4e{word-spacing:23.520000pt;}
.ws52{word-spacing:24.533333pt;}
.ws74{word-spacing:25.120000pt;}
.ws73{word-spacing:25.173333pt;}
.ws9e{word-spacing:26.666667pt;}
.ws21{word-spacing:28.106667pt;}
.ws35{word-spacing:28.373333pt;}
.ws31{word-spacing:28.853333pt;}
.ws17{word-spacing:32.853333pt;}
.ws30{word-spacing:33.066667pt;}
.ws15{word-spacing:33.280000pt;}
.wsce{word-spacing:34.080000pt;}
.wsd3{word-spacing:35.893333pt;}
.ws75{word-spacing:37.120000pt;}
.ws20{word-spacing:39.146667pt;}
.ws13{word-spacing:40.426667pt;}
.ws2d{word-spacing:44.320000pt;}
.ws1d{word-spacing:45.973333pt;}
.ws7a{word-spacing:48.746667pt;}
.ws50{word-spacing:50.613333pt;}
.ws16{word-spacing:70.826667pt;}
.ws14{word-spacing:84.800000pt;}
.ws25{word-spacing:134.613333pt;}
.wsc1{word-spacing:149.401600pt;}
._4{margin-left:-14.592000pt;}
._2{margin-left:-11.520000pt;}
._9{margin-left:-9.670263pt;}
._e{margin-left:-8.684800pt;}
._10{margin-left:-7.306667pt;}
._15{margin-left:-5.640700pt;}
._d{margin-left:-4.748966pt;}
._1{margin-left:-3.827366pt;}
._3{margin-left:-2.873933pt;}
._0{margin-left:-1.452634pt;}
._7{width:0.984900pt;}
._5{width:2.585434pt;}
._6{width:3.504201pt;}
._8{width:4.732535pt;}
._a{width:5.683234pt;}
._b{width:8.185434pt;}
._f{width:18.970133pt;}
._11{width:37.344000pt;}
._13{width:42.624000pt;}
._12{width:45.360000pt;}
._14{width:48.384000pt;}
._c{width:59.124800pt;}
.fsa{font-size:31.093333pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:66.028800pt;}
.fs9{font-size:69.333333pt;}
.fsb{font-size:80.000000pt;}
.fsd{font-size:80.989333pt;}
.fs4{font-size:85.333333pt;}
.fs1{font-size:96.000000pt;}
.fs6{font-size:128.000000pt;}
.fsc{font-size:145.780800pt;}
.fs7{font-size:166.808533pt;}
.fs3{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:23.013200pt;}
.y3{bottom:51.446400pt;}
.y6{bottom:57.486800pt;}
.y7{bottom:61.220000pt;}
.y43{bottom:75.590667pt;}
.y94{bottom:92.924000pt;}
.y93{bottom:110.257333pt;}
.y92{bottom:127.590800pt;}
.y91{bottom:144.924133pt;}
.yf6{bottom:147.726933pt;}
.y90{bottom:162.257467pt;}
.yca{bottom:162.257600pt;}
.yf5{bottom:167.726933pt;}
.y8e{bottom:173.076133pt;}
.y78{bottom:173.947600pt;}
.yc9{bottom:179.590933pt;}
.yf4{bottom:187.726933pt;}
.y8d{bottom:193.076133pt;}
.y77{bottom:193.947600pt;}
.yc8{bottom:196.924267pt;}
.y8c{bottom:213.076133pt;}
.yc7{bottom:214.257600pt;}
.yf3{bottom:219.065600pt;}
.y76{bottom:229.286133pt;}
.yc6{bottom:231.590933pt;}
.y8b{bottom:233.076133pt;}
.ya3{bottom:240.792667pt;}
.ya{bottom:241.680667pt;}
.yf2{bottom:252.850400pt;}
.y8a{bottom:253.076133pt;}
.y75{bottom:263.070933pt;}
.yf1{bottom:272.850400pt;}
.y89{bottom:273.076133pt;}
.y74{bottom:283.070933pt;}
.yf0{bottom:292.850400pt;}
.y88{bottom:293.076133pt;}
.y9{bottom:299.280667pt;}
.y73{bottom:303.070933pt;}
.yef{bottom:312.850400pt;}
.y87{bottom:313.076133pt;}
.y72{bottom:323.070933pt;}
.y86{bottom:333.076133pt;}
.yfe{bottom:335.561333pt;}
.y71{bottom:343.070933pt;}
.yba{bottom:345.476533pt;}
.yee{bottom:348.188933pt;}
.y85{bottom:353.076133pt;}
.y8{bottom:356.880667pt;}
.yde{bottom:360.830267pt;}
.y70{bottom:363.070933pt;}
.yb9{bottom:365.476533pt;}
.yed{bottom:372.188933pt;}
.y84{bottom:373.076133pt;}
.y6f{bottom:383.070933pt;}
.yc5{bottom:385.286133pt;}
.yb8{bottom:385.476533pt;}
.y83{bottom:393.076267pt;}
.y6e{bottom:403.070933pt;}
.yb7{bottom:405.476533pt;}
.yfd{bottom:412.233200pt;}
.y82{bottom:413.076267pt;}
.y105{bottom:413.617600pt;}
.y6d{bottom:423.070933pt;}
.y81{bottom:433.076267pt;}
.y5{bottom:435.439600pt;}
.yfc{bottom:436.233200pt;}
.yb6{bottom:436.815067pt;}
.y6c{bottom:443.070933pt;}
.y104{bottom:449.727867pt;}
.y54{bottom:452.857067pt;}
.y80{bottom:453.076267pt;}
.y63{bottom:460.185200pt;}
.y6b{bottom:463.070933pt;}
.yb5{bottom:470.599867pt;}
.y53{bottom:472.857067pt;}
.y7f{bottom:473.076267pt;}
.y62{bottom:480.185200pt;}
.y6a{bottom:483.070933pt;}
.yec{bottom:485.322800pt;}
.y103{bottom:485.838267pt;}
.yb4{bottom:490.599867pt;}
.y52{bottom:492.857067pt;}
.y7e{bottom:493.076267pt;}
.y61{bottom:500.185200pt;}
.y69{bottom:503.070933pt;}
.yeb{bottom:505.322800pt;}
.yb3{bottom:510.599867pt;}
.y2f{bottom:511.250667pt;}
.y51{bottom:512.857067pt;}
.y7d{bottom:513.076267pt;}
.y60{bottom:520.185200pt;}
.y102{bottom:521.948667pt;}
.y68{bottom:523.070933pt;}
.yea{bottom:525.322800pt;}
.yb2{bottom:530.599867pt;}
.y50{bottom:532.857067pt;}
.y7c{bottom:533.076267pt;}
.y1b{bottom:536.036000pt;}
.y5f{bottom:540.185200pt;}
.y2e{bottom:542.589333pt;}
.y67{bottom:543.070933pt;}
.y4f{bottom:552.857067pt;}
.y7b{bottom:553.076267pt;}
.ye9{bottom:556.661333pt;}
.y101{bottom:558.058933pt;}
.y5e{bottom:560.185200pt;}
.yb1{bottom:561.938400pt;}
.y66{bottom:563.070933pt;}
.y4e{bottom:572.857067pt;}
.y7a{bottom:573.076267pt;}
.y2d{bottom:573.927867pt;}
.y5d{bottom:580.185200pt;}
.yb0{bottom:585.938400pt;}
.y42{bottom:587.313733pt;}
.ye8{bottom:590.446133pt;}
.y4d{bottom:592.857067pt;}
.y79{bottom:593.076267pt;}
.y100{bottom:594.169333pt;}
.y65{bottom:594.409600pt;}
.y5c{bottom:600.185200pt;}
.y2c{bottom:605.266533pt;}
.y41{bottom:607.313733pt;}
.ye7{bottom:610.446133pt;}
.y4c{bottom:612.857067pt;}
.y5b{bottom:620.185200pt;}
.y2b{bottom:625.266533pt;}
.y40{bottom:627.313733pt;}
.ye6{bottom:630.446133pt;}
.y64{bottom:631.973867pt;}
.y4b{bottom:632.857067pt;}
.y5a{bottom:640.185200pt;}
.y3f{bottom:647.313733pt;}
.ye5{bottom:650.446133pt;}
.y4a{bottom:652.857067pt;}
.y2a{bottom:656.605067pt;}
.y1a{bottom:656.949333pt;}
.y59{bottom:660.185200pt;}
.yff{bottom:666.390000pt;}
.y3e{bottom:667.313733pt;}
.y49{bottom:672.857067pt;}
.y29{bottom:676.605067pt;}
.y19{bottom:676.949333pt;}
.ydd{bottom:678.918533pt;}
.y58{bottom:680.185200pt;}
.ye4{bottom:681.784800pt;}
.y3d{bottom:687.313733pt;}
.y48{bottom:692.857067pt;}
.ydc{bottom:698.918667pt;}
.yaf{bottom:699.072267pt;}
.y57{bottom:700.185200pt;}
.ye3{bottom:705.784800pt;}
.y3c{bottom:707.313733pt;}
.y28{bottom:707.943733pt;}
.y47{bottom:712.857067pt;}
.ya2{bottom:713.642267pt;}
.y18{bottom:716.949333pt;}
.ydb{bottom:718.918667pt;}
.yae{bottom:719.072267pt;}
.y3b{bottom:727.313733pt;}
.y46{bottom:732.857067pt;}
.ya1{bottom:733.642267pt;}
.y56{bottom:735.523733pt;}
.y17{bottom:736.949333pt;}
.yda{bottom:738.918667pt;}
.yad{bottom:739.072267pt;}
.y27{bottom:739.282267pt;}
.y3a{bottom:747.313733pt;}
.y45{bottom:752.857067pt;}
.ya0{bottom:753.642267pt;}
.y55{bottom:754.190400pt;}
.y16{bottom:756.949333pt;}
.yd9{bottom:758.918667pt;}
.yac{bottom:759.072267pt;}
.y39{bottom:767.313733pt;}
.y26{bottom:770.620800pt;}
.y9f{bottom:773.642267pt;}
.yd8{bottom:778.918667pt;}
.yce{bottom:782.918667pt;}
.yfa{bottom:787.313733pt;}
.y44{bottom:788.195600pt;}
.y15{bottom:788.287867pt;}
.yab{bottom:790.410800pt;}
.y25{bottom:790.620800pt;}
.y9e{bottom:793.642267pt;}
.y38{bottom:798.652400pt;}
.ycd{bottom:802.918667pt;}
.yf9{bottom:807.313733pt;}
.y14{bottom:808.287867pt;}
.yd7{bottom:810.257200pt;}
.y9d{bottom:813.642267pt;}
.y37{bottom:818.652400pt;}
.ye2{bottom:818.918667pt;}
.y24{bottom:821.959333pt;}
.yc4{bottom:822.918667pt;}
.yaa{bottom:824.195600pt;}
.yf8{bottom:827.313733pt;}
.y9c{bottom:833.642267pt;}
.y36{bottom:838.652400pt;}
.ye1{bottom:838.918667pt;}
.y13{bottom:839.626400pt;}
.yc3{bottom:842.918667pt;}
.yd6{bottom:844.042000pt;}
.ya9{bottom:844.195600pt;}
.yf7{bottom:847.313733pt;}
.y23{bottom:853.298000pt;}
.y9b{bottom:853.642267pt;}
.y35{bottom:858.652400pt;}
.ye0{bottom:858.918667pt;}
.y12{bottom:859.626400pt;}
.yc2{bottom:862.918667pt;}
.yd5{bottom:864.042000pt;}
.ya8{bottom:864.195600pt;}
.yfb{bottom:867.313733pt;}
.y9a{bottom:873.642267pt;}
.ycc{bottom:874.257200pt;}
.y34{bottom:878.652400pt;}
.yd4{bottom:884.042000pt;}
.ya7{bottom:884.195600pt;}
.y22{bottom:884.636533pt;}
.ydf{bottom:890.257200pt;}
.y11{bottom:890.965067pt;}
.y99{bottom:893.642267pt;}
.yc1{bottom:894.257200pt;}
.y33{bottom:898.652400pt;}
.yd3{bottom:904.042000pt;}
.ya6{bottom:904.195600pt;}
.y2{bottom:907.420000pt;}
.ycb{bottom:908.042000pt;}
.y10{bottom:910.965067pt;}
.y98{bottom:913.642267pt;}
.y21{bottom:915.975200pt;}
.y32{bottom:918.652400pt;}
.yd2{bottom:924.042000pt;}
.yc0{bottom:928.042000pt;}
.y97{bottom:933.642267pt;}
.ya5{bottom:935.534133pt;}
.y31{bottom:938.652400pt;}
.y4{bottom:939.057600pt;}
.yf{bottom:942.303600pt;}
.yd1{bottom:944.042000pt;}
.y20{bottom:947.313733pt;}
.ybf{bottom:948.042000pt;}
.y96{bottom:953.642267pt;}
.y30{bottom:958.652400pt;}
.y1{bottom:958.866400pt;}
.ya4{bottom:959.534133pt;}
.ye{bottom:962.303600pt;}
.yd0{bottom:964.042000pt;}
.ybe{bottom:968.042000pt;}
.y95{bottom:973.642267pt;}
.y1f{bottom:978.652400pt;}
.ybd{bottom:988.042000pt;}
.yd{bottom:993.642267pt;}
.ycf{bottom:995.380533pt;}
.yc{bottom:1013.642267pt;}
.ybc{bottom:1019.380533pt;}
.y1e{bottom:1036.447600pt;}
.y1d{bottom:1037.186400pt;}
.ybb{bottom:1043.380533pt;}
.y8f{bottom:1044.980800pt;}
.yb{bottom:1044.980933pt;}
.hd{height:38.544000pt;}
.h8{height:42.666667pt;}
.h9{height:42.826667pt;}
.h5{height:47.109333pt;}
.h2{height:53.021126pt;}
.he{height:55.674667pt;}
.h10{height:60.666667pt;}
.h13{height:64.000000pt;}
.h16{height:65.034435pt;}
.h7{height:68.266667pt;}
.h15{height:70.865667pt;}
.hf{height:74.666667pt;}
.h12{height:76.800000pt;}
.h4{height:77.088000pt;}
.h11{height:99.443200pt;}
.hb{height:99.828800pt;}
.ha{height:102.784000pt;}
.h14{height:117.061982pt;}
.hc{height:133.947252pt;}
.h6{height:153.600000pt;}
.h3{height:168.124000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:353.638667pt;}
.w2{width:353.640000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:4.815333pt;}
.xb{left:7.975200pt;}
.x5{left:23.149600pt;}
.x19{left:40.840000pt;}
.xc{left:58.634933pt;}
.x7{left:60.472400pt;}
.x9{left:71.810933pt;}
.xd{left:85.657733pt;}
.x1a{left:102.081200pt;}
.x13{left:154.374533pt;}
.x11{left:161.913867pt;}
.x6{left:185.417333pt;}
.x18{left:190.203333pt;}
.x15{left:201.889733pt;}
.x16{left:241.789333pt;}
.x12{left:250.512933pt;}
.x3{left:255.141200pt;}
.x17{left:309.660800pt;}
.xa{left:386.207200pt;}
.x2{left:393.085333pt;}
.xe{left:404.850400pt;}
.x10{left:406.299200pt;}
.x1{left:542.448667pt;}
.x4{left:577.322800pt;}
.xf{left:775.756000pt;}
.x8{left:777.456000pt;}
}




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