
    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_a44a4d671c630be5391b358d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.675293;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_cffe41bce8d10c9deb4f4453.woff')format("woff");}.ff2{font-family:ff2;line-height:0.984863;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_b222e272724d282030d6a706.woff')format("woff");}.ff3{font-family:ff3;line-height:0.996000;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_5fc363be34fe73b74a7b7f3f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.171000;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_df502ca7eba6a6c6ab5f993a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.056000;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_1076fc0d70d4c58455983688.woff')format("woff");}.ff6{font-family:ff6;line-height:0.979004;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_9907d20d22669c2a651f6125.woff')format("woff");}.ff7{font-family:ff7;line-height:1.056000;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_9554b0672bd8edbf17be2b5e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.996000;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_d6b197524d94b11c3d9163e7.woff')format("woff");}.ff9{font-family:ff9;line-height:1.050000;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_62b2d95fe1bd4dea24d14011.woff')format("woff");}.ffa{font-family:ffa;line-height:1.008000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:-7.812000px;}
.ls2{letter-spacing:-0.660000px;}
.ls3{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.264000px;}
.ls4{letter-spacing:-0.132000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:3.669600px;}
.ls9{letter-spacing:4.752000px;}
.ls6{letter-spacing:15.048000px;}
.ls8{letter-spacing:29.766000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-42.768000px;}
.ws7{word-spacing:-24.948000px;}
.ws2{word-spacing:-18.348000px;}
.ws9c{word-spacing:-18.216000px;}
.wsa7{word-spacing:-18.084000px;}
.ws9e{word-spacing:-7.722000px;}
.wsb6{word-spacing:-6.600000px;}
.ws2e{word-spacing:-6.006000px;}
.ws8a{word-spacing:-4.818000px;}
.ws75{word-spacing:-4.554000px;}
.ws9d{word-spacing:-4.290000px;}
.ws68{word-spacing:-3.894000px;}
.wsa0{word-spacing:-3.762000px;}
.ws3f{word-spacing:-3.696000px;}
.ws69{word-spacing:-3.432000px;}
.ws96{word-spacing:-3.366000px;}
.ws5{word-spacing:-3.300000px;}
.ws18{word-spacing:-3.168000px;}
.wsb7{word-spacing:-3.102000px;}
.ws57{word-spacing:-3.036000px;}
.ws3c{word-spacing:-2.904000px;}
.ws7c{word-spacing:-2.706000px;}
.ws25{word-spacing:-2.640000px;}
.ws64{word-spacing:-2.508000px;}
.ws2f{word-spacing:-2.244000px;}
.ws74{word-spacing:-2.046000px;}
.ws90{word-spacing:-1.980000px;}
.ws45{word-spacing:-1.914000px;}
.ws7b{word-spacing:-1.848000px;}
.ws6{word-spacing:-1.782000px;}
.ws65{word-spacing:-1.716000px;}
.ws31{word-spacing:-1.650000px;}
.wsa3{word-spacing:-1.584000px;}
.ws37{word-spacing:-1.518000px;}
.ws9b{word-spacing:-1.452000px;}
.ws8d{word-spacing:-1.386000px;}
.ws50{word-spacing:-1.320000px;}
.ws32{word-spacing:-1.254000px;}
.ws89{word-spacing:-0.990000px;}
.ws7e{word-spacing:-0.924000px;}
.ws5b{word-spacing:-0.810000px;}
.ws94{word-spacing:-0.792000px;}
.ws84{word-spacing:-0.726000px;}
.ws4c{word-spacing:-0.660000px;}
.ws20{word-spacing:-0.528000px;}
.ws98{word-spacing:-0.462000px;}
.ws27{word-spacing:-0.396000px;}
.ws6a{word-spacing:-0.330000px;}
.ws2a{word-spacing:-0.264000px;}
.ws8f{word-spacing:-0.198000px;}
.ws97{word-spacing:-0.132000px;}
.ws23{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws77{word-spacing:0.066000px;}
.wsae{word-spacing:0.132000px;}
.wsa9{word-spacing:0.264000px;}
.ws1d{word-spacing:0.330000px;}
.ws63{word-spacing:0.396000px;}
.ws1f{word-spacing:0.462000px;}
.ws60{word-spacing:0.528000px;}
.wsa2{word-spacing:0.594000px;}
.ws21{word-spacing:0.660000px;}
.ws73{word-spacing:0.792000px;}
.ws78{word-spacing:0.924000px;}
.ws82{word-spacing:0.990000px;}
.ws4{word-spacing:1.056000px;}
.ws85{word-spacing:1.188000px;}
.ws3a{word-spacing:1.254000px;}
.ws22{word-spacing:1.320000px;}
.ws55{word-spacing:1.386000px;}
.ws99{word-spacing:1.452000px;}
.ws42{word-spacing:1.518000px;}
.ws4e{word-spacing:1.584000px;}
.ws86{word-spacing:1.650000px;}
.ws2c{word-spacing:1.716000px;}
.ws2b{word-spacing:1.782000px;}
.ws17{word-spacing:1.914000px;}
.wsd{word-spacing:2.046000px;}
.ws41{word-spacing:2.112000px;}
.wsa4{word-spacing:2.178000px;}
.ws4f{word-spacing:2.244000px;}
.wsad{word-spacing:2.310000px;}
.ws9{word-spacing:2.376000px;}
.ws3b{word-spacing:2.442000px;}
.wsab{word-spacing:2.508000px;}
.ws2d{word-spacing:2.706000px;}
.ws5c{word-spacing:2.904000px;}
.ws7f{word-spacing:3.036000px;}
.ws35{word-spacing:3.102000px;}
.ws5f{word-spacing:3.168000px;}
.ws12{word-spacing:3.234000px;}
.wsa{word-spacing:3.300000px;}
.ws40{word-spacing:3.366000px;}
.ws79{word-spacing:3.432000px;}
.wsa1{word-spacing:3.630000px;}
.ws56{word-spacing:3.696000px;}
.ws30{word-spacing:3.828000px;}
.ws4d{word-spacing:3.894000px;}
.wsb1{word-spacing:4.026000px;}
.ws67{word-spacing:4.092000px;}
.wsaf{word-spacing:4.158000px;}
.ws3d{word-spacing:4.290000px;}
.ws6b{word-spacing:4.356000px;}
.ws19{word-spacing:4.422000px;}
.ws3e{word-spacing:4.554000px;}
.ws4b{word-spacing:4.686000px;}
.ws1e{word-spacing:4.818000px;}
.ws13{word-spacing:4.950000px;}
.wsb{word-spacing:5.016000px;}
.ws95{word-spacing:5.082000px;}
.ws14{word-spacing:5.148000px;}
.ws80{word-spacing:5.214000px;}
.ws8{word-spacing:5.280000px;}
.ws38{word-spacing:5.346000px;}
.ws29{word-spacing:5.412000px;}
.ws6d{word-spacing:5.544000px;}
.wse{word-spacing:5.610000px;}
.ws53{word-spacing:5.676000px;}
.ws10{word-spacing:5.742000px;}
.ws93{word-spacing:5.808000px;}
.ws61{word-spacing:5.874000px;}
.ws33{word-spacing:5.940000px;}
.ws34{word-spacing:6.072000px;}
.ws16{word-spacing:6.204000px;}
.ws39{word-spacing:6.270000px;}
.ws83{word-spacing:6.402000px;}
.ws11{word-spacing:6.468000px;}
.wsa6{word-spacing:6.534000px;}
.ws26{word-spacing:6.600000px;}
.ws88{word-spacing:6.666000px;}
.ws7a{word-spacing:6.732000px;}
.ws1b{word-spacing:6.798000px;}
.ws24{word-spacing:6.864000px;}
.ws87{word-spacing:6.996000px;}
.ws48{word-spacing:7.062000px;}
.ws28{word-spacing:7.260000px;}
.ws6f{word-spacing:7.392000px;}
.ws76{word-spacing:7.458000px;}
.wsa5{word-spacing:7.524000px;}
.ws44{word-spacing:7.590000px;}
.ws8c{word-spacing:7.722000px;}
.ws0{word-spacing:7.728000px;}
.ws9f{word-spacing:7.788000px;}
.wsf{word-spacing:7.854000px;}
.ws49{word-spacing:7.986000px;}
.ws71{word-spacing:8.052000px;}
.wsc{word-spacing:8.118000px;}
.ws52{word-spacing:8.184000px;}
.ws62{word-spacing:8.250000px;}
.ws81{word-spacing:8.382000px;}
.ws51{word-spacing:8.448000px;}
.ws91{word-spacing:8.580000px;}
.ws7d{word-spacing:8.778000px;}
.ws72{word-spacing:8.844000px;}
.ws4a{word-spacing:9.042000px;}
.ws8e{word-spacing:9.108000px;}
.ws6c{word-spacing:9.372000px;}
.ws1a{word-spacing:9.438000px;}
.ws92{word-spacing:9.570000px;}
.ws54{word-spacing:9.636000px;}
.ws1c{word-spacing:9.702000px;}
.ws43{word-spacing:10.164000px;}
.ws15{word-spacing:10.230000px;}
.ws6e{word-spacing:10.296000px;}
.ws36{word-spacing:10.428000px;}
.ws47{word-spacing:10.494000px;}
.wsac{word-spacing:11.220000px;}
.ws5e{word-spacing:11.748000px;}
.wsaa{word-spacing:11.880000px;}
.wsb2{word-spacing:11.946000px;}
.wsb0{word-spacing:12.540000px;}
.ws46{word-spacing:13.728000px;}
.ws70{word-spacing:14.190000px;}
.ws66{word-spacing:15.246000px;}
.wsa8{word-spacing:15.312000px;}
.ws5d{word-spacing:17.226000px;}
.ws8b{word-spacing:19.272000px;}
.ws9a{word-spacing:19.866000px;}
.wsb3{word-spacing:19.998000px;}
.wsb4{word-spacing:28.248000px;}
.wsb5{word-spacing:29.700000px;}
.ws59{word-spacing:52.115400px;}
.ws58{word-spacing:70.092000px;}
.ws5a{word-spacing:194.621400px;}
._18{margin-left:-21.813600px;}
._19{margin-left:-11.082000px;}
._4{margin-left:-9.471600px;}
._6{margin-left:-7.887600px;}
._2{margin-left:-6.249600px;}
._5{margin-left:-5.072400px;}
._1{margin-left:-3.931200px;}
._14{margin-left:-2.831400px;}
._3{margin-left:-1.814400px;}
._0{width:1.987200px;}
._9{width:3.406200px;}
._8{width:4.665600px;}
._11{width:6.053400px;}
._15{width:7.681200px;}
._7{width:9.246600px;}
._10{width:10.923000px;}
._17{width:12.797400px;}
._13{width:19.845600px;}
._12{width:24.347400px;}
._f{width:40.590000px;}
._e{width:44.682000px;}
._d{width:48.907800px;}
._c{width:60.750000px;}
._b{width:67.969800px;}
._16{width:122.694000px;}
._a{width:685.206000px;}
.fc6{color:rgb(22,93,167);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(111,144,202);}
.fc2{color:rgb(12,12,13);}
.fc4{color:rgb(124,153,207);}
.fc1{color:rgb(31,97,171);}
.fc0{color:rgb(41,102,175);}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y17{bottom:71.467650px;}
.y120{bottom:118.911750px;}
.y69{bottom:123.215250px;}
.yb6{bottom:127.094400px;}
.y148{bottom:129.610800px;}
.y14{bottom:133.352550px;}
.y1{bottom:136.896000px;}
.yd9{bottom:138.098100px;}
.y3e{bottom:139.665600px;}
.y11f{bottom:139.916250px;}
.y8d{bottom:144.188250px;}
.y68{bottom:144.219750px;}
.y164{bottom:145.113300px;}
.yb5{bottom:148.098900px;}
.y147{bottom:150.615300px;}
.yd8{bottom:159.102600px;}
.y3d{bottom:160.670100px;}
.y186{bottom:163.046100px;}
.y11e{bottom:165.161250px;}
.y8c{bottom:165.192750px;}
.y67{bottom:165.224250px;}
.y163{bottom:166.117800px;}
.yd7{bottom:180.107100px;}
.y3c{bottom:181.674600px;}
.yb4{bottom:181.857900px;}
.y185{bottom:184.050600px;}
.y146{bottom:184.374300px;}
.y8b{bottom:186.197250px;}
.y11d{bottom:190.406250px;}
.y162{bottom:199.876800px;}
.yfb{bottom:202.448250px;}
.y3b{bottom:202.679100px;}
.yb3{bottom:202.862400px;}
.y198{bottom:205.055100px;}
.y145{bottom:205.378800px;}
.y8a{bottom:207.201750px;}
.y66{bottom:207.484200px;}
.y11c{bottom:211.410750px;}
.yd6{bottom:213.866100px;}
.y184{bottom:217.809600px;}
.yfa{bottom:223.452750px;}
.yb2{bottom:223.866900px;}
.y19c{bottom:226.059600px;}
.y144{bottom:226.383300px;}
.y89{bottom:228.206250px;}
.y13{bottom:229.398900px;}
.y11b{bottom:232.415250px;}
.y161{bottom:233.635800px;}
.y3a{bottom:236.438100px;}
.y183{bottom:238.814100px;}
.yd5{bottom:239.111100px;}
.y143{bottom:247.387800px;}
.y88{bottom:249.210750px;}
.y12{bottom:250.403400px;}
.y160{bottom:254.640300px;}
.y65{bottom:256.832100px;}
.y39{bottom:257.442600px;}
.yb1{bottom:257.625900px;}
.y11a{bottom:257.660250px;}
.y197{bottom:259.818600px;}
.yd4{bottom:264.356100px;}
.yf9{bottom:265.712550px;}
.y142{bottom:268.392300px;}
.y87{bottom:270.215250px;}
.y11{bottom:271.407900px;}
.y182{bottom:272.573100px;}
.y15f{bottom:275.644800px;}
.y64{bottom:277.836600px;}
.y38{bottom:278.447100px;}
.yb0{bottom:278.630400px;}
.y119{bottom:278.664750px;}
.y196{bottom:280.823100px;}
.y141{bottom:289.396800px;}
.y86{bottom:291.219750px;}
.y10{bottom:292.412400px;}
.y181{bottom:293.577600px;}
.yd3{bottom:293.858100px;}
.y63{bottom:298.841100px;}
.y37{bottom:299.451600px;}
.yaf{bottom:299.634900px;}
.y118{bottom:299.669250px;}
.y15e{bottom:309.403800px;}
.y140{bottom:310.401300px;}
.yf8{bottom:312.100950px;}
.y85{bottom:312.224250px;}
.y195{bottom:314.582100px;}
.y62{bottom:319.845600px;}
.y36{bottom:320.456100px;}
.y180{bottom:327.336600px;}
.yd2{bottom:327.617100px;}
.y15d{bottom:330.408300px;}
.y13f{bottom:331.405800px;}
.yf7{bottom:333.105450px;}
.yae{bottom:333.393900px;}
.y194{bottom:335.586600px;}
.y35{bottom:341.460600px;}
.y117{bottom:341.929200px;}
.y17f{bottom:348.341100px;}
.yd1{bottom:348.621600px;}
.y15c{bottom:351.412800px;}
.y13e{bottom:352.410300px;}
.y61{bottom:353.604600px;}
.yf6{bottom:354.109950px;}
.yad{bottom:354.398400px;}
.y84{bottom:354.484200px;}
.y193{bottom:356.591100px;}
.y34{bottom:362.465100px;}
.y17e{bottom:369.345600px;}
.yd0{bottom:369.626100px;}
.y60{bottom:374.609100px;}
.yf5{bottom:375.114450px;}
.y192{bottom:377.595600px;}
.yac{bottom:379.643400px;}
.y33{bottom:383.469600px;}
.y15b{bottom:385.171800px;}
.y13d{bottom:386.169300px;}
.y116{bottom:388.441350px;}
.y19b{bottom:390.350100px;}
.ycf{bottom:390.630600px;}
.y5f{bottom:395.613600px;}
.y17d{bottom:403.104600px;}
.y83{bottom:403.863600px;}
.y32{bottom:404.474100px;}
.yab{bottom:404.888400px;}
.y15a{bottom:406.176300px;}
.y13c{bottom:407.173800px;}
.yf4{bottom:408.873450px;}
.y191{bottom:411.354600px;}
.y115{bottom:413.686350px;}
.y5e{bottom:416.618100px;}
.y17c{bottom:424.109100px;}
.yce{bottom:424.389600px;}
.y82{bottom:424.868100px;}
.y31{bottom:425.478600px;}
.y159{bottom:427.180800px;}
.y13b{bottom:428.178300px;}
.yf3{bottom:429.877950px;}
.yaa{bottom:430.133400px;}
.y190{bottom:432.359100px;}
.y114{bottom:434.690850px;}
.y5d{bottom:437.622600px;}
.y17b{bottom:445.113600px;}
.ycd{bottom:445.394100px;}
.y81{bottom:445.872600px;}
.y30{bottom:446.483100px;}
.yf2{bottom:450.882450px;}
.yf{bottom:451.752900px;}
.ya9{bottom:455.378400px;}
.y5c{bottom:458.627100px;}
.y113{bottom:459.935850px;}
.y158{bottom:460.939800px;}
.y13a{bottom:461.937300px;}
.y18f{bottom:466.118100px;}
.ycc{bottom:466.398600px;}
.y80{bottom:466.877100px;}
.ye{bottom:472.757400px;}
.y17a{bottom:478.872600px;}
.y5b{bottom:479.631600px;}
.ya8{bottom:480.623400px;}
.y112{bottom:480.940350px;}
.y157{bottom:481.944300px;}
.y139{bottom:482.941800px;}
.yf1{bottom:484.641450px;}
.y18e{bottom:487.122600px;}
.ycb{bottom:487.403100px;}
.y7f{bottom:487.881600px;}
.y2f{bottom:488.742900px;}
.yd{bottom:493.761900px;}
.y179{bottom:499.877100px;}
.y5a{bottom:500.636100px;}
.y111{bottom:501.944850px;}
.y156{bottom:502.948800px;}
.y138{bottom:503.946300px;}
.yf0{bottom:505.645950px;}
.yca{bottom:508.407600px;}
.y7e{bottom:508.886100px;}
.ya7{bottom:510.125400px;}
.y178{bottom:520.881600px;}
.y59{bottom:521.640600px;}
.yc{bottom:523.263900px;}
.y137{bottom:524.950800px;}
.yef{bottom:526.650450px;}
.yc9{bottom:529.412100px;}
.y7d{bottom:529.890600px;}
.ya6{bottom:531.129900px;}
.y177{bottom:541.886100px;}
.y58{bottom:542.645100px;}
.y110{bottom:544.204800px;}
.yb{bottom:544.268400px;}
.y155{bottom:545.208600px;}
.y136{bottom:545.955300px;}
.yee{bottom:547.654950px;}
.y7c{bottom:550.895100px;}
.ya5{bottom:552.134400px;}
.y18d{bottom:554.640600px;}
.yc8{bottom:563.171100px;}
.y57{bottom:563.649600px;}
.ya{bottom:565.272900px;}
.yed{bottom:568.659450px;}
.y7b{bottom:571.899600px;}
.ya4{bottom:573.138900px;}
.y176{bottom:575.645100px;}
.y135{bottom:579.714300px;}
.yc7{bottom:584.175600px;}
.y56{bottom:584.654100px;}
.yec{bottom:589.663950px;}
.y10f{bottom:590.712450px;}
.ya3{bottom:594.143400px;}
.y154{bottom:594.711450px;}
.y9{bottom:594.774900px;}
.y175{bottom:596.649600px;}
.y134{bottom:600.718800px;}
.y2e{bottom:604.840650px;}
.yc6{bottom:605.180100px;}
.y7a{bottom:605.658600px;}
.y10e{bottom:611.716950px;}
.y153{bottom:615.715950px;}
.y8{bottom:615.779400px;}
.y174{bottom:617.654100px;}
.y55{bottom:618.413100px;}
.y133{bottom:621.723300px;}
.yeb{bottom:623.422950px;}
.y2d{bottom:625.845150px;}
.yc5{bottom:626.184600px;}
.y79{bottom:626.663100px;}
.ya2{bottom:627.902400px;}
.y18c{bottom:630.408600px;}
.y152{bottom:636.720450px;}
.y7{bottom:636.783900px;}
.y10d{bottom:636.961950px;}
.y54{bottom:639.417600px;}
.y132{bottom:642.727800px;}
.yea{bottom:644.427450px;}
.y78{bottom:647.667600px;}
.ya1{bottom:648.906900px;}
.y173{bottom:651.413100px;}
.y10c{bottom:657.966450px;}
.y2c{bottom:659.601000px;}
.yc4{bottom:659.943600px;}
.y53{bottom:660.422100px;}
.y131{bottom:663.732300px;}
.ye9{bottom:665.431950px;}
.y6{bottom:666.285900px;}
.y77{bottom:668.672100px;}
.ya0{bottom:669.911400px;}
.y172{bottom:672.417600px;}
.y151{bottom:678.980250px;}
.yc3{bottom:680.948100px;}
.y52{bottom:681.426600px;}
.y10b{bottom:683.211450px;}
.y18b{bottom:685.172100px;}
.ye8{bottom:686.436450px;}
.y5{bottom:687.290400px;}
.y76{bottom:689.676600px;}
.y9f{bottom:690.915900px;}
.y171{bottom:693.422100px;}
.yc2{bottom:701.952600px;}
.y51{bottom:702.431100px;}
.y10a{bottom:704.215950px;}
.y130{bottom:705.992100px;}
.y18a{bottom:706.176600px;}
.ye7{bottom:707.440950px;}
.y4{bottom:708.294900px;}
.y2b{bottom:709.031850px;}
.y9e{bottom:711.920400px;}
.y75{bottom:723.435600px;}
.y109{bottom:725.220450px;}
.y170{bottom:727.181100px;}
.ye6{bottom:728.445450px;}
.y150{bottom:728.470950px;}
.y2a{bottom:730.036350px;}
.y9d{bottom:732.924900px;}
.yc1{bottom:735.711600px;}
.y50{bottom:736.190100px;}
.y74{bottom:744.440100px;}
.y16f{bottom:748.185600px;}
.ye5{bottom:749.449950px;}
.y14f{bottom:749.475450px;}
.y29{bottom:751.040850px;}
.y12f{bottom:755.476800px;}
.yc0{bottom:756.716100px;}
.y4f{bottom:757.194600px;}
.y108{bottom:763.228350px;}
.y73{bottom:765.444600px;}
.y9c{bottom:766.683900px;}
.y19a{bottom:769.190100px;}
.y14e{bottom:770.479950px;}
.y28{bottom:772.045350px;}
.y12e{bottom:776.481300px;}
.ybf{bottom:777.720600px;}
.y4e{bottom:778.199100px;}
.y16e{bottom:781.944600px;}
.ye4{bottom:783.208950px;}
.y72{bottom:786.449100px;}
.y9b{bottom:787.688400px;}
.y27{bottom:793.049850px;}
.y4d{bottom:799.203600px;}
.y16d{bottom:802.949100px;}
.ye3{bottom:804.213450px;}
.y14d{bottom:804.238950px;}
.y9a{bottom:808.692900px;}
.y107{bottom:809.745150px;}
.y12d{bottom:810.240300px;}
.ybe{bottom:811.479600px;}
.y26{bottom:814.054350px;}
.y3{bottom:818.598300px;}
.y4c{bottom:820.208100px;}
.y16c{bottom:823.953600px;}
.ye2{bottom:825.217950px;}
.y14c{bottom:825.243450px;}
.y12c{bottom:831.244800px;}
.ybd{bottom:832.484100px;}
.y106{bottom:834.990150px;}
.y25{bottom:835.058850px;}
.y189{bottom:836.708100px;}
.y71{bottom:841.212600px;}
.y99{bottom:842.451900px;}
.ye1{bottom:846.222450px;}
.y14b{bottom:846.247950px;}
.y12b{bottom:852.249300px;}
.ybc{bottom:853.488600px;}
.y4b{bottom:853.967100px;}
.y105{bottom:855.994650px;}
.y24{bottom:856.063350px;}
.y2{bottom:857.586300px;}
.y16b{bottom:857.712600px;}
.y70{bottom:862.217100px;}
.y98{bottom:863.456400px;}
.y12a{bottom:873.253800px;}
.ybb{bottom:874.493100px;}
.y4a{bottom:874.971600px;}
.y23{bottom:877.067850px;}
.y16a{bottom:878.717100px;}
.ye0{bottom:879.981450px;}
.y104{bottom:881.239650px;}
.y6f{bottom:883.221600px;}
.y97{bottom:884.460900px;}
.y14a{bottom:888.507750px;}
.y199{bottom:891.471600px;}
.y49{bottom:895.976100px;}
.y22{bottom:898.072350px;}
.y129{bottom:898.498800px;}
.y169{bottom:899.721600px;}
.ydf{bottom:900.985950px;}
.y103{bottom:902.244150px;}
.y6e{bottom:904.226100px;}
.y96{bottom:905.465400px;}
.yba{bottom:908.252100px;}
.y188{bottom:912.476100px;}
.y48{bottom:916.980600px;}
.y21{bottom:919.076850px;}
.y128{bottom:919.503300px;}
.yde{bottom:921.990450px;}
.y6d{bottom:925.230600px;}
.y95{bottom:926.469900px;}
.y168{bottom:933.480600px;}
.y47{bottom:937.985100px;}
.y20{bottom:940.081350px;}
.y102{bottom:940.252050px;}
.yb9{bottom:942.011100px;}
.ydd{bottom:942.994950px;}
.y127{bottom:944.748300px;}
.y6c{bottom:946.235100px;}
.y94{bottom:947.474400px;}
.y167{bottom:954.485100px;}
.y46{bottom:958.989600px;}
.y1f{bottom:961.085850px;}
.ydc{bottom:963.999450px;}
.y126{bottom:965.752800px;}
.y187{bottom:967.239600px;}
.yb8{bottom:967.256100px;}
.y45{bottom:979.994100px;}
.y93{bottom:981.716850px;}
.y1e{bottom:982.090350px;}
.ydb{bottom:985.003950px;}
.y125{bottom:986.757300px;}
.y101{bottom:986.768700px;}
.y166{bottom:988.244100px;}
.yb7{bottom:992.501100px;}
.y44{bottom:1000.998600px;}
.y1d{bottom:1003.094850px;}
.y165{bottom:1009.248600px;}
.y92{bottom:1011.200850px;}
.y124{bottom:1012.002300px;}
.y100{bottom:1012.013700px;}
.y6b{bottom:1022.003100px;}
.y1c{bottom:1024.099350px;}
.yda{bottom:1027.263750px;}
.y123{bottom:1033.006800px;}
.yff{bottom:1033.018200px;}
.y43{bottom:1034.757600px;}
.y91{bottom:1040.968350px;}
.y6a{bottom:1043.007600px;}
.y1b{bottom:1045.103850px;}
.y122{bottom:1054.011300px;}
.y42{bottom:1055.762100px;}
.yfe{bottom:1058.263200px;}
.y149{bottom:1064.012100px;}
.y1a{bottom:1066.108350px;}
.y90{bottom:1070.735850px;}
.y121{bottom:1075.015800px;}
.y41{bottom:1076.766600px;}
.yfd{bottom:1079.267700px;}
.y19{bottom:1087.112850px;}
.y40{bottom:1097.771100px;}
.y8f{bottom:1101.026100px;}
.yfc{bottom:1117.275600px;}
.y3f{bottom:1118.775600px;}
.y18{bottom:1120.868850px;}
.y8e{bottom:1121.775600px;}
.y16{bottom:1180.236150px;}
.y15{bottom:1198.231650px;}
.h6{height:40.500000px;}
.h9{height:40.824000px;}
.ha{height:41.472000px;}
.hb{height:47.682000px;}
.h4{height:49.896000px;}
.h8{height:50.688000px;}
.hc{height:55.296000px;}
.h2{height:55.986328px;}
.h5{height:58.278000px;}
.h7{height:63.000000px;}
.h3{height:108.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:106.299150px;}
.x9{left:112.670700px;}
.x5{left:126.858150px;}
.xa{left:130.306650px;}
.x8{left:189.485700px;}
.x2{left:211.493100px;}
.x7{left:434.381700px;}
.x6{left:538.156200px;}
.x3{left:545.357100px;}
.x1{left:816.378000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:-6.944000pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.234667pt;}
.ls4{letter-spacing:-0.117333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:3.261867pt;}
.ls9{letter-spacing:4.224000pt;}
.ls6{letter-spacing:13.376000pt;}
.ls8{letter-spacing:26.458667pt;}
.ws1{word-spacing:-38.016000pt;}
.ws7{word-spacing:-22.176000pt;}
.ws2{word-spacing:-16.309333pt;}
.ws9c{word-spacing:-16.192000pt;}
.wsa7{word-spacing:-16.074667pt;}
.ws9e{word-spacing:-6.864000pt;}
.wsb6{word-spacing:-5.866667pt;}
.ws2e{word-spacing:-5.338667pt;}
.ws8a{word-spacing:-4.282667pt;}
.ws75{word-spacing:-4.048000pt;}
.ws9d{word-spacing:-3.813333pt;}
.ws68{word-spacing:-3.461333pt;}
.wsa0{word-spacing:-3.344000pt;}
.ws3f{word-spacing:-3.285333pt;}
.ws69{word-spacing:-3.050667pt;}
.ws96{word-spacing:-2.992000pt;}
.ws5{word-spacing:-2.933333pt;}
.ws18{word-spacing:-2.816000pt;}
.wsb7{word-spacing:-2.757333pt;}
.ws57{word-spacing:-2.698667pt;}
.ws3c{word-spacing:-2.581333pt;}
.ws7c{word-spacing:-2.405333pt;}
.ws25{word-spacing:-2.346667pt;}
.ws64{word-spacing:-2.229333pt;}
.ws2f{word-spacing:-1.994667pt;}
.ws74{word-spacing:-1.818667pt;}
.ws90{word-spacing:-1.760000pt;}
.ws45{word-spacing:-1.701333pt;}
.ws7b{word-spacing:-1.642667pt;}
.ws6{word-spacing:-1.584000pt;}
.ws65{word-spacing:-1.525333pt;}
.ws31{word-spacing:-1.466667pt;}
.wsa3{word-spacing:-1.408000pt;}
.ws37{word-spacing:-1.349333pt;}
.ws9b{word-spacing:-1.290667pt;}
.ws8d{word-spacing:-1.232000pt;}
.ws50{word-spacing:-1.173333pt;}
.ws32{word-spacing:-1.114667pt;}
.ws89{word-spacing:-0.880000pt;}
.ws7e{word-spacing:-0.821333pt;}
.ws5b{word-spacing:-0.720000pt;}
.ws94{word-spacing:-0.704000pt;}
.ws84{word-spacing:-0.645333pt;}
.ws4c{word-spacing:-0.586667pt;}
.ws20{word-spacing:-0.469333pt;}
.ws98{word-spacing:-0.410667pt;}
.ws27{word-spacing:-0.352000pt;}
.ws6a{word-spacing:-0.293333pt;}
.ws2a{word-spacing:-0.234667pt;}
.ws8f{word-spacing:-0.176000pt;}
.ws97{word-spacing:-0.117333pt;}
.ws23{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws77{word-spacing:0.058667pt;}
.wsae{word-spacing:0.117333pt;}
.wsa9{word-spacing:0.234667pt;}
.ws1d{word-spacing:0.293333pt;}
.ws63{word-spacing:0.352000pt;}
.ws1f{word-spacing:0.410667pt;}
.ws60{word-spacing:0.469333pt;}
.wsa2{word-spacing:0.528000pt;}
.ws21{word-spacing:0.586667pt;}
.ws73{word-spacing:0.704000pt;}
.ws78{word-spacing:0.821333pt;}
.ws82{word-spacing:0.880000pt;}
.ws4{word-spacing:0.938667pt;}
.ws85{word-spacing:1.056000pt;}
.ws3a{word-spacing:1.114667pt;}
.ws22{word-spacing:1.173333pt;}
.ws55{word-spacing:1.232000pt;}
.ws99{word-spacing:1.290667pt;}
.ws42{word-spacing:1.349333pt;}
.ws4e{word-spacing:1.408000pt;}
.ws86{word-spacing:1.466667pt;}
.ws2c{word-spacing:1.525333pt;}
.ws2b{word-spacing:1.584000pt;}
.ws17{word-spacing:1.701333pt;}
.wsd{word-spacing:1.818667pt;}
.ws41{word-spacing:1.877333pt;}
.wsa4{word-spacing:1.936000pt;}
.ws4f{word-spacing:1.994667pt;}
.wsad{word-spacing:2.053333pt;}
.ws9{word-spacing:2.112000pt;}
.ws3b{word-spacing:2.170667pt;}
.wsab{word-spacing:2.229333pt;}
.ws2d{word-spacing:2.405333pt;}
.ws5c{word-spacing:2.581333pt;}
.ws7f{word-spacing:2.698667pt;}
.ws35{word-spacing:2.757333pt;}
.ws5f{word-spacing:2.816000pt;}
.ws12{word-spacing:2.874667pt;}
.wsa{word-spacing:2.933333pt;}
.ws40{word-spacing:2.992000pt;}
.ws79{word-spacing:3.050667pt;}
.wsa1{word-spacing:3.226667pt;}
.ws56{word-spacing:3.285333pt;}
.ws30{word-spacing:3.402667pt;}
.ws4d{word-spacing:3.461333pt;}
.wsb1{word-spacing:3.578667pt;}
.ws67{word-spacing:3.637333pt;}
.wsaf{word-spacing:3.696000pt;}
.ws3d{word-spacing:3.813333pt;}
.ws6b{word-spacing:3.872000pt;}
.ws19{word-spacing:3.930667pt;}
.ws3e{word-spacing:4.048000pt;}
.ws4b{word-spacing:4.165333pt;}
.ws1e{word-spacing:4.282667pt;}
.ws13{word-spacing:4.400000pt;}
.wsb{word-spacing:4.458667pt;}
.ws95{word-spacing:4.517333pt;}
.ws14{word-spacing:4.576000pt;}
.ws80{word-spacing:4.634667pt;}
.ws8{word-spacing:4.693333pt;}
.ws38{word-spacing:4.752000pt;}
.ws29{word-spacing:4.810667pt;}
.ws6d{word-spacing:4.928000pt;}
.wse{word-spacing:4.986667pt;}
.ws53{word-spacing:5.045333pt;}
.ws10{word-spacing:5.104000pt;}
.ws93{word-spacing:5.162667pt;}
.ws61{word-spacing:5.221333pt;}
.ws33{word-spacing:5.280000pt;}
.ws34{word-spacing:5.397333pt;}
.ws16{word-spacing:5.514667pt;}
.ws39{word-spacing:5.573333pt;}
.ws83{word-spacing:5.690667pt;}
.ws11{word-spacing:5.749333pt;}
.wsa6{word-spacing:5.808000pt;}
.ws26{word-spacing:5.866667pt;}
.ws88{word-spacing:5.925333pt;}
.ws7a{word-spacing:5.984000pt;}
.ws1b{word-spacing:6.042667pt;}
.ws24{word-spacing:6.101333pt;}
.ws87{word-spacing:6.218667pt;}
.ws48{word-spacing:6.277333pt;}
.ws28{word-spacing:6.453333pt;}
.ws6f{word-spacing:6.570667pt;}
.ws76{word-spacing:6.629333pt;}
.wsa5{word-spacing:6.688000pt;}
.ws44{word-spacing:6.746667pt;}
.ws8c{word-spacing:6.864000pt;}
.ws0{word-spacing:6.869333pt;}
.ws9f{word-spacing:6.922667pt;}
.wsf{word-spacing:6.981333pt;}
.ws49{word-spacing:7.098667pt;}
.ws71{word-spacing:7.157333pt;}
.wsc{word-spacing:7.216000pt;}
.ws52{word-spacing:7.274667pt;}
.ws62{word-spacing:7.333333pt;}
.ws81{word-spacing:7.450667pt;}
.ws51{word-spacing:7.509333pt;}
.ws91{word-spacing:7.626667pt;}
.ws7d{word-spacing:7.802667pt;}
.ws72{word-spacing:7.861333pt;}
.ws4a{word-spacing:8.037333pt;}
.ws8e{word-spacing:8.096000pt;}
.ws6c{word-spacing:8.330667pt;}
.ws1a{word-spacing:8.389333pt;}
.ws92{word-spacing:8.506667pt;}
.ws54{word-spacing:8.565333pt;}
.ws1c{word-spacing:8.624000pt;}
.ws43{word-spacing:9.034667pt;}
.ws15{word-spacing:9.093333pt;}
.ws6e{word-spacing:9.152000pt;}
.ws36{word-spacing:9.269333pt;}
.ws47{word-spacing:9.328000pt;}
.wsac{word-spacing:9.973333pt;}
.ws5e{word-spacing:10.442667pt;}
.wsaa{word-spacing:10.560000pt;}
.wsb2{word-spacing:10.618667pt;}
.wsb0{word-spacing:11.146667pt;}
.ws46{word-spacing:12.202667pt;}
.ws70{word-spacing:12.613333pt;}
.ws66{word-spacing:13.552000pt;}
.wsa8{word-spacing:13.610667pt;}
.ws5d{word-spacing:15.312000pt;}
.ws8b{word-spacing:17.130667pt;}
.ws9a{word-spacing:17.658667pt;}
.wsb3{word-spacing:17.776000pt;}
.wsb4{word-spacing:25.109333pt;}
.wsb5{word-spacing:26.400000pt;}
.ws59{word-spacing:46.324800pt;}
.ws58{word-spacing:62.304000pt;}
.ws5a{word-spacing:172.996800pt;}
._18{margin-left:-19.389867pt;}
._19{margin-left:-9.850667pt;}
._4{margin-left:-8.419200pt;}
._6{margin-left:-7.011200pt;}
._2{margin-left:-5.555200pt;}
._5{margin-left:-4.508800pt;}
._1{margin-left:-3.494400pt;}
._14{margin-left:-2.516800pt;}
._3{margin-left:-1.612800pt;}
._0{width:1.766400pt;}
._9{width:3.027733pt;}
._8{width:4.147200pt;}
._11{width:5.380800pt;}
._15{width:6.827733pt;}
._7{width:8.219200pt;}
._10{width:9.709333pt;}
._17{width:11.375467pt;}
._13{width:17.640533pt;}
._12{width:21.642133pt;}
._f{width:36.080000pt;}
._e{width:39.717333pt;}
._d{width:43.473600pt;}
._c{width:54.000000pt;}
._b{width:60.417600pt;}
._16{width:109.061333pt;}
._a{width:609.072000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:63.526800pt;}
.y120{bottom:105.699333pt;}
.y69{bottom:109.524667pt;}
.yb6{bottom:112.972800pt;}
.y148{bottom:115.209600pt;}
.y14{bottom:118.535600pt;}
.y1{bottom:121.685333pt;}
.yd9{bottom:122.753867pt;}
.y3e{bottom:124.147200pt;}
.y11f{bottom:124.370000pt;}
.y8d{bottom:128.167333pt;}
.y68{bottom:128.195333pt;}
.y164{bottom:128.989600pt;}
.yb5{bottom:131.643467pt;}
.y147{bottom:133.880267pt;}
.yd8{bottom:141.424533pt;}
.y3d{bottom:142.817867pt;}
.y186{bottom:144.929867pt;}
.y11e{bottom:146.810000pt;}
.y8c{bottom:146.838000pt;}
.y67{bottom:146.866000pt;}
.y163{bottom:147.660267pt;}
.yd7{bottom:160.095200pt;}
.y3c{bottom:161.488533pt;}
.yb4{bottom:161.651467pt;}
.y185{bottom:163.600533pt;}
.y146{bottom:163.888267pt;}
.y8b{bottom:165.508667pt;}
.y11d{bottom:169.250000pt;}
.y162{bottom:177.668267pt;}
.yfb{bottom:179.954000pt;}
.y3b{bottom:180.159200pt;}
.yb3{bottom:180.322133pt;}
.y198{bottom:182.271200pt;}
.y145{bottom:182.558933pt;}
.y8a{bottom:184.179333pt;}
.y66{bottom:184.430400pt;}
.y11c{bottom:187.920667pt;}
.yd6{bottom:190.103200pt;}
.y184{bottom:193.608533pt;}
.yfa{bottom:198.624667pt;}
.yb2{bottom:198.992800pt;}
.y19c{bottom:200.941867pt;}
.y144{bottom:201.229600pt;}
.y89{bottom:202.850000pt;}
.y13{bottom:203.910133pt;}
.y11b{bottom:206.591333pt;}
.y161{bottom:207.676267pt;}
.y3a{bottom:210.167200pt;}
.y183{bottom:212.279200pt;}
.yd5{bottom:212.543200pt;}
.y143{bottom:219.900267pt;}
.y88{bottom:221.520667pt;}
.y12{bottom:222.580800pt;}
.y160{bottom:226.346933pt;}
.y65{bottom:228.295200pt;}
.y39{bottom:228.837867pt;}
.yb1{bottom:229.000800pt;}
.y11a{bottom:229.031333pt;}
.y197{bottom:230.949867pt;}
.yd4{bottom:234.983200pt;}
.yf9{bottom:236.188933pt;}
.y142{bottom:238.570933pt;}
.y87{bottom:240.191333pt;}
.y11{bottom:241.251467pt;}
.y182{bottom:242.287200pt;}
.y15f{bottom:245.017600pt;}
.y64{bottom:246.965867pt;}
.y38{bottom:247.508533pt;}
.yb0{bottom:247.671467pt;}
.y119{bottom:247.702000pt;}
.y196{bottom:249.620533pt;}
.y141{bottom:257.241600pt;}
.y86{bottom:258.862000pt;}
.y10{bottom:259.922133pt;}
.y181{bottom:260.957867pt;}
.yd3{bottom:261.207200pt;}
.y63{bottom:265.636533pt;}
.y37{bottom:266.179200pt;}
.yaf{bottom:266.342133pt;}
.y118{bottom:266.372667pt;}
.y15e{bottom:275.025600pt;}
.y140{bottom:275.912267pt;}
.yf8{bottom:277.423067pt;}
.y85{bottom:277.532667pt;}
.y195{bottom:279.628533pt;}
.y62{bottom:284.307200pt;}
.y36{bottom:284.849867pt;}
.y180{bottom:290.965867pt;}
.yd2{bottom:291.215200pt;}
.y15d{bottom:293.696267pt;}
.y13f{bottom:294.582933pt;}
.yf7{bottom:296.093733pt;}
.yae{bottom:296.350133pt;}
.y194{bottom:298.299200pt;}
.y35{bottom:303.520533pt;}
.y117{bottom:303.937067pt;}
.y17f{bottom:309.636533pt;}
.yd1{bottom:309.885867pt;}
.y15c{bottom:312.366933pt;}
.y13e{bottom:313.253600pt;}
.y61{bottom:314.315200pt;}
.yf6{bottom:314.764400pt;}
.yad{bottom:315.020800pt;}
.y84{bottom:315.097067pt;}
.y193{bottom:316.969867pt;}
.y34{bottom:322.191200pt;}
.y17e{bottom:328.307200pt;}
.yd0{bottom:328.556533pt;}
.y60{bottom:332.985867pt;}
.yf5{bottom:333.435067pt;}
.y192{bottom:335.640533pt;}
.yac{bottom:337.460800pt;}
.y33{bottom:340.861867pt;}
.y15b{bottom:342.374933pt;}
.y13d{bottom:343.261600pt;}
.y116{bottom:345.281200pt;}
.y19b{bottom:346.977867pt;}
.ycf{bottom:347.227200pt;}
.y5f{bottom:351.656533pt;}
.y17d{bottom:358.315200pt;}
.y83{bottom:358.989867pt;}
.y32{bottom:359.532533pt;}
.yab{bottom:359.900800pt;}
.y15a{bottom:361.045600pt;}
.y13c{bottom:361.932267pt;}
.yf4{bottom:363.443067pt;}
.y191{bottom:365.648533pt;}
.y115{bottom:367.721200pt;}
.y5e{bottom:370.327200pt;}
.y17c{bottom:376.985867pt;}
.yce{bottom:377.235200pt;}
.y82{bottom:377.660533pt;}
.y31{bottom:378.203200pt;}
.y159{bottom:379.716267pt;}
.y13b{bottom:380.602933pt;}
.yf3{bottom:382.113733pt;}
.yaa{bottom:382.340800pt;}
.y190{bottom:384.319200pt;}
.y114{bottom:386.391867pt;}
.y5d{bottom:388.997867pt;}
.y17b{bottom:395.656533pt;}
.ycd{bottom:395.905867pt;}
.y81{bottom:396.331200pt;}
.y30{bottom:396.873867pt;}
.yf2{bottom:400.784400pt;}
.yf{bottom:401.558133pt;}
.ya9{bottom:404.780800pt;}
.y5c{bottom:407.668533pt;}
.y113{bottom:408.831867pt;}
.y158{bottom:409.724267pt;}
.y13a{bottom:410.610933pt;}
.y18f{bottom:414.327200pt;}
.ycc{bottom:414.576533pt;}
.y80{bottom:415.001867pt;}
.ye{bottom:420.228800pt;}
.y17a{bottom:425.664533pt;}
.y5b{bottom:426.339200pt;}
.ya8{bottom:427.220800pt;}
.y112{bottom:427.502533pt;}
.y157{bottom:428.394933pt;}
.y139{bottom:429.281600pt;}
.yf1{bottom:430.792400pt;}
.y18e{bottom:432.997867pt;}
.ycb{bottom:433.247200pt;}
.y7f{bottom:433.672533pt;}
.y2f{bottom:434.438133pt;}
.yd{bottom:438.899467pt;}
.y179{bottom:444.335200pt;}
.y5a{bottom:445.009867pt;}
.y111{bottom:446.173200pt;}
.y156{bottom:447.065600pt;}
.y138{bottom:447.952267pt;}
.yf0{bottom:449.463067pt;}
.yca{bottom:451.917867pt;}
.y7e{bottom:452.343200pt;}
.ya7{bottom:453.444800pt;}
.y178{bottom:463.005867pt;}
.y59{bottom:463.680533pt;}
.yc{bottom:465.123467pt;}
.y137{bottom:466.622933pt;}
.yef{bottom:468.133733pt;}
.yc9{bottom:470.588533pt;}
.y7d{bottom:471.013867pt;}
.ya6{bottom:472.115467pt;}
.y177{bottom:481.676533pt;}
.y58{bottom:482.351200pt;}
.y110{bottom:483.737600pt;}
.yb{bottom:483.794133pt;}
.y155{bottom:484.629867pt;}
.y136{bottom:485.293600pt;}
.yee{bottom:486.804400pt;}
.y7c{bottom:489.684533pt;}
.ya5{bottom:490.786133pt;}
.y18d{bottom:493.013867pt;}
.yc8{bottom:500.596533pt;}
.y57{bottom:501.021867pt;}
.ya{bottom:502.464800pt;}
.yed{bottom:505.475067pt;}
.y7b{bottom:508.355200pt;}
.ya4{bottom:509.456800pt;}
.y176{bottom:511.684533pt;}
.y135{bottom:515.301600pt;}
.yc7{bottom:519.267200pt;}
.y56{bottom:519.692533pt;}
.yec{bottom:524.145733pt;}
.y10f{bottom:525.077733pt;}
.ya3{bottom:528.127467pt;}
.y154{bottom:528.632400pt;}
.y9{bottom:528.688800pt;}
.y175{bottom:530.355200pt;}
.y134{bottom:533.972267pt;}
.y2e{bottom:537.636133pt;}
.yc6{bottom:537.937867pt;}
.y7a{bottom:538.363200pt;}
.y10e{bottom:543.748400pt;}
.y153{bottom:547.303067pt;}
.y8{bottom:547.359467pt;}
.y174{bottom:549.025867pt;}
.y55{bottom:549.700533pt;}
.y133{bottom:552.642933pt;}
.yeb{bottom:554.153733pt;}
.y2d{bottom:556.306800pt;}
.yc5{bottom:556.608533pt;}
.y79{bottom:557.033867pt;}
.ya2{bottom:558.135467pt;}
.y18c{bottom:560.363200pt;}
.y152{bottom:565.973733pt;}
.y7{bottom:566.030133pt;}
.y10d{bottom:566.188400pt;}
.y54{bottom:568.371200pt;}
.y132{bottom:571.313600pt;}
.yea{bottom:572.824400pt;}
.y78{bottom:575.704533pt;}
.ya1{bottom:576.806133pt;}
.y173{bottom:579.033867pt;}
.y10c{bottom:584.859067pt;}
.y2c{bottom:586.312000pt;}
.yc4{bottom:586.616533pt;}
.y53{bottom:587.041867pt;}
.y131{bottom:589.984267pt;}
.ye9{bottom:591.495067pt;}
.y6{bottom:592.254133pt;}
.y77{bottom:594.375200pt;}
.ya0{bottom:595.476800pt;}
.y172{bottom:597.704533pt;}
.y151{bottom:603.538000pt;}
.yc3{bottom:605.287200pt;}
.y52{bottom:605.712533pt;}
.y10b{bottom:607.299067pt;}
.y18b{bottom:609.041867pt;}
.ye8{bottom:610.165733pt;}
.y5{bottom:610.924800pt;}
.y76{bottom:613.045867pt;}
.y9f{bottom:614.147467pt;}
.y171{bottom:616.375200pt;}
.yc2{bottom:623.957867pt;}
.y51{bottom:624.383200pt;}
.y10a{bottom:625.969733pt;}
.y130{bottom:627.548533pt;}
.y18a{bottom:627.712533pt;}
.ye7{bottom:628.836400pt;}
.y4{bottom:629.595467pt;}
.y2b{bottom:630.250533pt;}
.y9e{bottom:632.818133pt;}
.y75{bottom:643.053867pt;}
.y109{bottom:644.640400pt;}
.y170{bottom:646.383200pt;}
.ye6{bottom:647.507067pt;}
.y150{bottom:647.529733pt;}
.y2a{bottom:648.921200pt;}
.y9d{bottom:651.488800pt;}
.yc1{bottom:653.965867pt;}
.y50{bottom:654.391200pt;}
.y74{bottom:661.724533pt;}
.y16f{bottom:665.053867pt;}
.ye5{bottom:666.177733pt;}
.y14f{bottom:666.200400pt;}
.y29{bottom:667.591867pt;}
.y12f{bottom:671.534933pt;}
.yc0{bottom:672.636533pt;}
.y4f{bottom:673.061867pt;}
.y108{bottom:678.425200pt;}
.y73{bottom:680.395200pt;}
.y9c{bottom:681.496800pt;}
.y19a{bottom:683.724533pt;}
.y14e{bottom:684.871067pt;}
.y28{bottom:686.262533pt;}
.y12e{bottom:690.205600pt;}
.ybf{bottom:691.307200pt;}
.y4e{bottom:691.732533pt;}
.y16e{bottom:695.061867pt;}
.ye4{bottom:696.185733pt;}
.y72{bottom:699.065867pt;}
.y9b{bottom:700.167467pt;}
.y27{bottom:704.933200pt;}
.y4d{bottom:710.403200pt;}
.y16d{bottom:713.732533pt;}
.ye3{bottom:714.856400pt;}
.y14d{bottom:714.879067pt;}
.y9a{bottom:718.838133pt;}
.y107{bottom:719.773467pt;}
.y12d{bottom:720.213600pt;}
.ybe{bottom:721.315200pt;}
.y26{bottom:723.603867pt;}
.y3{bottom:727.642933pt;}
.y4c{bottom:729.073867pt;}
.y16c{bottom:732.403200pt;}
.ye2{bottom:733.527067pt;}
.y14c{bottom:733.549733pt;}
.y12c{bottom:738.884267pt;}
.ybd{bottom:739.985867pt;}
.y106{bottom:742.213467pt;}
.y25{bottom:742.274533pt;}
.y189{bottom:743.740533pt;}
.y71{bottom:747.744533pt;}
.y99{bottom:748.846133pt;}
.ye1{bottom:752.197733pt;}
.y14b{bottom:752.220400pt;}
.y12b{bottom:757.554933pt;}
.ybc{bottom:758.656533pt;}
.y4b{bottom:759.081867pt;}
.y105{bottom:760.884133pt;}
.y24{bottom:760.945200pt;}
.y2{bottom:762.298933pt;}
.y16b{bottom:762.411200pt;}
.y70{bottom:766.415200pt;}
.y98{bottom:767.516800pt;}
.y12a{bottom:776.225600pt;}
.ybb{bottom:777.327200pt;}
.y4a{bottom:777.752533pt;}
.y23{bottom:779.615867pt;}
.y16a{bottom:781.081867pt;}
.ye0{bottom:782.205733pt;}
.y104{bottom:783.324133pt;}
.y6f{bottom:785.085867pt;}
.y97{bottom:786.187467pt;}
.y14a{bottom:789.784667pt;}
.y199{bottom:792.419200pt;}
.y49{bottom:796.423200pt;}
.y22{bottom:798.286533pt;}
.y129{bottom:798.665600pt;}
.y169{bottom:799.752533pt;}
.ydf{bottom:800.876400pt;}
.y103{bottom:801.994800pt;}
.y6e{bottom:803.756533pt;}
.y96{bottom:804.858133pt;}
.yba{bottom:807.335200pt;}
.y188{bottom:811.089867pt;}
.y48{bottom:815.093867pt;}
.y21{bottom:816.957200pt;}
.y128{bottom:817.336267pt;}
.yde{bottom:819.547067pt;}
.y6d{bottom:822.427200pt;}
.y95{bottom:823.528800pt;}
.y168{bottom:829.760533pt;}
.y47{bottom:833.764533pt;}
.y20{bottom:835.627867pt;}
.y102{bottom:835.779600pt;}
.yb9{bottom:837.343200pt;}
.ydd{bottom:838.217733pt;}
.y127{bottom:839.776267pt;}
.y6c{bottom:841.097867pt;}
.y94{bottom:842.199467pt;}
.y167{bottom:848.431200pt;}
.y46{bottom:852.435200pt;}
.y1f{bottom:854.298533pt;}
.ydc{bottom:856.888400pt;}
.y126{bottom:858.446933pt;}
.y187{bottom:859.768533pt;}
.yb8{bottom:859.783200pt;}
.y45{bottom:871.105867pt;}
.y93{bottom:872.637200pt;}
.y1e{bottom:872.969200pt;}
.ydb{bottom:875.559067pt;}
.y125{bottom:877.117600pt;}
.y101{bottom:877.127733pt;}
.y166{bottom:878.439200pt;}
.yb7{bottom:882.223200pt;}
.y44{bottom:889.776533pt;}
.y1d{bottom:891.639867pt;}
.y165{bottom:897.109867pt;}
.y92{bottom:898.845200pt;}
.y124{bottom:899.557600pt;}
.y100{bottom:899.567733pt;}
.y6b{bottom:908.447200pt;}
.y1c{bottom:910.310533pt;}
.yda{bottom:913.123333pt;}
.y123{bottom:918.228267pt;}
.yff{bottom:918.238400pt;}
.y43{bottom:919.784533pt;}
.y91{bottom:925.305200pt;}
.y6a{bottom:927.117867pt;}
.y1b{bottom:928.981200pt;}
.y122{bottom:936.898933pt;}
.y42{bottom:938.455200pt;}
.yfe{bottom:940.678400pt;}
.y149{bottom:945.788533pt;}
.y1a{bottom:947.651867pt;}
.y90{bottom:951.765200pt;}
.y121{bottom:955.569600pt;}
.y41{bottom:957.125867pt;}
.yfd{bottom:959.349067pt;}
.y19{bottom:966.322533pt;}
.y40{bottom:975.796533pt;}
.y8f{bottom:978.689867pt;}
.yfc{bottom:993.133867pt;}
.y3f{bottom:994.467200pt;}
.y18{bottom:996.327867pt;}
.y8e{bottom:997.133867pt;}
.y16{bottom:1049.098800pt;}
.y15{bottom:1065.094800pt;}
.h6{height:36.000000pt;}
.h9{height:36.288000pt;}
.ha{height:36.864000pt;}
.hb{height:42.384000pt;}
.h4{height:44.352000pt;}
.h8{height:45.056000pt;}
.hc{height:49.152000pt;}
.h2{height:49.765625pt;}
.h5{height:51.802667pt;}
.h7{height:56.000000pt;}
.h3{height:96.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:94.488133pt;}
.x9{left:100.151733pt;}
.x5{left:112.762800pt;}
.xa{left:115.828133pt;}
.x8{left:168.431733pt;}
.x2{left:187.993867pt;}
.x7{left:386.117067pt;}
.x6{left:478.361067pt;}
.x3{left:484.761867pt;}
.x1{left:725.669333pt;}
}




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