
    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_478c335544631f56056b6348.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_935bf695aa2ff9c34d09e95b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.720000;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_790e9e23cd6e5217c204a357.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;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_dc34ede57d65c346234faf34.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_01d69c43004f0114708b560d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_54f97c73edd96b8c93a354bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_9aa9f480542dd6f464eec09b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_050009003c41129798ebb816.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01801e9899ed7bb90af6c835.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.707000;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_602f1713888281faaf4f11c3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940000;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_478c335544631f56056b6348.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;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_935bf695aa2ff9c34d09e95b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.720000;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_0ab47baa3721b7bd770c5125.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.720000;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:ffe;src:url('chunks/assets/font_c961958bc00e24f70ed09969.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.969000;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:fff;src:url('chunks/assets/font_302c97b86fe497ad4adffeac.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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:ff10;src:url('chunks/assets/font_41b2f2184066d290ca82db29.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2ad627e30fa5ef1e7d678e97.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.708000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls2{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:7.980000px;}
.ls1{letter-spacing:70.020000px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws4b{word-spacing:-6.180000px;}
.ws95{word-spacing:-6.060000px;}
.ws9d{word-spacing:-5.640000px;}
.ws6e{word-spacing:-5.460000px;}
.wsad{word-spacing:-5.340000px;}
.ws6{word-spacing:-5.184000px;}
.ws77{word-spacing:-5.100000px;}
.wsab{word-spacing:-4.020000px;}
.ws3f{word-spacing:-3.900000px;}
.ws3a{word-spacing:-3.300000px;}
.ws36{word-spacing:-2.760000px;}
.ws94{word-spacing:-2.400000px;}
.ws14{word-spacing:-2.160000px;}
.wsaa{word-spacing:-1.920000px;}
.ws6d{word-spacing:-1.740000px;}
.ws2b{word-spacing:-1.560000px;}
.ws89{word-spacing:-1.380000px;}
.ws87{word-spacing:-1.260000px;}
.ws4{word-spacing:-1.080000px;}
.wsba{word-spacing:-1.020000px;}
.wsbd{word-spacing:-0.900000px;}
.ws52{word-spacing:-0.840000px;}
.ws2d{word-spacing:-0.780000px;}
.ws9e{word-spacing:-0.720000px;}
.ws34{word-spacing:-0.660000px;}
.wsb8{word-spacing:-0.600000px;}
.wsb1{word-spacing:-0.480000px;}
.ws7d{word-spacing:-0.420000px;}
.ws60{word-spacing:-0.240000px;}
.ws39{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws91{word-spacing:0.300000px;}
.ws2e{word-spacing:0.360000px;}
.ws96{word-spacing:0.540000px;}
.ws1c{word-spacing:0.720000px;}
.ws18{word-spacing:0.780000px;}
.ws92{word-spacing:0.900000px;}
.ws13{word-spacing:0.972000px;}
.ws44{word-spacing:1.080000px;}
.ws22{word-spacing:1.200000px;}
.ws5{word-spacing:1.296000px;}
.wsac{word-spacing:1.320000px;}
.ws59{word-spacing:1.620000px;}
.ws6b{word-spacing:1.860000px;}
.wsc{word-spacing:1.998000px;}
.ws49{word-spacing:2.160000px;}
.wsb4{word-spacing:2.340000px;}
.ws88{word-spacing:2.460000px;}
.ws71{word-spacing:2.700000px;}
.ws64{word-spacing:3.000000px;}
.wsb6{word-spacing:3.060000px;}
.ws75{word-spacing:3.480000px;}
.ws5f{word-spacing:3.720000px;}
.ws40{word-spacing:3.900000px;}
.ws7{word-spacing:4.050000px;}
.ws15{word-spacing:4.158000px;}
.ws4f{word-spacing:4.200000px;}
.wsd{word-spacing:4.266000px;}
.ws7f{word-spacing:4.320000px;}
.ws50{word-spacing:4.380000px;}
.ws83{word-spacing:4.440000px;}
.ws1f{word-spacing:4.500000px;}
.ws57{word-spacing:4.620000px;}
.ws9{word-spacing:4.752000px;}
.ws7b{word-spacing:4.920000px;}
.ws81{word-spacing:5.040000px;}
.ws4a{word-spacing:5.100000px;}
.ws6f{word-spacing:5.160000px;}
.ws66{word-spacing:5.340000px;}
.ws4d{word-spacing:5.400000px;}
.ws8{word-spacing:5.508000px;}
.ws16{word-spacing:5.562000px;}
.ws62{word-spacing:5.640000px;}
.ws65{word-spacing:5.760000px;}
.ws10{word-spacing:5.778000px;}
.ws23{word-spacing:5.820000px;}
.ws80{word-spacing:5.880000px;}
.ws82{word-spacing:6.060000px;}
.ws21{word-spacing:6.660000px;}
.ws74{word-spacing:6.720000px;}
.ws27{word-spacing:6.780000px;}
.wsf{word-spacing:6.804000px;}
.ws33{word-spacing:6.840000px;}
.wsb7{word-spacing:6.900000px;}
.wse{word-spacing:7.074000px;}
.wsa5{word-spacing:7.140000px;}
.ws45{word-spacing:7.260000px;}
.ws24{word-spacing:7.440000px;}
.ws2c{word-spacing:7.680000px;}
.ws8f{word-spacing:7.800000px;}
.ws79{word-spacing:7.980000px;}
.ws11{word-spacing:8.262000px;}
.ws8a{word-spacing:8.280000px;}
.ws12{word-spacing:8.370000px;}
.ws25{word-spacing:8.460000px;}
.ws1e{word-spacing:8.520000px;}
.ws76{word-spacing:8.580000px;}
.ws90{word-spacing:9.180000px;}
.ws93{word-spacing:9.240000px;}
.ws7a{word-spacing:9.360000px;}
.ws78{word-spacing:9.420000px;}
.ws3c{word-spacing:9.600000px;}
.wsb0{word-spacing:9.780000px;}
.ws2f{word-spacing:9.900000px;}
.wsb3{word-spacing:10.020000px;}
.ws1a{word-spacing:10.200000px;}
.wsa1{word-spacing:10.680000px;}
.wsa3{word-spacing:10.740000px;}
.ws51{word-spacing:10.860000px;}
.ws30{word-spacing:10.920000px;}
.ws54{word-spacing:10.980000px;}
.ws46{word-spacing:11.340000px;}
.ws31{word-spacing:11.580000px;}
.ws28{word-spacing:11.700000px;}
.ws7c{word-spacing:11.820000px;}
.wsa6{word-spacing:11.940000px;}
.ws4c{word-spacing:12.120000px;}
.ws1d{word-spacing:12.240000px;}
.ws42{word-spacing:12.480000px;}
.ws73{word-spacing:12.540000px;}
.ws70{word-spacing:12.720000px;}
.ws86{word-spacing:12.840000px;}
.ws48{word-spacing:13.080000px;}
.ws8e{word-spacing:13.680000px;}
.ws19{word-spacing:14.040000px;}
.wsb{word-spacing:14.094000px;}
.ws68{word-spacing:14.100000px;}
.ws56{word-spacing:14.160000px;}
.ws58{word-spacing:14.220000px;}
.ws84{word-spacing:14.940000px;}
.ws67{word-spacing:15.180000px;}
.ws6a{word-spacing:15.240000px;}
.ws5c{word-spacing:15.360000px;}
.ws37{word-spacing:15.540000px;}
.wsa8{word-spacing:15.600000px;}
.ws5e{word-spacing:15.900000px;}
.ws43{word-spacing:15.960000px;}
.wsa4{word-spacing:16.080000px;}
.wsa{word-spacing:16.146000px;}
.wsbf{word-spacing:16.380000px;}
.ws55{word-spacing:16.920000px;}
.ws20{word-spacing:17.280000px;}
.ws35{word-spacing:17.340000px;}
.wsb5{word-spacing:17.940000px;}
.ws26{word-spacing:18.420000px;}
.wsaf{word-spacing:18.720000px;}
.ws63{word-spacing:19.080000px;}
.ws47{word-spacing:19.380000px;}
.ws69{word-spacing:20.280000px;}
.ws38{word-spacing:20.520000px;}
.ws85{word-spacing:20.700000px;}
.ws99{word-spacing:21.300000px;}
.wsae{word-spacing:21.840000px;}
.ws32{word-spacing:22.080000px;}
.wsbe{word-spacing:22.140000px;}
.ws61{word-spacing:22.200000px;}
.ws8d{word-spacing:22.260000px;}
.ws8c{word-spacing:23.640000px;}
.ws53{word-spacing:23.820000px;}
.ws8b{word-spacing:24.180000px;}
.ws4e{word-spacing:24.240000px;}
.ws3e{word-spacing:24.360000px;}
.ws5a{word-spacing:24.600000px;}
.ws9a{word-spacing:24.960000px;}
.ws72{word-spacing:25.140000px;}
.ws5d{word-spacing:25.560000px;}
.ws98{word-spacing:26.820000px;}
.ws3b{word-spacing:27.600000px;}
.ws5b{word-spacing:27.720000px;}
.ws7e{word-spacing:27.780000px;}
.wsb2{word-spacing:27.900000px;}
.wsbc{word-spacing:27.960000px;}
.ws3d{word-spacing:29.580000px;}
.ws2a{word-spacing:29.700000px;}
.ws9b{word-spacing:30.600000px;}
.ws29{word-spacing:30.780000px;}
.ws6c{word-spacing:31.200000px;}
.ws17{word-spacing:31.428000px;}
.ws97{word-spacing:31.800000px;}
.wsa7{word-spacing:33.060000px;}
.ws0{word-spacing:33.621000px;}
.ws41{word-spacing:36.900000px;}
.wsa2{word-spacing:42.300000px;}
.ws9c{word-spacing:46.680000px;}
.wsa0{word-spacing:48.300000px;}
.wsc0{word-spacing:50.460000px;}
.wsbb{word-spacing:52.920000px;}
.wsa9{word-spacing:71.940000px;}
.wsb9{word-spacing:72.840000px;}
.ws9f{word-spacing:76.440000px;}
.ws1{word-spacing:386.314800px;}
.ws1b{word-spacing:1699.977600px;}
._22{margin-left:-51.600000px;}
._26{margin-left:-44.940000px;}
._29{margin-left:-42.480000px;}
._1a{margin-left:-30.420000px;}
._2a{margin-left:-28.494600px;}
._24{margin-left:-25.080000px;}
._12{margin-left:-21.600000px;}
._11{margin-left:-19.620000px;}
._e{margin-left:-14.970000px;}
._28{margin-left:-12.540000px;}
._27{margin-left:-11.040000px;}
._0{margin-left:-8.262000px;}
._4{margin-left:-6.976800px;}
._5{margin-left:-5.967000px;}
._1{margin-left:-4.950000px;}
._3{margin-left:-3.085200px;}
._2{margin-left:-1.611000px;}
._19{width:1.068000px;}
._9{width:2.070000px;}
._f{width:3.759000px;}
._20{width:5.718000px;}
._6{width:7.338600px;}
._c{width:9.216000px;}
._d{width:11.301000px;}
._b{width:12.564000px;}
._13{width:13.876800px;}
._1d{width:16.476000px;}
._1e{width:17.478000px;}
._10{width:21.540000px;}
._17{width:23.466000px;}
._14{width:25.938000px;}
._25{width:28.896000px;}
._7{width:31.428000px;}
._1b{width:38.820000px;}
._15{width:45.780000px;}
._18{width:47.820000px;}
._23{width:49.020000px;}
._16{width:55.800000px;}
._a{width:57.780000px;}
._1f{width:65.520000px;}
._8{width:69.240000px;}
._21{width:71.400000px;}
._1c{width:75.120000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y35{bottom:64.760550px;}
.y34{bottom:65.586600px;}
.y62{bottom:89.409600px;}
.y79{bottom:90.159600px;}
.ya2{bottom:93.389250px;}
.ydf{bottom:93.401400px;}
.y2a{bottom:105.342450px;}
.y61{bottom:110.409600px;}
.y78{bottom:111.159600px;}
.yb4{bottom:114.159600px;}
.ya1{bottom:114.389250px;}
.yde{bottom:114.401400px;}
.y29{bottom:126.342450px;}
.y60{bottom:131.409600px;}
.y77{bottom:132.159600px;}
.yb3{bottom:135.159600px;}
.ya0{bottom:135.389250px;}
.ydd{bottom:135.401400px;}
.y28{bottom:147.342450px;}
.y5f{bottom:152.409600px;}
.y76{bottom:153.159600px;}
.yb2{bottom:156.159600px;}
.y9f{bottom:156.389250px;}
.ydc{bottom:156.401400px;}
.y27{bottom:168.342450px;}
.y5e{bottom:173.409600px;}
.yb1{bottom:177.159600px;}
.y9e{bottom:177.389250px;}
.ydb{bottom:177.401400px;}
.y75{bottom:186.159600px;}
.y26{bottom:189.342450px;}
.y5d{bottom:194.409600px;}
.yb0{bottom:198.159600px;}
.y9d{bottom:198.389250px;}
.yda{bottom:198.401400px;}
.y74{bottom:207.159600px;}
.y5c{bottom:215.409600px;}
.yaf{bottom:219.159600px;}
.y9c{bottom:219.389250px;}
.yd9{bottom:219.401400px;}
.y73{bottom:228.159600px;}
.y25{bottom:232.041450px;}
.yae{bottom:240.159600px;}
.y9b{bottom:240.389250px;}
.yd8{bottom:240.401400px;}
.y5b{bottom:248.409600px;}
.y72{bottom:249.159600px;}
.y24{bottom:250.036950px;}
.yad{bottom:261.159600px;}
.y9a{bottom:261.389250px;}
.yd7{bottom:261.401400px;}
.y23{bottom:268.032450px;}
.y5a{bottom:269.409600px;}
.y71{bottom:270.159600px;}
.yac{bottom:282.159600px;}
.y99{bottom:282.389250px;}
.yd6{bottom:282.401400px;}
.y22{bottom:286.027950px;}
.y59{bottom:289.659600px;}
.y70{bottom:291.159600px;}
.yab{bottom:303.159600px;}
.y98{bottom:303.389250px;}
.yd5{bottom:303.401400px;}
.y21{bottom:304.023450px;}
.y58{bottom:309.909600px;}
.y6f{bottom:312.159600px;}
.y20{bottom:322.018950px;}
.yaa{bottom:324.159600px;}
.y97{bottom:324.389250px;}
.yd4{bottom:324.401400px;}
.y57{bottom:330.159600px;}
.y6e{bottom:333.159600px;}
.y1f{bottom:340.014450px;}
.y96{bottom:345.389250px;}
.yd3{bottom:345.401400px;}
.y56{bottom:350.409600px;}
.y6d{bottom:354.159600px;}
.y1e{bottom:358.009950px;}
.ya9{bottom:366.159600px;}
.yd2{bottom:366.401400px;}
.y55{bottom:370.659600px;}
.y6c{bottom:375.159600px;}
.y1d{bottom:376.005450px;}
.ya8{bottom:387.159600px;}
.y95{bottom:387.389250px;}
.yd1{bottom:387.401400px;}
.y54{bottom:390.909600px;}
.y1c{bottom:394.000950px;}
.y6b{bottom:396.159600px;}
.ya7{bottom:408.159600px;}
.y94{bottom:408.389250px;}
.yd0{bottom:408.401400px;}
.y53{bottom:411.159600px;}
.y1b{bottom:411.996450px;}
.y6a{bottom:417.159600px;}
.ya6{bottom:429.159600px;}
.y93{bottom:429.389250px;}
.ycf{bottom:429.401400px;}
.y1a{bottom:429.991950px;}
.y52{bottom:431.409600px;}
.y69{bottom:438.159600px;}
.y19{bottom:447.987450px;}
.ya5{bottom:450.159600px;}
.y92{bottom:450.389250px;}
.yce{bottom:450.401400px;}
.y51{bottom:451.659600px;}
.y33{bottom:456.139950px;}
.y18{bottom:465.982950px;}
.y68{bottom:471.159600px;}
.y91{bottom:471.389250px;}
.ycd{bottom:471.401400px;}
.y50{bottom:471.909600px;}
.y32{bottom:478.639950px;}
.y17{bottom:483.978450px;}
.y4f{bottom:492.159600px;}
.y90{bottom:492.389250px;}
.ycc{bottom:492.401400px;}
.y31{bottom:501.139950px;}
.y16{bottom:501.973950px;}
.y4e{bottom:512.409600px;}
.y67{bottom:513.159600px;}
.y8f{bottom:513.389250px;}
.ycb{bottom:513.401400px;}
.y15{bottom:519.969450px;}
.y4d{bottom:532.659600px;}
.y66{bottom:534.159600px;}
.y8e{bottom:534.389250px;}
.yca{bottom:534.401400px;}
.y14{bottom:537.964950px;}
.y30{bottom:541.639950px;}
.y4c{bottom:553.659600px;}
.y65{bottom:555.159600px;}
.y8d{bottom:555.389250px;}
.yc9{bottom:555.401400px;}
.y13{bottom:555.960450px;}
.y12{bottom:573.955950px;}
.y64{bottom:576.159600px;}
.y8c{bottom:576.389250px;}
.yc8{bottom:576.401400px;}
.y2f{bottom:586.639950px;}
.y11{bottom:591.951450px;}
.y4b{bottom:595.659600px;}
.y63{bottom:597.159600px;}
.ya4{bottom:597.389250px;}
.yc7{bottom:597.401400px;}
.y10{bottom:609.946950px;}
.y4a{bottom:618.159600px;}
.y8b{bottom:618.389250px;}
.y2e{bottom:627.139950px;}
.yf{bottom:627.942450px;}
.y49{bottom:639.159600px;}
.y8a{bottom:639.389250px;}
.yc6{bottom:639.401400px;}
.ye{bottom:645.942450px;}
.y48{bottom:660.159600px;}
.y89{bottom:660.389250px;}
.yc5{bottom:660.401400px;}
.y2d{bottom:663.139950px;}
.y47{bottom:681.159600px;}
.y88{bottom:681.389250px;}
.yc4{bottom:681.401400px;}
.yd{bottom:686.446950px;}
.y2c{bottom:699.139950px;}
.yee{bottom:701.976150px;}
.y46{bottom:702.159600px;}
.y87{bottom:702.389250px;}
.yc3{bottom:702.401400px;}
.yc{bottom:704.442450px;}
.yb{bottom:722.442450px;}
.yfc{bottom:722.736150px;}
.yed{bottom:722.976150px;}
.y45{bottom:723.159600px;}
.y86{bottom:723.389250px;}
.yc2{bottom:723.399600px;}
.y2b{bottom:735.139950px;}
.yfb{bottom:743.736150px;}
.yec{bottom:743.976150px;}
.y44{bottom:744.159600px;}
.y85{bottom:744.389250px;}
.yc1{bottom:744.399600px;}
.yfa{bottom:764.736150px;}
.yeb{bottom:764.976150px;}
.y43{bottom:765.159600px;}
.ya3{bottom:765.389250px;}
.yc0{bottom:765.399600px;}
.ya{bottom:768.946950px;}
.yf9{bottom:785.736150px;}
.yea{bottom:785.976150px;}
.y42{bottom:786.159600px;}
.y84{bottom:786.389250px;}
.ybf{bottom:786.399600px;}
.y9{bottom:786.942450px;}
.y8{bottom:804.942450px;}
.yf8{bottom:806.736150px;}
.ye9{bottom:806.976150px;}
.y41{bottom:807.159600px;}
.y83{bottom:807.389250px;}
.ybe{bottom:807.399600px;}
.yf7{bottom:827.736150px;}
.ye8{bottom:827.976150px;}
.y40{bottom:828.159600px;}
.y82{bottom:828.389250px;}
.ybd{bottom:828.399600px;}
.yf6{bottom:848.736150px;}
.ye7{bottom:848.976150px;}
.y3f{bottom:849.159600px;}
.y81{bottom:849.389250px;}
.ybc{bottom:849.399600px;}
.y7{bottom:851.446950px;}
.y6{bottom:869.442450px;}
.yf5{bottom:869.736150px;}
.ye6{bottom:869.976150px;}
.y3e{bottom:870.159600px;}
.y80{bottom:870.389250px;}
.ybb{bottom:870.399600px;}
.y5{bottom:887.442450px;}
.yf4{bottom:890.736150px;}
.ye5{bottom:890.976150px;}
.y3d{bottom:891.159600px;}
.y7f{bottom:891.389250px;}
.yba{bottom:891.399600px;}
.yf3{bottom:911.736150px;}
.ye4{bottom:911.976150px;}
.y3c{bottom:912.159600px;}
.y7e{bottom:912.389250px;}
.yb9{bottom:912.399600px;}
.yf2{bottom:932.736150px;}
.ye3{bottom:932.976150px;}
.y3b{bottom:933.159600px;}
.y7d{bottom:933.389250px;}
.yb8{bottom:933.399600px;}
.y4{bottom:939.949950px;}
.yf1{bottom:953.736150px;}
.ye2{bottom:953.976150px;}
.y3a{bottom:954.159600px;}
.y7c{bottom:954.389250px;}
.yb7{bottom:954.399600px;}
.y3{bottom:965.442450px;}
.yf0{bottom:974.736150px;}
.ye1{bottom:974.976150px;}
.y39{bottom:975.159600px;}
.y7b{bottom:975.389250px;}
.yb6{bottom:975.399600px;}
.yef{bottom:995.736150px;}
.ye0{bottom:995.976150px;}
.y38{bottom:996.159600px;}
.y7a{bottom:996.389250px;}
.yb5{bottom:996.399600px;}
.y37{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y36{bottom:1039.374150px;}
.hd{height:34.176000px;}
.hc{height:34.560000px;}
.h6{height:37.494141px;}
.h5{height:40.664062px;}
.he{height:41.660156px;}
.h7{height:41.689453px;}
.hb{height:42.000000px;}
.ha{height:42.720000px;}
.h9{height:46.200000px;}
.h8{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h4{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x10{left:63.779550px;}
.x2{left:65.202600px;}
.x1{left:71.253150px;}
.xf{left:73.559100px;}
.x13{left:90.779550px;}
.xe{left:224.187900px;}
.x3{left:267.301350px;}
.x4{left:274.276350px;}
.x7{left:308.527650px;}
.x6{left:374.421150px;}
.x14{left:399.929550px;}
.x17{left:408.929550px;}
.x12{left:412.272150px;}
.x15{left:421.195650px;}
.x18{left:426.427800px;}
.xc{left:427.907100px;}
.xd{left:436.763100px;}
.xa{left:462.915900px;}
.x9{left:550.112400px;}
.x8{left:601.900500px;}
.xb{left:606.895500px;}
.x5{left:613.275000px;}
.x11{left:632.875800px;}
.x16{left:710.580450px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls2{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:7.093333pt;}
.ls1{letter-spacing:62.240000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws4b{word-spacing:-5.493333pt;}
.ws95{word-spacing:-5.386667pt;}
.ws9d{word-spacing:-5.013333pt;}
.ws6e{word-spacing:-4.853333pt;}
.wsad{word-spacing:-4.746667pt;}
.ws6{word-spacing:-4.608000pt;}
.ws77{word-spacing:-4.533333pt;}
.wsab{word-spacing:-3.573333pt;}
.ws3f{word-spacing:-3.466667pt;}
.ws3a{word-spacing:-2.933333pt;}
.ws36{word-spacing:-2.453333pt;}
.ws94{word-spacing:-2.133333pt;}
.ws14{word-spacing:-1.920000pt;}
.wsaa{word-spacing:-1.706667pt;}
.ws6d{word-spacing:-1.546667pt;}
.ws2b{word-spacing:-1.386667pt;}
.ws89{word-spacing:-1.226667pt;}
.ws87{word-spacing:-1.120000pt;}
.ws4{word-spacing:-0.960000pt;}
.wsba{word-spacing:-0.906667pt;}
.wsbd{word-spacing:-0.800000pt;}
.ws52{word-spacing:-0.746667pt;}
.ws2d{word-spacing:-0.693333pt;}
.ws9e{word-spacing:-0.640000pt;}
.ws34{word-spacing:-0.586667pt;}
.wsb8{word-spacing:-0.533333pt;}
.wsb1{word-spacing:-0.426667pt;}
.ws7d{word-spacing:-0.373333pt;}
.ws60{word-spacing:-0.213333pt;}
.ws39{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws91{word-spacing:0.266667pt;}
.ws2e{word-spacing:0.320000pt;}
.ws96{word-spacing:0.480000pt;}
.ws1c{word-spacing:0.640000pt;}
.ws18{word-spacing:0.693333pt;}
.ws92{word-spacing:0.800000pt;}
.ws13{word-spacing:0.864000pt;}
.ws44{word-spacing:0.960000pt;}
.ws22{word-spacing:1.066667pt;}
.ws5{word-spacing:1.152000pt;}
.wsac{word-spacing:1.173333pt;}
.ws59{word-spacing:1.440000pt;}
.ws6b{word-spacing:1.653333pt;}
.wsc{word-spacing:1.776000pt;}
.ws49{word-spacing:1.920000pt;}
.wsb4{word-spacing:2.080000pt;}
.ws88{word-spacing:2.186667pt;}
.ws71{word-spacing:2.400000pt;}
.ws64{word-spacing:2.666667pt;}
.wsb6{word-spacing:2.720000pt;}
.ws75{word-spacing:3.093333pt;}
.ws5f{word-spacing:3.306667pt;}
.ws40{word-spacing:3.466667pt;}
.ws7{word-spacing:3.600000pt;}
.ws15{word-spacing:3.696000pt;}
.ws4f{word-spacing:3.733333pt;}
.wsd{word-spacing:3.792000pt;}
.ws7f{word-spacing:3.840000pt;}
.ws50{word-spacing:3.893333pt;}
.ws83{word-spacing:3.946667pt;}
.ws1f{word-spacing:4.000000pt;}
.ws57{word-spacing:4.106667pt;}
.ws9{word-spacing:4.224000pt;}
.ws7b{word-spacing:4.373333pt;}
.ws81{word-spacing:4.480000pt;}
.ws4a{word-spacing:4.533333pt;}
.ws6f{word-spacing:4.586667pt;}
.ws66{word-spacing:4.746667pt;}
.ws4d{word-spacing:4.800000pt;}
.ws8{word-spacing:4.896000pt;}
.ws16{word-spacing:4.944000pt;}
.ws62{word-spacing:5.013333pt;}
.ws65{word-spacing:5.120000pt;}
.ws10{word-spacing:5.136000pt;}
.ws23{word-spacing:5.173333pt;}
.ws80{word-spacing:5.226667pt;}
.ws82{word-spacing:5.386667pt;}
.ws21{word-spacing:5.920000pt;}
.ws74{word-spacing:5.973333pt;}
.ws27{word-spacing:6.026667pt;}
.wsf{word-spacing:6.048000pt;}
.ws33{word-spacing:6.080000pt;}
.wsb7{word-spacing:6.133333pt;}
.wse{word-spacing:6.288000pt;}
.wsa5{word-spacing:6.346667pt;}
.ws45{word-spacing:6.453333pt;}
.ws24{word-spacing:6.613333pt;}
.ws2c{word-spacing:6.826667pt;}
.ws8f{word-spacing:6.933333pt;}
.ws79{word-spacing:7.093333pt;}
.ws11{word-spacing:7.344000pt;}
.ws8a{word-spacing:7.360000pt;}
.ws12{word-spacing:7.440000pt;}
.ws25{word-spacing:7.520000pt;}
.ws1e{word-spacing:7.573333pt;}
.ws76{word-spacing:7.626667pt;}
.ws90{word-spacing:8.160000pt;}
.ws93{word-spacing:8.213333pt;}
.ws7a{word-spacing:8.320000pt;}
.ws78{word-spacing:8.373333pt;}
.ws3c{word-spacing:8.533333pt;}
.wsb0{word-spacing:8.693333pt;}
.ws2f{word-spacing:8.800000pt;}
.wsb3{word-spacing:8.906667pt;}
.ws1a{word-spacing:9.066667pt;}
.wsa1{word-spacing:9.493333pt;}
.wsa3{word-spacing:9.546667pt;}
.ws51{word-spacing:9.653333pt;}
.ws30{word-spacing:9.706667pt;}
.ws54{word-spacing:9.760000pt;}
.ws46{word-spacing:10.080000pt;}
.ws31{word-spacing:10.293333pt;}
.ws28{word-spacing:10.400000pt;}
.ws7c{word-spacing:10.506667pt;}
.wsa6{word-spacing:10.613333pt;}
.ws4c{word-spacing:10.773333pt;}
.ws1d{word-spacing:10.880000pt;}
.ws42{word-spacing:11.093333pt;}
.ws73{word-spacing:11.146667pt;}
.ws70{word-spacing:11.306667pt;}
.ws86{word-spacing:11.413333pt;}
.ws48{word-spacing:11.626667pt;}
.ws8e{word-spacing:12.160000pt;}
.ws19{word-spacing:12.480000pt;}
.wsb{word-spacing:12.528000pt;}
.ws68{word-spacing:12.533333pt;}
.ws56{word-spacing:12.586667pt;}
.ws58{word-spacing:12.640000pt;}
.ws84{word-spacing:13.280000pt;}
.ws67{word-spacing:13.493333pt;}
.ws6a{word-spacing:13.546667pt;}
.ws5c{word-spacing:13.653333pt;}
.ws37{word-spacing:13.813333pt;}
.wsa8{word-spacing:13.866667pt;}
.ws5e{word-spacing:14.133333pt;}
.ws43{word-spacing:14.186667pt;}
.wsa4{word-spacing:14.293333pt;}
.wsa{word-spacing:14.352000pt;}
.wsbf{word-spacing:14.560000pt;}
.ws55{word-spacing:15.040000pt;}
.ws20{word-spacing:15.360000pt;}
.ws35{word-spacing:15.413333pt;}
.wsb5{word-spacing:15.946667pt;}
.ws26{word-spacing:16.373333pt;}
.wsaf{word-spacing:16.640000pt;}
.ws63{word-spacing:16.960000pt;}
.ws47{word-spacing:17.226667pt;}
.ws69{word-spacing:18.026667pt;}
.ws38{word-spacing:18.240000pt;}
.ws85{word-spacing:18.400000pt;}
.ws99{word-spacing:18.933333pt;}
.wsae{word-spacing:19.413333pt;}
.ws32{word-spacing:19.626667pt;}
.wsbe{word-spacing:19.680000pt;}
.ws61{word-spacing:19.733333pt;}
.ws8d{word-spacing:19.786667pt;}
.ws8c{word-spacing:21.013333pt;}
.ws53{word-spacing:21.173333pt;}
.ws8b{word-spacing:21.493333pt;}
.ws4e{word-spacing:21.546667pt;}
.ws3e{word-spacing:21.653333pt;}
.ws5a{word-spacing:21.866667pt;}
.ws9a{word-spacing:22.186667pt;}
.ws72{word-spacing:22.346667pt;}
.ws5d{word-spacing:22.720000pt;}
.ws98{word-spacing:23.840000pt;}
.ws3b{word-spacing:24.533333pt;}
.ws5b{word-spacing:24.640000pt;}
.ws7e{word-spacing:24.693333pt;}
.wsb2{word-spacing:24.800000pt;}
.wsbc{word-spacing:24.853333pt;}
.ws3d{word-spacing:26.293333pt;}
.ws2a{word-spacing:26.400000pt;}
.ws9b{word-spacing:27.200000pt;}
.ws29{word-spacing:27.360000pt;}
.ws6c{word-spacing:27.733333pt;}
.ws17{word-spacing:27.936000pt;}
.ws97{word-spacing:28.266667pt;}
.wsa7{word-spacing:29.386667pt;}
.ws0{word-spacing:29.885333pt;}
.ws41{word-spacing:32.800000pt;}
.wsa2{word-spacing:37.600000pt;}
.ws9c{word-spacing:41.493333pt;}
.wsa0{word-spacing:42.933333pt;}
.wsc0{word-spacing:44.853333pt;}
.wsbb{word-spacing:47.040000pt;}
.wsa9{word-spacing:63.946667pt;}
.wsb9{word-spacing:64.746667pt;}
.ws9f{word-spacing:67.946667pt;}
.ws1{word-spacing:343.390933pt;}
.ws1b{word-spacing:1511.091200pt;}
._22{margin-left:-45.866667pt;}
._26{margin-left:-39.946667pt;}
._29{margin-left:-37.760000pt;}
._1a{margin-left:-27.040000pt;}
._2a{margin-left:-25.328533pt;}
._24{margin-left:-22.293333pt;}
._12{margin-left:-19.200000pt;}
._11{margin-left:-17.440000pt;}
._e{margin-left:-13.306667pt;}
._28{margin-left:-11.146667pt;}
._27{margin-left:-9.813333pt;}
._0{margin-left:-7.344000pt;}
._4{margin-left:-6.201600pt;}
._5{margin-left:-5.304000pt;}
._1{margin-left:-4.400000pt;}
._3{margin-left:-2.742400pt;}
._2{margin-left:-1.432000pt;}
._19{width:0.949333pt;}
._9{width:1.840000pt;}
._f{width:3.341333pt;}
._20{width:5.082667pt;}
._6{width:6.523200pt;}
._c{width:8.192000pt;}
._d{width:10.045333pt;}
._b{width:11.168000pt;}
._13{width:12.334933pt;}
._1d{width:14.645333pt;}
._1e{width:15.536000pt;}
._10{width:19.146667pt;}
._17{width:20.858667pt;}
._14{width:23.056000pt;}
._25{width:25.685333pt;}
._7{width:27.936000pt;}
._1b{width:34.506667pt;}
._15{width:40.693333pt;}
._18{width:42.506667pt;}
._23{width:43.573333pt;}
._16{width:49.600000pt;}
._a{width:51.360000pt;}
._1f{width:58.240000pt;}
._8{width:61.546667pt;}
._21{width:63.466667pt;}
._1c{width:66.773333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y35{bottom:57.564933pt;}
.y34{bottom:58.299200pt;}
.y62{bottom:79.475200pt;}
.y79{bottom:80.141867pt;}
.ya2{bottom:83.012667pt;}
.ydf{bottom:83.023467pt;}
.y2a{bottom:93.637733pt;}
.y61{bottom:98.141867pt;}
.y78{bottom:98.808533pt;}
.yb4{bottom:101.475200pt;}
.ya1{bottom:101.679333pt;}
.yde{bottom:101.690133pt;}
.y29{bottom:112.304400pt;}
.y60{bottom:116.808533pt;}
.y77{bottom:117.475200pt;}
.yb3{bottom:120.141867pt;}
.ya0{bottom:120.346000pt;}
.ydd{bottom:120.356800pt;}
.y28{bottom:130.971067pt;}
.y5f{bottom:135.475200pt;}
.y76{bottom:136.141867pt;}
.yb2{bottom:138.808533pt;}
.y9f{bottom:139.012667pt;}
.ydc{bottom:139.023467pt;}
.y27{bottom:149.637733pt;}
.y5e{bottom:154.141867pt;}
.yb1{bottom:157.475200pt;}
.y9e{bottom:157.679333pt;}
.ydb{bottom:157.690133pt;}
.y75{bottom:165.475200pt;}
.y26{bottom:168.304400pt;}
.y5d{bottom:172.808533pt;}
.yb0{bottom:176.141867pt;}
.y9d{bottom:176.346000pt;}
.yda{bottom:176.356800pt;}
.y74{bottom:184.141867pt;}
.y5c{bottom:191.475200pt;}
.yaf{bottom:194.808533pt;}
.y9c{bottom:195.012667pt;}
.yd9{bottom:195.023467pt;}
.y73{bottom:202.808533pt;}
.y25{bottom:206.259067pt;}
.yae{bottom:213.475200pt;}
.y9b{bottom:213.679333pt;}
.yd8{bottom:213.690133pt;}
.y5b{bottom:220.808533pt;}
.y72{bottom:221.475200pt;}
.y24{bottom:222.255067pt;}
.yad{bottom:232.141867pt;}
.y9a{bottom:232.346000pt;}
.yd7{bottom:232.356800pt;}
.y23{bottom:238.251067pt;}
.y5a{bottom:239.475200pt;}
.y71{bottom:240.141867pt;}
.yac{bottom:250.808533pt;}
.y99{bottom:251.012667pt;}
.yd6{bottom:251.023467pt;}
.y22{bottom:254.247067pt;}
.y59{bottom:257.475200pt;}
.y70{bottom:258.808533pt;}
.yab{bottom:269.475200pt;}
.y98{bottom:269.679333pt;}
.yd5{bottom:269.690133pt;}
.y21{bottom:270.243067pt;}
.y58{bottom:275.475200pt;}
.y6f{bottom:277.475200pt;}
.y20{bottom:286.239067pt;}
.yaa{bottom:288.141867pt;}
.y97{bottom:288.346000pt;}
.yd4{bottom:288.356800pt;}
.y57{bottom:293.475200pt;}
.y6e{bottom:296.141867pt;}
.y1f{bottom:302.235067pt;}
.y96{bottom:307.012667pt;}
.yd3{bottom:307.023467pt;}
.y56{bottom:311.475200pt;}
.y6d{bottom:314.808533pt;}
.y1e{bottom:318.231067pt;}
.ya9{bottom:325.475200pt;}
.yd2{bottom:325.690133pt;}
.y55{bottom:329.475200pt;}
.y6c{bottom:333.475200pt;}
.y1d{bottom:334.227067pt;}
.ya8{bottom:344.141867pt;}
.y95{bottom:344.346000pt;}
.yd1{bottom:344.356800pt;}
.y54{bottom:347.475200pt;}
.y1c{bottom:350.223067pt;}
.y6b{bottom:352.141867pt;}
.ya7{bottom:362.808533pt;}
.y94{bottom:363.012667pt;}
.yd0{bottom:363.023467pt;}
.y53{bottom:365.475200pt;}
.y1b{bottom:366.219067pt;}
.y6a{bottom:370.808533pt;}
.ya6{bottom:381.475200pt;}
.y93{bottom:381.679333pt;}
.ycf{bottom:381.690133pt;}
.y1a{bottom:382.215067pt;}
.y52{bottom:383.475200pt;}
.y69{bottom:389.475200pt;}
.y19{bottom:398.211067pt;}
.ya5{bottom:400.141867pt;}
.y92{bottom:400.346000pt;}
.yce{bottom:400.356800pt;}
.y51{bottom:401.475200pt;}
.y33{bottom:405.457733pt;}
.y18{bottom:414.207067pt;}
.y68{bottom:418.808533pt;}
.y91{bottom:419.012667pt;}
.ycd{bottom:419.023467pt;}
.y50{bottom:419.475200pt;}
.y32{bottom:425.457733pt;}
.y17{bottom:430.203067pt;}
.y4f{bottom:437.475200pt;}
.y90{bottom:437.679333pt;}
.ycc{bottom:437.690133pt;}
.y31{bottom:445.457733pt;}
.y16{bottom:446.199067pt;}
.y4e{bottom:455.475200pt;}
.y67{bottom:456.141867pt;}
.y8f{bottom:456.346000pt;}
.ycb{bottom:456.356800pt;}
.y15{bottom:462.195067pt;}
.y4d{bottom:473.475200pt;}
.y66{bottom:474.808533pt;}
.y8e{bottom:475.012667pt;}
.yca{bottom:475.023467pt;}
.y14{bottom:478.191067pt;}
.y30{bottom:481.457733pt;}
.y4c{bottom:492.141867pt;}
.y65{bottom:493.475200pt;}
.y8d{bottom:493.679333pt;}
.yc9{bottom:493.690133pt;}
.y13{bottom:494.187067pt;}
.y12{bottom:510.183067pt;}
.y64{bottom:512.141867pt;}
.y8c{bottom:512.346000pt;}
.yc8{bottom:512.356800pt;}
.y2f{bottom:521.457733pt;}
.y11{bottom:526.179067pt;}
.y4b{bottom:529.475200pt;}
.y63{bottom:530.808533pt;}
.ya4{bottom:531.012667pt;}
.yc7{bottom:531.023467pt;}
.y10{bottom:542.175067pt;}
.y4a{bottom:549.475200pt;}
.y8b{bottom:549.679333pt;}
.y2e{bottom:557.457733pt;}
.yf{bottom:558.171067pt;}
.y49{bottom:568.141867pt;}
.y8a{bottom:568.346000pt;}
.yc6{bottom:568.356800pt;}
.ye{bottom:574.171067pt;}
.y48{bottom:586.808533pt;}
.y89{bottom:587.012667pt;}
.yc5{bottom:587.023467pt;}
.y2d{bottom:589.457733pt;}
.y47{bottom:605.475200pt;}
.y88{bottom:605.679333pt;}
.yc4{bottom:605.690133pt;}
.yd{bottom:610.175067pt;}
.y2c{bottom:621.457733pt;}
.yee{bottom:623.978800pt;}
.y46{bottom:624.141867pt;}
.y87{bottom:624.346000pt;}
.yc3{bottom:624.356800pt;}
.yc{bottom:626.171067pt;}
.yb{bottom:642.171067pt;}
.yfc{bottom:642.432133pt;}
.yed{bottom:642.645467pt;}
.y45{bottom:642.808533pt;}
.y86{bottom:643.012667pt;}
.yc2{bottom:643.021867pt;}
.y2b{bottom:653.457733pt;}
.yfb{bottom:661.098800pt;}
.yec{bottom:661.312133pt;}
.y44{bottom:661.475200pt;}
.y85{bottom:661.679333pt;}
.yc1{bottom:661.688533pt;}
.yfa{bottom:679.765467pt;}
.yeb{bottom:679.978800pt;}
.y43{bottom:680.141867pt;}
.ya3{bottom:680.346000pt;}
.yc0{bottom:680.355200pt;}
.ya{bottom:683.508400pt;}
.yf9{bottom:698.432133pt;}
.yea{bottom:698.645467pt;}
.y42{bottom:698.808533pt;}
.y84{bottom:699.012667pt;}
.ybf{bottom:699.021867pt;}
.y9{bottom:699.504400pt;}
.y8{bottom:715.504400pt;}
.yf8{bottom:717.098800pt;}
.ye9{bottom:717.312133pt;}
.y41{bottom:717.475200pt;}
.y83{bottom:717.679333pt;}
.ybe{bottom:717.688533pt;}
.yf7{bottom:735.765467pt;}
.ye8{bottom:735.978800pt;}
.y40{bottom:736.141867pt;}
.y82{bottom:736.346000pt;}
.ybd{bottom:736.355200pt;}
.yf6{bottom:754.432133pt;}
.ye7{bottom:754.645467pt;}
.y3f{bottom:754.808533pt;}
.y81{bottom:755.012667pt;}
.ybc{bottom:755.021867pt;}
.y7{bottom:756.841733pt;}
.y6{bottom:772.837733pt;}
.yf5{bottom:773.098800pt;}
.ye6{bottom:773.312133pt;}
.y3e{bottom:773.475200pt;}
.y80{bottom:773.679333pt;}
.ybb{bottom:773.688533pt;}
.y5{bottom:788.837733pt;}
.yf4{bottom:791.765467pt;}
.ye5{bottom:791.978800pt;}
.y3d{bottom:792.141867pt;}
.y7f{bottom:792.346000pt;}
.yba{bottom:792.355200pt;}
.yf3{bottom:810.432133pt;}
.ye4{bottom:810.645467pt;}
.y3c{bottom:810.808533pt;}
.y7e{bottom:811.012667pt;}
.yb9{bottom:811.021867pt;}
.yf2{bottom:829.098800pt;}
.ye3{bottom:829.312133pt;}
.y3b{bottom:829.475200pt;}
.y7d{bottom:829.679333pt;}
.yb8{bottom:829.688533pt;}
.y4{bottom:835.511067pt;}
.yf1{bottom:847.765467pt;}
.ye2{bottom:847.978800pt;}
.y3a{bottom:848.141867pt;}
.y7c{bottom:848.346000pt;}
.yb7{bottom:848.355200pt;}
.y3{bottom:858.171067pt;}
.yf0{bottom:866.432133pt;}
.ye1{bottom:866.645467pt;}
.y39{bottom:866.808533pt;}
.y7b{bottom:867.012667pt;}
.yb6{bottom:867.021867pt;}
.yef{bottom:885.098800pt;}
.ye0{bottom:885.312133pt;}
.y38{bottom:885.475200pt;}
.y7a{bottom:885.679333pt;}
.yb5{bottom:885.688533pt;}
.y37{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y36{bottom:923.888133pt;}
.hd{height:30.378667pt;}
.hc{height:30.720000pt;}
.h6{height:33.328125pt;}
.h5{height:36.145833pt;}
.he{height:37.031250pt;}
.h7{height:37.057292pt;}
.hb{height:37.333333pt;}
.ha{height:37.973333pt;}
.h9{height:41.066667pt;}
.h8{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h4{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x10{left:56.692933pt;}
.x2{left:57.957867pt;}
.x1{left:63.336133pt;}
.xf{left:65.385867pt;}
.x13{left:80.692933pt;}
.xe{left:199.278133pt;}
.x3{left:237.601200pt;}
.x4{left:243.801200pt;}
.x7{left:274.246800pt;}
.x6{left:332.818800pt;}
.x14{left:355.492933pt;}
.x17{left:363.492933pt;}
.x12{left:366.464133pt;}
.x15{left:374.396133pt;}
.x18{left:379.046933pt;}
.xc{left:380.361867pt;}
.xd{left:388.233867pt;}
.xa{left:411.480800pt;}
.x9{left:488.988800pt;}
.x8{left:535.022667pt;}
.xb{left:539.462667pt;}
.x5{left:545.133333pt;}
.x11{left:562.556267pt;}
.x16{left:631.627067pt;}
}




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