
    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_f0c026422d6779c8e12b2300.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_7bd9853ed380a5b63747cf26.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.059000;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_8d82bcb493137c12c2c6c685.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.059000;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_f3684df6dbe3dee702c75e22.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073000;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_43dbcf4b1aecf84d7ef1cc30.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.058000;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_83b87b4fb7e3d1a2f76d86ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.082000;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_8d82bcb493137c12c2c6c685.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.059000;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.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls16{letter-spacing:-3.840000px;}
.lsb{letter-spacing:-1.968000px;}
.ls18{letter-spacing:-1.776000px;}
.lsf{letter-spacing:-1.632000px;}
.lse{letter-spacing:-1.584000px;}
.ls4{letter-spacing:-1.344000px;}
.ls1c{letter-spacing:-0.384000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.174600px;}
.lsa{letter-spacing:0.175200px;}
.ls9{letter-spacing:0.299400px;}
.ls1{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.352500px;}
.ls11{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.600000px;}
.ls19{letter-spacing:0.624000px;}
.ls17{letter-spacing:0.672000px;}
.ls21{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.768000px;}
.ls15{letter-spacing:0.864000px;}
.ls14{letter-spacing:0.912000px;}
.ls1d{letter-spacing:1.008000px;}
.ls12{letter-spacing:1.056000px;}
.ls1b{letter-spacing:1.104000px;}
.ls1f{letter-spacing:1.152000px;}
.ls1a{letter-spacing:1.200000px;}
.ls10{letter-spacing:1.248000px;}
.ls22{letter-spacing:1.296000px;}
.ls13{letter-spacing:1.344000px;}
.ls7{letter-spacing:1.881000px;}
.lsd{letter-spacing:3.000000px;}
.ls5{letter-spacing:4.800000px;}
.lsc{letter-spacing:5.136000px;}
.ls20{letter-spacing:5.712000px;}
.ls6{letter-spacing:13.500000px;}
.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;}
}
.ws97{word-spacing:-16.680000px;}
.wscf{word-spacing:-16.656000px;}
.ws4b{word-spacing:-16.426500px;}
.ws2{word-spacing:-13.980000px;}
.wsd1{word-spacing:-12.240000px;}
.wsc8{word-spacing:-12.192000px;}
.wsc9{word-spacing:-12.000000px;}
.wscc{word-spacing:-11.952000px;}
.wsce{word-spacing:-11.808000px;}
.wscd{word-spacing:-11.712000px;}
.wsd0{word-spacing:-11.664000px;}
.wsca{word-spacing:-11.616000px;}
.wscb{word-spacing:-10.560000px;}
.wsc7{word-spacing:-9.312000px;}
.ws4a{word-spacing:-8.976000px;}
.wsaa{word-spacing:-4.680000px;}
.wsbd{word-spacing:-4.200000px;}
.ws7d{word-spacing:-4.020000px;}
.ws49{word-spacing:-3.960000px;}
.ws6d{word-spacing:-3.900000px;}
.wsa4{word-spacing:-3.840000px;}
.ws2c{word-spacing:-3.780000px;}
.ws66{word-spacing:-3.660000px;}
.ws65{word-spacing:-3.480000px;}
.wsab{word-spacing:-3.180000px;}
.ws5e{word-spacing:-3.120000px;}
.ws6c{word-spacing:-3.000000px;}
.ws36{word-spacing:-2.940000px;}
.wsbc{word-spacing:-2.760000px;}
.ws45{word-spacing:-2.700000px;}
.ws4f{word-spacing:-2.640000px;}
.ws6e{word-spacing:-2.460000px;}
.ws2d{word-spacing:-2.400000px;}
.ws1a{word-spacing:-2.340000px;}
.ws73{word-spacing:-2.280000px;}
.ws8e{word-spacing:-2.220000px;}
.ws47{word-spacing:-2.100000px;}
.ws76{word-spacing:-2.040000px;}
.ws85{word-spacing:-1.980000px;}
.wsd3{word-spacing:-1.968000px;}
.ws72{word-spacing:-1.920000px;}
.wsd4{word-spacing:-1.872000px;}
.ws8a{word-spacing:-1.860000px;}
.wsda{word-spacing:-1.824000px;}
.ws4{word-spacing:-1.800000px;}
.wsdf{word-spacing:-1.776000px;}
.wsba{word-spacing:-1.740000px;}
.wsdb{word-spacing:-1.728000px;}
.ws14{word-spacing:-1.680000px;}
.wse0{word-spacing:-1.632000px;}
.wsae{word-spacing:-1.560000px;}
.wsd5{word-spacing:-1.536000px;}
.ws30{word-spacing:-1.500000px;}
.wsd6{word-spacing:-1.488000px;}
.ws88{word-spacing:-1.440000px;}
.ws3{word-spacing:-1.380000px;}
.ws6b{word-spacing:-1.320000px;}
.wsdd{word-spacing:-1.296000px;}
.wsd9{word-spacing:-1.248000px;}
.ws59{word-spacing:-1.200000px;}
.wsdc{word-spacing:-1.152000px;}
.ws50{word-spacing:-1.140000px;}
.wsd2{word-spacing:-1.104000px;}
.ws55{word-spacing:-1.080000px;}
.ws3a{word-spacing:-1.020000px;}
.ws86{word-spacing:-0.960000px;}
.ws48{word-spacing:-0.900000px;}
.ws9a{word-spacing:-0.780000px;}
.ws9b{word-spacing:-0.720000px;}
.wsde{word-spacing:-0.624000px;}
.ws62{word-spacing:-0.600000px;}
.wsb7{word-spacing:-0.480000px;}
.ws9{word-spacing:-0.300000px;}
.ws6f{word-spacing:-0.240000px;}
.ws13{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws22{word-spacing:0.060000px;}
.ws32{word-spacing:0.120000px;}
.wsc5{word-spacing:0.180000px;}
.ws3c{word-spacing:0.240000px;}
.ws7a{word-spacing:0.300000px;}
.ws64{word-spacing:0.420000px;}
.ws5{word-spacing:0.594000px;}
.ws1f{word-spacing:0.600000px;}
.ws18{word-spacing:0.660000px;}
.ws63{word-spacing:0.720000px;}
.ws17{word-spacing:0.780000px;}
.wsb3{word-spacing:0.840000px;}
.ws35{word-spacing:0.960000px;}
.ws87{word-spacing:1.020000px;}
.ws37{word-spacing:1.080000px;}
.wsa0{word-spacing:1.140000px;}
.wsd8{word-spacing:1.152000px;}
.ws11{word-spacing:1.260000px;}
.ws94{word-spacing:1.320000px;}
.ws83{word-spacing:1.440000px;}
.ws9e{word-spacing:1.680000px;}
.ws79{word-spacing:1.740000px;}
.wsb1{word-spacing:1.800000px;}
.ws78{word-spacing:1.860000px;}
.wsac{word-spacing:1.920000px;}
.ws42{word-spacing:1.980000px;}
.wsad{word-spacing:2.040000px;}
.ws74{word-spacing:2.100000px;}
.ws6a{word-spacing:2.160000px;}
.wsb2{word-spacing:2.220000px;}
.ws9f{word-spacing:2.280000px;}
.wsb4{word-spacing:2.340000px;}
.ws40{word-spacing:2.400000px;}
.ws16{word-spacing:2.460000px;}
.ws27{word-spacing:2.580000px;}
.ws52{word-spacing:2.700000px;}
.ws90{word-spacing:2.820000px;}
.ws69{word-spacing:2.940000px;}
.ws28{word-spacing:3.180000px;}
.wsd7{word-spacing:3.216000px;}
.ws2f{word-spacing:3.300000px;}
.ws7c{word-spacing:3.540000px;}
.ws2e{word-spacing:3.780000px;}
.ws24{word-spacing:3.840000px;}
.wsb5{word-spacing:3.900000px;}
.ws75{word-spacing:3.960000px;}
.ws1c{word-spacing:4.020000px;}
.ws39{word-spacing:4.200000px;}
.ws3e{word-spacing:4.260000px;}
.ws29{word-spacing:4.320000px;}
.ws91{word-spacing:4.440000px;}
.ws12{word-spacing:4.560000px;}
.ws56{word-spacing:4.800000px;}
.ws70{word-spacing:4.920000px;}
.ws38{word-spacing:5.040000px;}
.wsc1{word-spacing:5.100000px;}
.wsb6{word-spacing:5.220000px;}
.ws4d{word-spacing:5.280000px;}
.wsf{word-spacing:5.340000px;}
.ws5f{word-spacing:5.400000px;}
.ws25{word-spacing:5.580000px;}
.ws15{word-spacing:5.640000px;}
.ws53{word-spacing:5.700000px;}
.ws26{word-spacing:5.820000px;}
.ws71{word-spacing:6.000000px;}
.wsc0{word-spacing:6.180000px;}
.ws8c{word-spacing:6.420000px;}
.wsc3{word-spacing:6.540000px;}
.ws99{word-spacing:6.720000px;}
.ws3d{word-spacing:6.780000px;}
.ws84{word-spacing:6.900000px;}
.wsb9{word-spacing:7.140000px;}
.ws82{word-spacing:7.200000px;}
.wsa3{word-spacing:7.440000px;}
.wsbb{word-spacing:7.680000px;}
.ws44{word-spacing:7.740000px;}
.ws5a{word-spacing:7.800000px;}
.ws57{word-spacing:7.860000px;}
.ws2b{word-spacing:8.040000px;}
.ws9d{word-spacing:8.100000px;}
.wsc2{word-spacing:8.340000px;}
.ws80{word-spacing:8.400000px;}
.ws7{word-spacing:8.520000px;}
.ws20{word-spacing:8.580000px;}
.ws77{word-spacing:8.700000px;}
.ws5b{word-spacing:9.000000px;}
.ws4e{word-spacing:9.180000px;}
.wsa2{word-spacing:9.300000px;}
.ws21{word-spacing:9.480000px;}
.ws19{word-spacing:9.540000px;}
.wsa5{word-spacing:9.600000px;}
.wsc4{word-spacing:9.720000px;}
.ws81{word-spacing:9.780000px;}
.wsa6{word-spacing:9.960000px;}
.ws33{word-spacing:10.020000px;}
.ws98{word-spacing:10.080000px;}
.ws5d{word-spacing:10.140000px;}
.ws31{word-spacing:10.260000px;}
.ws46{word-spacing:10.500000px;}
.ws2a{word-spacing:10.680000px;}
.wsc6{word-spacing:10.800000px;}
.wsa8{word-spacing:10.860000px;}
.ws51{word-spacing:10.920000px;}
.ws6{word-spacing:11.340000px;}
.ws3f{word-spacing:11.520000px;}
.ws8d{word-spacing:11.580000px;}
.ws5c{word-spacing:11.700000px;}
.wsb{word-spacing:11.760000px;}
.ws1e{word-spacing:12.180000px;}
.ws41{word-spacing:12.240000px;}
.ws54{word-spacing:12.600000px;}
.wsbe{word-spacing:12.840000px;}
.wsa{word-spacing:12.900000px;}
.ws7b{word-spacing:13.080000px;}
.ws3b{word-spacing:13.200000px;}
.ws58{word-spacing:13.380000px;}
.ws68{word-spacing:13.560000px;}
.ws92{word-spacing:13.860000px;}
.ws89{word-spacing:13.980000px;}
.ws34{word-spacing:14.160000px;}
.ws43{word-spacing:14.760000px;}
.ws9c{word-spacing:14.820000px;}
.ws67{word-spacing:14.880000px;}
.ws8{word-spacing:15.120000px;}
.ws1b{word-spacing:15.360000px;}
.wsa7{word-spacing:15.720000px;}
.ws8f{word-spacing:15.960000px;}
.wsbf{word-spacing:16.020000px;}
.ws7e{word-spacing:16.140000px;}
.ws10{word-spacing:16.260000px;}
.ws23{word-spacing:16.320000px;}
.ws7f{word-spacing:16.620000px;}
.wse{word-spacing:16.860000px;}
.ws93{word-spacing:16.980000px;}
.ws1d{word-spacing:17.460000px;}
.ws61{word-spacing:17.880000px;}
.ws60{word-spacing:17.940000px;}
.ws95{word-spacing:18.060000px;}
.wsaf{word-spacing:18.180000px;}
.ws8b{word-spacing:18.840000px;}
.wsc{word-spacing:20.160000px;}
.wsb8{word-spacing:20.460000px;}
.wsb0{word-spacing:20.820000px;}
.wsa1{word-spacing:21.960000px;}
.wsa9{word-spacing:25.740000px;}
.wsd{word-spacing:47.760000px;}
.ws1{word-spacing:115.167000px;}
.ws96{word-spacing:115.887000px;}
.ws4c{word-spacing:2706.960000px;}
._8{margin-left:-3059.454000px;}
._9{margin-left:-22.866000px;}
._a{margin-left:-12.780000px;}
._5{margin-left:-6.048000px;}
._b{margin-left:-5.044800px;}
._2{margin-left:-3.978000px;}
._7{margin-left:-2.580000px;}
._1{margin-left:-1.200000px;}
._0{width:1.401600px;}
._3{width:2.732400px;}
._4{width:4.230000px;}
._6{width:5.382000px;}
.fc1{color:rgb(219,31,38);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:34.980000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:70.500000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:99.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.yc2{bottom:88.563600px;}
.y4{bottom:97.125005px;}
.yc1{bottom:103.191600px;}
.yc0{bottom:117.819600px;}
.y4d{bottom:118.275600px;}
.ybf{bottom:132.447600px;}
.y4c{bottom:136.275600px;}
.y22{bottom:139.264499px;}
.ybe{bottom:149.199600px;}
.y4b{bottom:154.275600px;}
.ybd{bottom:163.827600px;}
.y4a{bottom:172.275600px;}
.ybc{bottom:178.455600px;}
.y49{bottom:190.275600px;}
.ybb{bottom:195.207600px;}
.y19{bottom:196.933500px;}
.yf0{bottom:199.287600px;}
.y48{bottom:208.275600px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.yba{bottom:209.835600px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.yb9{bottom:224.463600px;}
.y6e{bottom:226.275600px;}
.y47{bottom:226.280475px;}
.yef{bottom:230.787600px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yb8{bottom:241.215600px;}
.y46{bottom:244.275600px;}
.yee{bottom:246.531600px;}
.yb7{bottom:255.843600px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y6d{bottom:262.275600px;}
.yb6{bottom:270.471600px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.yed{bottom:278.019600px;}
.y45{bottom:280.275450px;}
.y6c{bottom:280.275600px;}
.yb5{bottom:285.099600px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.yec{bottom:293.763600px;}
.y44{bottom:298.275450px;}
.y6b{bottom:298.275600px;}
.yb4{bottom:299.727600px;}
.yeb{bottom:309.507600px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yb3{bottom:314.355600px;}
.y43{bottom:316.275450px;}
.y6a{bottom:316.275600px;}
.y7e{bottom:316.280475px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.yea{bottom:325.251600px;}
.yb2{bottom:328.983600px;}
.y42{bottom:334.275450px;}
.y69{bottom:334.275600px;}
.ye9{bottom:340.995600px;}
.yb1{bottom:345.735600px;}
.y10{bottom:348.133500px;}
.y41{bottom:352.275450px;}
.y68{bottom:352.275600px;}
.ye8{bottom:356.739600px;}
.yb0{bottom:360.363600px;}
.y40{bottom:370.275450px;}
.y67{bottom:370.275600px;}
.ye7{bottom:372.483600px;}
.yaf{bottom:374.991600px;}
.yf{bottom:386.785499px;}
.ye6{bottom:388.227600px;}
.y3f{bottom:388.275450px;}
.y66{bottom:388.275600px;}
.yae{bottom:389.619600px;}
.y3e{bottom:406.275450px;}
.y65{bottom:406.275600px;}
.yad{bottom:406.371600px;}
.ye{bottom:408.044999px;}
.yac{bottom:420.999600px;}
.y3d{bottom:424.275450px;}
.y64{bottom:424.275600px;}
.yab{bottom:435.627600px;}
.y3c{bottom:442.275450px;}
.y63{bottom:442.275600px;}
.ye5{bottom:448.971600px;}
.yaa{bottom:450.255600px;}
.y3b{bottom:460.275450px;}
.y62{bottom:460.275600px;}
.ya9{bottom:464.883600px;}
.y3a{bottom:478.275450px;}
.y61{bottom:478.275600px;}
.ye4{bottom:480.471600px;}
.ya8{bottom:481.635600px;}
.yd{bottom:484.864502px;}
.ye3{bottom:496.215600px;}
.ya7{bottom:496.263600px;}
.y39{bottom:496.275450px;}
.y60{bottom:496.275600px;}
.yc{bottom:502.864502px;}
.ya6{bottom:510.891600px;}
.ye2{bottom:511.959600px;}
.y38{bottom:514.275450px;}
.y5f{bottom:514.275600px;}
.yb{bottom:520.864502px;}
.ya5{bottom:525.519600px;}
.ye1{bottom:527.703600px;}
.y37{bottom:532.275450px;}
.y5e{bottom:532.275600px;}
.ya{bottom:538.864499px;}
.ya4{bottom:542.271600px;}
.ye0{bottom:543.447600px;}
.y36{bottom:550.275450px;}
.y5d{bottom:550.275600px;}
.y9{bottom:556.864499px;}
.ya3{bottom:556.899600px;}
.ydf{bottom:559.191600px;}
.y35{bottom:568.275450px;}
.y5c{bottom:568.275600px;}
.ya2{bottom:571.527600px;}
.yde{bottom:574.935600px;}
.ya1{bottom:586.155600px;}
.y34{bottom:586.275450px;}
.y5b{bottom:586.275600px;}
.ydd{bottom:590.679600px;}
.ya0{bottom:600.783600px;}
.y33{bottom:604.275450px;}
.y5a{bottom:604.275600px;}
.ydc{bottom:606.423600px;}
.y9f{bottom:617.535600px;}
.ydb{bottom:622.167600px;}
.y32{bottom:622.275450px;}
.y59{bottom:622.275600px;}
.y9e{bottom:632.163600px;}
.yda{bottom:637.911600px;}
.y31{bottom:640.275450px;}
.y58{bottom:640.275600px;}
.y8{bottom:645.510000px;}
.y9d{bottom:648.915600px;}
.yd9{bottom:653.655600px;}
.y30{bottom:658.275450px;}
.y57{bottom:658.275600px;}
.y9c{bottom:663.543600px;}
.y7{bottom:666.771000px;}
.yd8{bottom:669.399600px;}
.y2f{bottom:676.275450px;}
.y56{bottom:676.275600px;}
.y9b{bottom:678.171600px;}
.yd7{bottom:685.143600px;}
.y2e{bottom:694.275450px;}
.y55{bottom:694.275600px;}
.y9a{bottom:694.923600px;}
.y99{bottom:709.551600px;}
.y2d{bottom:712.275450px;}
.y54{bottom:712.275600px;}
.y98{bottom:724.179600px;}
.y6{bottom:726.298500px;}
.y2c{bottom:730.275450px;}
.y53{bottom:730.275600px;}
.y97{bottom:740.931600px;}
.y2b{bottom:748.275450px;}
.y52{bottom:748.275600px;}
.y3{bottom:752.599495px;}
.y96{bottom:755.559600px;}
.yd6{bottom:759.387600px;}
.y2a{bottom:766.275450px;}
.y51{bottom:766.275600px;}
.y95{bottom:770.187600px;}
.y29{bottom:784.275450px;}
.y50{bottom:784.275600px;}
.y94{bottom:786.939600px;}
.yd5{bottom:790.887600px;}
.y93{bottom:801.567600px;}
.y28{bottom:802.275450px;}
.y4f{bottom:802.275600px;}
.yd4{bottom:806.631600px;}
.y92{bottom:816.195600px;}
.y27{bottom:820.275450px;}
.y4e{bottom:820.275600px;}
.yd3{bottom:822.375600px;}
.y91{bottom:830.823600px;}
.yd2{bottom:838.119600px;}
.y7c{bottom:838.275600px;}
.y90{bottom:845.451600px;}
.yd1{bottom:853.863600px;}
.y7b{bottom:856.275600px;}
.y8f{bottom:862.203600px;}
.yd0{bottom:869.607600px;}
.y7a{bottom:874.275600px;}
.y8e{bottom:876.831600px;}
.y2{bottom:879.369000px;}
.ycf{bottom:885.351600px;}
.y79{bottom:892.275600px;}
.y8d{bottom:893.583600px;}
.yce{bottom:901.095600px;}
.y8c{bottom:908.211600px;}
.y78{bottom:910.275600px;}
.y8b{bottom:924.963600px;}
.y77{bottom:928.275600px;}
.y8a{bottom:939.591600px;}
.y76{bottom:946.275600px;}
.y89{bottom:956.343600px;}
.y75{bottom:964.275600px;}
.y1{bottom:966.726000px;}
.y88{bottom:970.971600px;}
.ycd{bottom:980.595600px;}
.y74{bottom:982.275600px;}
.y87{bottom:985.599600px;}
.ycc{bottom:995.223600px;}
.y73{bottom:1000.275600px;}
.y86{bottom:1002.351600px;}
.ycb{bottom:1009.851600px;}
.y85{bottom:1016.979600px;}
.y72{bottom:1018.275600px;}
.yca{bottom:1026.603600px;}
.y84{bottom:1031.607600px;}
.y26{bottom:1036.275600px;}
.yc9{bottom:1041.231600px;}
.y83{bottom:1046.235600px;}
.y71{bottom:1054.275600px;}
.yc8{bottom:1055.859600px;}
.y82{bottom:1062.987600px;}
.yc7{bottom:1070.487600px;}
.y25{bottom:1072.275600px;}
.y81{bottom:1077.615600px;}
.yc6{bottom:1087.239600px;}
.y70{bottom:1090.275600px;}
.y80{bottom:1092.243600px;}
.yc5{bottom:1101.867600px;}
.y7f{bottom:1106.871600px;}
.y7d{bottom:1108.275600px;}
.y6f{bottom:1108.280475px;}
.yc4{bottom:1116.495600px;}
.y24{bottom:1126.275600px;}
.yc3{bottom:1131.123600px;}
.y23{bottom:1212.071100px;}
.h7{height:32.130000px;}
.h9{height:38.832000px;}
.h11{height:39.168000px;}
.h10{height:39.408000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hd{height:48.540000px;}
.ha{height:48.960000px;}
.hf{height:49.260000px;}
.h2{height:55.080000px;}
.he{height:57.880500px;}
.h5{height:78.030000px;}
.hc{height:80.091000px;}
.h4{height:119.055004px;}
.hb{height:145.620000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:42.519600px;}
.x6{left:85.039350px;}
.x1b{left:100.189350px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:119.059350px;}
.x4{left:203.484001px;}
.x17{left:360.796800px;}
.x18{left:362.070150px;}
.x19{left:418.192650px;}
.x1a{left:419.466000px;}
.x3{left:454.959000px;}
.x8{left:459.214350px;}
.x1e{left:476.222550px;}
.xa{left:490.167150px;}
.xb{left:491.754600px;}
.x9{left:493.234350px;}
.x13{left:540.682650px;}
.x14{left:541.839150px;}
.xd{left:560.888700px;}
.xe{left:562.509900px;}
.x1f{left:578.695350px;}
.x20{left:579.763350px;}
.xf{left:613.878000px;}
.x10{left:615.108150px;}
.x15{left:737.154450px;}
.x16{left:738.310950px;}
.x11{left:743.538750px;}
.x12{left:744.769050px;}
.x1c{left:770.595750px;}
.x1d{left:771.597000px;}
.xc{left:838.886850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls16{letter-spacing:-3.413333pt;}
.lsb{letter-spacing:-1.749333pt;}
.ls18{letter-spacing:-1.578667pt;}
.lsf{letter-spacing:-1.450667pt;}
.lse{letter-spacing:-1.408000pt;}
.ls4{letter-spacing:-1.194667pt;}
.ls1c{letter-spacing:-0.341333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.155200pt;}
.lsa{letter-spacing:0.155733pt;}
.ls9{letter-spacing:0.266133pt;}
.ls1{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.313333pt;}
.ls11{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.533333pt;}
.ls19{letter-spacing:0.554667pt;}
.ls17{letter-spacing:0.597333pt;}
.ls21{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.682667pt;}
.ls15{letter-spacing:0.768000pt;}
.ls14{letter-spacing:0.810667pt;}
.ls1d{letter-spacing:0.896000pt;}
.ls12{letter-spacing:0.938667pt;}
.ls1b{letter-spacing:0.981333pt;}
.ls1f{letter-spacing:1.024000pt;}
.ls1a{letter-spacing:1.066667pt;}
.ls10{letter-spacing:1.109333pt;}
.ls22{letter-spacing:1.152000pt;}
.ls13{letter-spacing:1.194667pt;}
.ls7{letter-spacing:1.672000pt;}
.lsd{letter-spacing:2.666667pt;}
.ls5{letter-spacing:4.266667pt;}
.lsc{letter-spacing:4.565333pt;}
.ls20{letter-spacing:5.077333pt;}
.ls6{letter-spacing:12.000000pt;}
.ws97{word-spacing:-14.826667pt;}
.wscf{word-spacing:-14.805333pt;}
.ws4b{word-spacing:-14.601333pt;}
.ws2{word-spacing:-12.426667pt;}
.wsd1{word-spacing:-10.880000pt;}
.wsc8{word-spacing:-10.837333pt;}
.wsc9{word-spacing:-10.666667pt;}
.wscc{word-spacing:-10.624000pt;}
.wsce{word-spacing:-10.496000pt;}
.wscd{word-spacing:-10.410667pt;}
.wsd0{word-spacing:-10.368000pt;}
.wsca{word-spacing:-10.325333pt;}
.wscb{word-spacing:-9.386667pt;}
.wsc7{word-spacing:-8.277333pt;}
.ws4a{word-spacing:-7.978667pt;}
.wsaa{word-spacing:-4.160000pt;}
.wsbd{word-spacing:-3.733333pt;}
.ws7d{word-spacing:-3.573333pt;}
.ws49{word-spacing:-3.520000pt;}
.ws6d{word-spacing:-3.466667pt;}
.wsa4{word-spacing:-3.413333pt;}
.ws2c{word-spacing:-3.360000pt;}
.ws66{word-spacing:-3.253333pt;}
.ws65{word-spacing:-3.093333pt;}
.wsab{word-spacing:-2.826667pt;}
.ws5e{word-spacing:-2.773333pt;}
.ws6c{word-spacing:-2.666667pt;}
.ws36{word-spacing:-2.613333pt;}
.wsbc{word-spacing:-2.453333pt;}
.ws45{word-spacing:-2.400000pt;}
.ws4f{word-spacing:-2.346667pt;}
.ws6e{word-spacing:-2.186667pt;}
.ws2d{word-spacing:-2.133333pt;}
.ws1a{word-spacing:-2.080000pt;}
.ws73{word-spacing:-2.026667pt;}
.ws8e{word-spacing:-1.973333pt;}
.ws47{word-spacing:-1.866667pt;}
.ws76{word-spacing:-1.813333pt;}
.ws85{word-spacing:-1.760000pt;}
.wsd3{word-spacing:-1.749333pt;}
.ws72{word-spacing:-1.706667pt;}
.wsd4{word-spacing:-1.664000pt;}
.ws8a{word-spacing:-1.653333pt;}
.wsda{word-spacing:-1.621333pt;}
.ws4{word-spacing:-1.600000pt;}
.wsdf{word-spacing:-1.578667pt;}
.wsba{word-spacing:-1.546667pt;}
.wsdb{word-spacing:-1.536000pt;}
.ws14{word-spacing:-1.493333pt;}
.wse0{word-spacing:-1.450667pt;}
.wsae{word-spacing:-1.386667pt;}
.wsd5{word-spacing:-1.365333pt;}
.ws30{word-spacing:-1.333333pt;}
.wsd6{word-spacing:-1.322667pt;}
.ws88{word-spacing:-1.280000pt;}
.ws3{word-spacing:-1.226667pt;}
.ws6b{word-spacing:-1.173333pt;}
.wsdd{word-spacing:-1.152000pt;}
.wsd9{word-spacing:-1.109333pt;}
.ws59{word-spacing:-1.066667pt;}
.wsdc{word-spacing:-1.024000pt;}
.ws50{word-spacing:-1.013333pt;}
.wsd2{word-spacing:-0.981333pt;}
.ws55{word-spacing:-0.960000pt;}
.ws3a{word-spacing:-0.906667pt;}
.ws86{word-spacing:-0.853333pt;}
.ws48{word-spacing:-0.800000pt;}
.ws9a{word-spacing:-0.693333pt;}
.ws9b{word-spacing:-0.640000pt;}
.wsde{word-spacing:-0.554667pt;}
.ws62{word-spacing:-0.533333pt;}
.wsb7{word-spacing:-0.426667pt;}
.ws9{word-spacing:-0.266667pt;}
.ws6f{word-spacing:-0.213333pt;}
.ws13{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws22{word-spacing:0.053333pt;}
.ws32{word-spacing:0.106667pt;}
.wsc5{word-spacing:0.160000pt;}
.ws3c{word-spacing:0.213333pt;}
.ws7a{word-spacing:0.266667pt;}
.ws64{word-spacing:0.373333pt;}
.ws5{word-spacing:0.528000pt;}
.ws1f{word-spacing:0.533333pt;}
.ws18{word-spacing:0.586667pt;}
.ws63{word-spacing:0.640000pt;}
.ws17{word-spacing:0.693333pt;}
.wsb3{word-spacing:0.746667pt;}
.ws35{word-spacing:0.853333pt;}
.ws87{word-spacing:0.906667pt;}
.ws37{word-spacing:0.960000pt;}
.wsa0{word-spacing:1.013333pt;}
.wsd8{word-spacing:1.024000pt;}
.ws11{word-spacing:1.120000pt;}
.ws94{word-spacing:1.173333pt;}
.ws83{word-spacing:1.280000pt;}
.ws9e{word-spacing:1.493333pt;}
.ws79{word-spacing:1.546667pt;}
.wsb1{word-spacing:1.600000pt;}
.ws78{word-spacing:1.653333pt;}
.wsac{word-spacing:1.706667pt;}
.ws42{word-spacing:1.760000pt;}
.wsad{word-spacing:1.813333pt;}
.ws74{word-spacing:1.866667pt;}
.ws6a{word-spacing:1.920000pt;}
.wsb2{word-spacing:1.973333pt;}
.ws9f{word-spacing:2.026667pt;}
.wsb4{word-spacing:2.080000pt;}
.ws40{word-spacing:2.133333pt;}
.ws16{word-spacing:2.186667pt;}
.ws27{word-spacing:2.293333pt;}
.ws52{word-spacing:2.400000pt;}
.ws90{word-spacing:2.506667pt;}
.ws69{word-spacing:2.613333pt;}
.ws28{word-spacing:2.826667pt;}
.wsd7{word-spacing:2.858667pt;}
.ws2f{word-spacing:2.933333pt;}
.ws7c{word-spacing:3.146667pt;}
.ws2e{word-spacing:3.360000pt;}
.ws24{word-spacing:3.413333pt;}
.wsb5{word-spacing:3.466667pt;}
.ws75{word-spacing:3.520000pt;}
.ws1c{word-spacing:3.573333pt;}
.ws39{word-spacing:3.733333pt;}
.ws3e{word-spacing:3.786667pt;}
.ws29{word-spacing:3.840000pt;}
.ws91{word-spacing:3.946667pt;}
.ws12{word-spacing:4.053333pt;}
.ws56{word-spacing:4.266667pt;}
.ws70{word-spacing:4.373333pt;}
.ws38{word-spacing:4.480000pt;}
.wsc1{word-spacing:4.533333pt;}
.wsb6{word-spacing:4.640000pt;}
.ws4d{word-spacing:4.693333pt;}
.wsf{word-spacing:4.746667pt;}
.ws5f{word-spacing:4.800000pt;}
.ws25{word-spacing:4.960000pt;}
.ws15{word-spacing:5.013333pt;}
.ws53{word-spacing:5.066667pt;}
.ws26{word-spacing:5.173333pt;}
.ws71{word-spacing:5.333333pt;}
.wsc0{word-spacing:5.493333pt;}
.ws8c{word-spacing:5.706667pt;}
.wsc3{word-spacing:5.813333pt;}
.ws99{word-spacing:5.973333pt;}
.ws3d{word-spacing:6.026667pt;}
.ws84{word-spacing:6.133333pt;}
.wsb9{word-spacing:6.346667pt;}
.ws82{word-spacing:6.400000pt;}
.wsa3{word-spacing:6.613333pt;}
.wsbb{word-spacing:6.826667pt;}
.ws44{word-spacing:6.880000pt;}
.ws5a{word-spacing:6.933333pt;}
.ws57{word-spacing:6.986667pt;}
.ws2b{word-spacing:7.146667pt;}
.ws9d{word-spacing:7.200000pt;}
.wsc2{word-spacing:7.413333pt;}
.ws80{word-spacing:7.466667pt;}
.ws7{word-spacing:7.573333pt;}
.ws20{word-spacing:7.626667pt;}
.ws77{word-spacing:7.733333pt;}
.ws5b{word-spacing:8.000000pt;}
.ws4e{word-spacing:8.160000pt;}
.wsa2{word-spacing:8.266667pt;}
.ws21{word-spacing:8.426667pt;}
.ws19{word-spacing:8.480000pt;}
.wsa5{word-spacing:8.533333pt;}
.wsc4{word-spacing:8.640000pt;}
.ws81{word-spacing:8.693333pt;}
.wsa6{word-spacing:8.853333pt;}
.ws33{word-spacing:8.906667pt;}
.ws98{word-spacing:8.960000pt;}
.ws5d{word-spacing:9.013333pt;}
.ws31{word-spacing:9.120000pt;}
.ws46{word-spacing:9.333333pt;}
.ws2a{word-spacing:9.493333pt;}
.wsc6{word-spacing:9.600000pt;}
.wsa8{word-spacing:9.653333pt;}
.ws51{word-spacing:9.706667pt;}
.ws6{word-spacing:10.080000pt;}
.ws3f{word-spacing:10.240000pt;}
.ws8d{word-spacing:10.293333pt;}
.ws5c{word-spacing:10.400000pt;}
.wsb{word-spacing:10.453333pt;}
.ws1e{word-spacing:10.826667pt;}
.ws41{word-spacing:10.880000pt;}
.ws54{word-spacing:11.200000pt;}
.wsbe{word-spacing:11.413333pt;}
.wsa{word-spacing:11.466667pt;}
.ws7b{word-spacing:11.626667pt;}
.ws3b{word-spacing:11.733333pt;}
.ws58{word-spacing:11.893333pt;}
.ws68{word-spacing:12.053333pt;}
.ws92{word-spacing:12.320000pt;}
.ws89{word-spacing:12.426667pt;}
.ws34{word-spacing:12.586667pt;}
.ws43{word-spacing:13.120000pt;}
.ws9c{word-spacing:13.173333pt;}
.ws67{word-spacing:13.226667pt;}
.ws8{word-spacing:13.440000pt;}
.ws1b{word-spacing:13.653333pt;}
.wsa7{word-spacing:13.973333pt;}
.ws8f{word-spacing:14.186667pt;}
.wsbf{word-spacing:14.240000pt;}
.ws7e{word-spacing:14.346667pt;}
.ws10{word-spacing:14.453333pt;}
.ws23{word-spacing:14.506667pt;}
.ws7f{word-spacing:14.773333pt;}
.wse{word-spacing:14.986667pt;}
.ws93{word-spacing:15.093333pt;}
.ws1d{word-spacing:15.520000pt;}
.ws61{word-spacing:15.893333pt;}
.ws60{word-spacing:15.946667pt;}
.ws95{word-spacing:16.053333pt;}
.wsaf{word-spacing:16.160000pt;}
.ws8b{word-spacing:16.746667pt;}
.wsc{word-spacing:17.920000pt;}
.wsb8{word-spacing:18.186667pt;}
.wsb0{word-spacing:18.506667pt;}
.wsa1{word-spacing:19.520000pt;}
.wsa9{word-spacing:22.880000pt;}
.wsd{word-spacing:42.453333pt;}
.ws1{word-spacing:102.370667pt;}
.ws96{word-spacing:103.010667pt;}
.ws4c{word-spacing:2406.186667pt;}
._8{margin-left:-2719.514667pt;}
._9{margin-left:-20.325333pt;}
._a{margin-left:-11.360000pt;}
._5{margin-left:-5.376000pt;}
._b{margin-left:-4.484267pt;}
._2{margin-left:-3.536000pt;}
._7{margin-left:-2.293333pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.245867pt;}
._3{width:2.428800pt;}
._4{width:3.760000pt;}
._6{width:4.784000pt;}
.fs9{font-size:31.093333pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:62.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:88.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.yc2{bottom:78.723200pt;}
.y4{bottom:86.333337pt;}
.yc1{bottom:91.725867pt;}
.yc0{bottom:104.728533pt;}
.y4d{bottom:105.133867pt;}
.ybf{bottom:117.731200pt;}
.y4c{bottom:121.133867pt;}
.y22{bottom:123.790666pt;}
.ybe{bottom:132.621867pt;}
.y4b{bottom:137.133867pt;}
.ybd{bottom:145.624533pt;}
.y4a{bottom:153.133867pt;}
.ybc{bottom:158.627200pt;}
.y49{bottom:169.133867pt;}
.ybb{bottom:173.517867pt;}
.y19{bottom:175.052000pt;}
.yf0{bottom:177.144533pt;}
.y48{bottom:185.133867pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.yba{bottom:186.520533pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.yb9{bottom:199.523200pt;}
.y6e{bottom:201.133867pt;}
.y47{bottom:201.138200pt;}
.yef{bottom:205.144533pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yb8{bottom:214.413867pt;}
.y46{bottom:217.133867pt;}
.yee{bottom:219.139200pt;}
.yb7{bottom:227.416533pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y6d{bottom:233.133867pt;}
.yb6{bottom:240.419200pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.yed{bottom:247.128533pt;}
.y45{bottom:249.133733pt;}
.y6c{bottom:249.133867pt;}
.yb5{bottom:253.421867pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.yec{bottom:261.123200pt;}
.y44{bottom:265.133733pt;}
.y6b{bottom:265.133867pt;}
.yb4{bottom:266.424533pt;}
.yeb{bottom:275.117867pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yb3{bottom:279.427200pt;}
.y43{bottom:281.133733pt;}
.y6a{bottom:281.133867pt;}
.y7e{bottom:281.138200pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.yea{bottom:289.112533pt;}
.yb2{bottom:292.429867pt;}
.y42{bottom:297.133733pt;}
.y69{bottom:297.133867pt;}
.ye9{bottom:303.107200pt;}
.yb1{bottom:307.320533pt;}
.y10{bottom:309.452000pt;}
.y41{bottom:313.133733pt;}
.y68{bottom:313.133867pt;}
.ye8{bottom:317.101867pt;}
.yb0{bottom:320.323200pt;}
.y40{bottom:329.133733pt;}
.y67{bottom:329.133867pt;}
.ye7{bottom:331.096533pt;}
.yaf{bottom:333.325867pt;}
.yf{bottom:343.809333pt;}
.ye6{bottom:345.091200pt;}
.y3f{bottom:345.133733pt;}
.y66{bottom:345.133867pt;}
.yae{bottom:346.328533pt;}
.y3e{bottom:361.133733pt;}
.y65{bottom:361.133867pt;}
.yad{bottom:361.219200pt;}
.ye{bottom:362.706666pt;}
.yac{bottom:374.221867pt;}
.y3d{bottom:377.133733pt;}
.y64{bottom:377.133867pt;}
.yab{bottom:387.224533pt;}
.y3c{bottom:393.133733pt;}
.y63{bottom:393.133867pt;}
.ye5{bottom:399.085867pt;}
.yaa{bottom:400.227200pt;}
.y3b{bottom:409.133733pt;}
.y62{bottom:409.133867pt;}
.ya9{bottom:413.229867pt;}
.y3a{bottom:425.133733pt;}
.y61{bottom:425.133867pt;}
.ye4{bottom:427.085867pt;}
.ya8{bottom:428.120533pt;}
.yd{bottom:430.990669pt;}
.ye3{bottom:441.080533pt;}
.ya7{bottom:441.123200pt;}
.y39{bottom:441.133733pt;}
.y60{bottom:441.133867pt;}
.yc{bottom:446.990669pt;}
.ya6{bottom:454.125867pt;}
.ye2{bottom:455.075200pt;}
.y38{bottom:457.133733pt;}
.y5f{bottom:457.133867pt;}
.yb{bottom:462.990669pt;}
.ya5{bottom:467.128533pt;}
.ye1{bottom:469.069867pt;}
.y37{bottom:473.133733pt;}
.y5e{bottom:473.133867pt;}
.ya{bottom:478.990666pt;}
.ya4{bottom:482.019200pt;}
.ye0{bottom:483.064533pt;}
.y36{bottom:489.133733pt;}
.y5d{bottom:489.133867pt;}
.y9{bottom:494.990666pt;}
.ya3{bottom:495.021867pt;}
.ydf{bottom:497.059200pt;}
.y35{bottom:505.133733pt;}
.y5c{bottom:505.133867pt;}
.ya2{bottom:508.024533pt;}
.yde{bottom:511.053867pt;}
.ya1{bottom:521.027200pt;}
.y34{bottom:521.133733pt;}
.y5b{bottom:521.133867pt;}
.ydd{bottom:525.048533pt;}
.ya0{bottom:534.029867pt;}
.y33{bottom:537.133733pt;}
.y5a{bottom:537.133867pt;}
.ydc{bottom:539.043200pt;}
.y9f{bottom:548.920533pt;}
.ydb{bottom:553.037867pt;}
.y32{bottom:553.133733pt;}
.y59{bottom:553.133867pt;}
.y9e{bottom:561.923200pt;}
.yda{bottom:567.032533pt;}
.y31{bottom:569.133733pt;}
.y58{bottom:569.133867pt;}
.y8{bottom:573.786667pt;}
.y9d{bottom:576.813867pt;}
.yd9{bottom:581.027200pt;}
.y30{bottom:585.133733pt;}
.y57{bottom:585.133867pt;}
.y9c{bottom:589.816533pt;}
.y7{bottom:592.685334pt;}
.yd8{bottom:595.021867pt;}
.y2f{bottom:601.133733pt;}
.y56{bottom:601.133867pt;}
.y9b{bottom:602.819200pt;}
.yd7{bottom:609.016533pt;}
.y2e{bottom:617.133733pt;}
.y55{bottom:617.133867pt;}
.y9a{bottom:617.709867pt;}
.y99{bottom:630.712533pt;}
.y2d{bottom:633.133733pt;}
.y54{bottom:633.133867pt;}
.y98{bottom:643.715200pt;}
.y6{bottom:645.598667pt;}
.y2c{bottom:649.133733pt;}
.y53{bottom:649.133867pt;}
.y97{bottom:658.605867pt;}
.y2b{bottom:665.133733pt;}
.y52{bottom:665.133867pt;}
.y3{bottom:668.977329pt;}
.y96{bottom:671.608533pt;}
.yd6{bottom:675.011200pt;}
.y2a{bottom:681.133733pt;}
.y51{bottom:681.133867pt;}
.y95{bottom:684.611200pt;}
.y29{bottom:697.133733pt;}
.y50{bottom:697.133867pt;}
.y94{bottom:699.501867pt;}
.yd5{bottom:703.011200pt;}
.y93{bottom:712.504533pt;}
.y28{bottom:713.133733pt;}
.y4f{bottom:713.133867pt;}
.yd4{bottom:717.005867pt;}
.y92{bottom:725.507200pt;}
.y27{bottom:729.133733pt;}
.y4e{bottom:729.133867pt;}
.yd3{bottom:731.000533pt;}
.y91{bottom:738.509867pt;}
.yd2{bottom:744.995200pt;}
.y7c{bottom:745.133867pt;}
.y90{bottom:751.512533pt;}
.yd1{bottom:758.989867pt;}
.y7b{bottom:761.133867pt;}
.y8f{bottom:766.403200pt;}
.yd0{bottom:772.984533pt;}
.y7a{bottom:777.133867pt;}
.y8e{bottom:779.405867pt;}
.y2{bottom:781.661334pt;}
.ycf{bottom:786.979200pt;}
.y79{bottom:793.133867pt;}
.y8d{bottom:794.296533pt;}
.yce{bottom:800.973867pt;}
.y8c{bottom:807.299200pt;}
.y78{bottom:809.133867pt;}
.y8b{bottom:822.189867pt;}
.y77{bottom:825.133867pt;}
.y8a{bottom:835.192533pt;}
.y76{bottom:841.133867pt;}
.y89{bottom:850.083200pt;}
.y75{bottom:857.133867pt;}
.y1{bottom:859.312000pt;}
.y88{bottom:863.085867pt;}
.ycd{bottom:871.640533pt;}
.y74{bottom:873.133867pt;}
.y87{bottom:876.088533pt;}
.ycc{bottom:884.643200pt;}
.y73{bottom:889.133867pt;}
.y86{bottom:890.979200pt;}
.ycb{bottom:897.645867pt;}
.y85{bottom:903.981867pt;}
.y72{bottom:905.133867pt;}
.yca{bottom:912.536533pt;}
.y84{bottom:916.984533pt;}
.y26{bottom:921.133867pt;}
.yc9{bottom:925.539200pt;}
.y83{bottom:929.987200pt;}
.y71{bottom:937.133867pt;}
.yc8{bottom:938.541867pt;}
.y82{bottom:944.877867pt;}
.yc7{bottom:951.544533pt;}
.y25{bottom:953.133867pt;}
.y81{bottom:957.880533pt;}
.yc6{bottom:966.435200pt;}
.y70{bottom:969.133867pt;}
.y80{bottom:970.883200pt;}
.yc5{bottom:979.437867pt;}
.y7f{bottom:983.885867pt;}
.y7d{bottom:985.133867pt;}
.y6f{bottom:985.138200pt;}
.yc4{bottom:992.440533pt;}
.y24{bottom:1001.133867pt;}
.yc3{bottom:1005.443200pt;}
.y23{bottom:1077.396533pt;}
.h7{height:28.560000pt;}
.h9{height:34.517333pt;}
.h11{height:34.816000pt;}
.h10{height:35.029333pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hd{height:43.146667pt;}
.ha{height:43.520000pt;}
.hf{height:43.786667pt;}
.h2{height:48.960000pt;}
.he{height:51.449333pt;}
.h5{height:69.360000pt;}
.hc{height:71.192000pt;}
.h4{height:105.826671pt;}
.hb{height:129.440000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:37.795200pt;}
.x6{left:75.590533pt;}
.x1b{left:89.057200pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:105.830533pt;}
.x4{left:180.874667pt;}
.x17{left:320.708267pt;}
.x18{left:321.840133pt;}
.x19{left:371.726800pt;}
.x1a{left:372.858667pt;}
.x3{left:404.408000pt;}
.x8{left:408.190533pt;}
.x1e{left:423.308933pt;}
.xa{left:435.704133pt;}
.xb{left:437.115200pt;}
.x9{left:438.430533pt;}
.x13{left:480.606800pt;}
.x14{left:481.634800pt;}
.xd{left:498.567733pt;}
.xe{left:500.008800pt;}
.x1f{left:514.395867pt;}
.x20{left:515.345200pt;}
.xf{left:545.669333pt;}
.x10{left:546.762800pt;}
.x15{left:655.248400pt;}
.x16{left:656.276400pt;}
.x11{left:660.923333pt;}
.x12{left:662.016933pt;}
.x1c{left:684.974000pt;}
.x1d{left:685.864000pt;}
.xc{left:745.677200pt;}
}




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