
    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_a6faa09dea5494f81a9691d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_5e33feac7d3b785c0a501f4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112000;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_02ca19f7b075e2cf4ebe4eee.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_0d01604b82048ca0dcde2418.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_83dc7e23cc8f5e9585165742.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.977000;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_d036a603ac5eede218145df1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908000;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_979bde0a21c7305da8fcd7bb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.709000;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_55a115fc22e865f15c476749.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.738000;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.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,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);}
.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);}
.v3{vertical-align:-21.978000px;}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls7{letter-spacing:-5.460000px;}
.ls2{letter-spacing:-0.990000px;}
.ls8{letter-spacing:-0.960000px;}
.ls3{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.594000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000378px;}
.ls4{letter-spacing:1.308600px;}
.ls5{letter-spacing:1.320000px;}
.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;}
}
.ws4{word-spacing:-19.200000px;}
.wsc3{word-spacing:-18.240000px;}
.ws48{word-spacing:-14.520000px;}
.ws1{word-spacing:-13.200000px;}
.ws71{word-spacing:-12.804000px;}
.ws3{word-spacing:-10.800000px;}
.ws14{word-spacing:-7.464732px;}
.wsc8{word-spacing:-6.996000px;}
.ws2{word-spacing:-6.296400px;}
.wscd{word-spacing:-5.880000px;}
.ws7e{word-spacing:-5.874000px;}
.wscb{word-spacing:-4.818000px;}
.wsc9{word-spacing:-4.224000px;}
.wsbe{word-spacing:-3.828000px;}
.ws35{word-spacing:-3.564000px;}
.ws58{word-spacing:-3.300000px;}
.ws6d{word-spacing:-3.168000px;}
.ws4a{word-spacing:-3.102000px;}
.ws34{word-spacing:-3.036000px;}
.ws9f{word-spacing:-2.970000px;}
.ws99{word-spacing:-2.574000px;}
.ws9d{word-spacing:-2.508000px;}
.wsca{word-spacing:-2.376000px;}
.wsac{word-spacing:-2.112000px;}
.ws59{word-spacing:-1.914000px;}
.ws8c{word-spacing:-1.848000px;}
.ws17{word-spacing:-1.782000px;}
.ws46{word-spacing:-1.584000px;}
.ws24{word-spacing:-1.518000px;}
.ws23{word-spacing:-1.452000px;}
.ws3c{word-spacing:-1.386000px;}
.ws6e{word-spacing:-1.320000px;}
.ws77{word-spacing:-1.122000px;}
.ws76{word-spacing:-1.056000px;}
.wsd{word-spacing:-0.924000px;}
.ws5a{word-spacing:-0.858000px;}
.ws2a{word-spacing:-0.792000px;}
.wsbc{word-spacing:-0.726000px;}
.ws53{word-spacing:-0.594000px;}
.wsaf{word-spacing:-0.528000px;}
.ws28{word-spacing:-0.396000px;}
.ws49{word-spacing:-0.330000px;}
.ws47{word-spacing:-0.264000px;}
.wsa{word-spacing:-0.198000px;}
.wsa0{word-spacing:-0.120000px;}
.ws5e{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.wsb5{word-spacing:0.132000px;}
.ws79{word-spacing:0.330000px;}
.ws92{word-spacing:0.462000px;}
.wsb0{word-spacing:0.528000px;}
.ws3f{word-spacing:0.594000px;}
.ws43{word-spacing:0.660000px;}
.ws54{word-spacing:0.726000px;}
.ws1e{word-spacing:0.792000px;}
.ws61{word-spacing:0.924000px;}
.ws27{word-spacing:0.990000px;}
.ws69{word-spacing:1.122000px;}
.ws75{word-spacing:1.188000px;}
.wsc{word-spacing:1.254000px;}
.ws50{word-spacing:1.320000px;}
.ws5{word-spacing:1.386000px;}
.ws19{word-spacing:1.452000px;}
.wsbf{word-spacing:1.650000px;}
.ws8f{word-spacing:1.716000px;}
.ws38{word-spacing:1.848000px;}
.ws29{word-spacing:1.914000px;}
.wsc6{word-spacing:1.980000px;}
.ws21{word-spacing:2.046000px;}
.ws9a{word-spacing:2.112000px;}
.ws88{word-spacing:2.178000px;}
.wscf{word-spacing:2.220000px;}
.ws91{word-spacing:2.244000px;}
.wsb{word-spacing:2.310000px;}
.ws4c{word-spacing:2.376000px;}
.wsaa{word-spacing:2.574000px;}
.ws2e{word-spacing:2.640000px;}
.ws11{word-spacing:2.706000px;}
.ws78{word-spacing:2.772000px;}
.ws55{word-spacing:2.970000px;}
.wsbd{word-spacing:3.036000px;}
.wsa8{word-spacing:3.168000px;}
.ws36{word-spacing:3.300000px;}
.ws20{word-spacing:3.366000px;}
.ws8a{word-spacing:3.498000px;}
.ws16{word-spacing:3.630000px;}
.ws3e{word-spacing:3.696000px;}
.ws60{word-spacing:3.894000px;}
.ws33{word-spacing:3.960000px;}
.ws1c{word-spacing:4.092000px;}
.ws7{word-spacing:4.158000px;}
.wsa7{word-spacing:4.290000px;}
.ws40{word-spacing:4.356000px;}
.ws3d{word-spacing:4.488000px;}
.ws31{word-spacing:4.554000px;}
.ws62{word-spacing:4.686000px;}
.ws5d{word-spacing:4.752000px;}
.ws9e{word-spacing:4.884000px;}
.wsc0{word-spacing:4.950000px;}
.wsc5{word-spacing:5.016000px;}
.ws6{word-spacing:5.082000px;}
.ws94{word-spacing:5.346000px;}
.wsc4{word-spacing:5.460000px;}
.ws7c{word-spacing:5.478000px;}
.wsa2{word-spacing:5.544000px;}
.ws96{word-spacing:5.676000px;}
.ws2d{word-spacing:5.742000px;}
.wsc2{word-spacing:5.808000px;}
.ws85{word-spacing:5.874000px;}
.wsce{word-spacing:6.300000px;}
.wsa3{word-spacing:6.402000px;}
.ws80{word-spacing:6.468000px;}
.ws1f{word-spacing:6.534000px;}
.ws9{word-spacing:6.666000px;}
.ws4f{word-spacing:6.732000px;}
.wscc{word-spacing:6.798000px;}
.ws12{word-spacing:6.864000px;}
.ws8e{word-spacing:6.930000px;}
.ws67{word-spacing:7.062000px;}
.ws42{word-spacing:7.194000px;}
.ws51{word-spacing:7.260000px;}
.ws18{word-spacing:7.392000px;}
.ws73{word-spacing:7.458000px;}
.ws22{word-spacing:7.524000px;}
.wsa4{word-spacing:7.590000px;}
.ws6f{word-spacing:7.656000px;}
.ws7f{word-spacing:7.788000px;}
.wsa1{word-spacing:7.854000px;}
.ws3a{word-spacing:7.986000px;}
.ws74{word-spacing:8.052000px;}
.ws93{word-spacing:8.184000px;}
.ws5f{word-spacing:8.250000px;}
.ws7d{word-spacing:8.316000px;}
.ws8{word-spacing:8.580000px;}
.wsab{word-spacing:8.712000px;}
.ws95{word-spacing:8.778000px;}
.wsc7{word-spacing:8.844000px;}
.ws44{word-spacing:8.910000px;}
.ws4e{word-spacing:8.976000px;}
.wsb9{word-spacing:9.108000px;}
.ws6b{word-spacing:9.240000px;}
.ws1b{word-spacing:9.702000px;}
.ws97{word-spacing:9.768000px;}
.ws5b{word-spacing:10.032000px;}
.ws10{word-spacing:10.098000px;}
.wsb3{word-spacing:10.164000px;}
.ws7b{word-spacing:10.230000px;}
.ws86{word-spacing:10.494000px;}
.ws4b{word-spacing:10.692000px;}
.wsb6{word-spacing:10.824000px;}
.ws1d{word-spacing:10.890000px;}
.ws8d{word-spacing:10.956000px;}
.ws37{word-spacing:11.022000px;}
.ws5c{word-spacing:11.220000px;}
.ws39{word-spacing:11.484000px;}
.wsb8{word-spacing:11.616000px;}
.ws41{word-spacing:11.682000px;}
.ws4d{word-spacing:11.748000px;}
.ws84{word-spacing:11.814000px;}
.ws3b{word-spacing:11.946000px;}
.wsb7{word-spacing:12.012000px;}
.wsad{word-spacing:12.144000px;}
.ws52{word-spacing:12.276000px;}
.ws32{word-spacing:12.408000px;}
.ws72{word-spacing:12.606000px;}
.ws2c{word-spacing:12.672000px;}
.wse{word-spacing:12.804000px;}
.ws66{word-spacing:12.870000px;}
.ws56{word-spacing:13.134000px;}
.ws2b{word-spacing:13.266000px;}
.ws98{word-spacing:13.332000px;}
.ws15{word-spacing:13.464000px;}
.ws65{word-spacing:13.596000px;}
.ws87{word-spacing:13.662000px;}
.ws26{word-spacing:14.124000px;}
.wsb2{word-spacing:14.322000px;}
.wsba{word-spacing:14.454000px;}
.ws83{word-spacing:14.652000px;}
.ws8b{word-spacing:14.850000px;}
.wsa5{word-spacing:15.642000px;}
.ws13{word-spacing:16.038000px;}
.wsd0{word-spacing:16.140000px;}
.ws25{word-spacing:16.170000px;}
.ws9b{word-spacing:16.368000px;}
.wsc1{word-spacing:16.698000px;}
.ws70{word-spacing:16.830000px;}
.ws1a{word-spacing:16.962000px;}
.ws45{word-spacing:17.292000px;}
.wsae{word-spacing:17.424000px;}
.wsbb{word-spacing:17.820000px;}
.wsa6{word-spacing:18.018000px;}
.wsb4{word-spacing:18.612000px;}
.ws6c{word-spacing:18.942000px;}
.ws81{word-spacing:19.008000px;}
.ws68{word-spacing:20.460000px;}
.ws90{word-spacing:21.450000px;}
.ws2f{word-spacing:21.912000px;}
.ws63{word-spacing:22.044000px;}
.ws89{word-spacing:22.440000px;}
.ws9c{word-spacing:22.638000px;}
.wsb1{word-spacing:23.430000px;}
.wsa9{word-spacing:23.628000px;}
.ws30{word-spacing:24.024000px;}
.wsf{word-spacing:24.750000px;}
.ws6a{word-spacing:25.080000px;}
.ws7a{word-spacing:28.050000px;}
.ws64{word-spacing:28.182000px;}
.ws82{word-spacing:30.822000px;}
.ws57{word-spacing:32.736000px;}
._a{margin-left:-5.130000px;}
._1{margin-left:-3.600000px;}
._3{margin-left:-2.262600px;}
._0{margin-left:-1.206000px;}
._2{width:1.049400px;}
._4{width:2.241000px;}
._e{width:3.791400px;}
._9{width:5.438400px;}
._c{width:7.007400px;}
._6{width:8.580000px;}
._5{width:9.852600px;}
._b{width:10.984800px;}
._f{width:12.160200px;}
._7{width:15.085800px;}
._8{width:16.253400px;}
._d{width:17.268000px;}
._10{width:18.395400px;}
.fc7{color:rgb(11,9,7);}
.fc8{color:rgb(77,89,107);}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(26,13,12);}
.fc4{color:rgb(77,90,108);}
.fc3{color:rgb(25,31,69);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:0.600000px;}
.fs9{font-size:31.482000px;}
.fs7{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:55.936950px;}
.y22{bottom:56.622150px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y13d{bottom:103.275600px;}
.y13c{bottom:124.275600px;}
.y6c{bottom:127.559100px;}
.y38{bottom:129.722850px;}
.yb7{bottom:130.575750px;}
.y94{bottom:131.775600px;}
.ye5{bottom:132.141900px;}
.ybc{bottom:132.375600px;}
.y10a{bottom:133.041900px;}
.y21{bottom:139.264499px;}
.y6b{bottom:145.559100px;}
.y37{bottom:150.718350px;}
.yb6{bottom:151.575750px;}
.y93{bottom:152.775600px;}
.ye4{bottom:153.141900px;}
.ybb{bottom:153.375600px;}
.y109{bottom:154.041900px;}
.y6a{bottom:163.559100px;}
.y13b{bottom:166.275600px;}
.yb5{bottom:172.575750px;}
.y92{bottom:173.775600px;}
.ye3{bottom:174.141900px;}
.yba{bottom:174.375600px;}
.y69{bottom:181.559100px;}
.y13a{bottom:187.275600px;}
.y36{bottom:190.022850px;}
.yb4{bottom:193.575750px;}
.y91{bottom:194.775600px;}
.ye2{bottom:195.141900px;}
.yb9{bottom:195.375600px;}
.y108{bottom:196.041900px;}
.y18{bottom:196.933500px;}
.y68{bottom:199.559100px;}
.y35{bottom:206.522850px;}
.y139{bottom:208.275600px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yb3{bottom:214.575750px;}
.y90{bottom:215.775600px;}
.ye1{bottom:216.141900px;}
.y107{bottom:217.041900px;}
.y67{bottom:217.559100px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yb2{bottom:235.575750px;}
.y106{bottom:238.041900px;}
.y66{bottom:240.054600px;}
.y34{bottom:241.022850px;}
.y138{bottom:250.275600px;}
.yb1{bottom:256.575750px;}
.y33{bottom:257.522850px;}
.y8f{bottom:257.775600px;}
.y65{bottom:258.059100px;}
.ye0{bottom:258.141900px;}
.y105{bottom:259.041900px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y137{bottom:271.275600px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y32{bottom:274.022850px;}
.y64{bottom:276.059100px;}
.y8e{bottom:278.775600px;}
.ydf{bottom:279.141900px;}
.y119{bottom:279.975600px;}
.y104{bottom:280.041900px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y63{bottom:294.059100px;}
.yb0{bottom:298.575750px;}
.y8d{bottom:299.775600px;}
.yde{bottom:300.141900px;}
.y118{bottom:300.975600px;}
.y103{bottom:301.041900px;}
.y31{bottom:308.522850px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y62{bottom:312.059100px;}
.y136{bottom:313.275600px;}
.yaf{bottom:319.575750px;}
.y8c{bottom:320.775600px;}
.ydd{bottom:321.141900px;}
.y117{bottom:321.975600px;}
.y102{bottom:322.041900px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y61{bottom:330.059100px;}
.y135{bottom:334.275600px;}
.yae{bottom:340.575750px;}
.y8b{bottom:341.775600px;}
.ydc{bottom:342.141900px;}
.y116{bottom:342.975600px;}
.y101{bottom:343.041900px;}
.y60{bottom:348.059100px;}
.yf{bottom:348.133500px;}
.yad{bottom:361.575750px;}
.y8a{bottom:362.775600px;}
.y115{bottom:363.975600px;}
.y100{bottom:364.041900px;}
.y5f{bottom:366.059100px;}
.y3d{bottom:366.503400px;}
.y134{bottom:376.275600px;}
.yac{bottom:382.575750px;}
.y89{bottom:383.775600px;}
.y5e{bottom:384.059100px;}
.ydb{bottom:384.141900px;}
.y114{bottom:384.975600px;}
.yff{bottom:385.041900px;}
.ye{bottom:386.785499px;}
.y3c{bottom:387.503400px;}
.y133{bottom:397.275600px;}
.y5d{bottom:402.059100px;}
.yab{bottom:403.575750px;}
.y88{bottom:404.775600px;}
.yda{bottom:405.141900px;}
.y113{bottom:405.975600px;}
.yd{bottom:408.044999px;}
.y3b{bottom:408.503400px;}
.y132{bottom:418.275600px;}
.y5c{bottom:420.059100px;}
.yaa{bottom:424.575750px;}
.y10b{bottom:425.775600px;}
.yd9{bottom:426.141900px;}
.y112{bottom:426.975600px;}
.yfe{bottom:427.041900px;}
.y3a{bottom:429.503400px;}
.y5b{bottom:438.059100px;}
.ya9{bottom:445.575750px;}
.y87{bottom:446.775600px;}
.yd8{bottom:447.141900px;}
.y111{bottom:447.975600px;}
.yfd{bottom:448.041900px;}
.y39{bottom:450.503400px;}
.y5a{bottom:456.059100px;}
.y131{bottom:460.275600px;}
.y86{bottom:467.775600px;}
.y110{bottom:468.975600px;}
.yfc{bottom:469.041900px;}
.y3e{bottom:471.503400px;}
.y59{bottom:478.554600px;}
.y130{bottom:481.275600px;}
.ya8{bottom:487.575750px;}
.y85{bottom:488.775600px;}
.yd7{bottom:489.141900px;}
.y10f{bottom:489.975600px;}
.yfb{bottom:490.041900px;}
.yc{bottom:502.864502px;}
.ya7{bottom:508.575750px;}
.y84{bottom:509.775600px;}
.yd6{bottom:510.141900px;}
.y10e{bottom:510.975600px;}
.yfa{bottom:511.041900px;}
.y58{bottom:515.175750px;}
.yb{bottom:520.864502px;}
.y12f{bottom:523.275600px;}
.ya6{bottom:529.575750px;}
.y83{bottom:530.775600px;}
.yd5{bottom:531.141900px;}
.y30{bottom:531.524400px;}
.y10d{bottom:531.975600px;}
.yf9{bottom:532.041900px;}
.y57{bottom:536.175750px;}
.ya{bottom:538.864499px;}
.y12e{bottom:544.275600px;}
.ya5{bottom:550.575750px;}
.y82{bottom:551.775600px;}
.yd4{bottom:552.141900px;}
.y2f{bottom:552.524400px;}
.y10c{bottom:552.975600px;}
.yf8{bottom:553.041900px;}
.y9{bottom:556.864499px;}
.y56{bottom:557.175750px;}
.y12d{bottom:565.275600px;}
.ya4{bottom:571.575750px;}
.y81{bottom:572.775600px;}
.yd3{bottom:573.141900px;}
.y2e{bottom:573.524400px;}
.y55{bottom:578.175750px;}
.ya3{bottom:592.575750px;}
.y80{bottom:593.775600px;}
.y2d{bottom:594.524400px;}
.yf7{bottom:595.041900px;}
.y12c{bottom:607.275600px;}
.ya2{bottom:613.575750px;}
.y7f{bottom:614.775600px;}
.yd2{bottom:615.141900px;}
.y2c{bottom:615.524400px;}
.yf6{bottom:616.041900px;}
.y54{bottom:620.175750px;}
.y12b{bottom:628.275600px;}
.ya1{bottom:634.575750px;}
.y7e{bottom:635.775600px;}
.yd1{bottom:636.141900px;}
.y2b{bottom:636.524400px;}
.yf5{bottom:637.041900px;}
.y53{bottom:641.175750px;}
.y8{bottom:645.510000px;}
.y12a{bottom:649.275600px;}
.ya0{bottom:655.575750px;}
.y7d{bottom:656.775600px;}
.yd0{bottom:657.141900px;}
.y2a{bottom:657.524400px;}
.yf4{bottom:658.041900px;}
.y52{bottom:662.175750px;}
.y7{bottom:666.771000px;}
.y7c{bottom:677.775600px;}
.ycf{bottom:678.141900px;}
.y29{bottom:678.524400px;}
.yf3{bottom:679.041900px;}
.y51{bottom:683.175750px;}
.y129{bottom:691.275600px;}
.y9f{bottom:698.175750px;}
.y7b{bottom:698.775600px;}
.yce{bottom:699.141900px;}
.y28{bottom:699.524400px;}
.yf2{bottom:700.041900px;}
.y50{bottom:704.175750px;}
.y128{bottom:712.275600px;}
.y9e{bottom:719.175750px;}
.y7a{bottom:719.775600px;}
.yf1{bottom:721.041900px;}
.y4f{bottom:725.175750px;}
.y6{bottom:726.298500px;}
.y27{bottom:729.524400px;}
.y9d{bottom:740.175750px;}
.y79{bottom:740.775600px;}
.ycd{bottom:741.141900px;}
.yf0{bottom:742.041900px;}
.y4e{bottom:746.175750px;}
.y3{bottom:752.599495px;}
.y127{bottom:754.275600px;}
.y9c{bottom:761.175750px;}
.yb8{bottom:761.775600px;}
.ycc{bottom:762.141900px;}
.yef{bottom:763.041900px;}
.y126{bottom:775.275600px;}
.y9b{bottom:782.175600px;}
.y78{bottom:782.775600px;}
.ycb{bottom:783.141900px;}
.yee{bottom:784.041900px;}
.y4d{bottom:788.175600px;}
.y9a{bottom:803.175600px;}
.y77{bottom:803.775600px;}
.yca{bottom:804.141900px;}
.yed{bottom:805.041900px;}
.y26{bottom:805.124400px;}
.y4c{bottom:809.175600px;}
.y125{bottom:817.275600px;}
.y99{bottom:824.175600px;}
.y76{bottom:824.775600px;}
.yc9{bottom:825.141900px;}
.yec{bottom:826.041900px;}
.y4b{bottom:830.175600px;}
.y124{bottom:838.275600px;}
.y98{bottom:845.175600px;}
.y75{bottom:845.775600px;}
.yc8{bottom:846.141900px;}
.yeb{bottom:847.041900px;}
.y25{bottom:850.724400px;}
.y4a{bottom:851.175600px;}
.y123{bottom:859.275600px;}
.y97{bottom:866.175600px;}
.y74{bottom:866.775600px;}
.yc7{bottom:867.141900px;}
.yea{bottom:868.041900px;}
.y49{bottom:872.175600px;}
.y2{bottom:879.369000px;}
.y24{bottom:886.724400px;}
.y96{bottom:887.175600px;}
.y73{bottom:887.775600px;}
.yc6{bottom:888.141900px;}
.ye9{bottom:889.041900px;}
.y48{bottom:893.175600px;}
.y122{bottom:901.275600px;}
.y95{bottom:908.175600px;}
.y72{bottom:908.775600px;}
.ye8{bottom:910.041900px;}
.y47{bottom:914.175600px;}
.y121{bottom:922.275600px;}
.y71{bottom:929.775600px;}
.yc5{bottom:930.141900px;}
.y46{bottom:935.175600px;}
.ye7{bottom:938.841900px;}
.y120{bottom:943.275600px;}
.y70{bottom:950.775600px;}
.yc4{bottom:951.141900px;}
.y143{bottom:953.316300px;}
.y45{bottom:963.975600px;}
.y1{bottom:966.726000px;}
.y6f{bottom:971.775600px;}
.yc3{bottom:972.141900px;}
.y142{bottom:974.316300px;}
.y11f{bottom:985.275600px;}
.y6e{bottom:992.775600px;}
.yc2{bottom:993.141900px;}
.y141{bottom:995.316300px;}
.y11e{bottom:1006.275600px;}
.y6d{bottom:1013.775600px;}
.yc1{bottom:1014.141900px;}
.y140{bottom:1016.316300px;}
.y11d{bottom:1027.275600px;}
.y44{bottom:1034.775600px;}
.yc0{bottom:1035.141900px;}
.y13f{bottom:1037.316300px;}
.y43{bottom:1055.775600px;}
.ye6{bottom:1056.141900px;}
.y11c{bottom:1069.275600px;}
.y42{bottom:1076.775600px;}
.ybf{bottom:1077.141900px;}
.y11b{bottom:1090.275600px;}
.y41{bottom:1097.775600px;}
.ybe{bottom:1098.141900px;}
.y13e{bottom:1103.102400px;}
.y11a{bottom:1111.275600px;}
.y40{bottom:1118.775600px;}
.ybd{bottom:1119.141900px;}
.y23{bottom:1191.897750px;}
.h10{height:30.780000px;}
.h7{height:32.130000px;}
.h12{height:41.472000px;}
.ha{height:45.780000px;}
.h6{height:45.900000px;}
.hd{height:47.718000px;}
.h3{height:48.195000px;}
.hf{height:48.762000px;}
.h13{height:50.400000px;}
.he{height:50.688000px;}
.h9{height:54.180000px;}
.h2{height:55.080000px;}
.hc{height:59.598000px;}
.h11{height:69.408000px;}
.h5{height:78.030000px;}
.hb{height:86.760000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:63.362100px;}
.x7{left:64.425150px;}
.xd{left:69.667200px;}
.x8{left:98.925150px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xe{left:112.677150px;}
.x4{left:203.484001px;}
.x6{left:260.249100px;}
.xa{left:262.522650px;}
.x5{left:438.821850px;}
.xc{left:441.139800px;}
.x3{left:454.959000px;}
.x9{left:463.464450px;}
@media print{
.v3{vertical-align:-19.536000pt;}
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls7{letter-spacing:-4.853333pt;}
.ls2{letter-spacing:-0.880000pt;}
.ls8{letter-spacing:-0.853333pt;}
.ls3{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.528000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000336pt;}
.ls4{letter-spacing:1.163200pt;}
.ls5{letter-spacing:1.173333pt;}
.ws4{word-spacing:-17.066667pt;}
.wsc3{word-spacing:-16.213333pt;}
.ws48{word-spacing:-12.906667pt;}
.ws1{word-spacing:-11.733333pt;}
.ws71{word-spacing:-11.381333pt;}
.ws3{word-spacing:-9.600000pt;}
.ws14{word-spacing:-6.635317pt;}
.wsc8{word-spacing:-6.218667pt;}
.ws2{word-spacing:-5.596800pt;}
.wscd{word-spacing:-5.226667pt;}
.ws7e{word-spacing:-5.221333pt;}
.wscb{word-spacing:-4.282667pt;}
.wsc9{word-spacing:-3.754667pt;}
.wsbe{word-spacing:-3.402667pt;}
.ws35{word-spacing:-3.168000pt;}
.ws58{word-spacing:-2.933333pt;}
.ws6d{word-spacing:-2.816000pt;}
.ws4a{word-spacing:-2.757333pt;}
.ws34{word-spacing:-2.698667pt;}
.ws9f{word-spacing:-2.640000pt;}
.ws99{word-spacing:-2.288000pt;}
.ws9d{word-spacing:-2.229333pt;}
.wsca{word-spacing:-2.112000pt;}
.wsac{word-spacing:-1.877333pt;}
.ws59{word-spacing:-1.701333pt;}
.ws8c{word-spacing:-1.642667pt;}
.ws17{word-spacing:-1.584000pt;}
.ws46{word-spacing:-1.408000pt;}
.ws24{word-spacing:-1.349333pt;}
.ws23{word-spacing:-1.290667pt;}
.ws3c{word-spacing:-1.232000pt;}
.ws6e{word-spacing:-1.173333pt;}
.ws77{word-spacing:-0.997333pt;}
.ws76{word-spacing:-0.938667pt;}
.wsd{word-spacing:-0.821333pt;}
.ws5a{word-spacing:-0.762667pt;}
.ws2a{word-spacing:-0.704000pt;}
.wsbc{word-spacing:-0.645333pt;}
.ws53{word-spacing:-0.528000pt;}
.wsaf{word-spacing:-0.469333pt;}
.ws28{word-spacing:-0.352000pt;}
.ws49{word-spacing:-0.293333pt;}
.ws47{word-spacing:-0.234667pt;}
.wsa{word-spacing:-0.176000pt;}
.wsa0{word-spacing:-0.106667pt;}
.ws5e{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.wsb5{word-spacing:0.117333pt;}
.ws79{word-spacing:0.293333pt;}
.ws92{word-spacing:0.410667pt;}
.wsb0{word-spacing:0.469333pt;}
.ws3f{word-spacing:0.528000pt;}
.ws43{word-spacing:0.586667pt;}
.ws54{word-spacing:0.645333pt;}
.ws1e{word-spacing:0.704000pt;}
.ws61{word-spacing:0.821333pt;}
.ws27{word-spacing:0.880000pt;}
.ws69{word-spacing:0.997333pt;}
.ws75{word-spacing:1.056000pt;}
.wsc{word-spacing:1.114667pt;}
.ws50{word-spacing:1.173333pt;}
.ws5{word-spacing:1.232000pt;}
.ws19{word-spacing:1.290667pt;}
.wsbf{word-spacing:1.466667pt;}
.ws8f{word-spacing:1.525333pt;}
.ws38{word-spacing:1.642667pt;}
.ws29{word-spacing:1.701333pt;}
.wsc6{word-spacing:1.760000pt;}
.ws21{word-spacing:1.818667pt;}
.ws9a{word-spacing:1.877333pt;}
.ws88{word-spacing:1.936000pt;}
.wscf{word-spacing:1.973333pt;}
.ws91{word-spacing:1.994667pt;}
.wsb{word-spacing:2.053333pt;}
.ws4c{word-spacing:2.112000pt;}
.wsaa{word-spacing:2.288000pt;}
.ws2e{word-spacing:2.346667pt;}
.ws11{word-spacing:2.405333pt;}
.ws78{word-spacing:2.464000pt;}
.ws55{word-spacing:2.640000pt;}
.wsbd{word-spacing:2.698667pt;}
.wsa8{word-spacing:2.816000pt;}
.ws36{word-spacing:2.933333pt;}
.ws20{word-spacing:2.992000pt;}
.ws8a{word-spacing:3.109333pt;}
.ws16{word-spacing:3.226667pt;}
.ws3e{word-spacing:3.285333pt;}
.ws60{word-spacing:3.461333pt;}
.ws33{word-spacing:3.520000pt;}
.ws1c{word-spacing:3.637333pt;}
.ws7{word-spacing:3.696000pt;}
.wsa7{word-spacing:3.813333pt;}
.ws40{word-spacing:3.872000pt;}
.ws3d{word-spacing:3.989333pt;}
.ws31{word-spacing:4.048000pt;}
.ws62{word-spacing:4.165333pt;}
.ws5d{word-spacing:4.224000pt;}
.ws9e{word-spacing:4.341333pt;}
.wsc0{word-spacing:4.400000pt;}
.wsc5{word-spacing:4.458667pt;}
.ws6{word-spacing:4.517333pt;}
.ws94{word-spacing:4.752000pt;}
.wsc4{word-spacing:4.853333pt;}
.ws7c{word-spacing:4.869333pt;}
.wsa2{word-spacing:4.928000pt;}
.ws96{word-spacing:5.045333pt;}
.ws2d{word-spacing:5.104000pt;}
.wsc2{word-spacing:5.162667pt;}
.ws85{word-spacing:5.221333pt;}
.wsce{word-spacing:5.600000pt;}
.wsa3{word-spacing:5.690667pt;}
.ws80{word-spacing:5.749333pt;}
.ws1f{word-spacing:5.808000pt;}
.ws9{word-spacing:5.925333pt;}
.ws4f{word-spacing:5.984000pt;}
.wscc{word-spacing:6.042667pt;}
.ws12{word-spacing:6.101333pt;}
.ws8e{word-spacing:6.160000pt;}
.ws67{word-spacing:6.277333pt;}
.ws42{word-spacing:6.394667pt;}
.ws51{word-spacing:6.453333pt;}
.ws18{word-spacing:6.570667pt;}
.ws73{word-spacing:6.629333pt;}
.ws22{word-spacing:6.688000pt;}
.wsa4{word-spacing:6.746667pt;}
.ws6f{word-spacing:6.805333pt;}
.ws7f{word-spacing:6.922667pt;}
.wsa1{word-spacing:6.981333pt;}
.ws3a{word-spacing:7.098667pt;}
.ws74{word-spacing:7.157333pt;}
.ws93{word-spacing:7.274667pt;}
.ws5f{word-spacing:7.333333pt;}
.ws7d{word-spacing:7.392000pt;}
.ws8{word-spacing:7.626667pt;}
.wsab{word-spacing:7.744000pt;}
.ws95{word-spacing:7.802667pt;}
.wsc7{word-spacing:7.861333pt;}
.ws44{word-spacing:7.920000pt;}
.ws4e{word-spacing:7.978667pt;}
.wsb9{word-spacing:8.096000pt;}
.ws6b{word-spacing:8.213333pt;}
.ws1b{word-spacing:8.624000pt;}
.ws97{word-spacing:8.682667pt;}
.ws5b{word-spacing:8.917333pt;}
.ws10{word-spacing:8.976000pt;}
.wsb3{word-spacing:9.034667pt;}
.ws7b{word-spacing:9.093333pt;}
.ws86{word-spacing:9.328000pt;}
.ws4b{word-spacing:9.504000pt;}
.wsb6{word-spacing:9.621333pt;}
.ws1d{word-spacing:9.680000pt;}
.ws8d{word-spacing:9.738667pt;}
.ws37{word-spacing:9.797333pt;}
.ws5c{word-spacing:9.973333pt;}
.ws39{word-spacing:10.208000pt;}
.wsb8{word-spacing:10.325333pt;}
.ws41{word-spacing:10.384000pt;}
.ws4d{word-spacing:10.442667pt;}
.ws84{word-spacing:10.501333pt;}
.ws3b{word-spacing:10.618667pt;}
.wsb7{word-spacing:10.677333pt;}
.wsad{word-spacing:10.794667pt;}
.ws52{word-spacing:10.912000pt;}
.ws32{word-spacing:11.029333pt;}
.ws72{word-spacing:11.205333pt;}
.ws2c{word-spacing:11.264000pt;}
.wse{word-spacing:11.381333pt;}
.ws66{word-spacing:11.440000pt;}
.ws56{word-spacing:11.674667pt;}
.ws2b{word-spacing:11.792000pt;}
.ws98{word-spacing:11.850667pt;}
.ws15{word-spacing:11.968000pt;}
.ws65{word-spacing:12.085333pt;}
.ws87{word-spacing:12.144000pt;}
.ws26{word-spacing:12.554667pt;}
.wsb2{word-spacing:12.730667pt;}
.wsba{word-spacing:12.848000pt;}
.ws83{word-spacing:13.024000pt;}
.ws8b{word-spacing:13.200000pt;}
.wsa5{word-spacing:13.904000pt;}
.ws13{word-spacing:14.256000pt;}
.wsd0{word-spacing:14.346667pt;}
.ws25{word-spacing:14.373333pt;}
.ws9b{word-spacing:14.549333pt;}
.wsc1{word-spacing:14.842667pt;}
.ws70{word-spacing:14.960000pt;}
.ws1a{word-spacing:15.077333pt;}
.ws45{word-spacing:15.370667pt;}
.wsae{word-spacing:15.488000pt;}
.wsbb{word-spacing:15.840000pt;}
.wsa6{word-spacing:16.016000pt;}
.wsb4{word-spacing:16.544000pt;}
.ws6c{word-spacing:16.837333pt;}
.ws81{word-spacing:16.896000pt;}
.ws68{word-spacing:18.186667pt;}
.ws90{word-spacing:19.066667pt;}
.ws2f{word-spacing:19.477333pt;}
.ws63{word-spacing:19.594667pt;}
.ws89{word-spacing:19.946667pt;}
.ws9c{word-spacing:20.122667pt;}
.wsb1{word-spacing:20.826667pt;}
.wsa9{word-spacing:21.002667pt;}
.ws30{word-spacing:21.354667pt;}
.wsf{word-spacing:22.000000pt;}
.ws6a{word-spacing:22.293333pt;}
.ws7a{word-spacing:24.933333pt;}
.ws64{word-spacing:25.050667pt;}
.ws82{word-spacing:27.397333pt;}
.ws57{word-spacing:29.098667pt;}
._a{margin-left:-4.560000pt;}
._1{margin-left:-3.200000pt;}
._3{margin-left:-2.011200pt;}
._0{margin-left:-1.072000pt;}
._2{width:0.932800pt;}
._4{width:1.992000pt;}
._e{width:3.370133pt;}
._9{width:4.834133pt;}
._c{width:6.228800pt;}
._6{width:7.626667pt;}
._5{width:8.757867pt;}
._b{width:9.764267pt;}
._f{width:10.809067pt;}
._7{width:13.409600pt;}
._8{width:14.447467pt;}
._d{width:15.349333pt;}
._10{width:16.351467pt;}
.fsb{font-size:0.533333pt;}
.fs9{font-size:27.984000pt;}
.fs7{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:49.721733pt;}
.y22{bottom:50.330800pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y13d{bottom:91.800533pt;}
.y13c{bottom:110.467200pt;}
.y6c{bottom:113.385867pt;}
.y38{bottom:115.309200pt;}
.yb7{bottom:116.067333pt;}
.y94{bottom:117.133867pt;}
.ye5{bottom:117.459467pt;}
.ybc{bottom:117.667200pt;}
.y10a{bottom:118.259467pt;}
.y21{bottom:123.790666pt;}
.y6b{bottom:129.385867pt;}
.y37{bottom:133.971867pt;}
.yb6{bottom:134.734000pt;}
.y93{bottom:135.800533pt;}
.ye4{bottom:136.126133pt;}
.ybb{bottom:136.333867pt;}
.y109{bottom:136.926133pt;}
.y6a{bottom:145.385867pt;}
.y13b{bottom:147.800533pt;}
.yb5{bottom:153.400667pt;}
.y92{bottom:154.467200pt;}
.ye3{bottom:154.792800pt;}
.yba{bottom:155.000533pt;}
.y69{bottom:161.385867pt;}
.y13a{bottom:166.467200pt;}
.y36{bottom:168.909200pt;}
.yb4{bottom:172.067333pt;}
.y91{bottom:173.133867pt;}
.ye2{bottom:173.459467pt;}
.yb9{bottom:173.667200pt;}
.y108{bottom:174.259467pt;}
.y18{bottom:175.052000pt;}
.y68{bottom:177.385867pt;}
.y35{bottom:183.575867pt;}
.y139{bottom:185.133867pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yb3{bottom:190.734000pt;}
.y90{bottom:191.800533pt;}
.ye1{bottom:192.126133pt;}
.y107{bottom:192.926133pt;}
.y67{bottom:193.385867pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yb2{bottom:209.400667pt;}
.y106{bottom:211.592800pt;}
.y66{bottom:213.381867pt;}
.y34{bottom:214.242533pt;}
.y138{bottom:222.467200pt;}
.yb1{bottom:228.067333pt;}
.y33{bottom:228.909200pt;}
.y8f{bottom:229.133867pt;}
.y65{bottom:229.385867pt;}
.ye0{bottom:229.459467pt;}
.y105{bottom:230.259467pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y137{bottom:241.133867pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y32{bottom:243.575867pt;}
.y64{bottom:245.385867pt;}
.y8e{bottom:247.800533pt;}
.ydf{bottom:248.126133pt;}
.y119{bottom:248.867200pt;}
.y104{bottom:248.926133pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y63{bottom:261.385867pt;}
.yb0{bottom:265.400667pt;}
.y8d{bottom:266.467200pt;}
.yde{bottom:266.792800pt;}
.y118{bottom:267.533867pt;}
.y103{bottom:267.592800pt;}
.y31{bottom:274.242533pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y62{bottom:277.385867pt;}
.y136{bottom:278.467200pt;}
.yaf{bottom:284.067333pt;}
.y8c{bottom:285.133867pt;}
.ydd{bottom:285.459467pt;}
.y117{bottom:286.200533pt;}
.y102{bottom:286.259467pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y61{bottom:293.385867pt;}
.y135{bottom:297.133867pt;}
.yae{bottom:302.734000pt;}
.y8b{bottom:303.800533pt;}
.ydc{bottom:304.126133pt;}
.y116{bottom:304.867200pt;}
.y101{bottom:304.926133pt;}
.y60{bottom:309.385867pt;}
.yf{bottom:309.452000pt;}
.yad{bottom:321.400667pt;}
.y8a{bottom:322.467200pt;}
.y115{bottom:323.533867pt;}
.y100{bottom:323.592800pt;}
.y5f{bottom:325.385867pt;}
.y3d{bottom:325.780800pt;}
.y134{bottom:334.467200pt;}
.yac{bottom:340.067333pt;}
.y89{bottom:341.133867pt;}
.y5e{bottom:341.385867pt;}
.ydb{bottom:341.459467pt;}
.y114{bottom:342.200533pt;}
.yff{bottom:342.259467pt;}
.ye{bottom:343.809333pt;}
.y3c{bottom:344.447467pt;}
.y133{bottom:353.133867pt;}
.y5d{bottom:357.385867pt;}
.yab{bottom:358.734000pt;}
.y88{bottom:359.800533pt;}
.yda{bottom:360.126133pt;}
.y113{bottom:360.867200pt;}
.yd{bottom:362.706666pt;}
.y3b{bottom:363.114133pt;}
.y132{bottom:371.800533pt;}
.y5c{bottom:373.385867pt;}
.yaa{bottom:377.400667pt;}
.y10b{bottom:378.467200pt;}
.yd9{bottom:378.792800pt;}
.y112{bottom:379.533867pt;}
.yfe{bottom:379.592800pt;}
.y3a{bottom:381.780800pt;}
.y5b{bottom:389.385867pt;}
.ya9{bottom:396.067333pt;}
.y87{bottom:397.133867pt;}
.yd8{bottom:397.459467pt;}
.y111{bottom:398.200533pt;}
.yfd{bottom:398.259467pt;}
.y39{bottom:400.447467pt;}
.y5a{bottom:405.385867pt;}
.y131{bottom:409.133867pt;}
.y86{bottom:415.800533pt;}
.y110{bottom:416.867200pt;}
.yfc{bottom:416.926133pt;}
.y3e{bottom:419.114133pt;}
.y59{bottom:425.381867pt;}
.y130{bottom:427.800533pt;}
.ya8{bottom:433.400667pt;}
.y85{bottom:434.467200pt;}
.yd7{bottom:434.792800pt;}
.y10f{bottom:435.533867pt;}
.yfb{bottom:435.592800pt;}
.yc{bottom:446.990669pt;}
.ya7{bottom:452.067333pt;}
.y84{bottom:453.133867pt;}
.yd6{bottom:453.459467pt;}
.y10e{bottom:454.200533pt;}
.yfa{bottom:454.259467pt;}
.y58{bottom:457.934000pt;}
.yb{bottom:462.990669pt;}
.y12f{bottom:465.133867pt;}
.ya6{bottom:470.734000pt;}
.y83{bottom:471.800533pt;}
.yd5{bottom:472.126133pt;}
.y30{bottom:472.466133pt;}
.y10d{bottom:472.867200pt;}
.yf9{bottom:472.926133pt;}
.y57{bottom:476.600667pt;}
.ya{bottom:478.990666pt;}
.y12e{bottom:483.800533pt;}
.ya5{bottom:489.400667pt;}
.y82{bottom:490.467200pt;}
.yd4{bottom:490.792800pt;}
.y2f{bottom:491.132800pt;}
.y10c{bottom:491.533867pt;}
.yf8{bottom:491.592800pt;}
.y9{bottom:494.990666pt;}
.y56{bottom:495.267333pt;}
.y12d{bottom:502.467200pt;}
.ya4{bottom:508.067333pt;}
.y81{bottom:509.133867pt;}
.yd3{bottom:509.459467pt;}
.y2e{bottom:509.799467pt;}
.y55{bottom:513.934000pt;}
.ya3{bottom:526.734000pt;}
.y80{bottom:527.800533pt;}
.y2d{bottom:528.466133pt;}
.yf7{bottom:528.926133pt;}
.y12c{bottom:539.800533pt;}
.ya2{bottom:545.400667pt;}
.y7f{bottom:546.467200pt;}
.yd2{bottom:546.792800pt;}
.y2c{bottom:547.132800pt;}
.yf6{bottom:547.592800pt;}
.y54{bottom:551.267333pt;}
.y12b{bottom:558.467200pt;}
.ya1{bottom:564.067333pt;}
.y7e{bottom:565.133867pt;}
.yd1{bottom:565.459467pt;}
.y2b{bottom:565.799467pt;}
.yf5{bottom:566.259467pt;}
.y53{bottom:569.934000pt;}
.y8{bottom:573.786667pt;}
.y12a{bottom:577.133867pt;}
.ya0{bottom:582.734000pt;}
.y7d{bottom:583.800533pt;}
.yd0{bottom:584.126133pt;}
.y2a{bottom:584.466133pt;}
.yf4{bottom:584.926133pt;}
.y52{bottom:588.600667pt;}
.y7{bottom:592.685334pt;}
.y7c{bottom:602.467200pt;}
.ycf{bottom:602.792800pt;}
.y29{bottom:603.132800pt;}
.yf3{bottom:603.592800pt;}
.y51{bottom:607.267333pt;}
.y129{bottom:614.467200pt;}
.y9f{bottom:620.600667pt;}
.y7b{bottom:621.133867pt;}
.yce{bottom:621.459467pt;}
.y28{bottom:621.799467pt;}
.yf2{bottom:622.259467pt;}
.y50{bottom:625.934000pt;}
.y128{bottom:633.133867pt;}
.y9e{bottom:639.267333pt;}
.y7a{bottom:639.800533pt;}
.yf1{bottom:640.926133pt;}
.y4f{bottom:644.600667pt;}
.y6{bottom:645.598667pt;}
.y27{bottom:648.466133pt;}
.y9d{bottom:657.934000pt;}
.y79{bottom:658.467200pt;}
.ycd{bottom:658.792800pt;}
.yf0{bottom:659.592800pt;}
.y4e{bottom:663.267333pt;}
.y3{bottom:668.977329pt;}
.y127{bottom:670.467200pt;}
.y9c{bottom:676.600667pt;}
.yb8{bottom:677.133867pt;}
.ycc{bottom:677.459467pt;}
.yef{bottom:678.259467pt;}
.y126{bottom:689.133867pt;}
.y9b{bottom:695.267200pt;}
.y78{bottom:695.800533pt;}
.ycb{bottom:696.126133pt;}
.yee{bottom:696.926133pt;}
.y4d{bottom:700.600533pt;}
.y9a{bottom:713.933867pt;}
.y77{bottom:714.467200pt;}
.yca{bottom:714.792800pt;}
.yed{bottom:715.592800pt;}
.y26{bottom:715.666133pt;}
.y4c{bottom:719.267200pt;}
.y125{bottom:726.467200pt;}
.y99{bottom:732.600533pt;}
.y76{bottom:733.133867pt;}
.yc9{bottom:733.459467pt;}
.yec{bottom:734.259467pt;}
.y4b{bottom:737.933867pt;}
.y124{bottom:745.133867pt;}
.y98{bottom:751.267200pt;}
.y75{bottom:751.800533pt;}
.yc8{bottom:752.126133pt;}
.yeb{bottom:752.926133pt;}
.y25{bottom:756.199467pt;}
.y4a{bottom:756.600533pt;}
.y123{bottom:763.800533pt;}
.y97{bottom:769.933867pt;}
.y74{bottom:770.467200pt;}
.yc7{bottom:770.792800pt;}
.yea{bottom:771.592800pt;}
.y49{bottom:775.267200pt;}
.y2{bottom:781.661334pt;}
.y24{bottom:788.199467pt;}
.y96{bottom:788.600533pt;}
.y73{bottom:789.133867pt;}
.yc6{bottom:789.459467pt;}
.ye9{bottom:790.259467pt;}
.y48{bottom:793.933867pt;}
.y122{bottom:801.133867pt;}
.y95{bottom:807.267200pt;}
.y72{bottom:807.800533pt;}
.ye8{bottom:808.926133pt;}
.y47{bottom:812.600533pt;}
.y121{bottom:819.800533pt;}
.y71{bottom:826.467200pt;}
.yc5{bottom:826.792800pt;}
.y46{bottom:831.267200pt;}
.ye7{bottom:834.526133pt;}
.y120{bottom:838.467200pt;}
.y70{bottom:845.133867pt;}
.yc4{bottom:845.459467pt;}
.y143{bottom:847.392267pt;}
.y45{bottom:856.867200pt;}
.y1{bottom:859.312000pt;}
.y6f{bottom:863.800533pt;}
.yc3{bottom:864.126133pt;}
.y142{bottom:866.058933pt;}
.y11f{bottom:875.800533pt;}
.y6e{bottom:882.467200pt;}
.yc2{bottom:882.792800pt;}
.y141{bottom:884.725600pt;}
.y11e{bottom:894.467200pt;}
.y6d{bottom:901.133867pt;}
.yc1{bottom:901.459467pt;}
.y140{bottom:903.392267pt;}
.y11d{bottom:913.133867pt;}
.y44{bottom:919.800533pt;}
.yc0{bottom:920.126133pt;}
.y13f{bottom:922.058933pt;}
.y43{bottom:938.467200pt;}
.ye6{bottom:938.792800pt;}
.y11c{bottom:950.467200pt;}
.y42{bottom:957.133867pt;}
.ybf{bottom:957.459467pt;}
.y11b{bottom:969.133867pt;}
.y41{bottom:975.800533pt;}
.ybe{bottom:976.126133pt;}
.y13e{bottom:980.535467pt;}
.y11a{bottom:987.800533pt;}
.y40{bottom:994.467200pt;}
.ybd{bottom:994.792800pt;}
.y23{bottom:1059.464667pt;}
.h10{height:27.360000pt;}
.h7{height:28.560000pt;}
.h12{height:36.864000pt;}
.ha{height:40.693333pt;}
.h6{height:40.800000pt;}
.hd{height:42.416000pt;}
.h3{height:42.840000pt;}
.hf{height:43.344000pt;}
.h13{height:44.800000pt;}
.he{height:45.056000pt;}
.h9{height:48.160000pt;}
.h2{height:48.960000pt;}
.hc{height:52.976000pt;}
.h11{height:61.696000pt;}
.h5{height:69.360000pt;}
.hb{height:77.120000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:56.321867pt;}
.x7{left:57.266800pt;}
.xd{left:61.926400pt;}
.x8{left:87.933467pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xe{left:100.157467pt;}
.x4{left:180.874667pt;}
.x6{left:231.332533pt;}
.xa{left:233.353467pt;}
.x5{left:390.063867pt;}
.xc{left:392.124267pt;}
.x3{left:404.408000pt;}
.x9{left:411.968400pt;}
}




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