
    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_3a0048a3965837c02cdb2d96.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_b9f3b26c24aead335e489769.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962000;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_3584219b37321b85c2abcc03.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_6d8b1499a9dfec7079952dbe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080000;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_d6c8c1afd5dc17d7d100e906.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.117000;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_ca9cd08d914b92408a968848.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_a9f45f6ac4ab8ec275698dac.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_fbe098861943b522865fd59f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.881836;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_f082b59bebead21b4ff7330e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978000;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;}
.m6{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{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;}
.ls3{letter-spacing:-3.497340px;}
.ls1{letter-spacing:-2.772660px;}
.ls4{letter-spacing:-1.649340px;}
.ls5{letter-spacing:-0.924660px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180600px;}
.ls8{letter-spacing:0.300000px;}
.ls9{letter-spacing:0.720000px;}
.ls7{letter-spacing:23.423415px;}
.ls6{letter-spacing:50.747415px;}
.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;}
}
.wsae{word-spacing:-17.280000px;}
.ws34{word-spacing:-15.240000px;}
.ws7c{word-spacing:-14.915340px;}
.ws3{word-spacing:-14.580600px;}
.ws4{word-spacing:-14.400000px;}
.ws4f{word-spacing:-14.190660px;}
.wsc6{word-spacing:-13.716000px;}
.ws0{word-spacing:-13.166044px;}
.ws2{word-spacing:-13.067340px;}
.wsc5{word-spacing:-12.912000px;}
.ws16{word-spacing:-12.342660px;}
.wsaf{word-spacing:-12.192000px;}
.ws15{word-spacing:-9.906000px;}
.ws62{word-spacing:-3.420600px;}
.ws88{word-spacing:-2.940000px;}
.ws23{word-spacing:-2.580000px;}
.ws25{word-spacing:-2.399400px;}
.ws41{word-spacing:-2.340000px;}
.ws9d{word-spacing:-2.279400px;}
.wsab{word-spacing:-2.220000px;}
.ws17{word-spacing:-2.160000px;}
.ws52{word-spacing:-2.040000px;}
.ws4c{word-spacing:-1.980000px;}
.wsb9{word-spacing:-1.968000px;}
.ws42{word-spacing:-1.920000px;}
.ws8f{word-spacing:-1.860600px;}
.ws1e{word-spacing:-1.680000px;}
.wsc8{word-spacing:-1.632000px;}
.ws8c{word-spacing:-1.619400px;}
.ws84{word-spacing:-1.566540px;}
.ws94{word-spacing:-1.560000px;}
.ws6c{word-spacing:-1.499400px;}
.ws95{word-spacing:-1.440000px;}
.wsc4{word-spacing:-1.392480px;}
.ws14{word-spacing:-1.379400px;}
.wsa6{word-spacing:-1.349460px;}
.wsaa{word-spacing:-1.320000px;}
.wsb3{word-spacing:-1.200000px;}
.ws20{word-spacing:-1.140000px;}
.wsa4{word-spacing:-1.134000px;}
.ws59{word-spacing:-1.080600px;}
.wsbc{word-spacing:-1.056000px;}
.ws6e{word-spacing:-1.020000px;}
.ws4a{word-spacing:-0.960600px;}
.ws54{word-spacing:-0.900000px;}
.ws53{word-spacing:-0.840600px;}
.wsbf{word-spacing:-0.720000px;}
.wsba{word-spacing:-0.624000px;}
.ws5c{word-spacing:-0.480000px;}
.wsc9{word-spacing:-0.479520px;}
.wsa9{word-spacing:-0.432000px;}
.ws1b{word-spacing:-0.360000px;}
.ws4b{word-spacing:-0.300000px;}
.ws19{word-spacing:-0.180600px;}
.ws7{word-spacing:-0.120000px;}
.ws1{word-spacing:0.000000px;}
.ws2e{word-spacing:0.108000px;}
.ws24{word-spacing:0.120000px;}
.wsb{word-spacing:0.180600px;}
.ws48{word-spacing:0.240000px;}
.ws86{word-spacing:0.270000px;}
.ws5{word-spacing:0.300000px;}
.ws5e{word-spacing:0.360000px;}
.wsbd{word-spacing:0.384000px;}
.ws71{word-spacing:0.420000px;}
.ws6{word-spacing:0.480000px;}
.wsc3{word-spacing:0.528000px;}
.ws74{word-spacing:0.540000px;}
.ws90{word-spacing:0.599400px;}
.wsf{word-spacing:0.660000px;}
.wsbb{word-spacing:0.672480px;}
.ws83{word-spacing:0.780000px;}
.ws72{word-spacing:0.840600px;}
.ws68{word-spacing:1.020000px;}
.wsb7{word-spacing:1.056000px;}
.ws55{word-spacing:1.140000px;}
.ws9{word-spacing:1.200000px;}
.wsb1{word-spacing:1.260000px;}
.ws2c{word-spacing:1.296000px;}
.wse{word-spacing:1.320000px;}
.wsb0{word-spacing:1.379400px;}
.ws8{word-spacing:1.499400px;}
.wscf{word-spacing:1.536000px;}
.ws99{word-spacing:1.560000px;}
.ws67{word-spacing:1.619400px;}
.ws35{word-spacing:1.680000px;}
.ws91{word-spacing:1.740600px;}
.ws85{word-spacing:1.836000px;}
.ws11{word-spacing:1.860600px;}
.ws3f{word-spacing:1.920000px;}
.ws82{word-spacing:1.980000px;}
.ws3d{word-spacing:2.040000px;}
.ws45{word-spacing:2.100000px;}
.ws7e{word-spacing:2.106000px;}
.wsa3{word-spacing:2.160000px;}
.wsc0{word-spacing:2.208480px;}
.ws75{word-spacing:2.220000px;}
.wsa{word-spacing:2.279400px;}
.ws1f{word-spacing:2.340000px;}
.ws3c{word-spacing:2.399400px;}
.wsc7{word-spacing:2.400000px;}
.ws80{word-spacing:2.430000px;}
.ws3b{word-spacing:2.520600px;}
.ws38{word-spacing:2.580000px;}
.ws56{word-spacing:2.700000px;}
.ws2b{word-spacing:2.753460px;}
.ws79{word-spacing:2.760600px;}
.wsa8{word-spacing:2.808000px;}
.ws5f{word-spacing:2.820000px;}
.ws76{word-spacing:2.880000px;}
.ws51{word-spacing:2.940000px;}
.ws81{word-spacing:2.969460px;}
.ws7a{word-spacing:3.000000px;}
.ws21{word-spacing:3.059400px;}
.wsac{word-spacing:3.120000px;}
.ws6b{word-spacing:3.179400px;}
.ws29{word-spacing:3.186540px;}
.ws70{word-spacing:3.240000px;}
.wsc{word-spacing:3.299400px;}
.ws57{word-spacing:3.360000px;}
.wscb{word-spacing:3.456480px;}
.ws10{word-spacing:3.600000px;}
.ws12{word-spacing:3.780000px;}
.ws46{word-spacing:3.840000px;}
.ws92{word-spacing:3.900000px;}
.ws9c{word-spacing:3.959400px;}
.ws49{word-spacing:4.020000px;}
.wsa5{word-spacing:4.104000px;}
.ws87{word-spacing:4.140000px;}
.ws33{word-spacing:4.200600px;}
.ws69{word-spacing:4.260000px;}
.ws66{word-spacing:4.320600px;}
.ws78{word-spacing:4.500000px;}
.ws64{word-spacing:4.620000px;}
.ws26{word-spacing:4.680000px;}
.ws61{word-spacing:4.739400px;}
.wsc2{word-spacing:4.752000px;}
.ws22{word-spacing:4.800000px;}
.wsb2{word-spacing:4.859400px;}
.ws6d{word-spacing:4.920000px;}
.wsa1{word-spacing:4.979400px;}
.ws27{word-spacing:5.040000px;}
.ws7b{word-spacing:5.100600px;}
.wsb4{word-spacing:5.160000px;}
.wsca{word-spacing:5.184000px;}
.ws13{word-spacing:5.220600px;}
.ws77{word-spacing:5.280000px;}
.ws58{word-spacing:5.340000px;}
.ws37{word-spacing:5.460000px;}
.wsa7{word-spacing:5.508540px;}
.ws2f{word-spacing:5.520000px;}
.wsbe{word-spacing:5.616000px;}
.ws65{word-spacing:5.639400px;}
.ws9b{word-spacing:5.700000px;}
.ws32{word-spacing:5.759400px;}
.ws50{word-spacing:5.940000px;}
.ws2d{word-spacing:5.993460px;}
.wscd{word-spacing:6.000000px;}
.ws73{word-spacing:6.000600px;}
.ws6a{word-spacing:6.120600px;}
.ws2a{word-spacing:6.210540px;}
.ws6f{word-spacing:6.240000px;}
.ws1c{word-spacing:6.360000px;}
.wsb8{word-spacing:6.479520px;}
.ws4e{word-spacing:6.539400px;}
.ws98{word-spacing:6.600000px;}
.wsad{word-spacing:6.659400px;}
.ws8b{word-spacing:6.720000px;}
.ws5d{word-spacing:6.780600px;}
.wsa2{word-spacing:6.900600px;}
.ws1d{word-spacing:6.960000px;}
.ws8a{word-spacing:7.020000px;}
.ws93{word-spacing:7.080000px;}
.ws4d{word-spacing:7.319400px;}
.ws9f{word-spacing:7.380000px;}
.ws3e{word-spacing:7.439400px;}
.ws3a{word-spacing:7.560600px;}
.ws60{word-spacing:7.620000px;}
.ws28{word-spacing:7.800000px;}
.ws96{word-spacing:8.340600px;}
.ws47{word-spacing:8.520000px;}
.ws1a{word-spacing:8.640000px;}
.ws7d{word-spacing:8.694000px;}
.ws39{word-spacing:8.760000px;}
.ws7f{word-spacing:8.856000px;}
.ws97{word-spacing:8.879400px;}
.wsd{word-spacing:8.999400px;}
.wsb5{word-spacing:9.300000px;}
.ws30{word-spacing:9.420000px;}
.wsc1{word-spacing:9.648000px;}
.ws63{word-spacing:9.720000px;}
.ws8e{word-spacing:9.840000px;}
.ws44{word-spacing:10.200000px;}
.wsa0{word-spacing:10.260600px;}
.ws18{word-spacing:10.380000px;}
.ws9e{word-spacing:10.500000px;}
.ws36{word-spacing:10.740000px;}
.wsb6{word-spacing:11.100000px;}
.ws31{word-spacing:11.579400px;}
.ws43{word-spacing:11.640000px;}
.ws89{word-spacing:12.180000px;}
.ws8d{word-spacing:12.420000px;}
.ws9a{word-spacing:13.139400px;}
.ws5a{word-spacing:13.259400px;}
.ws40{word-spacing:13.980000px;}
.wsce{word-spacing:14.639520px;}
.ws5b{word-spacing:21.480000px;}
.wscc{word-spacing:61.295520px;}
._17{margin-left:-41.997610px;}
._11{margin-left:-15.676732px;}
._f{margin-left:-14.524867px;}
._18{margin-left:-12.243536px;}
._e{margin-left:-8.016008px;}
._16{margin-left:-6.881981px;}
._14{margin-left:-5.760000px;}
._d{margin-left:-4.611595px;}
._15{margin-left:-3.542405px;}
._b{margin-left:-2.444400px;}
._c{margin-left:-1.087195px;}
._7{width:1.775995px;}
._4{width:3.463191px;}
._5{width:4.824787px;}
._10{width:5.974484px;}
._12{width:8.904014px;}
._13{width:10.238395px;}
._0{width:11.721568px;}
._8{width:12.787165px;}
._6{width:17.286353px;}
._1{width:18.326579px;}
._9{width:22.436739px;}
._3{width:25.396731px;}
._a{width:40.551890px;}
._2{width:736.302239px;}
.fc7{color:rgb(112,111,111);}
.fc4{color:rgb(29,29,27);}
.fc5{color:rgb(74,74,73);}
.fc3{color:rgb(87,87,86);}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc6{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:0.600000px;}
.fs4{font-size:29.599920px;}
.fs3{font-size:33.828480px;}
.fs6{font-size:37.211328px;}
.fs7{font-size:38.057040px;}
.fs9{font-size:39.000000px;}
.fs2{font-size:42.285600px;}
.fs1{font-size:46.514160px;}
.fs5{font-size:47.359872px;}
.fs10{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fs0{font-size:59.199840px;}
.fsc{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fsd{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fsb{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.267615px;}
.y23{bottom:35.529000px;}
.y22{bottom:36.291450px;}
.y6a{bottom:37.366950px;}
.y21{bottom:45.087021px;}
.y20{bottom:57.074989px;}
.y8f{bottom:68.975395px;}
.y83{bottom:68.975400px;}
.y1f{bottom:69.062956px;}
.yf1{bottom:72.113548px;}
.y69{bottom:77.955299px;}
.yd7{bottom:79.463550px;}
.y105{bottom:79.775402px;}
.y1e{bottom:81.050924px;}
.y40{bottom:81.994354px;}
.yb5{bottom:83.983200px;}
.y82{bottom:86.975395px;}
.yf0{bottom:90.113548px;}
.y1d{bottom:91.294610px;}
.y104{bottom:94.175400px;}
.y68{bottom:95.955299px;}
.yd6{bottom:97.463550px;}
.y3f{bottom:99.994354px;}
.yb4{bottom:101.983200px;}
.y81{bottom:104.975395px;}
.y103{bottom:108.575397px;}
.y1c{bottom:110.703701px;}
.y67{bottom:113.955299px;}
.yd5{bottom:115.463550px;}
.yef{bottom:116.617564px;}
.y3e{bottom:117.994354px;}
.yb3{bottom:119.983200px;}
.y80{bottom:122.975395px;}
.y8e{bottom:131.479350px;}
.y66{bottom:131.955299px;}
.yd4{bottom:133.463550px;}
.y3d{bottom:135.994354px;}
.y102{bottom:137.375402px;}
.yb2{bottom:137.983200px;}
.yee{bottom:138.367504px;}
.y7f{bottom:140.975395px;}
.y65{bottom:149.955299px;}
.yd3{bottom:151.463550px;}
.y101{bottom:151.775402px;}
.y3c{bottom:153.994354px;}
.yb1{bottom:155.983200px;}
.y7e{bottom:158.975395px;}
.y100{bottom:166.175400px;}
.y1b{bottom:167.091548px;}
.y64{bottom:167.955299px;}
.yd2{bottom:169.463550px;}
.y3b{bottom:171.994354px;}
.yb0{bottom:173.983200px;}
.y1a{bottom:176.077238px;}
.y7d{bottom:176.975395px;}
.y127{bottom:179.362656px;}
.yff{bottom:180.575397px;}
.y8d{bottom:180.867153px;}
.y19{bottom:184.322930px;}
.y63{bottom:185.955299px;}
.yd1{bottom:187.463550px;}
.yed{bottom:187.755295px;}
.y3a{bottom:189.994354px;}
.y18{bottom:191.807482px;}
.yaf{bottom:191.983200px;}
.y7c{bottom:194.975395px;}
.y8c{bottom:198.867142px;}
.y17{bottom:199.302604px;}
.y62{bottom:203.955299px;}
.yd0{bottom:205.463539px;}
.yec{bottom:205.755295px;}
.y16{bottom:206.797727px;}
.y126{bottom:207.712586px;}
.y39{bottom:207.994354px;}
.yfe{bottom:209.375404px;}
.yae{bottom:209.983200px;}
.y7b{bottom:212.975395px;}
.y15{bottom:214.282278px;}
.y8b{bottom:216.867142px;}
.y14{bottom:221.777401px;}
.yeb{bottom:223.755295px;}
.yfd{bottom:223.775391px;}
.y125{bottom:224.062706px;}
.y38{bottom:225.994354px;}
.yad{bottom:227.983200px;}
.y7a{bottom:230.975395px;}
.ycf{bottom:231.967506px;}
.y61{bottom:234.711296px;}
.y8a{bottom:234.867142px;}
.y13{bottom:237.190502px;}
.yfc{bottom:238.175400px;}
.y124{bottom:240.412691px;}
.yea{bottom:241.755295px;}
.y37{bottom:243.994354px;}
.yac{bottom:245.983200px;}
.y79{bottom:248.975395px;}
.y60{bottom:250.911305px;}
.yfb{bottom:252.575409px;}
.y89{bottom:252.867142px;}
.y123{bottom:256.762676px;}
.ye9{bottom:259.755295px;}
.y36{bottom:261.994354px;}
.y78{bottom:266.975395px;}
.y5f{bottom:267.111305px;}
.y88{bottom:270.867142px;}
.yab{bottom:272.487144px;}
.y122{bottom:273.112661px;}
.ye8{bottom:277.755295px;}
.yce{bottom:281.355309px;}
.yfa{bottom:281.375404px;}
.y5e{bottom:283.311150px;}
.y77{bottom:284.975395px;}
.y35{bottom:288.498359px;}
.y87{bottom:288.867142px;}
.y121{bottom:289.462646px;}
.ye7{bottom:295.755295px;}
.yf9{bottom:295.775391px;}
.ycd{bottom:299.355309px;}
.y5d{bottom:299.511292px;}
.y12{bottom:300.851473px;}
.y76{bottom:302.975395px;}
.y120{bottom:305.812660px;}
.y86{bottom:306.867142px;}
.yf8{bottom:310.175400px;}
.y34{bottom:310.248299px;}
.ye6{bottom:313.755295px;}
.y5c{bottom:315.711296px;}
.ycc{bottom:317.355309px;}
.y75{bottom:320.975395px;}
.yaa{bottom:321.874947px;}
.yf7{bottom:324.575409px;}
.y85{bottom:324.867142px;}
.y90{bottom:329.479340px;}
.ye5{bottom:331.755295px;}
.y5b{bottom:331.911300px;}
.y74{bottom:338.975395px;}
.ycb{bottom:339.607361px;}
.ya9{bottom:339.874947px;}
.y84{bottom:342.867142px;}
.y11f{bottom:346.918510px;}
.ye4{bottom:349.755295px;}
.yf6{bottom:353.375404px;}
.y73{bottom:356.975395px;}
.yca{bottom:357.607361px;}
.ya8{bottom:357.874947px;}
.y33{bottom:359.636078px;}
.y5a{bottom:360.867142px;}
.ye3{bottom:367.755295px;}
.yf5{bottom:367.775391px;}
.y72{bottom:374.975418px;}
.y11e{bottom:375.268418px;}
.ya7{bottom:375.874947px;}
.y32{bottom:377.636078px;}
.y59{bottom:378.867142px;}
.yc9{bottom:379.859253px;}
.yf4{bottom:382.175400px;}
.ye2{bottom:385.755295px;}
.y11d{bottom:391.618538px;}
.y71{bottom:392.975418px;}
.ya6{bottom:393.874969px;}
.y31{bottom:395.636078px;}
.yf3{bottom:396.575409px;}
.y58{bottom:396.867142px;}
.yc8{bottom:397.859253px;}
.ye1{bottom:403.755295px;}
.y11c{bottom:407.968523px;}
.y70{bottom:410.975418px;}
.ya5{bottom:411.874969px;}
.y57{bottom:414.867142px;}
.yc7{bottom:415.859253px;}
.yf2{bottom:419.479340px;}
.ye0{bottom:421.755295px;}
.y11b{bottom:424.318508px;}
.y6f{bottom:428.975418px;}
.ya4{bottom:429.874969px;}
.y30{bottom:430.643829px;}
.y56{bottom:432.867142px;}
.yc6{bottom:433.859253px;}
.y11a{bottom:440.668493px;}
.y11{bottom:446.324508px;}
.y6e{bottom:446.975418px;}
.ya3{bottom:447.874969px;}
.y2f{bottom:448.643829px;}
.y55{bottom:450.867142px;}
.yc5{bottom:451.859253px;}
.ydf{bottom:452.511292px;}
.y119{bottom:457.018478px;}
.y6d{bottom:464.975418px;}
.ya2{bottom:465.874969px;}
.y2e{bottom:466.643829px;}
.yde{bottom:468.711282px;}
.y54{bottom:468.867142px;}
.y10{bottom:469.433588px;}
.y118{bottom:473.368515px;}
.yc4{bottom:474.111282px;}
.yf{bottom:481.421556px;}
.y6c{bottom:482.975418px;}
.ya1{bottom:483.874969px;}
.y2d{bottom:484.643829px;}
.ydd{bottom:484.911282px;}
.y53{bottom:486.867142px;}
.yc3{bottom:492.111282px;}
.ydc{bottom:501.111282px;}
.y2c{bottom:502.643829px;}
.ye{bottom:504.752636px;}
.y52{bottom:504.867142px;}
.y6b{bottom:509.479340px;}
.yc2{bottom:510.111282px;}
.ya0{bottom:514.630783px;}
.y117{bottom:515.230362px;}
.yd{bottom:516.740603px;}
.ydb{bottom:517.311172px;}
.y2b{bottom:520.643829px;}
.y51{bottom:522.867142px;}
.yc1{bottom:528.111282px;}
.yc{bottom:528.728571px;}
.y9f{bottom:530.830792px;}
.yda{bottom:533.511292px;}
.y2a{bottom:538.643829px;}
.yb{bottom:540.716539px;}
.y50{bottom:540.867142px;}
.yc0{bottom:546.111282px;}
.y9e{bottom:547.030792px;}
.yd9{bottom:549.711319px;}
.ya{bottom:552.704506px;}
.y4f{bottom:558.867142px;}
.y29{bottom:560.895905px;}
.y9d{bottom:563.230820px;}
.y116{bottom:564.618164px;}
.y9{bottom:564.692474px;}
.yd8{bottom:565.911300px;}
.ybf{bottom:568.363220px;}
.y8{bottom:576.669870px;}
.y4e{bottom:576.867142px;}
.y115{bottom:579.018127px;}
.ybe{bottom:586.363220px;}
.y9c{bottom:592.186661px;}
.y114{bottom:593.418137px;}
.y4d{bottom:594.867142px;}
.ybd{bottom:604.363220px;}
.y113{bottom:607.818146px;}
.y9b{bottom:610.186661px;}
.y4c{bottom:612.867142px;}
.y112{bottom:622.218155px;}
.ybc{bottom:626.615112px;}
.y9a{bottom:628.186661px;}
.y4b{bottom:630.867142px;}
.y7{bottom:632.539719px;}
.y111{bottom:636.618164px;}
.ybb{bottom:644.615112px;}
.y99{bottom:646.186661px;}
.y4a{bottom:648.867142px;}
.y6{bottom:649.020532px;}
.y110{bottom:651.018127px;}
.yba{bottom:662.615112px;}
.y28{bottom:663.935257px;}
.y98{bottom:664.186661px;}
.y10f{bottom:665.418137px;}
.y5{bottom:665.501344px;}
.y49{bottom:666.867142px;}
.y10e{bottom:679.818146px;}
.yb9{bottom:680.615112px;}
.y97{bottom:682.186661px;}
.y4{bottom:683.282439px;}
.y48{bottom:684.867142px;}
.y27{bottom:692.435257px;}
.y10d{bottom:694.218155px;}
.yb8{bottom:698.615112px;}
.y47{bottom:702.867142px;}
.y3{bottom:704.256097px;}
.y10c{bottom:708.618164px;}
.y96{bottom:712.942657px;}
.yb7{bottom:716.615112px;}
.y46{bottom:720.867142px;}
.y26{bottom:720.935257px;}
.y10b{bottom:723.018127px;}
.y2{bottom:725.240326px;}
.y95{bottom:729.142639px;}
.yb6{bottom:734.615112px;}
.y10a{bottom:737.418137px;}
.y45{bottom:738.867142px;}
.y94{bottom:745.342667px;}
.y25{bottom:749.435257px;}
.y109{bottom:751.818146px;}
.y44{bottom:756.867142px;}
.y93{bottom:761.542676px;}
.y108{bottom:766.218155px;}
.y43{bottom:774.867188px;}
.y92{bottom:777.742676px;}
.y107{bottom:780.618164px;}
.y24{bottom:788.565125px;}
.y42{bottom:792.867188px;}
.y91{bottom:793.942657px;}
.y106{bottom:795.018127px;}
.y41{bottom:833.260803px;}
.h9{height:21.933541px;}
.h7{height:25.066904px;}
.h8{height:25.168389px;}
.hc{height:28.200267px;}
.h6{height:31.333630px;}
.ha{height:31.460486px;}
.h10{height:34.359000px;}
.h5{height:34.466993px;}
.hb{height:35.093665px;}
.h1a{height:40.446000px;}
.h19{height:42.288000px;}
.h3{height:43.867081px;}
.h4{height:44.044681px;}
.h17{height:46.224000px;}
.h16{height:47.574000px;}
.h13{height:51.360000px;}
.h18{height:52.859908px;}
.h14{height:52.860000px;}
.hf{height:56.496000px;}
.h11{height:60.732000px;}
.h15{height:61.632000px;}
.h12{height:82.176000px;}
.h2{height:889.995595px;}
.h1{height:890.250000px;}
.h0{height:890.520000px;}
.hd{height:892.914000px;}
.he{height:893.250000px;}
.w1{width:629.250000px;}
.w3{width:629.292000px;}
.w2{width:629.294299px;}
.w0{width:629.295000px;}
.x0{left:0.000000px;}
.x3{left:32.961625px;}
.x1{left:38.955609px;}
.x6{left:80.787449px;}
.xd{left:87.686851px;}
.x7{left:93.543303px;}
.xe{left:95.669249px;}
.x2{left:104.878859px;}
.x11{left:212.598450px;}
.x8{left:215.577461px;}
.xc{left:217.751839px;}
.x4{left:308.653166px;}
.xf{left:383.255859px;}
.xa{left:445.146606px;}
.x10{left:485.027847px;}
.x5{left:523.738495px;}
.xb{left:526.917755px;}
.x9{left:548.467941px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-3.108747pt;}
.ls1{letter-spacing:-2.464587pt;}
.ls4{letter-spacing:-1.466080pt;}
.ls5{letter-spacing:-0.821920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160533pt;}
.ls8{letter-spacing:0.266667pt;}
.ls9{letter-spacing:0.640000pt;}
.ls7{letter-spacing:20.820813pt;}
.ls6{letter-spacing:45.108813pt;}
.wsae{word-spacing:-15.360000pt;}
.ws34{word-spacing:-13.546667pt;}
.ws7c{word-spacing:-13.258080pt;}
.ws3{word-spacing:-12.960533pt;}
.ws4{word-spacing:-12.800000pt;}
.ws4f{word-spacing:-12.613920pt;}
.wsc6{word-spacing:-12.192000pt;}
.ws0{word-spacing:-11.703151pt;}
.ws2{word-spacing:-11.615413pt;}
.wsc5{word-spacing:-11.477333pt;}
.ws16{word-spacing:-10.971253pt;}
.wsaf{word-spacing:-10.837333pt;}
.ws15{word-spacing:-8.805333pt;}
.ws62{word-spacing:-3.040533pt;}
.ws88{word-spacing:-2.613333pt;}
.ws23{word-spacing:-2.293333pt;}
.ws25{word-spacing:-2.132800pt;}
.ws41{word-spacing:-2.080000pt;}
.ws9d{word-spacing:-2.026133pt;}
.wsab{word-spacing:-1.973333pt;}
.ws17{word-spacing:-1.920000pt;}
.ws52{word-spacing:-1.813333pt;}
.ws4c{word-spacing:-1.760000pt;}
.wsb9{word-spacing:-1.749333pt;}
.ws42{word-spacing:-1.706667pt;}
.ws8f{word-spacing:-1.653867pt;}
.ws1e{word-spacing:-1.493333pt;}
.wsc8{word-spacing:-1.450667pt;}
.ws8c{word-spacing:-1.439467pt;}
.ws84{word-spacing:-1.392480pt;}
.ws94{word-spacing:-1.386667pt;}
.ws6c{word-spacing:-1.332800pt;}
.ws95{word-spacing:-1.280000pt;}
.wsc4{word-spacing:-1.237760pt;}
.ws14{word-spacing:-1.226133pt;}
.wsa6{word-spacing:-1.199520pt;}
.wsaa{word-spacing:-1.173333pt;}
.wsb3{word-spacing:-1.066667pt;}
.ws20{word-spacing:-1.013333pt;}
.wsa4{word-spacing:-1.008000pt;}
.ws59{word-spacing:-0.960533pt;}
.wsbc{word-spacing:-0.938667pt;}
.ws6e{word-spacing:-0.906667pt;}
.ws4a{word-spacing:-0.853867pt;}
.ws54{word-spacing:-0.800000pt;}
.ws53{word-spacing:-0.747200pt;}
.wsbf{word-spacing:-0.640000pt;}
.wsba{word-spacing:-0.554667pt;}
.ws5c{word-spacing:-0.426667pt;}
.wsc9{word-spacing:-0.426240pt;}
.wsa9{word-spacing:-0.384000pt;}
.ws1b{word-spacing:-0.320000pt;}
.ws4b{word-spacing:-0.266667pt;}
.ws19{word-spacing:-0.160533pt;}
.ws7{word-spacing:-0.106667pt;}
.ws1{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.096000pt;}
.ws24{word-spacing:0.106667pt;}
.wsb{word-spacing:0.160533pt;}
.ws48{word-spacing:0.213333pt;}
.ws86{word-spacing:0.240000pt;}
.ws5{word-spacing:0.266667pt;}
.ws5e{word-spacing:0.320000pt;}
.wsbd{word-spacing:0.341333pt;}
.ws71{word-spacing:0.373333pt;}
.ws6{word-spacing:0.426667pt;}
.wsc3{word-spacing:0.469333pt;}
.ws74{word-spacing:0.480000pt;}
.ws90{word-spacing:0.532800pt;}
.wsf{word-spacing:0.586667pt;}
.wsbb{word-spacing:0.597760pt;}
.ws83{word-spacing:0.693333pt;}
.ws72{word-spacing:0.747200pt;}
.ws68{word-spacing:0.906667pt;}
.wsb7{word-spacing:0.938667pt;}
.ws55{word-spacing:1.013333pt;}
.ws9{word-spacing:1.066667pt;}
.wsb1{word-spacing:1.120000pt;}
.ws2c{word-spacing:1.152000pt;}
.wse{word-spacing:1.173333pt;}
.wsb0{word-spacing:1.226133pt;}
.ws8{word-spacing:1.332800pt;}
.wscf{word-spacing:1.365333pt;}
.ws99{word-spacing:1.386667pt;}
.ws67{word-spacing:1.439467pt;}
.ws35{word-spacing:1.493333pt;}
.ws91{word-spacing:1.547200pt;}
.ws85{word-spacing:1.632000pt;}
.ws11{word-spacing:1.653867pt;}
.ws3f{word-spacing:1.706667pt;}
.ws82{word-spacing:1.760000pt;}
.ws3d{word-spacing:1.813333pt;}
.ws45{word-spacing:1.866667pt;}
.ws7e{word-spacing:1.872000pt;}
.wsa3{word-spacing:1.920000pt;}
.wsc0{word-spacing:1.963093pt;}
.ws75{word-spacing:1.973333pt;}
.wsa{word-spacing:2.026133pt;}
.ws1f{word-spacing:2.080000pt;}
.ws3c{word-spacing:2.132800pt;}
.wsc7{word-spacing:2.133333pt;}
.ws80{word-spacing:2.160000pt;}
.ws3b{word-spacing:2.240533pt;}
.ws38{word-spacing:2.293333pt;}
.ws56{word-spacing:2.400000pt;}
.ws2b{word-spacing:2.447520pt;}
.ws79{word-spacing:2.453867pt;}
.wsa8{word-spacing:2.496000pt;}
.ws5f{word-spacing:2.506667pt;}
.ws76{word-spacing:2.560000pt;}
.ws51{word-spacing:2.613333pt;}
.ws81{word-spacing:2.639520pt;}
.ws7a{word-spacing:2.666667pt;}
.ws21{word-spacing:2.719467pt;}
.wsac{word-spacing:2.773333pt;}
.ws6b{word-spacing:2.826133pt;}
.ws29{word-spacing:2.832480pt;}
.ws70{word-spacing:2.880000pt;}
.wsc{word-spacing:2.932800pt;}
.ws57{word-spacing:2.986667pt;}
.wscb{word-spacing:3.072427pt;}
.ws10{word-spacing:3.200000pt;}
.ws12{word-spacing:3.360000pt;}
.ws46{word-spacing:3.413333pt;}
.ws92{word-spacing:3.466667pt;}
.ws9c{word-spacing:3.519467pt;}
.ws49{word-spacing:3.573333pt;}
.wsa5{word-spacing:3.648000pt;}
.ws87{word-spacing:3.680000pt;}
.ws33{word-spacing:3.733867pt;}
.ws69{word-spacing:3.786667pt;}
.ws66{word-spacing:3.840533pt;}
.ws78{word-spacing:4.000000pt;}
.ws64{word-spacing:4.106667pt;}
.ws26{word-spacing:4.160000pt;}
.ws61{word-spacing:4.212800pt;}
.wsc2{word-spacing:4.224000pt;}
.ws22{word-spacing:4.266667pt;}
.wsb2{word-spacing:4.319467pt;}
.ws6d{word-spacing:4.373333pt;}
.wsa1{word-spacing:4.426133pt;}
.ws27{word-spacing:4.480000pt;}
.ws7b{word-spacing:4.533867pt;}
.wsb4{word-spacing:4.586667pt;}
.wsca{word-spacing:4.608000pt;}
.ws13{word-spacing:4.640533pt;}
.ws77{word-spacing:4.693333pt;}
.ws58{word-spacing:4.746667pt;}
.ws37{word-spacing:4.853333pt;}
.wsa7{word-spacing:4.896480pt;}
.ws2f{word-spacing:4.906667pt;}
.wsbe{word-spacing:4.992000pt;}
.ws65{word-spacing:5.012800pt;}
.ws9b{word-spacing:5.066667pt;}
.ws32{word-spacing:5.119467pt;}
.ws50{word-spacing:5.280000pt;}
.ws2d{word-spacing:5.327520pt;}
.wscd{word-spacing:5.333333pt;}
.ws73{word-spacing:5.333867pt;}
.ws6a{word-spacing:5.440533pt;}
.ws2a{word-spacing:5.520480pt;}
.ws6f{word-spacing:5.546667pt;}
.ws1c{word-spacing:5.653333pt;}
.wsb8{word-spacing:5.759573pt;}
.ws4e{word-spacing:5.812800pt;}
.ws98{word-spacing:5.866667pt;}
.wsad{word-spacing:5.919467pt;}
.ws8b{word-spacing:5.973333pt;}
.ws5d{word-spacing:6.027200pt;}
.wsa2{word-spacing:6.133867pt;}
.ws1d{word-spacing:6.186667pt;}
.ws8a{word-spacing:6.240000pt;}
.ws93{word-spacing:6.293333pt;}
.ws4d{word-spacing:6.506133pt;}
.ws9f{word-spacing:6.560000pt;}
.ws3e{word-spacing:6.612800pt;}
.ws3a{word-spacing:6.720533pt;}
.ws60{word-spacing:6.773333pt;}
.ws28{word-spacing:6.933333pt;}
.ws96{word-spacing:7.413867pt;}
.ws47{word-spacing:7.573333pt;}
.ws1a{word-spacing:7.680000pt;}
.ws7d{word-spacing:7.728000pt;}
.ws39{word-spacing:7.786667pt;}
.ws7f{word-spacing:7.872000pt;}
.ws97{word-spacing:7.892800pt;}
.wsd{word-spacing:7.999467pt;}
.wsb5{word-spacing:8.266667pt;}
.ws30{word-spacing:8.373333pt;}
.wsc1{word-spacing:8.576000pt;}
.ws63{word-spacing:8.640000pt;}
.ws8e{word-spacing:8.746667pt;}
.ws44{word-spacing:9.066667pt;}
.wsa0{word-spacing:9.120533pt;}
.ws18{word-spacing:9.226667pt;}
.ws9e{word-spacing:9.333333pt;}
.ws36{word-spacing:9.546667pt;}
.wsb6{word-spacing:9.866667pt;}
.ws31{word-spacing:10.292800pt;}
.ws43{word-spacing:10.346667pt;}
.ws89{word-spacing:10.826667pt;}
.ws8d{word-spacing:11.040000pt;}
.ws9a{word-spacing:11.679467pt;}
.ws5a{word-spacing:11.786133pt;}
.ws40{word-spacing:12.426667pt;}
.wsce{word-spacing:13.012907pt;}
.ws5b{word-spacing:19.093333pt;}
.wscc{word-spacing:54.484907pt;}
._17{margin-left:-37.331209pt;}
._11{margin-left:-13.934873pt;}
._f{margin-left:-12.910993pt;}
._18{margin-left:-10.883143pt;}
._e{margin-left:-7.125340pt;}
._16{margin-left:-6.117316pt;}
._14{margin-left:-5.120000pt;}
._d{margin-left:-4.099196pt;}
._15{margin-left:-3.148804pt;}
._b{margin-left:-2.172800pt;}
._c{margin-left:-0.966396pt;}
._7{width:1.578662pt;}
._4{width:3.078392pt;}
._5{width:4.288700pt;}
._10{width:5.310652pt;}
._12{width:7.914679pt;}
._13{width:9.100796pt;}
._0{width:10.419172pt;}
._8{width:11.366369pt;}
._6{width:15.365647pt;}
._1{width:16.290292pt;}
._9{width:19.943768pt;}
._3{width:22.574872pt;}
._a{width:36.046125pt;}
._2{width:654.490879pt;}
.fsf{font-size:0.533333pt;}
.fs4{font-size:26.311040pt;}
.fs3{font-size:30.069760pt;}
.fs6{font-size:33.076736pt;}
.fs7{font-size:33.828480pt;}
.fs9{font-size:34.666667pt;}
.fs2{font-size:37.587200pt;}
.fs1{font-size:41.345920pt;}
.fs5{font-size:42.097664pt;}
.fs10{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fs0{font-size:52.622080pt;}
.fsc{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fsd{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fsb{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.237880pt;}
.y23{bottom:31.581333pt;}
.y22{bottom:32.259066pt;}
.y6a{bottom:33.215067pt;}
.y21{bottom:40.077352pt;}
.y20{bottom:50.733323pt;}
.y8f{bottom:61.311462pt;}
.y83{bottom:61.311467pt;}
.y1f{bottom:61.389294pt;}
.yf1{bottom:64.100932pt;}
.y69{bottom:69.293599pt;}
.yd7{bottom:70.634267pt;}
.y105{bottom:70.911469pt;}
.y1e{bottom:72.045266pt;}
.y40{bottom:72.883870pt;}
.yb5{bottom:74.651733pt;}
.y82{bottom:77.311462pt;}
.yf0{bottom:80.100932pt;}
.y1d{bottom:81.150765pt;}
.y104{bottom:83.711466pt;}
.y68{bottom:85.293599pt;}
.yd6{bottom:86.634267pt;}
.y3f{bottom:88.883870pt;}
.yb4{bottom:90.651733pt;}
.y81{bottom:93.311462pt;}
.y103{bottom:96.511464pt;}
.y1c{bottom:98.403290pt;}
.y67{bottom:101.293599pt;}
.yd5{bottom:102.634267pt;}
.yef{bottom:103.660057pt;}
.y3e{bottom:104.883870pt;}
.yb3{bottom:106.651733pt;}
.y80{bottom:109.311462pt;}
.y8e{bottom:116.870533pt;}
.y66{bottom:117.293599pt;}
.yd4{bottom:118.634267pt;}
.y3d{bottom:120.883870pt;}
.y102{bottom:122.111469pt;}
.yb2{bottom:122.651733pt;}
.yee{bottom:122.993337pt;}
.y7f{bottom:125.311462pt;}
.y65{bottom:133.293599pt;}
.yd3{bottom:134.634267pt;}
.y101{bottom:134.911469pt;}
.y3c{bottom:136.883870pt;}
.yb1{bottom:138.651733pt;}
.y7e{bottom:141.311462pt;}
.y100{bottom:147.711466pt;}
.y1b{bottom:148.525821pt;}
.y64{bottom:149.293599pt;}
.yd2{bottom:150.634267pt;}
.y3b{bottom:152.883870pt;}
.yb0{bottom:154.651733pt;}
.y1a{bottom:156.513101pt;}
.y7d{bottom:157.311462pt;}
.y127{bottom:159.433472pt;}
.yff{bottom:160.511464pt;}
.y8d{bottom:160.770803pt;}
.y19{bottom:163.842605pt;}
.y63{bottom:165.293599pt;}
.yd1{bottom:166.634267pt;}
.yed{bottom:166.893595pt;}
.y3a{bottom:168.883870pt;}
.y18{bottom:170.495539pt;}
.yaf{bottom:170.651733pt;}
.y7c{bottom:173.311462pt;}
.y8c{bottom:176.770793pt;}
.y17{bottom:177.157870pt;}
.y62{bottom:181.293599pt;}
.yd0{bottom:182.634257pt;}
.yec{bottom:182.893595pt;}
.y16{bottom:183.820202pt;}
.y126{bottom:184.633410pt;}
.y39{bottom:184.883870pt;}
.yfe{bottom:186.111471pt;}
.yae{bottom:186.651733pt;}
.y7b{bottom:189.311462pt;}
.y15{bottom:190.473136pt;}
.y8b{bottom:192.770793pt;}
.y14{bottom:197.135467pt;}
.yeb{bottom:198.893595pt;}
.yfd{bottom:198.911458pt;}
.y125{bottom:199.166850pt;}
.y38{bottom:200.883870pt;}
.yad{bottom:202.651733pt;}
.y7a{bottom:205.311462pt;}
.ycf{bottom:206.193339pt;}
.y61{bottom:208.632263pt;}
.y8a{bottom:208.770793pt;}
.y13{bottom:210.836002pt;}
.yfc{bottom:211.711466pt;}
.y124{bottom:213.700170pt;}
.yea{bottom:214.893595pt;}
.y37{bottom:216.883870pt;}
.yac{bottom:218.651733pt;}
.y79{bottom:221.311462pt;}
.y60{bottom:223.032271pt;}
.yfb{bottom:224.511475pt;}
.y89{bottom:224.770793pt;}
.y123{bottom:228.233490pt;}
.ye9{bottom:230.893595pt;}
.y36{bottom:232.883870pt;}
.y78{bottom:237.311462pt;}
.y5f{bottom:237.432271pt;}
.y88{bottom:240.770793pt;}
.yab{bottom:242.210795pt;}
.y122{bottom:242.766810pt;}
.ye8{bottom:246.893595pt;}
.yce{bottom:250.093608pt;}
.yfa{bottom:250.111471pt;}
.y5e{bottom:251.832133pt;}
.y77{bottom:253.311462pt;}
.y35{bottom:256.442985pt;}
.y87{bottom:256.770793pt;}
.y121{bottom:257.300130pt;}
.ye7{bottom:262.893595pt;}
.yf9{bottom:262.911458pt;}
.ycd{bottom:266.093608pt;}
.y5d{bottom:266.232259pt;}
.y12{bottom:267.423531pt;}
.y76{bottom:269.311462pt;}
.y120{bottom:271.833476pt;}
.y86{bottom:272.770793pt;}
.yf8{bottom:275.711466pt;}
.y34{bottom:275.776265pt;}
.ye6{bottom:278.893595pt;}
.y5c{bottom:280.632263pt;}
.ycc{bottom:282.093608pt;}
.y75{bottom:285.311462pt;}
.yaa{bottom:286.111064pt;}
.yf7{bottom:288.511475pt;}
.y85{bottom:288.770793pt;}
.y90{bottom:292.870524pt;}
.ye5{bottom:294.893595pt;}
.y5b{bottom:295.032267pt;}
.y74{bottom:301.311462pt;}
.ycb{bottom:301.873210pt;}
.ya9{bottom:302.111064pt;}
.y84{bottom:304.770793pt;}
.y11f{bottom:308.372009pt;}
.ye4{bottom:310.893595pt;}
.yf6{bottom:314.111471pt;}
.y73{bottom:317.311462pt;}
.yca{bottom:317.873210pt;}
.ya8{bottom:318.111064pt;}
.y33{bottom:319.676514pt;}
.y5a{bottom:320.770793pt;}
.ye3{bottom:326.893595pt;}
.yf5{bottom:326.911458pt;}
.y72{bottom:333.311483pt;}
.y11e{bottom:333.571927pt;}
.ya7{bottom:334.111064pt;}
.y32{bottom:335.676514pt;}
.y59{bottom:336.770793pt;}
.yc9{bottom:337.652669pt;}
.yf4{bottom:339.711466pt;}
.ye2{bottom:342.893595pt;}
.y11d{bottom:348.105367pt;}
.y71{bottom:349.311483pt;}
.ya6{bottom:350.111084pt;}
.y31{bottom:351.676514pt;}
.yf3{bottom:352.511475pt;}
.y58{bottom:352.770793pt;}
.yc8{bottom:353.652669pt;}
.ye1{bottom:358.893595pt;}
.y11c{bottom:362.638687pt;}
.y70{bottom:365.311483pt;}
.ya5{bottom:366.111084pt;}
.y57{bottom:368.770793pt;}
.yc7{bottom:369.652669pt;}
.yf2{bottom:372.870524pt;}
.ye0{bottom:374.893595pt;}
.y11b{bottom:377.172007pt;}
.y6f{bottom:381.311483pt;}
.ya4{bottom:382.111084pt;}
.y30{bottom:382.794515pt;}
.y56{bottom:384.770793pt;}
.yc6{bottom:385.652669pt;}
.y11a{bottom:391.705327pt;}
.y11{bottom:396.732896pt;}
.y6e{bottom:397.311483pt;}
.ya3{bottom:398.111084pt;}
.y2f{bottom:398.794515pt;}
.y55{bottom:400.770793pt;}
.yc5{bottom:401.652669pt;}
.ydf{bottom:402.232259pt;}
.y119{bottom:406.238647pt;}
.y6d{bottom:413.311483pt;}
.ya2{bottom:414.111084pt;}
.y2e{bottom:414.794515pt;}
.yde{bottom:416.632251pt;}
.y54{bottom:416.770793pt;}
.y10{bottom:417.274301pt;}
.y118{bottom:420.772013pt;}
.yc4{bottom:421.432251pt;}
.yf{bottom:427.930272pt;}
.y6c{bottom:429.311483pt;}
.ya1{bottom:430.111084pt;}
.y2d{bottom:430.794515pt;}
.ydd{bottom:431.032251pt;}
.y53{bottom:432.770793pt;}
.yc3{bottom:437.432251pt;}
.ydc{bottom:445.432251pt;}
.y2c{bottom:446.794515pt;}
.ye{bottom:448.669010pt;}
.y52{bottom:448.770793pt;}
.y6b{bottom:452.870524pt;}
.yc2{bottom:453.432251pt;}
.ya0{bottom:457.449585pt;}
.y117{bottom:457.982544pt;}
.yd{bottom:459.324981pt;}
.ydb{bottom:459.832153pt;}
.y2b{bottom:462.794515pt;}
.y51{bottom:464.770793pt;}
.yc1{bottom:469.432251pt;}
.yc{bottom:469.980952pt;}
.y9f{bottom:471.849593pt;}
.yda{bottom:474.232259pt;}
.y2a{bottom:478.794515pt;}
.yb{bottom:480.636923pt;}
.y50{bottom:480.770793pt;}
.yc0{bottom:485.432251pt;}
.y9e{bottom:486.249593pt;}
.yd9{bottom:488.632284pt;}
.ya{bottom:491.292894pt;}
.y4f{bottom:496.770793pt;}
.y29{bottom:498.574137pt;}
.y9d{bottom:500.649618pt;}
.y116{bottom:501.882812pt;}
.y9{bottom:501.948866pt;}
.yd8{bottom:503.032267pt;}
.ybf{bottom:505.211751pt;}
.y8{bottom:512.595440pt;}
.y4e{bottom:512.770793pt;}
.y115{bottom:514.682780pt;}
.ybe{bottom:521.211751pt;}
.y9c{bottom:526.388143pt;}
.y114{bottom:527.482788pt;}
.y4d{bottom:528.770793pt;}
.ybd{bottom:537.211751pt;}
.y113{bottom:540.282796pt;}
.y9b{bottom:542.388143pt;}
.y4c{bottom:544.770793pt;}
.y112{bottom:553.082804pt;}
.ybc{bottom:556.991211pt;}
.y9a{bottom:558.388143pt;}
.y4b{bottom:560.770793pt;}
.y7{bottom:562.257528pt;}
.y111{bottom:565.882812pt;}
.ybb{bottom:572.991211pt;}
.y99{bottom:574.388143pt;}
.y4a{bottom:576.770793pt;}
.y6{bottom:576.907139pt;}
.y110{bottom:578.682780pt;}
.yba{bottom:588.991211pt;}
.y28{bottom:590.164673pt;}
.y98{bottom:590.388143pt;}
.y10f{bottom:591.482788pt;}
.y5{bottom:591.556750pt;}
.y49{bottom:592.770793pt;}
.y10e{bottom:604.282796pt;}
.yb9{bottom:604.991211pt;}
.y97{bottom:606.388143pt;}
.y4{bottom:607.362168pt;}
.y48{bottom:608.770793pt;}
.y27{bottom:615.498006pt;}
.y10d{bottom:617.082804pt;}
.yb8{bottom:620.991211pt;}
.y47{bottom:624.770793pt;}
.y3{bottom:626.005419pt;}
.y10c{bottom:629.882812pt;}
.y96{bottom:633.726807pt;}
.yb7{bottom:636.991211pt;}
.y46{bottom:640.770793pt;}
.y26{bottom:640.831340pt;}
.y10b{bottom:642.682780pt;}
.y2{bottom:644.658067pt;}
.y95{bottom:648.126790pt;}
.yb6{bottom:652.991211pt;}
.y10a{bottom:655.482788pt;}
.y45{bottom:656.770793pt;}
.y94{bottom:662.526815pt;}
.y25{bottom:666.164673pt;}
.y109{bottom:668.282796pt;}
.y44{bottom:672.770793pt;}
.y93{bottom:676.926823pt;}
.y108{bottom:681.082804pt;}
.y43{bottom:688.770833pt;}
.y92{bottom:691.326823pt;}
.y107{bottom:693.882812pt;}
.y24{bottom:700.946777pt;}
.y42{bottom:704.770833pt;}
.y91{bottom:705.726807pt;}
.y106{bottom:706.682780pt;}
.y41{bottom:740.676270pt;}
.h9{height:19.496481pt;}
.h7{height:22.281692pt;}
.h8{height:22.371901pt;}
.hc{height:25.066904pt;}
.h6{height:27.852115pt;}
.ha{height:27.964877pt;}
.h10{height:30.541333pt;}
.h5{height:30.637327pt;}
.hb{height:31.194369pt;}
.h1a{height:35.952000pt;}
.h19{height:37.589333pt;}
.h3{height:38.992961pt;}
.h4{height:39.150828pt;}
.h17{height:41.088000pt;}
.h16{height:42.288000pt;}
.h13{height:45.653333pt;}
.h18{height:46.986585pt;}
.h14{height:46.986667pt;}
.hf{height:50.218667pt;}
.h11{height:53.984000pt;}
.h15{height:54.784000pt;}
.h12{height:73.045333pt;}
.h2{height:791.107195pt;}
.h1{height:791.333333pt;}
.h0{height:791.573333pt;}
.hd{height:793.701333pt;}
.he{height:794.000000pt;}
.w1{width:559.333333pt;}
.w3{width:559.370667pt;}
.w2{width:559.372710pt;}
.w0{width:559.373333pt;}
.x0{left:0.000000pt;}
.x3{left:29.299222pt;}
.x1{left:34.627208pt;}
.x6{left:71.811066pt;}
.xd{left:77.943868pt;}
.x7{left:83.149602pt;}
.xe{left:85.039332pt;}
.x2{left:93.225653pt;}
.x11{left:188.976400pt;}
.x8{left:191.624410pt;}
.xc{left:193.557190pt;}
.x4{left:274.358370pt;}
.xf{left:340.671875pt;}
.xa{left:395.685872pt;}
.x10{left:431.135864pt;}
.x5{left:465.545329pt;}
.xb{left:468.371338pt;}
.x9{left:487.527059pt;}
}




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