
    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_90f9fd9231d6737657b3637d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6a06dc176d9f8447eac7e9b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.944000;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_788f79325db2aec45f857038.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.991000;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_11c9de49ecc96b41f0be2f00.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.980000;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_20469c4f1dd916eaf8a482d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.951000;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_9b05468c543d448ffbccc4d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944000;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_9b05468c543d448ffbccc4d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944000;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;}
.v1{vertical-align:23.976000px;}
.ls43{letter-spacing:-7.068000px;}
.lsc{letter-spacing:-5.208000px;}
.ls35{letter-spacing:-5.040000px;}
.ls2c{letter-spacing:-4.650000px;}
.ls18{letter-spacing:-4.092000px;}
.ls40{letter-spacing:-3.534000px;}
.ls44{letter-spacing:-3.510000px;}
.ls1{letter-spacing:-3.420000px;}
.ls3a{letter-spacing:-3.402000px;}
.lsd{letter-spacing:-3.384000px;}
.ls22{letter-spacing:-3.162000px;}
.ls8{letter-spacing:-2.976000px;}
.ls23{letter-spacing:-2.970000px;}
.ls6{letter-spacing:-2.604000px;}
.ls3c{letter-spacing:-2.583000px;}
.ls31{letter-spacing:-2.418000px;}
.ls3{letter-spacing:-2.250000px;}
.ls47{letter-spacing:-1.980000px;}
.ls39{letter-spacing:-1.953000px;}
.ls27{letter-spacing:-1.890000px;}
.ls4f{letter-spacing:-1.800000px;}
.ls4{letter-spacing:-1.650000px;}
.ls33{letter-spacing:-1.575000px;}
.ls51{letter-spacing:-1.368000px;}
.ls24{letter-spacing:-1.170000px;}
.ls2{letter-spacing:-1.140000px;}
.ls4d{letter-spacing:-1.080000px;}
.ls37{letter-spacing:-1.071000px;}
.ls1c{letter-spacing:-0.930000px;}
.ls5{letter-spacing:-0.900000px;}
.ls3b{letter-spacing:-0.882000px;}
.ls4c{letter-spacing:-0.864000px;}
.ls26{letter-spacing:-0.810000px;}
.ls2f{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.648000px;}
.ls4e{letter-spacing:-0.576000px;}
.ls19{letter-spacing:-0.540000px;}
.ls3d{letter-spacing:-0.504000px;}
.ls46{letter-spacing:-0.450000px;}
.ls10{letter-spacing:-0.432000px;}
.ls28{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.ls2d{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.ls41{letter-spacing:-0.090000px;}
.ls30{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.000216px;}
.ls32{letter-spacing:0.063000px;}
.ls9{letter-spacing:0.072000px;}
.ls2e{letter-spacing:0.090000px;}
.ls1f{letter-spacing:0.126000px;}
.ls4a{letter-spacing:0.144000px;}
.ls4b{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.270000px;}
.ls3f{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.315000px;}
.ls11{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.441000px;}
.ls56{letter-spacing:0.648000px;}
.ls2a{letter-spacing:0.702000px;}
.ls50{letter-spacing:0.720000px;}
.ls42{letter-spacing:0.792000px;}
.ls36{letter-spacing:0.882000px;}
.ls48{letter-spacing:0.936000px;}
.ls38{letter-spacing:0.945000px;}
.ls49{letter-spacing:1.008000px;}
.ls12{letter-spacing:1.080000px;}
.ls14{letter-spacing:1.152000px;}
.ls13{letter-spacing:1.224000px;}
.ls16{letter-spacing:1.296000px;}
.ls34{letter-spacing:1.386000px;}
.ls45{letter-spacing:1.440000px;}
.ls53{letter-spacing:1.512000px;}
.ls57{letter-spacing:1.728000px;}
.ls55{letter-spacing:1.800000px;}
.ls52{letter-spacing:2.160000px;}
.ls54{letter-spacing:3.096000px;}
.ls20{letter-spacing:86.544000px;}
.ls25{letter-spacing:86.904000px;}
.ls2b{letter-spacing:88.488000px;}
.ls1a{letter-spacing:91.584000px;}
.ls21{letter-spacing:92.880000px;}
.ls1b{letter-spacing:92.952000px;}
.ls17{letter-spacing:99.720000px;}
.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;}
}
.ws9{word-spacing:-39.804000px;}
.wsc{word-spacing:-39.432000px;}
.ws54{word-spacing:-38.874000px;}
.ws30{word-spacing:-37.758000px;}
.ws14{word-spacing:-37.200000px;}
.ws55{word-spacing:-20.520000px;}
.ws57{word-spacing:-20.430000px;}
.ws59{word-spacing:-20.250000px;}
.ws35{word-spacing:-19.980000px;}
.ws29{word-spacing:-19.710000px;}
.ws1{word-spacing:-19.620000px;}
.ws7c{word-spacing:-19.512000px;}
.ws25{word-spacing:-19.350000px;}
.ws78{word-spacing:-18.576000px;}
.ws62{word-spacing:-18.540000px;}
.ws82{word-spacing:-18.216000px;}
.ws84{word-spacing:-18.144000px;}
.ws79{word-spacing:-17.928000px;}
.ws6e{word-spacing:-17.856000px;}
.ws7b{word-spacing:-17.640000px;}
.ws80{word-spacing:-17.352000px;}
.ws81{word-spacing:-17.208000px;}
.ws83{word-spacing:-17.064000px;}
.ws6c{word-spacing:-16.848000px;}
.ws6a{word-spacing:-16.776000px;}
.ws70{word-spacing:-16.704000px;}
.ws6b{word-spacing:-16.632000px;}
.ws69{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.488000px;}
.ws7{word-spacing:-16.416000px;}
.ws77{word-spacing:-16.200000px;}
.wse{word-spacing:-15.768000px;}
.ws68{word-spacing:-15.696000px;}
.ws7a{word-spacing:-15.624000px;}
.ws6d{word-spacing:-15.552000px;}
.ws6f{word-spacing:-14.616000px;}
.ws41{word-spacing:-12.474000px;}
.ws44{word-spacing:-10.962000px;}
.ws3{word-spacing:-10.488000px;}
.wsa{word-spacing:-9.570528px;}
.ws31{word-spacing:-8.556000px;}
.ws2{word-spacing:-8.208000px;}
.ws45{word-spacing:-7.068000px;}
.ws27{word-spacing:-6.882000px;}
.ws26{word-spacing:-6.324000px;}
.ws5{word-spacing:-6.000000px;}
.ws37{word-spacing:-5.670000px;}
.ws6{word-spacing:-5.580000px;}
.ws65{word-spacing:-5.490000px;}
.ws4{word-spacing:-5.400000px;}
.ws20{word-spacing:-5.394000px;}
.ws5c{word-spacing:-5.310000px;}
.ws64{word-spacing:-5.130000px;}
.ws21{word-spacing:-5.040000px;}
.ws32{word-spacing:-4.770000px;}
.ws63{word-spacing:-4.680000px;}
.ws4e{word-spacing:-3.096000px;}
.ws2c{word-spacing:-3.024000px;}
.ws2f{word-spacing:-2.880000px;}
.ws33{word-spacing:-2.808000px;}
.ws5a{word-spacing:-2.736000px;}
.ws2a{word-spacing:-2.664000px;}
.ws46{word-spacing:-2.592000px;}
.ws11{word-spacing:-2.520000px;}
.ws8{word-spacing:-2.448000px;}
.ws5f{word-spacing:-2.418000px;}
.ws74{word-spacing:-2.376000px;}
.ws47{word-spacing:-2.304000px;}
.wsb{word-spacing:-2.232000px;}
.ws4c{word-spacing:-2.142000px;}
.ws75{word-spacing:-2.088000px;}
.ws73{word-spacing:-1.800000px;}
.ws1e{word-spacing:-1.296000px;}
.ws1b{word-spacing:-1.224000px;}
.ws1c{word-spacing:-1.152000px;}
.ws1a{word-spacing:-1.080000px;}
.ws4b{word-spacing:-0.945000px;}
.ws4a{word-spacing:-0.882000px;}
.ws16{word-spacing:-0.432000px;}
.ws19{word-spacing:-0.360000px;}
.ws2e{word-spacing:-0.315000px;}
.ws23{word-spacing:-0.126000px;}
.ws48{word-spacing:-0.063000px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:0.144000px;}
.ws24{word-spacing:0.189000px;}
.ws1f{word-spacing:0.216000px;}
.ws36{word-spacing:0.270000px;}
.ws17{word-spacing:0.288000px;}
.ws2d{word-spacing:0.360000px;}
.ws18{word-spacing:0.432000px;}
.ws72{word-spacing:0.576000px;}
.ws7e{word-spacing:0.648000px;}
.ws61{word-spacing:0.720000px;}
.ws22{word-spacing:0.930000px;}
.ws15{word-spacing:0.936000px;}
.ws71{word-spacing:1.080000px;}
.ws7d{word-spacing:1.368000px;}
.ws49{word-spacing:1.575000px;}
.ws2b{word-spacing:1.890000px;}
.ws28{word-spacing:2.970000px;}
.ws60{word-spacing:3.510000px;}
.wsf{word-spacing:25.200000px;}
.ws13{word-spacing:25.848000px;}
.ws10{word-spacing:25.920000px;}
.ws58{word-spacing:31.392000px;}
.ws67{word-spacing:33.048000px;}
.ws7f{word-spacing:33.984000px;}
.ws5d{word-spacing:37.512000px;}
.ws76{word-spacing:38.592000px;}
.ws66{word-spacing:39.240000px;}
.ws5e{word-spacing:41.040000px;}
.ws34{word-spacing:41.688000px;}
.ws51{word-spacing:43.344000px;}
.ws56{word-spacing:44.208000px;}
.ws53{word-spacing:44.712000px;}
.ws4f{word-spacing:46.224000px;}
.ws5b{word-spacing:48.888000px;}
.ws39{word-spacing:49.104000px;}
.ws50{word-spacing:50.652000px;}
.ws52{word-spacing:50.832000px;}
.ws4d{word-spacing:51.768000px;}
.ws12{word-spacing:53.496000px;}
.ws38{word-spacing:59.436000px;}
.ws3d{word-spacing:219.183300px;}
.ws3c{word-spacing:243.486300px;}
.ws40{word-spacing:249.643800px;}
.ws43{word-spacing:258.448800px;}
.ws3f{word-spacing:258.511800px;}
.ws3e{word-spacing:296.234100px;}
.ws42{word-spacing:298.124100px;}
.ws3b{word-spacing:305.154900px;}
.ws3a{word-spacing:711.490500px;}
._16{margin-left:-26.788800px;}
._2{margin-left:-9.028800px;}
._1b{margin-left:-6.840000px;}
._32{margin-left:-5.361600px;}
._5{margin-left:-4.354800px;}
._6{margin-left:-3.055200px;}
._3{margin-left:-1.960800px;}
._4{width:1.117200px;}
._0{width:2.280000px;}
._7{width:3.288600px;}
._1{width:4.309200px;}
._19{width:5.805000px;}
._3d{width:6.900000px;}
._36{width:8.302800px;}
._2d{width:10.707600px;}
._35{width:12.180000px;}
._2e{width:14.040000px;}
._33{width:15.450000px;}
._31{width:16.983600px;}
._3c{width:21.682800px;}
._3f{width:22.864200px;}
._a{width:27.016800px;}
._c{width:28.368000px;}
._12{width:33.048000px;}
._10{width:42.552000px;}
._11{width:44.311200px;}
._8{width:47.592000px;}
._f{width:48.960000px;}
._15{width:51.974400px;}
._3b{width:53.382000px;}
._14{width:56.304000px;}
._e{width:60.840000px;}
._13{width:64.168800px;}
._b{width:65.232000px;}
._d{width:66.744000px;}
._17{width:68.359200px;}
._18{width:69.871200px;}
._9{width:76.495200px;}
._3e{width:79.443000px;}
._1a{width:81.240000px;}
._34{width:83.601000px;}
._3a{width:84.609000px;}
._2f{width:87.234000px;}
._30{width:90.468000px;}
._2c{width:92.904000px;}
._28{width:105.592800px;}
._25{width:122.424000px;}
._23{width:133.080000px;}
._21{width:137.544000px;}
._26{width:151.008000px;}
._20{width:156.624000px;}
._1f{width:157.989600px;}
._22{width:160.440000px;}
._1c{width:162.168000px;}
._29{width:163.533600px;}
._1d{width:166.330800px;}
._1e{width:171.453600px;}
._24{width:176.170800px;}
._27{width:177.864000px;}
._2a{width:198.528000px;}
._2b{width:209.544000px;}
._37{width:351.607200px;}
._38{width:532.491600px;}
._39{width:547.709400px;}
.fc4{color:rgb(60,60,59);}
.fc3{color:rgb(183,180,180);}
.fc2{color:rgb(23,37,63);}
.fc1{color:rgb(122,201,210);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.976000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:150.000000px;}
.fs8{font-size:186.000000px;}
.fs5{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y98{bottom:81.850500px;}
.ya1{bottom:85.334700px;}
.y32{bottom:93.750000px;}
.y93{bottom:93.750150px;}
.y4{bottom:97.125005px;}
.y97{bottom:98.050500px;}
.y59{bottom:100.334700px;}
.y95{bottom:109.334700px;}
.y92{bottom:112.650150px;}
.y96{bottom:114.250500px;}
.y91{bottom:131.550150px;}
.y8b{bottom:133.334700px;}
.y21{bottom:139.264499px;}
.y31{bottom:141.750000px;}
.y58{bottom:148.334700px;}
.ya0{bottom:150.450150px;}
.y8a{bottom:157.334700px;}
.y30{bottom:165.750000px;}
.y57{bottom:172.334700px;}
.y89{bottom:181.334700px;}
.y2f{bottom:189.750000px;}
.y56{bottom:196.334700px;}
.y18{bottom:196.933500px;}
.y88{bottom:205.334700px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y55{bottom:223.334700px;}
.y87{bottom:229.334700px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y2e{bottom:237.750000px;}
.y86{bottom:253.334700px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y54{bottom:271.334700px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y85{bottom:277.334700px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y2d{bottom:285.750000px;}
.y53{bottom:295.334700px;}
.y84{bottom:301.334700px;}
.y2c{bottom:309.750000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y6e{bottom:313.334700px;}
.y52{bottom:319.334700px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y83{bottom:325.334700px;}
.y2b{bottom:333.750000px;}
.y51{bottom:343.334700px;}
.y6d{bottom:346.334700px;}
.yf{bottom:348.133500px;}
.y82{bottom:349.334700px;}
.y9f{bottom:353.282850px;}
.y2a{bottom:357.750000px;}
.y50{bottom:367.334700px;}
.y9e{bottom:372.782850px;}
.y81{bottom:373.334700px;}
.y6c{bottom:379.334700px;}
.y29{bottom:381.750000px;}
.ye{bottom:386.785499px;}
.y4f{bottom:394.334700px;}
.y80{bottom:397.334700px;}
.yd{bottom:408.044999px;}
.y9d{bottom:410.470350px;}
.y6b{bottom:412.334700px;}
.y7f{bottom:421.334700px;}
.y9c{bottom:439.290450px;}
.y4e{bottom:442.334700px;}
.y6a{bottom:445.334700px;}
.y9b{bottom:468.110700px;}
.y7e{bottom:469.334700px;}
.y69{bottom:478.334700px;}
.y4d{bottom:490.334700px;}
.y7d{bottom:493.334700px;}
.y9a{bottom:501.572700px;}
.yc{bottom:502.864502px;}
.y68{bottom:511.334700px;}
.y7c{bottom:517.334700px;}
.yb{bottom:520.864502px;}
.y99{bottom:521.372700px;}
.y4c{bottom:538.334700px;}
.ya{bottom:538.864499px;}
.y7b{bottom:541.334700px;}
.y67{bottom:544.334700px;}
.y9{bottom:556.864499px;}
.y4b{bottom:562.334700px;}
.y7a{bottom:565.334700px;}
.y66{bottom:577.334700px;}
.y4a{bottom:586.334700px;}
.y79{bottom:589.334700px;}
.y49{bottom:610.334700px;}
.y78{bottom:613.334700px;}
.y48{bottom:634.334700px;}
.y77{bottom:637.334700px;}
.y65{bottom:643.334700px;}
.y8{bottom:645.510000px;}
.y47{bottom:658.334700px;}
.y76{bottom:661.334700px;}
.y7{bottom:666.771000px;}
.y64{bottom:676.334700px;}
.y46{bottom:685.334700px;}
.y63{bottom:709.334700px;}
.y6{bottom:726.298500px;}
.y45{bottom:733.334700px;}
.y27{bottom:733.342200px;}
.y3f{bottom:736.334700px;}
.y62{bottom:742.334700px;}
.y3{bottom:752.599495px;}
.y44{bottom:757.334700px;}
.y61{bottom:775.334700px;}
.y26{bottom:781.334700px;}
.y3e{bottom:784.334700px;}
.y43{bottom:805.334700px;}
.y3d{bottom:808.334700px;}
.y42{bottom:829.334700px;}
.y3c{bottom:832.334700px;}
.y25{bottom:836.079600px;}
.y60{bottom:841.334700px;}
.y41{bottom:853.334700px;}
.y5f{bottom:874.334700px;}
.y75{bottom:877.334700px;}
.y2{bottom:879.369000px;}
.y3b{bottom:880.334700px;}
.y24{bottom:881.079600px;}
.y74{bottom:901.334700px;}
.y3a{bottom:904.334700px;}
.y5e{bottom:907.334700px;}
.y73{bottom:925.334700px;}
.y39{bottom:928.334700px;}
.y5d{bottom:940.334700px;}
.y72{bottom:949.334700px;}
.y23{bottom:950.061600px;}
.y38{bottom:952.334700px;}
.y1{bottom:966.726000px;}
.y5c{bottom:973.334700px;}
.y40{bottom:976.334700px;}
.y71{bottom:997.334700px;}
.y37{bottom:1000.334700px;}
.y5b{bottom:1006.334700px;}
.y22{bottom:1019.829600px;}
.y8f{bottom:1021.334700px;}
.y36{bottom:1024.334700px;}
.y94{bottom:1025.834700px;}
.y5a{bottom:1039.334700px;}
.y8e{bottom:1045.334700px;}
.y35{bottom:1048.334700px;}
.y70{bottom:1049.834700px;}
.y8d{bottom:1069.334700px;}
.y34{bottom:1072.334700px;}
.y90{bottom:1073.834700px;}
.ya2{bottom:1078.334700px;}
.y8c{bottom:1093.334700px;}
.y28{bottom:1108.322700px;}
.y33{bottom:1160.834700px;}
.y6f{bottom:1187.306550px;}
.h7{height:32.130000px;}
.h11{height:39.420000px;}
.h12{height:43.848000px;}
.h6{height:45.900000px;}
.hf{height:45.990000px;}
.h3{height:48.195000px;}
.hc{height:52.560000px;}
.h10{height:54.617880px;}
.he{height:54.618480px;}
.h2{height:55.080000px;}
.hb{height:65.700000px;}
.h5{height:78.030000px;}
.ha{height:104.400000px;}
.h4{height:119.055004px;}
.hd{height:129.456000px;}
.h9{height:158.688000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:76.535400px;}
.x7{left:78.000000px;}
.xc{left:79.063050px;}
.x14{left:82.500000px;}
.xb{left:93.750000px;}
.xe{left:94.813050px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x13{left:109.500000px;}
.xd{left:110.563050px;}
.x11{left:114.000000px;}
.x10{left:124.500000px;}
.x8{left:141.000000px;}
.x4{left:203.484001px;}
.x15{left:295.125000px;}
.x6{left:373.110300px;}
.x16{left:390.750000px;}
.x3{left:454.959000px;}
.x9{left:458.456700px;}
.xf{left:459.519750px;}
.xa{left:474.206700px;}
.x17{left:475.875000px;}
.x12{left:494.456700px;}
.x18{left:560.925000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls43{letter-spacing:-6.282667pt;}
.lsc{letter-spacing:-4.629333pt;}
.ls35{letter-spacing:-4.480000pt;}
.ls2c{letter-spacing:-4.133333pt;}
.ls18{letter-spacing:-3.637333pt;}
.ls40{letter-spacing:-3.141333pt;}
.ls44{letter-spacing:-3.120000pt;}
.ls1{letter-spacing:-3.040000pt;}
.ls3a{letter-spacing:-3.024000pt;}
.lsd{letter-spacing:-3.008000pt;}
.ls22{letter-spacing:-2.810667pt;}
.ls8{letter-spacing:-2.645333pt;}
.ls23{letter-spacing:-2.640000pt;}
.ls6{letter-spacing:-2.314667pt;}
.ls3c{letter-spacing:-2.296000pt;}
.ls31{letter-spacing:-2.149333pt;}
.ls3{letter-spacing:-2.000000pt;}
.ls47{letter-spacing:-1.760000pt;}
.ls39{letter-spacing:-1.736000pt;}
.ls27{letter-spacing:-1.680000pt;}
.ls4f{letter-spacing:-1.600000pt;}
.ls4{letter-spacing:-1.466667pt;}
.ls33{letter-spacing:-1.400000pt;}
.ls51{letter-spacing:-1.216000pt;}
.ls24{letter-spacing:-1.040000pt;}
.ls2{letter-spacing:-1.013333pt;}
.ls4d{letter-spacing:-0.960000pt;}
.ls37{letter-spacing:-0.952000pt;}
.ls1c{letter-spacing:-0.826667pt;}
.ls5{letter-spacing:-0.800000pt;}
.ls3b{letter-spacing:-0.784000pt;}
.ls4c{letter-spacing:-0.768000pt;}
.ls26{letter-spacing:-0.720000pt;}
.ls2f{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls4e{letter-spacing:-0.512000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls3d{letter-spacing:-0.448000pt;}
.ls46{letter-spacing:-0.400000pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls28{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls2d{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls41{letter-spacing:-0.080000pt;}
.ls30{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.000192pt;}
.ls32{letter-spacing:0.056000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls2e{letter-spacing:0.080000pt;}
.ls1f{letter-spacing:0.112000pt;}
.ls4a{letter-spacing:0.128000pt;}
.ls4b{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.240000pt;}
.ls3f{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.280000pt;}
.ls11{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.392000pt;}
.ls56{letter-spacing:0.576000pt;}
.ls2a{letter-spacing:0.624000pt;}
.ls50{letter-spacing:0.640000pt;}
.ls42{letter-spacing:0.704000pt;}
.ls36{letter-spacing:0.784000pt;}
.ls48{letter-spacing:0.832000pt;}
.ls38{letter-spacing:0.840000pt;}
.ls49{letter-spacing:0.896000pt;}
.ls12{letter-spacing:0.960000pt;}
.ls14{letter-spacing:1.024000pt;}
.ls13{letter-spacing:1.088000pt;}
.ls16{letter-spacing:1.152000pt;}
.ls34{letter-spacing:1.232000pt;}
.ls45{letter-spacing:1.280000pt;}
.ls53{letter-spacing:1.344000pt;}
.ls57{letter-spacing:1.536000pt;}
.ls55{letter-spacing:1.600000pt;}
.ls52{letter-spacing:1.920000pt;}
.ls54{letter-spacing:2.752000pt;}
.ls20{letter-spacing:76.928000pt;}
.ls25{letter-spacing:77.248000pt;}
.ls2b{letter-spacing:78.656000pt;}
.ls1a{letter-spacing:81.408000pt;}
.ls21{letter-spacing:82.560000pt;}
.ls1b{letter-spacing:82.624000pt;}
.ls17{letter-spacing:88.640000pt;}
.ws9{word-spacing:-35.381333pt;}
.wsc{word-spacing:-35.050667pt;}
.ws54{word-spacing:-34.554667pt;}
.ws30{word-spacing:-33.562667pt;}
.ws14{word-spacing:-33.066667pt;}
.ws55{word-spacing:-18.240000pt;}
.ws57{word-spacing:-18.160000pt;}
.ws59{word-spacing:-18.000000pt;}
.ws35{word-spacing:-17.760000pt;}
.ws29{word-spacing:-17.520000pt;}
.ws1{word-spacing:-17.440000pt;}
.ws7c{word-spacing:-17.344000pt;}
.ws25{word-spacing:-17.200000pt;}
.ws78{word-spacing:-16.512000pt;}
.ws62{word-spacing:-16.480000pt;}
.ws82{word-spacing:-16.192000pt;}
.ws84{word-spacing:-16.128000pt;}
.ws79{word-spacing:-15.936000pt;}
.ws6e{word-spacing:-15.872000pt;}
.ws7b{word-spacing:-15.680000pt;}
.ws80{word-spacing:-15.424000pt;}
.ws81{word-spacing:-15.296000pt;}
.ws83{word-spacing:-15.168000pt;}
.ws6c{word-spacing:-14.976000pt;}
.ws6a{word-spacing:-14.912000pt;}
.ws70{word-spacing:-14.848000pt;}
.ws6b{word-spacing:-14.784000pt;}
.ws69{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.656000pt;}
.ws7{word-spacing:-14.592000pt;}
.ws77{word-spacing:-14.400000pt;}
.wse{word-spacing:-14.016000pt;}
.ws68{word-spacing:-13.952000pt;}
.ws7a{word-spacing:-13.888000pt;}
.ws6d{word-spacing:-13.824000pt;}
.ws6f{word-spacing:-12.992000pt;}
.ws41{word-spacing:-11.088000pt;}
.ws44{word-spacing:-9.744000pt;}
.ws3{word-spacing:-9.322667pt;}
.wsa{word-spacing:-8.507136pt;}
.ws31{word-spacing:-7.605333pt;}
.ws2{word-spacing:-7.296000pt;}
.ws45{word-spacing:-6.282667pt;}
.ws27{word-spacing:-6.117333pt;}
.ws26{word-spacing:-5.621333pt;}
.ws5{word-spacing:-5.333333pt;}
.ws37{word-spacing:-5.040000pt;}
.ws6{word-spacing:-4.960000pt;}
.ws65{word-spacing:-4.880000pt;}
.ws4{word-spacing:-4.800000pt;}
.ws20{word-spacing:-4.794667pt;}
.ws5c{word-spacing:-4.720000pt;}
.ws64{word-spacing:-4.560000pt;}
.ws21{word-spacing:-4.480000pt;}
.ws32{word-spacing:-4.240000pt;}
.ws63{word-spacing:-4.160000pt;}
.ws4e{word-spacing:-2.752000pt;}
.ws2c{word-spacing:-2.688000pt;}
.ws2f{word-spacing:-2.560000pt;}
.ws33{word-spacing:-2.496000pt;}
.ws5a{word-spacing:-2.432000pt;}
.ws2a{word-spacing:-2.368000pt;}
.ws46{word-spacing:-2.304000pt;}
.ws11{word-spacing:-2.240000pt;}
.ws8{word-spacing:-2.176000pt;}
.ws5f{word-spacing:-2.149333pt;}
.ws74{word-spacing:-2.112000pt;}
.ws47{word-spacing:-2.048000pt;}
.wsb{word-spacing:-1.984000pt;}
.ws4c{word-spacing:-1.904000pt;}
.ws75{word-spacing:-1.856000pt;}
.ws73{word-spacing:-1.600000pt;}
.ws1e{word-spacing:-1.152000pt;}
.ws1b{word-spacing:-1.088000pt;}
.ws1c{word-spacing:-1.024000pt;}
.ws1a{word-spacing:-0.960000pt;}
.ws4b{word-spacing:-0.840000pt;}
.ws4a{word-spacing:-0.784000pt;}
.ws16{word-spacing:-0.384000pt;}
.ws19{word-spacing:-0.320000pt;}
.ws2e{word-spacing:-0.280000pt;}
.ws23{word-spacing:-0.112000pt;}
.ws48{word-spacing:-0.056000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.128000pt;}
.ws24{word-spacing:0.168000pt;}
.ws1f{word-spacing:0.192000pt;}
.ws36{word-spacing:0.240000pt;}
.ws17{word-spacing:0.256000pt;}
.ws2d{word-spacing:0.320000pt;}
.ws18{word-spacing:0.384000pt;}
.ws72{word-spacing:0.512000pt;}
.ws7e{word-spacing:0.576000pt;}
.ws61{word-spacing:0.640000pt;}
.ws22{word-spacing:0.826667pt;}
.ws15{word-spacing:0.832000pt;}
.ws71{word-spacing:0.960000pt;}
.ws7d{word-spacing:1.216000pt;}
.ws49{word-spacing:1.400000pt;}
.ws2b{word-spacing:1.680000pt;}
.ws28{word-spacing:2.640000pt;}
.ws60{word-spacing:3.120000pt;}
.wsf{word-spacing:22.400000pt;}
.ws13{word-spacing:22.976000pt;}
.ws10{word-spacing:23.040000pt;}
.ws58{word-spacing:27.904000pt;}
.ws67{word-spacing:29.376000pt;}
.ws7f{word-spacing:30.208000pt;}
.ws5d{word-spacing:33.344000pt;}
.ws76{word-spacing:34.304000pt;}
.ws66{word-spacing:34.880000pt;}
.ws5e{word-spacing:36.480000pt;}
.ws34{word-spacing:37.056000pt;}
.ws51{word-spacing:38.528000pt;}
.ws56{word-spacing:39.296000pt;}
.ws53{word-spacing:39.744000pt;}
.ws4f{word-spacing:41.088000pt;}
.ws5b{word-spacing:43.456000pt;}
.ws39{word-spacing:43.648000pt;}
.ws50{word-spacing:45.024000pt;}
.ws52{word-spacing:45.184000pt;}
.ws4d{word-spacing:46.016000pt;}
.ws12{word-spacing:47.552000pt;}
.ws38{word-spacing:52.832000pt;}
.ws3d{word-spacing:194.829600pt;}
.ws3c{word-spacing:216.432267pt;}
.ws40{word-spacing:221.905600pt;}
.ws43{word-spacing:229.732267pt;}
.ws3f{word-spacing:229.788267pt;}
.ws3e{word-spacing:263.319200pt;}
.ws42{word-spacing:264.999200pt;}
.ws3b{word-spacing:271.248800pt;}
.ws3a{word-spacing:632.436000pt;}
._16{margin-left:-23.812267pt;}
._2{margin-left:-8.025600pt;}
._1b{margin-left:-6.080000pt;}
._32{margin-left:-4.765867pt;}
._5{margin-left:-3.870933pt;}
._6{margin-left:-2.715733pt;}
._3{margin-left:-1.742933pt;}
._4{width:0.993067pt;}
._0{width:2.026667pt;}
._7{width:2.923200pt;}
._1{width:3.830400pt;}
._19{width:5.160000pt;}
._3d{width:6.133333pt;}
._36{width:7.380267pt;}
._2d{width:9.517867pt;}
._35{width:10.826667pt;}
._2e{width:12.480000pt;}
._33{width:13.733333pt;}
._31{width:15.096533pt;}
._3c{width:19.273600pt;}
._3f{width:20.323733pt;}
._a{width:24.014933pt;}
._c{width:25.216000pt;}
._12{width:29.376000pt;}
._10{width:37.824000pt;}
._11{width:39.387733pt;}
._8{width:42.304000pt;}
._f{width:43.520000pt;}
._15{width:46.199467pt;}
._3b{width:47.450667pt;}
._14{width:50.048000pt;}
._e{width:54.080000pt;}
._13{width:57.038933pt;}
._b{width:57.984000pt;}
._d{width:59.328000pt;}
._17{width:60.763733pt;}
._18{width:62.107733pt;}
._9{width:67.995733pt;}
._3e{width:70.616000pt;}
._1a{width:72.213333pt;}
._34{width:74.312000pt;}
._3a{width:75.208000pt;}
._2f{width:77.541333pt;}
._30{width:80.416000pt;}
._2c{width:82.581333pt;}
._28{width:93.860267pt;}
._25{width:108.821333pt;}
._23{width:118.293333pt;}
._21{width:122.261333pt;}
._26{width:134.229333pt;}
._20{width:139.221333pt;}
._1f{width:140.435200pt;}
._22{width:142.613333pt;}
._1c{width:144.149333pt;}
._29{width:145.363200pt;}
._1d{width:147.849600pt;}
._1e{width:152.403200pt;}
._24{width:156.596267pt;}
._27{width:158.101333pt;}
._2a{width:176.469333pt;}
._2b{width:186.261333pt;}
._37{width:312.539733pt;}
._38{width:473.325867pt;}
._39{width:486.852800pt;}
.fs9{font-size:37.312000pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:133.333333pt;}
.fs8{font-size:165.333333pt;}
.fs5{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y98{bottom:72.756000pt;}
.ya1{bottom:75.853067pt;}
.y32{bottom:83.333333pt;}
.y93{bottom:83.333467pt;}
.y4{bottom:86.333337pt;}
.y97{bottom:87.156000pt;}
.y59{bottom:89.186400pt;}
.y95{bottom:97.186400pt;}
.y92{bottom:100.133467pt;}
.y96{bottom:101.556000pt;}
.y91{bottom:116.933467pt;}
.y8b{bottom:118.519733pt;}
.y21{bottom:123.790666pt;}
.y31{bottom:126.000000pt;}
.y58{bottom:131.853067pt;}
.ya0{bottom:133.733467pt;}
.y8a{bottom:139.853067pt;}
.y30{bottom:147.333333pt;}
.y57{bottom:153.186400pt;}
.y89{bottom:161.186400pt;}
.y2f{bottom:168.666667pt;}
.y56{bottom:174.519733pt;}
.y18{bottom:175.052000pt;}
.y88{bottom:182.519733pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y55{bottom:198.519733pt;}
.y87{bottom:203.853067pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y2e{bottom:211.333333pt;}
.y86{bottom:225.186400pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y54{bottom:241.186400pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y85{bottom:246.519733pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y2d{bottom:254.000000pt;}
.y53{bottom:262.519733pt;}
.y84{bottom:267.853067pt;}
.y2c{bottom:275.333333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y6e{bottom:278.519733pt;}
.y52{bottom:283.853067pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y83{bottom:289.186400pt;}
.y2b{bottom:296.666667pt;}
.y51{bottom:305.186400pt;}
.y6d{bottom:307.853067pt;}
.yf{bottom:309.452000pt;}
.y82{bottom:310.519733pt;}
.y9f{bottom:314.029200pt;}
.y2a{bottom:318.000000pt;}
.y50{bottom:326.519733pt;}
.y9e{bottom:331.362533pt;}
.y81{bottom:331.853067pt;}
.y6c{bottom:337.186400pt;}
.y29{bottom:339.333333pt;}
.ye{bottom:343.809333pt;}
.y4f{bottom:350.519733pt;}
.y80{bottom:353.186400pt;}
.yd{bottom:362.706666pt;}
.y9d{bottom:364.862533pt;}
.y6b{bottom:366.519733pt;}
.y7f{bottom:374.519733pt;}
.y9c{bottom:390.480400pt;}
.y4e{bottom:393.186400pt;}
.y6a{bottom:395.853067pt;}
.y9b{bottom:416.098400pt;}
.y7e{bottom:417.186400pt;}
.y69{bottom:425.186400pt;}
.y4d{bottom:435.853067pt;}
.y7d{bottom:438.519733pt;}
.y9a{bottom:445.842400pt;}
.yc{bottom:446.990669pt;}
.y68{bottom:454.519733pt;}
.y7c{bottom:459.853067pt;}
.yb{bottom:462.990669pt;}
.y99{bottom:463.442400pt;}
.y4c{bottom:478.519733pt;}
.ya{bottom:478.990666pt;}
.y7b{bottom:481.186400pt;}
.y67{bottom:483.853067pt;}
.y9{bottom:494.990666pt;}
.y4b{bottom:499.853067pt;}
.y7a{bottom:502.519733pt;}
.y66{bottom:513.186400pt;}
.y4a{bottom:521.186400pt;}
.y79{bottom:523.853067pt;}
.y49{bottom:542.519733pt;}
.y78{bottom:545.186400pt;}
.y48{bottom:563.853067pt;}
.y77{bottom:566.519733pt;}
.y65{bottom:571.853067pt;}
.y8{bottom:573.786667pt;}
.y47{bottom:585.186400pt;}
.y76{bottom:587.853067pt;}
.y7{bottom:592.685334pt;}
.y64{bottom:601.186400pt;}
.y46{bottom:609.186400pt;}
.y63{bottom:630.519733pt;}
.y6{bottom:645.598667pt;}
.y45{bottom:651.853067pt;}
.y27{bottom:651.859733pt;}
.y3f{bottom:654.519733pt;}
.y62{bottom:659.853067pt;}
.y3{bottom:668.977329pt;}
.y44{bottom:673.186400pt;}
.y61{bottom:689.186400pt;}
.y26{bottom:694.519733pt;}
.y3e{bottom:697.186400pt;}
.y43{bottom:715.853067pt;}
.y3d{bottom:718.519733pt;}
.y42{bottom:737.186400pt;}
.y3c{bottom:739.853067pt;}
.y25{bottom:743.181867pt;}
.y60{bottom:747.853067pt;}
.y41{bottom:758.519733pt;}
.y5f{bottom:777.186400pt;}
.y75{bottom:779.853067pt;}
.y2{bottom:781.661334pt;}
.y3b{bottom:782.519733pt;}
.y24{bottom:783.181867pt;}
.y74{bottom:801.186400pt;}
.y3a{bottom:803.853067pt;}
.y5e{bottom:806.519733pt;}
.y73{bottom:822.519733pt;}
.y39{bottom:825.186400pt;}
.y5d{bottom:835.853067pt;}
.y72{bottom:843.853067pt;}
.y23{bottom:844.499200pt;}
.y38{bottom:846.519733pt;}
.y1{bottom:859.312000pt;}
.y5c{bottom:865.186400pt;}
.y40{bottom:867.853067pt;}
.y71{bottom:886.519733pt;}
.y37{bottom:889.186400pt;}
.y5b{bottom:894.519733pt;}
.y22{bottom:906.515200pt;}
.y8f{bottom:907.853067pt;}
.y36{bottom:910.519733pt;}
.y94{bottom:911.853067pt;}
.y5a{bottom:923.853067pt;}
.y8e{bottom:929.186400pt;}
.y35{bottom:931.853067pt;}
.y70{bottom:933.186400pt;}
.y8d{bottom:950.519733pt;}
.y34{bottom:953.186400pt;}
.y90{bottom:954.519733pt;}
.ya2{bottom:958.519733pt;}
.y8c{bottom:971.853067pt;}
.y28{bottom:985.175733pt;}
.y33{bottom:1031.853067pt;}
.y6f{bottom:1055.383600pt;}
.h7{height:28.560000pt;}
.h11{height:35.040000pt;}
.h12{height:38.976000pt;}
.h6{height:40.800000pt;}
.hf{height:40.880000pt;}
.h3{height:42.840000pt;}
.hc{height:46.720000pt;}
.h10{height:48.549227pt;}
.he{height:48.549760pt;}
.h2{height:48.960000pt;}
.hb{height:58.400000pt;}
.h5{height:69.360000pt;}
.ha{height:92.800000pt;}
.h4{height:105.826671pt;}
.hd{height:115.072000pt;}
.h9{height:141.056000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:68.031467pt;}
.x7{left:69.333333pt;}
.xc{left:70.278267pt;}
.x14{left:73.333333pt;}
.xb{left:83.333333pt;}
.xe{left:84.278267pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x13{left:97.333333pt;}
.xd{left:98.278267pt;}
.x11{left:101.333333pt;}
.x10{left:110.666667pt;}
.x8{left:125.333333pt;}
.x4{left:180.874667pt;}
.x15{left:262.333333pt;}
.x6{left:331.653600pt;}
.x16{left:347.333333pt;}
.x3{left:404.408000pt;}
.x9{left:407.517067pt;}
.xf{left:408.462000pt;}
.xa{left:421.517067pt;}
.x17{left:423.000000pt;}
.x12{left:439.517067pt;}
.x18{left:498.600000pt;}
}




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