
    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_7f1f0a81cc7b490f100de8d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084000;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_257ee2abf5f02c848bcab2a1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.077000;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_f8bd0b9b9c28e00a5c2abd51.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084000;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_d4699e50b7ae33fdcddd4313.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.077000;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_80f480181f1711bd68b70eef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_6ee627138821c4803f5bc7a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073000;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_8a2bb835189cd607dff4873c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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);}
.v4{vertical-align:-15.840600px;}
.v1{vertical-align:-1.404000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.840000px;}
.v3{vertical-align:28.800000px;}
.ls6{letter-spacing:-1.920000px;}
.ls7{letter-spacing:-1.200000px;}
.ls3{letter-spacing:-0.864000px;}
.ls13{letter-spacing:-0.863040px;}
.ls11{letter-spacing:-0.696000px;}
.ls14{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.480000px;}
.ls5{letter-spacing:-0.378000px;}
.lsc{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.210000px;}
.ls8{letter-spacing:-0.167040px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.504000px;}
.ls12{letter-spacing:1.536000px;}
.ls1{letter-spacing:5.956800px;}
.lse{letter-spacing:9.828000px;}
.ls2{letter-spacing:9.962400px;}
.lsf{letter-spacing:11.176200px;}
.ls10{letter-spacing:11.214000px;}
.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;}
}
.wsa{word-spacing:-42.000000px;}
.ws94{word-spacing:-16.344000px;}
.ws91{word-spacing:-12.816000px;}
.ws5{word-spacing:-12.690000px;}
.ws6{word-spacing:-12.312000px;}
.ws3{word-spacing:-12.258000px;}
.ws93{word-spacing:-11.718000px;}
.ws64{word-spacing:-11.568000px;}
.ws6c{word-spacing:-11.520000px;}
.ws2{word-spacing:-11.394000px;}
.ws1{word-spacing:-11.280000px;}
.ws4{word-spacing:-10.896000px;}
.ws95{word-spacing:-10.374000px;}
.ws9{word-spacing:-9.870000px;}
.ws8{word-spacing:-9.534000px;}
.ws3f{word-spacing:-8.976000px;}
.ws40{word-spacing:-6.375360px;}
.ws90{word-spacing:-5.846400px;}
.ws92{word-spacing:-5.679360px;}
.ws7f{word-spacing:-5.232000px;}
.ws7{word-spacing:-3.834000px;}
.ws28{word-spacing:-3.564000px;}
.ws76{word-spacing:-2.784000px;}
.ws83{word-spacing:-2.112000px;}
.ws2c{word-spacing:-2.106000px;}
.ws3b{word-spacing:-2.052000px;}
.ws27{word-spacing:-1.998000px;}
.ws9c{word-spacing:-1.890000px;}
.wsb0{word-spacing:-1.836000px;}
.wsb1{word-spacing:-1.728000px;}
.ws82{word-spacing:-1.488000px;}
.ws55{word-spacing:-1.344000px;}
.ws9b{word-spacing:-1.242000px;}
.ws5f{word-spacing:-1.218000px;}
.wsa9{word-spacing:-1.026000px;}
.ws8c{word-spacing:-1.008000px;}
.ws8d{word-spacing:-0.966000px;}
.wsaa{word-spacing:-0.594000px;}
.ws14{word-spacing:-0.576000px;}
.ws8b{word-spacing:-0.546000px;}
.ws15{word-spacing:-0.528000px;}
.ws13{word-spacing:-0.504000px;}
.ws5c{word-spacing:-0.336000px;}
.ws60{word-spacing:-0.210000px;}
.ws8e{word-spacing:-0.192000px;}
.ws4c{word-spacing:-0.144000px;}
.ws8f{word-spacing:-0.096000px;}
.wsad{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws81{word-spacing:0.048000px;}
.ws1d{word-spacing:0.270000px;}
.ws3d{word-spacing:0.336000px;}
.ws9d{word-spacing:0.378000px;}
.ws18{word-spacing:0.384000px;}
.ws7d{word-spacing:0.480000px;}
.ws59{word-spacing:0.576000px;}
.wsa0{word-spacing:0.648000px;}
.ws5e{word-spacing:0.798000px;}
.ws49{word-spacing:0.816000px;}
.ws84{word-spacing:0.960000px;}
.wsf{word-spacing:1.104000px;}
.ws10{word-spacing:1.344000px;}
.ws63{word-spacing:1.386000px;}
.wsa2{word-spacing:1.404000px;}
.ws58{word-spacing:1.488000px;}
.wse{word-spacing:1.632000px;}
.ws4a{word-spacing:1.680000px;}
.wsa1{word-spacing:1.728000px;}
.wsb3{word-spacing:1.764000px;}
.ws85{word-spacing:1.776000px;}
.ws9a{word-spacing:1.836000px;}
.ws1a{word-spacing:1.872000px;}
.ws4d{word-spacing:1.968000px;}
.ws73{word-spacing:2.256000px;}
.ws87{word-spacing:2.400000px;}
.ws61{word-spacing:2.646000px;}
.ws96{word-spacing:2.736000px;}
.ws3e{word-spacing:2.772000px;}
.wsa3{word-spacing:2.808000px;}
.ws34{word-spacing:2.970000px;}
.ws70{word-spacing:2.976000px;}
.ws57{word-spacing:3.024000px;}
.ws62{word-spacing:3.066000px;}
.ws41{word-spacing:3.120000px;}
.ws2a{word-spacing:3.186000px;}
.ws72{word-spacing:3.264000px;}
.ws45{word-spacing:3.456000px;}
.wsc3{word-spacing:3.612000px;}
.ws2b{word-spacing:3.672000px;}
.ws4f{word-spacing:3.840000px;}
.ws98{word-spacing:3.888000px;}
.ws51{word-spacing:3.936000px;}
.ws99{word-spacing:4.050000px;}
.ws19{word-spacing:4.080000px;}
.wsac{word-spacing:4.212000px;}
.ws39{word-spacing:4.374000px;}
.ws24{word-spacing:4.482000px;}
.wsb8{word-spacing:4.494000px;}
.ws16{word-spacing:4.512000px;}
.ws52{word-spacing:4.608000px;}
.ws9e{word-spacing:4.968000px;}
.ws97{word-spacing:5.040000px;}
.ws38{word-spacing:5.130000px;}
.ws2d{word-spacing:5.346000px;}
.ws33{word-spacing:5.400000px;}
.ws29{word-spacing:5.454000px;}
.ws7e{word-spacing:5.568000px;}
.ws42{word-spacing:5.664000px;}
.wsab{word-spacing:5.778000px;}
.wsaf{word-spacing:5.994000px;}
.wsc{word-spacing:6.000000px;}
.ws5b{word-spacing:6.096000px;}
.ws48{word-spacing:6.144000px;}
.wsb{word-spacing:6.192000px;}
.ws71{word-spacing:6.240000px;}
.ws53{word-spacing:6.336000px;}
.ws3a{word-spacing:6.480000px;}
.ws11{word-spacing:6.672000px;}
.ws77{word-spacing:6.864000px;}
.ws17{word-spacing:6.960000px;}
.ws2e{word-spacing:7.020000px;}
.wsbc{word-spacing:7.056000px;}
.wsd{word-spacing:7.104000px;}
.ws1e{word-spacing:7.506000px;}
.ws80{word-spacing:7.584000px;}
.ws78{word-spacing:7.776000px;}
.wsa7{word-spacing:7.938000px;}
.wsae{word-spacing:7.992000px;}
.ws4e{word-spacing:8.592000px;}
.ws75{word-spacing:8.832000px;}
.ws32{word-spacing:8.856000px;}
.ws47{word-spacing:8.880000px;}
.ws25{word-spacing:9.288000px;}
.wsb9{word-spacing:9.492000px;}
.wsa6{word-spacing:9.504000px;}
.wsbf{word-spacing:9.576000px;}
.ws3c{word-spacing:9.954000px;}
.ws86{word-spacing:10.080000px;}
.wsb5{word-spacing:10.164000px;}
.ws1b{word-spacing:11.070000px;}
.ws8a{word-spacing:11.088000px;}
.ws12{word-spacing:11.214000px;}
.ws46{word-spacing:11.328000px;}
.wsb7{word-spacing:11.550000px;}
.wsc0{word-spacing:12.348000px;}
.ws89{word-spacing:12.384000px;}
.ws74{word-spacing:12.768000px;}
.ws36{word-spacing:12.852000px;}
.ws43{word-spacing:12.864000px;}
.wsbe{word-spacing:12.936000px;}
.ws44{word-spacing:13.056000px;}
.ws2f{word-spacing:13.068000px;}
.wsb4{word-spacing:13.104000px;}
.ws6f{word-spacing:13.344000px;}
.ws1c{word-spacing:13.608000px;}
.ws21{word-spacing:14.256000px;}
.ws22{word-spacing:14.364000px;}
.ws56{word-spacing:14.592000px;}
.ws5d{word-spacing:15.024000px;}
.ws88{word-spacing:15.120000px;}
.ws37{word-spacing:15.174000px;}
.ws30{word-spacing:15.390000px;}
.ws35{word-spacing:15.552000px;}
.ws7a{word-spacing:15.936000px;}
.wsa4{word-spacing:16.038000px;}
.ws50{word-spacing:16.224000px;}
.wsbd{word-spacing:16.464000px;}
.ws26{word-spacing:16.470000px;}
.wsb2{word-spacing:17.010000px;}
.ws5a{word-spacing:17.088000px;}
.wsbb{word-spacing:17.472000px;}
.ws54{word-spacing:17.904000px;}
.ws31{word-spacing:18.414000px;}
.ws9f{word-spacing:18.576000px;}
.wsc2{word-spacing:19.194000px;}
.wsa5{word-spacing:19.224000px;}
.ws23{word-spacing:19.278000px;}
.wsa8{word-spacing:19.980000px;}
.ws4b{word-spacing:21.168000px;}
.ws79{word-spacing:21.456000px;}
.wsba{word-spacing:22.764000px;}
.ws1f{word-spacing:22.842000px;}
.ws20{word-spacing:26.568000px;}
.wsc1{word-spacing:27.048000px;}
.ws7c{word-spacing:28.128000px;}
.wsb6{word-spacing:28.392000px;}
.ws7b{word-spacing:31.392000px;}
.ws65{word-spacing:111.840000px;}
.ws6e{word-spacing:131.808000px;}
.ws69{word-spacing:155.904000px;}
.ws6b{word-spacing:157.824000px;}
.ws6d{word-spacing:175.920000px;}
.ws67{word-spacing:200.016000px;}
.ws66{word-spacing:208.464000px;}
.ws6a{word-spacing:217.536000px;}
.ws68{word-spacing:235.056000px;}
._16{margin-left:-31.359600px;}
._18{margin-left:-28.464000px;}
._37{margin-left:-16.416000px;}
._0{margin-left:-15.408000px;}
._c{margin-left:-11.664000px;}
._2{margin-left:-10.512000px;}
._9{margin-left:-8.208000px;}
._1{margin-left:-5.760000px;}
._e{margin-left:-4.730400px;}
._5{margin-left:-3.672000px;}
._13{margin-left:-2.611800px;}
._6{margin-left:-1.184400px;}
._4{width:1.296000px;}
._7{width:2.360400px;}
._3{width:3.441600px;}
._15{width:4.608000px;}
._a{width:5.904000px;}
._b{width:6.955200px;}
._11{width:8.438400px;}
._12{width:9.633600px;}
._1a{width:11.934000px;}
._f{width:13.386600px;}
._10{width:15.206400px;}
._14{width:16.713600px;}
._36{width:18.777600px;}
._38{width:20.023200px;}
._d{width:22.534200px;}
._19{width:28.128000px;}
._17{width:30.975600px;}
._1c{width:35.424000px;}
._1d{width:38.352000px;}
._1f{width:175.824000px;}
._34{width:183.792000px;}
._29{width:187.824000px;}
._20{width:205.344000px;}
._28{width:219.936000px;}
._25{width:231.936000px;}
._21{width:233.664000px;}
._30{width:236.352000px;}
._32{width:239.904000px;}
._33{width:251.904000px;}
._31{width:257.904000px;}
._2f{width:261.984000px;}
._24{width:264.000000px;}
._22{width:272.496000px;}
._2b{width:276.000000px;}
._23{width:284.496000px;}
._2e{width:293.520000px;}
._26{width:299.040000px;}
._27{width:311.040000px;}
._1b{width:381.312000px;}
._8{width:488.160000px;}
._2a{width:569.184000px;}
._2c{width:595.920000px;}
._2d{width:622.800000px;}
._35{width:988.512000px;}
._1e{width:1162.896000px;}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:27.840000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:57.222600px;}
.y25{bottom:71.803350px;}
.y26{bottom:86.381100px;}
.y66{bottom:123.841650px;}
.y5{bottom:128.222700px;}
.y3f{bottom:129.228900px;}
.y56{bottom:129.291900px;}
.yb6{bottom:130.172850px;}
.y65{bottom:138.241650px;}
.y55{bottom:141.891900px;}
.yb5{bottom:144.572850px;}
.y3e{bottom:145.509900px;}
.y64{bottom:152.641650px;}
.y4{bottom:153.548700px;}
.y54{bottom:154.491900px;}
.y3d{bottom:161.790900px;}
.yb4{bottom:161.900850px;}
.y63{bottom:167.041650px;}
.y53{bottom:167.091900px;}
.yb3{bottom:176.300850px;}
.y3c{bottom:178.071900px;}
.y62{bottom:181.441650px;}
.yb2{bottom:190.700850px;}
.y3b{bottom:194.352900px;}
.y52{bottom:195.756900px;}
.y61{bottom:195.841650px;}
.yb1{bottom:208.028850px;}
.y60{bottom:210.241650px;}
.y3a{bottom:210.633900px;}
.y51{bottom:211.956900px;}
.yb0{bottom:222.428850px;}
.y5f{bottom:224.641650px;}
.y39{bottom:226.914900px;}
.y50{bottom:228.156900px;}
.yaf{bottom:236.828850px;}
.y5e{bottom:239.041650px;}
.y38{bottom:243.195900px;}
.y4f{bottom:244.356900px;}
.y5d{bottom:253.441650px;}
.yae{bottom:254.156850px;}
.y37{bottom:259.476900px;}
.y4e{bottom:260.556900px;}
.y5c{bottom:267.841650px;}
.yad{bottom:268.556850px;}
.y36{bottom:275.757900px;}
.y4d{bottom:276.756900px;}
.y5b{bottom:282.241650px;}
.yac{bottom:282.956850px;}
.y35{bottom:292.038900px;}
.y4c{bottom:292.956900px;}
.y5a{bottom:296.641650px;}
.yab{bottom:300.284850px;}
.y34{bottom:308.319900px;}
.y59{bottom:311.041650px;}
.yaa{bottom:314.684850px;}
.y33{bottom:324.600900px;}
.y4b{bottom:325.356900px;}
.y58{bottom:325.441650px;}
.ya9{bottom:329.084850px;}
.y57{bottom:339.841650px;}
.y32{bottom:340.881900px;}
.y4a{bottom:341.556900px;}
.ya8{bottom:346.412850px;}
.y31{bottom:357.162900px;}
.y49{bottom:357.756900px;}
.ya7{bottom:360.812850px;}
.y30{bottom:373.443900px;}
.y48{bottom:373.956900px;}
.ya6{bottom:378.140850px;}
.y70{bottom:385.114950px;}
.y2f{bottom:389.724900px;}
.y47{bottom:390.156900px;}
.ya5{bottom:392.540850px;}
.y6f{bottom:397.714950px;}
.y2e{bottom:406.005900px;}
.y46{bottom:406.356900px;}
.ya4{bottom:409.868850px;}
.y6e{bottom:410.314950px;}
.y2{bottom:416.116950px;}
.y2d{bottom:422.286900px;}
.y45{bottom:422.556900px;}
.y6d{bottom:422.914950px;}
.ya3{bottom:424.268850px;}
.y6c{bottom:435.514950px;}
.y2c{bottom:438.567900px;}
.y44{bottom:438.756900px;}
.ya2{bottom:441.596850px;}
.y6b{bottom:448.114950px;}
.y100{bottom:448.923600px;}
.y2b{bottom:454.848900px;}
.y43{bottom:454.956900px;}
.ya1{bottom:455.996850px;}
.y6a{bottom:460.714950px;}
.yff{bottom:460.923600px;}
.y1{bottom:466.768950px;}
.y2a{bottom:471.129900px;}
.y42{bottom:471.156900px;}
.yfe{bottom:472.923600px;}
.y69{bottom:473.314950px;}
.ya0{bottom:473.324850px;}
.y68{bottom:485.914950px;}
.y41{bottom:487.356900px;}
.y29{bottom:487.410900px;}
.y9f{bottom:487.724850px;}
.y67{bottom:498.514950px;}
.y9e{bottom:502.124850px;}
.y40{bottom:503.556900px;}
.y28{bottom:503.691900px;}
.yd7{bottom:516.246900px;}
.yfd{bottom:516.350400px;}
.y9c{bottom:519.452850px;}
.yfc{bottom:528.887400px;}
.yd6{bottom:532.595400px;}
.y9b{bottom:533.852850px;}
.y9d{bottom:541.052850px;}
.yfb{bottom:541.424400px;}
.y9a{bottom:548.252850px;}
.y24{bottom:548.929050px;}
.yd5{bottom:548.943900px;}
.yfa{bottom:553.961400px;}
.y99{bottom:562.652850px;}
.yd4{bottom:565.293900px;}
.yf9{bottom:566.525550px;}
.y23{bottom:577.729050px;}
.yf8{bottom:579.062550px;}
.y97{bottom:579.980850px;}
.yd3{bottom:581.647050px;}
.yf7{bottom:591.599550px;}
.y22{bottom:592.129050px;}
.y96{bottom:594.380850px;}
.yd2{bottom:597.995550px;}
.y98{bottom:601.580850px;}
.yf6{bottom:604.136550px;}
.y21{bottom:606.529050px;}
.y95{bottom:608.780850px;}
.yd1{bottom:614.344050px;}
.yf5{bottom:616.673550px;}
.y20{bottom:620.929050px;}
.y94{bottom:623.180850px;}
.yf4{bottom:629.210550px;}
.yd0{bottom:630.693900px;}
.y1f{bottom:635.329050px;}
.y93{bottom:640.508850px;}
.yf3{bottom:641.747550px;}
.ycf{bottom:647.047050px;}
.y1e{bottom:649.729050px;}
.y3{bottom:649.840500px;}
.yf2{bottom:654.284550px;}
.y92{bottom:654.908850px;}
.yce{bottom:663.395550px;}
.y1d{bottom:664.129050px;}
.yf1{bottom:666.821550px;}
.y91{bottom:672.236850px;}
.yf0{bottom:679.361550px;}
.ycd{bottom:679.744050px;}
.y90{bottom:686.636850px;}
.yef{bottom:691.931550px;}
.y1c{bottom:694.729050px;}
.ycc{bottom:696.094050px;}
.yee{bottom:704.468550px;}
.y1b{bottom:707.329050px;}
.y8f{bottom:708.284850px;}
.ycb{bottom:712.446900px;}
.yed{bottom:717.005550px;}
.y8e{bottom:722.684850px;}
.yca{bottom:728.795400px;}
.yec{bottom:729.542550px;}
.y1a{bottom:736.129050px;}
.yeb{bottom:742.079550px;}
.yc9{bottom:745.143900px;}
.y8d{bottom:746.270100px;}
.yea{bottom:754.616550px;}
.y8c{bottom:758.870100px;}
.yc8{bottom:761.494050px;}
.ye9{bottom:767.153550px;}
.y19{bottom:768.529050px;}
.y8b{bottom:771.470100px;}
.yc7{bottom:777.847050px;}
.ye8{bottom:779.690550px;}
.y8a{bottom:784.070100px;}
.y18{bottom:784.729050px;}
.ye7{bottom:792.227550px;}
.yc6{bottom:794.195550px;}
.ye6{bottom:804.764550px;}
.yc5{bottom:810.544050px;}
.y17{bottom:817.129050px;}
.ye5{bottom:817.301550px;}
.yc4{bottom:826.893900px;}
.y85{bottom:827.343900px;}
.y84{bottom:841.743900px;}
.yc3{bottom:843.245400px;}
.y16{bottom:845.929050px;}
.ye4{bottom:846.041400px;}
.y83{bottom:856.143900px;}
.yc2{bottom:859.593900px;}
.y15{bottom:860.329050px;}
.y82{bottom:870.543900px;}
.y14{bottom:874.729050px;}
.yc1{bottom:875.943900px;}
.ye3{bottom:883.841400px;}
.y81{bottom:884.943900px;}
.y13{bottom:889.129050px;}
.yc0{bottom:892.295400px;}
.y80{bottom:899.343900px;}
.ye2{bottom:900.041400px;}
.y12{bottom:903.529050px;}
.ybf{bottom:908.643900px;}
.y7f{bottom:913.743900px;}
.y11{bottom:917.929050px;}
.ybe{bottom:924.994050px;}
.y7e{bottom:928.143900px;}
.y10{bottom:932.329050px;}
.ye1{bottom:932.441550px;}
.y7d{bottom:942.543900px;}
.y7c{bottom:956.943900px;}
.ybd{bottom:957.703050px;}
.yf{bottom:961.129050px;}
.ye0{bottom:970.241550px;}
.y7b{bottom:971.343900px;}
.ybc{bottom:974.051550px;}
.y7a{bottom:985.743900px;}
.ydf{bottom:986.441550px;}
.ye{bottom:997.129050px;}
.y79{bottom:1000.143900px;}
.yde{bottom:1002.641550px;}
.ybb{bottom:1006.748550px;}
.y78{bottom:1014.543900px;}
.y89{bottom:1014.544050px;}
.y9{bottom:1015.577700px;}
.ydd{bottom:1018.841550px;}
.yba{bottom:1023.097050px;}
.y77{bottom:1028.943900px;}
.ydc{bottom:1035.041400px;}
.y8{bottom:1036.577700px;}
.yb9{bottom:1039.445550px;}
.y76{bottom:1043.343900px;}
.y88{bottom:1043.344050px;}
.yd{bottom:1043.929050px;}
.ydb{bottom:1051.241550px;}
.yb8{bottom:1055.794050px;}
.y75{bottom:1057.743900px;}
.y87{bottom:1057.744050px;}
.yda{bottom:1067.441550px;}
.yc{bottom:1069.129050px;}
.y74{bottom:1072.143900px;}
.y7{bottom:1073.327700px;}
.yd9{bottom:1083.641550px;}
.y73{bottom:1086.543900px;}
.y86{bottom:1086.544050px;}
.y6{bottom:1094.327700px;}
.yb{bottom:1094.329050px;}
.yd8{bottom:1099.841550px;}
.y72{bottom:1100.943900px;}
.ya{bottom:1150.865100px;}
.yb7{bottom:1151.912850px;}
.y71{bottom:1151.967600px;}
.h7{height:35.238000px;}
.hb{height:35.490000px;}
.h9{height:40.272000px;}
.h8{height:40.560000px;}
.h5{height:45.306000px;}
.ha{height:45.630000px;}
.h6{height:60.840000px;}
.hd{height:69.072000px;}
.hc{height:69.360000px;}
.h4{height:70.980000px;}
.h3{height:91.260000px;}
.h2{height:120.816000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.299150px;}
.x1c{left:110.754150px;}
.x2{left:122.286450px;}
.x22{left:130.185300px;}
.xe{left:133.074150px;}
.x1{left:136.063050px;}
.xb{left:138.621000px;}
.xc{left:173.523000px;}
.xf{left:183.280050px;}
.x1b{left:197.274150px;}
.x1a{left:217.338150px;}
.x23{left:243.720300px;}
.x10{left:263.537550px;}
.x5{left:269.483550px;}
.x7{left:272.423550px;}
.x8{left:322.823550px;}
.xa{left:325.521000px;}
.x6{left:330.215550px;}
.x21{left:380.910150px;}
.x3{left:383.030550px;}
.xd{left:392.601900px;}
.x11{left:403.721550px;}
.x4{left:438.617550px;}
.x12{left:457.114650px;}
.x13{left:483.885150px;}
.x1f{left:485.262150px;}
.x20{left:493.230150px;}
.x1d{left:496.290150px;}
.x1e{left:500.670150px;}
.x16{left:505.458150px;}
.x17{left:507.037650px;}
.x15{left:515.097150px;}
.x26{left:521.499150px;}
.x14{left:528.502650px;}
.x18{left:557.284650px;}
.x19{left:590.481150px;}
.x24{left:614.571150px;}
.x25{left:624.123150px;}
@media print{
.v4{vertical-align:-14.080533pt;}
.v1{vertical-align:-1.248000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.080000pt;}
.v3{vertical-align:25.600000pt;}
.ls6{letter-spacing:-1.706667pt;}
.ls7{letter-spacing:-1.066667pt;}
.ls3{letter-spacing:-0.768000pt;}
.ls13{letter-spacing:-0.767147pt;}
.ls11{letter-spacing:-0.618667pt;}
.ls14{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls5{letter-spacing:-0.336000pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.186667pt;}
.ls8{letter-spacing:-0.148480pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls12{letter-spacing:1.365333pt;}
.ls1{letter-spacing:5.294933pt;}
.lse{letter-spacing:8.736000pt;}
.ls2{letter-spacing:8.855467pt;}
.lsf{letter-spacing:9.934400pt;}
.ls10{letter-spacing:9.968000pt;}
.wsa{word-spacing:-37.333333pt;}
.ws94{word-spacing:-14.528000pt;}
.ws91{word-spacing:-11.392000pt;}
.ws5{word-spacing:-11.280000pt;}
.ws6{word-spacing:-10.944000pt;}
.ws3{word-spacing:-10.896000pt;}
.ws93{word-spacing:-10.416000pt;}
.ws64{word-spacing:-10.282667pt;}
.ws6c{word-spacing:-10.240000pt;}
.ws2{word-spacing:-10.128000pt;}
.ws1{word-spacing:-10.026667pt;}
.ws4{word-spacing:-9.685333pt;}
.ws95{word-spacing:-9.221333pt;}
.ws9{word-spacing:-8.773333pt;}
.ws8{word-spacing:-8.474667pt;}
.ws3f{word-spacing:-7.978667pt;}
.ws40{word-spacing:-5.666987pt;}
.ws90{word-spacing:-5.196800pt;}
.ws92{word-spacing:-5.048320pt;}
.ws7f{word-spacing:-4.650667pt;}
.ws7{word-spacing:-3.408000pt;}
.ws28{word-spacing:-3.168000pt;}
.ws76{word-spacing:-2.474667pt;}
.ws83{word-spacing:-1.877333pt;}
.ws2c{word-spacing:-1.872000pt;}
.ws3b{word-spacing:-1.824000pt;}
.ws27{word-spacing:-1.776000pt;}
.ws9c{word-spacing:-1.680000pt;}
.wsb0{word-spacing:-1.632000pt;}
.wsb1{word-spacing:-1.536000pt;}
.ws82{word-spacing:-1.322667pt;}
.ws55{word-spacing:-1.194667pt;}
.ws9b{word-spacing:-1.104000pt;}
.ws5f{word-spacing:-1.082667pt;}
.wsa9{word-spacing:-0.912000pt;}
.ws8c{word-spacing:-0.896000pt;}
.ws8d{word-spacing:-0.858667pt;}
.wsaa{word-spacing:-0.528000pt;}
.ws14{word-spacing:-0.512000pt;}
.ws8b{word-spacing:-0.485333pt;}
.ws15{word-spacing:-0.469333pt;}
.ws13{word-spacing:-0.448000pt;}
.ws5c{word-spacing:-0.298667pt;}
.ws60{word-spacing:-0.186667pt;}
.ws8e{word-spacing:-0.170667pt;}
.ws4c{word-spacing:-0.128000pt;}
.ws8f{word-spacing:-0.085333pt;}
.wsad{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws81{word-spacing:0.042667pt;}
.ws1d{word-spacing:0.240000pt;}
.ws3d{word-spacing:0.298667pt;}
.ws9d{word-spacing:0.336000pt;}
.ws18{word-spacing:0.341333pt;}
.ws7d{word-spacing:0.426667pt;}
.ws59{word-spacing:0.512000pt;}
.wsa0{word-spacing:0.576000pt;}
.ws5e{word-spacing:0.709333pt;}
.ws49{word-spacing:0.725333pt;}
.ws84{word-spacing:0.853333pt;}
.wsf{word-spacing:0.981333pt;}
.ws10{word-spacing:1.194667pt;}
.ws63{word-spacing:1.232000pt;}
.wsa2{word-spacing:1.248000pt;}
.ws58{word-spacing:1.322667pt;}
.wse{word-spacing:1.450667pt;}
.ws4a{word-spacing:1.493333pt;}
.wsa1{word-spacing:1.536000pt;}
.wsb3{word-spacing:1.568000pt;}
.ws85{word-spacing:1.578667pt;}
.ws9a{word-spacing:1.632000pt;}
.ws1a{word-spacing:1.664000pt;}
.ws4d{word-spacing:1.749333pt;}
.ws73{word-spacing:2.005333pt;}
.ws87{word-spacing:2.133333pt;}
.ws61{word-spacing:2.352000pt;}
.ws96{word-spacing:2.432000pt;}
.ws3e{word-spacing:2.464000pt;}
.wsa3{word-spacing:2.496000pt;}
.ws34{word-spacing:2.640000pt;}
.ws70{word-spacing:2.645333pt;}
.ws57{word-spacing:2.688000pt;}
.ws62{word-spacing:2.725333pt;}
.ws41{word-spacing:2.773333pt;}
.ws2a{word-spacing:2.832000pt;}
.ws72{word-spacing:2.901333pt;}
.ws45{word-spacing:3.072000pt;}
.wsc3{word-spacing:3.210667pt;}
.ws2b{word-spacing:3.264000pt;}
.ws4f{word-spacing:3.413333pt;}
.ws98{word-spacing:3.456000pt;}
.ws51{word-spacing:3.498667pt;}
.ws99{word-spacing:3.600000pt;}
.ws19{word-spacing:3.626667pt;}
.wsac{word-spacing:3.744000pt;}
.ws39{word-spacing:3.888000pt;}
.ws24{word-spacing:3.984000pt;}
.wsb8{word-spacing:3.994667pt;}
.ws16{word-spacing:4.010667pt;}
.ws52{word-spacing:4.096000pt;}
.ws9e{word-spacing:4.416000pt;}
.ws97{word-spacing:4.480000pt;}
.ws38{word-spacing:4.560000pt;}
.ws2d{word-spacing:4.752000pt;}
.ws33{word-spacing:4.800000pt;}
.ws29{word-spacing:4.848000pt;}
.ws7e{word-spacing:4.949333pt;}
.ws42{word-spacing:5.034667pt;}
.wsab{word-spacing:5.136000pt;}
.wsaf{word-spacing:5.328000pt;}
.wsc{word-spacing:5.333333pt;}
.ws5b{word-spacing:5.418667pt;}
.ws48{word-spacing:5.461333pt;}
.wsb{word-spacing:5.504000pt;}
.ws71{word-spacing:5.546667pt;}
.ws53{word-spacing:5.632000pt;}
.ws3a{word-spacing:5.760000pt;}
.ws11{word-spacing:5.930667pt;}
.ws77{word-spacing:6.101333pt;}
.ws17{word-spacing:6.186667pt;}
.ws2e{word-spacing:6.240000pt;}
.wsbc{word-spacing:6.272000pt;}
.wsd{word-spacing:6.314667pt;}
.ws1e{word-spacing:6.672000pt;}
.ws80{word-spacing:6.741333pt;}
.ws78{word-spacing:6.912000pt;}
.wsa7{word-spacing:7.056000pt;}
.wsae{word-spacing:7.104000pt;}
.ws4e{word-spacing:7.637333pt;}
.ws75{word-spacing:7.850667pt;}
.ws32{word-spacing:7.872000pt;}
.ws47{word-spacing:7.893333pt;}
.ws25{word-spacing:8.256000pt;}
.wsb9{word-spacing:8.437333pt;}
.wsa6{word-spacing:8.448000pt;}
.wsbf{word-spacing:8.512000pt;}
.ws3c{word-spacing:8.848000pt;}
.ws86{word-spacing:8.960000pt;}
.wsb5{word-spacing:9.034667pt;}
.ws1b{word-spacing:9.840000pt;}
.ws8a{word-spacing:9.856000pt;}
.ws12{word-spacing:9.968000pt;}
.ws46{word-spacing:10.069333pt;}
.wsb7{word-spacing:10.266667pt;}
.wsc0{word-spacing:10.976000pt;}
.ws89{word-spacing:11.008000pt;}
.ws74{word-spacing:11.349333pt;}
.ws36{word-spacing:11.424000pt;}
.ws43{word-spacing:11.434667pt;}
.wsbe{word-spacing:11.498667pt;}
.ws44{word-spacing:11.605333pt;}
.ws2f{word-spacing:11.616000pt;}
.wsb4{word-spacing:11.648000pt;}
.ws6f{word-spacing:11.861333pt;}
.ws1c{word-spacing:12.096000pt;}
.ws21{word-spacing:12.672000pt;}
.ws22{word-spacing:12.768000pt;}
.ws56{word-spacing:12.970667pt;}
.ws5d{word-spacing:13.354667pt;}
.ws88{word-spacing:13.440000pt;}
.ws37{word-spacing:13.488000pt;}
.ws30{word-spacing:13.680000pt;}
.ws35{word-spacing:13.824000pt;}
.ws7a{word-spacing:14.165333pt;}
.wsa4{word-spacing:14.256000pt;}
.ws50{word-spacing:14.421333pt;}
.wsbd{word-spacing:14.634667pt;}
.ws26{word-spacing:14.640000pt;}
.wsb2{word-spacing:15.120000pt;}
.ws5a{word-spacing:15.189333pt;}
.wsbb{word-spacing:15.530667pt;}
.ws54{word-spacing:15.914667pt;}
.ws31{word-spacing:16.368000pt;}
.ws9f{word-spacing:16.512000pt;}
.wsc2{word-spacing:17.061333pt;}
.wsa5{word-spacing:17.088000pt;}
.ws23{word-spacing:17.136000pt;}
.wsa8{word-spacing:17.760000pt;}
.ws4b{word-spacing:18.816000pt;}
.ws79{word-spacing:19.072000pt;}
.wsba{word-spacing:20.234667pt;}
.ws1f{word-spacing:20.304000pt;}
.ws20{word-spacing:23.616000pt;}
.wsc1{word-spacing:24.042667pt;}
.ws7c{word-spacing:25.002667pt;}
.wsb6{word-spacing:25.237333pt;}
.ws7b{word-spacing:27.904000pt;}
.ws65{word-spacing:99.413333pt;}
.ws6e{word-spacing:117.162667pt;}
.ws69{word-spacing:138.581333pt;}
.ws6b{word-spacing:140.288000pt;}
.ws6d{word-spacing:156.373333pt;}
.ws67{word-spacing:177.792000pt;}
.ws66{word-spacing:185.301333pt;}
.ws6a{word-spacing:193.365333pt;}
.ws68{word-spacing:208.938667pt;}
._16{margin-left:-27.875200pt;}
._18{margin-left:-25.301333pt;}
._37{margin-left:-14.592000pt;}
._0{margin-left:-13.696000pt;}
._c{margin-left:-10.368000pt;}
._2{margin-left:-9.344000pt;}
._9{margin-left:-7.296000pt;}
._1{margin-left:-5.120000pt;}
._e{margin-left:-4.204800pt;}
._5{margin-left:-3.264000pt;}
._13{margin-left:-2.321600pt;}
._6{margin-left:-1.052800pt;}
._4{width:1.152000pt;}
._7{width:2.098133pt;}
._3{width:3.059200pt;}
._15{width:4.096000pt;}
._a{width:5.248000pt;}
._b{width:6.182400pt;}
._11{width:7.500800pt;}
._12{width:8.563200pt;}
._1a{width:10.608000pt;}
._f{width:11.899200pt;}
._10{width:13.516800pt;}
._14{width:14.856533pt;}
._36{width:16.691200pt;}
._38{width:17.798400pt;}
._d{width:20.030400pt;}
._19{width:25.002667pt;}
._17{width:27.533867pt;}
._1c{width:31.488000pt;}
._1d{width:34.090667pt;}
._1f{width:156.288000pt;}
._34{width:163.370667pt;}
._29{width:166.954667pt;}
._20{width:182.528000pt;}
._28{width:195.498667pt;}
._25{width:206.165333pt;}
._21{width:207.701333pt;}
._30{width:210.090667pt;}
._32{width:213.248000pt;}
._33{width:223.914667pt;}
._31{width:229.248000pt;}
._2f{width:232.874667pt;}
._24{width:234.666667pt;}
._22{width:242.218667pt;}
._2b{width:245.333333pt;}
._23{width:252.885333pt;}
._2e{width:260.906667pt;}
._26{width:265.813333pt;}
._27{width:276.480000pt;}
._1b{width:338.944000pt;}
._8{width:433.920000pt;}
._2a{width:505.941333pt;}
._2c{width:529.706667pt;}
._2d{width:553.600000pt;}
._35{width:878.677333pt;}
._1e{width:1033.685333pt;}
.fs7{font-size:24.746667pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:50.864533pt;}
.y25{bottom:63.825200pt;}
.y26{bottom:76.783200pt;}
.y66{bottom:110.081467pt;}
.y5{bottom:113.975733pt;}
.y3f{bottom:114.870133pt;}
.y56{bottom:114.926133pt;}
.yb6{bottom:115.709200pt;}
.y65{bottom:122.881467pt;}
.y55{bottom:126.126133pt;}
.yb5{bottom:128.509200pt;}
.y3e{bottom:129.342133pt;}
.y64{bottom:135.681467pt;}
.y4{bottom:136.487733pt;}
.y54{bottom:137.326133pt;}
.y3d{bottom:143.814133pt;}
.yb4{bottom:143.911867pt;}
.y63{bottom:148.481467pt;}
.y53{bottom:148.526133pt;}
.yb3{bottom:156.711867pt;}
.y3c{bottom:158.286133pt;}
.y62{bottom:161.281467pt;}
.yb2{bottom:169.511867pt;}
.y3b{bottom:172.758133pt;}
.y52{bottom:174.006133pt;}
.y61{bottom:174.081467pt;}
.yb1{bottom:184.914533pt;}
.y60{bottom:186.881467pt;}
.y3a{bottom:187.230133pt;}
.y51{bottom:188.406133pt;}
.yb0{bottom:197.714533pt;}
.y5f{bottom:199.681467pt;}
.y39{bottom:201.702133pt;}
.y50{bottom:202.806133pt;}
.yaf{bottom:210.514533pt;}
.y5e{bottom:212.481467pt;}
.y38{bottom:216.174133pt;}
.y4f{bottom:217.206133pt;}
.y5d{bottom:225.281467pt;}
.yae{bottom:225.917200pt;}
.y37{bottom:230.646133pt;}
.y4e{bottom:231.606133pt;}
.y5c{bottom:238.081467pt;}
.yad{bottom:238.717200pt;}
.y36{bottom:245.118133pt;}
.y4d{bottom:246.006133pt;}
.y5b{bottom:250.881467pt;}
.yac{bottom:251.517200pt;}
.y35{bottom:259.590133pt;}
.y4c{bottom:260.406133pt;}
.y5a{bottom:263.681467pt;}
.yab{bottom:266.919867pt;}
.y34{bottom:274.062133pt;}
.y59{bottom:276.481467pt;}
.yaa{bottom:279.719867pt;}
.y33{bottom:288.534133pt;}
.y4b{bottom:289.206133pt;}
.y58{bottom:289.281467pt;}
.ya9{bottom:292.519867pt;}
.y57{bottom:302.081467pt;}
.y32{bottom:303.006133pt;}
.y4a{bottom:303.606133pt;}
.ya8{bottom:307.922533pt;}
.y31{bottom:317.478133pt;}
.y49{bottom:318.006133pt;}
.ya7{bottom:320.722533pt;}
.y30{bottom:331.950133pt;}
.y48{bottom:332.406133pt;}
.ya6{bottom:336.125200pt;}
.y70{bottom:342.324400pt;}
.y2f{bottom:346.422133pt;}
.y47{bottom:346.806133pt;}
.ya5{bottom:348.925200pt;}
.y6f{bottom:353.524400pt;}
.y2e{bottom:360.894133pt;}
.y46{bottom:361.206133pt;}
.ya4{bottom:364.327867pt;}
.y6e{bottom:364.724400pt;}
.y2{bottom:369.881733pt;}
.y2d{bottom:375.366133pt;}
.y45{bottom:375.606133pt;}
.y6d{bottom:375.924400pt;}
.ya3{bottom:377.127867pt;}
.y6c{bottom:387.124400pt;}
.y2c{bottom:389.838133pt;}
.y44{bottom:390.006133pt;}
.ya2{bottom:392.530533pt;}
.y6b{bottom:398.324400pt;}
.y100{bottom:399.043200pt;}
.y2b{bottom:404.310133pt;}
.y43{bottom:404.406133pt;}
.ya1{bottom:405.330533pt;}
.y6a{bottom:409.524400pt;}
.yff{bottom:409.709867pt;}
.y1{bottom:414.905733pt;}
.y2a{bottom:418.782133pt;}
.y42{bottom:418.806133pt;}
.yfe{bottom:420.376533pt;}
.y69{bottom:420.724400pt;}
.ya0{bottom:420.733200pt;}
.y68{bottom:431.924400pt;}
.y41{bottom:433.206133pt;}
.y29{bottom:433.254133pt;}
.y9f{bottom:433.533200pt;}
.y67{bottom:443.124400pt;}
.y9e{bottom:446.333200pt;}
.y40{bottom:447.606133pt;}
.y28{bottom:447.726133pt;}
.yd7{bottom:458.886133pt;}
.yfd{bottom:458.978133pt;}
.y9c{bottom:461.735867pt;}
.yfc{bottom:470.122133pt;}
.yd6{bottom:473.418133pt;}
.y9b{bottom:474.535867pt;}
.y9d{bottom:480.935867pt;}
.yfb{bottom:481.266133pt;}
.y9a{bottom:487.335867pt;}
.y24{bottom:487.936933pt;}
.yd5{bottom:487.950133pt;}
.yfa{bottom:492.410133pt;}
.y99{bottom:500.135867pt;}
.yd4{bottom:502.483467pt;}
.yf9{bottom:503.578267pt;}
.y23{bottom:513.536933pt;}
.yf8{bottom:514.722267pt;}
.y97{bottom:515.538533pt;}
.yd3{bottom:517.019600pt;}
.yf7{bottom:525.866267pt;}
.y22{bottom:526.336933pt;}
.y96{bottom:528.338533pt;}
.yd2{bottom:531.551600pt;}
.y98{bottom:534.738533pt;}
.yf6{bottom:537.010267pt;}
.y21{bottom:539.136933pt;}
.y95{bottom:541.138533pt;}
.yd1{bottom:546.083600pt;}
.yf5{bottom:548.154267pt;}
.y20{bottom:551.936933pt;}
.y94{bottom:553.938533pt;}
.yf4{bottom:559.298267pt;}
.yd0{bottom:560.616800pt;}
.y1f{bottom:564.736933pt;}
.y93{bottom:569.341200pt;}
.yf3{bottom:570.442267pt;}
.ycf{bottom:575.152933pt;}
.y1e{bottom:577.536933pt;}
.y3{bottom:577.636000pt;}
.yf2{bottom:581.586267pt;}
.y92{bottom:582.141200pt;}
.yce{bottom:589.684933pt;}
.y1d{bottom:590.336933pt;}
.yf1{bottom:592.730267pt;}
.y91{bottom:597.543867pt;}
.yf0{bottom:603.876933pt;}
.ycd{bottom:604.216933pt;}
.y90{bottom:610.343867pt;}
.yef{bottom:615.050267pt;}
.y1c{bottom:617.536933pt;}
.ycc{bottom:618.750267pt;}
.yee{bottom:626.194267pt;}
.y1b{bottom:628.736933pt;}
.y8f{bottom:629.586533pt;}
.ycb{bottom:633.286133pt;}
.yed{bottom:637.338267pt;}
.y8e{bottom:642.386533pt;}
.yca{bottom:647.818133pt;}
.yec{bottom:648.482267pt;}
.y1a{bottom:654.336933pt;}
.yeb{bottom:659.626267pt;}
.yc9{bottom:662.350133pt;}
.y8d{bottom:663.351200pt;}
.yea{bottom:670.770267pt;}
.y8c{bottom:674.551200pt;}
.yc8{bottom:676.883600pt;}
.ye9{bottom:681.914267pt;}
.y19{bottom:683.136933pt;}
.y8b{bottom:685.751200pt;}
.yc7{bottom:691.419600pt;}
.ye8{bottom:693.058267pt;}
.y8a{bottom:696.951200pt;}
.y18{bottom:697.536933pt;}
.ye7{bottom:704.202267pt;}
.yc6{bottom:705.951600pt;}
.ye6{bottom:715.346267pt;}
.yc5{bottom:720.483600pt;}
.y17{bottom:726.336933pt;}
.ye5{bottom:726.490267pt;}
.yc4{bottom:735.016800pt;}
.y85{bottom:735.416800pt;}
.y84{bottom:748.216800pt;}
.yc3{bottom:749.551467pt;}
.y16{bottom:751.936933pt;}
.ye4{bottom:752.036800pt;}
.y83{bottom:761.016800pt;}
.yc2{bottom:764.083467pt;}
.y15{bottom:764.736933pt;}
.y82{bottom:773.816800pt;}
.y14{bottom:777.536933pt;}
.yc1{bottom:778.616800pt;}
.ye3{bottom:785.636800pt;}
.y81{bottom:786.616800pt;}
.y13{bottom:790.336933pt;}
.yc0{bottom:793.151467pt;}
.y80{bottom:799.416800pt;}
.ye2{bottom:800.036800pt;}
.y12{bottom:803.136933pt;}
.ybf{bottom:807.683467pt;}
.y7f{bottom:812.216800pt;}
.y11{bottom:815.936933pt;}
.ybe{bottom:822.216933pt;}
.y7e{bottom:825.016800pt;}
.y10{bottom:828.736933pt;}
.ye1{bottom:828.836933pt;}
.y7d{bottom:837.816800pt;}
.y7c{bottom:850.616800pt;}
.ybd{bottom:851.291600pt;}
.yf{bottom:854.336933pt;}
.ye0{bottom:862.436933pt;}
.y7b{bottom:863.416800pt;}
.ybc{bottom:865.823600pt;}
.y7a{bottom:876.216800pt;}
.ydf{bottom:876.836933pt;}
.ye{bottom:886.336933pt;}
.y79{bottom:889.016800pt;}
.yde{bottom:891.236933pt;}
.ybb{bottom:894.887600pt;}
.y78{bottom:901.816800pt;}
.y89{bottom:901.816933pt;}
.y9{bottom:902.735733pt;}
.ydd{bottom:905.636933pt;}
.yba{bottom:909.419600pt;}
.y77{bottom:914.616800pt;}
.ydc{bottom:920.036800pt;}
.y8{bottom:921.402400pt;}
.yb9{bottom:923.951600pt;}
.y76{bottom:927.416800pt;}
.y88{bottom:927.416933pt;}
.yd{bottom:927.936933pt;}
.ydb{bottom:934.436933pt;}
.yb8{bottom:938.483600pt;}
.y75{bottom:940.216800pt;}
.y87{bottom:940.216933pt;}
.yda{bottom:948.836933pt;}
.yc{bottom:950.336933pt;}
.y74{bottom:953.016800pt;}
.y7{bottom:954.069067pt;}
.yd9{bottom:963.236933pt;}
.y73{bottom:965.816800pt;}
.y86{bottom:965.816933pt;}
.y6{bottom:972.735733pt;}
.yb{bottom:972.736933pt;}
.yd8{bottom:977.636933pt;}
.y72{bottom:978.616800pt;}
.ya{bottom:1022.991200pt;}
.yb7{bottom:1023.922533pt;}
.y71{bottom:1023.971200pt;}
.h7{height:31.322667pt;}
.hb{height:31.546667pt;}
.h9{height:35.797333pt;}
.h8{height:36.053333pt;}
.h5{height:40.272000pt;}
.ha{height:40.560000pt;}
.h6{height:54.080000pt;}
.hd{height:61.397333pt;}
.hc{height:61.653333pt;}
.h4{height:63.093333pt;}
.h3{height:81.120000pt;}
.h2{height:107.392000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.488133pt;}
.x1c{left:98.448133pt;}
.x2{left:108.699067pt;}
.x22{left:115.720267pt;}
.xe{left:118.288133pt;}
.x1{left:120.944933pt;}
.xb{left:123.218667pt;}
.xc{left:154.242667pt;}
.xf{left:162.915600pt;}
.x1b{left:175.354800pt;}
.x1a{left:193.189467pt;}
.x23{left:216.640267pt;}
.x10{left:234.255600pt;}
.x5{left:239.540933pt;}
.x7{left:242.154267pt;}
.x8{left:286.954267pt;}
.xa{left:289.352000pt;}
.x6{left:293.524933pt;}
.x21{left:338.586800pt;}
.x3{left:340.471600pt;}
.xd{left:348.979467pt;}
.x11{left:358.863600pt;}
.x4{left:389.882267pt;}
.x12{left:406.324133pt;}
.x13{left:430.120133pt;}
.x1f{left:431.344133pt;}
.x20{left:438.426800pt;}
.x1d{left:441.146800pt;}
.x1e{left:445.040133pt;}
.x16{left:449.296133pt;}
.x17{left:450.700133pt;}
.x15{left:457.864133pt;}
.x26{left:463.554800pt;}
.x14{left:469.780133pt;}
.x18{left:495.364133pt;}
.x19{left:524.872133pt;}
.x24{left:546.285467pt;}
.x25{left:554.776133pt;}
}




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