
    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_4492c797bc6442e444f34492.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.222000;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_505481d2a2d6bafc26e2930d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.197000;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_7a4631c6d9980e7392e1ff93.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_04b2a424de1b99767302a3c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_9a453579465cf96f7750eed1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.230000;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_175db9bb625a993cee775338.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_303c2ac5f3205ae1a37e7064.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c81d777c633fb38fef83ecbb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.213000;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_22d168f7594653c993de0789.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.222000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_451fce770689b048b07c34b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.256000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_47ca3c6bc39bdf379cd6341e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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:ffc;src:url('chunks/assets/font_451fce770689b048b07c34b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.256000;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:ffd;src:url('chunks/assets/font_88055ed11c2796091549a42a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.680176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.000000px;}
.ls6{letter-spacing:-15.000000px;}
.ls9{letter-spacing:-12.750000px;}
.lsa{letter-spacing:-12.648000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000600px;}
.ls4{letter-spacing:0.007800px;}
.ls7{letter-spacing:0.051000px;}
.ls0{letter-spacing:3.990000px;}
.ls8{letter-spacing:15.708000px;}
.ls1{letter-spacing:27.307200px;}
.ls2{letter-spacing:53.015400px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.wsf5{word-spacing:-14.544000px;}
.ws82{word-spacing:-12.750000px;}
.wsf4{word-spacing:-12.474000px;}
.ws5{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.120000px;}
.ws4{word-spacing:-11.520000px;}
.ws27{word-spacing:-10.302000px;}
.ws0{word-spacing:-9.996000px;}
.wsf3{word-spacing:-9.792000px;}
.ws2{word-spacing:-8.925000px;}
.ws6{word-spacing:-8.064000px;}
.ws5c{word-spacing:-7.500000px;}
.ws20{word-spacing:-5.100000px;}
.wsee{word-spacing:-3.480000px;}
.wsf1{word-spacing:-3.420000px;}
.wsc7{word-spacing:-3.060000px;}
.wsd6{word-spacing:-2.940000px;}
.wsac{word-spacing:-2.880000px;}
.wsf{word-spacing:-2.760000px;}
.wsae{word-spacing:-2.700000px;}
.ws40{word-spacing:-2.580000px;}
.ws25{word-spacing:-2.400000px;}
.wsdf{word-spacing:-2.340000px;}
.ws8d{word-spacing:-2.280000px;}
.wse3{word-spacing:-2.220000px;}
.ws86{word-spacing:-2.160000px;}
.ws9a{word-spacing:-1.989000px;}
.ws10{word-spacing:-1.980000px;}
.ws2d{word-spacing:-1.800000px;}
.ws4d{word-spacing:-1.740000px;}
.wsfc{word-spacing:-1.632000px;}
.wscf{word-spacing:-1.560000px;}
.ws3b{word-spacing:-1.500000px;}
.wsd8{word-spacing:-1.440000px;}
.ws9{word-spacing:-1.380000px;}
.wsc5{word-spacing:-1.260000px;}
.wsd{word-spacing:-1.140000px;}
.ws6a{word-spacing:-1.080000px;}
.wsbc{word-spacing:-1.071000px;}
.ws97{word-spacing:-0.969000px;}
.ws44{word-spacing:-0.960000px;}
.ws2c{word-spacing:-0.900000px;}
.ws52{word-spacing:-0.840000px;}
.wsed{word-spacing:-0.720000px;}
.ws4c{word-spacing:-0.600000px;}
.ws7{word-spacing:-0.570000px;}
.wsd3{word-spacing:-0.540000px;}
.wsdd{word-spacing:-0.420000px;}
.ws1f{word-spacing:-0.360000px;}
.ws63{word-spacing:-0.306000px;}
.ws4a{word-spacing:-0.300000px;}
.wsfd{word-spacing:-0.204000px;}
.ws89{word-spacing:-0.180000px;}
.ws85{word-spacing:-0.120000px;}
.ws26{word-spacing:-0.060000px;}
.ws5e{word-spacing:-0.051000px;}
.ws8{word-spacing:0.000000px;}
.ws8e{word-spacing:0.060000px;}
.ws9c{word-spacing:0.180000px;}
.ws111{word-spacing:0.204000px;}
.wsf7{word-spacing:0.255000px;}
.ws11c{word-spacing:0.306000px;}
.ws8a{word-spacing:0.360000px;}
.ws11d{word-spacing:0.408000px;}
.wsb{word-spacing:0.420000px;}
.ws115{word-spacing:0.510000px;}
.ws37{word-spacing:0.540000px;}
.ws101{word-spacing:0.561000px;}
.wsc6{word-spacing:0.600000px;}
.wsbe{word-spacing:0.612000px;}
.ws1e{word-spacing:0.660000px;}
.wsa4{word-spacing:0.720000px;}
.wsa9{word-spacing:0.780000px;}
.ws1d{word-spacing:0.840000px;}
.ws11e{word-spacing:0.867000px;}
.wsdc{word-spacing:0.960000px;}
.ws98{word-spacing:0.969000px;}
.ws50{word-spacing:1.020000px;}
.ws16{word-spacing:1.080000px;}
.ws3c{word-spacing:1.140000px;}
.wsca{word-spacing:1.200000px;}
.ws94{word-spacing:1.224000px;}
.wsb0{word-spacing:1.260000px;}
.ws8b{word-spacing:1.320000px;}
.ws95{word-spacing:1.326000px;}
.ws10c{word-spacing:1.377000px;}
.wsa5{word-spacing:1.380000px;}
.ws7a{word-spacing:1.440000px;}
.ws35{word-spacing:1.500000px;}
.ws120{word-spacing:1.530000px;}
.ws8c{word-spacing:1.560000px;}
.ws65{word-spacing:1.581000px;}
.wsaf{word-spacing:1.740000px;}
.ws7d{word-spacing:1.860000px;}
.ws104{word-spacing:1.938000px;}
.ws1c{word-spacing:1.980000px;}
.wsa1{word-spacing:2.040000px;}
.ws11f{word-spacing:2.091000px;}
.ws70{word-spacing:2.100000px;}
.ws54{word-spacing:2.160000px;}
.ws119{word-spacing:2.193000px;}
.ws36{word-spacing:2.220000px;}
.ws17{word-spacing:2.280000px;}
.ws76{word-spacing:2.340000px;}
.ws2b{word-spacing:2.400000px;}
.wsa7{word-spacing:2.460000px;}
.ws22{word-spacing:2.520000px;}
.ws64{word-spacing:2.550000px;}
.wsdb{word-spacing:2.580000px;}
.wsa8{word-spacing:2.640000px;}
.ws5a{word-spacing:2.700000px;}
.ws102{word-spacing:2.703000px;}
.wsbf{word-spacing:2.754000px;}
.wsc9{word-spacing:2.760000px;}
.ws51{word-spacing:2.820000px;}
.wsff{word-spacing:2.856000px;}
.wsc0{word-spacing:2.880000px;}
.ws72{word-spacing:3.000000px;}
.ws28{word-spacing:3.009000px;}
.wsb6{word-spacing:3.060000px;}
.wsc8{word-spacing:3.120000px;}
.ws4f{word-spacing:3.180000px;}
.ws6c{word-spacing:3.240000px;}
.ws68{word-spacing:3.315000px;}
.ws99{word-spacing:3.417000px;}
.ws1b{word-spacing:3.420000px;}
.ws2a{word-spacing:3.600000px;}
.ws100{word-spacing:3.621000px;}
.ws32{word-spacing:3.660000px;}
.ws73{word-spacing:3.720000px;}
.ws3f{word-spacing:3.780000px;}
.ws91{word-spacing:3.825000px;}
.ws56{word-spacing:3.840000px;}
.ws60{word-spacing:3.900000px;}
.ws7e{word-spacing:4.020000px;}
.ws117{word-spacing:4.080000px;}
.wsf8{word-spacing:4.131000px;}
.wsab{word-spacing:4.140000px;}
.wsa3{word-spacing:4.200000px;}
.wsad{word-spacing:4.260000px;}
.ws6f{word-spacing:4.320000px;}
.ws109{word-spacing:4.335000px;}
.wsc2{word-spacing:4.380000px;}
.ws69{word-spacing:4.386000px;}
.ws77{word-spacing:4.440000px;}
.ws116{word-spacing:4.488000px;}
.ws1a{word-spacing:4.500000px;}
.wse8{word-spacing:4.620000px;}
.ws10d{word-spacing:4.641000px;}
.wsa2{word-spacing:4.680000px;}
.wsef{word-spacing:4.740000px;}
.ws96{word-spacing:4.743000px;}
.ws121{word-spacing:4.794000px;}
.ws49{word-spacing:4.800000px;}
.wsc{word-spacing:4.860000px;}
.wsf6{word-spacing:4.896000px;}
.ws6e{word-spacing:4.920000px;}
.ws92{word-spacing:4.998000px;}
.wsd5{word-spacing:5.040000px;}
.wsbd{word-spacing:5.100000px;}
.ws83{word-spacing:5.160000px;}
.ws5b{word-spacing:5.220000px;}
.ws34{word-spacing:5.280000px;}
.ws14{word-spacing:5.340000px;}
.ws61{word-spacing:5.355000px;}
.wse9{word-spacing:5.400000px;}
.wsb9{word-spacing:5.457000px;}
.wsc3{word-spacing:5.520000px;}
.ws93{word-spacing:5.559000px;}
.ws6b{word-spacing:5.580000px;}
.ws5d{word-spacing:5.640000px;}
.ws10a{word-spacing:5.661000px;}
.ws84{word-spacing:5.700000px;}
.ws53{word-spacing:5.820000px;}
.wsb3{word-spacing:5.880000px;}
.ws3a{word-spacing:5.940000px;}
.ws11{word-spacing:6.000000px;}
.wsd1{word-spacing:6.060000px;}
.ws10e{word-spacing:6.069000px;}
.wsb4{word-spacing:6.120000px;}
.wsbb{word-spacing:6.171000px;}
.ws87{word-spacing:6.180000px;}
.ws108{word-spacing:6.222000px;}
.ws42{word-spacing:6.240000px;}
.ws24{word-spacing:6.300000px;}
.ws118{word-spacing:6.477000px;}
.ws5f{word-spacing:6.600000px;}
.ws67{word-spacing:6.630000px;}
.ws23{word-spacing:6.660000px;}
.ws106{word-spacing:6.681000px;}
.ws7b{word-spacing:6.780000px;}
.ws71{word-spacing:6.900000px;}
.ws62{word-spacing:6.936000px;}
.ws6d{word-spacing:6.960000px;}
.ws39{word-spacing:7.020000px;}
.ws9e{word-spacing:7.080000px;}
.wsba{word-spacing:7.089000px;}
.ws66{word-spacing:7.191000px;}
.wsd2{word-spacing:7.200000px;}
.wsfb{word-spacing:7.242000px;}
.ws47{word-spacing:7.260000px;}
.wsfa{word-spacing:7.344000px;}
.ws18{word-spacing:7.380000px;}
.wsd9{word-spacing:7.440000px;}
.ws10b{word-spacing:7.497000px;}
.wsaa{word-spacing:7.500000px;}
.ws114{word-spacing:7.548000px;}
.ws4b{word-spacing:7.620000px;}
.wsa6{word-spacing:7.740000px;}
.ws30{word-spacing:7.860000px;}
.wscd{word-spacing:8.220000px;}
.ws21{word-spacing:8.340000px;}
.ws10f{word-spacing:8.415000px;}
.wsa{word-spacing:8.460000px;}
.ws88{word-spacing:8.580000px;}
.ws9f{word-spacing:8.640000px;}
.wsb5{word-spacing:8.700000px;}
.ws48{word-spacing:8.760000px;}
.ws11b{word-spacing:8.823000px;}
.ws112{word-spacing:8.874000px;}
.ws31{word-spacing:8.880000px;}
.ws9b{word-spacing:9.000000px;}
.ws29{word-spacing:9.180000px;}
.ws13{word-spacing:9.240000px;}
.wse5{word-spacing:9.300000px;}
.wsc1{word-spacing:9.420000px;}
.wsec{word-spacing:9.720000px;}
.ws7f{word-spacing:9.840000px;}
.ws105{word-spacing:9.843000px;}
.ws8f{word-spacing:9.900000px;}
.wsd0{word-spacing:9.960000px;}
.ws75{word-spacing:10.140000px;}
.ws90{word-spacing:10.200000px;}
.wsf2{word-spacing:10.440000px;}
.wscc{word-spacing:10.500000px;}
.ws2f{word-spacing:10.620000px;}
.wsfe{word-spacing:10.863000px;}
.ws79{word-spacing:10.920000px;}
.ws110{word-spacing:10.965000px;}
.ws3d{word-spacing:11.040000px;}
.wsda{word-spacing:11.160000px;}
.wsf0{word-spacing:11.340000px;}
.ws45{word-spacing:11.520000px;}
.wse0{word-spacing:11.580000px;}
.ws15{word-spacing:11.640000px;}
.ws41{word-spacing:11.940000px;}
.ws38{word-spacing:12.120000px;}
.ws107{word-spacing:12.648000px;}
.ws103{word-spacing:12.750000px;}
.wsa0{word-spacing:12.900000px;}
.ws2e{word-spacing:12.960000px;}
.wsc4{word-spacing:13.020000px;}
.ws12{word-spacing:13.620000px;}
.ws113{word-spacing:13.719000px;}
.wsb2{word-spacing:13.740000px;}
.wse{word-spacing:13.800000px;}
.wsde{word-spacing:13.860000px;}
.wsb1{word-spacing:14.040000px;}
.ws43{word-spacing:14.400000px;}
.wse2{word-spacing:14.700000px;}
.wse1{word-spacing:14.820000px;}
.wsb7{word-spacing:14.880000px;}
.ws78{word-spacing:15.000000px;}
.wsb8{word-spacing:15.120000px;}
.ws46{word-spacing:15.660000px;}
.wsd7{word-spacing:15.900000px;}
.ws80{word-spacing:15.960000px;}
.ws57{word-spacing:16.080000px;}
.ws59{word-spacing:16.200000px;}
.ws55{word-spacing:16.260000px;}
.wsf9{word-spacing:16.422000px;}
.ws7c{word-spacing:16.980000px;}
.ws11a{word-spacing:17.136000px;}
.ws4e{word-spacing:17.220000px;}
.ws81{word-spacing:17.640000px;}
.wse7{word-spacing:18.420000px;}
.ws9d{word-spacing:18.660000px;}
.wse6{word-spacing:18.840000px;}
.ws122{word-spacing:18.921000px;}
.ws33{word-spacing:19.800000px;}
.wse4{word-spacing:19.860000px;}
.wsce{word-spacing:20.100000px;}
.ws3e{word-spacing:20.400000px;}
.ws58{word-spacing:20.526000px;}
.ws19{word-spacing:21.456000px;}
.wsd4{word-spacing:23.460000px;}
.wscb{word-spacing:33.660000px;}
.ws74{word-spacing:43.680000px;}
.wsea{word-spacing:54.468000px;}
.wseb{word-spacing:70.890000px;}
._c{margin-left:-70.498800px;}
._1e{margin-left:-59.807400px;}
._1b{margin-left:-20.460000px;}
._16{margin-left:-18.876000px;}
._18{margin-left:-16.440000px;}
._15{margin-left:-15.000000px;}
._19{margin-left:-13.962000px;}
._20{margin-left:-12.750000px;}
._14{margin-left:-11.478000px;}
._12{margin-left:-10.260000px;}
._1a{margin-left:-8.520000px;}
._1c{margin-left:-7.121400px;}
._1d{margin-left:-6.060000px;}
._e{margin-left:-4.602000px;}
._0{margin-left:-3.366000px;}
._1{margin-left:-1.386000px;}
._b{width:1.121400px;}
._8{width:2.232000px;}
._7{width:4.152000px;}
._2{width:5.304000px;}
._a{width:7.176000px;}
._11{width:8.202000px;}
._f{width:9.258000px;}
._4{width:10.926000px;}
._6{width:12.057600px;}
._5{width:13.287000px;}
._1f{width:14.353500px;}
._21{width:15.446400px;}
._10{width:16.668000px;}
._9{width:18.546000px;}
._3{width:20.526000px;}
._17{width:23.657400px;}
._13{width:37.994400px;}
._d{width:54.417000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.700000px;}
.fs7{font-size:42.000000px;}
.fs1{font-size:51.000000px;}
.fs0{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:90.000000px;}
.fs6{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y34{bottom:60.997650px;}
.y21{bottom:110.551050px;}
.y59{bottom:110.551200px;}
.y69{bottom:113.799150px;}
.yab{bottom:115.458900px;}
.y18{bottom:124.299150px;}
.y20{bottom:125.551050px;}
.ydb{bottom:125.957700px;}
.y68{bottom:128.799150px;}
.yaa{bottom:130.458900px;}
.yda{bottom:140.957700px;}
.y17{bottom:143.049150px;}
.ya9{bottom:145.458900px;}
.y1f{bottom:145.651050px;}
.ya8{bottom:160.458900px;}
.y16{bottom:161.799150px;}
.y1e{bottom:163.051050px;}
.y67{bottom:173.773500px;}
.yd9{bottom:174.707700px;}
.ya7{bottom:175.458900px;}
.y15{bottom:180.549150px;}
.y1d{bottom:183.151050px;}
.y66{bottom:188.773500px;}
.ya6{bottom:190.458900px;}
.y14{bottom:199.299150px;}
.y65{bottom:203.773500px;}
.ya5{bottom:205.458900px;}
.y1c{bottom:208.051050px;}
.y13{bottom:218.049150px;}
.y64{bottom:218.773500px;}
.ya4{bottom:220.458900px;}
.y1b{bottom:223.051050px;}
.yd8{bottom:230.957700px;}
.y63{bottom:233.773500px;}
.ya3{bottom:235.458900px;}
.y12{bottom:236.799150px;}
.yd7{bottom:245.957700px;}
.y62{bottom:248.773500px;}
.ya2{bottom:250.458900px;}
.y11{bottom:255.549150px;}
.yd6{bottom:260.957700px;}
.ya1{bottom:265.458900px;}
.y10{bottom:274.299150px;}
.yd5{bottom:275.957700px;}
.ya0{bottom:280.458900px;}
.y57{bottom:283.813650px;}
.yd4{bottom:290.957700px;}
.yf{bottom:293.049150px;}
.y9f{bottom:295.458900px;}
.y56{bottom:298.813650px;}
.yd3{bottom:305.957700px;}
.y9e{bottom:310.458900px;}
.ye{bottom:311.799150px;}
.y55{bottom:313.813650px;}
.yd2{bottom:320.957700px;}
.y9d{bottom:325.458900px;}
.y54{bottom:328.813650px;}
.y1a{bottom:330.549150px;}
.yd1{bottom:335.957700px;}
.y9c{bottom:340.458900px;}
.y53{bottom:343.813650px;}
.yd{bottom:349.299150px;}
.yd0{bottom:350.957700px;}
.y9b{bottom:355.458900px;}
.ycf{bottom:365.957700px;}
.y19{bottom:368.049150px;}
.y9a{bottom:370.458900px;}
.yce{bottom:380.957700px;}
.y99{bottom:385.458900px;}
.yc{bottom:386.799150px;}
.ycd{bottom:395.957700px;}
.y98{bottom:400.458900px;}
.yb{bottom:405.549150px;}
.ycc{bottom:410.957700px;}
.y97{bottom:415.458900px;}
.ya{bottom:424.299150px;}
.y96{bottom:430.458900px;}
.y61{bottom:435.614100px;}
.y9{bottom:443.049150px;}
.ycb{bottom:443.957700px;}
.y95{bottom:445.458900px;}
.y60{bottom:450.614100px;}
.yca{bottom:458.957700px;}
.y94{bottom:460.458900px;}
.y8{bottom:461.799150px;}
.y5f{bottom:465.614100px;}
.yc9{bottom:473.957700px;}
.y93{bottom:475.458900px;}
.y7{bottom:480.549150px;}
.y5e{bottom:480.614100px;}
.y92{bottom:490.458900px;}
.y5d{bottom:495.614100px;}
.y6{bottom:499.299150px;}
.y91{bottom:505.458900px;}
.yc8{bottom:506.957700px;}
.y5c{bottom:510.614100px;}
.y5{bottom:518.049150px;}
.y90{bottom:520.458900px;}
.y5a{bottom:520.554000px;}
.y5b{bottom:525.614100px;}
.y8f{bottom:535.458900px;}
.y4{bottom:536.799150px;}
.yc7{bottom:539.957700px;}
.y8e{bottom:550.458900px;}
.yc6{bottom:554.957700px;}
.y50{bottom:555.549150px;}
.y8d{bottom:565.458900px;}
.yc5{bottom:569.957700px;}
.y4f{bottom:574.299150px;}
.y8c{bottom:580.458900px;}
.y2e{bottom:589.362600px;}
.y4e{bottom:593.049150px;}
.y8b{bottom:595.458900px;}
.yc4{bottom:602.957700px;}
.y8a{bottom:610.458900px;}
.y4d{bottom:611.799150px;}
.yc3{bottom:617.957700px;}
.y89{bottom:625.458900px;}
.y2d{bottom:626.112600px;}
.y4c{bottom:630.549150px;}
.y88{bottom:640.458900px;}
.y2c{bottom:644.862600px;}
.y4b{bottom:649.299150px;}
.yc2{bottom:650.957700px;}
.y87{bottom:655.458900px;}
.y2b{bottom:663.612600px;}
.y4a{bottom:668.049150px;}
.y86{bottom:670.458900px;}
.y2a{bottom:682.362600px;}
.y85{bottom:685.458900px;}
.y49{bottom:686.799150px;}
.yc1{bottom:688.458900px;}
.y84{bottom:700.458900px;}
.y29{bottom:701.112750px;}
.yc0{bottom:703.458900px;}
.y48{bottom:705.549150px;}
.y83{bottom:715.458900px;}
.y28{bottom:719.862750px;}
.y47{bottom:724.299150px;}
.y82{bottom:730.458900px;}
.ybf{bottom:736.458900px;}
.y27{bottom:738.612750px;}
.y46{bottom:743.049150px;}
.y81{bottom:745.458900px;}
.ybe{bottom:751.458900px;}
.y26{bottom:757.362750px;}
.y80{bottom:760.458900px;}
.y45{bottom:761.799150px;}
.ybd{bottom:766.458900px;}
.y7f{bottom:775.458900px;}
.y25{bottom:776.112600px;}
.y44{bottom:780.549150px;}
.ybc{bottom:781.458900px;}
.y7e{bottom:790.458900px;}
.y24{bottom:794.862600px;}
.ybb{bottom:796.458900px;}
.y52{bottom:799.299150px;}
.y7d{bottom:805.458900px;}
.yba{bottom:811.458900px;}
.y23{bottom:813.612600px;}
.y43{bottom:818.049150px;}
.y7c{bottom:820.458900px;}
.yb9{bottom:826.458900px;}
.y22{bottom:832.362600px;}
.y7b{bottom:835.458900px;}
.y51{bottom:836.799150px;}
.yb8{bottom:841.458900px;}
.y7a{bottom:850.458900px;}
.y42{bottom:855.549150px;}
.ydd{bottom:862.458900px;}
.y79{bottom:865.458900px;}
.y41{bottom:874.299150px;}
.yb7{bottom:874.458900px;}
.ydc{bottom:877.458900px;}
.y30{bottom:877.628400px;}
.y78{bottom:880.458900px;}
.yb6{bottom:889.458900px;}
.y2f{bottom:892.628400px;}
.y40{bottom:893.049150px;}
.y77{bottom:895.458900px;}
.yb5{bottom:904.458900px;}
.y76{bottom:910.458900px;}
.y3f{bottom:911.799150px;}
.yb4{bottom:919.458900px;}
.y75{bottom:925.458900px;}
.y3e{bottom:930.549150px;}
.yb3{bottom:934.458900px;}
.y33{bottom:936.206700px;}
.y74{bottom:940.458900px;}
.y3d{bottom:949.299150px;}
.yb2{bottom:949.458900px;}
.y73{bottom:955.458900px;}
.yb1{bottom:964.458900px;}
.y3c{bottom:968.049150px;}
.y72{bottom:970.458900px;}
.yb0{bottom:979.458900px;}
.y32{bottom:980.043300px;}
.y71{bottom:985.458900px;}
.y3b{bottom:986.799150px;}
.y70{bottom:1000.458900px;}
.y3a{bottom:1005.549150px;}
.y31{bottom:1007.043300px;}
.yaf{bottom:1012.458900px;}
.y6f{bottom:1015.458900px;}
.y39{bottom:1024.299150px;}
.yae{bottom:1027.458900px;}
.y6e{bottom:1030.458900px;}
.yad{bottom:1042.458900px;}
.y38{bottom:1043.049150px;}
.y6d{bottom:1045.458900px;}
.yac{bottom:1057.458900px;}
.y6c{bottom:1060.458900px;}
.y37{bottom:1061.799150px;}
.y1{bottom:1075.294050px;}
.y6b{bottom:1075.458900px;}
.y36{bottom:1080.549150px;}
.y58{bottom:1086.818700px;}
.y6a{bottom:1090.458900px;}
.y3{bottom:1109.543850px;}
.y35{bottom:1125.713100px;}
.y2{bottom:1126.032000px;}
.h9{height:24.805225px;}
.h8{height:35.436035px;}
.h7{height:36.855469px;}
.h4{height:41.689453px;}
.h3{height:48.297000px;}
.h10{height:49.113000px;}
.h11{height:50.027344px;}
.hf{height:50.439000px;}
.h2{height:55.404000px;}
.hb{height:57.780000px;}
.ha{height:59.340000px;}
.hd{height:64.446000px;}
.h5{height:64.680000px;}
.h6{height:71.208000px;}
.he{height:72.000000px;}
.hc{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535400px;}
.x1{left:85.181850px;}
.x4{left:90.972600px;}
.xa{left:93.543300px;}
.x5{left:97.795200px;}
.xc{left:102.047250px;}
.x3{left:459.850350px;}
.x8{left:476.220450px;}
.xb{left:484.724400px;}
.x7{left:683.202300px;}
.xd{left:721.641750px;}
.x9{left:727.697850px;}
.x6{left:755.658750px;}
@media print{
.v1{vertical-align:-18.133333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.333333pt;}
.ls6{letter-spacing:-13.333333pt;}
.ls9{letter-spacing:-11.333333pt;}
.lsa{letter-spacing:-11.242667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000533pt;}
.ls4{letter-spacing:0.006933pt;}
.ls7{letter-spacing:0.045333pt;}
.ls0{letter-spacing:3.546667pt;}
.ls8{letter-spacing:13.962667pt;}
.ls1{letter-spacing:24.273067pt;}
.ls2{letter-spacing:47.124800pt;}
.ws1{word-spacing:-13.333333pt;}
.wsf5{word-spacing:-12.928000pt;}
.ws82{word-spacing:-11.333333pt;}
.wsf4{word-spacing:-11.088000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.773333pt;}
.ws4{word-spacing:-10.240000pt;}
.ws27{word-spacing:-9.157333pt;}
.ws0{word-spacing:-8.885333pt;}
.wsf3{word-spacing:-8.704000pt;}
.ws2{word-spacing:-7.933333pt;}
.ws6{word-spacing:-7.168000pt;}
.ws5c{word-spacing:-6.666667pt;}
.ws20{word-spacing:-4.533333pt;}
.wsee{word-spacing:-3.093333pt;}
.wsf1{word-spacing:-3.040000pt;}
.wsc7{word-spacing:-2.720000pt;}
.wsd6{word-spacing:-2.613333pt;}
.wsac{word-spacing:-2.560000pt;}
.wsf{word-spacing:-2.453333pt;}
.wsae{word-spacing:-2.400000pt;}
.ws40{word-spacing:-2.293333pt;}
.ws25{word-spacing:-2.133333pt;}
.wsdf{word-spacing:-2.080000pt;}
.ws8d{word-spacing:-2.026667pt;}
.wse3{word-spacing:-1.973333pt;}
.ws86{word-spacing:-1.920000pt;}
.ws9a{word-spacing:-1.768000pt;}
.ws10{word-spacing:-1.760000pt;}
.ws2d{word-spacing:-1.600000pt;}
.ws4d{word-spacing:-1.546667pt;}
.wsfc{word-spacing:-1.450667pt;}
.wscf{word-spacing:-1.386667pt;}
.ws3b{word-spacing:-1.333333pt;}
.wsd8{word-spacing:-1.280000pt;}
.ws9{word-spacing:-1.226667pt;}
.wsc5{word-spacing:-1.120000pt;}
.wsd{word-spacing:-1.013333pt;}
.ws6a{word-spacing:-0.960000pt;}
.wsbc{word-spacing:-0.952000pt;}
.ws97{word-spacing:-0.861333pt;}
.ws44{word-spacing:-0.853333pt;}
.ws2c{word-spacing:-0.800000pt;}
.ws52{word-spacing:-0.746667pt;}
.wsed{word-spacing:-0.640000pt;}
.ws4c{word-spacing:-0.533333pt;}
.ws7{word-spacing:-0.506667pt;}
.wsd3{word-spacing:-0.480000pt;}
.wsdd{word-spacing:-0.373333pt;}
.ws1f{word-spacing:-0.320000pt;}
.ws63{word-spacing:-0.272000pt;}
.ws4a{word-spacing:-0.266667pt;}
.wsfd{word-spacing:-0.181333pt;}
.ws89{word-spacing:-0.160000pt;}
.ws85{word-spacing:-0.106667pt;}
.ws26{word-spacing:-0.053333pt;}
.ws5e{word-spacing:-0.045333pt;}
.ws8{word-spacing:0.000000pt;}
.ws8e{word-spacing:0.053333pt;}
.ws9c{word-spacing:0.160000pt;}
.ws111{word-spacing:0.181333pt;}
.wsf7{word-spacing:0.226667pt;}
.ws11c{word-spacing:0.272000pt;}
.ws8a{word-spacing:0.320000pt;}
.ws11d{word-spacing:0.362667pt;}
.wsb{word-spacing:0.373333pt;}
.ws115{word-spacing:0.453333pt;}
.ws37{word-spacing:0.480000pt;}
.ws101{word-spacing:0.498667pt;}
.wsc6{word-spacing:0.533333pt;}
.wsbe{word-spacing:0.544000pt;}
.ws1e{word-spacing:0.586667pt;}
.wsa4{word-spacing:0.640000pt;}
.wsa9{word-spacing:0.693333pt;}
.ws1d{word-spacing:0.746667pt;}
.ws11e{word-spacing:0.770667pt;}
.wsdc{word-spacing:0.853333pt;}
.ws98{word-spacing:0.861333pt;}
.ws50{word-spacing:0.906667pt;}
.ws16{word-spacing:0.960000pt;}
.ws3c{word-spacing:1.013333pt;}
.wsca{word-spacing:1.066667pt;}
.ws94{word-spacing:1.088000pt;}
.wsb0{word-spacing:1.120000pt;}
.ws8b{word-spacing:1.173333pt;}
.ws95{word-spacing:1.178667pt;}
.ws10c{word-spacing:1.224000pt;}
.wsa5{word-spacing:1.226667pt;}
.ws7a{word-spacing:1.280000pt;}
.ws35{word-spacing:1.333333pt;}
.ws120{word-spacing:1.360000pt;}
.ws8c{word-spacing:1.386667pt;}
.ws65{word-spacing:1.405333pt;}
.wsaf{word-spacing:1.546667pt;}
.ws7d{word-spacing:1.653333pt;}
.ws104{word-spacing:1.722667pt;}
.ws1c{word-spacing:1.760000pt;}
.wsa1{word-spacing:1.813333pt;}
.ws11f{word-spacing:1.858667pt;}
.ws70{word-spacing:1.866667pt;}
.ws54{word-spacing:1.920000pt;}
.ws119{word-spacing:1.949333pt;}
.ws36{word-spacing:1.973333pt;}
.ws17{word-spacing:2.026667pt;}
.ws76{word-spacing:2.080000pt;}
.ws2b{word-spacing:2.133333pt;}
.wsa7{word-spacing:2.186667pt;}
.ws22{word-spacing:2.240000pt;}
.ws64{word-spacing:2.266667pt;}
.wsdb{word-spacing:2.293333pt;}
.wsa8{word-spacing:2.346667pt;}
.ws5a{word-spacing:2.400000pt;}
.ws102{word-spacing:2.402667pt;}
.wsbf{word-spacing:2.448000pt;}
.wsc9{word-spacing:2.453333pt;}
.ws51{word-spacing:2.506667pt;}
.wsff{word-spacing:2.538667pt;}
.wsc0{word-spacing:2.560000pt;}
.ws72{word-spacing:2.666667pt;}
.ws28{word-spacing:2.674667pt;}
.wsb6{word-spacing:2.720000pt;}
.wsc8{word-spacing:2.773333pt;}
.ws4f{word-spacing:2.826667pt;}
.ws6c{word-spacing:2.880000pt;}
.ws68{word-spacing:2.946667pt;}
.ws99{word-spacing:3.037333pt;}
.ws1b{word-spacing:3.040000pt;}
.ws2a{word-spacing:3.200000pt;}
.ws100{word-spacing:3.218667pt;}
.ws32{word-spacing:3.253333pt;}
.ws73{word-spacing:3.306667pt;}
.ws3f{word-spacing:3.360000pt;}
.ws91{word-spacing:3.400000pt;}
.ws56{word-spacing:3.413333pt;}
.ws60{word-spacing:3.466667pt;}
.ws7e{word-spacing:3.573333pt;}
.ws117{word-spacing:3.626667pt;}
.wsf8{word-spacing:3.672000pt;}
.wsab{word-spacing:3.680000pt;}
.wsa3{word-spacing:3.733333pt;}
.wsad{word-spacing:3.786667pt;}
.ws6f{word-spacing:3.840000pt;}
.ws109{word-spacing:3.853333pt;}
.wsc2{word-spacing:3.893333pt;}
.ws69{word-spacing:3.898667pt;}
.ws77{word-spacing:3.946667pt;}
.ws116{word-spacing:3.989333pt;}
.ws1a{word-spacing:4.000000pt;}
.wse8{word-spacing:4.106667pt;}
.ws10d{word-spacing:4.125333pt;}
.wsa2{word-spacing:4.160000pt;}
.wsef{word-spacing:4.213333pt;}
.ws96{word-spacing:4.216000pt;}
.ws121{word-spacing:4.261333pt;}
.ws49{word-spacing:4.266667pt;}
.wsc{word-spacing:4.320000pt;}
.wsf6{word-spacing:4.352000pt;}
.ws6e{word-spacing:4.373333pt;}
.ws92{word-spacing:4.442667pt;}
.wsd5{word-spacing:4.480000pt;}
.wsbd{word-spacing:4.533333pt;}
.ws83{word-spacing:4.586667pt;}
.ws5b{word-spacing:4.640000pt;}
.ws34{word-spacing:4.693333pt;}
.ws14{word-spacing:4.746667pt;}
.ws61{word-spacing:4.760000pt;}
.wse9{word-spacing:4.800000pt;}
.wsb9{word-spacing:4.850667pt;}
.wsc3{word-spacing:4.906667pt;}
.ws93{word-spacing:4.941333pt;}
.ws6b{word-spacing:4.960000pt;}
.ws5d{word-spacing:5.013333pt;}
.ws10a{word-spacing:5.032000pt;}
.ws84{word-spacing:5.066667pt;}
.ws53{word-spacing:5.173333pt;}
.wsb3{word-spacing:5.226667pt;}
.ws3a{word-spacing:5.280000pt;}
.ws11{word-spacing:5.333333pt;}
.wsd1{word-spacing:5.386667pt;}
.ws10e{word-spacing:5.394667pt;}
.wsb4{word-spacing:5.440000pt;}
.wsbb{word-spacing:5.485333pt;}
.ws87{word-spacing:5.493333pt;}
.ws108{word-spacing:5.530667pt;}
.ws42{word-spacing:5.546667pt;}
.ws24{word-spacing:5.600000pt;}
.ws118{word-spacing:5.757333pt;}
.ws5f{word-spacing:5.866667pt;}
.ws67{word-spacing:5.893333pt;}
.ws23{word-spacing:5.920000pt;}
.ws106{word-spacing:5.938667pt;}
.ws7b{word-spacing:6.026667pt;}
.ws71{word-spacing:6.133333pt;}
.ws62{word-spacing:6.165333pt;}
.ws6d{word-spacing:6.186667pt;}
.ws39{word-spacing:6.240000pt;}
.ws9e{word-spacing:6.293333pt;}
.wsba{word-spacing:6.301333pt;}
.ws66{word-spacing:6.392000pt;}
.wsd2{word-spacing:6.400000pt;}
.wsfb{word-spacing:6.437333pt;}
.ws47{word-spacing:6.453333pt;}
.wsfa{word-spacing:6.528000pt;}
.ws18{word-spacing:6.560000pt;}
.wsd9{word-spacing:6.613333pt;}
.ws10b{word-spacing:6.664000pt;}
.wsaa{word-spacing:6.666667pt;}
.ws114{word-spacing:6.709333pt;}
.ws4b{word-spacing:6.773333pt;}
.wsa6{word-spacing:6.880000pt;}
.ws30{word-spacing:6.986667pt;}
.wscd{word-spacing:7.306667pt;}
.ws21{word-spacing:7.413333pt;}
.ws10f{word-spacing:7.480000pt;}
.wsa{word-spacing:7.520000pt;}
.ws88{word-spacing:7.626667pt;}
.ws9f{word-spacing:7.680000pt;}
.wsb5{word-spacing:7.733333pt;}
.ws48{word-spacing:7.786667pt;}
.ws11b{word-spacing:7.842667pt;}
.ws112{word-spacing:7.888000pt;}
.ws31{word-spacing:7.893333pt;}
.ws9b{word-spacing:8.000000pt;}
.ws29{word-spacing:8.160000pt;}
.ws13{word-spacing:8.213333pt;}
.wse5{word-spacing:8.266667pt;}
.wsc1{word-spacing:8.373333pt;}
.wsec{word-spacing:8.640000pt;}
.ws7f{word-spacing:8.746667pt;}
.ws105{word-spacing:8.749333pt;}
.ws8f{word-spacing:8.800000pt;}
.wsd0{word-spacing:8.853333pt;}
.ws75{word-spacing:9.013333pt;}
.ws90{word-spacing:9.066667pt;}
.wsf2{word-spacing:9.280000pt;}
.wscc{word-spacing:9.333333pt;}
.ws2f{word-spacing:9.440000pt;}
.wsfe{word-spacing:9.656000pt;}
.ws79{word-spacing:9.706667pt;}
.ws110{word-spacing:9.746667pt;}
.ws3d{word-spacing:9.813333pt;}
.wsda{word-spacing:9.920000pt;}
.wsf0{word-spacing:10.080000pt;}
.ws45{word-spacing:10.240000pt;}
.wse0{word-spacing:10.293333pt;}
.ws15{word-spacing:10.346667pt;}
.ws41{word-spacing:10.613333pt;}
.ws38{word-spacing:10.773333pt;}
.ws107{word-spacing:11.242667pt;}
.ws103{word-spacing:11.333333pt;}
.wsa0{word-spacing:11.466667pt;}
.ws2e{word-spacing:11.520000pt;}
.wsc4{word-spacing:11.573333pt;}
.ws12{word-spacing:12.106667pt;}
.ws113{word-spacing:12.194667pt;}
.wsb2{word-spacing:12.213333pt;}
.wse{word-spacing:12.266667pt;}
.wsde{word-spacing:12.320000pt;}
.wsb1{word-spacing:12.480000pt;}
.ws43{word-spacing:12.800000pt;}
.wse2{word-spacing:13.066667pt;}
.wse1{word-spacing:13.173333pt;}
.wsb7{word-spacing:13.226667pt;}
.ws78{word-spacing:13.333333pt;}
.wsb8{word-spacing:13.440000pt;}
.ws46{word-spacing:13.920000pt;}
.wsd7{word-spacing:14.133333pt;}
.ws80{word-spacing:14.186667pt;}
.ws57{word-spacing:14.293333pt;}
.ws59{word-spacing:14.400000pt;}
.ws55{word-spacing:14.453333pt;}
.wsf9{word-spacing:14.597333pt;}
.ws7c{word-spacing:15.093333pt;}
.ws11a{word-spacing:15.232000pt;}
.ws4e{word-spacing:15.306667pt;}
.ws81{word-spacing:15.680000pt;}
.wse7{word-spacing:16.373333pt;}
.ws9d{word-spacing:16.586667pt;}
.wse6{word-spacing:16.746667pt;}
.ws122{word-spacing:16.818667pt;}
.ws33{word-spacing:17.600000pt;}
.wse4{word-spacing:17.653333pt;}
.wsce{word-spacing:17.866667pt;}
.ws3e{word-spacing:18.133333pt;}
.ws58{word-spacing:18.245333pt;}
.ws19{word-spacing:19.072000pt;}
.wsd4{word-spacing:20.853333pt;}
.wscb{word-spacing:29.920000pt;}
.ws74{word-spacing:38.826667pt;}
.wsea{word-spacing:48.416000pt;}
.wseb{word-spacing:63.013333pt;}
._c{margin-left:-62.665600pt;}
._1e{margin-left:-53.162133pt;}
._1b{margin-left:-18.186667pt;}
._16{margin-left:-16.778667pt;}
._18{margin-left:-14.613333pt;}
._15{margin-left:-13.333333pt;}
._19{margin-left:-12.410667pt;}
._20{margin-left:-11.333333pt;}
._14{margin-left:-10.202667pt;}
._12{margin-left:-9.120000pt;}
._1a{margin-left:-7.573333pt;}
._1c{margin-left:-6.330133pt;}
._1d{margin-left:-5.386667pt;}
._e{margin-left:-4.090667pt;}
._0{margin-left:-2.992000pt;}
._1{margin-left:-1.232000pt;}
._b{width:0.996800pt;}
._8{width:1.984000pt;}
._7{width:3.690667pt;}
._2{width:4.714667pt;}
._a{width:6.378667pt;}
._11{width:7.290667pt;}
._f{width:8.229333pt;}
._4{width:9.712000pt;}
._6{width:10.717867pt;}
._5{width:11.810667pt;}
._1f{width:12.758667pt;}
._21{width:13.730133pt;}
._10{width:14.816000pt;}
._9{width:16.485333pt;}
._3{width:18.245333pt;}
._17{width:21.028800pt;}
._13{width:33.772800pt;}
._d{width:48.370667pt;}
.fs5{font-size:31.733333pt;}
.fs7{font-size:37.333333pt;}
.fs1{font-size:45.333333pt;}
.fs0{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:80.000000pt;}
.fs6{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:54.220133pt;}
.y21{bottom:98.267600pt;}
.y59{bottom:98.267733pt;}
.y69{bottom:101.154800pt;}
.yab{bottom:102.630133pt;}
.y18{bottom:110.488133pt;}
.y20{bottom:111.600933pt;}
.ydb{bottom:111.962400pt;}
.y68{bottom:114.488133pt;}
.yaa{bottom:115.963467pt;}
.yda{bottom:125.295733pt;}
.y17{bottom:127.154800pt;}
.ya9{bottom:129.296800pt;}
.y1f{bottom:129.467600pt;}
.ya8{bottom:142.630133pt;}
.y16{bottom:143.821467pt;}
.y1e{bottom:144.934267pt;}
.y67{bottom:154.465333pt;}
.yd9{bottom:155.295733pt;}
.ya7{bottom:155.963467pt;}
.y15{bottom:160.488133pt;}
.y1d{bottom:162.800933pt;}
.y66{bottom:167.798667pt;}
.ya6{bottom:169.296800pt;}
.y14{bottom:177.154800pt;}
.y65{bottom:181.132000pt;}
.ya5{bottom:182.630133pt;}
.y1c{bottom:184.934267pt;}
.y13{bottom:193.821467pt;}
.y64{bottom:194.465333pt;}
.ya4{bottom:195.963467pt;}
.y1b{bottom:198.267600pt;}
.yd8{bottom:205.295733pt;}
.y63{bottom:207.798667pt;}
.ya3{bottom:209.296800pt;}
.y12{bottom:210.488133pt;}
.yd7{bottom:218.629067pt;}
.y62{bottom:221.132000pt;}
.ya2{bottom:222.630133pt;}
.y11{bottom:227.154800pt;}
.yd6{bottom:231.962400pt;}
.ya1{bottom:235.963467pt;}
.y10{bottom:243.821467pt;}
.yd5{bottom:245.295733pt;}
.ya0{bottom:249.296800pt;}
.y57{bottom:252.278800pt;}
.yd4{bottom:258.629067pt;}
.yf{bottom:260.488133pt;}
.y9f{bottom:262.630133pt;}
.y56{bottom:265.612133pt;}
.yd3{bottom:271.962400pt;}
.y9e{bottom:275.963467pt;}
.ye{bottom:277.154800pt;}
.y55{bottom:278.945467pt;}
.yd2{bottom:285.295733pt;}
.y9d{bottom:289.296800pt;}
.y54{bottom:292.278800pt;}
.y1a{bottom:293.821467pt;}
.yd1{bottom:298.629067pt;}
.y9c{bottom:302.630133pt;}
.y53{bottom:305.612133pt;}
.yd{bottom:310.488133pt;}
.yd0{bottom:311.962400pt;}
.y9b{bottom:315.963467pt;}
.ycf{bottom:325.295733pt;}
.y19{bottom:327.154800pt;}
.y9a{bottom:329.296800pt;}
.yce{bottom:338.629067pt;}
.y99{bottom:342.630133pt;}
.yc{bottom:343.821467pt;}
.ycd{bottom:351.962400pt;}
.y98{bottom:355.963467pt;}
.yb{bottom:360.488133pt;}
.ycc{bottom:365.295733pt;}
.y97{bottom:369.296800pt;}
.ya{bottom:377.154800pt;}
.y96{bottom:382.630133pt;}
.y61{bottom:387.212533pt;}
.y9{bottom:393.821467pt;}
.ycb{bottom:394.629067pt;}
.y95{bottom:395.963467pt;}
.y60{bottom:400.545867pt;}
.yca{bottom:407.962400pt;}
.y94{bottom:409.296800pt;}
.y8{bottom:410.488133pt;}
.y5f{bottom:413.879200pt;}
.yc9{bottom:421.295733pt;}
.y93{bottom:422.630133pt;}
.y7{bottom:427.154800pt;}
.y5e{bottom:427.212533pt;}
.y92{bottom:435.963467pt;}
.y5d{bottom:440.545867pt;}
.y6{bottom:443.821467pt;}
.y91{bottom:449.296800pt;}
.yc8{bottom:450.629067pt;}
.y5c{bottom:453.879200pt;}
.y5{bottom:460.488133pt;}
.y90{bottom:462.630133pt;}
.y5a{bottom:462.714667pt;}
.y5b{bottom:467.212533pt;}
.y8f{bottom:475.963467pt;}
.y4{bottom:477.154800pt;}
.yc7{bottom:479.962400pt;}
.y8e{bottom:489.296800pt;}
.yc6{bottom:493.295733pt;}
.y50{bottom:493.821467pt;}
.y8d{bottom:502.630133pt;}
.yc5{bottom:506.629067pt;}
.y4f{bottom:510.488133pt;}
.y8c{bottom:515.963467pt;}
.y2e{bottom:523.877867pt;}
.y4e{bottom:527.154800pt;}
.y8b{bottom:529.296800pt;}
.yc4{bottom:535.962400pt;}
.y8a{bottom:542.630133pt;}
.y4d{bottom:543.821467pt;}
.yc3{bottom:549.295733pt;}
.y89{bottom:555.963467pt;}
.y2d{bottom:556.544533pt;}
.y4c{bottom:560.488133pt;}
.y88{bottom:569.296800pt;}
.y2c{bottom:573.211200pt;}
.y4b{bottom:577.154800pt;}
.yc2{bottom:578.629067pt;}
.y87{bottom:582.630133pt;}
.y2b{bottom:589.877867pt;}
.y4a{bottom:593.821467pt;}
.y86{bottom:595.963467pt;}
.y2a{bottom:606.544533pt;}
.y85{bottom:609.296800pt;}
.y49{bottom:610.488133pt;}
.yc1{bottom:611.963467pt;}
.y84{bottom:622.630133pt;}
.y29{bottom:623.211333pt;}
.yc0{bottom:625.296800pt;}
.y48{bottom:627.154800pt;}
.y83{bottom:635.963467pt;}
.y28{bottom:639.878000pt;}
.y47{bottom:643.821467pt;}
.y82{bottom:649.296800pt;}
.ybf{bottom:654.630133pt;}
.y27{bottom:656.544667pt;}
.y46{bottom:660.488133pt;}
.y81{bottom:662.630133pt;}
.ybe{bottom:667.963467pt;}
.y26{bottom:673.211333pt;}
.y80{bottom:675.963467pt;}
.y45{bottom:677.154800pt;}
.ybd{bottom:681.296800pt;}
.y7f{bottom:689.296800pt;}
.y25{bottom:689.877867pt;}
.y44{bottom:693.821467pt;}
.ybc{bottom:694.630133pt;}
.y7e{bottom:702.630133pt;}
.y24{bottom:706.544533pt;}
.ybb{bottom:707.963467pt;}
.y52{bottom:710.488133pt;}
.y7d{bottom:715.963467pt;}
.yba{bottom:721.296800pt;}
.y23{bottom:723.211200pt;}
.y43{bottom:727.154800pt;}
.y7c{bottom:729.296800pt;}
.yb9{bottom:734.630133pt;}
.y22{bottom:739.877867pt;}
.y7b{bottom:742.630133pt;}
.y51{bottom:743.821467pt;}
.yb8{bottom:747.963467pt;}
.y7a{bottom:755.963467pt;}
.y42{bottom:760.488133pt;}
.ydd{bottom:766.630133pt;}
.y79{bottom:769.296800pt;}
.y41{bottom:777.154800pt;}
.yb7{bottom:777.296800pt;}
.ydc{bottom:779.963467pt;}
.y30{bottom:780.114133pt;}
.y78{bottom:782.630133pt;}
.yb6{bottom:790.630133pt;}
.y2f{bottom:793.447467pt;}
.y40{bottom:793.821467pt;}
.y77{bottom:795.963467pt;}
.yb5{bottom:803.963467pt;}
.y76{bottom:809.296800pt;}
.y3f{bottom:810.488133pt;}
.yb4{bottom:817.296800pt;}
.y75{bottom:822.630133pt;}
.y3e{bottom:827.154800pt;}
.yb3{bottom:830.630133pt;}
.y33{bottom:832.183733pt;}
.y74{bottom:835.963467pt;}
.y3d{bottom:843.821467pt;}
.yb2{bottom:843.963467pt;}
.y73{bottom:849.296800pt;}
.yb1{bottom:857.296800pt;}
.y3c{bottom:860.488133pt;}
.y72{bottom:862.630133pt;}
.yb0{bottom:870.630133pt;}
.y32{bottom:871.149600pt;}
.y71{bottom:875.963467pt;}
.y3b{bottom:877.154800pt;}
.y70{bottom:889.296800pt;}
.y3a{bottom:893.821467pt;}
.y31{bottom:895.149600pt;}
.yaf{bottom:899.963467pt;}
.y6f{bottom:902.630133pt;}
.y39{bottom:910.488133pt;}
.yae{bottom:913.296800pt;}
.y6e{bottom:915.963467pt;}
.yad{bottom:926.630133pt;}
.y38{bottom:927.154800pt;}
.y6d{bottom:929.296800pt;}
.yac{bottom:939.963467pt;}
.y6c{bottom:942.630133pt;}
.y37{bottom:943.821467pt;}
.y1{bottom:955.816933pt;}
.y6b{bottom:955.963467pt;}
.y36{bottom:960.488133pt;}
.y58{bottom:966.061067pt;}
.y6a{bottom:969.296800pt;}
.y3{bottom:986.261200pt;}
.y35{bottom:1000.633867pt;}
.y2{bottom:1000.917333pt;}
.h9{height:22.049089pt;}
.h8{height:31.498698pt;}
.h7{height:32.760417pt;}
.h4{height:37.057292pt;}
.h3{height:42.930667pt;}
.h10{height:43.656000pt;}
.h11{height:44.468750pt;}
.hf{height:44.834667pt;}
.h2{height:49.248000pt;}
.hb{height:51.360000pt;}
.ha{height:52.746667pt;}
.hd{height:57.285333pt;}
.h5{height:57.493333pt;}
.h6{height:63.296000pt;}
.he{height:64.000000pt;}
.hc{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031467pt;}
.x1{left:75.717200pt;}
.x4{left:80.864533pt;}
.xa{left:83.149600pt;}
.x5{left:86.929067pt;}
.xc{left:90.708667pt;}
.x3{left:408.755867pt;}
.x8{left:423.307067pt;}
.xb{left:430.866133pt;}
.x7{left:607.290933pt;}
.xd{left:641.459333pt;}
.x9{left:646.842533pt;}
.x6{left:671.696667pt;}
}




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