
    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_89f04fc5d3f8c17ac25d279e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.099000;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_d6b6bd859c9636d0c515a2c2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.087000;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_495b007e46fa7317b181ae37.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_09e6e709251f246c2f987124.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741000;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_b8eb61bd1d69f257fcbaa22e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.713000;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_f80b53f544cdd275a9a4653a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.991000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980107px;}
.lse{letter-spacing:-1.458000px;}
.ls5{letter-spacing:-0.840000px;}
.ls3{letter-spacing:-0.360000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000004px;}
.ls8{letter-spacing:0.000012px;}
.ls6{letter-spacing:0.000095px;}
.ls1{letter-spacing:0.014407px;}
.lsa{letter-spacing:1.200003px;}
.lsd{letter-spacing:1.242000px;}
.lsc{letter-spacing:2.289600px;}
.lsb{letter-spacing:2.754011px;}
.ls7{letter-spacing:11.939868px;}
.lsf{letter-spacing:56.645402px;}
.ls9{letter-spacing:56.699366px;}
.ls4{letter-spacing:56.699962px;}
.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;}
}
.ws17{word-spacing:-20.160000px;}
.ws1{word-spacing:-18.720000px;}
.wsb9{word-spacing:-17.409600px;}
.ws2{word-spacing:-16.800000px;}
.wsba{word-spacing:-16.362000px;}
.ws3a{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.120000px;}
.ws18{word-spacing:-14.111999px;}
.ws3b{word-spacing:-14.040000px;}
.ws19{word-spacing:-13.103999px;}
.ws16{word-spacing:-10.080000px;}
.ws72{word-spacing:-6.660000px;}
.wsa3{word-spacing:-5.460000px;}
.ws3c{word-spacing:-4.200000px;}
.ws9c{word-spacing:-3.960000px;}
.ws1f{word-spacing:-3.660000px;}
.ws6{word-spacing:-3.540000px;}
.ws3e{word-spacing:-3.480000px;}
.ws3d{word-spacing:-3.420000px;}
.ws91{word-spacing:-3.360000px;}
.ws64{word-spacing:-3.300000px;}
.ws60{word-spacing:-3.120000px;}
.ws6b{word-spacing:-3.059994px;}
.ws15{word-spacing:-3.000000px;}
.ws4c{word-spacing:-2.760000px;}
.ws37{word-spacing:-2.700000px;}
.ws94{word-spacing:-2.640000px;}
.ws6f{word-spacing:-2.579994px;}
.ws25{word-spacing:-2.520000px;}
.ws34{word-spacing:-2.460000px;}
.ws9e{word-spacing:-2.400000px;}
.wse7{word-spacing:-2.322000px;}
.ws79{word-spacing:-2.280000px;}
.ws27{word-spacing:-2.220000px;}
.ws5b{word-spacing:-2.100000px;}
.wsd6{word-spacing:-2.052000px;}
.wsb1{word-spacing:-2.040000px;}
.wsfc{word-spacing:-1.998000px;}
.ws8e{word-spacing:-1.920000px;}
.ws76{word-spacing:-1.860000px;}
.wsda{word-spacing:-1.836000px;}
.wsee{word-spacing:-1.782000px;}
.wsc8{word-spacing:-1.728000px;}
.ws9{word-spacing:-1.680000px;}
.wsef{word-spacing:-1.674000px;}
.wsa6{word-spacing:-1.620000px;}
.ws32{word-spacing:-1.560000px;}
.wsf5{word-spacing:-1.512000px;}
.wsc5{word-spacing:-1.458000px;}
.wse5{word-spacing:-1.404000px;}
.ws2a{word-spacing:-1.380000px;}
.wsc3{word-spacing:-1.350000px;}
.wse{word-spacing:-1.320000px;}
.wse6{word-spacing:-1.296000px;}
.ws61{word-spacing:-1.260000px;}
.ws28{word-spacing:-1.200000px;}
.wsa5{word-spacing:-1.140000px;}
.ws1b{word-spacing:-1.080000px;}
.ws33{word-spacing:-1.020000px;}
.ws4d{word-spacing:-0.840000px;}
.wsaf{word-spacing:-0.780000px;}
.ws71{word-spacing:-0.600000px;}
.wsb2{word-spacing:-0.540000px;}
.wsf4{word-spacing:-0.432000px;}
.ws9f{word-spacing:-0.420000px;}
.wse2{word-spacing:-0.378000px;}
.ws41{word-spacing:-0.360000px;}
.ws81{word-spacing:-0.324000px;}
.ws8{word-spacing:-0.300000px;}
.wsb3{word-spacing:-0.240000px;}
.ws48{word-spacing:-0.162000px;}
.wsa1{word-spacing:-0.060000px;}
.ws46{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.wsed{word-spacing:0.054000px;}
.ws88{word-spacing:0.060000px;}
.ws31{word-spacing:0.120000px;}
.ws96{word-spacing:0.180000px;}
.ws21{word-spacing:0.240000px;}
.wscf{word-spacing:0.270000px;}
.wsc{word-spacing:0.300000px;}
.ws7f{word-spacing:0.360000px;}
.ws26{word-spacing:0.480000px;}
.ws8c{word-spacing:0.540000px;}
.wse0{word-spacing:0.594000px;}
.wsdf{word-spacing:0.648000px;}
.ws7e{word-spacing:0.660000px;}
.wseb{word-spacing:0.702000px;}
.ws42{word-spacing:0.780000px;}
.ws22{word-spacing:0.840000px;}
.ws9d{word-spacing:0.900000px;}
.ws11{word-spacing:0.960000px;}
.ws30{word-spacing:1.020000px;}
.ws4e{word-spacing:1.080000px;}
.wsb6{word-spacing:1.140000px;}
.wsf7{word-spacing:1.188000px;}
.ws67{word-spacing:1.200000px;}
.wsf6{word-spacing:1.242000px;}
.wsb7{word-spacing:1.260000px;}
.ws8d{word-spacing:1.320000px;}
.ws44{word-spacing:1.380000px;}
.wsc4{word-spacing:1.458000px;}
.ws5f{word-spacing:1.500000px;}
.ws20{word-spacing:1.560000px;}
.wsc2{word-spacing:1.566000px;}
.ws45{word-spacing:1.620000px;}
.wsc1{word-spacing:1.674000px;}
.wsf{word-spacing:1.740000px;}
.ws55{word-spacing:1.800000px;}
.wscc{word-spacing:1.836000px;}
.ws7{word-spacing:1.920000px;}
.ws38{word-spacing:1.980000px;}
.ws86{word-spacing:2.040000px;}
.ws39{word-spacing:2.160000px;}
.ws50{word-spacing:2.340000px;}
.ws4a{word-spacing:2.400000px;}
.ws2d{word-spacing:2.460000px;}
.ws8a{word-spacing:2.520000px;}
.wsbf{word-spacing:2.538000px;}
.ws49{word-spacing:2.580000px;}
.ws74{word-spacing:2.640000px;}
.ws24{word-spacing:2.700000px;}
.wsc0{word-spacing:2.754000px;}
.wsa4{word-spacing:2.760000px;}
.wse9{word-spacing:2.808000px;}
.ws57{word-spacing:2.820000px;}
.ws5{word-spacing:2.880000px;}
.wsbb{word-spacing:2.916000px;}
.ws75{word-spacing:3.000000px;}
.wse8{word-spacing:3.024000px;}
.ws5c{word-spacing:3.120000px;}
.wsdb{word-spacing:3.132000px;}
.ws23{word-spacing:3.240000px;}
.ws5e{word-spacing:3.300000px;}
.wsce{word-spacing:3.348000px;}
.wsab{word-spacing:3.480000px;}
.ws47{word-spacing:3.510000px;}
.ws1c{word-spacing:3.600000px;}
.wscd{word-spacing:3.618000px;}
.ws3f{word-spacing:3.660000px;}
.wscb{word-spacing:3.672000px;}
.wsa2{word-spacing:3.780000px;}
.wsdd{word-spacing:3.834000px;}
.ws1e{word-spacing:3.840000px;}
.ws12{word-spacing:3.960000px;}
.ws85{word-spacing:4.020000px;}
.wsdc{word-spacing:4.104000px;}
.ws93{word-spacing:4.260000px;}
.ws89{word-spacing:4.320000px;}
.ws40{word-spacing:4.380000px;}
.ws80{word-spacing:4.440000px;}
.ws5d{word-spacing:4.500000px;}
.ws2c{word-spacing:4.560000px;}
.ws8b{word-spacing:4.680000px;}
.ws66{word-spacing:4.740000px;}
.ws9a{word-spacing:4.860000px;}
.wsf9{word-spacing:4.914000px;}
.ws73{word-spacing:4.920000px;}
.wsa0{word-spacing:5.220000px;}
.wsaa{word-spacing:5.280000px;}
.ws1d{word-spacing:5.340000px;}
.wsd9{word-spacing:5.346000px;}
.wsa9{word-spacing:5.400000px;}
.wsde{word-spacing:5.508000px;}
.wsd{word-spacing:5.520000px;}
.ws2f{word-spacing:5.640000px;}
.wsd1{word-spacing:5.670000px;}
.ws59{word-spacing:5.700000px;}
.ws95{word-spacing:5.760000px;}
.ws6a{word-spacing:5.820000px;}
.ws78{word-spacing:5.880000px;}
.ws84{word-spacing:5.940000px;}
.wsad{word-spacing:6.000000px;}
.ws6c{word-spacing:6.048000px;}
.ws70{word-spacing:6.060000px;}
.wsd2{word-spacing:6.102000px;}
.ws97{word-spacing:6.120000px;}
.ws62{word-spacing:6.180000px;}
.ws2b{word-spacing:6.360000px;}
.wsa7{word-spacing:6.420000px;}
.ws10{word-spacing:6.480000px;}
.wsa{word-spacing:6.600000px;}
.wsfa{word-spacing:6.642000px;}
.wsfb{word-spacing:6.750000px;}
.ws4{word-spacing:6.780000px;}
.ws6e{word-spacing:6.840000px;}
.wsb5{word-spacing:7.020000px;}
.wsb4{word-spacing:7.080000px;}
.wsac{word-spacing:7.260000px;}
.ws7c{word-spacing:7.380000px;}
.wse1{word-spacing:7.452000px;}
.ws6d{word-spacing:7.560000px;}
.wsae{word-spacing:7.620000px;}
.wsfd{word-spacing:7.668000px;}
.wsa8{word-spacing:7.740000px;}
.ws9b{word-spacing:7.860000px;}
.ws43{word-spacing:8.040000px;}
.ws7d{word-spacing:8.160000px;}
.ws51{word-spacing:8.220000px;}
.ws87{word-spacing:8.340000px;}
.wsf3{word-spacing:8.370000px;}
.ws82{word-spacing:8.580000px;}
.ws92{word-spacing:8.640000px;}
.wsf1{word-spacing:8.748000px;}
.wsf2{word-spacing:9.018000px;}
.ws13{word-spacing:9.060000px;}
.ws4f{word-spacing:9.120000px;}
.wsd8{word-spacing:9.234000px;}
.ws58{word-spacing:9.480000px;}
.ws14{word-spacing:9.540000px;}
.wsc9{word-spacing:9.558000px;}
.ws7a{word-spacing:9.720000px;}
.ws1a{word-spacing:10.020000px;}
.ws83{word-spacing:10.260000px;}
.wsbc{word-spacing:10.314000px;}
.ws4b{word-spacing:10.380000px;}
.ws8f{word-spacing:10.560000px;}
.wsb8{word-spacing:10.680000px;}
.wsbd{word-spacing:10.692000px;}
.ws90{word-spacing:10.980000px;}
.ws69{word-spacing:11.100000px;}
.ws77{word-spacing:11.160000px;}
.ws65{word-spacing:11.220000px;}
.ws29{word-spacing:11.340000px;}
.wsea{word-spacing:11.394000px;}
.ws54{word-spacing:11.760000px;}
.ws68{word-spacing:11.940000px;}
.ws99{word-spacing:12.120000px;}
.ws7b{word-spacing:12.240000px;}
.wsb{word-spacing:12.600000px;}
.wse4{word-spacing:12.636000px;}
.wsec{word-spacing:13.068000px;}
.ws2e{word-spacing:13.260000px;}
.ws35{word-spacing:14.700000px;}
.wsf0{word-spacing:15.228000px;}
.ws36{word-spacing:15.840000px;}
.ws5a{word-spacing:16.920000px;}
.wsb0{word-spacing:17.100000px;}
.wsf8{word-spacing:17.388000px;}
.wsca{word-spacing:17.820001px;}
.ws53{word-spacing:17.880000px;}
.ws98{word-spacing:18.840001px;}
.ws52{word-spacing:19.260000px;}
.ws63{word-spacing:19.560000px;}
.wsd4{word-spacing:19.656000px;}
.ws56{word-spacing:20.100000px;}
.wse3{word-spacing:21.222000px;}
.wsbe{word-spacing:25.002000px;}
.wsd5{word-spacing:29.807999px;}
.wsd3{word-spacing:30.077999px;}
.wsc7{word-spacing:30.402001px;}
.wsd7{word-spacing:31.158001px;}
.wsc6{word-spacing:32.778000px;}
.wsd0{word-spacing:44.658001px;}
._0{margin-left:-1869.696013px;}
._e{margin-left:-22.680000px;}
._f{margin-left:-21.300000px;}
._8{margin-left:-19.080587px;}
._d{margin-left:-9.516042px;}
._1{margin-left:-6.588000px;}
._4{margin-left:-4.541400px;}
._5{margin-left:-3.024000px;}
._6{margin-left:-1.668000px;}
._3{width:1.020600px;}
._2{width:2.214000px;}
._7{width:3.780000px;}
._10{width:7.020000px;}
._b{width:9.108000px;}
._11{width:11.501997px;}
._13{width:12.635955px;}
._12{width:25.115401px;}
._a{width:30.240000px;}
._c{width:31.266013px;}
._9{width:37.854000px;}
.fc1{color:rgb(0,0,250);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:36.000000px;}
.fs7{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs6{font-size:50.399998px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:71.812355px;}
.y81{bottom:75.754652px;}
.y2{bottom:88.309355px;}
.y80{bottom:92.251648px;}
.yb7{bottom:104.600221px;}
.y41{bottom:104.600245px;}
.yde{bottom:104.600258px;}
.yd8{bottom:104.600537px;}
.y1{bottom:104.806355px;}
.y7f{bottom:108.748650px;}
.y51{bottom:115.217697px;}
.yb6{bottom:122.600222px;}
.y40{bottom:122.600246px;}
.ydd{bottom:122.600259px;}
.yd7{bottom:122.600538px;}
.y7e{bottom:125.245651px;}
.y50{bottom:133.217697px;}
.yb5{bottom:140.600222px;}
.y3f{bottom:140.600246px;}
.ydc{bottom:140.600259px;}
.yd6{bottom:140.600539px;}
.y1b{bottom:140.736904px;}
.y105{bottom:149.057548px;}
.y4f{bottom:151.217697px;}
.y1a{bottom:157.233904px;}
.yb4{bottom:158.600223px;}
.ydb{bottom:158.600260px;}
.yd5{bottom:158.600539px;}
.y12b{bottom:165.554228px;}
.y104{bottom:165.554548px;}
.y3e{bottom:167.600246px;}
.y4e{bottom:169.217697px;}
.y19{bottom:173.730904px;}
.yb3{bottom:176.600224px;}
.yda{bottom:176.600260px;}
.yd4{bottom:176.600540px;}
.y12a{bottom:182.051228px;}
.y103{bottom:182.051548px;}
.y4d{bottom:187.217697px;}
.yb2{bottom:194.600224px;}
.yd9{bottom:194.600261px;}
.yd3{bottom:194.600540px;}
.y129{bottom:198.548228px;}
.y102{bottom:198.548548px;}
.y4c{bottom:205.217697px;}
.y18{bottom:208.916831px;}
.y3d{bottom:212.600221px;}
.yb1{bottom:212.600225px;}
.y6b{bottom:212.600262px;}
.yd2{bottom:212.600541px;}
.y128{bottom:215.045228px;}
.y101{bottom:215.045548px;}
.y4b{bottom:223.217697px;}
.y17{bottom:226.916831px;}
.y3c{bottom:230.600222px;}
.yb0{bottom:230.600225px;}
.y6a{bottom:230.600262px;}
.yd1{bottom:230.600542px;}
.y127{bottom:231.542228px;}
.y100{bottom:231.542548px;}
.y4a{bottom:241.217697px;}
.y16{bottom:244.916832px;}
.y126{bottom:248.039228px;}
.yff{bottom:248.039548px;}
.y3b{bottom:248.600222px;}
.yaf{bottom:248.600226px;}
.y69{bottom:248.600263px;}
.yd0{bottom:248.600542px;}
.y49{bottom:259.217697px;}
.y15{bottom:262.916832px;}
.y125{bottom:264.536228px;}
.yfe{bottom:264.536548px;}
.y3a{bottom:266.600223px;}
.yae{bottom:266.600227px;}
.y68{bottom:266.600263px;}
.ycf{bottom:266.600543px;}
.y48{bottom:277.217697px;}
.y14{bottom:280.916833px;}
.y124{bottom:281.033228px;}
.yfd{bottom:281.033548px;}
.y39{bottom:284.600224px;}
.yad{bottom:284.600227px;}
.y67{bottom:284.600264px;}
.yce{bottom:284.600543px;}
.y98{bottom:293.409142px;}
.y47{bottom:295.217697px;}
.y123{bottom:297.530228px;}
.yfc{bottom:297.530548px;}
.y13{bottom:298.916834px;}
.y38{bottom:302.600224px;}
.yac{bottom:302.600228px;}
.y66{bottom:302.600265px;}
.ycd{bottom:302.600544px;}
.y97{bottom:309.906143px;}
.y46{bottom:313.217697px;}
.y122{bottom:314.027228px;}
.yfb{bottom:314.027548px;}
.y12{bottom:316.916834px;}
.y37{bottom:320.600225px;}
.yab{bottom:320.600228px;}
.y65{bottom:320.600265px;}
.ycc{bottom:320.600545px;}
.y96{bottom:326.403145px;}
.y121{bottom:330.524228px;}
.yfa{bottom:330.524548px;}
.y45{bottom:331.217697px;}
.y11{bottom:334.916835px;}
.y36{bottom:338.600225px;}
.yaa{bottom:338.600229px;}
.y64{bottom:338.600266px;}
.ycb{bottom:338.600545px;}
.ya1{bottom:340.506889px;}
.y95{bottom:342.900146px;}
.y120{bottom:347.021228px;}
.yf9{bottom:347.021548px;}
.y44{bottom:349.217697px;}
.y10{bottom:352.916835px;}
.y35{bottom:356.600226px;}
.ya9{bottom:356.600230px;}
.y63{bottom:356.600266px;}
.yca{bottom:356.600546px;}
.ya0{bottom:357.003891px;}
.y94{bottom:359.397148px;}
.y11f{bottom:363.518228px;}
.yf8{bottom:363.518548px;}
.y43{bottom:367.217697px;}
.yf{bottom:370.916836px;}
.y9f{bottom:373.500893px;}
.y34{bottom:374.600227px;}
.ya8{bottom:374.600230px;}
.y62{bottom:374.600267px;}
.yc9{bottom:374.600546px;}
.y93{bottom:375.894150px;}
.y11e{bottom:380.015228px;}
.yf7{bottom:380.015548px;}
.ye{bottom:388.916837px;}
.y9e{bottom:389.997894px;}
.y92{bottom:392.391129px;}
.y33{bottom:392.600227px;}
.ya7{bottom:392.600231px;}
.y61{bottom:392.600268px;}
.yc8{bottom:392.600547px;}
.y11d{bottom:396.512228px;}
.yf6{bottom:396.512548px;}
.y54{bottom:404.993546px;}
.y9d{bottom:406.494919px;}
.yd{bottom:406.916837px;}
.y91{bottom:408.888153px;}
.y32{bottom:410.600228px;}
.ya6{bottom:410.600231px;}
.y60{bottom:410.600268px;}
.yc7{bottom:410.600548px;}
.y11c{bottom:413.009228px;}
.yf5{bottom:413.009548px;}
.y53{bottom:421.490570px;}
.y9c{bottom:422.991898px;}
.yc{bottom:424.916838px;}
.y90{bottom:425.385132px;}
.y31{bottom:428.600228px;}
.ya5{bottom:428.600232px;}
.y5f{bottom:428.600269px;}
.yc6{bottom:428.600548px;}
.y11b{bottom:429.506228px;}
.yf4{bottom:429.506548px;}
.y52{bottom:437.987549px;}
.y9b{bottom:439.488922px;}
.yb{bottom:442.916838px;}
.y11a{bottom:446.003228px;}
.yf3{bottom:446.003548px;}
.y30{bottom:446.600229px;}
.ya4{bottom:446.600233px;}
.y5e{bottom:446.600269px;}
.yc5{bottom:446.600549px;}
.y9a{bottom:455.985901px;}
.ya{bottom:460.916839px;}
.y119{bottom:462.500228px;}
.yf2{bottom:462.500548px;}
.y2f{bottom:464.600230px;}
.ya3{bottom:464.600233px;}
.y8f{bottom:464.600235px;}
.y5d{bottom:464.600270px;}
.yc4{bottom:464.600549px;}
.y9{bottom:478.916838px;}
.y118{bottom:478.997228px;}
.yf1{bottom:478.997548px;}
.y2e{bottom:482.600230px;}
.ya2{bottom:482.600234px;}
.y8e{bottom:482.600235px;}
.y5c{bottom:482.600271px;}
.yc3{bottom:482.600550px;}
.y7d{bottom:482.600555px;}
.y117{bottom:495.494228px;}
.yf0{bottom:495.494548px;}
.y8{bottom:496.916839px;}
.y2d{bottom:500.600231px;}
.y8d{bottom:500.600235px;}
.y5b{bottom:500.600271px;}
.yc2{bottom:500.600551px;}
.y7c{bottom:500.600555px;}
.y116{bottom:511.991228px;}
.yef{bottom:511.991548px;}
.y7{bottom:514.916840px;}
.y2c{bottom:518.600231px;}
.y8c{bottom:518.600235px;}
.y5a{bottom:518.600272px;}
.yc1{bottom:518.600551px;}
.y7b{bottom:518.600555px;}
.y115{bottom:528.488228px;}
.yee{bottom:528.488548px;}
.y2b{bottom:536.600232px;}
.y8b{bottom:536.600235px;}
.y59{bottom:536.600272px;}
.yc0{bottom:536.600552px;}
.y7a{bottom:536.600555px;}
.y114{bottom:544.985228px;}
.yed{bottom:544.985548px;}
.y2a{bottom:554.600233px;}
.y8a{bottom:554.600235px;}
.y58{bottom:554.600273px;}
.ybf{bottom:554.600552px;}
.y79{bottom:554.600555px;}
.y113{bottom:561.482228px;}
.yec{bottom:561.482548px;}
.y29{bottom:572.600233px;}
.y89{bottom:572.600235px;}
.y57{bottom:572.600274px;}
.ybe{bottom:572.600553px;}
.y78{bottom:572.600555px;}
.y112{bottom:577.979228px;}
.yeb{bottom:577.979548px;}
.y6{bottom:586.916840px;}
.y28{bottom:590.600234px;}
.y88{bottom:590.600235px;}
.y56{bottom:590.600274px;}
.ybd{bottom:590.600554px;}
.y77{bottom:590.600555px;}
.y111{bottom:594.476228px;}
.yea{bottom:594.476548px;}
.y138{bottom:608.207869px;}
.y27{bottom:608.600234px;}
.y55{bottom:608.600275px;}
.ybc{bottom:608.600554px;}
.y76{bottom:608.600555px;}
.y110{bottom:610.973228px;}
.ye9{bottom:610.973548px;}
.y137{bottom:624.704869px;}
.y87{bottom:626.600235px;}
.y26{bottom:626.600275px;}
.y75{bottom:626.600555px;}
.y10f{bottom:627.470228px;}
.ye8{bottom:627.470548px;}
.y136{bottom:641.201869px;}
.y10e{bottom:643.967228px;}
.ye7{bottom:643.967548px;}
.y86{bottom:644.600235px;}
.y25{bottom:644.600276px;}
.y74{bottom:644.600555px;}
.y135{bottom:657.698869px;}
.y5{bottom:658.916840px;}
.y10d{bottom:660.464228px;}
.ye6{bottom:660.464548px;}
.y85{bottom:662.600235px;}
.y24{bottom:662.600277px;}
.y73{bottom:662.600555px;}
.ybb{bottom:671.600555px;}
.y134{bottom:674.195869px;}
.y10c{bottom:676.961228px;}
.ye5{bottom:676.961548px;}
.y84{bottom:680.600235px;}
.y23{bottom:680.600277px;}
.y72{bottom:680.600555px;}
.y133{bottom:690.692869px;}
.y4{bottom:691.916840px;}
.y10b{bottom:693.458228px;}
.ye4{bottom:693.458548px;}
.y22{bottom:698.600278px;}
.y71{bottom:698.600555px;}
.y132{bottom:707.189869px;}
.y83{bottom:707.600235px;}
.y10a{bottom:709.955228px;}
.ye3{bottom:709.955548px;}
.y21{bottom:716.600278px;}
.yba{bottom:716.600553px;}
.y70{bottom:716.600555px;}
.y131{bottom:723.686869px;}
.y109{bottom:726.452228px;}
.ye2{bottom:726.452548px;}
.y20{bottom:734.600279px;}
.yb9{bottom:734.600554px;}
.y6f{bottom:734.600555px;}
.y130{bottom:740.183869px;}
.y108{bottom:742.949228px;}
.ye1{bottom:742.949548px;}
.y82{bottom:752.600235px;}
.y1f{bottom:752.600280px;}
.yb8{bottom:752.600554px;}
.y6e{bottom:752.600555px;}
.y12f{bottom:756.680869px;}
.y107{bottom:759.446228px;}
.ye0{bottom:759.446548px;}
.y1e{bottom:770.600280px;}
.y6d{bottom:770.600555px;}
.y12e{bottom:773.177869px;}
.y106{bottom:786.446228px;}
.ydf{bottom:786.446594px;}
.y1d{bottom:788.600281px;}
.y6c{bottom:788.600555px;}
.y12d{bottom:789.674869px;}
.y1c{bottom:828.446686px;}
.y42{bottom:828.446869px;}
.y99{bottom:828.468109px;}
.y12c{bottom:828.552729px;}
.ha{height:35.280000px;}
.h2{height:45.360000px;}
.h3{height:45.414000px;}
.h6{height:50.400000px;}
.h7{height:50.400005px;}
.h8{height:50.460000px;}
.h9{height:51.696000px;}
.h5{height:60.552000px;}
.h4{height:80.640000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.x0{left:0.000000px;}
.x2{left:80.792679px;}
.x6{left:98.787449px;}
.x8{left:103.467304px;}
.x3{left:113.528847px;}
.xe{left:116.782948px;}
.xa{left:134.234699px;}
.x7{left:145.699654px;}
.xb{left:166.701004px;}
.xc{left:205.531059px;}
.x9{left:208.433258px;}
.x5{left:250.404442px;}
.xf{left:270.546455px;}
.x4{left:281.528847px;}
.xd{left:290.255859px;}
.x1{left:525.536682px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760095pt;}
.lse{letter-spacing:-1.296000pt;}
.ls5{letter-spacing:-0.746667pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000003pt;}
.ls8{letter-spacing:0.000011pt;}
.ls6{letter-spacing:0.000085pt;}
.ls1{letter-spacing:0.012806pt;}
.lsa{letter-spacing:1.066669pt;}
.lsd{letter-spacing:1.104000pt;}
.lsc{letter-spacing:2.035200pt;}
.lsb{letter-spacing:2.448010pt;}
.ls7{letter-spacing:10.613216pt;}
.lsf{letter-spacing:50.351469pt;}
.ls9{letter-spacing:50.399437pt;}
.ls4{letter-spacing:50.399966pt;}
.ws17{word-spacing:-17.920000pt;}
.ws1{word-spacing:-16.640000pt;}
.wsb9{word-spacing:-15.475200pt;}
.ws2{word-spacing:-14.933333pt;}
.wsba{word-spacing:-14.544000pt;}
.ws3a{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.440000pt;}
.ws18{word-spacing:-12.543999pt;}
.ws3b{word-spacing:-12.480000pt;}
.ws19{word-spacing:-11.647999pt;}
.ws16{word-spacing:-8.960000pt;}
.ws72{word-spacing:-5.920000pt;}
.wsa3{word-spacing:-4.853333pt;}
.ws3c{word-spacing:-3.733333pt;}
.ws9c{word-spacing:-3.520000pt;}
.ws1f{word-spacing:-3.253333pt;}
.ws6{word-spacing:-3.146667pt;}
.ws3e{word-spacing:-3.093333pt;}
.ws3d{word-spacing:-3.040000pt;}
.ws91{word-spacing:-2.986667pt;}
.ws64{word-spacing:-2.933333pt;}
.ws60{word-spacing:-2.773333pt;}
.ws6b{word-spacing:-2.719995pt;}
.ws15{word-spacing:-2.666667pt;}
.ws4c{word-spacing:-2.453333pt;}
.ws37{word-spacing:-2.400000pt;}
.ws94{word-spacing:-2.346667pt;}
.ws6f{word-spacing:-2.293328pt;}
.ws25{word-spacing:-2.240000pt;}
.ws34{word-spacing:-2.186667pt;}
.ws9e{word-spacing:-2.133333pt;}
.wse7{word-spacing:-2.064000pt;}
.ws79{word-spacing:-2.026667pt;}
.ws27{word-spacing:-1.973333pt;}
.ws5b{word-spacing:-1.866667pt;}
.wsd6{word-spacing:-1.824000pt;}
.wsb1{word-spacing:-1.813333pt;}
.wsfc{word-spacing:-1.776000pt;}
.ws8e{word-spacing:-1.706667pt;}
.ws76{word-spacing:-1.653333pt;}
.wsda{word-spacing:-1.632000pt;}
.wsee{word-spacing:-1.584000pt;}
.wsc8{word-spacing:-1.536000pt;}
.ws9{word-spacing:-1.493333pt;}
.wsef{word-spacing:-1.488000pt;}
.wsa6{word-spacing:-1.440000pt;}
.ws32{word-spacing:-1.386667pt;}
.wsf5{word-spacing:-1.344000pt;}
.wsc5{word-spacing:-1.296000pt;}
.wse5{word-spacing:-1.248000pt;}
.ws2a{word-spacing:-1.226667pt;}
.wsc3{word-spacing:-1.200000pt;}
.wse{word-spacing:-1.173333pt;}
.wse6{word-spacing:-1.152000pt;}
.ws61{word-spacing:-1.120000pt;}
.ws28{word-spacing:-1.066667pt;}
.wsa5{word-spacing:-1.013333pt;}
.ws1b{word-spacing:-0.960000pt;}
.ws33{word-spacing:-0.906667pt;}
.ws4d{word-spacing:-0.746667pt;}
.wsaf{word-spacing:-0.693333pt;}
.ws71{word-spacing:-0.533333pt;}
.wsb2{word-spacing:-0.480000pt;}
.wsf4{word-spacing:-0.384000pt;}
.ws9f{word-spacing:-0.373333pt;}
.wse2{word-spacing:-0.336000pt;}
.ws41{word-spacing:-0.320000pt;}
.ws81{word-spacing:-0.288000pt;}
.ws8{word-spacing:-0.266667pt;}
.wsb3{word-spacing:-0.213333pt;}
.ws48{word-spacing:-0.144000pt;}
.wsa1{word-spacing:-0.053333pt;}
.ws46{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.wsed{word-spacing:0.048000pt;}
.ws88{word-spacing:0.053333pt;}
.ws31{word-spacing:0.106667pt;}
.ws96{word-spacing:0.160000pt;}
.ws21{word-spacing:0.213333pt;}
.wscf{word-spacing:0.240000pt;}
.wsc{word-spacing:0.266667pt;}
.ws7f{word-spacing:0.320000pt;}
.ws26{word-spacing:0.426667pt;}
.ws8c{word-spacing:0.480000pt;}
.wse0{word-spacing:0.528000pt;}
.wsdf{word-spacing:0.576000pt;}
.ws7e{word-spacing:0.586667pt;}
.wseb{word-spacing:0.624000pt;}
.ws42{word-spacing:0.693333pt;}
.ws22{word-spacing:0.746667pt;}
.ws9d{word-spacing:0.800000pt;}
.ws11{word-spacing:0.853333pt;}
.ws30{word-spacing:0.906667pt;}
.ws4e{word-spacing:0.960000pt;}
.wsb6{word-spacing:1.013333pt;}
.wsf7{word-spacing:1.056000pt;}
.ws67{word-spacing:1.066667pt;}
.wsf6{word-spacing:1.104000pt;}
.wsb7{word-spacing:1.120000pt;}
.ws8d{word-spacing:1.173333pt;}
.ws44{word-spacing:1.226667pt;}
.wsc4{word-spacing:1.296000pt;}
.ws5f{word-spacing:1.333333pt;}
.ws20{word-spacing:1.386667pt;}
.wsc2{word-spacing:1.392000pt;}
.ws45{word-spacing:1.440000pt;}
.wsc1{word-spacing:1.488000pt;}
.wsf{word-spacing:1.546667pt;}
.ws55{word-spacing:1.600000pt;}
.wscc{word-spacing:1.632000pt;}
.ws7{word-spacing:1.706667pt;}
.ws38{word-spacing:1.760000pt;}
.ws86{word-spacing:1.813333pt;}
.ws39{word-spacing:1.920000pt;}
.ws50{word-spacing:2.080000pt;}
.ws4a{word-spacing:2.133333pt;}
.ws2d{word-spacing:2.186667pt;}
.ws8a{word-spacing:2.240000pt;}
.wsbf{word-spacing:2.256000pt;}
.ws49{word-spacing:2.293333pt;}
.ws74{word-spacing:2.346667pt;}
.ws24{word-spacing:2.400000pt;}
.wsc0{word-spacing:2.448000pt;}
.wsa4{word-spacing:2.453333pt;}
.wse9{word-spacing:2.496000pt;}
.ws57{word-spacing:2.506667pt;}
.ws5{word-spacing:2.560000pt;}
.wsbb{word-spacing:2.592000pt;}
.ws75{word-spacing:2.666667pt;}
.wse8{word-spacing:2.688000pt;}
.ws5c{word-spacing:2.773333pt;}
.wsdb{word-spacing:2.784000pt;}
.ws23{word-spacing:2.880000pt;}
.ws5e{word-spacing:2.933333pt;}
.wsce{word-spacing:2.976000pt;}
.wsab{word-spacing:3.093333pt;}
.ws47{word-spacing:3.120000pt;}
.ws1c{word-spacing:3.200000pt;}
.wscd{word-spacing:3.216000pt;}
.ws3f{word-spacing:3.253333pt;}
.wscb{word-spacing:3.264000pt;}
.wsa2{word-spacing:3.360000pt;}
.wsdd{word-spacing:3.408000pt;}
.ws1e{word-spacing:3.413333pt;}
.ws12{word-spacing:3.520000pt;}
.ws85{word-spacing:3.573333pt;}
.wsdc{word-spacing:3.648000pt;}
.ws93{word-spacing:3.786667pt;}
.ws89{word-spacing:3.840000pt;}
.ws40{word-spacing:3.893333pt;}
.ws80{word-spacing:3.946667pt;}
.ws5d{word-spacing:4.000000pt;}
.ws2c{word-spacing:4.053333pt;}
.ws8b{word-spacing:4.160000pt;}
.ws66{word-spacing:4.213333pt;}
.ws9a{word-spacing:4.320000pt;}
.wsf9{word-spacing:4.368000pt;}
.ws73{word-spacing:4.373333pt;}
.wsa0{word-spacing:4.640000pt;}
.wsaa{word-spacing:4.693333pt;}
.ws1d{word-spacing:4.746667pt;}
.wsd9{word-spacing:4.752000pt;}
.wsa9{word-spacing:4.800000pt;}
.wsde{word-spacing:4.896000pt;}
.wsd{word-spacing:4.906667pt;}
.ws2f{word-spacing:5.013333pt;}
.wsd1{word-spacing:5.040000pt;}
.ws59{word-spacing:5.066667pt;}
.ws95{word-spacing:5.120000pt;}
.ws6a{word-spacing:5.173333pt;}
.ws78{word-spacing:5.226667pt;}
.ws84{word-spacing:5.280000pt;}
.wsad{word-spacing:5.333333pt;}
.ws6c{word-spacing:5.376000pt;}
.ws70{word-spacing:5.386667pt;}
.wsd2{word-spacing:5.424000pt;}
.ws97{word-spacing:5.440000pt;}
.ws62{word-spacing:5.493333pt;}
.ws2b{word-spacing:5.653333pt;}
.wsa7{word-spacing:5.706667pt;}
.ws10{word-spacing:5.760000pt;}
.wsa{word-spacing:5.866667pt;}
.wsfa{word-spacing:5.904000pt;}
.wsfb{word-spacing:6.000000pt;}
.ws4{word-spacing:6.026667pt;}
.ws6e{word-spacing:6.080000pt;}
.wsb5{word-spacing:6.240000pt;}
.wsb4{word-spacing:6.293333pt;}
.wsac{word-spacing:6.453333pt;}
.ws7c{word-spacing:6.560000pt;}
.wse1{word-spacing:6.624000pt;}
.ws6d{word-spacing:6.720000pt;}
.wsae{word-spacing:6.773333pt;}
.wsfd{word-spacing:6.816000pt;}
.wsa8{word-spacing:6.880000pt;}
.ws9b{word-spacing:6.986667pt;}
.ws43{word-spacing:7.146667pt;}
.ws7d{word-spacing:7.253333pt;}
.ws51{word-spacing:7.306667pt;}
.ws87{word-spacing:7.413333pt;}
.wsf3{word-spacing:7.440000pt;}
.ws82{word-spacing:7.626667pt;}
.ws92{word-spacing:7.680000pt;}
.wsf1{word-spacing:7.776000pt;}
.wsf2{word-spacing:8.016000pt;}
.ws13{word-spacing:8.053333pt;}
.ws4f{word-spacing:8.106667pt;}
.wsd8{word-spacing:8.208000pt;}
.ws58{word-spacing:8.426667pt;}
.ws14{word-spacing:8.480000pt;}
.wsc9{word-spacing:8.496000pt;}
.ws7a{word-spacing:8.640000pt;}
.ws1a{word-spacing:8.906667pt;}
.ws83{word-spacing:9.120000pt;}
.wsbc{word-spacing:9.168000pt;}
.ws4b{word-spacing:9.226667pt;}
.ws8f{word-spacing:9.386667pt;}
.wsb8{word-spacing:9.493333pt;}
.wsbd{word-spacing:9.504000pt;}
.ws90{word-spacing:9.760000pt;}
.ws69{word-spacing:9.866667pt;}
.ws77{word-spacing:9.920000pt;}
.ws65{word-spacing:9.973333pt;}
.ws29{word-spacing:10.080000pt;}
.wsea{word-spacing:10.128000pt;}
.ws54{word-spacing:10.453333pt;}
.ws68{word-spacing:10.613333pt;}
.ws99{word-spacing:10.773333pt;}
.ws7b{word-spacing:10.880000pt;}
.wsb{word-spacing:11.200000pt;}
.wse4{word-spacing:11.232000pt;}
.wsec{word-spacing:11.616000pt;}
.ws2e{word-spacing:11.786667pt;}
.ws35{word-spacing:13.066667pt;}
.wsf0{word-spacing:13.536000pt;}
.ws36{word-spacing:14.080000pt;}
.ws5a{word-spacing:15.040000pt;}
.wsb0{word-spacing:15.200000pt;}
.wsf8{word-spacing:15.456000pt;}
.wsca{word-spacing:15.840000pt;}
.ws53{word-spacing:15.893333pt;}
.ws98{word-spacing:16.746667pt;}
.ws52{word-spacing:17.120000pt;}
.ws63{word-spacing:17.386667pt;}
.wsd4{word-spacing:17.472000pt;}
.ws56{word-spacing:17.866667pt;}
.wse3{word-spacing:18.864000pt;}
.wsbe{word-spacing:22.224000pt;}
.wsd5{word-spacing:26.495999pt;}
.wsd3{word-spacing:26.735999pt;}
.wsc7{word-spacing:27.024001pt;}
.wsd7{word-spacing:27.696001pt;}
.wsc6{word-spacing:29.136000pt;}
.wsd0{word-spacing:39.696001pt;}
._0{margin-left:-1661.952012pt;}
._e{margin-left:-20.160000pt;}
._f{margin-left:-18.933333pt;}
._8{margin-left:-16.960522pt;}
._d{margin-left:-8.458704pt;}
._1{margin-left:-5.856000pt;}
._4{margin-left:-4.036800pt;}
._5{margin-left:-2.688000pt;}
._6{margin-left:-1.482667pt;}
._3{width:0.907200pt;}
._2{width:1.968000pt;}
._7{width:3.360000pt;}
._10{width:6.240000pt;}
._b{width:8.096000pt;}
._11{width:10.223997pt;}
._13{width:11.231960pt;}
._12{width:22.324801pt;}
._a{width:26.880000pt;}
._c{width:27.792012pt;}
._9{width:33.648000pt;}
.fs4{font-size:32.000000pt;}
.fs7{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs6{font-size:44.799998pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:63.833204pt;}
.y81{bottom:67.337468pt;}
.y2{bottom:78.497204pt;}
.y80{bottom:82.001465pt;}
.yb7{bottom:92.977974pt;}
.y41{bottom:92.977996pt;}
.yde{bottom:92.978007pt;}
.yd8{bottom:92.978255pt;}
.y1{bottom:93.161204pt;}
.y7f{bottom:96.665466pt;}
.y51{bottom:102.415731pt;}
.yb6{bottom:108.977975pt;}
.y40{bottom:108.977996pt;}
.ydd{bottom:108.978008pt;}
.yd7{bottom:108.978256pt;}
.y7e{bottom:111.329468pt;}
.y50{bottom:118.415731pt;}
.yb5{bottom:124.977975pt;}
.y3f{bottom:124.977997pt;}
.ydc{bottom:124.978008pt;}
.yd6{bottom:124.978257pt;}
.y1b{bottom:125.099470pt;}
.y105{bottom:132.495599pt;}
.y4f{bottom:134.415731pt;}
.y1a{bottom:139.763470pt;}
.yb4{bottom:140.977976pt;}
.ydb{bottom:140.978009pt;}
.yd5{bottom:140.978257pt;}
.y12b{bottom:147.159314pt;}
.y104{bottom:147.159599pt;}
.y3e{bottom:148.977997pt;}
.y4e{bottom:150.415731pt;}
.y19{bottom:154.427470pt;}
.yb3{bottom:156.977977pt;}
.yda{bottom:156.978009pt;}
.yd4{bottom:156.978258pt;}
.y12a{bottom:161.823314pt;}
.y103{bottom:161.823599pt;}
.y4d{bottom:166.415731pt;}
.yb2{bottom:172.977977pt;}
.yd9{bottom:172.978010pt;}
.yd3{bottom:172.978258pt;}
.y129{bottom:176.487314pt;}
.y102{bottom:176.487599pt;}
.y4c{bottom:182.415731pt;}
.y18{bottom:185.703849pt;}
.y3d{bottom:188.977974pt;}
.yb1{bottom:188.977978pt;}
.y6b{bottom:188.978010pt;}
.yd2{bottom:188.978259pt;}
.y128{bottom:191.151314pt;}
.y101{bottom:191.151599pt;}
.y4b{bottom:198.415731pt;}
.y17{bottom:201.703850pt;}
.y3c{bottom:204.977975pt;}
.yb0{bottom:204.977978pt;}
.y6a{bottom:204.978011pt;}
.yd1{bottom:204.978259pt;}
.y127{bottom:205.815314pt;}
.y100{bottom:205.815599pt;}
.y4a{bottom:214.415731pt;}
.y16{bottom:217.703850pt;}
.y126{bottom:220.479314pt;}
.yff{bottom:220.479599pt;}
.y3b{bottom:220.977975pt;}
.yaf{bottom:220.977979pt;}
.y69{bottom:220.978011pt;}
.yd0{bottom:220.978260pt;}
.y49{bottom:230.415731pt;}
.y15{bottom:233.703851pt;}
.y125{bottom:235.143314pt;}
.yfe{bottom:235.143599pt;}
.y3a{bottom:236.977976pt;}
.yae{bottom:236.977979pt;}
.y68{bottom:236.978012pt;}
.ycf{bottom:236.978260pt;}
.y48{bottom:246.415731pt;}
.y14{bottom:249.703852pt;}
.y124{bottom:249.807314pt;}
.yfd{bottom:249.807599pt;}
.y39{bottom:252.977977pt;}
.yad{bottom:252.977980pt;}
.y67{bottom:252.978012pt;}
.yce{bottom:252.978261pt;}
.y98{bottom:260.808126pt;}
.y47{bottom:262.415731pt;}
.y123{bottom:264.471314pt;}
.yfc{bottom:264.471599pt;}
.y13{bottom:265.703852pt;}
.y38{bottom:268.977977pt;}
.yac{bottom:268.977980pt;}
.y66{bottom:268.978013pt;}
.ycd{bottom:268.978261pt;}
.y97{bottom:275.472127pt;}
.y46{bottom:278.415731pt;}
.y122{bottom:279.135314pt;}
.yfb{bottom:279.135599pt;}
.y12{bottom:281.703853pt;}
.y37{bottom:284.977978pt;}
.yab{bottom:284.977981pt;}
.y65{bottom:284.978013pt;}
.ycc{bottom:284.978262pt;}
.y96{bottom:290.136129pt;}
.y121{bottom:293.799314pt;}
.yfa{bottom:293.799599pt;}
.y45{bottom:294.415731pt;}
.y11{bottom:297.703853pt;}
.y36{bottom:300.977978pt;}
.yaa{bottom:300.977981pt;}
.y64{bottom:300.978014pt;}
.ycb{bottom:300.978262pt;}
.ya1{bottom:302.672791pt;}
.y95{bottom:304.800130pt;}
.y120{bottom:308.463314pt;}
.yf9{bottom:308.463599pt;}
.y44{bottom:310.415731pt;}
.y10{bottom:313.703854pt;}
.y35{bottom:316.977979pt;}
.ya9{bottom:316.977982pt;}
.y63{bottom:316.978015pt;}
.yca{bottom:316.978263pt;}
.ya0{bottom:317.336792pt;}
.y94{bottom:319.464132pt;}
.y11f{bottom:323.127314pt;}
.yf8{bottom:323.127599pt;}
.y43{bottom:326.415731pt;}
.yf{bottom:329.703854pt;}
.y9f{bottom:332.000793pt;}
.y34{bottom:332.977979pt;}
.ya8{bottom:332.977982pt;}
.y62{bottom:332.978015pt;}
.yc9{bottom:332.978263pt;}
.y93{bottom:334.128133pt;}
.y11e{bottom:337.791314pt;}
.yf7{bottom:337.791599pt;}
.ye{bottom:345.703855pt;}
.y9e{bottom:346.664795pt;}
.y92{bottom:348.792114pt;}
.y33{bottom:348.977980pt;}
.ya7{bottom:348.977983pt;}
.y61{bottom:348.978016pt;}
.yc8{bottom:348.978264pt;}
.y11d{bottom:352.455314pt;}
.yf6{bottom:352.455599pt;}
.y54{bottom:359.994263pt;}
.y9d{bottom:361.328817pt;}
.yd{bottom:361.703855pt;}
.y91{bottom:363.456136pt;}
.y32{bottom:364.977980pt;}
.ya6{bottom:364.977983pt;}
.y60{bottom:364.978016pt;}
.yc7{bottom:364.978265pt;}
.y11c{bottom:367.119314pt;}
.yf5{bottom:367.119599pt;}
.y53{bottom:374.658284pt;}
.y9c{bottom:375.992798pt;}
.yc{bottom:377.703856pt;}
.y90{bottom:378.120117pt;}
.y31{bottom:380.977981pt;}
.ya5{bottom:380.977984pt;}
.y5f{bottom:380.978017pt;}
.yc6{bottom:380.978265pt;}
.y11b{bottom:381.783314pt;}
.yf4{bottom:381.783599pt;}
.y52{bottom:389.322266pt;}
.y9b{bottom:390.656820pt;}
.yb{bottom:393.703856pt;}
.y11a{bottom:396.447314pt;}
.yf3{bottom:396.447599pt;}
.y30{bottom:396.977981pt;}
.ya4{bottom:396.977985pt;}
.y5e{bottom:396.978017pt;}
.yc5{bottom:396.978266pt;}
.y9a{bottom:405.320801pt;}
.ya{bottom:409.703857pt;}
.y119{bottom:411.111314pt;}
.yf2{bottom:411.111599pt;}
.y2f{bottom:412.977982pt;}
.ya3{bottom:412.977985pt;}
.y8f{bottom:412.977987pt;}
.y5d{bottom:412.978018pt;}
.yc4{bottom:412.978266pt;}
.y9{bottom:425.703856pt;}
.y118{bottom:425.775314pt;}
.yf1{bottom:425.775599pt;}
.y2e{bottom:428.977982pt;}
.ya2{bottom:428.977986pt;}
.y8e{bottom:428.977987pt;}
.y5c{bottom:428.978018pt;}
.yc3{bottom:428.978267pt;}
.y7d{bottom:428.978271pt;}
.y117{bottom:440.439314pt;}
.yf0{bottom:440.439599pt;}
.y8{bottom:441.703857pt;}
.y2d{bottom:444.977983pt;}
.y8d{bottom:444.977987pt;}
.y5b{bottom:444.978019pt;}
.yc2{bottom:444.978267pt;}
.y7c{bottom:444.978271pt;}
.y116{bottom:455.103314pt;}
.yef{bottom:455.103599pt;}
.y7{bottom:457.703857pt;}
.y2c{bottom:460.977983pt;}
.y8c{bottom:460.977987pt;}
.y5a{bottom:460.978019pt;}
.yc1{bottom:460.978268pt;}
.y7b{bottom:460.978271pt;}
.y115{bottom:469.767314pt;}
.yee{bottom:469.767599pt;}
.y2b{bottom:476.977984pt;}
.y8b{bottom:476.977987pt;}
.y59{bottom:476.978020pt;}
.yc0{bottom:476.978268pt;}
.y7a{bottom:476.978271pt;}
.y114{bottom:484.431314pt;}
.yed{bottom:484.431599pt;}
.y2a{bottom:492.977985pt;}
.y8a{bottom:492.977987pt;}
.y58{bottom:492.978020pt;}
.ybf{bottom:492.978269pt;}
.y79{bottom:492.978271pt;}
.y113{bottom:499.095314pt;}
.yec{bottom:499.095599pt;}
.y29{bottom:508.977985pt;}
.y89{bottom:508.977987pt;}
.y57{bottom:508.978021pt;}
.ybe{bottom:508.978269pt;}
.y78{bottom:508.978271pt;}
.y112{bottom:513.759314pt;}
.yeb{bottom:513.759599pt;}
.y6{bottom:521.703857pt;}
.y28{bottom:524.977986pt;}
.y88{bottom:524.977987pt;}
.y56{bottom:524.978021pt;}
.ybd{bottom:524.978270pt;}
.y77{bottom:524.978271pt;}
.y111{bottom:528.423314pt;}
.yea{bottom:528.423599pt;}
.y138{bottom:540.629217pt;}
.y27{bottom:540.977986pt;}
.y55{bottom:540.978022pt;}
.ybc{bottom:540.978270pt;}
.y76{bottom:540.978271pt;}
.y110{bottom:543.087314pt;}
.ye9{bottom:543.087599pt;}
.y137{bottom:555.293217pt;}
.y87{bottom:556.977987pt;}
.y26{bottom:556.978023pt;}
.y75{bottom:556.978271pt;}
.y10f{bottom:557.751314pt;}
.ye8{bottom:557.751599pt;}
.y136{bottom:569.957217pt;}
.y10e{bottom:572.415314pt;}
.ye7{bottom:572.415599pt;}
.y86{bottom:572.977987pt;}
.y25{bottom:572.978023pt;}
.y74{bottom:572.978271pt;}
.y135{bottom:584.621217pt;}
.y5{bottom:585.703857pt;}
.y10d{bottom:587.079314pt;}
.ye6{bottom:587.079599pt;}
.y85{bottom:588.977987pt;}
.y24{bottom:588.978024pt;}
.y73{bottom:588.978271pt;}
.ybb{bottom:596.978271pt;}
.y134{bottom:599.285217pt;}
.y10c{bottom:601.743314pt;}
.ye5{bottom:601.743599pt;}
.y84{bottom:604.977987pt;}
.y23{bottom:604.978024pt;}
.y72{bottom:604.978271pt;}
.y133{bottom:613.949217pt;}
.y4{bottom:615.037191pt;}
.y10b{bottom:616.407314pt;}
.ye4{bottom:616.407599pt;}
.y22{bottom:620.978025pt;}
.y71{bottom:620.978271pt;}
.y132{bottom:628.613217pt;}
.y83{bottom:628.977987pt;}
.y10a{bottom:631.071314pt;}
.ye3{bottom:631.071599pt;}
.y21{bottom:636.978025pt;}
.yba{bottom:636.978269pt;}
.y70{bottom:636.978271pt;}
.y131{bottom:643.277217pt;}
.y109{bottom:645.735314pt;}
.ye2{bottom:645.735599pt;}
.y20{bottom:652.978026pt;}
.yb9{bottom:652.978270pt;}
.y6f{bottom:652.978271pt;}
.y130{bottom:657.941217pt;}
.y108{bottom:660.399314pt;}
.ye1{bottom:660.399599pt;}
.y82{bottom:668.977987pt;}
.y1f{bottom:668.978026pt;}
.yb8{bottom:668.978270pt;}
.y6e{bottom:668.978271pt;}
.y12f{bottom:672.605217pt;}
.y107{bottom:675.063314pt;}
.ye0{bottom:675.063599pt;}
.y1e{bottom:684.978027pt;}
.y6d{bottom:684.978271pt;}
.y12e{bottom:687.269217pt;}
.y106{bottom:699.063314pt;}
.ydf{bottom:699.063639pt;}
.y1d{bottom:700.978027pt;}
.y6c{bottom:700.978271pt;}
.y12d{bottom:701.933217pt;}
.y1c{bottom:736.397054pt;}
.y42{bottom:736.397217pt;}
.y99{bottom:736.416097pt;}
.y12c{bottom:736.491315pt;}
.ha{height:31.360000pt;}
.h2{height:40.320000pt;}
.h3{height:40.368000pt;}
.h6{height:44.800000pt;}
.h7{height:44.800004pt;}
.h8{height:44.853333pt;}
.h9{height:45.952000pt;}
.h5{height:53.824000pt;}
.h4{height:71.680000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.x0{left:0.000000pt;}
.x2{left:71.815715pt;}
.x6{left:87.811066pt;}
.x8{left:91.970937pt;}
.x3{left:100.914530pt;}
.xe{left:103.807065pt;}
.xa{left:119.319733pt;}
.x7{left:129.510803pt;}
.xb{left:148.178670pt;}
.xc{left:182.694275pt;}
.x9{left:185.274007pt;}
.x5{left:222.581726pt;}
.xf{left:240.485738pt;}
.x4{left:250.247864pt;}
.xd{left:258.005208pt;}
.x1{left:467.143717pt;}
}




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