
    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_37cf5d93678ab9bc63548753.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.007000;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_4f8793ee596020a37f0040cd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_90f34ac85fdbdeac781b0a78.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739258;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_59a3394a6becbf782f3d8a68.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.069000;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_7a044b72d52b5f6676f041c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128418;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_2d1bd169633a656367a45955.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d1cdda3f04f9f2461aff2003.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006348;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_e442a3acd40607314b10c834.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.076852;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_3da205c905310c3700968cd3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.012684;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_fb2f989d3fce1cf9f0910438.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7cae359186efff45bc7bcd55.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.007000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f5b1e2d7c54b0c2100026f68.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-29.970000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.970000px;}
.ls4{letter-spacing:-0.810000px;}
.ls1{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.660000px;}
.ls3{letter-spacing:-0.588000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.013800px;}
.ls8{letter-spacing:0.016800px;}
.ls2{letter-spacing:1.080000px;}
.ls7{letter-spacing:80.078400px;}
.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;}
}
.wsa3{word-spacing:-26.352000px;}
.wsa4{word-spacing:-25.272000px;}
.ws42{word-spacing:-23.400000px;}
.wsa5{word-spacing:-20.280000px;}
.ws1{word-spacing:-19.656000px;}
.ws17{word-spacing:-17.160000px;}
.ws16{word-spacing:-13.642200px;}
.wse{word-spacing:-5.328000px;}
.ws2e{word-spacing:-4.680000px;}
.ws66{word-spacing:-4.500000px;}
.ws6c{word-spacing:-4.320000px;}
.ws93{word-spacing:-4.230000px;}
.ws3c{word-spacing:-4.050000px;}
.ws1f{word-spacing:-3.960000px;}
.ws7f{word-spacing:-3.780000px;}
.ws3a{word-spacing:-3.690000px;}
.ws35{word-spacing:-3.600000px;}
.ws3d{word-spacing:-3.420000px;}
.ws39{word-spacing:-3.240000px;}
.wsaf{word-spacing:-3.198000px;}
.ws3f{word-spacing:-3.168000px;}
.ws2d{word-spacing:-3.150000px;}
.ws79{word-spacing:-3.060000px;}
.ws4a{word-spacing:-2.880000px;}
.ws2f{word-spacing:-2.790000px;}
.ws40{word-spacing:-2.640000px;}
.ws8{word-spacing:-2.520000px;}
.ws58{word-spacing:-2.508000px;}
.ws1b{word-spacing:-2.430000px;}
.ws4c{word-spacing:-2.340000px;}
.wsab{word-spacing:-2.262000px;}
.ws49{word-spacing:-2.250000px;}
.ws94{word-spacing:-2.160000px;}
.wsb3{word-spacing:-2.106000px;}
.ws74{word-spacing:-2.070000px;}
.wsb1{word-spacing:-2.028000px;}
.ws8f{word-spacing:-1.980000px;}
.ws12{word-spacing:-1.944000px;}
.ws90{word-spacing:-1.890000px;}
.ws2c{word-spacing:-1.800000px;}
.ws76{word-spacing:-1.782000px;}
.ws87{word-spacing:-1.710000px;}
.wsa7{word-spacing:-1.620000px;}
.ws8d{word-spacing:-1.530000px;}
.ws7{word-spacing:-1.512000px;}
.wsa9{word-spacing:-1.440000px;}
.ws97{word-spacing:-1.350000px;}
.ws22{word-spacing:-1.260000px;}
.ws9e{word-spacing:-1.170000px;}
.ws8c{word-spacing:-1.122000px;}
.ws1a{word-spacing:-1.080000px;}
.ws25{word-spacing:-0.900000px;}
.wsaa{word-spacing:-0.858000px;}
.ws44{word-spacing:-0.810000px;}
.ws98{word-spacing:-0.792000px;}
.ws19{word-spacing:-0.720000px;}
.ws52{word-spacing:-0.630000px;}
.wsac{word-spacing:-0.546000px;}
.ws31{word-spacing:-0.540000px;}
.ws11{word-spacing:-0.504000px;}
.wsb5{word-spacing:-0.468000px;}
.ws85{word-spacing:-0.450000px;}
.wsa0{word-spacing:-0.360000px;}
.ws5e{word-spacing:-0.270000px;}
.ws56{word-spacing:-0.198000px;}
.ws36{word-spacing:-0.180000px;}
.ws67{word-spacing:-0.090000px;}
.ws2{word-spacing:0.000000px;}
.ws7e{word-spacing:0.090000px;}
.ws14{word-spacing:0.144000px;}
.ws6a{word-spacing:0.180000px;}
.wsae{word-spacing:0.234000px;}
.ws6d{word-spacing:0.270000px;}
.ws53{word-spacing:0.360000px;}
.ws8a{word-spacing:0.540000px;}
.ws29{word-spacing:0.588000px;}
.ws5c{word-spacing:0.630000px;}
.ws57{word-spacing:0.660000px;}
.ws13{word-spacing:0.720000px;}
.ws78{word-spacing:0.726000px;}
.ws1c{word-spacing:0.810000px;}
.ws63{word-spacing:0.900000px;}
.ws3e{word-spacing:0.990000px;}
.ws77{word-spacing:1.056000px;}
.ws96{word-spacing:1.080000px;}
.wsb7{word-spacing:1.092000px;}
.ws55{word-spacing:1.122000px;}
.ws92{word-spacing:1.170000px;}
.ws82{word-spacing:1.254000px;}
.ws37{word-spacing:1.260000px;}
.ws6e{word-spacing:1.350000px;}
.ws54{word-spacing:1.386000px;}
.ws30{word-spacing:1.530000px;}
.ws33{word-spacing:1.620000px;}
.ws69{word-spacing:1.710000px;}
.ws41{word-spacing:1.782000px;}
.ws2a{word-spacing:1.800000px;}
.ws7d{word-spacing:1.890000px;}
.wsa1{word-spacing:1.914000px;}
.ws81{word-spacing:1.980000px;}
.ws20{word-spacing:2.070000px;}
.ws3b{word-spacing:2.160000px;}
.ws64{word-spacing:2.250000px;}
.ws95{word-spacing:2.340000px;}
.ws89{word-spacing:2.430000px;}
.wsb0{word-spacing:2.496000px;}
.wsa6{word-spacing:2.520000px;}
.ws10{word-spacing:2.592000px;}
.ws5b{word-spacing:2.610000px;}
.wsb4{word-spacing:2.652000px;}
.ws8e{word-spacing:2.700000px;}
.ws2b{word-spacing:2.790000px;}
.ws75{word-spacing:2.880000px;}
.ws5a{word-spacing:3.060000px;}
.ws1d{word-spacing:3.150000px;}
.ws43{word-spacing:3.240000px;}
.ws59{word-spacing:3.330000px;}
.ws46{word-spacing:3.420000px;}
.ws51{word-spacing:3.510000px;}
.ws4{word-spacing:3.600000px;}
.ws86{word-spacing:3.690000px;}
.ws91{word-spacing:3.780000px;}
.ws6b{word-spacing:3.870000px;}
.ws24{word-spacing:3.960000px;}
.ws80{word-spacing:4.026000px;}
.ws4e{word-spacing:4.050000px;}
.ws9b{word-spacing:4.230000px;}
.ws50{word-spacing:4.320000px;}
.ws9d{word-spacing:4.500000px;}
.ws28{word-spacing:4.686000px;}
.wsa2{word-spacing:4.752000px;}
.ws26{word-spacing:4.770000px;}
.wsad{word-spacing:4.836000px;}
.ws8b{word-spacing:4.860000px;}
.ws70{word-spacing:5.130000px;}
.ws65{word-spacing:5.310000px;}
.wsb{word-spacing:5.400000px;}
.ws4b{word-spacing:5.580000px;}
.ws9f{word-spacing:5.670000px;}
.ws4d{word-spacing:5.760000px;}
.ws7a{word-spacing:6.030000px;}
.ws9c{word-spacing:6.120000px;}
.ws60{word-spacing:6.300000px;}
.ws45{word-spacing:6.390000px;}
.ws71{word-spacing:6.480000px;}
.ws84{word-spacing:6.570000px;}
.ws48{word-spacing:6.750000px;}
.ws6f{word-spacing:6.840000px;}
.wsa8{word-spacing:7.020000px;}
.ws83{word-spacing:7.062000px;}
.ws34{word-spacing:7.200000px;}
.ws15{word-spacing:7.272000px;}
.ws38{word-spacing:7.290000px;}
.ws9a{word-spacing:7.470000px;}
.ws21{word-spacing:7.650000px;}
.ws1e{word-spacing:7.830000px;}
.ws73{word-spacing:7.920000px;}
.ws23{word-spacing:8.010000px;}
.ws99{word-spacing:8.190000px;}
.wsf{word-spacing:8.208000px;}
.ws32{word-spacing:8.280000px;}
.ws61{word-spacing:8.370000px;}
.ws88{word-spacing:8.460000px;}
.ws5d{word-spacing:8.730000px;}
.ws9{word-spacing:9.072000px;}
.ws68{word-spacing:9.900000px;}
.wsd{word-spacing:9.936000px;}
.ws7b{word-spacing:10.260000px;}
.wsb2{word-spacing:10.530000px;}
.ws47{word-spacing:10.620000px;}
.ws4f{word-spacing:10.800000px;}
.ws5{word-spacing:11.016000px;}
.wsb6{word-spacing:11.076000px;}
.ws7c{word-spacing:11.790000px;}
.ws5f{word-spacing:12.240000px;}
.ws6{word-spacing:12.744000px;}
.ws72{word-spacing:12.780000px;}
.ws62{word-spacing:12.870000px;}
.ws3{word-spacing:13.824000px;}
.wsc{word-spacing:14.616000px;}
.ws27{word-spacing:21.912000px;}
.wsa{word-spacing:25.200000px;}
.ws18{word-spacing:37.872000px;}
.ws0{word-spacing:2178.365400px;}
._14{margin-left:-113.400000px;}
._f{margin-left:-24.895200px;}
._d{margin-left:-16.312800px;}
._13{margin-left:-11.880000px;}
._5{margin-left:-7.400400px;}
._8{margin-left:-6.021600px;}
._4{margin-left:-4.872000px;}
._7{margin-left:-3.679200px;}
._0{margin-left:-2.536800px;}
._1{margin-left:-1.024800px;}
._c{width:1.894200px;}
._a{width:3.384000px;}
._e{width:4.437000px;}
._11{width:6.027570px;}
._b{width:7.427430px;}
._6{width:9.072000px;}
._10{width:10.611000px;}
._12{width:12.744000px;}
._2{width:63.562800px;}
._15{width:73.869000px;}
._9{width:166.756200px;}
._3{width:2246.993400px;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(5,3,1);}
.fc1{color:rgb(44,44,46);}
.fc0{color:rgb(50,102,164);}
.fs7{font-size:52.470000px;}
.fs8{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs4{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs2{font-size:108.000000px;}
.fs5{font-size:144.000000px;}
.fs0{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:34.203750px;}
.y5a{bottom:76.535400px;}
.y8b{bottom:77.574750px;}
.y59{bottom:77.574900px;}
.y11f{bottom:97.600950px;}
.y8a{bottom:100.074750px;}
.y58{bottom:100.074900px;}
.y89{bottom:122.574750px;}
.y57{bottom:122.574900px;}
.yaf{bottom:122.575050px;}
.y11e{bottom:124.600950px;}
.y88{bottom:145.074750px;}
.yef{bottom:145.074900px;}
.y56{bottom:145.075050px;}
.yae{bottom:145.075200px;}
.y11d{bottom:151.600950px;}
.y87{bottom:167.574750px;}
.y55{bottom:167.575050px;}
.yc6{bottom:167.575200px;}
.yad{bottom:167.575350px;}
.y28{bottom:173.207550px;}
.y11c{bottom:178.600950px;}
.y86{bottom:190.074750px;}
.yee{bottom:190.075050px;}
.y54{bottom:190.075200px;}
.yac{bottom:190.075500px;}
.y27{bottom:197.207550px;}
.y11b{bottom:205.600950px;}
.y85{bottom:212.574750px;}
.y53{bottom:212.575200px;}
.yc5{bottom:212.575350px;}
.yab{bottom:212.575500px;}
.y26{bottom:221.207550px;}
.y11a{bottom:232.600950px;}
.y84{bottom:235.074750px;}
.y52{bottom:235.075200px;}
.yc4{bottom:235.075350px;}
.yaa{bottom:235.075650px;}
.y25{bottom:245.207550px;}
.y83{bottom:257.574750px;}
.yed{bottom:257.575350px;}
.yc3{bottom:257.575500px;}
.ya9{bottom:257.575650px;}
.y119{bottom:259.600950px;}
.y24{bottom:269.207550px;}
.y82{bottom:280.074750px;}
.yec{bottom:280.075350px;}
.ya8{bottom:280.075650px;}
.y118{bottom:286.600950px;}
.y23{bottom:293.207550px;}
.yf7{bottom:295.833300px;}
.y81{bottom:302.574750px;}
.yeb{bottom:302.575500px;}
.ya7{bottom:302.575650px;}
.y2b{bottom:304.451700px;}
.yf2{bottom:305.733150px;}
.y117{bottom:313.600950px;}
.y51{bottom:316.745400px;}
.y22{bottom:317.207550px;}
.y80{bottom:325.074750px;}
.yea{bottom:325.075500px;}
.yf6{bottom:327.333300px;}
.y2a{bottom:332.703600px;}
.yf1{bottom:337.233150px;}
.y116{bottom:340.600950px;}
.y21{bottom:341.207550px;}
.y7f{bottom:347.574750px;}
.ye9{bottom:347.575650px;}
.y50{bottom:348.245400px;}
.yf5{bottom:358.833300px;}
.y29{bottom:360.955650px;}
.y20{bottom:365.207550px;}
.y115{bottom:367.600950px;}
.yf0{bottom:368.733150px;}
.y7e{bottom:370.074750px;}
.ye8{bottom:370.075650px;}
.y4f{bottom:379.745400px;}
.y1f{bottom:389.207550px;}
.ya6{bottom:389.433150px;}
.yf4{bottom:390.333300px;}
.y7d{bottom:392.574750px;}
.ye7{bottom:392.575800px;}
.y114{bottom:394.600950px;}
.yc8{bottom:400.233150px;}
.y4e{bottom:411.245400px;}
.ye6{bottom:415.075800px;}
.y1e{bottom:419.987850px;}
.ya5{bottom:420.933150px;}
.y113{bottom:421.600950px;}
.yc2{bottom:421.833300px;}
.yc7{bottom:431.733150px;}
.y4d{bottom:442.745400px;}
.y112{bottom:448.600950px;}
.ya4{bottom:452.433150px;}
.yc1{bottom:453.333300px;}
.y1a{bottom:460.651650px;}
.y7c{bottom:463.233150px;}
.y4c{bottom:474.245400px;}
.y111{bottom:475.600950px;}
.ya3{bottom:483.933150px;}
.y19{bottom:484.651650px;}
.yc0{bottom:484.833300px;}
.ye5{bottom:493.600950px;}
.y7b{bottom:494.733150px;}
.y110{bottom:502.600950px;}
.y4b{bottom:505.745400px;}
.y18{bottom:508.651650px;}
.ya2{bottom:515.433150px;}
.ybf{bottom:516.333300px;}
.ye4{bottom:525.100950px;}
.y7a{bottom:526.233150px;}
.y10f{bottom:529.600950px;}
.y17{bottom:532.651650px;}
.y4a{bottom:537.245400px;}
.ya1{bottom:546.933150px;}
.ybe{bottom:547.833300px;}
.ye3{bottom:556.600950px;}
.y16{bottom:556.651650px;}
.y79{bottom:557.733150px;}
.y49{bottom:568.745400px;}
.ya0{bottom:578.433150px;}
.ybd{bottom:579.333300px;}
.y15{bottom:580.651650px;}
.y10e{bottom:583.600950px;}
.ye2{bottom:588.100950px;}
.y78{bottom:589.233150px;}
.y48{bottom:600.245400px;}
.y14{bottom:604.651650px;}
.y9f{bottom:609.933150px;}
.ybc{bottom:610.833300px;}
.ye1{bottom:619.600950px;}
.y77{bottom:620.733150px;}
.y13{bottom:628.651650px;}
.y47{bottom:631.745400px;}
.y10d{bottom:634.600950px;}
.y9e{bottom:641.433150px;}
.ybb{bottom:642.333300px;}
.ye0{bottom:651.100950px;}
.y76{bottom:652.233150px;}
.y12{bottom:652.651650px;}
.y46{bottom:663.245400px;}
.y9d{bottom:672.933150px;}
.yba{bottom:673.833150px;}
.y11{bottom:676.651650px;}
.ydf{bottom:682.600950px;}
.y75{bottom:683.733150px;}
.y45{bottom:694.745400px;}
.y10{bottom:700.651650px;}
.y9c{bottom:704.433150px;}
.yb9{bottom:705.333150px;}
.y13a{bottom:708.528600px;}
.yde{bottom:714.100950px;}
.y10c{bottom:715.000950px;}
.y74{bottom:715.233150px;}
.yf{bottom:724.651650px;}
.y44{bottom:726.245400px;}
.yf3{bottom:729.333150px;}
.y139{bottom:735.528600px;}
.y1d{bottom:735.895650px;}
.y9b{bottom:735.933150px;}
.yb8{bottom:736.833150px;}
.y5d{bottom:738.518100px;}
.ydd{bottom:745.600950px;}
.y10b{bottom:746.500950px;}
.y73{bottom:746.733150px;}
.ye{bottom:748.651650px;}
.y43{bottom:757.745400px;}
.y138{bottom:762.528600px;}
.y1c{bottom:764.147700px;}
.y9a{bottom:767.433150px;}
.yb7{bottom:768.333300px;}
.yd{bottom:772.651650px;}
.ydc{bottom:777.100950px;}
.y10a{bottom:778.000800px;}
.y72{bottom:778.233150px;}
.y42{bottom:789.245400px;}
.y137{bottom:789.528600px;}
.y1b{bottom:792.399600px;}
.yc{bottom:796.651650px;}
.y99{bottom:798.933150px;}
.yb6{bottom:799.833300px;}
.ydb{bottom:808.600950px;}
.y109{bottom:809.500800px;}
.y71{bottom:809.733150px;}
.y136{bottom:816.528600px;}
.yb{bottom:820.651650px;}
.y41{bottom:820.745400px;}
.y98{bottom:830.433150px;}
.yb5{bottom:831.333300px;}
.yda{bottom:840.100950px;}
.y108{bottom:841.000800px;}
.y70{bottom:841.233150px;}
.y135{bottom:843.528600px;}
.ya{bottom:851.431950px;}
.y40{bottom:852.245400px;}
.y97{bottom:861.933150px;}
.yb4{bottom:862.833300px;}
.y134{bottom:870.528600px;}
.yd9{bottom:871.600950px;}
.y107{bottom:872.500800px;}
.y6f{bottom:872.733150px;}
.y3f{bottom:883.745400px;}
.y96{bottom:893.433150px;}
.yb3{bottom:894.333300px;}
.y133{bottom:897.528600px;}
.yd8{bottom:903.100950px;}
.y106{bottom:904.000800px;}
.y6e{bottom:904.233150px;}
.y132{bottom:924.528600px;}
.y95{bottom:924.933150px;}
.y9{bottom:925.607700px;}
.yb2{bottom:925.833300px;}
.yd7{bottom:934.600950px;}
.y105{bottom:935.500800px;}
.y6d{bottom:935.733150px;}
.y3e{bottom:939.245400px;}
.y131{bottom:951.528600px;}
.y94{bottom:956.433150px;}
.yb1{bottom:957.333300px;}
.y5b{bottom:962.597400px;}
.yd6{bottom:966.100950px;}
.y104{bottom:967.000800px;}
.y6c{bottom:967.233150px;}
.y130{bottom:978.528600px;}
.y93{bottom:987.933150px;}
.y8{bottom:988.607700px;}
.yd5{bottom:997.600950px;}
.y103{bottom:998.500800px;}
.y6b{bottom:998.733150px;}
.y12f{bottom:1005.528600px;}
.yb0{bottom:1012.833300px;}
.y7{bottom:1014.107700px;}
.y92{bottom:1019.433150px;}
.y3d{bottom:1019.645400px;}
.yd4{bottom:1029.100950px;}
.y102{bottom:1030.000800px;}
.y6a{bottom:1030.233150px;}
.y12e{bottom:1032.528600px;}
.y6{bottom:1039.607700px;}
.y3c{bottom:1045.145400px;}
.y91{bottom:1050.933150px;}
.y12d{bottom:1059.528600px;}
.yd3{bottom:1060.600950px;}
.y101{bottom:1061.500800px;}
.y69{bottom:1061.733150px;}
.y5{bottom:1065.107700px;}
.y3b{bottom:1070.645400px;}
.y90{bottom:1082.433150px;}
.y12c{bottom:1086.528600px;}
.yd2{bottom:1092.100950px;}
.y100{bottom:1093.000800px;}
.y68{bottom:1093.233150px;}
.y3a{bottom:1096.145400px;}
.y12b{bottom:1113.528600px;}
.y8f{bottom:1113.933150px;}
.y4{bottom:1119.107700px;}
.y39{bottom:1121.645400px;}
.yd1{bottom:1123.600950px;}
.yff{bottom:1124.500800px;}
.y67{bottom:1124.733150px;}
.y12a{bottom:1140.528600px;}
.y8e{bottom:1145.433150px;}
.y3{bottom:1146.107700px;}
.y38{bottom:1147.145400px;}
.yd0{bottom:1155.100950px;}
.yfe{bottom:1156.000800px;}
.y66{bottom:1156.233150px;}
.y129{bottom:1167.528600px;}
.y37{bottom:1172.645400px;}
.ycf{bottom:1186.600950px;}
.yfd{bottom:1187.500800px;}
.y65{bottom:1187.733150px;}
.y5c{bottom:1190.503950px;}
.y2{bottom:1192.907850px;}
.y128{bottom:1194.528600px;}
.y8d{bottom:1200.933150px;}
.yce{bottom:1218.100950px;}
.yfc{bottom:1219.000800px;}
.y64{bottom:1219.233150px;}
.y127{bottom:1221.528600px;}
.y36{bottom:1222.145400px;}
.y8c{bottom:1233.333300px;}
.y1{bottom:1243.307700px;}
.y126{bottom:1248.528600px;}
.ycd{bottom:1249.600950px;}
.yfb{bottom:1250.500800px;}
.y63{bottom:1250.733150px;}
.y125{bottom:1275.528600px;}
.ycc{bottom:1281.100950px;}
.yfa{bottom:1282.000800px;}
.y62{bottom:1282.233150px;}
.y124{bottom:1302.528600px;}
.ycb{bottom:1312.600950px;}
.yf9{bottom:1313.500800px;}
.y61{bottom:1313.733150px;}
.y123{bottom:1329.528600px;}
.y35{bottom:1330.797300px;}
.y30{bottom:1332.111000px;}
.yf8{bottom:1345.000800px;}
.y60{bottom:1345.233150px;}
.y34{bottom:1354.797300px;}
.y122{bottom:1356.528600px;}
.y2f{bottom:1361.479950px;}
.yca{bottom:1368.100950px;}
.y5f{bottom:1376.733150px;}
.y33{bottom:1378.797300px;}
.y121{bottom:1383.528600px;}
.y2e{bottom:1390.848750px;}
.yc9{bottom:1400.500800px;}
.y32{bottom:1402.797300px;}
.y5e{bottom:1408.233150px;}
.y120{bottom:1410.528600px;}
.y2d{bottom:1420.217700px;}
.y2c{bottom:1449.586650px;}
.h10{height:50.563477px;}
.ha{height:52.681263px;}
.h5{height:54.703125px;}
.h7{height:55.160156px;}
.h11{height:58.620117px;}
.hc{height:59.756836px;}
.h13{height:60.984000px;}
.h12{height:61.461474px;}
.h4{height:63.949219px;}
.h2{height:65.258789px;}
.h6{height:66.192000px;}
.h9{height:66.767556px;}
.hf{height:68.950195px;}
.hb{height:69.278320px;}
.h14{height:78.300000px;}
.he{height:79.936523px;}
.h3{height:85.104000px;}
.hd{height:85.844000px;}
.h8{height:113.472000px;}
.h1{height:121.968000px;}
.h0{height:1536.000000px;}
.w0{width:1152.000000px;}
.x0{left:0.000000px;}
.x1c{left:74.076750px;}
.x1f{left:86.676750px;}
.x1d{left:99.276750px;}
.x20{left:111.876750px;}
.x1e{left:124.476750px;}
.xa{left:136.063050px;}
.x13{left:212.733150px;}
.x12{left:221.102250px;}
.x1b{left:233.858250px;}
.x1a{left:242.362200px;}
.x25{left:246.614100px;}
.x22{left:250.855950px;}
.x1{left:251.869500px;}
.x23{left:256.606950px;}
.x24{left:269.114250px;}
.x17{left:277.293900px;}
.x16{left:278.722200px;}
.x18{left:282.207000px;}
.x15{left:283.635150px;}
.x14{left:288.548250px;}
.xc{left:301.158750px;}
.xe{left:304.148700px;}
.xf{left:309.733800px;}
.x19{left:319.747950px;}
.x3{left:330.669750px;}
.x8{left:342.040800px;}
.x11{left:353.910600px;}
.x6{left:361.126950px;}
.x2{left:385.953150px;}
.xd{left:405.837900px;}
.x5{left:422.521800px;}
.x4{left:456.353400px;}
.x7{left:499.001100px;}
.x10{left:523.896450px;}
.x9{left:646.970250px;}
.xb{left:794.663400px;}
.x21{left:1089.736650px;}
@media print{
.v2{vertical-align:-26.640000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.640000pt;}
.ls4{letter-spacing:-0.720000pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.586667pt;}
.ls3{letter-spacing:-0.522667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.012267pt;}
.ls8{letter-spacing:0.014933pt;}
.ls2{letter-spacing:0.960000pt;}
.ls7{letter-spacing:71.180800pt;}
.wsa3{word-spacing:-23.424000pt;}
.wsa4{word-spacing:-22.464000pt;}
.ws42{word-spacing:-20.800000pt;}
.wsa5{word-spacing:-18.026667pt;}
.ws1{word-spacing:-17.472000pt;}
.ws17{word-spacing:-15.253333pt;}
.ws16{word-spacing:-12.126400pt;}
.wse{word-spacing:-4.736000pt;}
.ws2e{word-spacing:-4.160000pt;}
.ws66{word-spacing:-4.000000pt;}
.ws6c{word-spacing:-3.840000pt;}
.ws93{word-spacing:-3.760000pt;}
.ws3c{word-spacing:-3.600000pt;}
.ws1f{word-spacing:-3.520000pt;}
.ws7f{word-spacing:-3.360000pt;}
.ws3a{word-spacing:-3.280000pt;}
.ws35{word-spacing:-3.200000pt;}
.ws3d{word-spacing:-3.040000pt;}
.ws39{word-spacing:-2.880000pt;}
.wsaf{word-spacing:-2.842667pt;}
.ws3f{word-spacing:-2.816000pt;}
.ws2d{word-spacing:-2.800000pt;}
.ws79{word-spacing:-2.720000pt;}
.ws4a{word-spacing:-2.560000pt;}
.ws2f{word-spacing:-2.480000pt;}
.ws40{word-spacing:-2.346667pt;}
.ws8{word-spacing:-2.240000pt;}
.ws58{word-spacing:-2.229333pt;}
.ws1b{word-spacing:-2.160000pt;}
.ws4c{word-spacing:-2.080000pt;}
.wsab{word-spacing:-2.010667pt;}
.ws49{word-spacing:-2.000000pt;}
.ws94{word-spacing:-1.920000pt;}
.wsb3{word-spacing:-1.872000pt;}
.ws74{word-spacing:-1.840000pt;}
.wsb1{word-spacing:-1.802667pt;}
.ws8f{word-spacing:-1.760000pt;}
.ws12{word-spacing:-1.728000pt;}
.ws90{word-spacing:-1.680000pt;}
.ws2c{word-spacing:-1.600000pt;}
.ws76{word-spacing:-1.584000pt;}
.ws87{word-spacing:-1.520000pt;}
.wsa7{word-spacing:-1.440000pt;}
.ws8d{word-spacing:-1.360000pt;}
.ws7{word-spacing:-1.344000pt;}
.wsa9{word-spacing:-1.280000pt;}
.ws97{word-spacing:-1.200000pt;}
.ws22{word-spacing:-1.120000pt;}
.ws9e{word-spacing:-1.040000pt;}
.ws8c{word-spacing:-0.997333pt;}
.ws1a{word-spacing:-0.960000pt;}
.ws25{word-spacing:-0.800000pt;}
.wsaa{word-spacing:-0.762667pt;}
.ws44{word-spacing:-0.720000pt;}
.ws98{word-spacing:-0.704000pt;}
.ws19{word-spacing:-0.640000pt;}
.ws52{word-spacing:-0.560000pt;}
.wsac{word-spacing:-0.485333pt;}
.ws31{word-spacing:-0.480000pt;}
.ws11{word-spacing:-0.448000pt;}
.wsb5{word-spacing:-0.416000pt;}
.ws85{word-spacing:-0.400000pt;}
.wsa0{word-spacing:-0.320000pt;}
.ws5e{word-spacing:-0.240000pt;}
.ws56{word-spacing:-0.176000pt;}
.ws36{word-spacing:-0.160000pt;}
.ws67{word-spacing:-0.080000pt;}
.ws2{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.080000pt;}
.ws14{word-spacing:0.128000pt;}
.ws6a{word-spacing:0.160000pt;}
.wsae{word-spacing:0.208000pt;}
.ws6d{word-spacing:0.240000pt;}
.ws53{word-spacing:0.320000pt;}
.ws8a{word-spacing:0.480000pt;}
.ws29{word-spacing:0.522667pt;}
.ws5c{word-spacing:0.560000pt;}
.ws57{word-spacing:0.586667pt;}
.ws13{word-spacing:0.640000pt;}
.ws78{word-spacing:0.645333pt;}
.ws1c{word-spacing:0.720000pt;}
.ws63{word-spacing:0.800000pt;}
.ws3e{word-spacing:0.880000pt;}
.ws77{word-spacing:0.938667pt;}
.ws96{word-spacing:0.960000pt;}
.wsb7{word-spacing:0.970667pt;}
.ws55{word-spacing:0.997333pt;}
.ws92{word-spacing:1.040000pt;}
.ws82{word-spacing:1.114667pt;}
.ws37{word-spacing:1.120000pt;}
.ws6e{word-spacing:1.200000pt;}
.ws54{word-spacing:1.232000pt;}
.ws30{word-spacing:1.360000pt;}
.ws33{word-spacing:1.440000pt;}
.ws69{word-spacing:1.520000pt;}
.ws41{word-spacing:1.584000pt;}
.ws2a{word-spacing:1.600000pt;}
.ws7d{word-spacing:1.680000pt;}
.wsa1{word-spacing:1.701333pt;}
.ws81{word-spacing:1.760000pt;}
.ws20{word-spacing:1.840000pt;}
.ws3b{word-spacing:1.920000pt;}
.ws64{word-spacing:2.000000pt;}
.ws95{word-spacing:2.080000pt;}
.ws89{word-spacing:2.160000pt;}
.wsb0{word-spacing:2.218667pt;}
.wsa6{word-spacing:2.240000pt;}
.ws10{word-spacing:2.304000pt;}
.ws5b{word-spacing:2.320000pt;}
.wsb4{word-spacing:2.357333pt;}
.ws8e{word-spacing:2.400000pt;}
.ws2b{word-spacing:2.480000pt;}
.ws75{word-spacing:2.560000pt;}
.ws5a{word-spacing:2.720000pt;}
.ws1d{word-spacing:2.800000pt;}
.ws43{word-spacing:2.880000pt;}
.ws59{word-spacing:2.960000pt;}
.ws46{word-spacing:3.040000pt;}
.ws51{word-spacing:3.120000pt;}
.ws4{word-spacing:3.200000pt;}
.ws86{word-spacing:3.280000pt;}
.ws91{word-spacing:3.360000pt;}
.ws6b{word-spacing:3.440000pt;}
.ws24{word-spacing:3.520000pt;}
.ws80{word-spacing:3.578667pt;}
.ws4e{word-spacing:3.600000pt;}
.ws9b{word-spacing:3.760000pt;}
.ws50{word-spacing:3.840000pt;}
.ws9d{word-spacing:4.000000pt;}
.ws28{word-spacing:4.165333pt;}
.wsa2{word-spacing:4.224000pt;}
.ws26{word-spacing:4.240000pt;}
.wsad{word-spacing:4.298667pt;}
.ws8b{word-spacing:4.320000pt;}
.ws70{word-spacing:4.560000pt;}
.ws65{word-spacing:4.720000pt;}
.wsb{word-spacing:4.800000pt;}
.ws4b{word-spacing:4.960000pt;}
.ws9f{word-spacing:5.040000pt;}
.ws4d{word-spacing:5.120000pt;}
.ws7a{word-spacing:5.360000pt;}
.ws9c{word-spacing:5.440000pt;}
.ws60{word-spacing:5.600000pt;}
.ws45{word-spacing:5.680000pt;}
.ws71{word-spacing:5.760000pt;}
.ws84{word-spacing:5.840000pt;}
.ws48{word-spacing:6.000000pt;}
.ws6f{word-spacing:6.080000pt;}
.wsa8{word-spacing:6.240000pt;}
.ws83{word-spacing:6.277333pt;}
.ws34{word-spacing:6.400000pt;}
.ws15{word-spacing:6.464000pt;}
.ws38{word-spacing:6.480000pt;}
.ws9a{word-spacing:6.640000pt;}
.ws21{word-spacing:6.800000pt;}
.ws1e{word-spacing:6.960000pt;}
.ws73{word-spacing:7.040000pt;}
.ws23{word-spacing:7.120000pt;}
.ws99{word-spacing:7.280000pt;}
.wsf{word-spacing:7.296000pt;}
.ws32{word-spacing:7.360000pt;}
.ws61{word-spacing:7.440000pt;}
.ws88{word-spacing:7.520000pt;}
.ws5d{word-spacing:7.760000pt;}
.ws9{word-spacing:8.064000pt;}
.ws68{word-spacing:8.800000pt;}
.wsd{word-spacing:8.832000pt;}
.ws7b{word-spacing:9.120000pt;}
.wsb2{word-spacing:9.360000pt;}
.ws47{word-spacing:9.440000pt;}
.ws4f{word-spacing:9.600000pt;}
.ws5{word-spacing:9.792000pt;}
.wsb6{word-spacing:9.845333pt;}
.ws7c{word-spacing:10.480000pt;}
.ws5f{word-spacing:10.880000pt;}
.ws6{word-spacing:11.328000pt;}
.ws72{word-spacing:11.360000pt;}
.ws62{word-spacing:11.440000pt;}
.ws3{word-spacing:12.288000pt;}
.wsc{word-spacing:12.992000pt;}
.ws27{word-spacing:19.477333pt;}
.wsa{word-spacing:22.400000pt;}
.ws18{word-spacing:33.664000pt;}
.ws0{word-spacing:1936.324800pt;}
._14{margin-left:-100.800000pt;}
._f{margin-left:-22.129067pt;}
._d{margin-left:-14.500267pt;}
._13{margin-left:-10.560000pt;}
._5{margin-left:-6.578133pt;}
._8{margin-left:-5.352533pt;}
._4{margin-left:-4.330667pt;}
._7{margin-left:-3.270400pt;}
._0{margin-left:-2.254933pt;}
._1{margin-left:-0.910933pt;}
._c{width:1.683733pt;}
._a{width:3.008000pt;}
._e{width:3.944000pt;}
._11{width:5.357840pt;}
._b{width:6.602160pt;}
._6{width:8.064000pt;}
._10{width:9.432000pt;}
._12{width:11.328000pt;}
._2{width:56.500267pt;}
._15{width:65.661333pt;}
._9{width:148.227733pt;}
._3{width:1997.327467pt;}
.fs7{font-size:46.640000pt;}
.fs8{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs4{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs2{font-size:96.000000pt;}
.fs5{font-size:128.000000pt;}
.fs0{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:30.403333pt;}
.y5a{bottom:68.031467pt;}
.y8b{bottom:68.955333pt;}
.y59{bottom:68.955467pt;}
.y11f{bottom:86.756400pt;}
.y8a{bottom:88.955333pt;}
.y58{bottom:88.955467pt;}
.y89{bottom:108.955333pt;}
.y57{bottom:108.955467pt;}
.yaf{bottom:108.955600pt;}
.y11e{bottom:110.756400pt;}
.y88{bottom:128.955333pt;}
.yef{bottom:128.955467pt;}
.y56{bottom:128.955600pt;}
.yae{bottom:128.955733pt;}
.y11d{bottom:134.756400pt;}
.y87{bottom:148.955333pt;}
.y55{bottom:148.955600pt;}
.yc6{bottom:148.955733pt;}
.yad{bottom:148.955867pt;}
.y28{bottom:153.962267pt;}
.y11c{bottom:158.756400pt;}
.y86{bottom:168.955333pt;}
.yee{bottom:168.955600pt;}
.y54{bottom:168.955733pt;}
.yac{bottom:168.956000pt;}
.y27{bottom:175.295600pt;}
.y11b{bottom:182.756400pt;}
.y85{bottom:188.955333pt;}
.y53{bottom:188.955733pt;}
.yc5{bottom:188.955867pt;}
.yab{bottom:188.956000pt;}
.y26{bottom:196.628933pt;}
.y11a{bottom:206.756400pt;}
.y84{bottom:208.955333pt;}
.y52{bottom:208.955733pt;}
.yc4{bottom:208.955867pt;}
.yaa{bottom:208.956133pt;}
.y25{bottom:217.962267pt;}
.y83{bottom:228.955333pt;}
.yed{bottom:228.955867pt;}
.yc3{bottom:228.956000pt;}
.ya9{bottom:228.956133pt;}
.y119{bottom:230.756400pt;}
.y24{bottom:239.295600pt;}
.y82{bottom:248.955333pt;}
.yec{bottom:248.955867pt;}
.ya8{bottom:248.956133pt;}
.y118{bottom:254.756400pt;}
.y23{bottom:260.628933pt;}
.yf7{bottom:262.962933pt;}
.y81{bottom:268.955333pt;}
.yeb{bottom:268.956000pt;}
.ya7{bottom:268.956133pt;}
.y2b{bottom:270.623733pt;}
.yf2{bottom:271.762800pt;}
.y117{bottom:278.756400pt;}
.y51{bottom:281.551467pt;}
.y22{bottom:281.962267pt;}
.y80{bottom:288.955333pt;}
.yea{bottom:288.956000pt;}
.yf6{bottom:290.962933pt;}
.y2a{bottom:295.736533pt;}
.yf1{bottom:299.762800pt;}
.y116{bottom:302.756400pt;}
.y21{bottom:303.295600pt;}
.y7f{bottom:308.955333pt;}
.ye9{bottom:308.956133pt;}
.y50{bottom:309.551467pt;}
.yf5{bottom:318.962933pt;}
.y29{bottom:320.849467pt;}
.y20{bottom:324.628933pt;}
.y115{bottom:326.756400pt;}
.yf0{bottom:327.762800pt;}
.y7e{bottom:328.955333pt;}
.ye8{bottom:328.956133pt;}
.y4f{bottom:337.551467pt;}
.y1f{bottom:345.962267pt;}
.ya6{bottom:346.162800pt;}
.yf4{bottom:346.962933pt;}
.y7d{bottom:348.955333pt;}
.ye7{bottom:348.956267pt;}
.y114{bottom:350.756400pt;}
.yc8{bottom:355.762800pt;}
.y4e{bottom:365.551467pt;}
.ye6{bottom:368.956267pt;}
.y1e{bottom:373.322533pt;}
.ya5{bottom:374.162800pt;}
.y113{bottom:374.756400pt;}
.yc2{bottom:374.962933pt;}
.yc7{bottom:383.762800pt;}
.y4d{bottom:393.551467pt;}
.y112{bottom:398.756400pt;}
.ya4{bottom:402.162800pt;}
.yc1{bottom:402.962933pt;}
.y1a{bottom:409.468133pt;}
.y7c{bottom:411.762800pt;}
.y4c{bottom:421.551467pt;}
.y111{bottom:422.756400pt;}
.ya3{bottom:430.162800pt;}
.y19{bottom:430.801467pt;}
.yc0{bottom:430.962933pt;}
.ye5{bottom:438.756400pt;}
.y7b{bottom:439.762800pt;}
.y110{bottom:446.756400pt;}
.y4b{bottom:449.551467pt;}
.y18{bottom:452.134800pt;}
.ya2{bottom:458.162800pt;}
.ybf{bottom:458.962933pt;}
.ye4{bottom:466.756400pt;}
.y7a{bottom:467.762800pt;}
.y10f{bottom:470.756400pt;}
.y17{bottom:473.468133pt;}
.y4a{bottom:477.551467pt;}
.ya1{bottom:486.162800pt;}
.ybe{bottom:486.962933pt;}
.ye3{bottom:494.756400pt;}
.y16{bottom:494.801467pt;}
.y79{bottom:495.762800pt;}
.y49{bottom:505.551467pt;}
.ya0{bottom:514.162800pt;}
.ybd{bottom:514.962933pt;}
.y15{bottom:516.134800pt;}
.y10e{bottom:518.756400pt;}
.ye2{bottom:522.756400pt;}
.y78{bottom:523.762800pt;}
.y48{bottom:533.551467pt;}
.y14{bottom:537.468133pt;}
.y9f{bottom:542.162800pt;}
.ybc{bottom:542.962933pt;}
.ye1{bottom:550.756400pt;}
.y77{bottom:551.762800pt;}
.y13{bottom:558.801467pt;}
.y47{bottom:561.551467pt;}
.y10d{bottom:564.089733pt;}
.y9e{bottom:570.162800pt;}
.ybb{bottom:570.962933pt;}
.ye0{bottom:578.756400pt;}
.y76{bottom:579.762800pt;}
.y12{bottom:580.134800pt;}
.y46{bottom:589.551467pt;}
.y9d{bottom:598.162800pt;}
.yba{bottom:598.962800pt;}
.y11{bottom:601.468133pt;}
.ydf{bottom:606.756400pt;}
.y75{bottom:607.762800pt;}
.y45{bottom:617.551467pt;}
.y10{bottom:622.801467pt;}
.y9c{bottom:626.162800pt;}
.yb9{bottom:626.962800pt;}
.y13a{bottom:629.803200pt;}
.yde{bottom:634.756400pt;}
.y10c{bottom:635.556400pt;}
.y74{bottom:635.762800pt;}
.yf{bottom:644.134800pt;}
.y44{bottom:645.551467pt;}
.yf3{bottom:648.296133pt;}
.y139{bottom:653.803200pt;}
.y1d{bottom:654.129467pt;}
.y9b{bottom:654.162800pt;}
.yb8{bottom:654.962800pt;}
.y5d{bottom:656.460533pt;}
.ydd{bottom:662.756400pt;}
.y10b{bottom:663.556400pt;}
.y73{bottom:663.762800pt;}
.ye{bottom:665.468133pt;}
.y43{bottom:673.551467pt;}
.y138{bottom:677.803200pt;}
.y1c{bottom:679.242400pt;}
.y9a{bottom:682.162800pt;}
.yb7{bottom:682.962933pt;}
.yd{bottom:686.801467pt;}
.ydc{bottom:690.756400pt;}
.y10a{bottom:691.556267pt;}
.y72{bottom:691.762800pt;}
.y42{bottom:701.551467pt;}
.y137{bottom:701.803200pt;}
.y1b{bottom:704.355200pt;}
.yc{bottom:708.134800pt;}
.y99{bottom:710.162800pt;}
.yb6{bottom:710.962933pt;}
.ydb{bottom:718.756400pt;}
.y109{bottom:719.556267pt;}
.y71{bottom:719.762800pt;}
.y136{bottom:725.803200pt;}
.yb{bottom:729.468133pt;}
.y41{bottom:729.551467pt;}
.y98{bottom:738.162800pt;}
.yb5{bottom:738.962933pt;}
.yda{bottom:746.756400pt;}
.y108{bottom:747.556267pt;}
.y70{bottom:747.762800pt;}
.y135{bottom:749.803200pt;}
.ya{bottom:756.828400pt;}
.y40{bottom:757.551467pt;}
.y97{bottom:766.162800pt;}
.yb4{bottom:766.962933pt;}
.y134{bottom:773.803200pt;}
.yd9{bottom:774.756400pt;}
.y107{bottom:775.556267pt;}
.y6f{bottom:775.762800pt;}
.y3f{bottom:785.551467pt;}
.y96{bottom:794.162800pt;}
.yb3{bottom:794.962933pt;}
.y133{bottom:797.803200pt;}
.yd8{bottom:802.756400pt;}
.y106{bottom:803.556267pt;}
.y6e{bottom:803.762800pt;}
.y132{bottom:821.803200pt;}
.y95{bottom:822.162800pt;}
.y9{bottom:822.762400pt;}
.yb2{bottom:822.962933pt;}
.yd7{bottom:830.756400pt;}
.y105{bottom:831.556267pt;}
.y6d{bottom:831.762800pt;}
.y3e{bottom:834.884800pt;}
.y131{bottom:845.803200pt;}
.y94{bottom:850.162800pt;}
.yb1{bottom:850.962933pt;}
.y5b{bottom:855.642133pt;}
.yd6{bottom:858.756400pt;}
.y104{bottom:859.556267pt;}
.y6c{bottom:859.762800pt;}
.y130{bottom:869.803200pt;}
.y93{bottom:878.162800pt;}
.y8{bottom:878.762400pt;}
.yd5{bottom:886.756400pt;}
.y103{bottom:887.556267pt;}
.y6b{bottom:887.762800pt;}
.y12f{bottom:893.803200pt;}
.yb0{bottom:900.296267pt;}
.y7{bottom:901.429067pt;}
.y92{bottom:906.162800pt;}
.y3d{bottom:906.351467pt;}
.yd4{bottom:914.756400pt;}
.y102{bottom:915.556267pt;}
.y6a{bottom:915.762800pt;}
.y12e{bottom:917.803200pt;}
.y6{bottom:924.095733pt;}
.y3c{bottom:929.018133pt;}
.y91{bottom:934.162800pt;}
.y12d{bottom:941.803200pt;}
.yd3{bottom:942.756400pt;}
.y101{bottom:943.556267pt;}
.y69{bottom:943.762800pt;}
.y5{bottom:946.762400pt;}
.y3b{bottom:951.684800pt;}
.y90{bottom:962.162800pt;}
.y12c{bottom:965.803200pt;}
.yd2{bottom:970.756400pt;}
.y100{bottom:971.556267pt;}
.y68{bottom:971.762800pt;}
.y3a{bottom:974.351467pt;}
.y12b{bottom:989.803200pt;}
.y8f{bottom:990.162800pt;}
.y4{bottom:994.762400pt;}
.y39{bottom:997.018133pt;}
.yd1{bottom:998.756400pt;}
.yff{bottom:999.556267pt;}
.y67{bottom:999.762800pt;}
.y12a{bottom:1013.803200pt;}
.y8e{bottom:1018.162800pt;}
.y3{bottom:1018.762400pt;}
.y38{bottom:1019.684800pt;}
.yd0{bottom:1026.756400pt;}
.yfe{bottom:1027.556267pt;}
.y66{bottom:1027.762800pt;}
.y129{bottom:1037.803200pt;}
.y37{bottom:1042.351467pt;}
.ycf{bottom:1054.756400pt;}
.yfd{bottom:1055.556267pt;}
.y65{bottom:1055.762800pt;}
.y5c{bottom:1058.225733pt;}
.y2{bottom:1060.362533pt;}
.y128{bottom:1061.803200pt;}
.y8d{bottom:1067.496133pt;}
.yce{bottom:1082.756400pt;}
.yfc{bottom:1083.556267pt;}
.y64{bottom:1083.762800pt;}
.y127{bottom:1085.803200pt;}
.y36{bottom:1086.351467pt;}
.y8c{bottom:1096.296267pt;}
.y1{bottom:1105.162400pt;}
.y126{bottom:1109.803200pt;}
.ycd{bottom:1110.756400pt;}
.yfb{bottom:1111.556267pt;}
.y63{bottom:1111.762800pt;}
.y125{bottom:1133.803200pt;}
.ycc{bottom:1138.756400pt;}
.yfa{bottom:1139.556267pt;}
.y62{bottom:1139.762800pt;}
.y124{bottom:1157.803200pt;}
.ycb{bottom:1166.756400pt;}
.yf9{bottom:1167.556267pt;}
.y61{bottom:1167.762800pt;}
.y123{bottom:1181.803200pt;}
.y35{bottom:1182.930933pt;}
.y30{bottom:1184.098667pt;}
.yf8{bottom:1195.556267pt;}
.y60{bottom:1195.762800pt;}
.y34{bottom:1204.264267pt;}
.y122{bottom:1205.803200pt;}
.y2f{bottom:1210.204400pt;}
.yca{bottom:1216.089733pt;}
.y5f{bottom:1223.762800pt;}
.y33{bottom:1225.597600pt;}
.y121{bottom:1229.803200pt;}
.y2e{bottom:1236.310000pt;}
.yc9{bottom:1244.889600pt;}
.y32{bottom:1246.930933pt;}
.y5e{bottom:1251.762800pt;}
.y120{bottom:1253.803200pt;}
.y2d{bottom:1262.415733pt;}
.y2c{bottom:1288.521467pt;}
.h10{height:44.945312pt;}
.ha{height:46.827789pt;}
.h5{height:48.625000pt;}
.h7{height:49.031250pt;}
.h11{height:52.106771pt;}
.hc{height:53.117188pt;}
.h13{height:54.208000pt;}
.h12{height:54.632421pt;}
.h4{height:56.843750pt;}
.h2{height:58.007812pt;}
.h6{height:58.837333pt;}
.h9{height:59.348938pt;}
.hf{height:61.289062pt;}
.hb{height:61.580729pt;}
.h14{height:69.600000pt;}
.he{height:71.054688pt;}
.h3{height:75.648000pt;}
.hd{height:76.305778pt;}
.h8{height:100.864000pt;}
.h1{height:108.416000pt;}
.h0{height:1365.333333pt;}
.w0{width:1024.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:65.846000pt;}
.x1f{left:77.046000pt;}
.x1d{left:88.246000pt;}
.x20{left:99.446000pt;}
.x1e{left:110.646000pt;}
.xa{left:120.944933pt;}
.x13{left:189.096133pt;}
.x12{left:196.535333pt;}
.x1b{left:207.874000pt;}
.x1a{left:215.433067pt;}
.x25{left:219.212533pt;}
.x22{left:222.983067pt;}
.x1{left:223.884000pt;}
.x23{left:228.095067pt;}
.x24{left:239.212667pt;}
.x17{left:246.483467pt;}
.x16{left:247.753067pt;}
.x18{left:250.850667pt;}
.x15{left:252.120133pt;}
.x14{left:256.487333pt;}
.xc{left:267.696667pt;}
.xe{left:270.354400pt;}
.xf{left:275.318933pt;}
.x19{left:284.220400pt;}
.x3{left:293.928667pt;}
.x8{left:304.036267pt;}
.x11{left:314.587200pt;}
.x6{left:321.001733pt;}
.x2{left:343.069467pt;}
.xd{left:360.744800pt;}
.x5{left:375.574933pt;}
.x4{left:405.647467pt;}
.x7{left:443.556533pt;}
.x10{left:465.685733pt;}
.x9{left:575.084667pt;}
.xb{left:706.367467pt;}
.x21{left:968.654800pt;}
}




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