
    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_585eb2d79ae6feab39dd66a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091000;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_3fc3c2fc8b1e80d99b257f61.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.947000;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_c71c4428938d0f71ee154d94.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.082000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7c047465710e77a1163850b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.068000;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_f0e21c6c6c821c339dbb69db.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.970000;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_f6f616c35c5cf3b7d1107b05.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.955000;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_d2bb5b4186ba0e5be4f988a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091000;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_30d6447811ab787dfc4d0c86.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.740000px;}
.ls6{letter-spacing:-1.140000px;}
.ls1{letter-spacing:-0.780000px;}
.ls3{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.300000px;}
.ls2{letter-spacing:2.811600px;}
.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;}
}
.ws0{word-spacing:-13.620000px;}
.ws106{word-spacing:-12.480000px;}
.ws107{word-spacing:-11.880000px;}
.wsbd{word-spacing:-10.896000px;}
.wsbe{word-spacing:-10.752000px;}
.ws1{word-spacing:-10.560000px;}
.wsb{word-spacing:-3.600000px;}
.ws3d{word-spacing:-3.300000px;}
.wsec{word-spacing:-3.240000px;}
.ws103{word-spacing:-3.060000px;}
.ws89{word-spacing:-3.000000px;}
.wsee{word-spacing:-2.880000px;}
.ws10a{word-spacing:-2.820000px;}
.wsa5{word-spacing:-2.760000px;}
.ws7d{word-spacing:-2.700000px;}
.ws5{word-spacing:-2.640000px;}
.wsb6{word-spacing:-2.580000px;}
.ws2c{word-spacing:-2.520000px;}
.wsf9{word-spacing:-2.460000px;}
.ws101{word-spacing:-2.400000px;}
.ws87{word-spacing:-2.340000px;}
.wsfa{word-spacing:-2.280000px;}
.wsc9{word-spacing:-2.256000px;}
.ws80{word-spacing:-2.160000px;}
.ws46{word-spacing:-2.100000px;}
.ws65{word-spacing:-2.040000px;}
.ws28{word-spacing:-1.980000px;}
.ws21{word-spacing:-1.920000px;}
.ws4c{word-spacing:-1.860000px;}
.ws44{word-spacing:-1.800000px;}
.wsf6{word-spacing:-1.740000px;}
.wsa6{word-spacing:-1.680000px;}
.ws58{word-spacing:-1.620000px;}
.ws49{word-spacing:-1.560000px;}
.ws4d{word-spacing:-1.500000px;}
.wsb1{word-spacing:-1.440000px;}
.ws4a{word-spacing:-1.380000px;}
.ws8a{word-spacing:-1.320000px;}
.ws66{word-spacing:-1.260000px;}
.wsc8{word-spacing:-1.248000px;}
.ws7e{word-spacing:-1.200000px;}
.wsa2{word-spacing:-1.140000px;}
.ws59{word-spacing:-1.080000px;}
.ws39{word-spacing:-1.020000px;}
.ws9{word-spacing:-0.960000px;}
.ws94{word-spacing:-0.900000px;}
.ws8f{word-spacing:-0.840000px;}
.wsff{word-spacing:-0.780000px;}
.wsa9{word-spacing:-0.720000px;}
.ws100{word-spacing:-0.660000px;}
.ws82{word-spacing:-0.600000px;}
.wsfc{word-spacing:-0.540000px;}
.ws8{word-spacing:-0.480000px;}
.wsd2{word-spacing:-0.432000px;}
.ws8d{word-spacing:-0.420000px;}
.wsba{word-spacing:-0.360000px;}
.wsc{word-spacing:-0.300000px;}
.ws2f{word-spacing:-0.240000px;}
.wsa7{word-spacing:-0.180000px;}
.wsae{word-spacing:-0.120000px;}
.ws34{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws8e{word-spacing:0.060000px;}
.wsbf{word-spacing:0.120000px;}
.wsdf{word-spacing:0.144000px;}
.ws42{word-spacing:0.180000px;}
.ws3e{word-spacing:0.240000px;}
.ws5b{word-spacing:0.300000px;}
.ws26{word-spacing:0.360000px;}
.ws50{word-spacing:0.420000px;}
.wsa8{word-spacing:0.480000px;}
.wsd6{word-spacing:0.528000px;}
.ws4{word-spacing:0.600000px;}
.wsb9{word-spacing:0.660000px;}
.wsaf{word-spacing:0.720000px;}
.ws13{word-spacing:0.780000px;}
.ws48{word-spacing:0.840000px;}
.wscb{word-spacing:0.864000px;}
.ws8b{word-spacing:0.900000px;}
.ws2e{word-spacing:0.960000px;}
.ws11{word-spacing:1.020000px;}
.ws37{word-spacing:1.080000px;}
.wsbb{word-spacing:1.140000px;}
.wscf{word-spacing:1.200000px;}
.ws2a{word-spacing:1.260000px;}
.ws43{word-spacing:1.320000px;}
.wsca{word-spacing:1.344000px;}
.ws32{word-spacing:1.380000px;}
.wse5{word-spacing:1.392000px;}
.ws53{word-spacing:1.440000px;}
.ws3f{word-spacing:1.500000px;}
.ws51{word-spacing:1.560000px;}
.ws6d{word-spacing:1.620000px;}
.wsb2{word-spacing:1.680000px;}
.ws20{word-spacing:1.740000px;}
.ws12{word-spacing:1.800000px;}
.ws3b{word-spacing:1.860000px;}
.ws77{word-spacing:1.920000px;}
.ws3a{word-spacing:1.980000px;}
.ws10{word-spacing:2.040000px;}
.ws67{word-spacing:2.100000px;}
.wsc3{word-spacing:2.112000px;}
.wsb7{word-spacing:2.160000px;}
.wsc7{word-spacing:2.208000px;}
.ws25{word-spacing:2.220000px;}
.ws40{word-spacing:2.280000px;}
.ws7b{word-spacing:2.340000px;}
.ws56{word-spacing:2.400000px;}
.wsd5{word-spacing:2.448000px;}
.ws6{word-spacing:2.460000px;}
.ws5a{word-spacing:2.520000px;}
.ws1d{word-spacing:2.580000px;}
.ws5e{word-spacing:2.640000px;}
.ws97{word-spacing:2.700000px;}
.ws7a{word-spacing:2.760000px;}
.ws83{word-spacing:2.820000px;}
.ws64{word-spacing:2.880000px;}
.ws74{word-spacing:2.940000px;}
.wsf2{word-spacing:3.000000px;}
.ws93{word-spacing:3.060000px;}
.ws22{word-spacing:3.120000px;}
.wsc5{word-spacing:3.168000px;}
.ws16{word-spacing:3.180000px;}
.ws14{word-spacing:3.240000px;}
.ws54{word-spacing:3.300000px;}
.ws47{word-spacing:3.360000px;}
.wsef{word-spacing:3.420000px;}
.ws71{word-spacing:3.480000px;}
.ws62{word-spacing:3.540000px;}
.ws81{word-spacing:3.600000px;}
.ws2d{word-spacing:3.660000px;}
.wse{word-spacing:3.720000px;}
.ws9a{word-spacing:3.780000px;}
.ws1f{word-spacing:3.840000px;}
.ws7{word-spacing:3.900000px;}
.wsea{word-spacing:3.960000px;}
.ws6f{word-spacing:4.020000px;}
.ws31{word-spacing:4.080000px;}
.ws7c{word-spacing:4.140000px;}
.ws88{word-spacing:4.200000px;}
.ws30{word-spacing:4.260000px;}
.ws23{word-spacing:4.320000px;}
.ws5d{word-spacing:4.380000px;}
.ws3c{word-spacing:4.440000px;}
.ws63{word-spacing:4.500000px;}
.ws55{word-spacing:4.560000px;}
.ws90{word-spacing:4.620000px;}
.ws86{word-spacing:4.680000px;}
.ws15{word-spacing:4.740000px;}
.ws18{word-spacing:4.800000px;}
.wsf0{word-spacing:4.860000px;}
.ws38{word-spacing:4.920000px;}
.ws85{word-spacing:4.980000px;}
.ws1e{word-spacing:5.040000px;}
.ws4f{word-spacing:5.100000px;}
.wsaa{word-spacing:5.160000px;}
.ws29{word-spacing:5.220000px;}
.ws9d{word-spacing:5.280000px;}
.ws24{word-spacing:5.340000px;}
.ws2b{word-spacing:5.400000px;}
.wsd{word-spacing:5.460000px;}
.ws110{word-spacing:5.520000px;}
.wsa3{word-spacing:5.580000px;}
.ws84{word-spacing:5.640000px;}
.wsfb{word-spacing:5.700000px;}
.wsa0{word-spacing:5.760000px;}
.wsc6{word-spacing:5.808000px;}
.wsad{word-spacing:5.820000px;}
.wsac{word-spacing:5.880000px;}
.wseb{word-spacing:5.940000px;}
.ws68{word-spacing:6.120000px;}
.ws75{word-spacing:6.180000px;}
.ws27{word-spacing:6.240000px;}
.wsb0{word-spacing:6.300000px;}
.wsd3{word-spacing:6.336000px;}
.ws6a{word-spacing:6.360000px;}
.wsf1{word-spacing:6.420000px;}
.ws91{word-spacing:6.480000px;}
.ws92{word-spacing:6.540000px;}
.ws4e{word-spacing:6.600000px;}
.ws57{word-spacing:6.660000px;}
.ws17{word-spacing:6.720000px;}
.ws4b{word-spacing:6.780000px;}
.wsf{word-spacing:6.840000px;}
.ws9f{word-spacing:6.900000px;}
.ws95{word-spacing:6.960000px;}
.wsf8{word-spacing:7.020000px;}
.ws7f{word-spacing:7.080000px;}
.ws41{word-spacing:7.140000px;}
.ws9b{word-spacing:7.200000px;}
.ws45{word-spacing:7.260000px;}
.wse8{word-spacing:7.344000px;}
.wsf5{word-spacing:7.440000px;}
.ws6e{word-spacing:7.500000px;}
.wsb5{word-spacing:7.560000px;}
.ws1c{word-spacing:7.620000px;}
.ws52{word-spacing:7.680000px;}
.ws8c{word-spacing:7.740000px;}
.ws73{word-spacing:7.800000px;}
.wsf7{word-spacing:7.860000px;}
.ws9c{word-spacing:7.920000px;}
.ws60{word-spacing:7.980000px;}
.wsb3{word-spacing:8.040000px;}
.wsfe{word-spacing:8.100000px;}
.ws79{word-spacing:8.160000px;}
.ws36{word-spacing:8.220000px;}
.wsd1{word-spacing:8.256000px;}
.ws35{word-spacing:8.280000px;}
.wsed{word-spacing:8.400000px;}
.ws72{word-spacing:8.520000px;}
.wsd8{word-spacing:8.688000px;}
.ws9e{word-spacing:8.700000px;}
.ws70{word-spacing:8.760000px;}
.wsf3{word-spacing:8.820000px;}
.ws99{word-spacing:8.880000px;}
.ws108{word-spacing:9.000000px;}
.wsc1{word-spacing:9.120000px;}
.ws5c{word-spacing:9.180000px;}
.wsc2{word-spacing:9.216000px;}
.wsab{word-spacing:9.300000px;}
.ws61{word-spacing:9.360000px;}
.wsb4{word-spacing:9.480000px;}
.wsfd{word-spacing:9.660000px;}
.ws6b{word-spacing:9.780000px;}
.wse7{word-spacing:9.840000px;}
.ws78{word-spacing:9.960000px;}
.ws5f{word-spacing:10.020000px;}
.wsb8{word-spacing:10.200000px;}
.ws109{word-spacing:10.260000px;}
.wsa1{word-spacing:10.440000px;}
.wse4{word-spacing:10.512000px;}
.ws10e{word-spacing:10.560000px;}
.wse9{word-spacing:10.620000px;}
.ws98{word-spacing:10.680000px;}
.ws105{word-spacing:10.800000px;}
.wsc0{word-spacing:11.160000px;}
.wsde{word-spacing:11.328000px;}
.wsa{word-spacing:11.580000px;}
.wsdd{word-spacing:11.616000px;}
.ws33{word-spacing:11.640000px;}
.ws102{word-spacing:11.760000px;}
.wsd7{word-spacing:11.856000px;}
.ws69{word-spacing:11.880000px;}
.ws10f{word-spacing:12.000000px;}
.wsdb{word-spacing:12.240000px;}
.ws104{word-spacing:12.300000px;}
.wsa4{word-spacing:12.600000px;}
.wsda{word-spacing:12.864000px;}
.wscd{word-spacing:13.008000px;}
.wse6{word-spacing:13.824000px;}
.wse0{word-spacing:14.112000px;}
.wse3{word-spacing:14.208000px;}
.ws76{word-spacing:14.460000px;}
.wsd9{word-spacing:14.832000px;}
.wsc4{word-spacing:15.408000px;}
.ws96{word-spacing:15.660000px;}
.ws6c{word-spacing:16.140000px;}
.wsdc{word-spacing:17.328000px;}
.wsf4{word-spacing:17.760000px;}
.wsd0{word-spacing:18.432000px;}
.wsce{word-spacing:19.296000px;}
.wsd4{word-spacing:19.488000px;}
.wse2{word-spacing:20.448000px;}
.ws111{word-spacing:21.720000px;}
.ws3{word-spacing:23.040000px;}
.wse1{word-spacing:27.504000px;}
.ws10c{word-spacing:29.220000px;}
.wscc{word-spacing:31.440000px;}
.ws10b{word-spacing:37.500000px;}
.ws19{word-spacing:40.020000px;}
.ws10d{word-spacing:42.180000px;}
.ws1b{word-spacing:51.600000px;}
.ws1a{word-spacing:52.860000px;}
.wsbc{word-spacing:590.640000px;}
._2{margin-left:-10.560000px;}
._8{margin-left:-9.483600px;}
._5{margin-left:-8.460000px;}
._9{margin-left:-7.334400px;}
._4{margin-left:-5.834400px;}
._3{margin-left:-4.615200px;}
._6{margin-left:-2.995200px;}
._1{margin-left:-1.545600px;}
._0{width:1.248000px;}
._7{width:2.324400px;}
.fc4{color:rgb(145,143,143);}
.fc3{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc5{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs2{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:69.000000px;}
.yae{bottom:106.095150px;}
.y51{bottom:106.720200px;}
.yfb{bottom:107.550000px;}
.ya7{bottom:110.250000px;}
.yb8{bottom:115.095150px;}
.y63{bottom:115.720200px;}
.yd2{bottom:121.620150px;}
.yc3{bottom:122.170350px;}
.y9d{bottom:124.095150px;}
.y50{bottom:124.720200px;}
.y76{bottom:125.345100px;}
.yfa{bottom:125.550000px;}
.yb7{bottom:133.095150px;}
.y62{bottom:133.720200px;}
.yd1{bottom:136.020150px;}
.ya6{bottom:137.250000px;}
.yc2{bottom:140.170350px;}
.y9c{bottom:142.095150px;}
.y4f{bottom:142.720200px;}
.y75{bottom:143.345100px;}
.yf9{bottom:143.550000px;}
.yd0{bottom:150.420150px;}
.yb6{bottom:151.095150px;}
.y61{bottom:151.720200px;}
.y9b{bottom:160.095150px;}
.y4e{bottom:160.720200px;}
.yf8{bottom:161.550000px;}
.ycf{bottom:164.820150px;}
.yc1{bottom:167.170350px;}
.yb5{bottom:169.095150px;}
.y60{bottom:169.720200px;}
.y74{bottom:170.345100px;}
.y20{bottom:175.152300px;}
.y9a{bottom:178.095150px;}
.y4d{bottom:178.720200px;}
.yce{bottom:179.220150px;}
.yc0{bottom:185.170350px;}
.yb4{bottom:187.095150px;}
.y5f{bottom:187.720200px;}
.yf7{bottom:188.550000px;}
.y1f{bottom:193.152300px;}
.ycd{bottom:193.620150px;}
.y98{bottom:196.095150px;}
.y4c{bottom:196.720200px;}
.ybf{bottom:203.170350px;}
.yb3{bottom:205.095150px;}
.y5e{bottom:205.720200px;}
.yf6{bottom:206.550000px;}
.yd3{bottom:208.020150px;}
.y97{bottom:214.095150px;}
.y4b{bottom:214.720200px;}
.ycc{bottom:217.020150px;}
.y1e{bottom:220.152300px;}
.ybe{bottom:221.170350px;}
.yb2{bottom:223.095150px;}
.yfc{bottom:223.720200px;}
.yf5{bottom:224.550000px;}
.ycb{bottom:231.420150px;}
.y96{bottom:232.095150px;}
.y4a{bottom:232.720200px;}
.y1d{bottom:238.152300px;}
.yb1{bottom:241.095150px;}
.y7f{bottom:241.720200px;}
.yf4{bottom:242.550000px;}
.yca{bottom:245.820150px;}
.ybd{bottom:248.170350px;}
.y95{bottom:250.095150px;}
.y5d{bottom:250.720200px;}
.y1c{bottom:256.152300px;}
.yb0{bottom:259.095150px;}
.y49{bottom:259.720200px;}
.yc9{bottom:260.220150px;}
.yf3{bottom:260.550000px;}
.y94{bottom:268.095150px;}
.y5c{bottom:268.720200px;}
.y1b{bottom:274.152300px;}
.yc8{bottom:274.620150px;}
.yaf{bottom:277.095150px;}
.y48{bottom:277.720200px;}
.yf2{bottom:278.550000px;}
.ybc{bottom:283.545450px;}
.y93{bottom:286.095150px;}
.y5b{bottom:286.720200px;}
.yc7{bottom:289.020150px;}
.y1a{bottom:292.152300px;}
.yad{bottom:295.095150px;}
.y47{bottom:295.720200px;}
.yf1{bottom:296.550000px;}
.yc6{bottom:303.420150px;}
.y92{bottom:304.095150px;}
.y5a{bottom:304.720200px;}
.y19{bottom:310.152300px;}
.yac{bottom:313.095150px;}
.y46{bottom:313.720200px;}
.yf0{bottom:314.550000px;}
.yc5{bottom:317.820150px;}
.ybb{bottom:319.545450px;}
.y91{bottom:322.095150px;}
.y59{bottom:322.720200px;}
.y18{bottom:328.152300px;}
.yab{bottom:331.095150px;}
.y45{bottom:331.720200px;}
.yef{bottom:332.550000px;}
.yba{bottom:337.545450px;}
.y90{bottom:340.095150px;}
.ya2{bottom:340.720200px;}
.yc4{bottom:345.996300px;}
.y17{bottom:346.152300px;}
.yaa{bottom:349.095150px;}
.y44{bottom:349.720200px;}
.yee{bottom:350.550000px;}
.yb9{bottom:355.545450px;}
.y8f{bottom:358.095150px;}
.ya1{bottom:358.720200px;}
.y16{bottom:364.152300px;}
.ya9{bottom:367.095150px;}
.y43{bottom:367.720200px;}
.yed{bottom:368.550000px;}
.y8e{bottom:376.095150px;}
.y15{bottom:382.152300px;}
.ya8{bottom:385.095150px;}
.y42{bottom:385.720200px;}
.y73{bottom:394.095150px;}
.yfd{bottom:394.720200px;}
.yec{bottom:395.550000px;}
.y14{bottom:400.152300px;}
.y99{bottom:403.095150px;}
.y41{bottom:403.720200px;}
.y72{bottom:412.095150px;}
.y7e{bottom:412.720200px;}
.yeb{bottom:413.550000px;}
.y13{bottom:418.152300px;}
.y8d{bottom:421.095150px;}
.y40{bottom:421.720200px;}
.y71{bottom:430.095150px;}
.y7d{bottom:430.720200px;}
.yea{bottom:431.550000px;}
.y12{bottom:436.152300px;}
.y8c{bottom:439.095150px;}
.y3f{bottom:439.720200px;}
.y70{bottom:448.095150px;}
.y7c{bottom:448.720200px;}
.ye9{bottom:449.550000px;}
.y11{bottom:454.152300px;}
.y8b{bottom:457.095150px;}
.y3e{bottom:457.720200px;}
.y6f{bottom:466.095150px;}
.y7b{bottom:466.720200px;}
.ye8{bottom:467.550000px;}
.y10{bottom:472.152300px;}
.y8a{bottom:475.095150px;}
.y3d{bottom:475.720200px;}
.y6e{bottom:484.095150px;}
.ya5{bottom:484.720200px;}
.ye7{bottom:485.550000px;}
.yf{bottom:490.152300px;}
.y89{bottom:493.095150px;}
.y3c{bottom:493.720200px;}
.y6d{bottom:502.095150px;}
.ya4{bottom:502.720200px;}
.ye6{bottom:503.550000px;}
.ye{bottom:508.152300px;}
.y88{bottom:511.095150px;}
.y58{bottom:511.720200px;}
.y6c{bottom:520.095150px;}
.y3b{bottom:520.720200px;}
.ye5{bottom:521.550000px;}
.yd{bottom:526.152300px;}
.y87{bottom:529.095150px;}
.y57{bottom:529.720200px;}
.y6b{bottom:538.095150px;}
.y3a{bottom:538.720200px;}
.ye4{bottom:539.550000px;}
.yc{bottom:544.152300px;}
.y86{bottom:547.095150px;}
.y56{bottom:547.720200px;}
.y6a{bottom:556.095150px;}
.y39{bottom:556.720200px;}
.ye3{bottom:557.550000px;}
.yb{bottom:562.152300px;}
.y85{bottom:565.095150px;}
.y55{bottom:565.720200px;}
.y69{bottom:574.095150px;}
.y38{bottom:574.720200px;}
.ye2{bottom:575.550000px;}
.ya{bottom:580.152300px;}
.y7a{bottom:583.095150px;}
.y54{bottom:583.720200px;}
.y68{bottom:592.095150px;}
.y37{bottom:592.720200px;}
.y9{bottom:598.152300px;}
.y79{bottom:601.095150px;}
.y53{bottom:601.720200px;}
.y2c{bottom:610.095150px;}
.y36{bottom:610.720200px;}
.ye1{bottom:611.550000px;}
.y8{bottom:616.152300px;}
.y67{bottom:619.095150px;}
.ya0{bottom:619.720200px;}
.y2b{bottom:628.095150px;}
.y35{bottom:628.720200px;}
.ye0{bottom:634.425000px;}
.y66{bottom:637.095150px;}
.y9f{bottom:637.720200px;}
.y7{bottom:643.152300px;}
.y2a{bottom:646.095150px;}
.y34{bottom:646.720200px;}
.ydf{bottom:648.825000px;}
.y65{bottom:655.095150px;}
.y9e{bottom:655.720200px;}
.yde{bottom:663.225000px;}
.y29{bottom:664.095150px;}
.y33{bottom:664.720200px;}
.y52{bottom:673.095150px;}
.ydd{bottom:677.625000px;}
.y84{bottom:682.095150px;}
.y32{bottom:682.720200px;}
.y6{bottom:688.152300px;}
.y28{bottom:691.095150px;}
.ydc{bottom:692.025000px;}
.y83{bottom:700.095150px;}
.y31{bottom:700.720200px;}
.ydb{bottom:706.425000px;}
.y27{bottom:709.095150px;}
.y82{bottom:718.095150px;}
.y30{bottom:718.720200px;}
.yda{bottom:720.825000px;}
.y26{bottom:727.095150px;}
.y5{bottom:733.152300px;}
.y81{bottom:736.095150px;}
.y2f{bottom:736.720200px;}
.yd9{bottom:744.225000px;}
.y25{bottom:745.095150px;}
.ya3{bottom:745.720200px;}
.y80{bottom:754.095150px;}
.y2e{bottom:754.720200px;}
.yd8{bottom:758.625000px;}
.y4{bottom:761.952300px;}
.y78{bottom:763.095150px;}
.y24{bottom:772.095150px;}
.yd7{bottom:773.025000px;}
.y77{bottom:781.095150px;}
.y2d{bottom:781.720200px;}
.yd6{bottom:787.425000px;}
.y23{bottom:790.095150px;}
.y3{bottom:790.752300px;}
.yd5{bottom:801.825000px;}
.y22{bottom:808.095150px;}
.yd4{bottom:816.225000px;}
.y2{bottom:819.552300px;}
.y21{bottom:826.095150px;}
.y64{bottom:873.000000px;}
.h8{height:38.928000px;}
.h7{height:39.168000px;}
.h6{height:41.616000px;}
.h5{height:42.360000px;}
.h4{height:48.660000px;}
.h3{height:48.960000px;}
.h1{height:52.020000px;}
.h2{height:67.488000px;}
.h0{height:918.000000px;}
.w0{width:594.000000px;}
.x0{left:0.000000px;}
.x7{left:81.000000px;}
.xc{left:87.375000px;}
.x6{left:108.000000px;}
.x8{left:113.570400px;}
.x3{left:132.542850px;}
.xe{left:134.175000px;}
.x5{left:139.598550px;}
.x4{left:140.631000px;}
.x2{left:162.074700px;}
.xd{left:285.375000px;}
.xb{left:312.375000px;}
.xa{left:486.000000px;}
.x1{left:498.090150px;}
.x9{left:534.375000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-1.546667pt;}
.ls6{letter-spacing:-1.013333pt;}
.ls1{letter-spacing:-0.693333pt;}
.ls3{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls2{letter-spacing:2.499200pt;}
.ws0{word-spacing:-12.106667pt;}
.ws106{word-spacing:-11.093333pt;}
.ws107{word-spacing:-10.560000pt;}
.wsbd{word-spacing:-9.685333pt;}
.wsbe{word-spacing:-9.557333pt;}
.ws1{word-spacing:-9.386667pt;}
.wsb{word-spacing:-3.200000pt;}
.ws3d{word-spacing:-2.933333pt;}
.wsec{word-spacing:-2.880000pt;}
.ws103{word-spacing:-2.720000pt;}
.ws89{word-spacing:-2.666667pt;}
.wsee{word-spacing:-2.560000pt;}
.ws10a{word-spacing:-2.506667pt;}
.wsa5{word-spacing:-2.453333pt;}
.ws7d{word-spacing:-2.400000pt;}
.ws5{word-spacing:-2.346667pt;}
.wsb6{word-spacing:-2.293333pt;}
.ws2c{word-spacing:-2.240000pt;}
.wsf9{word-spacing:-2.186667pt;}
.ws101{word-spacing:-2.133333pt;}
.ws87{word-spacing:-2.080000pt;}
.wsfa{word-spacing:-2.026667pt;}
.wsc9{word-spacing:-2.005333pt;}
.ws80{word-spacing:-1.920000pt;}
.ws46{word-spacing:-1.866667pt;}
.ws65{word-spacing:-1.813333pt;}
.ws28{word-spacing:-1.760000pt;}
.ws21{word-spacing:-1.706667pt;}
.ws4c{word-spacing:-1.653333pt;}
.ws44{word-spacing:-1.600000pt;}
.wsf6{word-spacing:-1.546667pt;}
.wsa6{word-spacing:-1.493333pt;}
.ws58{word-spacing:-1.440000pt;}
.ws49{word-spacing:-1.386667pt;}
.ws4d{word-spacing:-1.333333pt;}
.wsb1{word-spacing:-1.280000pt;}
.ws4a{word-spacing:-1.226667pt;}
.ws8a{word-spacing:-1.173333pt;}
.ws66{word-spacing:-1.120000pt;}
.wsc8{word-spacing:-1.109333pt;}
.ws7e{word-spacing:-1.066667pt;}
.wsa2{word-spacing:-1.013333pt;}
.ws59{word-spacing:-0.960000pt;}
.ws39{word-spacing:-0.906667pt;}
.ws9{word-spacing:-0.853333pt;}
.ws94{word-spacing:-0.800000pt;}
.ws8f{word-spacing:-0.746667pt;}
.wsff{word-spacing:-0.693333pt;}
.wsa9{word-spacing:-0.640000pt;}
.ws100{word-spacing:-0.586667pt;}
.ws82{word-spacing:-0.533333pt;}
.wsfc{word-spacing:-0.480000pt;}
.ws8{word-spacing:-0.426667pt;}
.wsd2{word-spacing:-0.384000pt;}
.ws8d{word-spacing:-0.373333pt;}
.wsba{word-spacing:-0.320000pt;}
.wsc{word-spacing:-0.266667pt;}
.ws2f{word-spacing:-0.213333pt;}
.wsa7{word-spacing:-0.160000pt;}
.wsae{word-spacing:-0.106667pt;}
.ws34{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.053333pt;}
.wsbf{word-spacing:0.106667pt;}
.wsdf{word-spacing:0.128000pt;}
.ws42{word-spacing:0.160000pt;}
.ws3e{word-spacing:0.213333pt;}
.ws5b{word-spacing:0.266667pt;}
.ws26{word-spacing:0.320000pt;}
.ws50{word-spacing:0.373333pt;}
.wsa8{word-spacing:0.426667pt;}
.wsd6{word-spacing:0.469333pt;}
.ws4{word-spacing:0.533333pt;}
.wsb9{word-spacing:0.586667pt;}
.wsaf{word-spacing:0.640000pt;}
.ws13{word-spacing:0.693333pt;}
.ws48{word-spacing:0.746667pt;}
.wscb{word-spacing:0.768000pt;}
.ws8b{word-spacing:0.800000pt;}
.ws2e{word-spacing:0.853333pt;}
.ws11{word-spacing:0.906667pt;}
.ws37{word-spacing:0.960000pt;}
.wsbb{word-spacing:1.013333pt;}
.wscf{word-spacing:1.066667pt;}
.ws2a{word-spacing:1.120000pt;}
.ws43{word-spacing:1.173333pt;}
.wsca{word-spacing:1.194667pt;}
.ws32{word-spacing:1.226667pt;}
.wse5{word-spacing:1.237333pt;}
.ws53{word-spacing:1.280000pt;}
.ws3f{word-spacing:1.333333pt;}
.ws51{word-spacing:1.386667pt;}
.ws6d{word-spacing:1.440000pt;}
.wsb2{word-spacing:1.493333pt;}
.ws20{word-spacing:1.546667pt;}
.ws12{word-spacing:1.600000pt;}
.ws3b{word-spacing:1.653333pt;}
.ws77{word-spacing:1.706667pt;}
.ws3a{word-spacing:1.760000pt;}
.ws10{word-spacing:1.813333pt;}
.ws67{word-spacing:1.866667pt;}
.wsc3{word-spacing:1.877333pt;}
.wsb7{word-spacing:1.920000pt;}
.wsc7{word-spacing:1.962667pt;}
.ws25{word-spacing:1.973333pt;}
.ws40{word-spacing:2.026667pt;}
.ws7b{word-spacing:2.080000pt;}
.ws56{word-spacing:2.133333pt;}
.wsd5{word-spacing:2.176000pt;}
.ws6{word-spacing:2.186667pt;}
.ws5a{word-spacing:2.240000pt;}
.ws1d{word-spacing:2.293333pt;}
.ws5e{word-spacing:2.346667pt;}
.ws97{word-spacing:2.400000pt;}
.ws7a{word-spacing:2.453333pt;}
.ws83{word-spacing:2.506667pt;}
.ws64{word-spacing:2.560000pt;}
.ws74{word-spacing:2.613333pt;}
.wsf2{word-spacing:2.666667pt;}
.ws93{word-spacing:2.720000pt;}
.ws22{word-spacing:2.773333pt;}
.wsc5{word-spacing:2.816000pt;}
.ws16{word-spacing:2.826667pt;}
.ws14{word-spacing:2.880000pt;}
.ws54{word-spacing:2.933333pt;}
.ws47{word-spacing:2.986667pt;}
.wsef{word-spacing:3.040000pt;}
.ws71{word-spacing:3.093333pt;}
.ws62{word-spacing:3.146667pt;}
.ws81{word-spacing:3.200000pt;}
.ws2d{word-spacing:3.253333pt;}
.wse{word-spacing:3.306667pt;}
.ws9a{word-spacing:3.360000pt;}
.ws1f{word-spacing:3.413333pt;}
.ws7{word-spacing:3.466667pt;}
.wsea{word-spacing:3.520000pt;}
.ws6f{word-spacing:3.573333pt;}
.ws31{word-spacing:3.626667pt;}
.ws7c{word-spacing:3.680000pt;}
.ws88{word-spacing:3.733333pt;}
.ws30{word-spacing:3.786667pt;}
.ws23{word-spacing:3.840000pt;}
.ws5d{word-spacing:3.893333pt;}
.ws3c{word-spacing:3.946667pt;}
.ws63{word-spacing:4.000000pt;}
.ws55{word-spacing:4.053333pt;}
.ws90{word-spacing:4.106667pt;}
.ws86{word-spacing:4.160000pt;}
.ws15{word-spacing:4.213333pt;}
.ws18{word-spacing:4.266667pt;}
.wsf0{word-spacing:4.320000pt;}
.ws38{word-spacing:4.373333pt;}
.ws85{word-spacing:4.426667pt;}
.ws1e{word-spacing:4.480000pt;}
.ws4f{word-spacing:4.533333pt;}
.wsaa{word-spacing:4.586667pt;}
.ws29{word-spacing:4.640000pt;}
.ws9d{word-spacing:4.693333pt;}
.ws24{word-spacing:4.746667pt;}
.ws2b{word-spacing:4.800000pt;}
.wsd{word-spacing:4.853333pt;}
.ws110{word-spacing:4.906667pt;}
.wsa3{word-spacing:4.960000pt;}
.ws84{word-spacing:5.013333pt;}
.wsfb{word-spacing:5.066667pt;}
.wsa0{word-spacing:5.120000pt;}
.wsc6{word-spacing:5.162667pt;}
.wsad{word-spacing:5.173333pt;}
.wsac{word-spacing:5.226667pt;}
.wseb{word-spacing:5.280000pt;}
.ws68{word-spacing:5.440000pt;}
.ws75{word-spacing:5.493333pt;}
.ws27{word-spacing:5.546667pt;}
.wsb0{word-spacing:5.600000pt;}
.wsd3{word-spacing:5.632000pt;}
.ws6a{word-spacing:5.653333pt;}
.wsf1{word-spacing:5.706667pt;}
.ws91{word-spacing:5.760000pt;}
.ws92{word-spacing:5.813333pt;}
.ws4e{word-spacing:5.866667pt;}
.ws57{word-spacing:5.920000pt;}
.ws17{word-spacing:5.973333pt;}
.ws4b{word-spacing:6.026667pt;}
.wsf{word-spacing:6.080000pt;}
.ws9f{word-spacing:6.133333pt;}
.ws95{word-spacing:6.186667pt;}
.wsf8{word-spacing:6.240000pt;}
.ws7f{word-spacing:6.293333pt;}
.ws41{word-spacing:6.346667pt;}
.ws9b{word-spacing:6.400000pt;}
.ws45{word-spacing:6.453333pt;}
.wse8{word-spacing:6.528000pt;}
.wsf5{word-spacing:6.613333pt;}
.ws6e{word-spacing:6.666667pt;}
.wsb5{word-spacing:6.720000pt;}
.ws1c{word-spacing:6.773333pt;}
.ws52{word-spacing:6.826667pt;}
.ws8c{word-spacing:6.880000pt;}
.ws73{word-spacing:6.933333pt;}
.wsf7{word-spacing:6.986667pt;}
.ws9c{word-spacing:7.040000pt;}
.ws60{word-spacing:7.093333pt;}
.wsb3{word-spacing:7.146667pt;}
.wsfe{word-spacing:7.200000pt;}
.ws79{word-spacing:7.253333pt;}
.ws36{word-spacing:7.306667pt;}
.wsd1{word-spacing:7.338667pt;}
.ws35{word-spacing:7.360000pt;}
.wsed{word-spacing:7.466667pt;}
.ws72{word-spacing:7.573333pt;}
.wsd8{word-spacing:7.722667pt;}
.ws9e{word-spacing:7.733333pt;}
.ws70{word-spacing:7.786667pt;}
.wsf3{word-spacing:7.840000pt;}
.ws99{word-spacing:7.893333pt;}
.ws108{word-spacing:8.000000pt;}
.wsc1{word-spacing:8.106667pt;}
.ws5c{word-spacing:8.160000pt;}
.wsc2{word-spacing:8.192000pt;}
.wsab{word-spacing:8.266667pt;}
.ws61{word-spacing:8.320000pt;}
.wsb4{word-spacing:8.426667pt;}
.wsfd{word-spacing:8.586667pt;}
.ws6b{word-spacing:8.693333pt;}
.wse7{word-spacing:8.746667pt;}
.ws78{word-spacing:8.853333pt;}
.ws5f{word-spacing:8.906667pt;}
.wsb8{word-spacing:9.066667pt;}
.ws109{word-spacing:9.120000pt;}
.wsa1{word-spacing:9.280000pt;}
.wse4{word-spacing:9.344000pt;}
.ws10e{word-spacing:9.386667pt;}
.wse9{word-spacing:9.440000pt;}
.ws98{word-spacing:9.493333pt;}
.ws105{word-spacing:9.600000pt;}
.wsc0{word-spacing:9.920000pt;}
.wsde{word-spacing:10.069333pt;}
.wsa{word-spacing:10.293333pt;}
.wsdd{word-spacing:10.325333pt;}
.ws33{word-spacing:10.346667pt;}
.ws102{word-spacing:10.453333pt;}
.wsd7{word-spacing:10.538667pt;}
.ws69{word-spacing:10.560000pt;}
.ws10f{word-spacing:10.666667pt;}
.wsdb{word-spacing:10.880000pt;}
.ws104{word-spacing:10.933333pt;}
.wsa4{word-spacing:11.200000pt;}
.wsda{word-spacing:11.434667pt;}
.wscd{word-spacing:11.562667pt;}
.wse6{word-spacing:12.288000pt;}
.wse0{word-spacing:12.544000pt;}
.wse3{word-spacing:12.629333pt;}
.ws76{word-spacing:12.853333pt;}
.wsd9{word-spacing:13.184000pt;}
.wsc4{word-spacing:13.696000pt;}
.ws96{word-spacing:13.920000pt;}
.ws6c{word-spacing:14.346667pt;}
.wsdc{word-spacing:15.402667pt;}
.wsf4{word-spacing:15.786667pt;}
.wsd0{word-spacing:16.384000pt;}
.wsce{word-spacing:17.152000pt;}
.wsd4{word-spacing:17.322667pt;}
.wse2{word-spacing:18.176000pt;}
.ws111{word-spacing:19.306667pt;}
.ws3{word-spacing:20.480000pt;}
.wse1{word-spacing:24.448000pt;}
.ws10c{word-spacing:25.973333pt;}
.wscc{word-spacing:27.946667pt;}
.ws10b{word-spacing:33.333333pt;}
.ws19{word-spacing:35.573333pt;}
.ws10d{word-spacing:37.493333pt;}
.ws1b{word-spacing:45.866667pt;}
.ws1a{word-spacing:46.986667pt;}
.wsbc{word-spacing:525.013333pt;}
._2{margin-left:-9.386667pt;}
._8{margin-left:-8.429867pt;}
._5{margin-left:-7.520000pt;}
._9{margin-left:-6.519467pt;}
._4{margin-left:-5.186133pt;}
._3{margin-left:-4.102400pt;}
._6{margin-left:-2.662400pt;}
._1{margin-left:-1.373867pt;}
._0{width:1.109333pt;}
._7{width:2.066133pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:61.333333pt;}
.yae{bottom:94.306800pt;}
.y51{bottom:94.862400pt;}
.yfb{bottom:95.600000pt;}
.ya7{bottom:98.000000pt;}
.yb8{bottom:102.306800pt;}
.y63{bottom:102.862400pt;}
.yd2{bottom:108.106800pt;}
.yc3{bottom:108.595867pt;}
.y9d{bottom:110.306800pt;}
.y50{bottom:110.862400pt;}
.y76{bottom:111.417867pt;}
.yfa{bottom:111.600000pt;}
.yb7{bottom:118.306800pt;}
.y62{bottom:118.862400pt;}
.yd1{bottom:120.906800pt;}
.ya6{bottom:122.000000pt;}
.yc2{bottom:124.595867pt;}
.y9c{bottom:126.306800pt;}
.y4f{bottom:126.862400pt;}
.y75{bottom:127.417867pt;}
.yf9{bottom:127.600000pt;}
.yd0{bottom:133.706800pt;}
.yb6{bottom:134.306800pt;}
.y61{bottom:134.862400pt;}
.y9b{bottom:142.306800pt;}
.y4e{bottom:142.862400pt;}
.yf8{bottom:143.600000pt;}
.ycf{bottom:146.506800pt;}
.yc1{bottom:148.595867pt;}
.yb5{bottom:150.306800pt;}
.y60{bottom:150.862400pt;}
.y74{bottom:151.417867pt;}
.y20{bottom:155.690933pt;}
.y9a{bottom:158.306800pt;}
.y4d{bottom:158.862400pt;}
.yce{bottom:159.306800pt;}
.yc0{bottom:164.595867pt;}
.yb4{bottom:166.306800pt;}
.y5f{bottom:166.862400pt;}
.yf7{bottom:167.600000pt;}
.y1f{bottom:171.690933pt;}
.ycd{bottom:172.106800pt;}
.y98{bottom:174.306800pt;}
.y4c{bottom:174.862400pt;}
.ybf{bottom:180.595867pt;}
.yb3{bottom:182.306800pt;}
.y5e{bottom:182.862400pt;}
.yf6{bottom:183.600000pt;}
.yd3{bottom:184.906800pt;}
.y97{bottom:190.306800pt;}
.y4b{bottom:190.862400pt;}
.ycc{bottom:192.906800pt;}
.y1e{bottom:195.690933pt;}
.ybe{bottom:196.595867pt;}
.yb2{bottom:198.306800pt;}
.yfc{bottom:198.862400pt;}
.yf5{bottom:199.600000pt;}
.ycb{bottom:205.706800pt;}
.y96{bottom:206.306800pt;}
.y4a{bottom:206.862400pt;}
.y1d{bottom:211.690933pt;}
.yb1{bottom:214.306800pt;}
.y7f{bottom:214.862400pt;}
.yf4{bottom:215.600000pt;}
.yca{bottom:218.506800pt;}
.ybd{bottom:220.595867pt;}
.y95{bottom:222.306800pt;}
.y5d{bottom:222.862400pt;}
.y1c{bottom:227.690933pt;}
.yb0{bottom:230.306800pt;}
.y49{bottom:230.862400pt;}
.yc9{bottom:231.306800pt;}
.yf3{bottom:231.600000pt;}
.y94{bottom:238.306800pt;}
.y5c{bottom:238.862400pt;}
.y1b{bottom:243.690933pt;}
.yc8{bottom:244.106800pt;}
.yaf{bottom:246.306800pt;}
.y48{bottom:246.862400pt;}
.yf2{bottom:247.600000pt;}
.ybc{bottom:252.040400pt;}
.y93{bottom:254.306800pt;}
.y5b{bottom:254.862400pt;}
.yc7{bottom:256.906800pt;}
.y1a{bottom:259.690933pt;}
.yad{bottom:262.306800pt;}
.y47{bottom:262.862400pt;}
.yf1{bottom:263.600000pt;}
.yc6{bottom:269.706800pt;}
.y92{bottom:270.306800pt;}
.y5a{bottom:270.862400pt;}
.y19{bottom:275.690933pt;}
.yac{bottom:278.306800pt;}
.y46{bottom:278.862400pt;}
.yf0{bottom:279.600000pt;}
.yc5{bottom:282.506800pt;}
.ybb{bottom:284.040400pt;}
.y91{bottom:286.306800pt;}
.y59{bottom:286.862400pt;}
.y18{bottom:291.690933pt;}
.yab{bottom:294.306800pt;}
.y45{bottom:294.862400pt;}
.yef{bottom:295.600000pt;}
.yba{bottom:300.040400pt;}
.y90{bottom:302.306800pt;}
.ya2{bottom:302.862400pt;}
.yc4{bottom:307.552267pt;}
.y17{bottom:307.690933pt;}
.yaa{bottom:310.306800pt;}
.y44{bottom:310.862400pt;}
.yee{bottom:311.600000pt;}
.yb9{bottom:316.040400pt;}
.y8f{bottom:318.306800pt;}
.ya1{bottom:318.862400pt;}
.y16{bottom:323.690933pt;}
.ya9{bottom:326.306800pt;}
.y43{bottom:326.862400pt;}
.yed{bottom:327.600000pt;}
.y8e{bottom:334.306800pt;}
.y15{bottom:339.690933pt;}
.ya8{bottom:342.306800pt;}
.y42{bottom:342.862400pt;}
.y73{bottom:350.306800pt;}
.yfd{bottom:350.862400pt;}
.yec{bottom:351.600000pt;}
.y14{bottom:355.690933pt;}
.y99{bottom:358.306800pt;}
.y41{bottom:358.862400pt;}
.y72{bottom:366.306800pt;}
.y7e{bottom:366.862400pt;}
.yeb{bottom:367.600000pt;}
.y13{bottom:371.690933pt;}
.y8d{bottom:374.306800pt;}
.y40{bottom:374.862400pt;}
.y71{bottom:382.306800pt;}
.y7d{bottom:382.862400pt;}
.yea{bottom:383.600000pt;}
.y12{bottom:387.690933pt;}
.y8c{bottom:390.306800pt;}
.y3f{bottom:390.862400pt;}
.y70{bottom:398.306800pt;}
.y7c{bottom:398.862400pt;}
.ye9{bottom:399.600000pt;}
.y11{bottom:403.690933pt;}
.y8b{bottom:406.306800pt;}
.y3e{bottom:406.862400pt;}
.y6f{bottom:414.306800pt;}
.y7b{bottom:414.862400pt;}
.ye8{bottom:415.600000pt;}
.y10{bottom:419.690933pt;}
.y8a{bottom:422.306800pt;}
.y3d{bottom:422.862400pt;}
.y6e{bottom:430.306800pt;}
.ya5{bottom:430.862400pt;}
.ye7{bottom:431.600000pt;}
.yf{bottom:435.690933pt;}
.y89{bottom:438.306800pt;}
.y3c{bottom:438.862400pt;}
.y6d{bottom:446.306800pt;}
.ya4{bottom:446.862400pt;}
.ye6{bottom:447.600000pt;}
.ye{bottom:451.690933pt;}
.y88{bottom:454.306800pt;}
.y58{bottom:454.862400pt;}
.y6c{bottom:462.306800pt;}
.y3b{bottom:462.862400pt;}
.ye5{bottom:463.600000pt;}
.yd{bottom:467.690933pt;}
.y87{bottom:470.306800pt;}
.y57{bottom:470.862400pt;}
.y6b{bottom:478.306800pt;}
.y3a{bottom:478.862400pt;}
.ye4{bottom:479.600000pt;}
.yc{bottom:483.690933pt;}
.y86{bottom:486.306800pt;}
.y56{bottom:486.862400pt;}
.y6a{bottom:494.306800pt;}
.y39{bottom:494.862400pt;}
.ye3{bottom:495.600000pt;}
.yb{bottom:499.690933pt;}
.y85{bottom:502.306800pt;}
.y55{bottom:502.862400pt;}
.y69{bottom:510.306800pt;}
.y38{bottom:510.862400pt;}
.ye2{bottom:511.600000pt;}
.ya{bottom:515.690933pt;}
.y7a{bottom:518.306800pt;}
.y54{bottom:518.862400pt;}
.y68{bottom:526.306800pt;}
.y37{bottom:526.862400pt;}
.y9{bottom:531.690933pt;}
.y79{bottom:534.306800pt;}
.y53{bottom:534.862400pt;}
.y2c{bottom:542.306800pt;}
.y36{bottom:542.862400pt;}
.ye1{bottom:543.600000pt;}
.y8{bottom:547.690933pt;}
.y67{bottom:550.306800pt;}
.ya0{bottom:550.862400pt;}
.y2b{bottom:558.306800pt;}
.y35{bottom:558.862400pt;}
.ye0{bottom:563.933333pt;}
.y66{bottom:566.306800pt;}
.y9f{bottom:566.862400pt;}
.y7{bottom:571.690933pt;}
.y2a{bottom:574.306800pt;}
.y34{bottom:574.862400pt;}
.ydf{bottom:576.733333pt;}
.y65{bottom:582.306800pt;}
.y9e{bottom:582.862400pt;}
.yde{bottom:589.533333pt;}
.y29{bottom:590.306800pt;}
.y33{bottom:590.862400pt;}
.y52{bottom:598.306800pt;}
.ydd{bottom:602.333333pt;}
.y84{bottom:606.306800pt;}
.y32{bottom:606.862400pt;}
.y6{bottom:611.690933pt;}
.y28{bottom:614.306800pt;}
.ydc{bottom:615.133333pt;}
.y83{bottom:622.306800pt;}
.y31{bottom:622.862400pt;}
.ydb{bottom:627.933333pt;}
.y27{bottom:630.306800pt;}
.y82{bottom:638.306800pt;}
.y30{bottom:638.862400pt;}
.yda{bottom:640.733333pt;}
.y26{bottom:646.306800pt;}
.y5{bottom:651.690933pt;}
.y81{bottom:654.306800pt;}
.y2f{bottom:654.862400pt;}
.yd9{bottom:661.533333pt;}
.y25{bottom:662.306800pt;}
.ya3{bottom:662.862400pt;}
.y80{bottom:670.306800pt;}
.y2e{bottom:670.862400pt;}
.yd8{bottom:674.333333pt;}
.y4{bottom:677.290933pt;}
.y78{bottom:678.306800pt;}
.y24{bottom:686.306800pt;}
.yd7{bottom:687.133333pt;}
.y77{bottom:694.306800pt;}
.y2d{bottom:694.862400pt;}
.yd6{bottom:699.933333pt;}
.y23{bottom:702.306800pt;}
.y3{bottom:702.890933pt;}
.yd5{bottom:712.733333pt;}
.y22{bottom:718.306800pt;}
.yd4{bottom:725.533333pt;}
.y2{bottom:728.490933pt;}
.y21{bottom:734.306800pt;}
.y64{bottom:776.000000pt;}
.h8{height:34.602667pt;}
.h7{height:34.816000pt;}
.h6{height:36.992000pt;}
.h5{height:37.653333pt;}
.h4{height:43.253333pt;}
.h3{height:43.520000pt;}
.h1{height:46.240000pt;}
.h2{height:59.989333pt;}
.h0{height:816.000000pt;}
.w0{width:528.000000pt;}
.x0{left:0.000000pt;}
.x7{left:72.000000pt;}
.xc{left:77.666667pt;}
.x6{left:96.000000pt;}
.x8{left:100.951467pt;}
.x3{left:117.815867pt;}
.xe{left:119.266667pt;}
.x5{left:124.087600pt;}
.x4{left:125.005333pt;}
.x2{left:144.066400pt;}
.xd{left:253.666667pt;}
.xb{left:277.666667pt;}
.xa{left:432.000000pt;}
.x1{left:442.746800pt;}
.x9{left:475.000000pt;}
}




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