
    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_e1f1d0b3b29b3b24fd378b35.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_ede643e8018990437452da94.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_3d7872439d1806942b40aaac.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964861;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_1a42809c70e40112a47afd14.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.025879;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_a12faf7ee7b8de6de6239d3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.175293;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_fef043401261c56dc14249f1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_f3fc155e3e4f9c4e67a9e267.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.031738;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_a93991474497e6901e999a5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.026855;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_9c1371743e3733a6410084d1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011230;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_c4b6b34793c504a8979fc7ce.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976118;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_b9df172ade7837623ecf1800.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964863;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_d1c665e3e6899db308a2924d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.964844;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d6512530ce12137bb6d5a298.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.970370;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e696d6ab8fa0fda5ca5a2cae.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_2c0a58505433f38c24324c44.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.366000px;}
.v1{vertical-align:21.978000px;}
.ls9{letter-spacing:-2.280000px;}
.ls2{letter-spacing:-1.632000px;}
.ls8{letter-spacing:-1.200000px;}
.ls5{letter-spacing:-1.140000px;}
.ls4{letter-spacing:-1.080000px;}
.ls3{letter-spacing:-0.691200px;}
.ls6{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.300000px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.600000px;}
.ls23{letter-spacing:1.080000px;}
.ls16{letter-spacing:2.220000px;}
.ls1a{letter-spacing:2.328000px;}
.ls1b{letter-spacing:2.340000px;}
.ls10{letter-spacing:2.520000px;}
.ls11{letter-spacing:2.580000px;}
.ls22{letter-spacing:3.780000px;}
.ls1e{letter-spacing:3.900000px;}
.lsa{letter-spacing:3.960000px;}
.lsc{letter-spacing:4.200000px;}
.lsb{letter-spacing:4.536000px;}
.ls19{letter-spacing:5.760000px;}
.ls1c{letter-spacing:6.300000px;}
.lse{letter-spacing:6.858000px;}
.ls17{letter-spacing:7.260000px;}
.lsf{letter-spacing:7.500000px;}
.ls1d{letter-spacing:8.100000px;}
.ls18{letter-spacing:9.480000px;}
.ls20{letter-spacing:9.540000px;}
.ls15{letter-spacing:9.780000px;}
.ls14{letter-spacing:14.160000px;}
.ls21{letter-spacing:16.560000px;}
.ls13{letter-spacing:20.220000px;}
.ls1f{letter-spacing:29.460000px;}
.ls0{letter-spacing:43.181364px;}
.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;}
}
.ws5{word-spacing:-48.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws20{word-spacing:-17.784000px;}
.ws83{word-spacing:-16.434000px;}
.ws2d{word-spacing:-16.302000px;}
.ws74{word-spacing:-15.540000px;}
.ws66{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.940000px;}
.ws3b{word-spacing:-14.880000px;}
.ws4f{word-spacing:-14.820000px;}
.ws1e{word-spacing:-14.700000px;}
.ws3c{word-spacing:-14.340000px;}
.ws7b{word-spacing:-14.220000px;}
.ws4e{word-spacing:-14.160000px;}
.ws21{word-spacing:-14.100000px;}
.ws1f{word-spacing:-13.560000px;}
.ws2e{word-spacing:-13.500000px;}
.ws82{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.230000px;}
.ws28{word-spacing:-12.690000px;}
.wsc{word-spacing:-12.366000px;}
.ws8c{word-spacing:-12.312000px;}
.ws9{word-spacing:-12.150000px;}
.ws4{word-spacing:-11.596800px;}
.wse{word-spacing:-10.992000px;}
.ws6{word-spacing:-10.896000px;}
.ws1c{word-spacing:-10.800000px;}
.ws7{word-spacing:-9.892800px;}
.ws3{word-spacing:-9.618000px;}
.ws8f{word-spacing:-7.807536px;}
.ws67{word-spacing:-5.580000px;}
.ws6e{word-spacing:-4.740000px;}
.ws52{word-spacing:-4.200000px;}
.ws71{word-spacing:-4.020000px;}
.ws2a{word-spacing:-3.456000px;}
.ws49{word-spacing:-2.940000px;}
.ws3e{word-spacing:-2.880000px;}
.ws18{word-spacing:-2.862000px;}
.ws63{word-spacing:-2.820000px;}
.ws17{word-spacing:-2.808000px;}
.ws77{word-spacing:-2.580000px;}
.ws91{word-spacing:-2.484000px;}
.ws55{word-spacing:-2.460000px;}
.ws2c{word-spacing:-2.376000px;}
.ws84{word-spacing:-2.160000px;}
.ws25{word-spacing:-1.980000px;}
.ws56{word-spacing:-1.860000px;}
.ws35{word-spacing:-1.800000px;}
.ws14{word-spacing:-1.782000px;}
.ws5f{word-spacing:-1.740000px;}
.ws86{word-spacing:-1.728000px;}
.ws70{word-spacing:-1.680000px;}
.ws47{word-spacing:-1.620000px;}
.ws3d{word-spacing:-1.320000px;}
.ws29{word-spacing:-1.200000px;}
.ws5b{word-spacing:-1.140000px;}
.ws85{word-spacing:-1.080000px;}
.ws26{word-spacing:-0.960000px;}
.ws90{word-spacing:-0.918000px;}
.ws39{word-spacing:-0.900000px;}
.ws92{word-spacing:-0.756000px;}
.ws6a{word-spacing:-0.600000px;}
.ws1b{word-spacing:-0.432000px;}
.ws61{word-spacing:-0.360000px;}
.ws4a{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.216000px;}
.ws5c{word-spacing:-0.180000px;}
.ws5d{word-spacing:-0.120000px;}
.ws0{word-spacing:-0.102000px;}
.wsd{word-spacing:-0.054000px;}
.ws1d{word-spacing:-0.048000px;}
.wsf{word-spacing:0.000000px;}
.ws4b{word-spacing:0.120000px;}
.ws78{word-spacing:0.300000px;}
.ws23{word-spacing:0.360000px;}
.ws2b{word-spacing:0.540000px;}
.ws27{word-spacing:0.600000px;}
.ws11{word-spacing:0.691200px;}
.ws51{word-spacing:0.720000px;}
.ws1a{word-spacing:0.756000px;}
.ws45{word-spacing:0.840000px;}
.ws6c{word-spacing:0.900000px;}
.ws7c{word-spacing:0.960000px;}
.ws79{word-spacing:1.020000px;}
.ws12{word-spacing:1.080000px;}
.ws2f{word-spacing:1.200000px;}
.ws72{word-spacing:1.260000px;}
.ws44{word-spacing:1.320000px;}
.ws65{word-spacing:1.404000px;}
.ws7a{word-spacing:1.440000px;}
.ws53{word-spacing:1.500000px;}
.ws1{word-spacing:1.530000px;}
.ws62{word-spacing:1.560000px;}
.ws34{word-spacing:1.620000px;}
.ws50{word-spacing:2.100000px;}
.ws93{word-spacing:2.106000px;}
.ws87{word-spacing:2.214000px;}
.ws7d{word-spacing:2.220000px;}
.ws46{word-spacing:2.280000px;}
.ws6b{word-spacing:2.340000px;}
.ws3a{word-spacing:2.400000px;}
.ws4c{word-spacing:2.520000px;}
.ws40{word-spacing:2.640000px;}
.ws8e{word-spacing:2.916000px;}
.ws15{word-spacing:3.024000px;}
.ws22{word-spacing:3.240000px;}
.ws69{word-spacing:3.300000px;}
.ws13{word-spacing:3.348000px;}
.ws33{word-spacing:3.540000px;}
.ws8a{word-spacing:3.564000px;}
.ws64{word-spacing:3.660000px;}
.ws24{word-spacing:3.840000px;}
.ws54{word-spacing:3.900000px;}
.ws6f{word-spacing:4.260000px;}
.ws57{word-spacing:4.560000px;}
.ws43{word-spacing:4.620000px;}
.ws7f{word-spacing:4.740000px;}
.ws88{word-spacing:4.752000px;}
.ws5e{word-spacing:4.800000px;}
.ws89{word-spacing:4.806000px;}
.ws41{word-spacing:4.860000px;}
.ws42{word-spacing:4.920000px;}
.ws31{word-spacing:5.100000px;}
.ws73{word-spacing:5.220000px;}
.ws38{word-spacing:5.340000px;}
.ws8b{word-spacing:5.454000px;}
.ws32{word-spacing:5.520000px;}
.ws68{word-spacing:5.580000px;}
.ws60{word-spacing:5.700000px;}
.ws5a{word-spacing:5.760000px;}
.ws4d{word-spacing:5.880000px;}
.ws59{word-spacing:6.120000px;}
.ws8d{word-spacing:6.426000px;}
.ws7e{word-spacing:6.540000px;}
.ws6d{word-spacing:6.840000px;}
.ws80{word-spacing:7.200000px;}
.ws48{word-spacing:7.260000px;}
.ws16{word-spacing:7.398000px;}
.ws58{word-spacing:7.560000px;}
.ws75{word-spacing:7.620000px;}
.ws19{word-spacing:7.992000px;}
.ws37{word-spacing:8.760000px;}
.ws76{word-spacing:8.820000px;}
.ws3f{word-spacing:8.940000px;}
.ws30{word-spacing:10.080000px;}
.ws36{word-spacing:14.940000px;}
.ws81{word-spacing:29.220000px;}
.ws2{word-spacing:33.651135px;}
._d{margin-left:-11.028600px;}
._0{margin-left:-9.067800px;}
._b{margin-left:-7.041600px;}
._c{margin-left:-5.729400px;}
._4{margin-left:-4.365600px;}
._6{margin-left:-3.321600px;}
._1{margin-left:-1.499400px;}
._3{width:1.642200px;}
._2{width:3.304800px;}
._9{width:4.530600px;}
._7{width:5.859000px;}
._8{width:7.101000px;}
._a{width:8.616000px;}
._10{width:9.822000px;}
._e{width:11.574000px;}
._f{width:12.738000px;}
._11{width:13.775400px;}
._19{width:14.882400px;}
._15{width:16.211400px;}
._16{width:17.431800px;}
._18{width:18.573000px;}
._12{width:20.142000px;}
._13{width:29.045400px;}
._14{width:30.381600px;}
._5{width:36.369600px;}
._17{width:43.072800px;}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.040050px;}
.y10f{bottom:112.790850px;}
.y9b{bottom:113.078700px;}
.ya4{bottom:113.078850px;}
.ye{bottom:117.205050px;}
.y2b{bottom:117.212550px;}
.yaa{bottom:120.496350px;}
.yd{bottom:131.601450px;}
.y10e{bottom:133.796850px;}
.y12e{bottom:133.892850px;}
.y139{bottom:134.012850px;}
.y77{bottom:134.078700px;}
.y69{bottom:134.078850px;}
.y2a{bottom:138.212550px;}
.ya9{bottom:140.300850px;}
.yc{bottom:145.997850px;}
.y10d{bottom:154.802850px;}
.ydf{bottom:154.886700px;}
.y12d{bottom:154.898850px;}
.y138{bottom:155.018850px;}
.yb8{bottom:155.042850px;}
.y76{bottom:155.078700px;}
.y68{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.yb{bottom:160.397850px;}
.y10c{bottom:175.808850px;}
.yde{bottom:175.892700px;}
.y12c{bottom:175.904850px;}
.y137{bottom:176.024850px;}
.yb7{bottom:176.048850px;}
.y75{bottom:176.078700px;}
.y67{bottom:176.078850px;}
.y28{bottom:180.212550px;}
.ya8{bottom:189.513600px;}
.y10b{bottom:196.814850px;}
.ydd{bottom:196.898700px;}
.y12b{bottom:196.910850px;}
.y136{bottom:197.030850px;}
.yb6{bottom:197.054850px;}
.y74{bottom:197.078700px;}
.y66{bottom:197.078850px;}
.y27{bottom:201.212550px;}
.y37{bottom:203.447400px;}
.y10a{bottom:217.820850px;}
.ydc{bottom:217.904700px;}
.y12a{bottom:217.916850px;}
.y135{bottom:218.036850px;}
.yb5{bottom:218.060850px;}
.y73{bottom:218.078700px;}
.y65{bottom:218.078850px;}
.y36{bottom:221.442900px;}
.ya7{bottom:221.811000px;}
.y26{bottom:235.552350px;}
.y109{bottom:238.826850px;}
.ydb{bottom:238.910700px;}
.y129{bottom:238.922850px;}
.y134{bottom:239.042850px;}
.yb4{bottom:239.066850px;}
.y72{bottom:239.078700px;}
.y64{bottom:239.078850px;}
.y35{bottom:239.438400px;}
.y34{bottom:257.433900px;}
.y108{bottom:259.832850px;}
.yda{bottom:259.916700px;}
.y128{bottom:259.928850px;}
.y133{bottom:260.048850px;}
.yb3{bottom:260.072850px;}
.y71{bottom:260.078700px;}
.y63{bottom:260.078850px;}
.y33{bottom:275.429400px;}
.y107{bottom:280.838850px;}
.yd9{bottom:280.922700px;}
.y127{bottom:280.934850px;}
.y132{bottom:281.054850px;}
.y70{bottom:281.078700px;}
.y62{bottom:281.078850px;}
.y32{bottom:293.424900px;}
.y106{bottom:301.844850px;}
.yd8{bottom:301.928700px;}
.y126{bottom:301.940850px;}
.y131{bottom:302.060850px;}
.y6f{bottom:302.078700px;}
.y61{bottom:302.078850px;}
.yb2{bottom:307.529400px;}
.y31{bottom:311.420400px;}
.y25{bottom:311.818950px;}
.y105{bottom:322.850850px;}
.yd7{bottom:322.934700px;}
.y125{bottom:322.946850px;}
.y130{bottom:323.066850px;}
.y6e{bottom:323.078700px;}
.y60{bottom:323.078850px;}
.y30{bottom:329.415900px;}
.y24{bottom:331.623450px;}
.y104{bottom:343.856850px;}
.yd6{bottom:343.940700px;}
.y124{bottom:343.952850px;}
.y12f{bottom:344.072850px;}
.y6d{bottom:344.078700px;}
.y5f{bottom:344.078850px;}
.y23{bottom:351.427950px;}
.y2f{bottom:364.421400px;}
.y103{bottom:364.862850px;}
.yd5{bottom:364.946700px;}
.y123{bottom:364.958850px;}
.y6c{bottom:365.078700px;}
.y5e{bottom:365.078850px;}
.yb1{bottom:370.529400px;}
.y2e{bottom:382.421400px;}
.y102{bottom:385.868850px;}
.yd4{bottom:385.952700px;}
.y122{bottom:385.964850px;}
.y6b{bottom:386.078700px;}
.y5d{bottom:386.078850px;}
.y22{bottom:392.411250px;}
.y2d{bottom:400.421400px;}
.y101{bottom:406.874850px;}
.yd3{bottom:406.958700px;}
.y121{bottom:406.970850px;}
.y6a{bottom:407.078700px;}
.y5c{bottom:407.078850px;}
.y21{bottom:412.215750px;}
.y2c{bottom:418.421400px;}
.y100{bottom:427.880850px;}
.yd2{bottom:427.964700px;}
.y120{bottom:427.976850px;}
.y9a{bottom:428.078700px;}
.y5b{bottom:428.078850px;}
.y20{bottom:432.020250px;}
.yb0{bottom:433.529400px;}
.ya3{bottom:441.513600px;}
.yff{bottom:448.886850px;}
.yd1{bottom:448.970700px;}
.y11f{bottom:448.982850px;}
.y99{bottom:449.078700px;}
.y5a{bottom:449.078850px;}
.y1f{bottom:451.824750px;}
.yfe{bottom:469.892850px;}
.yd0{bottom:469.976700px;}
.y11e{bottom:469.988850px;}
.y98{bottom:470.078700px;}
.y59{bottom:470.078850px;}
.y79{bottom:470.790150px;}
.y1e{bottom:471.629250px;}
.ya2{bottom:473.811150px;}
.yfd{bottom:490.898850px;}
.ycf{bottom:490.982700px;}
.y11d{bottom:490.994850px;}
.y97{bottom:491.078700px;}
.y58{bottom:491.078850px;}
.y1d{bottom:491.433750px;}
.yaf{bottom:496.937100px;}
.y1c{bottom:511.238250px;}
.yfc{bottom:511.904850px;}
.yce{bottom:511.988700px;}
.y11c{bottom:512.000850px;}
.y96{bottom:512.078700px;}
.y57{bottom:512.078850px;}
.yae{bottom:526.441050px;}
.y1b{bottom:531.042750px;}
.yfb{bottom:532.910850px;}
.ycd{bottom:532.994700px;}
.y11b{bottom:533.006850px;}
.y95{bottom:533.078700px;}
.y56{bottom:533.078850px;}
.y1a{bottom:550.847250px;}
.yfa{bottom:553.916850px;}
.ycc{bottom:554.000700px;}
.y11a{bottom:554.012850px;}
.y94{bottom:554.078700px;}
.y55{bottom:554.078850px;}
.ya6{bottom:568.441050px;}
.y19{bottom:570.651750px;}
.yf9{bottom:574.922850px;}
.ycb{bottom:575.006700px;}
.y119{bottom:575.018850px;}
.y93{bottom:575.078700px;}
.y54{bottom:575.078850px;}
.yac{bottom:589.441050px;}
.y18{bottom:590.456250px;}
.yf8{bottom:595.928850px;}
.yca{bottom:596.012700px;}
.y118{bottom:596.024850px;}
.y92{bottom:596.078700px;}
.y53{bottom:596.078850px;}
.y17{bottom:610.260750px;}
.yf7{bottom:616.934850px;}
.yc9{bottom:617.018700px;}
.y117{bottom:617.030850px;}
.y91{bottom:617.078700px;}
.y52{bottom:617.078850px;}
.y16{bottom:630.065250px;}
.ya5{bottom:631.441050px;}
.yf6{bottom:637.940850px;}
.yc8{bottom:638.024700px;}
.y116{bottom:638.036850px;}
.y90{bottom:638.078700px;}
.y51{bottom:638.078850px;}
.y15{bottom:649.869750px;}
.yad{bottom:652.441050px;}
.yf5{bottom:658.946850px;}
.yc7{bottom:659.030700px;}
.y115{bottom:659.042850px;}
.y8f{bottom:659.078700px;}
.ya1{bottom:659.078850px;}
.y14{bottom:669.674250px;}
.y50{bottom:672.513600px;}
.yf4{bottom:679.952850px;}
.yc6{bottom:680.036700px;}
.y114{bottom:680.048850px;}
.y8e{bottom:680.078700px;}
.ya0{bottom:680.078850px;}
.y13{bottom:689.478750px;}
.yf3{bottom:700.958850px;}
.yc5{bottom:701.042700px;}
.y113{bottom:701.054850px;}
.y8d{bottom:701.078700px;}
.y9f{bottom:701.078850px;}
.y4f{bottom:704.811150px;}
.y12{bottom:709.283250px;}
.yf2{bottom:721.964850px;}
.yc4{bottom:722.048700px;}
.y112{bottom:722.060850px;}
.y8c{bottom:722.078700px;}
.y9e{bottom:722.078850px;}
.y11{bottom:729.087750px;}
.yf1{bottom:742.970850px;}
.yc3{bottom:743.054700px;}
.y111{bottom:743.066850px;}
.y8b{bottom:743.078700px;}
.y9d{bottom:743.078850px;}
.y10{bottom:760.185300px;}
.yf0{bottom:763.976850px;}
.yc2{bottom:764.060700px;}
.y110{bottom:764.072850px;}
.y8a{bottom:764.078700px;}
.y4e{bottom:764.078850px;}
.yef{bottom:784.982850px;}
.yc1{bottom:785.066700px;}
.y89{bottom:785.078700px;}
.y4d{bottom:785.078850px;}
.y78{bottom:801.739050px;}
.yee{bottom:805.988850px;}
.yc0{bottom:806.072700px;}
.y88{bottom:806.078700px;}
.y4c{bottom:806.078850px;}
.yed{bottom:826.994850px;}
.y87{bottom:827.078700px;}
.y4b{bottom:827.078850px;}
.ya{bottom:839.466750px;}
.yec{bottom:848.000850px;}
.y86{bottom:848.078700px;}
.y4a{bottom:848.078850px;}
.y9{bottom:857.466750px;}
.ybf{bottom:862.440900px;}
.yeb{bottom:869.006850px;}
.y85{bottom:869.078700px;}
.y49{bottom:869.078850px;}
.y8{bottom:875.466750px;}
.yea{bottom:890.012850px;}
.y84{bottom:890.078700px;}
.y48{bottom:890.078850px;}
.y7{bottom:893.466750px;}
.yab{bottom:904.441050px;}
.ye9{bottom:911.018850px;}
.y83{bottom:911.078700px;}
.y47{bottom:911.078850px;}
.y6{bottom:911.466750px;}
.ye8{bottom:932.024850px;}
.y82{bottom:932.078700px;}
.y46{bottom:932.078850px;}
.ybe{bottom:937.529250px;}
.y5{bottom:946.474800px;}
.ye7{bottom:953.030850px;}
.y81{bottom:953.078700px;}
.y45{bottom:953.078850px;}
.ye6{bottom:974.036850px;}
.ybd{bottom:974.072850px;}
.y80{bottom:974.078700px;}
.y44{bottom:974.078850px;}
.y4{bottom:983.288550px;}
.ye5{bottom:995.042850px;}
.ybc{bottom:995.072850px;}
.y7f{bottom:995.078700px;}
.y43{bottom:995.078850px;}
.y9c{bottom:1009.441050px;}
.ye4{bottom:1016.048850px;}
.y7e{bottom:1016.078700px;}
.y42{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.ye3{bottom:1037.054850px;}
.y7d{bottom:1037.078700px;}
.y41{bottom:1037.078850px;}
.ybb{bottom:1042.529250px;}
.y2{bottom:1049.282550px;}
.ye2{bottom:1058.060850px;}
.y7c{bottom:1058.078700px;}
.y40{bottom:1058.078850px;}
.ye1{bottom:1079.066850px;}
.yba{bottom:1079.072850px;}
.y7b{bottom:1079.078700px;}
.y3f{bottom:1079.078850px;}
.ye0{bottom:1100.072850px;}
.y3e{bottom:1100.078850px;}
.yf{bottom:1109.815500px;}
.y7a{bottom:1112.695800px;}
.y3d{bottom:1121.078850px;}
.yb9{bottom:1125.451800px;}
.y39{bottom:1159.189500px;}
.y38{bottom:1178.689500px;}
.y3c{bottom:1178.692050px;}
.h8{height:34.446094px;}
.h7{height:34.657031px;}
.h10{height:38.273438px;}
.h5{height:38.484375px;}
.h2{height:38.507812px;}
.h6{height:38.531250px;}
.h9{height:43.004883px;}
.hf{height:43.057617px;}
.he{height:43.321289px;}
.ha{height:47.343750px;}
.h12{height:48.750000px;}
.hb{height:51.073242px;}
.h13{height:51.097242px;}
.h14{height:51.457242px;}
.h15{height:51.937242px;}
.h11{height:52.078125px;}
.hd{height:56.748047px;}
.hc{height:56.812500px;}
.h4{height:62.422852px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.071650px;}
.xc{left:108.285450px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x4{left:300.189000px;}
.xb{left:317.199000px;}
.x3{left:396.050700px;}
.x9{left:645.894150px;}
.x8{left:678.786150px;}
.x1{left:807.081450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.325333pt;}
.v1{vertical-align:19.536000pt;}
.ls9{letter-spacing:-2.026667pt;}
.ls2{letter-spacing:-1.450667pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls5{letter-spacing:-1.013333pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls3{letter-spacing:-0.614400pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.533333pt;}
.ls23{letter-spacing:0.960000pt;}
.ls16{letter-spacing:1.973333pt;}
.ls1a{letter-spacing:2.069333pt;}
.ls1b{letter-spacing:2.080000pt;}
.ls10{letter-spacing:2.240000pt;}
.ls11{letter-spacing:2.293333pt;}
.ls22{letter-spacing:3.360000pt;}
.ls1e{letter-spacing:3.466667pt;}
.lsa{letter-spacing:3.520000pt;}
.lsc{letter-spacing:3.733333pt;}
.lsb{letter-spacing:4.032000pt;}
.ls19{letter-spacing:5.120000pt;}
.ls1c{letter-spacing:5.600000pt;}
.lse{letter-spacing:6.096000pt;}
.ls17{letter-spacing:6.453333pt;}
.lsf{letter-spacing:6.666667pt;}
.ls1d{letter-spacing:7.200000pt;}
.ls18{letter-spacing:8.426667pt;}
.ls20{letter-spacing:8.480000pt;}
.ls15{letter-spacing:8.693333pt;}
.ls14{letter-spacing:12.586667pt;}
.ls21{letter-spacing:14.720000pt;}
.ls13{letter-spacing:17.973333pt;}
.ls1f{letter-spacing:26.186667pt;}
.ls0{letter-spacing:38.383435pt;}
.ws5{word-spacing:-42.666667pt;}
.wsb{word-spacing:-15.936000pt;}
.ws20{word-spacing:-15.808000pt;}
.ws83{word-spacing:-14.608000pt;}
.ws2d{word-spacing:-14.490667pt;}
.ws74{word-spacing:-13.813333pt;}
.ws66{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.280000pt;}
.ws3b{word-spacing:-13.226667pt;}
.ws4f{word-spacing:-13.173333pt;}
.ws1e{word-spacing:-13.066667pt;}
.ws3c{word-spacing:-12.746667pt;}
.ws7b{word-spacing:-12.640000pt;}
.ws4e{word-spacing:-12.586667pt;}
.ws21{word-spacing:-12.533333pt;}
.ws1f{word-spacing:-12.053333pt;}
.ws2e{word-spacing:-12.000000pt;}
.ws82{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.760000pt;}
.ws28{word-spacing:-11.280000pt;}
.wsc{word-spacing:-10.992000pt;}
.ws8c{word-spacing:-10.944000pt;}
.ws9{word-spacing:-10.800000pt;}
.ws4{word-spacing:-10.308267pt;}
.wse{word-spacing:-9.770667pt;}
.ws6{word-spacing:-9.685333pt;}
.ws1c{word-spacing:-9.600000pt;}
.ws7{word-spacing:-8.793600pt;}
.ws3{word-spacing:-8.549333pt;}
.ws8f{word-spacing:-6.940032pt;}
.ws67{word-spacing:-4.960000pt;}
.ws6e{word-spacing:-4.213333pt;}
.ws52{word-spacing:-3.733333pt;}
.ws71{word-spacing:-3.573333pt;}
.ws2a{word-spacing:-3.072000pt;}
.ws49{word-spacing:-2.613333pt;}
.ws3e{word-spacing:-2.560000pt;}
.ws18{word-spacing:-2.544000pt;}
.ws63{word-spacing:-2.506667pt;}
.ws17{word-spacing:-2.496000pt;}
.ws77{word-spacing:-2.293333pt;}
.ws91{word-spacing:-2.208000pt;}
.ws55{word-spacing:-2.186667pt;}
.ws2c{word-spacing:-2.112000pt;}
.ws84{word-spacing:-1.920000pt;}
.ws25{word-spacing:-1.760000pt;}
.ws56{word-spacing:-1.653333pt;}
.ws35{word-spacing:-1.600000pt;}
.ws14{word-spacing:-1.584000pt;}
.ws5f{word-spacing:-1.546667pt;}
.ws86{word-spacing:-1.536000pt;}
.ws70{word-spacing:-1.493333pt;}
.ws47{word-spacing:-1.440000pt;}
.ws3d{word-spacing:-1.173333pt;}
.ws29{word-spacing:-1.066667pt;}
.ws5b{word-spacing:-1.013333pt;}
.ws85{word-spacing:-0.960000pt;}
.ws26{word-spacing:-0.853333pt;}
.ws90{word-spacing:-0.816000pt;}
.ws39{word-spacing:-0.800000pt;}
.ws92{word-spacing:-0.672000pt;}
.ws6a{word-spacing:-0.533333pt;}
.ws1b{word-spacing:-0.384000pt;}
.ws61{word-spacing:-0.320000pt;}
.ws4a{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.192000pt;}
.ws5c{word-spacing:-0.160000pt;}
.ws5d{word-spacing:-0.106667pt;}
.ws0{word-spacing:-0.090667pt;}
.wsd{word-spacing:-0.048000pt;}
.ws1d{word-spacing:-0.042667pt;}
.wsf{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.106667pt;}
.ws78{word-spacing:0.266667pt;}
.ws23{word-spacing:0.320000pt;}
.ws2b{word-spacing:0.480000pt;}
.ws27{word-spacing:0.533333pt;}
.ws11{word-spacing:0.614400pt;}
.ws51{word-spacing:0.640000pt;}
.ws1a{word-spacing:0.672000pt;}
.ws45{word-spacing:0.746667pt;}
.ws6c{word-spacing:0.800000pt;}
.ws7c{word-spacing:0.853333pt;}
.ws79{word-spacing:0.906667pt;}
.ws12{word-spacing:0.960000pt;}
.ws2f{word-spacing:1.066667pt;}
.ws72{word-spacing:1.120000pt;}
.ws44{word-spacing:1.173333pt;}
.ws65{word-spacing:1.248000pt;}
.ws7a{word-spacing:1.280000pt;}
.ws53{word-spacing:1.333333pt;}
.ws1{word-spacing:1.360000pt;}
.ws62{word-spacing:1.386667pt;}
.ws34{word-spacing:1.440000pt;}
.ws50{word-spacing:1.866667pt;}
.ws93{word-spacing:1.872000pt;}
.ws87{word-spacing:1.968000pt;}
.ws7d{word-spacing:1.973333pt;}
.ws46{word-spacing:2.026667pt;}
.ws6b{word-spacing:2.080000pt;}
.ws3a{word-spacing:2.133333pt;}
.ws4c{word-spacing:2.240000pt;}
.ws40{word-spacing:2.346667pt;}
.ws8e{word-spacing:2.592000pt;}
.ws15{word-spacing:2.688000pt;}
.ws22{word-spacing:2.880000pt;}
.ws69{word-spacing:2.933333pt;}
.ws13{word-spacing:2.976000pt;}
.ws33{word-spacing:3.146667pt;}
.ws8a{word-spacing:3.168000pt;}
.ws64{word-spacing:3.253333pt;}
.ws24{word-spacing:3.413333pt;}
.ws54{word-spacing:3.466667pt;}
.ws6f{word-spacing:3.786667pt;}
.ws57{word-spacing:4.053333pt;}
.ws43{word-spacing:4.106667pt;}
.ws7f{word-spacing:4.213333pt;}
.ws88{word-spacing:4.224000pt;}
.ws5e{word-spacing:4.266667pt;}
.ws89{word-spacing:4.272000pt;}
.ws41{word-spacing:4.320000pt;}
.ws42{word-spacing:4.373333pt;}
.ws31{word-spacing:4.533333pt;}
.ws73{word-spacing:4.640000pt;}
.ws38{word-spacing:4.746667pt;}
.ws8b{word-spacing:4.848000pt;}
.ws32{word-spacing:4.906667pt;}
.ws68{word-spacing:4.960000pt;}
.ws60{word-spacing:5.066667pt;}
.ws5a{word-spacing:5.120000pt;}
.ws4d{word-spacing:5.226667pt;}
.ws59{word-spacing:5.440000pt;}
.ws8d{word-spacing:5.712000pt;}
.ws7e{word-spacing:5.813333pt;}
.ws6d{word-spacing:6.080000pt;}
.ws80{word-spacing:6.400000pt;}
.ws48{word-spacing:6.453333pt;}
.ws16{word-spacing:6.576000pt;}
.ws58{word-spacing:6.720000pt;}
.ws75{word-spacing:6.773333pt;}
.ws19{word-spacing:7.104000pt;}
.ws37{word-spacing:7.786667pt;}
.ws76{word-spacing:7.840000pt;}
.ws3f{word-spacing:7.946667pt;}
.ws30{word-spacing:8.960000pt;}
.ws36{word-spacing:13.280000pt;}
.ws81{word-spacing:25.973333pt;}
.ws2{word-spacing:29.912120pt;}
._d{margin-left:-9.803200pt;}
._0{margin-left:-8.060267pt;}
._b{margin-left:-6.259200pt;}
._c{margin-left:-5.092800pt;}
._4{margin-left:-3.880533pt;}
._6{margin-left:-2.952533pt;}
._1{margin-left:-1.332800pt;}
._3{width:1.459733pt;}
._2{width:2.937600pt;}
._9{width:4.027200pt;}
._7{width:5.208000pt;}
._8{width:6.312000pt;}
._a{width:7.658667pt;}
._10{width:8.730667pt;}
._e{width:10.288000pt;}
._f{width:11.322667pt;}
._11{width:12.244800pt;}
._19{width:13.228800pt;}
._15{width:14.410133pt;}
._16{width:15.494933pt;}
._18{width:16.509333pt;}
._12{width:17.904000pt;}
._13{width:25.818133pt;}
._14{width:27.005867pt;}
._5{width:32.328533pt;}
._17{width:38.286933pt;}
.fs9{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.702267pt;}
.y10f{bottom:100.258533pt;}
.y9b{bottom:100.514400pt;}
.ya4{bottom:100.514533pt;}
.ye{bottom:104.182267pt;}
.y2b{bottom:104.188933pt;}
.yaa{bottom:107.107867pt;}
.yd{bottom:116.979067pt;}
.y10e{bottom:118.930533pt;}
.y12e{bottom:119.015867pt;}
.y139{bottom:119.122533pt;}
.y77{bottom:119.181067pt;}
.y69{bottom:119.181200pt;}
.y2a{bottom:122.855600pt;}
.ya9{bottom:124.711867pt;}
.yc{bottom:129.775867pt;}
.y10d{bottom:137.602533pt;}
.ydf{bottom:137.677067pt;}
.y12d{bottom:137.687867pt;}
.y138{bottom:137.794533pt;}
.yb8{bottom:137.815867pt;}
.y76{bottom:137.847733pt;}
.y68{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.yb{bottom:142.575867pt;}
.y10c{bottom:156.274533pt;}
.yde{bottom:156.349067pt;}
.y12c{bottom:156.359867pt;}
.y137{bottom:156.466533pt;}
.yb7{bottom:156.487867pt;}
.y75{bottom:156.514400pt;}
.y67{bottom:156.514533pt;}
.y28{bottom:160.188933pt;}
.ya8{bottom:168.456533pt;}
.y10b{bottom:174.946533pt;}
.ydd{bottom:175.021067pt;}
.y12b{bottom:175.031867pt;}
.y136{bottom:175.138533pt;}
.yb6{bottom:175.159867pt;}
.y74{bottom:175.181067pt;}
.y66{bottom:175.181200pt;}
.y27{bottom:178.855600pt;}
.y37{bottom:180.842133pt;}
.y10a{bottom:193.618533pt;}
.ydc{bottom:193.693067pt;}
.y12a{bottom:193.703867pt;}
.y135{bottom:193.810533pt;}
.yb5{bottom:193.831867pt;}
.y73{bottom:193.847733pt;}
.y65{bottom:193.847867pt;}
.y36{bottom:196.838133pt;}
.ya7{bottom:197.165333pt;}
.y26{bottom:209.379867pt;}
.y109{bottom:212.290533pt;}
.ydb{bottom:212.365067pt;}
.y129{bottom:212.375867pt;}
.y134{bottom:212.482533pt;}
.yb4{bottom:212.503867pt;}
.y72{bottom:212.514400pt;}
.y64{bottom:212.514533pt;}
.y35{bottom:212.834133pt;}
.y34{bottom:228.830133pt;}
.y108{bottom:230.962533pt;}
.yda{bottom:231.037067pt;}
.y128{bottom:231.047867pt;}
.y133{bottom:231.154533pt;}
.yb3{bottom:231.175867pt;}
.y71{bottom:231.181067pt;}
.y63{bottom:231.181200pt;}
.y33{bottom:244.826133pt;}
.y107{bottom:249.634533pt;}
.yd9{bottom:249.709067pt;}
.y127{bottom:249.719867pt;}
.y132{bottom:249.826533pt;}
.y70{bottom:249.847733pt;}
.y62{bottom:249.847867pt;}
.y32{bottom:260.822133pt;}
.y106{bottom:268.306533pt;}
.yd8{bottom:268.381067pt;}
.y126{bottom:268.391867pt;}
.y131{bottom:268.498533pt;}
.y6f{bottom:268.514400pt;}
.y61{bottom:268.514533pt;}
.yb2{bottom:273.359467pt;}
.y31{bottom:276.818133pt;}
.y25{bottom:277.172400pt;}
.y105{bottom:286.978533pt;}
.yd7{bottom:287.053067pt;}
.y125{bottom:287.063867pt;}
.y130{bottom:287.170533pt;}
.y6e{bottom:287.181067pt;}
.y60{bottom:287.181200pt;}
.y30{bottom:292.814133pt;}
.y24{bottom:294.776400pt;}
.y104{bottom:305.650533pt;}
.yd6{bottom:305.725067pt;}
.y124{bottom:305.735867pt;}
.y12f{bottom:305.842533pt;}
.y6d{bottom:305.847733pt;}
.y5f{bottom:305.847867pt;}
.y23{bottom:312.380400pt;}
.y2f{bottom:323.930133pt;}
.y103{bottom:324.322533pt;}
.yd5{bottom:324.397067pt;}
.y123{bottom:324.407867pt;}
.y6c{bottom:324.514400pt;}
.y5e{bottom:324.514533pt;}
.yb1{bottom:329.359467pt;}
.y2e{bottom:339.930133pt;}
.y102{bottom:342.994533pt;}
.yd4{bottom:343.069067pt;}
.y122{bottom:343.079867pt;}
.y6b{bottom:343.181067pt;}
.y5d{bottom:343.181200pt;}
.y22{bottom:348.810000pt;}
.y2d{bottom:355.930133pt;}
.y101{bottom:361.666533pt;}
.yd3{bottom:361.741067pt;}
.y121{bottom:361.751867pt;}
.y6a{bottom:361.847733pt;}
.y5c{bottom:361.847867pt;}
.y21{bottom:366.414000pt;}
.y2c{bottom:371.930133pt;}
.y100{bottom:380.338533pt;}
.yd2{bottom:380.413067pt;}
.y120{bottom:380.423867pt;}
.y9a{bottom:380.514400pt;}
.y5b{bottom:380.514533pt;}
.y20{bottom:384.018000pt;}
.yb0{bottom:385.359467pt;}
.ya3{bottom:392.456533pt;}
.yff{bottom:399.010533pt;}
.yd1{bottom:399.085067pt;}
.y11f{bottom:399.095867pt;}
.y99{bottom:399.181067pt;}
.y5a{bottom:399.181200pt;}
.y1f{bottom:401.622000pt;}
.yfe{bottom:417.682533pt;}
.yd0{bottom:417.757067pt;}
.y11e{bottom:417.767867pt;}
.y98{bottom:417.847733pt;}
.y59{bottom:417.847867pt;}
.y79{bottom:418.480133pt;}
.y1e{bottom:419.226000pt;}
.ya2{bottom:421.165467pt;}
.yfd{bottom:436.354533pt;}
.ycf{bottom:436.429067pt;}
.y11d{bottom:436.439867pt;}
.y97{bottom:436.514400pt;}
.y58{bottom:436.514533pt;}
.y1d{bottom:436.830000pt;}
.yaf{bottom:441.721867pt;}
.y1c{bottom:454.434000pt;}
.yfc{bottom:455.026533pt;}
.yce{bottom:455.101067pt;}
.y11c{bottom:455.111867pt;}
.y96{bottom:455.181067pt;}
.y57{bottom:455.181200pt;}
.yae{bottom:467.947600pt;}
.y1b{bottom:472.038000pt;}
.yfb{bottom:473.698533pt;}
.ycd{bottom:473.773067pt;}
.y11b{bottom:473.783867pt;}
.y95{bottom:473.847733pt;}
.y56{bottom:473.847867pt;}
.y1a{bottom:489.642000pt;}
.yfa{bottom:492.370533pt;}
.ycc{bottom:492.445067pt;}
.y11a{bottom:492.455867pt;}
.y94{bottom:492.514400pt;}
.y55{bottom:492.514533pt;}
.ya6{bottom:505.280933pt;}
.y19{bottom:507.246000pt;}
.yf9{bottom:511.042533pt;}
.ycb{bottom:511.117067pt;}
.y119{bottom:511.127867pt;}
.y93{bottom:511.181067pt;}
.y54{bottom:511.181200pt;}
.yac{bottom:523.947600pt;}
.y18{bottom:524.850000pt;}
.yf8{bottom:529.714533pt;}
.yca{bottom:529.789067pt;}
.y118{bottom:529.799867pt;}
.y92{bottom:529.847733pt;}
.y53{bottom:529.847867pt;}
.y17{bottom:542.454000pt;}
.yf7{bottom:548.386533pt;}
.yc9{bottom:548.461067pt;}
.y117{bottom:548.471867pt;}
.y91{bottom:548.514400pt;}
.y52{bottom:548.514533pt;}
.y16{bottom:560.058000pt;}
.ya5{bottom:561.280933pt;}
.yf6{bottom:567.058533pt;}
.yc8{bottom:567.133067pt;}
.y116{bottom:567.143867pt;}
.y90{bottom:567.181067pt;}
.y51{bottom:567.181200pt;}
.y15{bottom:577.662000pt;}
.yad{bottom:579.947600pt;}
.yf5{bottom:585.730533pt;}
.yc7{bottom:585.805067pt;}
.y115{bottom:585.815867pt;}
.y8f{bottom:585.847733pt;}
.ya1{bottom:585.847867pt;}
.y14{bottom:595.266000pt;}
.y50{bottom:597.789867pt;}
.yf4{bottom:604.402533pt;}
.yc6{bottom:604.477067pt;}
.y114{bottom:604.487867pt;}
.y8e{bottom:604.514400pt;}
.ya0{bottom:604.514533pt;}
.y13{bottom:612.870000pt;}
.yf3{bottom:623.074533pt;}
.yc5{bottom:623.149067pt;}
.y113{bottom:623.159867pt;}
.y8d{bottom:623.181067pt;}
.y9f{bottom:623.181200pt;}
.y4f{bottom:626.498800pt;}
.y12{bottom:630.474000pt;}
.yf2{bottom:641.746533pt;}
.yc4{bottom:641.821067pt;}
.y112{bottom:641.831867pt;}
.y8c{bottom:641.847733pt;}
.y9e{bottom:641.847867pt;}
.y11{bottom:648.078000pt;}
.yf1{bottom:660.418533pt;}
.yc3{bottom:660.493067pt;}
.y111{bottom:660.503867pt;}
.y8b{bottom:660.514400pt;}
.y9d{bottom:660.514533pt;}
.y10{bottom:675.720267pt;}
.yf0{bottom:679.090533pt;}
.yc2{bottom:679.165067pt;}
.y110{bottom:679.175867pt;}
.y8a{bottom:679.181067pt;}
.y4e{bottom:679.181200pt;}
.yef{bottom:697.762533pt;}
.yc1{bottom:697.837067pt;}
.y89{bottom:697.847733pt;}
.y4d{bottom:697.847867pt;}
.y78{bottom:712.656933pt;}
.yee{bottom:716.434533pt;}
.yc0{bottom:716.509067pt;}
.y88{bottom:716.514400pt;}
.y4c{bottom:716.514533pt;}
.yed{bottom:735.106533pt;}
.y87{bottom:735.181067pt;}
.y4b{bottom:735.181200pt;}
.ya{bottom:746.192667pt;}
.yec{bottom:753.778533pt;}
.y86{bottom:753.847733pt;}
.y4a{bottom:753.847867pt;}
.y9{bottom:762.192667pt;}
.ybf{bottom:766.614133pt;}
.yeb{bottom:772.450533pt;}
.y85{bottom:772.514400pt;}
.y49{bottom:772.514533pt;}
.y8{bottom:778.192667pt;}
.yea{bottom:791.122533pt;}
.y84{bottom:791.181067pt;}
.y48{bottom:791.181200pt;}
.y7{bottom:794.192667pt;}
.yab{bottom:803.947600pt;}
.ye9{bottom:809.794533pt;}
.y83{bottom:809.847733pt;}
.y47{bottom:809.847867pt;}
.y6{bottom:810.192667pt;}
.ye8{bottom:828.466533pt;}
.y82{bottom:828.514400pt;}
.y46{bottom:828.514533pt;}
.ybe{bottom:833.359333pt;}
.y5{bottom:841.310933pt;}
.ye7{bottom:847.138533pt;}
.y81{bottom:847.181067pt;}
.y45{bottom:847.181200pt;}
.ye6{bottom:865.810533pt;}
.ybd{bottom:865.842533pt;}
.y80{bottom:865.847733pt;}
.y44{bottom:865.847867pt;}
.y4{bottom:874.034267pt;}
.ye5{bottom:884.482533pt;}
.ybc{bottom:884.509200pt;}
.y7f{bottom:884.514400pt;}
.y43{bottom:884.514533pt;}
.y9c{bottom:897.280933pt;}
.ye4{bottom:903.154533pt;}
.y7e{bottom:903.181067pt;}
.y42{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.ye3{bottom:921.826533pt;}
.y7d{bottom:921.847733pt;}
.y41{bottom:921.847867pt;}
.ybb{bottom:926.692667pt;}
.y2{bottom:932.695600pt;}
.ye2{bottom:940.498533pt;}
.y7c{bottom:940.514400pt;}
.y40{bottom:940.514533pt;}
.ye1{bottom:959.170533pt;}
.yba{bottom:959.175867pt;}
.y7b{bottom:959.181067pt;}
.y3f{bottom:959.181200pt;}
.ye0{bottom:977.842533pt;}
.y3e{bottom:977.847867pt;}
.yf{bottom:986.502667pt;}
.y7a{bottom:989.062933pt;}
.y3d{bottom:996.514533pt;}
.yb9{bottom:1000.401600pt;}
.y39{bottom:1030.390667pt;}
.y38{bottom:1047.724000pt;}
.y3c{bottom:1047.726267pt;}
.h8{height:30.618750pt;}
.h7{height:30.806250pt;}
.h10{height:34.020833pt;}
.h5{height:34.208333pt;}
.h2{height:34.229167pt;}
.h6{height:34.250000pt;}
.h9{height:38.226562pt;}
.hf{height:38.273438pt;}
.he{height:38.507812pt;}
.ha{height:42.083333pt;}
.h12{height:43.333333pt;}
.hb{height:45.398438pt;}
.h13{height:45.419771pt;}
.h14{height:45.739771pt;}
.h15{height:46.166437pt;}
.h11{height:46.291667pt;}
.hd{height:50.442708pt;}
.hc{height:50.500000pt;}
.h4{height:55.486979pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.174800pt;}
.xc{left:96.253733pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x4{left:266.834667pt;}
.xb{left:281.954667pt;}
.x3{left:352.045067pt;}
.x9{left:574.128133pt;}
.x8{left:603.365467pt;}
.x1{left:717.405733pt;}
}




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