
    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_eab8702e0ef14c4933711396.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_0c424ef92bdb231ab2be3341.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.138184;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_ffb91e42eea0fde512f48696.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120117;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_c2db126677bfe88eec6511f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.138184;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_8d780875e6343dc61559f102.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120117;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_a37119b3b55a2cca2a6cb3f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_9b59f9af3c05d5e6f5f818df.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.120117;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_0c424ef92bdb231ab2be3341.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.138184;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_ffb91e42eea0fde512f48696.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.120117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_49ac14a7935041dc4ce736cb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.120117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1e854b6432a2d37b52562172.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.682400px;}
.v2{vertical-align:32.400000px;}
.ls11{letter-spacing:-1.200000px;}
.ls10{letter-spacing:-1.020000px;}
.ls9{letter-spacing:-0.900000px;}
.ls5{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.120000px;}
.ls4{letter-spacing:-0.060000px;}
.ls3{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.192000px;}
.lse{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.600000px;}
.lsf{letter-spacing:1.200000px;}
.lsc{letter-spacing:68.796000px;}
.lsb{letter-spacing:742.122000px;}
.lsd{letter-spacing:788.886000px;}
.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;}
}
.wsc4{word-spacing:-15.000000px;}
.ws8c{word-spacing:-13.500000px;}
.wse7{word-spacing:-4.740000px;}
.ws8f{word-spacing:-3.348000px;}
.ws16{word-spacing:-1.500000px;}
.wsa9{word-spacing:-1.440000px;}
.ws7f{word-spacing:-1.380000px;}
.wse{word-spacing:-1.350000px;}
.ws1e{word-spacing:-1.260000px;}
.ws41{word-spacing:-1.200000px;}
.wseb{word-spacing:-1.140000px;}
.wscf{word-spacing:-1.080000px;}
.ws44{word-spacing:-1.020000px;}
.wsd{word-spacing:-0.972000px;}
.wse3{word-spacing:-0.960000px;}
.ws6b{word-spacing:-0.900000px;}
.ws1{word-spacing:-0.864000px;}
.ws42{word-spacing:-0.840000px;}
.ws60{word-spacing:-0.780000px;}
.ws57{word-spacing:-0.720000px;}
.ws33{word-spacing:-0.660000px;}
.ws7{word-spacing:-0.648000px;}
.wsd1{word-spacing:-0.600000px;}
.wsf{word-spacing:-0.540000px;}
.ws5f{word-spacing:-0.480000px;}
.wsce{word-spacing:-0.420000px;}
.ws20{word-spacing:-0.360000px;}
.wsd7{word-spacing:-0.324000px;}
.wsa6{word-spacing:-0.300000px;}
.wsca{word-spacing:-0.240000px;}
.ws94{word-spacing:-0.180000px;}
.wsc8{word-spacing:-0.120000px;}
.wsa5{word-spacing:-0.060000px;}
.wsa{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws26{word-spacing:0.060000px;}
.ws91{word-spacing:0.180000px;}
.ws52{word-spacing:0.240000px;}
.ws68{word-spacing:0.300000px;}
.ws11{word-spacing:0.324000px;}
.ws21{word-spacing:0.360000px;}
.ws82{word-spacing:0.420000px;}
.ws43{word-spacing:0.480000px;}
.ws7e{word-spacing:0.540000px;}
.ws86{word-spacing:0.600000px;}
.ws78{word-spacing:0.660000px;}
.ws1c{word-spacing:0.720000px;}
.wsd8{word-spacing:0.780000px;}
.wsac{word-spacing:0.840000px;}
.ws3d{word-spacing:0.900000px;}
.ws85{word-spacing:0.960000px;}
.ws63{word-spacing:1.020000px;}
.ws55{word-spacing:1.080000px;}
.ws24{word-spacing:1.140000px;}
.wsc{word-spacing:1.200000px;}
.ws54{word-spacing:1.260000px;}
.ws88{word-spacing:1.320000px;}
.wsb{word-spacing:1.344000px;}
.ws7b{word-spacing:1.380000px;}
.ws71{word-spacing:1.440000px;}
.wsc3{word-spacing:1.500000px;}
.wsd3{word-spacing:1.560000px;}
.ws3{word-spacing:1.620000px;}
.wsba{word-spacing:1.680000px;}
.ws47{word-spacing:1.740000px;}
.ws74{word-spacing:1.800000px;}
.ws4f{word-spacing:1.860000px;}
.wsa2{word-spacing:1.920000px;}
.ws80{word-spacing:1.980000px;}
.wsb5{word-spacing:2.040000px;}
.ws3b{word-spacing:2.100000px;}
.ws6f{word-spacing:2.160000px;}
.ws25{word-spacing:2.220000px;}
.ws6d{word-spacing:2.280000px;}
.wsc5{word-spacing:2.340000px;}
.ws4e{word-spacing:2.400000px;}
.ws62{word-spacing:2.460000px;}
.wsb0{word-spacing:2.520000px;}
.ws6a{word-spacing:2.580000px;}
.ws70{word-spacing:2.640000px;}
.ws8{word-spacing:2.700000px;}
.ws1d{word-spacing:2.760000px;}
.ws45{word-spacing:2.820000px;}
.wscd{word-spacing:2.880000px;}
.ws75{word-spacing:2.940000px;}
.ws18{word-spacing:3.000000px;}
.ws5a{word-spacing:3.060000px;}
.ws17{word-spacing:3.120000px;}
.ws40{word-spacing:3.180000px;}
.ws5c{word-spacing:3.240000px;}
.wsb4{word-spacing:3.300000px;}
.ws53{word-spacing:3.360000px;}
.ws79{word-spacing:3.420000px;}
.ws9d{word-spacing:3.480000px;}
.wsa0{word-spacing:3.540000px;}
.ws3c{word-spacing:3.600000px;}
.ws15{word-spacing:3.660000px;}
.wsb9{word-spacing:3.720000px;}
.wsa4{word-spacing:3.780000px;}
.ws2f{word-spacing:3.840000px;}
.ws64{word-spacing:3.900000px;}
.ws5{word-spacing:3.942000px;}
.ws59{word-spacing:3.960000px;}
.ws32{word-spacing:4.020000px;}
.ws61{word-spacing:4.080000px;}
.ws1b{word-spacing:4.140000px;}
.wsc9{word-spacing:4.200000px;}
.ws28{word-spacing:4.260000px;}
.ws8e{word-spacing:4.320000px;}
.ws1f{word-spacing:4.380000px;}
.ws31{word-spacing:4.440000px;}
.wsa1{word-spacing:4.500000px;}
.ws8a{word-spacing:4.560000px;}
.ws10{word-spacing:4.590000px;}
.ws50{word-spacing:4.620000px;}
.ws4d{word-spacing:4.680000px;}
.ws65{word-spacing:4.740000px;}
.ws6{word-spacing:4.752000px;}
.wsbd{word-spacing:4.800000px;}
.ws2{word-spacing:4.806000px;}
.ws2b{word-spacing:4.860000px;}
.wsb1{word-spacing:4.920000px;}
.ws72{word-spacing:4.980000px;}
.ws6c{word-spacing:5.040000px;}
.ws48{word-spacing:5.100000px;}
.ws9c{word-spacing:5.160000px;}
.ws23{word-spacing:5.220000px;}
.ws2a{word-spacing:5.280000px;}
.ws2c{word-spacing:5.340000px;}
.wsb7{word-spacing:5.400000px;}
.ws92{word-spacing:5.460000px;}
.ws4a{word-spacing:5.520000px;}
.ws4{word-spacing:5.562000px;}
.wsab{word-spacing:5.580000px;}
.ws3e{word-spacing:5.640000px;}
.wsbb{word-spacing:5.700000px;}
.ws35{word-spacing:5.760000px;}
.ws83{word-spacing:5.820000px;}
.ws27{word-spacing:5.880000px;}
.wsa7{word-spacing:5.940000px;}
.ws9{word-spacing:6.000000px;}
.ws90{word-spacing:6.060000px;}
.wsa8{word-spacing:6.180000px;}
.ws29{word-spacing:6.240000px;}
.wscc{word-spacing:6.300000px;}
.wsaa{word-spacing:6.360000px;}
.ws2e{word-spacing:6.420000px;}
.ws7d{word-spacing:6.480000px;}
.ws4c{word-spacing:6.540000px;}
.ws66{word-spacing:6.600000px;}
.wsc0{word-spacing:6.660000px;}
.ws3f{word-spacing:6.720000px;}
.ws9f{word-spacing:6.780000px;}
.wsc2{word-spacing:6.840000px;}
.ws5d{word-spacing:6.900000px;}
.wsb3{word-spacing:6.960000px;}
.wsbf{word-spacing:7.020000px;}
.wsad{word-spacing:7.080000px;}
.ws89{word-spacing:7.140000px;}
.ws98{word-spacing:7.200000px;}
.ws7a{word-spacing:7.260000px;}
.wsae{word-spacing:7.320000px;}
.ws39{word-spacing:7.380000px;}
.ws46{word-spacing:7.440000px;}
.ws97{word-spacing:7.500000px;}
.ws9b{word-spacing:7.560000px;}
.wsd2{word-spacing:7.620000px;}
.ws5b{word-spacing:7.680000px;}
.ws96{word-spacing:7.740000px;}
.ws2d{word-spacing:7.800000px;}
.wsbc{word-spacing:7.860000px;}
.ws93{word-spacing:7.920000px;}
.wsd0{word-spacing:7.980000px;}
.wsb6{word-spacing:8.040000px;}
.ws84{word-spacing:8.100000px;}
.ws19{word-spacing:8.160000px;}
.ws1a{word-spacing:8.220000px;}
.ws73{word-spacing:8.280000px;}
.ws3a{word-spacing:8.340000px;}
.ws69{word-spacing:8.400000px;}
.wse1{word-spacing:8.460000px;}
.ws36{word-spacing:8.520000px;}
.ws5e{word-spacing:8.580000px;}
.ws37{word-spacing:8.640000px;}
.wsc1{word-spacing:8.700000px;}
.ws51{word-spacing:8.760000px;}
.ws6e{word-spacing:8.820000px;}
.wsd6{word-spacing:8.880000px;}
.ws67{word-spacing:8.940000px;}
.ws56{word-spacing:9.000000px;}
.ws22{word-spacing:9.060000px;}
.ws99{word-spacing:9.180000px;}
.wse2{word-spacing:9.240000px;}
.ws13{word-spacing:9.360000px;}
.wsec{word-spacing:9.480000px;}
.ws95{word-spacing:9.540000px;}
.ws77{word-spacing:9.600000px;}
.wscb{word-spacing:9.660000px;}
.ws58{word-spacing:9.720000px;}
.wsc7{word-spacing:9.780000px;}
.wsb2{word-spacing:10.080000px;}
.wse4{word-spacing:10.140000px;}
.wsd9{word-spacing:10.200000px;}
.wsa3{word-spacing:10.260000px;}
.ws9e{word-spacing:10.320000px;}
.wsde{word-spacing:10.380000px;}
.wsdc{word-spacing:10.440000px;}
.ws76{word-spacing:10.560000px;}
.ws14{word-spacing:10.620000px;}
.ws30{word-spacing:10.920000px;}
.wse5{word-spacing:10.980000px;}
.wse8{word-spacing:11.280000px;}
.wse0{word-spacing:11.400000px;}
.ws49{word-spacing:11.460000px;}
.ws81{word-spacing:11.520000px;}
.ws34{word-spacing:11.700000px;}
.ws7c{word-spacing:11.760000px;}
.wsbe{word-spacing:11.820000px;}
.ws87{word-spacing:11.940000px;}
.wsdb{word-spacing:12.240000px;}
.ws4b{word-spacing:12.300000px;}
.wsaf{word-spacing:12.420000px;}
.wse9{word-spacing:12.600000px;}
.ws8b{word-spacing:12.960000px;}
.wsea{word-spacing:13.020000px;}
.wse6{word-spacing:13.200000px;}
.ws9a{word-spacing:13.260000px;}
.wsdf{word-spacing:13.500000px;}
.wsb8{word-spacing:13.980000px;}
.ws38{word-spacing:14.040000px;}
.wsc6{word-spacing:14.520000px;}
.wsdd{word-spacing:14.580000px;}
.wsda{word-spacing:15.000000px;}
.ws12{word-spacing:25.020000px;}
.wsd4{word-spacing:208.764000px;}
.ws8d{word-spacing:384.480000px;}
.wsd5{word-spacing:544.590000px;}
._6{margin-left:-2160.853200px;}
._24{margin-left:-68.796000px;}
._4{margin-left:-18.240000px;}
._e{margin-left:-17.160000px;}
._c{margin-left:-10.584000px;}
._8{margin-left:-7.920000px;}
._9{margin-left:-6.912000px;}
._25{margin-left:-5.832000px;}
._3{margin-left:-4.620000px;}
._0{margin-left:-3.552000px;}
._2{margin-left:-1.728000px;}
._f{width:1.152000px;}
._26{width:2.940000px;}
._27{width:4.224000px;}
._28{width:6.360000px;}
._d{width:8.640000px;}
._21{width:33.858000px;}
._1a{width:38.274000px;}
._5{width:51.600000px;}
._1b{width:56.310000px;}
._7{width:57.552000px;}
._15{width:68.796000px;}
._1e{width:73.332000px;}
._22{width:139.806000px;}
._1d{width:161.514000px;}
._19{width:186.612000px;}
._13{width:207.696000px;}
._20{width:209.436000px;}
._12{width:256.692000px;}
._a{width:273.402000px;}
._1c{width:281.502000px;}
._17{width:319.302000px;}
._1f{width:356.508000px;}
._16{width:377.568000px;}
._b{width:416.394000px;}
._18{width:479.130000px;}
._23{width:641.898000px;}
._14{width:710.694000px;}
._1{width:748.560000px;}
._10{width:783.648000px;}
._11{width:1459.038000px;}
.fc2{color:rgb(51,50,50);}
.fc4{color:rgb(144,142,142);}
.fc1{color:rgb(131,129,129);}
.fc3{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.000000px;}
.fs4{font-size:50.400600px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y14{bottom:41.250000px;}
.y11{bottom:42.000000px;}
.y13{bottom:61.500000px;}
.y10{bottom:66.000000px;}
.y15{bottom:76.534950px;}
.y38{bottom:77.054700px;}
.y12{bottom:81.750000px;}
.yf{bottom:90.000000px;}
.ye{bottom:114.000000px;}
.y36{bottom:119.053650px;}
.y5f{bottom:121.193550px;}
.y8c{bottom:121.446150px;}
.yb5{bottom:122.596200px;}
.ybf{bottom:122.649900px;}
.y35{bottom:133.513650px;}
.y5e{bottom:139.268550px;}
.y87{bottom:139.521150px;}
.yb4{bottom:140.671200px;}
.ybe{bottom:140.724900px;}
.y34{bottom:147.973650px;}
.y5d{bottom:157.343550px;}
.y86{bottom:157.596150px;}
.yb3{bottom:158.746200px;}
.ybd{bottom:158.799900px;}
.y33{bottom:162.433650px;}
.y5c{bottom:175.418550px;}
.y85{bottom:175.671150px;}
.yb2{bottom:176.821200px;}
.ybc{bottom:176.874900px;}
.y32{bottom:176.893650px;}
.y31{bottom:191.353650px;}
.y5b{bottom:193.493550px;}
.y84{bottom:193.746150px;}
.yb1{bottom:194.896200px;}
.ybb{bottom:194.949900px;}
.y30{bottom:205.813650px;}
.y5a{bottom:211.568550px;}
.y83{bottom:211.821150px;}
.yb0{bottom:212.971200px;}
.yba{bottom:213.024900px;}
.y2f{bottom:220.273650px;}
.y59{bottom:229.643550px;}
.y82{bottom:229.896150px;}
.yaf{bottom:231.046200px;}
.yb9{bottom:231.099900px;}
.y2e{bottom:234.733650px;}
.y58{bottom:247.718550px;}
.y81{bottom:247.971150px;}
.yae{bottom:249.121200px;}
.yb8{bottom:249.174900px;}
.y2d{bottom:249.193650px;}
.y57{bottom:265.793550px;}
.y80{bottom:266.046150px;}
.yad{bottom:267.196200px;}
.yb7{bottom:267.249900px;}
.y56{bottom:283.868550px;}
.y7f{bottom:284.121150px;}
.yac{bottom:285.271200px;}
.yb6{bottom:285.324900px;}
.y55{bottom:301.943550px;}
.y7e{bottom:302.196150px;}
.yab{bottom:303.346200px;}
.y54{bottom:320.018550px;}
.y7d{bottom:320.271150px;}
.yaa{bottom:321.421200px;}
.ydc{bottom:321.917400px;}
.y2c{bottom:336.362850px;}
.y53{bottom:338.093550px;}
.y7c{bottom:338.346150px;}
.ya9{bottom:339.496200px;}
.ydb{bottom:344.502450px;}
.y2b{bottom:352.630350px;}
.y52{bottom:356.168550px;}
.y7b{bottom:356.421150px;}
.ya8{bottom:357.571200px;}
.yda{bottom:367.492950px;}
.yd{bottom:367.500000px;}
.y51{bottom:374.243550px;}
.y7a{bottom:374.496150px;}
.ya7{bottom:375.646200px;}
.y2a{bottom:385.165350px;}
.yd9{bottom:388.228950px;}
.y50{bottom:392.318550px;}
.y79{bottom:392.571150px;}
.ya6{bottom:393.721200px;}
.y29{bottom:401.432850px;}
.yd8{bottom:408.708450px;}
.y4f{bottom:410.393550px;}
.y78{bottom:410.646150px;}
.ya5{bottom:411.796200px;}
.y4e{bottom:428.468550px;}
.y77{bottom:428.721150px;}
.yd7{bottom:428.877450px;}
.ya4{bottom:429.871200px;}
.yc{bottom:433.500000px;}
.y28{bottom:433.967850px;}
.y4d{bottom:446.543550px;}
.y76{bottom:446.796150px;}
.ya3{bottom:447.946200px;}
.yd6{bottom:449.802450px;}
.y27{bottom:450.235350px;}
.yb{bottom:453.750000px;}
.y4c{bottom:464.618550px;}
.y75{bottom:464.871150px;}
.ya2{bottom:466.021200px;}
.y26{bottom:466.502850px;}
.yd5{bottom:470.430450px;}
.ya{bottom:474.000000px;}
.y4b{bottom:482.693550px;}
.y25{bottom:482.770350px;}
.y74{bottom:482.946150px;}
.ya1{bottom:484.096200px;}
.y9{bottom:494.250000px;}
.yd4{bottom:495.148950px;}
.y24{bottom:499.037850px;}
.y4a{bottom:500.768550px;}
.y8b{bottom:501.021150px;}
.ya0{bottom:502.171200px;}
.y8{bottom:514.500000px;}
.y23{bottom:515.305350px;}
.y49{bottom:518.843550px;}
.y73{bottom:519.096150px;}
.y9f{bottom:520.246200px;}
.yd3{bottom:524.322450px;}
.y22{bottom:531.572850px;}
.y7{bottom:534.750000px;}
.y48{bottom:536.918550px;}
.y72{bottom:537.171150px;}
.yd0{bottom:537.214950px;}
.y9e{bottom:538.321200px;}
.yd2{bottom:552.901950px;}
.y47{bottom:554.993550px;}
.y71{bottom:555.246150px;}
.y21{bottom:564.107850px;}
.y46{bottom:573.068550px;}
.y70{bottom:573.321150px;}
.y9d{bottom:574.470900px;}
.yd1{bottom:580.522950px;}
.y45{bottom:591.143550px;}
.y6f{bottom:591.396150px;}
.y9c{bottom:597.803250px;}
.ycf{bottom:603.715950px;}
.y99{bottom:605.903250px;}
.y44{bottom:609.218550px;}
.y8a{bottom:609.471150px;}
.y1{bottom:613.500000px;}
.y9b{bottom:614.003250px;}
.y6{bottom:619.500000px;}
.y98{bottom:622.103250px;}
.yce{bottom:624.073950px;}
.y43{bottom:627.293550px;}
.y6e{bottom:627.546150px;}
.y9a{bottom:630.203250px;}
.y5{bottom:639.750000px;}
.ycd{bottom:644.040450px;}
.y42{bottom:645.368550px;}
.y6d{bottom:645.621150px;}
.y97{bottom:657.338250px;}
.y4{bottom:660.000000px;}
.y6c{bottom:663.696150px;}
.y20{bottom:666.444450px;}
.y96{bottom:673.538250px;}
.y3{bottom:680.250000px;}
.y41{bottom:681.518550px;}
.y6b{bottom:681.771150px;}
.ycb{bottom:687.352800px;}
.y1f{bottom:688.134300px;}
.yca{bottom:688.351800px;}
.yc6{bottom:688.891800px;}
.yc5{bottom:693.589800px;}
.yc7{bottom:696.208800px;}
.yc9{bottom:698.085300px;}
.y6a{bottom:699.846150px;}
.y93{bottom:700.673250px;}
.y2{bottom:704.250000px;}
.yc8{bottom:705.969300px;}
.y95{bottom:708.773250px;}
.y1e{bottom:709.824000px;}
.y91{bottom:716.873250px;}
.ycc{bottom:717.349800px;}
.y69{bottom:717.921150px;}
.y94{bottom:724.973250px;}
.yc4{bottom:728.661000px;}
.y1d{bottom:731.513700px;}
.y92{bottom:733.073250px;}
.y40{bottom:735.735450px;}
.y68{bottom:735.996150px;}
.y67{bottom:754.071150px;}
.y90{bottom:760.208250px;}
.y1c{bottom:771.277800px;}
.y66{bottom:772.146150px;}
.y3f{bottom:775.506450px;}
.y8f{bottom:776.408250px;}
.y89{bottom:790.221150px;}
.y3e{bottom:791.773950px;}
.y1b{bottom:796.582800px;}
.y3d{bottom:808.041450px;}
.y65{bottom:808.296150px;}
.y8e{bottom:811.911900px;}
.yc3{bottom:817.680000px;}
.y1a{bottom:821.887800px;}
.y3c{bottom:824.308950px;}
.y64{bottom:826.371150px;}
.y8d{bottom:828.179400px;}
.y3b{bottom:840.576450px;}
.y88{bottom:844.446150px;}
.yc2{bottom:846.030000px;}
.y3a{bottom:856.843950px;}
.y63{bottom:862.521150px;}
.y62{bottom:880.596150px;}
.yc1{bottom:880.599900px;}
.y39{bottom:889.378950px;}
.y19{bottom:891.556950px;}
.y61{bottom:898.671150px;}
.yc0{bottom:898.674900px;}
.y18{bottom:906.016950px;}
.y17{bottom:920.476950px;}
.y60{bottom:934.936200px;}
.y16{bottom:934.936950px;}
.y37{bottom:935.455950px;}
.hf{height:37.019531px;}
.h7{height:43.054688px;}
.h6{height:44.671875px;}
.hb{height:48.436523px;}
.h9{height:49.324219px;}
.h3{height:50.062500px;}
.ha{height:50.255859px;}
.hd{height:53.818359px;}
.hc{height:55.839844px;}
.h2{height:56.320312px;}
.h1{height:75.093750px;}
.h8{height:78.175781px;}
.he{height:80.836523px;}
.h4{height:1020.472500px;}
.h5{height:1020.750000px;}
.h0{height:1188.000000px;}
.w1{width:722.835000px;}
.w2{width:723.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:51.000000px;}
.xf{left:89.291400px;}
.x1b{left:93.543300px;}
.x12{left:99.013500px;}
.x10{left:106.573500px;}
.x11{left:109.723500px;}
.x18{left:114.763200px;}
.x31{left:123.303300px;}
.x17{left:131.813700px;}
.x1c{left:136.065600px;}
.x34{left:138.090300px;}
.x1a{left:157.344600px;}
.x3{left:193.410000px;}
.x23{left:199.906350px;}
.x2a{left:202.889850px;}
.x4{left:213.645000px;}
.x1d{left:214.985850px;}
.x33{left:216.686400px;}
.x1e{left:218.252850px;}
.x22{left:222.586350px;}
.x3a{left:231.753300px;}
.x24{left:247.507350px;}
.x15{left:268.791750px;}
.x6{left:272.160000px;}
.x9{left:273.420000px;}
.x13{left:275.796750px;}
.x14{left:288.211200px;}
.x16{left:289.645350px;}
.x19{left:311.282700px;}
.x5{left:333.315000px;}
.xd{left:336.540000px;}
.x32{left:342.251400px;}
.x25{left:345.044850px;}
.x26{left:348.041850px;}
.x2c{left:353.279850px;}
.x2b{left:354.589350px;}
.x1f{left:365.578350px;}
.x2d{left:375.028350px;}
.x7{left:390.360000px;}
.xc{left:397.305000px;}
.x8{left:410.610000px;}
.xe{left:422.601900px;}
.x1{left:440.235000px;}
.x2{left:480.000000px;}
.x27{left:491.803350px;}
.x2f{left:493.463850px;}
.x21{left:500.186850px;}
.x28{left:508.097850px;}
.x2e{left:510.338850px;}
.x20{left:513.821850px;}
.x35{left:520.614750px;}
.x30{left:540.700350px;}
.x29{left:541.834350px;}
.x36{left:561.762750px;}
.x37{left:582.336750px;}
.x38{left:602.910750px;}
.x39{left:623.484750px;}
.xb{left:653.175000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.162133pt;}
.v2{vertical-align:28.800000pt;}
.ls11{letter-spacing:-1.066667pt;}
.ls10{letter-spacing:-0.906667pt;}
.ls9{letter-spacing:-0.800000pt;}
.ls5{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.106667pt;}
.ls4{letter-spacing:-0.053333pt;}
.ls3{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.533333pt;}
.lsf{letter-spacing:1.066667pt;}
.lsc{letter-spacing:61.152000pt;}
.lsb{letter-spacing:659.664000pt;}
.lsd{letter-spacing:701.232000pt;}
.wsc4{word-spacing:-13.333333pt;}
.ws8c{word-spacing:-12.000000pt;}
.wse7{word-spacing:-4.213333pt;}
.ws8f{word-spacing:-2.976000pt;}
.ws16{word-spacing:-1.333333pt;}
.wsa9{word-spacing:-1.280000pt;}
.ws7f{word-spacing:-1.226667pt;}
.wse{word-spacing:-1.200000pt;}
.ws1e{word-spacing:-1.120000pt;}
.ws41{word-spacing:-1.066667pt;}
.wseb{word-spacing:-1.013333pt;}
.wscf{word-spacing:-0.960000pt;}
.ws44{word-spacing:-0.906667pt;}
.wsd{word-spacing:-0.864000pt;}
.wse3{word-spacing:-0.853333pt;}
.ws6b{word-spacing:-0.800000pt;}
.ws1{word-spacing:-0.768000pt;}
.ws42{word-spacing:-0.746667pt;}
.ws60{word-spacing:-0.693333pt;}
.ws57{word-spacing:-0.640000pt;}
.ws33{word-spacing:-0.586667pt;}
.ws7{word-spacing:-0.576000pt;}
.wsd1{word-spacing:-0.533333pt;}
.wsf{word-spacing:-0.480000pt;}
.ws5f{word-spacing:-0.426667pt;}
.wsce{word-spacing:-0.373333pt;}
.ws20{word-spacing:-0.320000pt;}
.wsd7{word-spacing:-0.288000pt;}
.wsa6{word-spacing:-0.266667pt;}
.wsca{word-spacing:-0.213333pt;}
.ws94{word-spacing:-0.160000pt;}
.wsc8{word-spacing:-0.106667pt;}
.wsa5{word-spacing:-0.053333pt;}
.wsa{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws26{word-spacing:0.053333pt;}
.ws91{word-spacing:0.160000pt;}
.ws52{word-spacing:0.213333pt;}
.ws68{word-spacing:0.266667pt;}
.ws11{word-spacing:0.288000pt;}
.ws21{word-spacing:0.320000pt;}
.ws82{word-spacing:0.373333pt;}
.ws43{word-spacing:0.426667pt;}
.ws7e{word-spacing:0.480000pt;}
.ws86{word-spacing:0.533333pt;}
.ws78{word-spacing:0.586667pt;}
.ws1c{word-spacing:0.640000pt;}
.wsd8{word-spacing:0.693333pt;}
.wsac{word-spacing:0.746667pt;}
.ws3d{word-spacing:0.800000pt;}
.ws85{word-spacing:0.853333pt;}
.ws63{word-spacing:0.906667pt;}
.ws55{word-spacing:0.960000pt;}
.ws24{word-spacing:1.013333pt;}
.wsc{word-spacing:1.066667pt;}
.ws54{word-spacing:1.120000pt;}
.ws88{word-spacing:1.173333pt;}
.wsb{word-spacing:1.194667pt;}
.ws7b{word-spacing:1.226667pt;}
.ws71{word-spacing:1.280000pt;}
.wsc3{word-spacing:1.333333pt;}
.wsd3{word-spacing:1.386667pt;}
.ws3{word-spacing:1.440000pt;}
.wsba{word-spacing:1.493333pt;}
.ws47{word-spacing:1.546667pt;}
.ws74{word-spacing:1.600000pt;}
.ws4f{word-spacing:1.653333pt;}
.wsa2{word-spacing:1.706667pt;}
.ws80{word-spacing:1.760000pt;}
.wsb5{word-spacing:1.813333pt;}
.ws3b{word-spacing:1.866667pt;}
.ws6f{word-spacing:1.920000pt;}
.ws25{word-spacing:1.973333pt;}
.ws6d{word-spacing:2.026667pt;}
.wsc5{word-spacing:2.080000pt;}
.ws4e{word-spacing:2.133333pt;}
.ws62{word-spacing:2.186667pt;}
.wsb0{word-spacing:2.240000pt;}
.ws6a{word-spacing:2.293333pt;}
.ws70{word-spacing:2.346667pt;}
.ws8{word-spacing:2.400000pt;}
.ws1d{word-spacing:2.453333pt;}
.ws45{word-spacing:2.506667pt;}
.wscd{word-spacing:2.560000pt;}
.ws75{word-spacing:2.613333pt;}
.ws18{word-spacing:2.666667pt;}
.ws5a{word-spacing:2.720000pt;}
.ws17{word-spacing:2.773333pt;}
.ws40{word-spacing:2.826667pt;}
.ws5c{word-spacing:2.880000pt;}
.wsb4{word-spacing:2.933333pt;}
.ws53{word-spacing:2.986667pt;}
.ws79{word-spacing:3.040000pt;}
.ws9d{word-spacing:3.093333pt;}
.wsa0{word-spacing:3.146667pt;}
.ws3c{word-spacing:3.200000pt;}
.ws15{word-spacing:3.253333pt;}
.wsb9{word-spacing:3.306667pt;}
.wsa4{word-spacing:3.360000pt;}
.ws2f{word-spacing:3.413333pt;}
.ws64{word-spacing:3.466667pt;}
.ws5{word-spacing:3.504000pt;}
.ws59{word-spacing:3.520000pt;}
.ws32{word-spacing:3.573333pt;}
.ws61{word-spacing:3.626667pt;}
.ws1b{word-spacing:3.680000pt;}
.wsc9{word-spacing:3.733333pt;}
.ws28{word-spacing:3.786667pt;}
.ws8e{word-spacing:3.840000pt;}
.ws1f{word-spacing:3.893333pt;}
.ws31{word-spacing:3.946667pt;}
.wsa1{word-spacing:4.000000pt;}
.ws8a{word-spacing:4.053333pt;}
.ws10{word-spacing:4.080000pt;}
.ws50{word-spacing:4.106667pt;}
.ws4d{word-spacing:4.160000pt;}
.ws65{word-spacing:4.213333pt;}
.ws6{word-spacing:4.224000pt;}
.wsbd{word-spacing:4.266667pt;}
.ws2{word-spacing:4.272000pt;}
.ws2b{word-spacing:4.320000pt;}
.wsb1{word-spacing:4.373333pt;}
.ws72{word-spacing:4.426667pt;}
.ws6c{word-spacing:4.480000pt;}
.ws48{word-spacing:4.533333pt;}
.ws9c{word-spacing:4.586667pt;}
.ws23{word-spacing:4.640000pt;}
.ws2a{word-spacing:4.693333pt;}
.ws2c{word-spacing:4.746667pt;}
.wsb7{word-spacing:4.800000pt;}
.ws92{word-spacing:4.853333pt;}
.ws4a{word-spacing:4.906667pt;}
.ws4{word-spacing:4.944000pt;}
.wsab{word-spacing:4.960000pt;}
.ws3e{word-spacing:5.013333pt;}
.wsbb{word-spacing:5.066667pt;}
.ws35{word-spacing:5.120000pt;}
.ws83{word-spacing:5.173333pt;}
.ws27{word-spacing:5.226667pt;}
.wsa7{word-spacing:5.280000pt;}
.ws9{word-spacing:5.333333pt;}
.ws90{word-spacing:5.386667pt;}
.wsa8{word-spacing:5.493333pt;}
.ws29{word-spacing:5.546667pt;}
.wscc{word-spacing:5.600000pt;}
.wsaa{word-spacing:5.653333pt;}
.ws2e{word-spacing:5.706667pt;}
.ws7d{word-spacing:5.760000pt;}
.ws4c{word-spacing:5.813333pt;}
.ws66{word-spacing:5.866667pt;}
.wsc0{word-spacing:5.920000pt;}
.ws3f{word-spacing:5.973333pt;}
.ws9f{word-spacing:6.026667pt;}
.wsc2{word-spacing:6.080000pt;}
.ws5d{word-spacing:6.133333pt;}
.wsb3{word-spacing:6.186667pt;}
.wsbf{word-spacing:6.240000pt;}
.wsad{word-spacing:6.293333pt;}
.ws89{word-spacing:6.346667pt;}
.ws98{word-spacing:6.400000pt;}
.ws7a{word-spacing:6.453333pt;}
.wsae{word-spacing:6.506667pt;}
.ws39{word-spacing:6.560000pt;}
.ws46{word-spacing:6.613333pt;}
.ws97{word-spacing:6.666667pt;}
.ws9b{word-spacing:6.720000pt;}
.wsd2{word-spacing:6.773333pt;}
.ws5b{word-spacing:6.826667pt;}
.ws96{word-spacing:6.880000pt;}
.ws2d{word-spacing:6.933333pt;}
.wsbc{word-spacing:6.986667pt;}
.ws93{word-spacing:7.040000pt;}
.wsd0{word-spacing:7.093333pt;}
.wsb6{word-spacing:7.146667pt;}
.ws84{word-spacing:7.200000pt;}
.ws19{word-spacing:7.253333pt;}
.ws1a{word-spacing:7.306667pt;}
.ws73{word-spacing:7.360000pt;}
.ws3a{word-spacing:7.413333pt;}
.ws69{word-spacing:7.466667pt;}
.wse1{word-spacing:7.520000pt;}
.ws36{word-spacing:7.573333pt;}
.ws5e{word-spacing:7.626667pt;}
.ws37{word-spacing:7.680000pt;}
.wsc1{word-spacing:7.733333pt;}
.ws51{word-spacing:7.786667pt;}
.ws6e{word-spacing:7.840000pt;}
.wsd6{word-spacing:7.893333pt;}
.ws67{word-spacing:7.946667pt;}
.ws56{word-spacing:8.000000pt;}
.ws22{word-spacing:8.053333pt;}
.ws99{word-spacing:8.160000pt;}
.wse2{word-spacing:8.213333pt;}
.ws13{word-spacing:8.320000pt;}
.wsec{word-spacing:8.426667pt;}
.ws95{word-spacing:8.480000pt;}
.ws77{word-spacing:8.533333pt;}
.wscb{word-spacing:8.586667pt;}
.ws58{word-spacing:8.640000pt;}
.wsc7{word-spacing:8.693333pt;}
.wsb2{word-spacing:8.960000pt;}
.wse4{word-spacing:9.013333pt;}
.wsd9{word-spacing:9.066667pt;}
.wsa3{word-spacing:9.120000pt;}
.ws9e{word-spacing:9.173333pt;}
.wsde{word-spacing:9.226667pt;}
.wsdc{word-spacing:9.280000pt;}
.ws76{word-spacing:9.386667pt;}
.ws14{word-spacing:9.440000pt;}
.ws30{word-spacing:9.706667pt;}
.wse5{word-spacing:9.760000pt;}
.wse8{word-spacing:10.026667pt;}
.wse0{word-spacing:10.133333pt;}
.ws49{word-spacing:10.186667pt;}
.ws81{word-spacing:10.240000pt;}
.ws34{word-spacing:10.400000pt;}
.ws7c{word-spacing:10.453333pt;}
.wsbe{word-spacing:10.506667pt;}
.ws87{word-spacing:10.613333pt;}
.wsdb{word-spacing:10.880000pt;}
.ws4b{word-spacing:10.933333pt;}
.wsaf{word-spacing:11.040000pt;}
.wse9{word-spacing:11.200000pt;}
.ws8b{word-spacing:11.520000pt;}
.wsea{word-spacing:11.573333pt;}
.wse6{word-spacing:11.733333pt;}
.ws9a{word-spacing:11.786667pt;}
.wsdf{word-spacing:12.000000pt;}
.wsb8{word-spacing:12.426667pt;}
.ws38{word-spacing:12.480000pt;}
.wsc6{word-spacing:12.906667pt;}
.wsdd{word-spacing:12.960000pt;}
.wsda{word-spacing:13.333333pt;}
.ws12{word-spacing:22.240000pt;}
.wsd4{word-spacing:185.568000pt;}
.ws8d{word-spacing:341.760000pt;}
.wsd5{word-spacing:484.080000pt;}
._6{margin-left:-1920.758400pt;}
._24{margin-left:-61.152000pt;}
._4{margin-left:-16.213333pt;}
._e{margin-left:-15.253333pt;}
._c{margin-left:-9.408000pt;}
._8{margin-left:-7.040000pt;}
._9{margin-left:-6.144000pt;}
._25{margin-left:-5.184000pt;}
._3{margin-left:-4.106667pt;}
._0{margin-left:-3.157333pt;}
._2{margin-left:-1.536000pt;}
._f{width:1.024000pt;}
._26{width:2.613333pt;}
._27{width:3.754667pt;}
._28{width:5.653333pt;}
._d{width:7.680000pt;}
._21{width:30.096000pt;}
._1a{width:34.021333pt;}
._5{width:45.866667pt;}
._1b{width:50.053333pt;}
._7{width:51.157333pt;}
._15{width:61.152000pt;}
._1e{width:65.184000pt;}
._22{width:124.272000pt;}
._1d{width:143.568000pt;}
._19{width:165.877333pt;}
._13{width:184.618667pt;}
._20{width:186.165333pt;}
._12{width:228.170667pt;}
._a{width:243.024000pt;}
._1c{width:250.224000pt;}
._17{width:283.824000pt;}
._1f{width:316.896000pt;}
._16{width:335.616000pt;}
._b{width:370.128000pt;}
._18{width:425.893333pt;}
._23{width:570.576000pt;}
._14{width:631.728000pt;}
._1{width:665.386667pt;}
._10{width:696.576000pt;}
._11{width:1296.922667pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:44.800533pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:36.666667pt;}
.y11{bottom:37.333333pt;}
.y13{bottom:54.666667pt;}
.y10{bottom:58.666667pt;}
.y15{bottom:68.031067pt;}
.y38{bottom:68.493067pt;}
.y12{bottom:72.666667pt;}
.yf{bottom:80.000000pt;}
.ye{bottom:101.333333pt;}
.y36{bottom:105.825467pt;}
.y5f{bottom:107.727600pt;}
.y8c{bottom:107.952133pt;}
.yb5{bottom:108.974400pt;}
.ybf{bottom:109.022133pt;}
.y35{bottom:118.678800pt;}
.y5e{bottom:123.794267pt;}
.y87{bottom:124.018800pt;}
.yb4{bottom:125.041067pt;}
.ybe{bottom:125.088800pt;}
.y34{bottom:131.532133pt;}
.y5d{bottom:139.860933pt;}
.y86{bottom:140.085467pt;}
.yb3{bottom:141.107733pt;}
.ybd{bottom:141.155467pt;}
.y33{bottom:144.385467pt;}
.y5c{bottom:155.927600pt;}
.y85{bottom:156.152133pt;}
.yb2{bottom:157.174400pt;}
.ybc{bottom:157.222133pt;}
.y32{bottom:157.238800pt;}
.y31{bottom:170.092133pt;}
.y5b{bottom:171.994267pt;}
.y84{bottom:172.218800pt;}
.yb1{bottom:173.241067pt;}
.ybb{bottom:173.288800pt;}
.y30{bottom:182.945467pt;}
.y5a{bottom:188.060933pt;}
.y83{bottom:188.285467pt;}
.yb0{bottom:189.307733pt;}
.yba{bottom:189.355467pt;}
.y2f{bottom:195.798800pt;}
.y59{bottom:204.127600pt;}
.y82{bottom:204.352133pt;}
.yaf{bottom:205.374400pt;}
.yb9{bottom:205.422133pt;}
.y2e{bottom:208.652133pt;}
.y58{bottom:220.194267pt;}
.y81{bottom:220.418800pt;}
.yae{bottom:221.441067pt;}
.yb8{bottom:221.488800pt;}
.y2d{bottom:221.505467pt;}
.y57{bottom:236.260933pt;}
.y80{bottom:236.485467pt;}
.yad{bottom:237.507733pt;}
.yb7{bottom:237.555467pt;}
.y56{bottom:252.327600pt;}
.y7f{bottom:252.552133pt;}
.yac{bottom:253.574400pt;}
.yb6{bottom:253.622133pt;}
.y55{bottom:268.394267pt;}
.y7e{bottom:268.618800pt;}
.yab{bottom:269.641067pt;}
.y54{bottom:284.460933pt;}
.y7d{bottom:284.685467pt;}
.yaa{bottom:285.707733pt;}
.ydc{bottom:286.148800pt;}
.y2c{bottom:298.989200pt;}
.y53{bottom:300.527600pt;}
.y7c{bottom:300.752133pt;}
.ya9{bottom:301.774400pt;}
.ydb{bottom:306.224400pt;}
.y2b{bottom:313.449200pt;}
.y52{bottom:316.594267pt;}
.y7b{bottom:316.818800pt;}
.ya8{bottom:317.841067pt;}
.yda{bottom:326.660400pt;}
.yd{bottom:326.666667pt;}
.y51{bottom:332.660933pt;}
.y7a{bottom:332.885467pt;}
.ya7{bottom:333.907733pt;}
.y2a{bottom:342.369200pt;}
.yd9{bottom:345.092400pt;}
.y50{bottom:348.727600pt;}
.y79{bottom:348.952133pt;}
.ya6{bottom:349.974400pt;}
.y29{bottom:356.829200pt;}
.yd8{bottom:363.296400pt;}
.y4f{bottom:364.794267pt;}
.y78{bottom:365.018800pt;}
.ya5{bottom:366.041067pt;}
.y4e{bottom:380.860933pt;}
.y77{bottom:381.085467pt;}
.yd7{bottom:381.224400pt;}
.ya4{bottom:382.107733pt;}
.yc{bottom:385.333333pt;}
.y28{bottom:385.749200pt;}
.y4d{bottom:396.927600pt;}
.y76{bottom:397.152133pt;}
.ya3{bottom:398.174400pt;}
.yd6{bottom:399.824400pt;}
.y27{bottom:400.209200pt;}
.yb{bottom:403.333333pt;}
.y4c{bottom:412.994267pt;}
.y75{bottom:413.218800pt;}
.ya2{bottom:414.241067pt;}
.y26{bottom:414.669200pt;}
.yd5{bottom:418.160400pt;}
.ya{bottom:421.333333pt;}
.y4b{bottom:429.060933pt;}
.y25{bottom:429.129200pt;}
.y74{bottom:429.285467pt;}
.ya1{bottom:430.307733pt;}
.y9{bottom:439.333333pt;}
.yd4{bottom:440.132400pt;}
.y24{bottom:443.589200pt;}
.y4a{bottom:445.127600pt;}
.y8b{bottom:445.352133pt;}
.ya0{bottom:446.374400pt;}
.y8{bottom:457.333333pt;}
.y23{bottom:458.049200pt;}
.y49{bottom:461.194267pt;}
.y73{bottom:461.418800pt;}
.y9f{bottom:462.441067pt;}
.yd3{bottom:466.064400pt;}
.y22{bottom:472.509200pt;}
.y7{bottom:475.333333pt;}
.y48{bottom:477.260933pt;}
.y72{bottom:477.485467pt;}
.yd0{bottom:477.524400pt;}
.y9e{bottom:478.507733pt;}
.yd2{bottom:491.468400pt;}
.y47{bottom:493.327600pt;}
.y71{bottom:493.552133pt;}
.y21{bottom:501.429200pt;}
.y46{bottom:509.394267pt;}
.y70{bottom:509.618800pt;}
.y9d{bottom:510.640800pt;}
.yd1{bottom:516.020400pt;}
.y45{bottom:525.460933pt;}
.y6f{bottom:525.685467pt;}
.y9c{bottom:531.380667pt;}
.ycf{bottom:536.636400pt;}
.y99{bottom:538.580667pt;}
.y44{bottom:541.527600pt;}
.y8a{bottom:541.752133pt;}
.y1{bottom:545.333333pt;}
.y9b{bottom:545.780667pt;}
.y6{bottom:550.666667pt;}
.y98{bottom:552.980667pt;}
.yce{bottom:554.732400pt;}
.y43{bottom:557.594267pt;}
.y6e{bottom:557.818800pt;}
.y9a{bottom:560.180667pt;}
.y5{bottom:568.666667pt;}
.ycd{bottom:572.480400pt;}
.y42{bottom:573.660933pt;}
.y6d{bottom:573.885467pt;}
.y97{bottom:584.300667pt;}
.y4{bottom:586.666667pt;}
.y6c{bottom:589.952133pt;}
.y20{bottom:592.395067pt;}
.y96{bottom:598.700667pt;}
.y3{bottom:604.666667pt;}
.y41{bottom:605.794267pt;}
.y6b{bottom:606.018800pt;}
.ycb{bottom:610.980267pt;}
.y1f{bottom:611.674933pt;}
.yca{bottom:611.868267pt;}
.yc6{bottom:612.348267pt;}
.yc5{bottom:616.524267pt;}
.yc7{bottom:618.852267pt;}
.yc9{bottom:620.520267pt;}
.y6a{bottom:622.085467pt;}
.y93{bottom:622.820667pt;}
.y2{bottom:626.000000pt;}
.yc8{bottom:627.528267pt;}
.y95{bottom:630.020667pt;}
.y1e{bottom:630.954667pt;}
.y91{bottom:637.220667pt;}
.ycc{bottom:637.644267pt;}
.y69{bottom:638.152133pt;}
.y94{bottom:644.420667pt;}
.yc4{bottom:647.698667pt;}
.y1d{bottom:650.234400pt;}
.y92{bottom:651.620667pt;}
.y40{bottom:653.987067pt;}
.y68{bottom:654.218800pt;}
.y67{bottom:670.285467pt;}
.y90{bottom:675.740667pt;}
.y1c{bottom:685.580267pt;}
.y66{bottom:686.352133pt;}
.y3f{bottom:689.339067pt;}
.y8f{bottom:690.140667pt;}
.y89{bottom:702.418800pt;}
.y3e{bottom:703.799067pt;}
.y1b{bottom:708.073600pt;}
.y3d{bottom:718.259067pt;}
.y65{bottom:718.485467pt;}
.y8e{bottom:721.699467pt;}
.yc3{bottom:726.826667pt;}
.y1a{bottom:730.566933pt;}
.y3c{bottom:732.719067pt;}
.y64{bottom:734.552133pt;}
.y8d{bottom:736.159467pt;}
.y3b{bottom:747.179067pt;}
.y88{bottom:750.618800pt;}
.yc2{bottom:752.026667pt;}
.y3a{bottom:761.639067pt;}
.y63{bottom:766.685467pt;}
.y62{bottom:782.752133pt;}
.yc1{bottom:782.755467pt;}
.y39{bottom:790.559067pt;}
.y19{bottom:792.495067pt;}
.y61{bottom:798.818800pt;}
.yc0{bottom:798.822133pt;}
.y18{bottom:805.348400pt;}
.y17{bottom:818.201733pt;}
.y60{bottom:831.054400pt;}
.y16{bottom:831.055067pt;}
.y37{bottom:831.516400pt;}
.hf{height:32.906250pt;}
.h7{height:38.270833pt;}
.h6{height:39.708333pt;}
.hb{height:43.054688pt;}
.h9{height:43.843750pt;}
.h3{height:44.500000pt;}
.ha{height:44.671875pt;}
.hd{height:47.838542pt;}
.hc{height:49.635417pt;}
.h2{height:50.062500pt;}
.h1{height:66.750000pt;}
.h8{height:69.489583pt;}
.he{height:71.854688pt;}
.h4{height:907.086667pt;}
.h5{height:907.333333pt;}
.h0{height:1056.000000pt;}
.w1{width:642.520000pt;}
.w2{width:642.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:45.333333pt;}
.xf{left:79.370133pt;}
.x1b{left:83.149600pt;}
.x12{left:88.012000pt;}
.x10{left:94.732000pt;}
.x11{left:97.532000pt;}
.x18{left:102.011733pt;}
.x31{left:109.602933pt;}
.x17{left:117.167733pt;}
.x1c{left:120.947200pt;}
.x34{left:122.746933pt;}
.x1a{left:139.861867pt;}
.x3{left:171.920000pt;}
.x23{left:177.694533pt;}
.x2a{left:180.346533pt;}
.x4{left:189.906667pt;}
.x1d{left:191.098533pt;}
.x33{left:192.610133pt;}
.x1e{left:194.002533pt;}
.x22{left:197.854533pt;}
.x3a{left:206.002933pt;}
.x24{left:220.006533pt;}
.x15{left:238.926000pt;}
.x6{left:241.920000pt;}
.x9{left:243.040000pt;}
.x13{left:245.152667pt;}
.x14{left:256.187733pt;}
.x16{left:257.462533pt;}
.x19{left:276.695733pt;}
.x5{left:296.280000pt;}
.xd{left:299.146667pt;}
.x32{left:304.223467pt;}
.x25{left:306.706533pt;}
.x26{left:309.370533pt;}
.x2c{left:314.026533pt;}
.x2b{left:315.190533pt;}
.x1f{left:324.958533pt;}
.x2d{left:333.358533pt;}
.x7{left:346.986667pt;}
.xc{left:353.160000pt;}
.x8{left:364.986667pt;}
.xe{left:375.646133pt;}
.x1{left:391.320000pt;}
.x2{left:426.666667pt;}
.x27{left:437.158533pt;}
.x2f{left:438.634533pt;}
.x21{left:444.610533pt;}
.x28{left:451.642533pt;}
.x2e{left:453.634533pt;}
.x20{left:456.730533pt;}
.x35{left:462.768667pt;}
.x30{left:480.622533pt;}
.x29{left:481.630533pt;}
.x36{left:499.344667pt;}
.x37{left:517.632667pt;}
.x38{left:535.920667pt;}
.x39{left:554.208667pt;}
.xb{left:580.600000pt;}
}




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