
    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_a1b79d23d3cf37ec64d176f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_ce45f2bf55dd54e3902e2bd2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_3dd20b8a81e84a86a4c2e03d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_dfc034d0debf3f5d1d176158.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;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_0843ed8db7cef5bda690428a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128906;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_be9cddcec4d4fa65d96dc4d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.812988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-4.920000px;}
.ls15{letter-spacing:-4.140000px;}
.ls10{letter-spacing:-3.780000px;}
.ls26{letter-spacing:-3.600000px;}
.ls19{letter-spacing:-3.480000px;}
.ls4{letter-spacing:-1.914000px;}
.ls11{letter-spacing:-1.716000px;}
.lsf{letter-spacing:-1.452000px;}
.ls20{letter-spacing:-1.380000px;}
.ls16{letter-spacing:-1.320000px;}
.ls24{letter-spacing:-1.260000px;}
.ls5{letter-spacing:-1.056000px;}
.ls6{letter-spacing:-1.050000px;}
.ls3{letter-spacing:-0.990000px;}
.ls1f{letter-spacing:-0.960000px;}
.ls1{letter-spacing:-0.924000px;}
.ls1e{letter-spacing:-0.900000px;}
.ls21{letter-spacing:-0.840000px;}
.lsd{letter-spacing:-0.792000px;}
.ls1c{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.660000px;}
.ls7{letter-spacing:-0.600000px;}
.ls2{letter-spacing:-0.594000px;}
.ls13{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.528000px;}
.ls12{letter-spacing:-0.420000px;}
.lse{letter-spacing:-0.396000px;}
.lsc{letter-spacing:-0.330000px;}
.ls14{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.180000px;}
.ls18{letter-spacing:-0.120000px;}
.ls17{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.780000px;}
.ls1b{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.560000px;}
.ls1a{letter-spacing:2.220000px;}
.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;}
}
.wsa7{word-spacing:-16.680000px;}
.wsa5{word-spacing:-16.104000px;}
.wsad{word-spacing:-16.020000px;}
.ws0{word-spacing:-15.840000px;}
.ws4a{word-spacing:-15.510000px;}
.ws34{word-spacing:-15.378000px;}
.wsae{word-spacing:-15.240000px;}
.ws74{word-spacing:-15.180000px;}
.ws49{word-spacing:-15.114000px;}
.wsaf{word-spacing:-15.000000px;}
.ws19{word-spacing:-14.982000px;}
.ws1{word-spacing:-14.850000px;}
.wsa8{word-spacing:-14.460000px;}
.wsaa{word-spacing:-14.400000px;}
.ws73{word-spacing:-14.220000px;}
.ws71{word-spacing:-13.920000px;}
.ws72{word-spacing:-13.860000px;}
.wsac{word-spacing:-13.620000px;}
.wsab{word-spacing:-13.560000px;}
.wsa6{word-spacing:-10.980000px;}
.wsb0{word-spacing:-10.860000px;}
.ws70{word-spacing:-10.680000px;}
.wsa9{word-spacing:-9.540000px;}
.ws3{word-spacing:-5.292000px;}
.ws65{word-spacing:-4.158000px;}
.ws81{word-spacing:-3.960000px;}
.ws9d{word-spacing:-3.630000px;}
.wsa1{word-spacing:-3.432000px;}
.ws7e{word-spacing:-3.300000px;}
.ws97{word-spacing:-3.168000px;}
.ws11{word-spacing:-3.036000px;}
.ws24{word-spacing:-2.904000px;}
.ws59{word-spacing:-2.838000px;}
.ws5e{word-spacing:-2.640000px;}
.ws6b{word-spacing:-2.442000px;}
.ws84{word-spacing:-2.400000px;}
.ws69{word-spacing:-2.376000px;}
.ws7a{word-spacing:-2.340000px;}
.ws39{word-spacing:-2.310000px;}
.ws5d{word-spacing:-2.244000px;}
.ws6a{word-spacing:-2.178000px;}
.ws2b{word-spacing:-2.112000px;}
.ws5c{word-spacing:-2.046000px;}
.ws4f{word-spacing:-1.980000px;}
.ws8{word-spacing:-1.914000px;}
.ws8c{word-spacing:-1.848000px;}
.ws9a{word-spacing:-1.782000px;}
.ws98{word-spacing:-1.716000px;}
.wsa0{word-spacing:-1.650000px;}
.ws90{word-spacing:-1.584000px;}
.ws80{word-spacing:-1.518000px;}
.ws7c{word-spacing:-1.320000px;}
.ws86{word-spacing:-1.140000px;}
.ws64{word-spacing:-1.122000px;}
.wsb9{word-spacing:-1.080000px;}
.ws6c{word-spacing:-1.056000px;}
.ws66{word-spacing:-0.792000px;}
.ws94{word-spacing:-0.726000px;}
.ws2f{word-spacing:-0.720000px;}
.ws93{word-spacing:-0.660000px;}
.ws78{word-spacing:-0.600000px;}
.ws7b{word-spacing:-0.540000px;}
.ws13{word-spacing:-0.528000px;}
.ws42{word-spacing:-0.462000px;}
.ws3c{word-spacing:-0.330000px;}
.ws95{word-spacing:-0.264000px;}
.ws40{word-spacing:-0.198000px;}
.ws30{word-spacing:-0.132000px;}
.ws41{word-spacing:-0.066000px;}
.ws55{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.wsc6{word-spacing:0.120000px;}
.wsa2{word-spacing:0.132000px;}
.ws2e{word-spacing:0.180000px;}
.wsbb{word-spacing:0.240000px;}
.ws4e{word-spacing:0.264000px;}
.wsc7{word-spacing:0.300000px;}
.ws20{word-spacing:0.330000px;}
.ws3b{word-spacing:0.396000px;}
.ws85{word-spacing:0.420000px;}
.ws26{word-spacing:0.462000px;}
.ws8e{word-spacing:0.528000px;}
.wsc5{word-spacing:0.540000px;}
.ws35{word-spacing:0.594000px;}
.ws2d{word-spacing:0.600000px;}
.ws3e{word-spacing:0.660000px;}
.wsc4{word-spacing:0.720000px;}
.wsa{word-spacing:0.726000px;}
.ws14{word-spacing:0.792000px;}
.ws58{word-spacing:0.840000px;}
.ws29{word-spacing:0.858000px;}
.wsba{word-spacing:0.900000px;}
.ws21{word-spacing:0.924000px;}
.wse{word-spacing:0.990000px;}
.ws17{word-spacing:1.056000px;}
.ws6{word-spacing:1.122000px;}
.ws5f{word-spacing:1.188000px;}
.wsd{word-spacing:1.254000px;}
.ws32{word-spacing:1.320000px;}
.wsbc{word-spacing:1.380000px;}
.ws3a{word-spacing:1.386000px;}
.ws44{word-spacing:1.452000px;}
.ws77{word-spacing:1.500000px;}
.wsbd{word-spacing:1.560000px;}
.ws67{word-spacing:1.584000px;}
.ws1d{word-spacing:1.650000px;}
.ws62{word-spacing:1.716000px;}
.ws79{word-spacing:1.740000px;}
.ws9{word-spacing:1.782000px;}
.ws33{word-spacing:1.848000px;}
.wsc{word-spacing:1.914000px;}
.ws63{word-spacing:1.980000px;}
.ws12{word-spacing:2.046000px;}
.wsbe{word-spacing:2.100000px;}
.ws9b{word-spacing:2.112000px;}
.ws99{word-spacing:2.178000px;}
.ws50{word-spacing:2.244000px;}
.ws53{word-spacing:2.280000px;}
.ws25{word-spacing:2.310000px;}
.ws31{word-spacing:2.376000px;}
.ws15{word-spacing:2.442000px;}
.ws8b{word-spacing:2.508000px;}
.wsbf{word-spacing:2.520000px;}
.ws43{word-spacing:2.574000px;}
.wsf{word-spacing:2.640000px;}
.ws9f{word-spacing:2.838000px;}
.ws96{word-spacing:2.904000px;}
.ws2a{word-spacing:2.970000px;}
.ws9c{word-spacing:3.036000px;}
.ws57{word-spacing:3.060000px;}
.ws1f{word-spacing:3.102000px;}
.ws92{word-spacing:3.234000px;}
.ws8f{word-spacing:3.432000px;}
.ws54{word-spacing:3.480000px;}
.ws68{word-spacing:3.498000px;}
.ws5a{word-spacing:3.564000px;}
.ws56{word-spacing:3.600000px;}
.wsb{word-spacing:3.630000px;}
.ws83{word-spacing:3.696000px;}
.ws28{word-spacing:3.762000px;}
.ws6d{word-spacing:3.828000px;}
.ws4{word-spacing:3.894000px;}
.ws82{word-spacing:3.960000px;}
.ws8d{word-spacing:4.026000px;}
.ws2c{word-spacing:4.158000px;}
.ws7d{word-spacing:4.200000px;}
.wsa3{word-spacing:4.224000px;}
.ws3f{word-spacing:4.290000px;}
.ws36{word-spacing:4.356000px;}
.ws16{word-spacing:4.422000px;}
.ws7{word-spacing:4.488000px;}
.ws1a{word-spacing:4.554000px;}
.wsc0{word-spacing:4.560000px;}
.ws45{word-spacing:4.620000px;}
.ws76{word-spacing:4.686000px;}
.wsa4{word-spacing:4.884000px;}
.ws5{word-spacing:5.016000px;}
.ws8a{word-spacing:5.148000px;}
.ws5b{word-spacing:5.214000px;}
.ws51{word-spacing:5.280000px;}
.ws47{word-spacing:5.346000px;}
.ws6f{word-spacing:5.412000px;}
.ws6e{word-spacing:5.808000px;}
.wsc2{word-spacing:5.880000px;}
.wsc3{word-spacing:6.000000px;}
.ws60{word-spacing:6.006000px;}
.ws10{word-spacing:6.138000px;}
.ws1b{word-spacing:6.336000px;}
.ws48{word-spacing:6.402000px;}
.ws61{word-spacing:6.534000px;}
.ws46{word-spacing:6.732000px;}
.ws38{word-spacing:6.798000px;}
.ws9e{word-spacing:6.930000px;}
.ws23{word-spacing:7.326000px;}
.ws37{word-spacing:7.590000px;}
.ws89{word-spacing:7.656000px;}
.wsb6{word-spacing:7.680000px;}
.ws1e{word-spacing:7.722000px;}
.wsb3{word-spacing:7.740000px;}
.ws22{word-spacing:7.788000px;}
.wsb4{word-spacing:7.800000px;}
.ws75{word-spacing:7.854000px;}
.ws87{word-spacing:7.920000px;}
.ws27{word-spacing:7.986000px;}
.ws52{word-spacing:8.052000px;}
.wsb7{word-spacing:8.100000px;}
.wsb8{word-spacing:8.220000px;}
.ws4c{word-spacing:8.250000px;}
.wsb2{word-spacing:8.280000px;}
.ws1c{word-spacing:8.316000px;}
.ws4d{word-spacing:8.382000px;}
.ws3d{word-spacing:8.844000px;}
.ws4b{word-spacing:8.910000px;}
.ws88{word-spacing:9.306000px;}
.wsc1{word-spacing:9.900000px;}
.ws7f{word-spacing:10.626000px;}
.wsb1{word-spacing:10.980000px;}
.wsb5{word-spacing:19.140000px;}
.ws18{word-spacing:21.384000px;}
.ws91{word-spacing:205.680000px;}
._15{margin-left:-200.859000px;}
._13{margin-left:-113.952000px;}
._14{margin-left:-90.144000px;}
._17{margin-left:-7.774800px;}
._c{margin-left:-5.971200px;}
._4{margin-left:-4.969200px;}
._5{margin-left:-3.814800px;}
._e{margin-left:-2.693400px;}
._6{margin-left:-1.432200px;}
._3{width:1.075200px;}
._1{width:2.310000px;}
._0{width:3.399000px;}
._b{width:4.420800px;}
._a{width:5.754000px;}
._7{width:6.891000px;}
._9{width:23.349600px;}
._16{width:56.080800px;}
._12{width:76.824000px;}
._10{width:80.784000px;}
._2{width:82.236000px;}
._8{width:83.490000px;}
._f{width:86.262000px;}
._d{width:88.242000px;}
._11{width:89.430000px;}
.fc1{color:rgb(101,98,99);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:41.291400px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:46.057650px;}
.y1{bottom:50.451300px;}
.yc9{bottom:83.005950px;}
.yf6{bottom:87.571500px;}
.y7c{bottom:94.471500px;}
.yc8{bottom:102.806100px;}
.y9b{bottom:103.471500px;}
.yf5{bottom:107.371500px;}
.y4e{bottom:112.301550px;}
.y7b{bottom:114.271500px;}
.yc7{bottom:122.605950px;}
.y9a{bottom:123.271500px;}
.yf4{bottom:127.171500px;}
.y4d{bottom:130.301550px;}
.y7a{bottom:134.071500px;}
.yc6{bottom:142.405950px;}
.y99{bottom:143.071500px;}
.yf3{bottom:146.971500px;}
.y4c{bottom:148.301550px;}
.y79{bottom:153.871500px;}
.yc5{bottom:162.205950px;}
.y98{bottom:162.871500px;}
.y4b{bottom:166.301550px;}
.yf2{bottom:166.771500px;}
.y126{bottom:168.271500px;}
.y78{bottom:173.671500px;}
.yc4{bottom:182.005950px;}
.y97{bottom:182.671500px;}
.y125{bottom:186.271500px;}
.yf1{bottom:186.571500px;}
.ye1{bottom:191.671500px;}
.y77{bottom:193.471500px;}
.yc3{bottom:201.806100px;}
.y96{bottom:202.471500px;}
.y4a{bottom:204.101400px;}
.yf0{bottom:206.371500px;}
.ye0{bottom:209.671500px;}
.y76{bottom:213.271500px;}
.yc2{bottom:221.605950px;}
.y95{bottom:222.271500px;}
.y49{bottom:223.901400px;}
.y109{bottom:225.871500px;}
.yef{bottom:226.171500px;}
.ydf{bottom:227.671500px;}
.y75{bottom:233.071500px;}
.y124{bottom:240.271500px;}
.y1d{bottom:241.150950px;}
.yc1{bottom:241.405950px;}
.y94{bottom:242.071500px;}
.y48{bottom:243.701550px;}
.yde{bottom:245.671500px;}
.yee{bottom:245.971500px;}
.y74{bottom:252.871500px;}
.y123{bottom:258.271500px;}
.y1c{bottom:260.950950px;}
.yc0{bottom:261.205950px;}
.y93{bottom:261.871500px;}
.y47{bottom:263.501550px;}
.ydd{bottom:263.671500px;}
.y108{bottom:265.471500px;}
.yed{bottom:265.771500px;}
.y73{bottom:272.671500px;}
.y122{bottom:276.271500px;}
.ybf{bottom:281.005950px;}
.y92{bottom:281.671500px;}
.y46{bottom:283.301400px;}
.y107{bottom:285.271500px;}
.yec{bottom:285.571500px;}
.y72{bottom:292.471500px;}
.y121{bottom:294.271500px;}
.y1b{bottom:300.550800px;}
.ybe{bottom:300.805950px;}
.y91{bottom:301.471500px;}
.y45{bottom:303.101550px;}
.y106{bottom:305.071500px;}
.yeb{bottom:305.371500px;}
.y71{bottom:312.271500px;}
.y1a{bottom:320.350950px;}
.ybd{bottom:320.605950px;}
.y90{bottom:321.271500px;}
.y44{bottom:322.901400px;}
.y105{bottom:324.871500px;}
.yea{bottom:325.171500px;}
.y70{bottom:332.071500px;}
.y19{bottom:340.150950px;}
.ybc{bottom:340.405950px;}
.y8f{bottom:341.071500px;}
.y43{bottom:342.701550px;}
.y104{bottom:344.671500px;}
.ye9{bottom:344.971500px;}
.y120{bottom:348.271500px;}
.y6f{bottom:351.871500px;}
.y18{bottom:359.950950px;}
.ybb{bottom:360.205950px;}
.y8e{bottom:360.871500px;}
.y103{bottom:364.471500px;}
.ye8{bottom:364.771500px;}
.y11f{bottom:366.271500px;}
.y6e{bottom:371.671500px;}
.y17{bottom:379.750950px;}
.yba{bottom:380.005950px;}
.y8d{bottom:380.671500px;}
.y42{bottom:382.301400px;}
.y102{bottom:384.271500px;}
.ye7{bottom:384.571500px;}
.y6d{bottom:391.471500px;}
.y16{bottom:399.550800px;}
.yb9{bottom:399.805950px;}
.y41{bottom:400.301400px;}
.y8c{bottom:400.471500px;}
.y11e{bottom:402.271500px;}
.y101{bottom:404.071500px;}
.ye6{bottom:404.371500px;}
.y6c{bottom:411.271500px;}
.y40{bottom:418.301400px;}
.y15{bottom:419.350950px;}
.yb8{bottom:419.605950px;}
.y8b{bottom:420.271500px;}
.y100{bottom:423.871500px;}
.ye5{bottom:424.171500px;}
.y6b{bottom:431.071500px;}
.y3f{bottom:436.301400px;}
.y14{bottom:439.150950px;}
.yb7{bottom:439.405950px;}
.y8a{bottom:440.071500px;}
.yff{bottom:443.671500px;}
.ye4{bottom:443.971500px;}
.y6a{bottom:450.871500px;}
.y11d{bottom:456.271500px;}
.y13{bottom:458.950950px;}
.yb6{bottom:459.205950px;}
.y89{bottom:459.871500px;}
.yfe{bottom:463.471500px;}
.y69{bottom:470.671500px;}
.y3e{bottom:474.101550px;}
.y11c{bottom:474.271500px;}
.yb5{bottom:479.005950px;}
.y88{bottom:479.671500px;}
.yfd{bottom:483.271500px;}
.ye3{bottom:483.571500px;}
.y68{bottom:490.471500px;}
.y3d{bottom:493.901400px;}
.y12{bottom:498.550800px;}
.yb4{bottom:498.805950px;}
.y87{bottom:499.471500px;}
.yfc{bottom:503.071500px;}
.y11b{bottom:510.271500px;}
.y3c{bottom:513.701550px;}
.ye2{bottom:516.571500px;}
.yb3{bottom:518.605950px;}
.ydc{bottom:519.271500px;}
.yfb{bottom:522.871500px;}
.y11a{bottom:528.271500px;}
.y67{bottom:530.071500px;}
.y3b{bottom:533.501550px;}
.yb2{bottom:538.405950px;}
.y86{bottom:539.071500px;}
.yfa{bottom:542.671500px;}
.y66{bottom:548.071500px;}
.y3a{bottom:553.301400px;}
.y85{bottom:557.071500px;}
.y11{bottom:557.950950px;}
.yb1{bottom:558.205950px;}
.ydb{bottom:558.871500px;}
.yf9{bottom:562.471500px;}
.y119{bottom:564.271500px;}
.y65{bottom:566.071500px;}
.y39{bottom:573.101550px;}
.y84{bottom:575.071500px;}
.y10{bottom:577.750950px;}
.yb0{bottom:578.005950px;}
.yda{bottom:578.671500px;}
.yf8{bottom:582.271500px;}
.y64{bottom:584.071500px;}
.y38{bottom:592.901400px;}
.y83{bottom:593.071500px;}
.yaf{bottom:597.805950px;}
.yd9{bottom:598.471500px;}
.yf7{bottom:602.071500px;}
.y82{bottom:611.071500px;}
.y37{bottom:612.701550px;}
.yf{bottom:617.350950px;}
.yae{bottom:617.605950px;}
.yd8{bottom:618.271500px;}
.y63{bottom:621.871500px;}
.y81{bottom:629.071500px;}
.y36{bottom:632.501550px;}
.ye{bottom:637.150950px;}
.yad{bottom:637.405950px;}
.yd7{bottom:638.071500px;}
.y62{bottom:641.671500px;}
.y80{bottom:647.071500px;}
.y35{bottom:652.301400px;}
.y118{bottom:654.271500px;}
.yd{bottom:656.950950px;}
.yac{bottom:657.205950px;}
.yd6{bottom:657.871500px;}
.y61{bottom:661.471500px;}
.y7f{bottom:665.071500px;}
.y34{bottom:672.101550px;}
.y117{bottom:672.271500px;}
.yc{bottom:676.750950px;}
.yab{bottom:677.005950px;}
.yd5{bottom:677.671500px;}
.y60{bottom:681.271500px;}
.y7e{bottom:683.071500px;}
.y116{bottom:690.271500px;}
.y33{bottom:691.901400px;}
.yb{bottom:696.550800px;}
.yaa{bottom:696.805950px;}
.yd4{bottom:697.471500px;}
.y5f{bottom:701.071500px;}
.y115{bottom:708.271500px;}
.y32{bottom:711.701550px;}
.ya{bottom:716.350950px;}
.yd3{bottom:717.271500px;}
.y5e{bottom:720.871500px;}
.y114{bottom:726.271500px;}
.y31{bottom:731.501550px;}
.y9{bottom:736.150950px;}
.ya9{bottom:736.405950px;}
.y5d{bottom:740.671500px;}
.y30{bottom:751.301400px;}
.ya8{bottom:754.405950px;}
.y8{bottom:755.950950px;}
.yd2{bottom:756.871500px;}
.y5c{bottom:760.471500px;}
.y113{bottom:762.271500px;}
.y2f{bottom:771.101400px;}
.ya7{bottom:772.405950px;}
.yd1{bottom:774.871500px;}
.y7{bottom:775.750800px;}
.y5b{bottom:780.271500px;}
.ya6{bottom:790.405950px;}
.y2e{bottom:790.901400px;}
.yd0{bottom:792.871500px;}
.y112{bottom:798.271500px;}
.y5a{bottom:800.071500px;}
.y2d{bottom:810.701400px;}
.ycf{bottom:810.871500px;}
.y6{bottom:815.350950px;}
.y111{bottom:816.271500px;}
.y59{bottom:819.871500px;}
.ya5{bottom:828.205950px;}
.yce{bottom:828.871500px;}
.y2c{bottom:830.501400px;}
.y110{bottom:834.271500px;}
.y58{bottom:839.671500px;}
.ycd{bottom:846.871500px;}
.ya4{bottom:848.005950px;}
.y2b{bottom:850.301400px;}
.y57{bottom:859.471500px;}
.ycc{bottom:864.871500px;}
.ya3{bottom:867.806100px;}
.y2a{bottom:870.101400px;}
.y10f{bottom:870.271500px;}
.y5{bottom:870.909150px;}
.y56{bottom:879.271500px;}
.ycb{bottom:882.871500px;}
.ya2{bottom:887.605950px;}
.y10e{bottom:888.271500px;}
.y29{bottom:889.901400px;}
.y4{bottom:890.709300px;}
.y55{bottom:899.071500px;}
.yca{bottom:900.871500px;}
.y10d{bottom:906.271500px;}
.y28{bottom:909.701400px;}
.y54{bottom:918.871500px;}
.y10c{bottom:924.271500px;}
.ya1{bottom:927.205950px;}
.y27{bottom:929.501400px;}
.y53{bottom:938.671500px;}
.y10b{bottom:942.271500px;}
.y1f{bottom:943.858950px;}
.ya0{bottom:945.205950px;}
.y26{bottom:949.301400px;}
.y52{bottom:958.471500px;}
.y10a{bottom:960.271500px;}
.y9f{bottom:963.205950px;}
.y25{bottom:969.101400px;}
.y51{bottom:978.271500px;}
.y9e{bottom:981.205950px;}
.y24{bottom:988.901400px;}
.y50{bottom:998.071500px;}
.y9d{bottom:999.205950px;}
.y23{bottom:1008.701400px;}
.y3{bottom:1022.626950px;}
.y2{bottom:1060.427100px;}
.y7d{bottom:1100.211750px;}
.y9c{bottom:1101.564150px;}
.y4f{bottom:1114.320000px;}
.y22{bottom:1114.578000px;}
.y1e{bottom:1114.730700px;}
.y21{bottom:1128.609450px;}
.h6{height:31.210492px;}
.h7{height:31.746094px;}
.h2{height:43.781250px;}
.h4{height:49.918945px;}
.h8{height:54.726562px;}
.h5{height:60.199219px;}
.h9{height:65.671875px;}
.h3{height:114.925781px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:97.720350px;}
.x6{left:98.974500px;}
.x2{left:263.622000px;}
.x5{left:314.645700px;}
.x8{left:316.722000px;}
.x7{left:824.845050px;}
.x4{left:826.602750px;}
.x1{left:827.727750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-4.373333pt;}
.ls15{letter-spacing:-3.680000pt;}
.ls10{letter-spacing:-3.360000pt;}
.ls26{letter-spacing:-3.200000pt;}
.ls19{letter-spacing:-3.093333pt;}
.ls4{letter-spacing:-1.701333pt;}
.ls11{letter-spacing:-1.525333pt;}
.lsf{letter-spacing:-1.290667pt;}
.ls20{letter-spacing:-1.226667pt;}
.ls16{letter-spacing:-1.173333pt;}
.ls24{letter-spacing:-1.120000pt;}
.ls5{letter-spacing:-0.938667pt;}
.ls6{letter-spacing:-0.933333pt;}
.ls3{letter-spacing:-0.880000pt;}
.ls1f{letter-spacing:-0.853333pt;}
.ls1{letter-spacing:-0.821333pt;}
.ls1e{letter-spacing:-0.800000pt;}
.ls21{letter-spacing:-0.746667pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.586667pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls2{letter-spacing:-0.528000pt;}
.ls13{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.469333pt;}
.ls12{letter-spacing:-0.373333pt;}
.lse{letter-spacing:-0.352000pt;}
.lsc{letter-spacing:-0.293333pt;}
.ls14{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls17{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.693333pt;}
.ls1b{letter-spacing:0.960000pt;}
.ls22{letter-spacing:1.386667pt;}
.ls1a{letter-spacing:1.973333pt;}
.wsa7{word-spacing:-14.826667pt;}
.wsa5{word-spacing:-14.314667pt;}
.wsad{word-spacing:-14.240000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws4a{word-spacing:-13.786667pt;}
.ws34{word-spacing:-13.669333pt;}
.wsae{word-spacing:-13.546667pt;}
.ws74{word-spacing:-13.493333pt;}
.ws49{word-spacing:-13.434667pt;}
.wsaf{word-spacing:-13.333333pt;}
.ws19{word-spacing:-13.317333pt;}
.ws1{word-spacing:-13.200000pt;}
.wsa8{word-spacing:-12.853333pt;}
.wsaa{word-spacing:-12.800000pt;}
.ws73{word-spacing:-12.640000pt;}
.ws71{word-spacing:-12.373333pt;}
.ws72{word-spacing:-12.320000pt;}
.wsac{word-spacing:-12.106667pt;}
.wsab{word-spacing:-12.053333pt;}
.wsa6{word-spacing:-9.760000pt;}
.wsb0{word-spacing:-9.653333pt;}
.ws70{word-spacing:-9.493333pt;}
.wsa9{word-spacing:-8.480000pt;}
.ws3{word-spacing:-4.704000pt;}
.ws65{word-spacing:-3.696000pt;}
.ws81{word-spacing:-3.520000pt;}
.ws9d{word-spacing:-3.226667pt;}
.wsa1{word-spacing:-3.050667pt;}
.ws7e{word-spacing:-2.933333pt;}
.ws97{word-spacing:-2.816000pt;}
.ws11{word-spacing:-2.698667pt;}
.ws24{word-spacing:-2.581333pt;}
.ws59{word-spacing:-2.522667pt;}
.ws5e{word-spacing:-2.346667pt;}
.ws6b{word-spacing:-2.170667pt;}
.ws84{word-spacing:-2.133333pt;}
.ws69{word-spacing:-2.112000pt;}
.ws7a{word-spacing:-2.080000pt;}
.ws39{word-spacing:-2.053333pt;}
.ws5d{word-spacing:-1.994667pt;}
.ws6a{word-spacing:-1.936000pt;}
.ws2b{word-spacing:-1.877333pt;}
.ws5c{word-spacing:-1.818667pt;}
.ws4f{word-spacing:-1.760000pt;}
.ws8{word-spacing:-1.701333pt;}
.ws8c{word-spacing:-1.642667pt;}
.ws9a{word-spacing:-1.584000pt;}
.ws98{word-spacing:-1.525333pt;}
.wsa0{word-spacing:-1.466667pt;}
.ws90{word-spacing:-1.408000pt;}
.ws80{word-spacing:-1.349333pt;}
.ws7c{word-spacing:-1.173333pt;}
.ws86{word-spacing:-1.013333pt;}
.ws64{word-spacing:-0.997333pt;}
.wsb9{word-spacing:-0.960000pt;}
.ws6c{word-spacing:-0.938667pt;}
.ws66{word-spacing:-0.704000pt;}
.ws94{word-spacing:-0.645333pt;}
.ws2f{word-spacing:-0.640000pt;}
.ws93{word-spacing:-0.586667pt;}
.ws78{word-spacing:-0.533333pt;}
.ws7b{word-spacing:-0.480000pt;}
.ws13{word-spacing:-0.469333pt;}
.ws42{word-spacing:-0.410667pt;}
.ws3c{word-spacing:-0.293333pt;}
.ws95{word-spacing:-0.234667pt;}
.ws40{word-spacing:-0.176000pt;}
.ws30{word-spacing:-0.117333pt;}
.ws41{word-spacing:-0.058667pt;}
.ws55{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.wsc6{word-spacing:0.106667pt;}
.wsa2{word-spacing:0.117333pt;}
.ws2e{word-spacing:0.160000pt;}
.wsbb{word-spacing:0.213333pt;}
.ws4e{word-spacing:0.234667pt;}
.wsc7{word-spacing:0.266667pt;}
.ws20{word-spacing:0.293333pt;}
.ws3b{word-spacing:0.352000pt;}
.ws85{word-spacing:0.373333pt;}
.ws26{word-spacing:0.410667pt;}
.ws8e{word-spacing:0.469333pt;}
.wsc5{word-spacing:0.480000pt;}
.ws35{word-spacing:0.528000pt;}
.ws2d{word-spacing:0.533333pt;}
.ws3e{word-spacing:0.586667pt;}
.wsc4{word-spacing:0.640000pt;}
.wsa{word-spacing:0.645333pt;}
.ws14{word-spacing:0.704000pt;}
.ws58{word-spacing:0.746667pt;}
.ws29{word-spacing:0.762667pt;}
.wsba{word-spacing:0.800000pt;}
.ws21{word-spacing:0.821333pt;}
.wse{word-spacing:0.880000pt;}
.ws17{word-spacing:0.938667pt;}
.ws6{word-spacing:0.997333pt;}
.ws5f{word-spacing:1.056000pt;}
.wsd{word-spacing:1.114667pt;}
.ws32{word-spacing:1.173333pt;}
.wsbc{word-spacing:1.226667pt;}
.ws3a{word-spacing:1.232000pt;}
.ws44{word-spacing:1.290667pt;}
.ws77{word-spacing:1.333333pt;}
.wsbd{word-spacing:1.386667pt;}
.ws67{word-spacing:1.408000pt;}
.ws1d{word-spacing:1.466667pt;}
.ws62{word-spacing:1.525333pt;}
.ws79{word-spacing:1.546667pt;}
.ws9{word-spacing:1.584000pt;}
.ws33{word-spacing:1.642667pt;}
.wsc{word-spacing:1.701333pt;}
.ws63{word-spacing:1.760000pt;}
.ws12{word-spacing:1.818667pt;}
.wsbe{word-spacing:1.866667pt;}
.ws9b{word-spacing:1.877333pt;}
.ws99{word-spacing:1.936000pt;}
.ws50{word-spacing:1.994667pt;}
.ws53{word-spacing:2.026667pt;}
.ws25{word-spacing:2.053333pt;}
.ws31{word-spacing:2.112000pt;}
.ws15{word-spacing:2.170667pt;}
.ws8b{word-spacing:2.229333pt;}
.wsbf{word-spacing:2.240000pt;}
.ws43{word-spacing:2.288000pt;}
.wsf{word-spacing:2.346667pt;}
.ws9f{word-spacing:2.522667pt;}
.ws96{word-spacing:2.581333pt;}
.ws2a{word-spacing:2.640000pt;}
.ws9c{word-spacing:2.698667pt;}
.ws57{word-spacing:2.720000pt;}
.ws1f{word-spacing:2.757333pt;}
.ws92{word-spacing:2.874667pt;}
.ws8f{word-spacing:3.050667pt;}
.ws54{word-spacing:3.093333pt;}
.ws68{word-spacing:3.109333pt;}
.ws5a{word-spacing:3.168000pt;}
.ws56{word-spacing:3.200000pt;}
.wsb{word-spacing:3.226667pt;}
.ws83{word-spacing:3.285333pt;}
.ws28{word-spacing:3.344000pt;}
.ws6d{word-spacing:3.402667pt;}
.ws4{word-spacing:3.461333pt;}
.ws82{word-spacing:3.520000pt;}
.ws8d{word-spacing:3.578667pt;}
.ws2c{word-spacing:3.696000pt;}
.ws7d{word-spacing:3.733333pt;}
.wsa3{word-spacing:3.754667pt;}
.ws3f{word-spacing:3.813333pt;}
.ws36{word-spacing:3.872000pt;}
.ws16{word-spacing:3.930667pt;}
.ws7{word-spacing:3.989333pt;}
.ws1a{word-spacing:4.048000pt;}
.wsc0{word-spacing:4.053333pt;}
.ws45{word-spacing:4.106667pt;}
.ws76{word-spacing:4.165333pt;}
.wsa4{word-spacing:4.341333pt;}
.ws5{word-spacing:4.458667pt;}
.ws8a{word-spacing:4.576000pt;}
.ws5b{word-spacing:4.634667pt;}
.ws51{word-spacing:4.693333pt;}
.ws47{word-spacing:4.752000pt;}
.ws6f{word-spacing:4.810667pt;}
.ws6e{word-spacing:5.162667pt;}
.wsc2{word-spacing:5.226667pt;}
.wsc3{word-spacing:5.333333pt;}
.ws60{word-spacing:5.338667pt;}
.ws10{word-spacing:5.456000pt;}
.ws1b{word-spacing:5.632000pt;}
.ws48{word-spacing:5.690667pt;}
.ws61{word-spacing:5.808000pt;}
.ws46{word-spacing:5.984000pt;}
.ws38{word-spacing:6.042667pt;}
.ws9e{word-spacing:6.160000pt;}
.ws23{word-spacing:6.512000pt;}
.ws37{word-spacing:6.746667pt;}
.ws89{word-spacing:6.805333pt;}
.wsb6{word-spacing:6.826667pt;}
.ws1e{word-spacing:6.864000pt;}
.wsb3{word-spacing:6.880000pt;}
.ws22{word-spacing:6.922667pt;}
.wsb4{word-spacing:6.933333pt;}
.ws75{word-spacing:6.981333pt;}
.ws87{word-spacing:7.040000pt;}
.ws27{word-spacing:7.098667pt;}
.ws52{word-spacing:7.157333pt;}
.wsb7{word-spacing:7.200000pt;}
.wsb8{word-spacing:7.306667pt;}
.ws4c{word-spacing:7.333333pt;}
.wsb2{word-spacing:7.360000pt;}
.ws1c{word-spacing:7.392000pt;}
.ws4d{word-spacing:7.450667pt;}
.ws3d{word-spacing:7.861333pt;}
.ws4b{word-spacing:7.920000pt;}
.ws88{word-spacing:8.272000pt;}
.wsc1{word-spacing:8.800000pt;}
.ws7f{word-spacing:9.445333pt;}
.wsb1{word-spacing:9.760000pt;}
.wsb5{word-spacing:17.013333pt;}
.ws18{word-spacing:19.008000pt;}
.ws91{word-spacing:182.826667pt;}
._15{margin-left:-178.541333pt;}
._13{margin-left:-101.290667pt;}
._14{margin-left:-80.128000pt;}
._17{margin-left:-6.910933pt;}
._c{margin-left:-5.307733pt;}
._4{margin-left:-4.417067pt;}
._5{margin-left:-3.390933pt;}
._e{margin-left:-2.394133pt;}
._6{margin-left:-1.273067pt;}
._3{width:0.955733pt;}
._1{width:2.053333pt;}
._0{width:3.021333pt;}
._b{width:3.929600pt;}
._a{width:5.114667pt;}
._7{width:6.125333pt;}
._9{width:20.755200pt;}
._16{width:49.849600pt;}
._12{width:68.288000pt;}
._10{width:71.808000pt;}
._2{width:73.098667pt;}
._8{width:74.213333pt;}
._f{width:76.677333pt;}
._d{width:78.437333pt;}
._11{width:79.493333pt;}
.fs3{font-size:36.703467pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:40.940133pt;}
.y1{bottom:44.845600pt;}
.yc9{bottom:73.783067pt;}
.yf6{bottom:77.841333pt;}
.y7c{bottom:83.974667pt;}
.yc8{bottom:91.383200pt;}
.y9b{bottom:91.974667pt;}
.yf5{bottom:95.441333pt;}
.y4e{bottom:99.823600pt;}
.y7b{bottom:101.574667pt;}
.yc7{bottom:108.983067pt;}
.y9a{bottom:109.574667pt;}
.yf4{bottom:113.041333pt;}
.y4d{bottom:115.823600pt;}
.y7a{bottom:119.174667pt;}
.yc6{bottom:126.583067pt;}
.y99{bottom:127.174667pt;}
.yf3{bottom:130.641333pt;}
.y4c{bottom:131.823600pt;}
.y79{bottom:136.774667pt;}
.yc5{bottom:144.183067pt;}
.y98{bottom:144.774667pt;}
.y4b{bottom:147.823600pt;}
.yf2{bottom:148.241333pt;}
.y126{bottom:149.574667pt;}
.y78{bottom:154.374667pt;}
.yc4{bottom:161.783067pt;}
.y97{bottom:162.374667pt;}
.y125{bottom:165.574667pt;}
.yf1{bottom:165.841333pt;}
.ye1{bottom:170.374667pt;}
.y77{bottom:171.974667pt;}
.yc3{bottom:179.383200pt;}
.y96{bottom:179.974667pt;}
.y4a{bottom:181.423467pt;}
.yf0{bottom:183.441333pt;}
.ye0{bottom:186.374667pt;}
.y76{bottom:189.574667pt;}
.yc2{bottom:196.983067pt;}
.y95{bottom:197.574667pt;}
.y49{bottom:199.023467pt;}
.y109{bottom:200.774667pt;}
.yef{bottom:201.041333pt;}
.ydf{bottom:202.374667pt;}
.y75{bottom:207.174667pt;}
.y124{bottom:213.574667pt;}
.y1d{bottom:214.356400pt;}
.yc1{bottom:214.583067pt;}
.y94{bottom:215.174667pt;}
.y48{bottom:216.623600pt;}
.yde{bottom:218.374667pt;}
.yee{bottom:218.641333pt;}
.y74{bottom:224.774667pt;}
.y123{bottom:229.574667pt;}
.y1c{bottom:231.956400pt;}
.yc0{bottom:232.183067pt;}
.y93{bottom:232.774667pt;}
.y47{bottom:234.223600pt;}
.ydd{bottom:234.374667pt;}
.y108{bottom:235.974667pt;}
.yed{bottom:236.241333pt;}
.y73{bottom:242.374667pt;}
.y122{bottom:245.574667pt;}
.ybf{bottom:249.783067pt;}
.y92{bottom:250.374667pt;}
.y46{bottom:251.823467pt;}
.y107{bottom:253.574667pt;}
.yec{bottom:253.841333pt;}
.y72{bottom:259.974667pt;}
.y121{bottom:261.574667pt;}
.y1b{bottom:267.156267pt;}
.ybe{bottom:267.383067pt;}
.y91{bottom:267.974667pt;}
.y45{bottom:269.423600pt;}
.y106{bottom:271.174667pt;}
.yeb{bottom:271.441333pt;}
.y71{bottom:277.574667pt;}
.y1a{bottom:284.756400pt;}
.ybd{bottom:284.983067pt;}
.y90{bottom:285.574667pt;}
.y44{bottom:287.023467pt;}
.y105{bottom:288.774667pt;}
.yea{bottom:289.041333pt;}
.y70{bottom:295.174667pt;}
.y19{bottom:302.356400pt;}
.ybc{bottom:302.583067pt;}
.y8f{bottom:303.174667pt;}
.y43{bottom:304.623600pt;}
.y104{bottom:306.374667pt;}
.ye9{bottom:306.641333pt;}
.y120{bottom:309.574667pt;}
.y6f{bottom:312.774667pt;}
.y18{bottom:319.956400pt;}
.ybb{bottom:320.183067pt;}
.y8e{bottom:320.774667pt;}
.y103{bottom:323.974667pt;}
.ye8{bottom:324.241333pt;}
.y11f{bottom:325.574667pt;}
.y6e{bottom:330.374667pt;}
.y17{bottom:337.556400pt;}
.yba{bottom:337.783067pt;}
.y8d{bottom:338.374667pt;}
.y42{bottom:339.823467pt;}
.y102{bottom:341.574667pt;}
.ye7{bottom:341.841333pt;}
.y6d{bottom:347.974667pt;}
.y16{bottom:355.156267pt;}
.yb9{bottom:355.383067pt;}
.y41{bottom:355.823467pt;}
.y8c{bottom:355.974667pt;}
.y11e{bottom:357.574667pt;}
.y101{bottom:359.174667pt;}
.ye6{bottom:359.441333pt;}
.y6c{bottom:365.574667pt;}
.y40{bottom:371.823467pt;}
.y15{bottom:372.756400pt;}
.yb8{bottom:372.983067pt;}
.y8b{bottom:373.574667pt;}
.y100{bottom:376.774667pt;}
.ye5{bottom:377.041333pt;}
.y6b{bottom:383.174667pt;}
.y3f{bottom:387.823467pt;}
.y14{bottom:390.356400pt;}
.yb7{bottom:390.583067pt;}
.y8a{bottom:391.174667pt;}
.yff{bottom:394.374667pt;}
.ye4{bottom:394.641333pt;}
.y6a{bottom:400.774667pt;}
.y11d{bottom:405.574667pt;}
.y13{bottom:407.956400pt;}
.yb6{bottom:408.183067pt;}
.y89{bottom:408.774667pt;}
.yfe{bottom:411.974667pt;}
.y69{bottom:418.374667pt;}
.y3e{bottom:421.423600pt;}
.y11c{bottom:421.574667pt;}
.yb5{bottom:425.783067pt;}
.y88{bottom:426.374667pt;}
.yfd{bottom:429.574667pt;}
.ye3{bottom:429.841333pt;}
.y68{bottom:435.974667pt;}
.y3d{bottom:439.023467pt;}
.y12{bottom:443.156267pt;}
.yb4{bottom:443.383067pt;}
.y87{bottom:443.974667pt;}
.yfc{bottom:447.174667pt;}
.y11b{bottom:453.574667pt;}
.y3c{bottom:456.623600pt;}
.ye2{bottom:459.174667pt;}
.yb3{bottom:460.983067pt;}
.ydc{bottom:461.574667pt;}
.yfb{bottom:464.774667pt;}
.y11a{bottom:469.574667pt;}
.y67{bottom:471.174667pt;}
.y3b{bottom:474.223600pt;}
.yb2{bottom:478.583067pt;}
.y86{bottom:479.174667pt;}
.yfa{bottom:482.374667pt;}
.y66{bottom:487.174667pt;}
.y3a{bottom:491.823467pt;}
.y85{bottom:495.174667pt;}
.y11{bottom:495.956400pt;}
.yb1{bottom:496.183067pt;}
.ydb{bottom:496.774667pt;}
.yf9{bottom:499.974667pt;}
.y119{bottom:501.574667pt;}
.y65{bottom:503.174667pt;}
.y39{bottom:509.423600pt;}
.y84{bottom:511.174667pt;}
.y10{bottom:513.556400pt;}
.yb0{bottom:513.783067pt;}
.yda{bottom:514.374667pt;}
.yf8{bottom:517.574667pt;}
.y64{bottom:519.174667pt;}
.y38{bottom:527.023467pt;}
.y83{bottom:527.174667pt;}
.yaf{bottom:531.383067pt;}
.yd9{bottom:531.974667pt;}
.yf7{bottom:535.174667pt;}
.y82{bottom:543.174667pt;}
.y37{bottom:544.623600pt;}
.yf{bottom:548.756400pt;}
.yae{bottom:548.983067pt;}
.yd8{bottom:549.574667pt;}
.y63{bottom:552.774667pt;}
.y81{bottom:559.174667pt;}
.y36{bottom:562.223600pt;}
.ye{bottom:566.356400pt;}
.yad{bottom:566.583067pt;}
.yd7{bottom:567.174667pt;}
.y62{bottom:570.374667pt;}
.y80{bottom:575.174667pt;}
.y35{bottom:579.823467pt;}
.y118{bottom:581.574667pt;}
.yd{bottom:583.956400pt;}
.yac{bottom:584.183067pt;}
.yd6{bottom:584.774667pt;}
.y61{bottom:587.974667pt;}
.y7f{bottom:591.174667pt;}
.y34{bottom:597.423600pt;}
.y117{bottom:597.574667pt;}
.yc{bottom:601.556400pt;}
.yab{bottom:601.783067pt;}
.yd5{bottom:602.374667pt;}
.y60{bottom:605.574667pt;}
.y7e{bottom:607.174667pt;}
.y116{bottom:613.574667pt;}
.y33{bottom:615.023467pt;}
.yb{bottom:619.156267pt;}
.yaa{bottom:619.383067pt;}
.yd4{bottom:619.974667pt;}
.y5f{bottom:623.174667pt;}
.y115{bottom:629.574667pt;}
.y32{bottom:632.623600pt;}
.ya{bottom:636.756400pt;}
.yd3{bottom:637.574667pt;}
.y5e{bottom:640.774667pt;}
.y114{bottom:645.574667pt;}
.y31{bottom:650.223600pt;}
.y9{bottom:654.356400pt;}
.ya9{bottom:654.583067pt;}
.y5d{bottom:658.374667pt;}
.y30{bottom:667.823467pt;}
.ya8{bottom:670.583067pt;}
.y8{bottom:671.956400pt;}
.yd2{bottom:672.774667pt;}
.y5c{bottom:675.974667pt;}
.y113{bottom:677.574667pt;}
.y2f{bottom:685.423467pt;}
.ya7{bottom:686.583067pt;}
.yd1{bottom:688.774667pt;}
.y7{bottom:689.556267pt;}
.y5b{bottom:693.574667pt;}
.ya6{bottom:702.583067pt;}
.y2e{bottom:703.023467pt;}
.yd0{bottom:704.774667pt;}
.y112{bottom:709.574667pt;}
.y5a{bottom:711.174667pt;}
.y2d{bottom:720.623467pt;}
.ycf{bottom:720.774667pt;}
.y6{bottom:724.756400pt;}
.y111{bottom:725.574667pt;}
.y59{bottom:728.774667pt;}
.ya5{bottom:736.183067pt;}
.yce{bottom:736.774667pt;}
.y2c{bottom:738.223467pt;}
.y110{bottom:741.574667pt;}
.y58{bottom:746.374667pt;}
.ycd{bottom:752.774667pt;}
.ya4{bottom:753.783067pt;}
.y2b{bottom:755.823467pt;}
.y57{bottom:763.974667pt;}
.ycc{bottom:768.774667pt;}
.ya3{bottom:771.383200pt;}
.y2a{bottom:773.423467pt;}
.y10f{bottom:773.574667pt;}
.y5{bottom:774.141467pt;}
.y56{bottom:781.574667pt;}
.ycb{bottom:784.774667pt;}
.ya2{bottom:788.983067pt;}
.y10e{bottom:789.574667pt;}
.y29{bottom:791.023467pt;}
.y4{bottom:791.741600pt;}
.y55{bottom:799.174667pt;}
.yca{bottom:800.774667pt;}
.y10d{bottom:805.574667pt;}
.y28{bottom:808.623467pt;}
.y54{bottom:816.774667pt;}
.y10c{bottom:821.574667pt;}
.ya1{bottom:824.183067pt;}
.y27{bottom:826.223467pt;}
.y53{bottom:834.374667pt;}
.y10b{bottom:837.574667pt;}
.y1f{bottom:838.985733pt;}
.ya0{bottom:840.183067pt;}
.y26{bottom:843.823467pt;}
.y52{bottom:851.974667pt;}
.y10a{bottom:853.574667pt;}
.y9f{bottom:856.183067pt;}
.y25{bottom:861.423467pt;}
.y51{bottom:869.574667pt;}
.y9e{bottom:872.183067pt;}
.y24{bottom:879.023467pt;}
.y50{bottom:887.174667pt;}
.y9d{bottom:888.183067pt;}
.y23{bottom:896.623467pt;}
.y3{bottom:909.001733pt;}
.y2{bottom:942.601867pt;}
.y7d{bottom:977.966000pt;}
.y9c{bottom:979.168133pt;}
.y4f{bottom:990.506667pt;}
.y22{bottom:990.736000pt;}
.y1e{bottom:990.871733pt;}
.y21{bottom:1003.208400pt;}
.h6{height:27.742659pt;}
.h7{height:28.218750pt;}
.h2{height:38.916667pt;}
.h4{height:44.372396pt;}
.h8{height:48.645833pt;}
.h5{height:53.510417pt;}
.h9{height:58.375000pt;}
.h3{height:102.156250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:86.862533pt;}
.x6{left:87.977333pt;}
.x2{left:234.330667pt;}
.x5{left:279.685067pt;}
.x8{left:281.530667pt;}
.x7{left:733.195600pt;}
.x4{left:734.758000pt;}
.x1{left:735.758000pt;}
}




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