
    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_38293567e6fe430bda91b266.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.094727;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_6751df9f1948c9500f9b022d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_93b674e6d40a1f90318b44b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_a465faa98b031985cf72abe3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.123047;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_e2df16230ecb8db6aae340e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.094727;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_7ded0033073e85b02647d43f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.102051;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_84a5356433a6a23ae5ea6948.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.102051;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_0b80c5583bcc6d45c1c2bdd4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.094727;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_4a70a0ad3e6c89de142d3b46.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.102051;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_6ce7188720e1b07d58990aef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0b80c5583bcc6d45c1c2bdd4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.094727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4a70a0ad3e6c89de142d3b46.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.102051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6ce7188720e1b07d58990aef.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_27c0d1d8e1c33e99198c7b40.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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);}
.v4{vertical-align:-23.976000px;}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.922800px;}
.v5{vertical-align:19.980000px;}
.v1{vertical-align:23.976000px;}
.ls23{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-0.900000px;}
.ls24{letter-spacing:-0.840000px;}
.ls16{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.600000px;}
.lsf{letter-spacing:-0.419760px;}
.ls1c{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.349800px;}
.ls2{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.100200px;}
.lse{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.364800px;}
.ls25{letter-spacing:0.440400px;}
.ls34{letter-spacing:0.463200px;}
.ls15{letter-spacing:0.496800px;}
.ls2f{letter-spacing:0.840000px;}
.ls2d{letter-spacing:0.875400px;}
.ls19{letter-spacing:1.020000px;}
.ls17{letter-spacing:1.200000px;}
.ls1f{letter-spacing:1.432200px;}
.ls1{letter-spacing:1.440000px;}
.ls6{letter-spacing:1.543200px;}
.ls0{letter-spacing:1.740000px;}
.ls18{letter-spacing:1.983000px;}
.ls1e{letter-spacing:2.045400px;}
.ls7{letter-spacing:2.086800px;}
.ls28{letter-spacing:2.334600px;}
.ls8{letter-spacing:2.585400px;}
.ls20{letter-spacing:2.627400px;}
.ls22{letter-spacing:2.697000px;}
.ls27{letter-spacing:2.767200px;}
.ls14{letter-spacing:3.090000px;}
.ls26{letter-spacing:3.777000px;}
.ls2e{letter-spacing:4.164600px;}
.ls1b{letter-spacing:4.719000px;}
.ls13{letter-spacing:4.966200px;}
.ls2c{letter-spacing:5.262000px;}
.ls11{letter-spacing:5.432400px;}
.ls35{letter-spacing:5.773800px;}
.ls2a{letter-spacing:5.954400px;}
.ls1a{letter-spacing:7.010400px;}
.ls32{letter-spacing:8.313600px;}
.ls29{letter-spacing:8.437200px;}
.ls30{letter-spacing:8.768400px;}
.ls33{letter-spacing:8.959800px;}
.ls1d{letter-spacing:10.952400px;}
.ls5{letter-spacing:11.539200px;}
.lsd{letter-spacing:12.394800px;}
.ls31{letter-spacing:14.448000px;}
.ls12{letter-spacing:17.841600px;}
.lsc{letter-spacing:22.603800px;}
.ls3{letter-spacing:905.653200px;}
.ls4{letter-spacing:1195.161000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws1a{word-spacing:-17.280000px;}
.ws1{word-spacing:-16.740000px;}
.ws3{word-spacing:-16.440000px;}
.ws41{word-spacing:-16.200000px;}
.ws4a{word-spacing:-16.020000px;}
.ws7e{word-spacing:-15.840000px;}
.ws1c{word-spacing:-15.180000px;}
.ws2{word-spacing:-15.000000px;}
.ws4b{word-spacing:-14.640000px;}
.wsa{word-spacing:-14.400000px;}
.ws67{word-spacing:-14.160000px;}
.ws66{word-spacing:-13.800000px;}
.ws9{word-spacing:-10.494000px;}
.ws19{word-spacing:-10.074240px;}
.ws4{word-spacing:-8.745000px;}
.ws1b{word-spacing:-8.395200px;}
.ws53{word-spacing:-5.400000px;}
.ws5f{word-spacing:-4.980000px;}
.ws89{word-spacing:-4.680000px;}
.ws4e{word-spacing:-4.536000px;}
.ws74{word-spacing:-4.392000px;}
.ws29{word-spacing:-4.320000px;}
.ws79{word-spacing:-4.248000px;}
.ws20{word-spacing:-3.672000px;}
.ws39{word-spacing:-3.384000px;}
.ws7a{word-spacing:-3.312000px;}
.wsb{word-spacing:-3.240000px;}
.ws5e{word-spacing:-3.120000px;}
.ws10{word-spacing:-3.096000px;}
.ws3a{word-spacing:-2.880000px;}
.ws1d{word-spacing:-2.808000px;}
.ws75{word-spacing:-2.736000px;}
.ws2f{word-spacing:-2.640000px;}
.ws36{word-spacing:-2.520000px;}
.ws35{word-spacing:-2.304000px;}
.ws1f{word-spacing:-2.160000px;}
.ws7c{word-spacing:-2.100000px;}
.ws6{word-spacing:-1.872000px;}
.ws71{word-spacing:-1.860000px;}
.ws5a{word-spacing:-1.728000px;}
.ws8b{word-spacing:-1.584000px;}
.ws44{word-spacing:-1.512000px;}
.ws23{word-spacing:-1.440000px;}
.ws30{word-spacing:-1.380000px;}
.ws5c{word-spacing:-1.224000px;}
.ws8d{word-spacing:-1.200000px;}
.ws57{word-spacing:-1.152000px;}
.ws2a{word-spacing:-1.008000px;}
.ws15{word-spacing:-0.936000px;}
.ws80{word-spacing:-0.864000px;}
.wsd{word-spacing:-0.792000px;}
.ws68{word-spacing:-0.720000px;}
.ws60{word-spacing:-0.660000px;}
.ws14{word-spacing:-0.648000px;}
.ws55{word-spacing:-0.600000px;}
.ws46{word-spacing:-0.576000px;}
.ws3d{word-spacing:-0.504000px;}
.ws48{word-spacing:-0.480000px;}
.ws37{word-spacing:-0.432000px;}
.ws58{word-spacing:-0.360000px;}
.ws42{word-spacing:-0.216000px;}
.ws8e{word-spacing:-0.180000px;}
.ws28{word-spacing:-0.144000px;}
.ws40{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws26{word-spacing:0.072000px;}
.ws52{word-spacing:0.216000px;}
.ws64{word-spacing:0.240000px;}
.ws34{word-spacing:0.288000px;}
.ws47{word-spacing:0.360000px;}
.ws2d{word-spacing:0.419760px;}
.ws51{word-spacing:0.432000px;}
.ws43{word-spacing:0.504000px;}
.ws17{word-spacing:0.600000px;}
.ws4f{word-spacing:0.648000px;}
.wsc{word-spacing:0.720000px;}
.ws98{word-spacing:0.864000px;}
.ws70{word-spacing:0.900000px;}
.ws6b{word-spacing:1.080000px;}
.ws78{word-spacing:1.152000px;}
.ws6e{word-spacing:1.200000px;}
.ws61{word-spacing:1.440000px;}
.ws32{word-spacing:1.512000px;}
.ws6a{word-spacing:1.584000px;}
.ws8f{word-spacing:1.656000px;}
.ws50{word-spacing:1.728000px;}
.ws8c{word-spacing:1.800000px;}
.ws33{word-spacing:1.872000px;}
.ws25{word-spacing:1.944000px;}
.ws22{word-spacing:2.232000px;}
.ws1e{word-spacing:2.304000px;}
.ws3c{word-spacing:2.376000px;}
.ws4c{word-spacing:2.448000px;}
.ws18{word-spacing:2.580000px;}
.ws6d{word-spacing:2.700000px;}
.ws3e{word-spacing:2.736000px;}
.ws24{word-spacing:2.808000px;}
.ws93{word-spacing:3.096000px;}
.ws90{word-spacing:3.312000px;}
.ws3f{word-spacing:3.456000px;}
.ws85{word-spacing:3.720000px;}
.ws69{word-spacing:3.744000px;}
.ws72{word-spacing:3.960000px;}
.ws8a{word-spacing:4.320000px;}
.ws38{word-spacing:4.392000px;}
.ws5d{word-spacing:4.536000px;}
.ws96{word-spacing:4.860000px;}
.ws92{word-spacing:4.896000px;}
.ws81{word-spacing:5.040000px;}
.ws12{word-spacing:5.112000px;}
.wse{word-spacing:5.256000px;}
.ws84{word-spacing:5.280000px;}
.ws27{word-spacing:5.328000px;}
.ws6f{word-spacing:5.340000px;}
.ws76{word-spacing:5.400000px;}
.ws73{word-spacing:5.760000px;}
.ws7d{word-spacing:6.240000px;}
.ws6c{word-spacing:6.336000px;}
.ws91{word-spacing:6.408000px;}
.ws59{word-spacing:6.480000px;}
.ws16{word-spacing:6.624000px;}
.wsf{word-spacing:6.840000px;}
.ws88{word-spacing:7.056000px;}
.ws7f{word-spacing:7.128000px;}
.ws82{word-spacing:7.260000px;}
.ws7b{word-spacing:7.272000px;}
.ws2c{word-spacing:7.416000px;}
.ws31{word-spacing:7.776000px;}
.ws4d{word-spacing:7.848000px;}
.ws94{word-spacing:8.064000px;}
.ws56{word-spacing:8.760000px;}
.ws49{word-spacing:8.820000px;}
.ws5b{word-spacing:8.856000px;}
.ws13{word-spacing:9.000000px;}
.ws2b{word-spacing:9.144000px;}
.ws3b{word-spacing:9.216000px;}
.ws54{word-spacing:9.300000px;}
.ws62{word-spacing:9.660000px;}
.ws8{word-spacing:9.720000px;}
.ws21{word-spacing:10.800000px;}
.ws86{word-spacing:10.860000px;}
.ws7{word-spacing:11.460000px;}
.ws99{word-spacing:11.592000px;}
.ws77{word-spacing:11.952000px;}
.ws11{word-spacing:12.888000px;}
.ws83{word-spacing:13.680000px;}
.ws97{word-spacing:16.500000px;}
.ws87{word-spacing:16.704000px;}
.ws95{word-spacing:17.280000px;}
.ws45{word-spacing:17.712000px;}
.ws2e{word-spacing:31.320000px;}
.ws63{word-spacing:85.680000px;}
.ws65{word-spacing:1152.021000px;}
._10{margin-left:-9.904800px;}
._17{margin-left:-8.596800px;}
._c{margin-left:-7.590000px;}
._a{margin-left:-5.700000px;}
._2{margin-left:-4.111200px;}
._0{margin-left:-2.241600px;}
._3{margin-left:-1.144800px;}
._8{width:1.104000px;}
._1{width:2.256000px;}
._5{width:3.288000px;}
._14{width:4.388256px;}
._6{width:5.604000px;}
._b{width:6.636000px;}
._4{width:7.776000px;}
._9{width:9.326400px;}
._13{width:10.454400px;}
._e{width:12.003180px;}
._15{width:13.105740px;}
._f{width:14.862600px;}
._7{width:16.075200px;}
._d{width:17.766600px;}
._1f{width:19.195200px;}
._12{width:20.942400px;}
._11{width:22.087200px;}
._18{width:23.126760px;}
._1d{width:25.156800px;}
._1b{width:26.994000px;}
._1c{width:31.505400px;}
._16{width:39.612000px;}
._1a{width:42.884400px;}
._19{width:44.100600px;}
._1e{width:54.540000px;}
.fc1{color:rgb(42,62,146);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:34.980000px;}
.fs3{font-size:41.976000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:49.096650px;}
.y4c{bottom:49.097400px;}
.yd6{bottom:107.999850px;}
.y20{bottom:108.000000px;}
.y93{bottom:112.995000px;}
.yd5{bottom:125.999850px;}
.y75{bottom:126.000000px;}
.y1f{bottom:130.995000px;}
.yd4{bottom:143.999850px;}
.y71{bottom:144.000000px;}
.y1e{bottom:148.995000px;}
.yd3{bottom:161.999850px;}
.y1d{bottom:162.000000px;}
.ye6{bottom:166.995000px;}
.yd2{bottom:179.999850px;}
.y1c{bottom:180.000000px;}
.y4b{bottom:184.995000px;}
.yd1{bottom:197.999850px;}
.y1b{bottom:198.000000px;}
.ya5{bottom:202.995000px;}
.yd0{bottom:215.999850px;}
.y1a{bottom:216.000000px;}
.y92{bottom:220.995000px;}
.ycf{bottom:233.999850px;}
.y19{bottom:234.000000px;}
.y4a{bottom:238.995000px;}
.yce{bottom:251.999850px;}
.y18{bottom:252.000000px;}
.y74{bottom:256.995000px;}
.ycd{bottom:269.999850px;}
.y17{bottom:270.000000px;}
.y49{bottom:274.995000px;}
.ycc{bottom:287.999850px;}
.y16{bottom:288.000000px;}
.y91{bottom:292.995000px;}
.ycb{bottom:305.999850px;}
.y15{bottom:306.000000px;}
.y70{bottom:310.995000px;}
.yca{bottom:323.999850px;}
.y14{bottom:324.000000px;}
.y48{bottom:328.995000px;}
.yc9{bottom:341.999850px;}
.y47{bottom:342.000000px;}
.y13{bottom:346.995000px;}
.yc8{bottom:359.999850px;}
.y46{bottom:360.000000px;}
.y90{bottom:364.995000px;}
.yc7{bottom:377.999850px;}
.y45{bottom:378.000000px;}
.y6f{bottom:382.995000px;}
.y73{bottom:387.066150px;}
.yc6{bottom:395.999850px;}
.ya4{bottom:396.000000px;}
.y44{bottom:400.995000px;}
.y12{bottom:404.176350px;}
.y72{bottom:408.666150px;}
.y8f{bottom:411.066150px;}
.yc5{bottom:413.999850px;}
.y9c{bottom:414.000000px;}
.ya3{bottom:418.995000px;}
.y11{bottom:425.776350px;}
.y6e{bottom:430.266150px;}
.yc4{bottom:431.999850px;}
.y9b{bottom:432.000000px;}
.y8e{bottom:432.666150px;}
.yd8{bottom:436.995000px;}
.y43{bottom:440.523900px;}
.yc3{bottom:449.999850px;}
.y9a{bottom:450.000000px;}
.y6d{bottom:451.866150px;}
.y8d{bottom:454.266150px;}
.yde{bottom:454.995000px;}
.y42{bottom:462.123900px;}
.yc2{bottom:467.999850px;}
.y99{bottom:468.000000px;}
.y10{bottom:468.976350px;}
.yd7{bottom:472.995000px;}
.y6c{bottom:473.466150px;}
.y8c{bottom:475.866150px;}
.y41{bottom:483.723900px;}
.yc1{bottom:485.999850px;}
.y98{bottom:486.000000px;}
.yf{bottom:490.576350px;}
.ydd{bottom:490.995000px;}
.y6b{bottom:495.066150px;}
.y8b{bottom:497.466150px;}
.yc0{bottom:503.999850px;}
.y97{bottom:504.000000px;}
.y40{bottom:505.323900px;}
.ya2{bottom:508.995000px;}
.ye{bottom:512.176350px;}
.y6a{bottom:516.666150px;}
.y8a{bottom:519.066150px;}
.y96{bottom:522.000000px;}
.y3f{bottom:526.924050px;}
.ybf{bottom:526.994850px;}
.ye5{bottom:526.995000px;}
.yd{bottom:533.776350px;}
.y69{bottom:538.266150px;}
.ybe{bottom:539.999850px;}
.ya1{bottom:540.000000px;}
.y89{bottom:540.666150px;}
.y95{bottom:544.995000px;}
.y3e{bottom:548.523900px;}
.yc{bottom:555.376350px;}
.y94{bottom:558.000000px;}
.y68{bottom:559.866150px;}
.y88{bottom:562.266150px;}
.ybd{bottom:562.994850px;}
.ya0{bottom:562.995000px;}
.y3d{bottom:570.123900px;}
.ybc{bottom:575.999850px;}
.y9f{bottom:576.000000px;}
.yb{bottom:576.976350px;}
.ye4{bottom:580.995000px;}
.y67{bottom:581.466150px;}
.y87{bottom:583.866150px;}
.y3c{bottom:591.723900px;}
.y9e{bottom:594.000000px;}
.ya{bottom:598.576350px;}
.y66{bottom:603.066150px;}
.y86{bottom:605.466150px;}
.y9d{bottom:612.000000px;}
.y3b{bottom:613.323900px;}
.ybb{bottom:617.765850px;}
.y9{bottom:620.176350px;}
.y65{bottom:624.666150px;}
.y85{bottom:627.066150px;}
.y3a{bottom:634.924050px;}
.ydc{bottom:634.995000px;}
.yba{bottom:639.366000px;}
.y8{bottom:641.776350px;}
.y64{bottom:646.266150px;}
.ydb{bottom:648.000000px;}
.y84{bottom:648.666150px;}
.y39{bottom:656.523900px;}
.yb9{bottom:660.966000px;}
.yda{bottom:666.000000px;}
.y63{bottom:667.866150px;}
.y83{bottom:670.266150px;}
.y38{bottom:678.123900px;}
.yb8{bottom:682.565850px;}
.ye3{bottom:684.000000px;}
.yd9{bottom:688.995000px;}
.y62{bottom:689.466150px;}
.y82{bottom:691.866150px;}
.y37{bottom:699.723900px;}
.yb7{bottom:704.165850px;}
.y7{bottom:706.576350px;}
.y61{bottom:711.066150px;}
.y81{bottom:713.466150px;}
.y36{bottom:721.323900px;}
.yb6{bottom:725.765850px;}
.y60{bottom:732.666150px;}
.y6{bottom:733.576350px;}
.y80{bottom:735.066150px;}
.ye2{bottom:740.466150px;}
.y35{bottom:742.924050px;}
.yb5{bottom:747.366000px;}
.y5f{bottom:754.266150px;}
.y7f{bottom:756.666150px;}
.ye1{bottom:762.066150px;}
.y34{bottom:764.523900px;}
.yb4{bottom:768.965850px;}
.y5e{bottom:775.866150px;}
.ye0{bottom:783.666150px;}
.y33{bottom:786.123900px;}
.yb3{bottom:790.565850px;}
.y5d{bottom:797.466000px;}
.y5{bottom:803.776350px;}
.y7e{bottom:806.766150px;}
.y32{bottom:807.724050px;}
.yb2{bottom:812.166000px;}
.ydf{bottom:813.666150px;}
.y5c{bottom:819.066150px;}
.y7d{bottom:828.366150px;}
.y31{bottom:829.323900px;}
.y4{bottom:832.576350px;}
.yb1{bottom:833.765850px;}
.y5b{bottom:840.666150px;}
.y7c{bottom:849.966000px;}
.y30{bottom:850.924050px;}
.yb0{bottom:855.366000px;}
.y5a{bottom:862.266150px;}
.y7b{bottom:871.566150px;}
.y2f{bottom:872.523900px;}
.yaf{bottom:876.965850px;}
.y59{bottom:883.866150px;}
.y7a{bottom:893.166150px;}
.y2e{bottom:894.123900px;}
.y58{bottom:905.466000px;}
.y79{bottom:914.766150px;}
.y2d{bottom:915.724050px;}
.yae{bottom:927.065850px;}
.y57{bottom:927.066150px;}
.y78{bottom:936.366150px;}
.y2c{bottom:937.323900px;}
.yad{bottom:948.666000px;}
.y56{bottom:948.666150px;}
.y77{bottom:957.966000px;}
.y2b{bottom:958.924050px;}
.yac{bottom:970.266000px;}
.y55{bottom:970.266150px;}
.y2a{bottom:980.523900px;}
.y76{bottom:986.466000px;}
.yab{bottom:991.866000px;}
.y54{bottom:991.866150px;}
.y29{bottom:1002.123900px;}
.y53{bottom:1013.466000px;}
.y28{bottom:1023.724050px;}
.yaa{bottom:1035.066000px;}
.y52{bottom:1035.066150px;}
.y27{bottom:1045.323900px;}
.ya9{bottom:1056.666000px;}
.y51{bottom:1056.666150px;}
.y26{bottom:1066.924050px;}
.ya8{bottom:1078.266000px;}
.y50{bottom:1078.266150px;}
.y25{bottom:1088.523900px;}
.ya7{bottom:1099.866000px;}
.y4f{bottom:1099.866150px;}
.y24{bottom:1110.123900px;}
.y4e{bottom:1121.466000px;}
.y23{bottom:1140.123900px;}
.ya6{bottom:1143.066000px;}
.y4d{bottom:1143.066150px;}
.y3{bottom:1185.932400px;}
.y21{bottom:1202.950500px;}
.y2{bottom:1203.932400px;}
.y1{bottom:1221.932400px;}
.hd{height:30.234844px;}
.hf{height:30.762187px;}
.h7{height:31.611797px;}
.hc{height:41.777344px;}
.h3{height:50.214844px;}
.h2{height:50.742188px;}
.h8{height:51.591797px;}
.he{height:55.770000px;}
.ha{height:60.257812px;}
.h6{height:60.890625px;}
.hb{height:61.910156px;}
.h9{height:62.666016px;}
.h4{height:66.843750px;}
.h5{height:77.387695px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:155.196900px;}
.x2{left:191.338500px;}
.x3{left:461.022150px;}
@media print{
.v4{vertical-align:-21.312000pt;}
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.486933pt;}
.v5{vertical-align:17.760000pt;}
.v1{vertical-align:21.312000pt;}
.ls23{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-0.800000pt;}
.ls24{letter-spacing:-0.746667pt;}
.ls16{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.533333pt;}
.lsf{letter-spacing:-0.373120pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.310933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.089067pt;}
.lse{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.324267pt;}
.ls25{letter-spacing:0.391467pt;}
.ls34{letter-spacing:0.411733pt;}
.ls15{letter-spacing:0.441600pt;}
.ls2f{letter-spacing:0.746667pt;}
.ls2d{letter-spacing:0.778133pt;}
.ls19{letter-spacing:0.906667pt;}
.ls17{letter-spacing:1.066667pt;}
.ls1f{letter-spacing:1.273067pt;}
.ls1{letter-spacing:1.280000pt;}
.ls6{letter-spacing:1.371733pt;}
.ls0{letter-spacing:1.546667pt;}
.ls18{letter-spacing:1.762667pt;}
.ls1e{letter-spacing:1.818133pt;}
.ls7{letter-spacing:1.854933pt;}
.ls28{letter-spacing:2.075200pt;}
.ls8{letter-spacing:2.298133pt;}
.ls20{letter-spacing:2.335467pt;}
.ls22{letter-spacing:2.397333pt;}
.ls27{letter-spacing:2.459733pt;}
.ls14{letter-spacing:2.746667pt;}
.ls26{letter-spacing:3.357333pt;}
.ls2e{letter-spacing:3.701867pt;}
.ls1b{letter-spacing:4.194667pt;}
.ls13{letter-spacing:4.414400pt;}
.ls2c{letter-spacing:4.677333pt;}
.ls11{letter-spacing:4.828800pt;}
.ls35{letter-spacing:5.132267pt;}
.ls2a{letter-spacing:5.292800pt;}
.ls1a{letter-spacing:6.231467pt;}
.ls32{letter-spacing:7.389867pt;}
.ls29{letter-spacing:7.499733pt;}
.ls30{letter-spacing:7.794133pt;}
.ls33{letter-spacing:7.964267pt;}
.ls1d{letter-spacing:9.735467pt;}
.ls5{letter-spacing:10.257067pt;}
.lsd{letter-spacing:11.017600pt;}
.ls31{letter-spacing:12.842667pt;}
.ls12{letter-spacing:15.859200pt;}
.lsc{letter-spacing:20.092267pt;}
.ls3{letter-spacing:805.025067pt;}
.ls4{letter-spacing:1062.365333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-15.360000pt;}
.ws1{word-spacing:-14.880000pt;}
.ws3{word-spacing:-14.613333pt;}
.ws41{word-spacing:-14.400000pt;}
.ws4a{word-spacing:-14.240000pt;}
.ws7e{word-spacing:-14.080000pt;}
.ws1c{word-spacing:-13.493333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws4b{word-spacing:-13.013333pt;}
.wsa{word-spacing:-12.800000pt;}
.ws67{word-spacing:-12.586667pt;}
.ws66{word-spacing:-12.266667pt;}
.ws9{word-spacing:-9.328000pt;}
.ws19{word-spacing:-8.954880pt;}
.ws4{word-spacing:-7.773333pt;}
.ws1b{word-spacing:-7.462400pt;}
.ws53{word-spacing:-4.800000pt;}
.ws5f{word-spacing:-4.426667pt;}
.ws89{word-spacing:-4.160000pt;}
.ws4e{word-spacing:-4.032000pt;}
.ws74{word-spacing:-3.904000pt;}
.ws29{word-spacing:-3.840000pt;}
.ws79{word-spacing:-3.776000pt;}
.ws20{word-spacing:-3.264000pt;}
.ws39{word-spacing:-3.008000pt;}
.ws7a{word-spacing:-2.944000pt;}
.wsb{word-spacing:-2.880000pt;}
.ws5e{word-spacing:-2.773333pt;}
.ws10{word-spacing:-2.752000pt;}
.ws3a{word-spacing:-2.560000pt;}
.ws1d{word-spacing:-2.496000pt;}
.ws75{word-spacing:-2.432000pt;}
.ws2f{word-spacing:-2.346667pt;}
.ws36{word-spacing:-2.240000pt;}
.ws35{word-spacing:-2.048000pt;}
.ws1f{word-spacing:-1.920000pt;}
.ws7c{word-spacing:-1.866667pt;}
.ws6{word-spacing:-1.664000pt;}
.ws71{word-spacing:-1.653333pt;}
.ws5a{word-spacing:-1.536000pt;}
.ws8b{word-spacing:-1.408000pt;}
.ws44{word-spacing:-1.344000pt;}
.ws23{word-spacing:-1.280000pt;}
.ws30{word-spacing:-1.226667pt;}
.ws5c{word-spacing:-1.088000pt;}
.ws8d{word-spacing:-1.066667pt;}
.ws57{word-spacing:-1.024000pt;}
.ws2a{word-spacing:-0.896000pt;}
.ws15{word-spacing:-0.832000pt;}
.ws80{word-spacing:-0.768000pt;}
.wsd{word-spacing:-0.704000pt;}
.ws68{word-spacing:-0.640000pt;}
.ws60{word-spacing:-0.586667pt;}
.ws14{word-spacing:-0.576000pt;}
.ws55{word-spacing:-0.533333pt;}
.ws46{word-spacing:-0.512000pt;}
.ws3d{word-spacing:-0.448000pt;}
.ws48{word-spacing:-0.426667pt;}
.ws37{word-spacing:-0.384000pt;}
.ws58{word-spacing:-0.320000pt;}
.ws42{word-spacing:-0.192000pt;}
.ws8e{word-spacing:-0.160000pt;}
.ws28{word-spacing:-0.128000pt;}
.ws40{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws26{word-spacing:0.064000pt;}
.ws52{word-spacing:0.192000pt;}
.ws64{word-spacing:0.213333pt;}
.ws34{word-spacing:0.256000pt;}
.ws47{word-spacing:0.320000pt;}
.ws2d{word-spacing:0.373120pt;}
.ws51{word-spacing:0.384000pt;}
.ws43{word-spacing:0.448000pt;}
.ws17{word-spacing:0.533333pt;}
.ws4f{word-spacing:0.576000pt;}
.wsc{word-spacing:0.640000pt;}
.ws98{word-spacing:0.768000pt;}
.ws70{word-spacing:0.800000pt;}
.ws6b{word-spacing:0.960000pt;}
.ws78{word-spacing:1.024000pt;}
.ws6e{word-spacing:1.066667pt;}
.ws61{word-spacing:1.280000pt;}
.ws32{word-spacing:1.344000pt;}
.ws6a{word-spacing:1.408000pt;}
.ws8f{word-spacing:1.472000pt;}
.ws50{word-spacing:1.536000pt;}
.ws8c{word-spacing:1.600000pt;}
.ws33{word-spacing:1.664000pt;}
.ws25{word-spacing:1.728000pt;}
.ws22{word-spacing:1.984000pt;}
.ws1e{word-spacing:2.048000pt;}
.ws3c{word-spacing:2.112000pt;}
.ws4c{word-spacing:2.176000pt;}
.ws18{word-spacing:2.293333pt;}
.ws6d{word-spacing:2.400000pt;}
.ws3e{word-spacing:2.432000pt;}
.ws24{word-spacing:2.496000pt;}
.ws93{word-spacing:2.752000pt;}
.ws90{word-spacing:2.944000pt;}
.ws3f{word-spacing:3.072000pt;}
.ws85{word-spacing:3.306667pt;}
.ws69{word-spacing:3.328000pt;}
.ws72{word-spacing:3.520000pt;}
.ws8a{word-spacing:3.840000pt;}
.ws38{word-spacing:3.904000pt;}
.ws5d{word-spacing:4.032000pt;}
.ws96{word-spacing:4.320000pt;}
.ws92{word-spacing:4.352000pt;}
.ws81{word-spacing:4.480000pt;}
.ws12{word-spacing:4.544000pt;}
.wse{word-spacing:4.672000pt;}
.ws84{word-spacing:4.693333pt;}
.ws27{word-spacing:4.736000pt;}
.ws6f{word-spacing:4.746667pt;}
.ws76{word-spacing:4.800000pt;}
.ws73{word-spacing:5.120000pt;}
.ws7d{word-spacing:5.546667pt;}
.ws6c{word-spacing:5.632000pt;}
.ws91{word-spacing:5.696000pt;}
.ws59{word-spacing:5.760000pt;}
.ws16{word-spacing:5.888000pt;}
.wsf{word-spacing:6.080000pt;}
.ws88{word-spacing:6.272000pt;}
.ws7f{word-spacing:6.336000pt;}
.ws82{word-spacing:6.453333pt;}
.ws7b{word-spacing:6.464000pt;}
.ws2c{word-spacing:6.592000pt;}
.ws31{word-spacing:6.912000pt;}
.ws4d{word-spacing:6.976000pt;}
.ws94{word-spacing:7.168000pt;}
.ws56{word-spacing:7.786667pt;}
.ws49{word-spacing:7.840000pt;}
.ws5b{word-spacing:7.872000pt;}
.ws13{word-spacing:8.000000pt;}
.ws2b{word-spacing:8.128000pt;}
.ws3b{word-spacing:8.192000pt;}
.ws54{word-spacing:8.266667pt;}
.ws62{word-spacing:8.586667pt;}
.ws8{word-spacing:8.640000pt;}
.ws21{word-spacing:9.600000pt;}
.ws86{word-spacing:9.653333pt;}
.ws7{word-spacing:10.186667pt;}
.ws99{word-spacing:10.304000pt;}
.ws77{word-spacing:10.624000pt;}
.ws11{word-spacing:11.456000pt;}
.ws83{word-spacing:12.160000pt;}
.ws97{word-spacing:14.666667pt;}
.ws87{word-spacing:14.848000pt;}
.ws95{word-spacing:15.360000pt;}
.ws45{word-spacing:15.744000pt;}
.ws2e{word-spacing:27.840000pt;}
.ws63{word-spacing:76.160000pt;}
.ws65{word-spacing:1024.018667pt;}
._10{margin-left:-8.804267pt;}
._17{margin-left:-7.641600pt;}
._c{margin-left:-6.746667pt;}
._a{margin-left:-5.066667pt;}
._2{margin-left:-3.654400pt;}
._0{margin-left:-1.992533pt;}
._3{margin-left:-1.017600pt;}
._8{width:0.981333pt;}
._1{width:2.005333pt;}
._5{width:2.922667pt;}
._14{width:3.900672pt;}
._6{width:4.981333pt;}
._b{width:5.898667pt;}
._4{width:6.912000pt;}
._9{width:8.290133pt;}
._13{width:9.292800pt;}
._e{width:10.669493pt;}
._15{width:11.649547pt;}
._f{width:13.211200pt;}
._7{width:14.289067pt;}
._d{width:15.792533pt;}
._1f{width:17.062400pt;}
._12{width:18.615467pt;}
._11{width:19.633067pt;}
._18{width:20.557120pt;}
._1d{width:22.361600pt;}
._1b{width:23.994667pt;}
._1c{width:28.004800pt;}
._16{width:35.210667pt;}
._1a{width:38.119467pt;}
._19{width:39.200533pt;}
._1e{width:48.480000pt;}
.fs5{font-size:31.093333pt;}
.fs3{font-size:37.312000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:43.641467pt;}
.y4c{bottom:43.642133pt;}
.yd6{bottom:95.999867pt;}
.y20{bottom:96.000000pt;}
.y93{bottom:100.440000pt;}
.yd5{bottom:111.999867pt;}
.y75{bottom:112.000000pt;}
.y1f{bottom:116.440000pt;}
.yd4{bottom:127.999867pt;}
.y71{bottom:128.000000pt;}
.y1e{bottom:132.440000pt;}
.yd3{bottom:143.999867pt;}
.y1d{bottom:144.000000pt;}
.ye6{bottom:148.440000pt;}
.yd2{bottom:159.999867pt;}
.y1c{bottom:160.000000pt;}
.y4b{bottom:164.440000pt;}
.yd1{bottom:175.999867pt;}
.y1b{bottom:176.000000pt;}
.ya5{bottom:180.440000pt;}
.yd0{bottom:191.999867pt;}
.y1a{bottom:192.000000pt;}
.y92{bottom:196.440000pt;}
.ycf{bottom:207.999867pt;}
.y19{bottom:208.000000pt;}
.y4a{bottom:212.440000pt;}
.yce{bottom:223.999867pt;}
.y18{bottom:224.000000pt;}
.y74{bottom:228.440000pt;}
.ycd{bottom:239.999867pt;}
.y17{bottom:240.000000pt;}
.y49{bottom:244.440000pt;}
.ycc{bottom:255.999867pt;}
.y16{bottom:256.000000pt;}
.y91{bottom:260.440000pt;}
.ycb{bottom:271.999867pt;}
.y15{bottom:272.000000pt;}
.y70{bottom:276.440000pt;}
.yca{bottom:287.999867pt;}
.y14{bottom:288.000000pt;}
.y48{bottom:292.440000pt;}
.yc9{bottom:303.999867pt;}
.y47{bottom:304.000000pt;}
.y13{bottom:308.440000pt;}
.yc8{bottom:319.999867pt;}
.y46{bottom:320.000000pt;}
.y90{bottom:324.440000pt;}
.yc7{bottom:335.999867pt;}
.y45{bottom:336.000000pt;}
.y6f{bottom:340.440000pt;}
.y73{bottom:344.058800pt;}
.yc6{bottom:351.999867pt;}
.ya4{bottom:352.000000pt;}
.y44{bottom:356.440000pt;}
.y12{bottom:359.267867pt;}
.y72{bottom:363.258800pt;}
.y8f{bottom:365.392133pt;}
.yc5{bottom:367.999867pt;}
.y9c{bottom:368.000000pt;}
.ya3{bottom:372.440000pt;}
.y11{bottom:378.467867pt;}
.y6e{bottom:382.458800pt;}
.yc4{bottom:383.999867pt;}
.y9b{bottom:384.000000pt;}
.y8e{bottom:384.592133pt;}
.yd8{bottom:388.440000pt;}
.y43{bottom:391.576800pt;}
.yc3{bottom:399.999867pt;}
.y9a{bottom:400.000000pt;}
.y6d{bottom:401.658800pt;}
.y8d{bottom:403.792133pt;}
.yde{bottom:404.440000pt;}
.y42{bottom:410.776800pt;}
.yc2{bottom:415.999867pt;}
.y99{bottom:416.000000pt;}
.y10{bottom:416.867867pt;}
.yd7{bottom:420.440000pt;}
.y6c{bottom:420.858800pt;}
.y8c{bottom:422.992133pt;}
.y41{bottom:429.976800pt;}
.yc1{bottom:431.999867pt;}
.y98{bottom:432.000000pt;}
.yf{bottom:436.067867pt;}
.ydd{bottom:436.440000pt;}
.y6b{bottom:440.058800pt;}
.y8b{bottom:442.192133pt;}
.yc0{bottom:447.999867pt;}
.y97{bottom:448.000000pt;}
.y40{bottom:449.176800pt;}
.ya2{bottom:452.440000pt;}
.ye{bottom:455.267867pt;}
.y6a{bottom:459.258800pt;}
.y8a{bottom:461.392133pt;}
.y96{bottom:464.000000pt;}
.y3f{bottom:468.376933pt;}
.ybf{bottom:468.439867pt;}
.ye5{bottom:468.440000pt;}
.yd{bottom:474.467867pt;}
.y69{bottom:478.458800pt;}
.ybe{bottom:479.999867pt;}
.ya1{bottom:480.000000pt;}
.y89{bottom:480.592133pt;}
.y95{bottom:484.440000pt;}
.y3e{bottom:487.576800pt;}
.yc{bottom:493.667867pt;}
.y94{bottom:496.000000pt;}
.y68{bottom:497.658800pt;}
.y88{bottom:499.792133pt;}
.ybd{bottom:500.439867pt;}
.ya0{bottom:500.440000pt;}
.y3d{bottom:506.776800pt;}
.ybc{bottom:511.999867pt;}
.y9f{bottom:512.000000pt;}
.yb{bottom:512.867867pt;}
.ye4{bottom:516.440000pt;}
.y67{bottom:516.858800pt;}
.y87{bottom:518.992133pt;}
.y3c{bottom:525.976800pt;}
.y9e{bottom:528.000000pt;}
.ya{bottom:532.067867pt;}
.y66{bottom:536.058800pt;}
.y86{bottom:538.192133pt;}
.y9d{bottom:544.000000pt;}
.y3b{bottom:545.176800pt;}
.ybb{bottom:549.125200pt;}
.y9{bottom:551.267867pt;}
.y65{bottom:555.258800pt;}
.y85{bottom:557.392133pt;}
.y3a{bottom:564.376933pt;}
.ydc{bottom:564.440000pt;}
.yba{bottom:568.325333pt;}
.y8{bottom:570.467867pt;}
.y64{bottom:574.458800pt;}
.ydb{bottom:576.000000pt;}
.y84{bottom:576.592133pt;}
.y39{bottom:583.576800pt;}
.yb9{bottom:587.525333pt;}
.yda{bottom:592.000000pt;}
.y63{bottom:593.658800pt;}
.y83{bottom:595.792133pt;}
.y38{bottom:602.776800pt;}
.yb8{bottom:606.725200pt;}
.ye3{bottom:608.000000pt;}
.yd9{bottom:612.440000pt;}
.y62{bottom:612.858800pt;}
.y82{bottom:614.992133pt;}
.y37{bottom:621.976800pt;}
.yb7{bottom:625.925200pt;}
.y7{bottom:628.067867pt;}
.y61{bottom:632.058800pt;}
.y81{bottom:634.192133pt;}
.y36{bottom:641.176800pt;}
.yb6{bottom:645.125200pt;}
.y60{bottom:651.258800pt;}
.y6{bottom:652.067867pt;}
.y80{bottom:653.392133pt;}
.ye2{bottom:658.192133pt;}
.y35{bottom:660.376933pt;}
.yb5{bottom:664.325333pt;}
.y5f{bottom:670.458800pt;}
.y7f{bottom:672.592133pt;}
.ye1{bottom:677.392133pt;}
.y34{bottom:679.576800pt;}
.yb4{bottom:683.525200pt;}
.y5e{bottom:689.658800pt;}
.ye0{bottom:696.592133pt;}
.y33{bottom:698.776800pt;}
.yb3{bottom:702.725200pt;}
.y5d{bottom:708.858667pt;}
.y5{bottom:714.467867pt;}
.y7e{bottom:717.125467pt;}
.y32{bottom:717.976933pt;}
.yb2{bottom:721.925333pt;}
.ydf{bottom:723.258800pt;}
.y5c{bottom:728.058800pt;}
.y7d{bottom:736.325467pt;}
.y31{bottom:737.176800pt;}
.y4{bottom:740.067867pt;}
.yb1{bottom:741.125200pt;}
.y5b{bottom:747.258800pt;}
.y7c{bottom:755.525333pt;}
.y30{bottom:756.376933pt;}
.yb0{bottom:760.325333pt;}
.y5a{bottom:766.458800pt;}
.y7b{bottom:774.725467pt;}
.y2f{bottom:775.576800pt;}
.yaf{bottom:779.525200pt;}
.y59{bottom:785.658800pt;}
.y7a{bottom:793.925467pt;}
.y2e{bottom:794.776800pt;}
.y58{bottom:804.858667pt;}
.y79{bottom:813.125467pt;}
.y2d{bottom:813.976933pt;}
.yae{bottom:824.058533pt;}
.y57{bottom:824.058800pt;}
.y78{bottom:832.325467pt;}
.y2c{bottom:833.176800pt;}
.yad{bottom:843.258667pt;}
.y56{bottom:843.258800pt;}
.y77{bottom:851.525333pt;}
.y2b{bottom:852.376933pt;}
.yac{bottom:862.458667pt;}
.y55{bottom:862.458800pt;}
.y2a{bottom:871.576800pt;}
.y76{bottom:876.858667pt;}
.yab{bottom:881.658667pt;}
.y54{bottom:881.658800pt;}
.y29{bottom:890.776800pt;}
.y53{bottom:900.858667pt;}
.y28{bottom:909.976933pt;}
.yaa{bottom:920.058667pt;}
.y52{bottom:920.058800pt;}
.y27{bottom:929.176800pt;}
.ya9{bottom:939.258667pt;}
.y51{bottom:939.258800pt;}
.y26{bottom:948.376933pt;}
.ya8{bottom:958.458667pt;}
.y50{bottom:958.458800pt;}
.y25{bottom:967.576800pt;}
.ya7{bottom:977.658667pt;}
.y4f{bottom:977.658800pt;}
.y24{bottom:986.776800pt;}
.y4e{bottom:996.858667pt;}
.y23{bottom:1013.443467pt;}
.ya6{bottom:1016.058667pt;}
.y4d{bottom:1016.058800pt;}
.y3{bottom:1054.162133pt;}
.y21{bottom:1069.289333pt;}
.y2{bottom:1070.162133pt;}
.y1{bottom:1086.162133pt;}
.hd{height:26.875417pt;}
.hf{height:27.344167pt;}
.h7{height:28.099375pt;}
.hc{height:37.135417pt;}
.h3{height:44.635417pt;}
.h2{height:45.104167pt;}
.h8{height:45.859375pt;}
.he{height:49.573333pt;}
.ha{height:53.562500pt;}
.h6{height:54.125000pt;}
.hb{height:55.031250pt;}
.h9{height:55.703125pt;}
.h4{height:59.416667pt;}
.h5{height:68.789062pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:137.952800pt;}
.x2{left:170.078667pt;}
.x3{left:409.797467pt;}
}




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