
    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_3cedc5c909f0dec677084388.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_289d4e03eb8fbbcdbd11b1ee.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_62569d13dd7f2dc8c370266a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_9a96c889a413cfa8da21ac5b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.851000;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_f2481a6141606a0ee55c3e70.woff')format("woff");}.ff5{font-family:ff5;line-height:1.045000;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_4d38958e081c49e14b36b903.woff')format("woff");}.ff6{font-family:ff6;line-height:0.705000;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_6046b2a236513ccdb60cfba3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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_5baa04ea42f0dcb89b1e730f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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_5a585d586fff4aeb5bfbcaf6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.070312;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_a313bc44baf8eedfe18bad1b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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);}
.v3{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.759400px;}
.v1{vertical-align:175.200000px;}
.ls4f{letter-spacing:-12.600000px;}
.ls64{letter-spacing:-8.400000px;}
.ls50{letter-spacing:-7.200000px;}
.ls66{letter-spacing:-3.600000px;}
.ls43{letter-spacing:-2.880000px;}
.ls37{letter-spacing:-2.808000px;}
.ls67{letter-spacing:-1.872000px;}
.ls30{letter-spacing:-1.440000px;}
.ls2f{letter-spacing:-1.368000px;}
.ls33{letter-spacing:-1.008000px;}
.ls44{letter-spacing:-0.864000px;}
.ls42{letter-spacing:-0.792000px;}
.ls3e{letter-spacing:-0.720000px;}
.ls5e{letter-spacing:-0.648000px;}
.ls25{letter-spacing:-0.504000px;}
.ls40{letter-spacing:-0.432000px;}
.ls23{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.300000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.144000px;}
.ls26{letter-spacing:-0.072000px;}
.ls18{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.000600px;}
.ls10{letter-spacing:0.072000px;}
.ls3c{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.648000px;}
.ls1a{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.ls17{letter-spacing:0.864000px;}
.ls22{letter-spacing:0.936000px;}
.ls5d{letter-spacing:1.080000px;}
.ls4e{letter-spacing:1.368000px;}
.ls45{letter-spacing:2.160000px;}
.ls3d{letter-spacing:2.232000px;}
.ls38{letter-spacing:2.376000px;}
.ls39{letter-spacing:2.448000px;}
.ls56{letter-spacing:2.664000px;}
.ls55{letter-spacing:2.736000px;}
.ls60{letter-spacing:2.880000px;}
.ls4c{letter-spacing:3.075000px;}
.ls5c{letter-spacing:3.312000px;}
.ls2{letter-spacing:3.360000px;}
.ls4{letter-spacing:3.420000px;}
.ls1{letter-spacing:3.480000px;}
.ls3{letter-spacing:3.540000px;}
.ls3b{letter-spacing:3.888000px;}
.ls61{letter-spacing:4.080000px;}
.ls1e{letter-spacing:4.320000px;}
.ls35{letter-spacing:4.392000px;}
.ls6{letter-spacing:4.560000px;}
.ls5f{letter-spacing:4.752000px;}
.ls47{letter-spacing:4.896000px;}
.ls41{letter-spacing:5.040000px;}
.ls63{letter-spacing:5.088000px;}
.ls34{letter-spacing:5.112000px;}
.ls29{letter-spacing:5.184000px;}
.ls21{letter-spacing:5.616000px;}
.ls2c{letter-spacing:5.688000px;}
.ls48{letter-spacing:5.904000px;}
.ls31{letter-spacing:6.060000px;}
.ls62{letter-spacing:6.144000px;}
.ls54{letter-spacing:6.192000px;}
.lsa{letter-spacing:6.624000px;}
.ls46{letter-spacing:6.696000px;}
.ls4b{letter-spacing:7.056000px;}
.ls28{letter-spacing:7.200000px;}
.ls32{letter-spacing:7.260000px;}
.ls0{letter-spacing:7.380000px;}
.lsb{letter-spacing:7.848000px;}
.ls58{letter-spacing:7.920000px;}
.ls57{letter-spacing:7.992000px;}
.ls59{letter-spacing:8.064000px;}
.ls4a{letter-spacing:8.136000px;}
.ls27{letter-spacing:8.220000px;}
.ls2e{letter-spacing:8.280000px;}
.ls2d{letter-spacing:8.400000px;}
.ls1d{letter-spacing:8.460000px;}
.ls49{letter-spacing:8.784000px;}
.ls2b{letter-spacing:9.072000px;}
.ls20{letter-spacing:9.144000px;}
.lsd{letter-spacing:9.216000px;}
.ls11{letter-spacing:9.288000px;}
.ls3a{letter-spacing:9.504000px;}
.ls5a{letter-spacing:9.576000px;}
.ls13{letter-spacing:9.648000px;}
.ls15{letter-spacing:9.720000px;}
.ls16{letter-spacing:9.792000px;}
.ls5b{letter-spacing:9.936000px;}
.ls53{letter-spacing:10.080000px;}
.ls7{letter-spacing:10.368407px;}
.ls5{letter-spacing:10.740000px;}
.ls4d{letter-spacing:11.016000px;}
.ls3f{letter-spacing:11.088000px;}
.ls51{letter-spacing:11.232000px;}
.lsf{letter-spacing:11.280000px;}
.ls52{letter-spacing:11.736000px;}
.ls65{letter-spacing:30.912000px;}
.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;}
}
.ws5b{word-spacing:-49.464000px;}
.ws3a{word-spacing:-49.392000px;}
.ws9{word-spacing:-49.320000px;}
.ws3b{word-spacing:-49.248000px;}
.ws3{word-spacing:-49.104000px;}
.ws8{word-spacing:-49.032000px;}
.ws5{word-spacing:-48.960000px;}
.ws6{word-spacing:-48.888000px;}
.ws1c{word-spacing:-48.816000px;}
.ws2c{word-spacing:-48.744000px;}
.ws38{word-spacing:-48.600000px;}
.ws2{word-spacing:-48.528000px;}
.ws34{word-spacing:-48.456000px;}
.ws45{word-spacing:-48.384000px;}
.ws46{word-spacing:-48.312000px;}
.ws33{word-spacing:-48.240000px;}
.ws1d{word-spacing:-48.168000px;}
.ws52{word-spacing:-48.096000px;}
.ws7{word-spacing:-47.820000px;}
.ws39{word-spacing:-47.808000px;}
.ws3c{word-spacing:-47.736000px;}
.ws44{word-spacing:-47.664000px;}
.ws63{word-spacing:-40.440000px;}
.ws1{word-spacing:-40.140000px;}
.ws53{word-spacing:-32.352000px;}
.ws64{word-spacing:-30.912000px;}
.ws27{word-spacing:-25.320000px;}
.ws2d{word-spacing:-25.260000px;}
.ws50{word-spacing:-23.328000px;}
.ws4{word-spacing:-20.232000px;}
.ws5a{word-spacing:-19.872000px;}
.ws1e{word-spacing:-19.728000px;}
.ws51{word-spacing:-19.512000px;}
.ws2b{word-spacing:-18.792000px;}
.ws3d{word-spacing:-17.352000px;}
.ws26{word-spacing:-16.860000px;}
.ws4f{word-spacing:-14.162400px;}
.ws61{word-spacing:-13.488000px;}
.ws60{word-spacing:-12.336000px;}
.ws56{word-spacing:-11.736000px;}
.ws55{word-spacing:-11.232000px;}
.ws3f{word-spacing:-11.088000px;}
.ws58{word-spacing:-10.080000px;}
.ws62{word-spacing:-9.888000px;}
.ws4c{word-spacing:-8.784000px;}
.ws2a{word-spacing:-8.520000px;}
.ws16{word-spacing:-8.460000px;}
.ws4e{word-spacing:-8.136000px;}
.ws15{word-spacing:-7.380000px;}
.ws31{word-spacing:-7.260000px;}
.ws49{word-spacing:-6.696000px;}
.ws30{word-spacing:-6.060000px;}
.ws4b{word-spacing:-5.904000px;}
.ws35{word-spacing:-5.112000px;}
.ws41{word-spacing:-5.040000px;}
.ws4a{word-spacing:-4.896000px;}
.ws5e{word-spacing:-2.448000px;}
.ws4d{word-spacing:-2.376000px;}
.ws48{word-spacing:-2.160000px;}
.ws57{word-spacing:-1.368000px;}
.ws5d{word-spacing:-1.080000px;}
.ws24{word-spacing:-0.936000px;}
.ws1b{word-spacing:-0.864000px;}
.ws1a{word-spacing:-0.792000px;}
.wsf{word-spacing:-0.720000px;}
.wse{word-spacing:-0.648000px;}
.ws19{word-spacing:-0.576000px;}
.ws14{word-spacing:-0.504000px;}
.ws12{word-spacing:-0.432000px;}
.ws29{word-spacing:-0.360000px;}
.ws28{word-spacing:-0.288000px;}
.ws2f{word-spacing:-0.216000px;}
.ws18{word-spacing:-0.144000px;}
.ws17{word-spacing:-0.072000px;}
.wsb{word-spacing:0.000000px;}
.ws23{word-spacing:0.072000px;}
.ws20{word-spacing:0.144000px;}
.ws10{word-spacing:0.216000px;}
.ws11{word-spacing:0.288000px;}
.wsa{word-spacing:0.300000px;}
.ws1f{word-spacing:0.360000px;}
.ws40{word-spacing:0.432000px;}
.ws21{word-spacing:0.504000px;}
.ws5f{word-spacing:0.648000px;}
.ws3e{word-spacing:0.720000px;}
.ws42{word-spacing:0.792000px;}
.ws47{word-spacing:0.864000px;}
.ws32{word-spacing:1.008000px;}
.wsc{word-spacing:1.140000px;}
.ws2e{word-spacing:1.368000px;}
.wsd{word-spacing:1.392000px;}
.ws59{word-spacing:1.440000px;}
.ws43{word-spacing:1.872000px;}
.ws37{word-spacing:2.808000px;}
.ws36{word-spacing:5.040000px;}
.ws22{word-spacing:5.112000px;}
.ws65{word-spacing:6.144000px;}
.ws54{word-spacing:7.200000px;}
.ws0{word-spacing:8.400000px;}
.ws5c{word-spacing:10.152000px;}
.ws13{word-spacing:10.584000px;}
.ws25{word-spacing:146.100000px;}
._13{margin-left:-948.900000px;}
._f{margin-left:-940.440000px;}
._1a{margin-left:-19.284000px;}
._9{margin-left:-15.660000px;}
._14{margin-left:-13.836000px;}
._19{margin-left:-12.072000px;}
._18{margin-left:-10.800000px;}
._16{margin-left:-9.420000px;}
._c{margin-left:-7.752000px;}
._10{margin-left:-5.940000px;}
._a{margin-left:-4.392000px;}
._3{margin-left:-3.000000px;}
._5{margin-left:-1.080000px;}
._2{width:1.140000px;}
._b{width:2.592000px;}
._1{width:3.840000px;}
._6{width:5.088000px;}
._11{width:6.168000px;}
._7{width:7.272000px;}
._4{width:8.400000px;}
._d{width:9.432000px;}
._8{width:10.944000px;}
._12{width:12.360000px;}
._e{width:13.500000px;}
._1b{width:16.200000px;}
._17{width:21.348000px;}
._1c{width:24.852000px;}
._15{width:31.646100px;}
._0{width:201.540000px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:35.700000px;}
.fs7{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:414.925800px;}
.y0{bottom:0.000000px;}
.y44{bottom:93.257850px;}
.y1{bottom:93.263700px;}
.y68{bottom:138.257850px;}
.y8e{bottom:138.263550px;}
.y43{bottom:138.263700px;}
.yda{bottom:138.264000px;}
.yb4{bottom:138.341700px;}
.yfd{bottom:139.319550px;}
.y1f{bottom:142.034250px;}
.y12a{bottom:142.529700px;}
.yd9{bottom:153.264000px;}
.y8d{bottom:157.471050px;}
.yb3{bottom:160.247700px;}
.y67{bottom:160.757850px;}
.y42{bottom:160.763700px;}
.y129{bottom:161.579700px;}
.yfc{bottom:162.413550px;}
.y1e{bottom:163.940250px;}
.yd8{bottom:168.264000px;}
.y128{bottom:180.629700px;}
.yb2{bottom:182.153700px;}
.y66{bottom:183.257850px;}
.y41{bottom:183.263700px;}
.yd7{bottom:183.264000px;}
.yfb{bottom:185.507550px;}
.y1d{bottom:185.846250px;}
.yd6{bottom:198.264000px;}
.y8c{bottom:199.013550px;}
.y127{bottom:199.679700px;}
.yb1{bottom:204.059700px;}
.y65{bottom:205.757850px;}
.y40{bottom:205.763700px;}
.y1c{bottom:207.752250px;}
.yfa{bottom:208.601550px;}
.yd5{bottom:213.264000px;}
.y126{bottom:218.729700px;}
.y8b{bottom:221.063550px;}
.yb0{bottom:225.965700px;}
.y64{bottom:228.257850px;}
.y3f{bottom:228.263700px;}
.yd4{bottom:228.264000px;}
.y1b{bottom:229.658250px;}
.yf9{bottom:231.695550px;}
.y125{bottom:237.779700px;}
.y8a{bottom:243.113550px;}
.yd3{bottom:247.471500px;}
.yaf{bottom:247.871700px;}
.y63{bottom:250.757850px;}
.y3e{bottom:250.763700px;}
.y1a{bottom:251.564250px;}
.yf8{bottom:254.789550px;}
.y124{bottom:256.829700px;}
.y89{bottom:265.163550px;}
.yae{bottom:269.777700px;}
.y62{bottom:273.257850px;}
.y3d{bottom:273.263700px;}
.y19{bottom:273.470250px;}
.y123{bottom:275.879700px;}
.yf7{bottom:277.883550px;}
.y88{bottom:287.213550px;}
.yd2{bottom:291.498000px;}
.yad{bottom:291.683700px;}
.y122{bottom:294.929700px;}
.y18{bottom:295.376250px;}
.y61{bottom:295.757850px;}
.y3c{bottom:295.763700px;}
.yf6{bottom:300.977550px;}
.y87{bottom:309.263550px;}
.yac{bottom:313.589700px;}
.y121{bottom:313.979700px;}
.yd1{bottom:313.998000px;}
.y17{bottom:317.282250px;}
.y60{bottom:318.257850px;}
.y3b{bottom:318.263700px;}
.yf5{bottom:324.071550px;}
.y86{bottom:331.313550px;}
.y120{bottom:333.029700px;}
.yab{bottom:335.495700px;}
.yd0{bottom:336.642000px;}
.y16{bottom:339.182250px;}
.y5f{bottom:340.757850px;}
.y3a{bottom:340.763700px;}
.yf4{bottom:347.165550px;}
.y11f{bottom:352.079700px;}
.y85{bottom:353.363700px;}
.yaa{bottom:357.401700px;}
.ycf{bottom:359.286000px;}
.y5e{bottom:363.257850px;}
.y39{bottom:363.263700px;}
.yf3{bottom:370.259550px;}
.y11e{bottom:371.129700px;}
.y84{bottom:375.413700px;}
.ya9{bottom:379.307700px;}
.yce{bottom:381.930000px;}
.y15{bottom:382.898100px;}
.y5d{bottom:385.757850px;}
.y38{bottom:385.763700px;}
.y11d{bottom:390.179700px;}
.yf2{bottom:393.353550px;}
.y83{bottom:397.463700px;}
.ya8{bottom:401.213700px;}
.ycd{bottom:404.574000px;}
.y14{bottom:404.804100px;}
.y5c{bottom:408.257850px;}
.y37{bottom:408.263700px;}
.y11c{bottom:415.595700px;}
.yf1{bottom:416.447550px;}
.y82{bottom:419.513700px;}
.ya7{bottom:423.119700px;}
.y13{bottom:426.710100px;}
.ycc{bottom:427.218000px;}
.y5b{bottom:430.757850px;}
.y36{bottom:430.763700px;}
.yf0{bottom:439.541550px;}
.y81{bottom:441.563700px;}
.ya6{bottom:445.025700px;}
.y12{bottom:448.616100px;}
.ycb{bottom:449.862000px;}
.y5a{bottom:453.257850px;}
.y35{bottom:453.263700px;}
.y11b{bottom:461.195700px;}
.yef{bottom:462.635550px;}
.y80{bottom:463.613700px;}
.ya5{bottom:466.931700px;}
.y11{bottom:470.522100px;}
.yca{bottom:472.506000px;}
.y59{bottom:475.757850px;}
.y34{bottom:475.763700px;}
.y11a{bottom:476.495700px;}
.y7f{bottom:485.663700px;}
.yee{bottom:485.729550px;}
.ya4{bottom:488.837700px;}
.y119{bottom:491.795700px;}
.y10{bottom:492.428100px;}
.yc9{bottom:495.150000px;}
.y58{bottom:498.257850px;}
.y33{bottom:498.263700px;}
.y118{bottom:507.095700px;}
.y7e{bottom:507.713700px;}
.yed{bottom:508.823550px;}
.ya3{bottom:510.743700px;}
.yf{bottom:514.334100px;}
.yc8{bottom:517.794000px;}
.y57{bottom:520.757850px;}
.y32{bottom:520.763700px;}
.y117{bottom:522.395700px;}
.y7d{bottom:529.763700px;}
.yec{bottom:531.917550px;}
.ya2{bottom:532.649700px;}
.ye{bottom:536.240100px;}
.y116{bottom:537.695700px;}
.yc7{bottom:540.438000px;}
.y56{bottom:543.257850px;}
.y31{bottom:543.263700px;}
.y7c{bottom:551.813700px;}
.y115{bottom:552.995700px;}
.ya1{bottom:554.555700px;}
.yeb{bottom:555.011550px;}
.yd{bottom:558.146100px;}
.yc6{bottom:563.082000px;}
.y55{bottom:565.757850px;}
.y30{bottom:565.763700px;}
.y114{bottom:568.295700px;}
.y7b{bottom:573.863700px;}
.ya0{bottom:576.461700px;}
.yea{bottom:578.105550px;}
.yc{bottom:580.052100px;}
.y113{bottom:583.595700px;}
.yc5{bottom:585.726000px;}
.y54{bottom:588.257850px;}
.y2f{bottom:588.263700px;}
.y7a{bottom:595.913700px;}
.y9f{bottom:598.367700px;}
.y112{bottom:598.895700px;}
.ye9{bottom:601.199550px;}
.yb{bottom:601.958100px;}
.yc4{bottom:608.370000px;}
.y53{bottom:610.757850px;}
.y2e{bottom:610.763700px;}
.y111{bottom:614.195700px;}
.y79{bottom:617.963700px;}
.y9e{bottom:620.273700px;}
.ya{bottom:623.864100px;}
.ye8{bottom:624.293550px;}
.y110{bottom:629.495700px;}
.yc3{bottom:631.085850px;}
.y69{bottom:633.257850px;}
.y2d{bottom:633.263700px;}
.y137{bottom:637.013700px;}
.y78{bottom:640.013700px;}
.y9d{bottom:642.179700px;}
.y10f{bottom:644.795700px;}
.y9{bottom:645.770100px;}
.y7{bottom:645.782100px;}
.ye7{bottom:647.387550px;}
.yc2{bottom:653.729850px;}
.y52{bottom:655.757850px;}
.y2c{bottom:655.763700px;}
.y10e{bottom:660.095700px;}
.y77{bottom:662.063700px;}
.y9c{bottom:664.085700px;}
.y8{bottom:667.676100px;}
.ye6{bottom:670.481550px;}
.y136{bottom:674.513700px;}
.yc1{bottom:676.373850px;}
.y51{bottom:678.257850px;}
.y2b{bottom:678.263700px;}
.y10d{bottom:681.779700px;}
.y76{bottom:684.113700px;}
.y9b{bottom:685.991700px;}
.y135{bottom:693.263700px;}
.ye5{bottom:693.575550px;}
.yc0{bottom:699.017850px;}
.y50{bottom:700.757850px;}
.y2a{bottom:700.763700px;}
.y75{bottom:706.163700px;}
.y9a{bottom:707.897700px;}
.ye4{bottom:716.669550px;}
.ybf{bottom:721.661850px;}
.y4f{bottom:723.257850px;}
.y29{bottom:723.263700px;}
.y10c{bottom:727.379700px;}
.y74{bottom:728.213700px;}
.y99{bottom:729.803700px;}
.ye3{bottom:739.763550px;}
.y10b{bottom:742.679700px;}
.ybe{bottom:744.305850px;}
.y4e{bottom:745.757850px;}
.y28{bottom:745.763700px;}
.y73{bottom:750.263700px;}
.y98{bottom:751.709700px;}
.y6{bottom:756.482250px;}
.y10a{bottom:757.979700px;}
.ye2{bottom:762.857550px;}
.y134{bottom:764.513700px;}
.ybd{bottom:766.949850px;}
.y4d{bottom:768.257850px;}
.y27{bottom:768.263700px;}
.y72{bottom:772.313700px;}
.y109{bottom:773.279700px;}
.y97{bottom:773.615700px;}
.y133{bottom:783.263700px;}
.ye1{bottom:785.957550px;}
.y108{bottom:788.579700px;}
.ybc{bottom:789.593850px;}
.y4c{bottom:790.757850px;}
.y26{bottom:790.763700px;}
.y71{bottom:794.363700px;}
.y96{bottom:795.521700px;}
.y5{bottom:798.618000px;}
.y132{bottom:802.013700px;}
.y107{bottom:803.879700px;}
.ybb{bottom:812.237850px;}
.y4b{bottom:813.257850px;}
.y25{bottom:813.263700px;}
.y70{bottom:816.413700px;}
.y95{bottom:817.427700px;}
.y106{bottom:819.179700px;}
.y131{bottom:820.763700px;}
.y4{bottom:821.118000px;}
.ye0{bottom:832.187850px;}
.y105{bottom:834.479700px;}
.yba{bottom:834.881850px;}
.y4a{bottom:835.757850px;}
.y6f{bottom:838.463700px;}
.y94{bottom:839.333700px;}
.y130{bottom:839.513700px;}
.y104{bottom:849.779700px;}
.ydf{bottom:855.281850px;}
.yb9{bottom:857.525850px;}
.y49{bottom:858.257850px;}
.y24{bottom:858.263700px;}
.y6e{bottom:860.513700px;}
.y93{bottom:861.239700px;}
.y103{bottom:865.079700px;}
.y12f{bottom:877.013700px;}
.yde{bottom:878.375850px;}
.yb8{bottom:880.169850px;}
.y102{bottom:880.379700px;}
.y48{bottom:880.757850px;}
.y23{bottom:880.763700px;}
.y6d{bottom:882.563700px;}
.y92{bottom:883.145700px;}
.y3{bottom:888.263700px;}
.y101{bottom:895.679700px;}
.y12e{bottom:895.763700px;}
.ydd{bottom:901.469850px;}
.yb7{bottom:902.825700px;}
.y47{bottom:903.257850px;}
.y22{bottom:903.263700px;}
.y6c{bottom:904.613700px;}
.y91{bottom:905.051700px;}
.y100{bottom:910.979700px;}
.y12d{bottom:914.513700px;}
.y2{bottom:918.263700px;}
.ydc{bottom:924.563850px;}
.yb6{bottom:925.469700px;}
.y46{bottom:925.757850px;}
.y21{bottom:925.763700px;}
.yff{bottom:926.279700px;}
.y6b{bottom:926.663700px;}
.y90{bottom:926.957700px;}
.y12c{bottom:933.263700px;}
.ydb{bottom:947.657850px;}
.yfe{bottom:947.963700px;}
.yb5{bottom:948.113700px;}
.y45{bottom:948.257850px;}
.y20{bottom:948.263700px;}
.y6a{bottom:948.713700px;}
.y8f{bottom:948.863700px;}
.y12b{bottom:952.013700px;}
.h7{height:24.630908px;}
.h9{height:39.888000px;}
.h8{height:40.757812px;}
.h4{height:50.580000px;}
.h2{height:50.947266px;}
.h5{height:61.136719px;}
.h3{height:101.894531px;}
.h6{height:290.448060px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x1{left:88.759800px;}
.x3{left:103.656150px;}
.x6{left:112.495950px;}
.x5{left:127.381950px;}
.x2{left:158.484150px;}
.x8{left:180.521250px;}
.x7{left:625.781250px;}
.x4{left:635.390550px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.119467pt;}
.v1{vertical-align:155.733333pt;}
.ls4f{letter-spacing:-11.200000pt;}
.ls64{letter-spacing:-7.466667pt;}
.ls50{letter-spacing:-6.400000pt;}
.ls66{letter-spacing:-3.200000pt;}
.ls43{letter-spacing:-2.560000pt;}
.ls37{letter-spacing:-2.496000pt;}
.ls67{letter-spacing:-1.664000pt;}
.ls30{letter-spacing:-1.280000pt;}
.ls2f{letter-spacing:-1.216000pt;}
.ls33{letter-spacing:-0.896000pt;}
.ls44{letter-spacing:-0.768000pt;}
.ls42{letter-spacing:-0.704000pt;}
.ls3e{letter-spacing:-0.640000pt;}
.ls5e{letter-spacing:-0.576000pt;}
.ls25{letter-spacing:-0.448000pt;}
.ls40{letter-spacing:-0.384000pt;}
.ls23{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.128000pt;}
.ls26{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.000533pt;}
.ls10{letter-spacing:0.064000pt;}
.ls3c{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.576000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.ls17{letter-spacing:0.768000pt;}
.ls22{letter-spacing:0.832000pt;}
.ls5d{letter-spacing:0.960000pt;}
.ls4e{letter-spacing:1.216000pt;}
.ls45{letter-spacing:1.920000pt;}
.ls3d{letter-spacing:1.984000pt;}
.ls38{letter-spacing:2.112000pt;}
.ls39{letter-spacing:2.176000pt;}
.ls56{letter-spacing:2.368000pt;}
.ls55{letter-spacing:2.432000pt;}
.ls60{letter-spacing:2.560000pt;}
.ls4c{letter-spacing:2.733333pt;}
.ls5c{letter-spacing:2.944000pt;}
.ls2{letter-spacing:2.986667pt;}
.ls4{letter-spacing:3.040000pt;}
.ls1{letter-spacing:3.093333pt;}
.ls3{letter-spacing:3.146667pt;}
.ls3b{letter-spacing:3.456000pt;}
.ls61{letter-spacing:3.626667pt;}
.ls1e{letter-spacing:3.840000pt;}
.ls35{letter-spacing:3.904000pt;}
.ls6{letter-spacing:4.053333pt;}
.ls5f{letter-spacing:4.224000pt;}
.ls47{letter-spacing:4.352000pt;}
.ls41{letter-spacing:4.480000pt;}
.ls63{letter-spacing:4.522667pt;}
.ls34{letter-spacing:4.544000pt;}
.ls29{letter-spacing:4.608000pt;}
.ls21{letter-spacing:4.992000pt;}
.ls2c{letter-spacing:5.056000pt;}
.ls48{letter-spacing:5.248000pt;}
.ls31{letter-spacing:5.386667pt;}
.ls62{letter-spacing:5.461333pt;}
.ls54{letter-spacing:5.504000pt;}
.lsa{letter-spacing:5.888000pt;}
.ls46{letter-spacing:5.952000pt;}
.ls4b{letter-spacing:6.272000pt;}
.ls28{letter-spacing:6.400000pt;}
.ls32{letter-spacing:6.453333pt;}
.ls0{letter-spacing:6.560000pt;}
.lsb{letter-spacing:6.976000pt;}
.ls58{letter-spacing:7.040000pt;}
.ls57{letter-spacing:7.104000pt;}
.ls59{letter-spacing:7.168000pt;}
.ls4a{letter-spacing:7.232000pt;}
.ls27{letter-spacing:7.306667pt;}
.ls2e{letter-spacing:7.360000pt;}
.ls2d{letter-spacing:7.466667pt;}
.ls1d{letter-spacing:7.520000pt;}
.ls49{letter-spacing:7.808000pt;}
.ls2b{letter-spacing:8.064000pt;}
.ls20{letter-spacing:8.128000pt;}
.lsd{letter-spacing:8.192000pt;}
.ls11{letter-spacing:8.256000pt;}
.ls3a{letter-spacing:8.448000pt;}
.ls5a{letter-spacing:8.512000pt;}
.ls13{letter-spacing:8.576000pt;}
.ls15{letter-spacing:8.640000pt;}
.ls16{letter-spacing:8.704000pt;}
.ls5b{letter-spacing:8.832000pt;}
.ls53{letter-spacing:8.960000pt;}
.ls7{letter-spacing:9.216362pt;}
.ls5{letter-spacing:9.546667pt;}
.ls4d{letter-spacing:9.792000pt;}
.ls3f{letter-spacing:9.856000pt;}
.ls51{letter-spacing:9.984000pt;}
.lsf{letter-spacing:10.026667pt;}
.ls52{letter-spacing:10.432000pt;}
.ls65{letter-spacing:27.477333pt;}
.ws5b{word-spacing:-43.968000pt;}
.ws3a{word-spacing:-43.904000pt;}
.ws9{word-spacing:-43.840000pt;}
.ws3b{word-spacing:-43.776000pt;}
.ws3{word-spacing:-43.648000pt;}
.ws8{word-spacing:-43.584000pt;}
.ws5{word-spacing:-43.520000pt;}
.ws6{word-spacing:-43.456000pt;}
.ws1c{word-spacing:-43.392000pt;}
.ws2c{word-spacing:-43.328000pt;}
.ws38{word-spacing:-43.200000pt;}
.ws2{word-spacing:-43.136000pt;}
.ws34{word-spacing:-43.072000pt;}
.ws45{word-spacing:-43.008000pt;}
.ws46{word-spacing:-42.944000pt;}
.ws33{word-spacing:-42.880000pt;}
.ws1d{word-spacing:-42.816000pt;}
.ws52{word-spacing:-42.752000pt;}
.ws7{word-spacing:-42.506667pt;}
.ws39{word-spacing:-42.496000pt;}
.ws3c{word-spacing:-42.432000pt;}
.ws44{word-spacing:-42.368000pt;}
.ws63{word-spacing:-35.946667pt;}
.ws1{word-spacing:-35.680000pt;}
.ws53{word-spacing:-28.757333pt;}
.ws64{word-spacing:-27.477333pt;}
.ws27{word-spacing:-22.506667pt;}
.ws2d{word-spacing:-22.453333pt;}
.ws50{word-spacing:-20.736000pt;}
.ws4{word-spacing:-17.984000pt;}
.ws5a{word-spacing:-17.664000pt;}
.ws1e{word-spacing:-17.536000pt;}
.ws51{word-spacing:-17.344000pt;}
.ws2b{word-spacing:-16.704000pt;}
.ws3d{word-spacing:-15.424000pt;}
.ws26{word-spacing:-14.986667pt;}
.ws4f{word-spacing:-12.588800pt;}
.ws61{word-spacing:-11.989333pt;}
.ws60{word-spacing:-10.965333pt;}
.ws56{word-spacing:-10.432000pt;}
.ws55{word-spacing:-9.984000pt;}
.ws3f{word-spacing:-9.856000pt;}
.ws58{word-spacing:-8.960000pt;}
.ws62{word-spacing:-8.789333pt;}
.ws4c{word-spacing:-7.808000pt;}
.ws2a{word-spacing:-7.573333pt;}
.ws16{word-spacing:-7.520000pt;}
.ws4e{word-spacing:-7.232000pt;}
.ws15{word-spacing:-6.560000pt;}
.ws31{word-spacing:-6.453333pt;}
.ws49{word-spacing:-5.952000pt;}
.ws30{word-spacing:-5.386667pt;}
.ws4b{word-spacing:-5.248000pt;}
.ws35{word-spacing:-4.544000pt;}
.ws41{word-spacing:-4.480000pt;}
.ws4a{word-spacing:-4.352000pt;}
.ws5e{word-spacing:-2.176000pt;}
.ws4d{word-spacing:-2.112000pt;}
.ws48{word-spacing:-1.920000pt;}
.ws57{word-spacing:-1.216000pt;}
.ws5d{word-spacing:-0.960000pt;}
.ws24{word-spacing:-0.832000pt;}
.ws1b{word-spacing:-0.768000pt;}
.ws1a{word-spacing:-0.704000pt;}
.wsf{word-spacing:-0.640000pt;}
.wse{word-spacing:-0.576000pt;}
.ws19{word-spacing:-0.512000pt;}
.ws14{word-spacing:-0.448000pt;}
.ws12{word-spacing:-0.384000pt;}
.ws29{word-spacing:-0.320000pt;}
.ws28{word-spacing:-0.256000pt;}
.ws2f{word-spacing:-0.192000pt;}
.ws18{word-spacing:-0.128000pt;}
.ws17{word-spacing:-0.064000pt;}
.wsb{word-spacing:0.000000pt;}
.ws23{word-spacing:0.064000pt;}
.ws20{word-spacing:0.128000pt;}
.ws10{word-spacing:0.192000pt;}
.ws11{word-spacing:0.256000pt;}
.wsa{word-spacing:0.266667pt;}
.ws1f{word-spacing:0.320000pt;}
.ws40{word-spacing:0.384000pt;}
.ws21{word-spacing:0.448000pt;}
.ws5f{word-spacing:0.576000pt;}
.ws3e{word-spacing:0.640000pt;}
.ws42{word-spacing:0.704000pt;}
.ws47{word-spacing:0.768000pt;}
.ws32{word-spacing:0.896000pt;}
.wsc{word-spacing:1.013333pt;}
.ws2e{word-spacing:1.216000pt;}
.wsd{word-spacing:1.237333pt;}
.ws59{word-spacing:1.280000pt;}
.ws43{word-spacing:1.664000pt;}
.ws37{word-spacing:2.496000pt;}
.ws36{word-spacing:4.480000pt;}
.ws22{word-spacing:4.544000pt;}
.ws65{word-spacing:5.461333pt;}
.ws54{word-spacing:6.400000pt;}
.ws0{word-spacing:7.466667pt;}
.ws5c{word-spacing:9.024000pt;}
.ws13{word-spacing:9.408000pt;}
.ws25{word-spacing:129.866667pt;}
._13{margin-left:-843.466667pt;}
._f{margin-left:-835.946667pt;}
._1a{margin-left:-17.141333pt;}
._9{margin-left:-13.920000pt;}
._14{margin-left:-12.298667pt;}
._19{margin-left:-10.730667pt;}
._18{margin-left:-9.600000pt;}
._16{margin-left:-8.373333pt;}
._c{margin-left:-6.890667pt;}
._10{margin-left:-5.280000pt;}
._a{margin-left:-3.904000pt;}
._3{margin-left:-2.666667pt;}
._5{margin-left:-0.960000pt;}
._2{width:1.013333pt;}
._b{width:2.304000pt;}
._1{width:3.413333pt;}
._6{width:4.522667pt;}
._11{width:5.482667pt;}
._7{width:6.464000pt;}
._4{width:7.466667pt;}
._d{width:8.384000pt;}
._8{width:9.728000pt;}
._12{width:10.986667pt;}
._e{width:12.000000pt;}
._1b{width:14.400000pt;}
._17{width:18.976000pt;}
._1c{width:22.090667pt;}
._15{width:28.129867pt;}
._0{width:179.146667pt;}
.fs6{font-size:31.733333pt;}
.fs7{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:368.822933pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:82.895867pt;}
.y1{bottom:82.901067pt;}
.y68{bottom:122.895867pt;}
.y8e{bottom:122.900933pt;}
.y43{bottom:122.901067pt;}
.yda{bottom:122.901333pt;}
.yb4{bottom:122.970400pt;}
.yfd{bottom:123.839600pt;}
.y1f{bottom:126.252667pt;}
.y12a{bottom:126.693067pt;}
.yd9{bottom:136.234667pt;}
.y8d{bottom:139.974267pt;}
.yb3{bottom:142.442400pt;}
.y67{bottom:142.895867pt;}
.y42{bottom:142.901067pt;}
.y129{bottom:143.626400pt;}
.yfc{bottom:144.367600pt;}
.y1e{bottom:145.724667pt;}
.yd8{bottom:149.568000pt;}
.y128{bottom:160.559733pt;}
.yb2{bottom:161.914400pt;}
.y66{bottom:162.895867pt;}
.y41{bottom:162.901067pt;}
.yd7{bottom:162.901333pt;}
.yfb{bottom:164.895600pt;}
.y1d{bottom:165.196667pt;}
.yd6{bottom:176.234667pt;}
.y8c{bottom:176.900933pt;}
.y127{bottom:177.493067pt;}
.yb1{bottom:181.386400pt;}
.y65{bottom:182.895867pt;}
.y40{bottom:182.901067pt;}
.y1c{bottom:184.668667pt;}
.yfa{bottom:185.423600pt;}
.yd5{bottom:189.568000pt;}
.y126{bottom:194.426400pt;}
.y8b{bottom:196.500933pt;}
.yb0{bottom:200.858400pt;}
.y64{bottom:202.895867pt;}
.y3f{bottom:202.901067pt;}
.yd4{bottom:202.901333pt;}
.y1b{bottom:204.140667pt;}
.yf9{bottom:205.951600pt;}
.y125{bottom:211.359733pt;}
.y8a{bottom:216.100933pt;}
.yd3{bottom:219.974667pt;}
.yaf{bottom:220.330400pt;}
.y63{bottom:222.895867pt;}
.y3e{bottom:222.901067pt;}
.y1a{bottom:223.612667pt;}
.yf8{bottom:226.479600pt;}
.y124{bottom:228.293067pt;}
.y89{bottom:235.700933pt;}
.yae{bottom:239.802400pt;}
.y62{bottom:242.895867pt;}
.y3d{bottom:242.901067pt;}
.y19{bottom:243.084667pt;}
.y123{bottom:245.226400pt;}
.yf7{bottom:247.007600pt;}
.y88{bottom:255.300933pt;}
.yd2{bottom:259.109333pt;}
.yad{bottom:259.274400pt;}
.y122{bottom:262.159733pt;}
.y18{bottom:262.556667pt;}
.y61{bottom:262.895867pt;}
.y3c{bottom:262.901067pt;}
.yf6{bottom:267.535600pt;}
.y87{bottom:274.900933pt;}
.yac{bottom:278.746400pt;}
.y121{bottom:279.093067pt;}
.yd1{bottom:279.109333pt;}
.y17{bottom:282.028667pt;}
.y60{bottom:282.895867pt;}
.y3b{bottom:282.901067pt;}
.yf5{bottom:288.063600pt;}
.y86{bottom:294.500933pt;}
.y120{bottom:296.026400pt;}
.yab{bottom:298.218400pt;}
.yd0{bottom:299.237333pt;}
.y16{bottom:301.495333pt;}
.y5f{bottom:302.895867pt;}
.y3a{bottom:302.901067pt;}
.yf4{bottom:308.591600pt;}
.y11f{bottom:312.959733pt;}
.y85{bottom:314.101067pt;}
.yaa{bottom:317.690400pt;}
.ycf{bottom:319.365333pt;}
.y5e{bottom:322.895867pt;}
.y39{bottom:322.901067pt;}
.yf3{bottom:329.119600pt;}
.y11e{bottom:329.893067pt;}
.y84{bottom:333.701067pt;}
.ya9{bottom:337.162400pt;}
.yce{bottom:339.493333pt;}
.y15{bottom:340.353867pt;}
.y5d{bottom:342.895867pt;}
.y38{bottom:342.901067pt;}
.y11d{bottom:346.826400pt;}
.yf2{bottom:349.647600pt;}
.y83{bottom:353.301067pt;}
.ya8{bottom:356.634400pt;}
.ycd{bottom:359.621333pt;}
.y14{bottom:359.825867pt;}
.y5c{bottom:362.895867pt;}
.y37{bottom:362.901067pt;}
.y11c{bottom:369.418400pt;}
.yf1{bottom:370.175600pt;}
.y82{bottom:372.901067pt;}
.ya7{bottom:376.106400pt;}
.y13{bottom:379.297867pt;}
.ycc{bottom:379.749333pt;}
.y5b{bottom:382.895867pt;}
.y36{bottom:382.901067pt;}
.yf0{bottom:390.703600pt;}
.y81{bottom:392.501067pt;}
.ya6{bottom:395.578400pt;}
.y12{bottom:398.769867pt;}
.ycb{bottom:399.877333pt;}
.y5a{bottom:402.895867pt;}
.y35{bottom:402.901067pt;}
.y11b{bottom:409.951733pt;}
.yef{bottom:411.231600pt;}
.y80{bottom:412.101067pt;}
.ya5{bottom:415.050400pt;}
.y11{bottom:418.241867pt;}
.yca{bottom:420.005333pt;}
.y59{bottom:422.895867pt;}
.y34{bottom:422.901067pt;}
.y11a{bottom:423.551733pt;}
.y7f{bottom:431.701067pt;}
.yee{bottom:431.759600pt;}
.ya4{bottom:434.522400pt;}
.y119{bottom:437.151733pt;}
.y10{bottom:437.713867pt;}
.yc9{bottom:440.133333pt;}
.y58{bottom:442.895867pt;}
.y33{bottom:442.901067pt;}
.y118{bottom:450.751733pt;}
.y7e{bottom:451.301067pt;}
.yed{bottom:452.287600pt;}
.ya3{bottom:453.994400pt;}
.yf{bottom:457.185867pt;}
.yc8{bottom:460.261333pt;}
.y57{bottom:462.895867pt;}
.y32{bottom:462.901067pt;}
.y117{bottom:464.351733pt;}
.y7d{bottom:470.901067pt;}
.yec{bottom:472.815600pt;}
.ya2{bottom:473.466400pt;}
.ye{bottom:476.657867pt;}
.y116{bottom:477.951733pt;}
.yc7{bottom:480.389333pt;}
.y56{bottom:482.895867pt;}
.y31{bottom:482.901067pt;}
.y7c{bottom:490.501067pt;}
.y115{bottom:491.551733pt;}
.ya1{bottom:492.938400pt;}
.yeb{bottom:493.343600pt;}
.yd{bottom:496.129867pt;}
.yc6{bottom:500.517333pt;}
.y55{bottom:502.895867pt;}
.y30{bottom:502.901067pt;}
.y114{bottom:505.151733pt;}
.y7b{bottom:510.101067pt;}
.ya0{bottom:512.410400pt;}
.yea{bottom:513.871600pt;}
.yc{bottom:515.601867pt;}
.y113{bottom:518.751733pt;}
.yc5{bottom:520.645333pt;}
.y54{bottom:522.895867pt;}
.y2f{bottom:522.901067pt;}
.y7a{bottom:529.701067pt;}
.y9f{bottom:531.882400pt;}
.y112{bottom:532.351733pt;}
.ye9{bottom:534.399600pt;}
.yb{bottom:535.073867pt;}
.yc4{bottom:540.773333pt;}
.y53{bottom:542.895867pt;}
.y2e{bottom:542.901067pt;}
.y111{bottom:545.951733pt;}
.y79{bottom:549.301067pt;}
.y9e{bottom:551.354400pt;}
.ya{bottom:554.545867pt;}
.ye8{bottom:554.927600pt;}
.y110{bottom:559.551733pt;}
.yc3{bottom:560.965200pt;}
.y69{bottom:562.895867pt;}
.y2d{bottom:562.901067pt;}
.y137{bottom:566.234400pt;}
.y78{bottom:568.901067pt;}
.y9d{bottom:570.826400pt;}
.y10f{bottom:573.151733pt;}
.y9{bottom:574.017867pt;}
.y7{bottom:574.028533pt;}
.ye7{bottom:575.455600pt;}
.yc2{bottom:581.093200pt;}
.y52{bottom:582.895867pt;}
.y2c{bottom:582.901067pt;}
.y10e{bottom:586.751733pt;}
.y77{bottom:588.501067pt;}
.y9c{bottom:590.298400pt;}
.y8{bottom:593.489867pt;}
.ye6{bottom:595.983600pt;}
.y136{bottom:599.567733pt;}
.yc1{bottom:601.221200pt;}
.y51{bottom:602.895867pt;}
.y2b{bottom:602.901067pt;}
.y10d{bottom:606.026400pt;}
.y76{bottom:608.101067pt;}
.y9b{bottom:609.770400pt;}
.y135{bottom:616.234400pt;}
.ye5{bottom:616.511600pt;}
.yc0{bottom:621.349200pt;}
.y50{bottom:622.895867pt;}
.y2a{bottom:622.901067pt;}
.y75{bottom:627.701067pt;}
.y9a{bottom:629.242400pt;}
.ye4{bottom:637.039600pt;}
.ybf{bottom:641.477200pt;}
.y4f{bottom:642.895867pt;}
.y29{bottom:642.901067pt;}
.y10c{bottom:646.559733pt;}
.y74{bottom:647.301067pt;}
.y99{bottom:648.714400pt;}
.ye3{bottom:657.567600pt;}
.y10b{bottom:660.159733pt;}
.ybe{bottom:661.605200pt;}
.y4e{bottom:662.895867pt;}
.y28{bottom:662.901067pt;}
.y73{bottom:666.901067pt;}
.y98{bottom:668.186400pt;}
.y6{bottom:672.428667pt;}
.y10a{bottom:673.759733pt;}
.ye2{bottom:678.095600pt;}
.y134{bottom:679.567733pt;}
.ybd{bottom:681.733200pt;}
.y4d{bottom:682.895867pt;}
.y27{bottom:682.901067pt;}
.y72{bottom:686.501067pt;}
.y109{bottom:687.359733pt;}
.y97{bottom:687.658400pt;}
.y133{bottom:696.234400pt;}
.ye1{bottom:698.628933pt;}
.y108{bottom:700.959733pt;}
.ybc{bottom:701.861200pt;}
.y4c{bottom:702.895867pt;}
.y26{bottom:702.901067pt;}
.y71{bottom:706.101067pt;}
.y96{bottom:707.130400pt;}
.y5{bottom:709.882667pt;}
.y132{bottom:712.901067pt;}
.y107{bottom:714.559733pt;}
.ybb{bottom:721.989200pt;}
.y4b{bottom:722.895867pt;}
.y25{bottom:722.901067pt;}
.y70{bottom:725.701067pt;}
.y95{bottom:726.602400pt;}
.y106{bottom:728.159733pt;}
.y131{bottom:729.567733pt;}
.y4{bottom:729.882667pt;}
.ye0{bottom:739.722533pt;}
.y105{bottom:741.759733pt;}
.yba{bottom:742.117200pt;}
.y4a{bottom:742.895867pt;}
.y6f{bottom:745.301067pt;}
.y94{bottom:746.074400pt;}
.y130{bottom:746.234400pt;}
.y104{bottom:755.359733pt;}
.ydf{bottom:760.250533pt;}
.yb9{bottom:762.245200pt;}
.y49{bottom:762.895867pt;}
.y24{bottom:762.901067pt;}
.y6e{bottom:764.901067pt;}
.y93{bottom:765.546400pt;}
.y103{bottom:768.959733pt;}
.y12f{bottom:779.567733pt;}
.yde{bottom:780.778533pt;}
.yb8{bottom:782.373200pt;}
.y102{bottom:782.559733pt;}
.y48{bottom:782.895867pt;}
.y23{bottom:782.901067pt;}
.y6d{bottom:784.501067pt;}
.y92{bottom:785.018400pt;}
.y3{bottom:789.567733pt;}
.y101{bottom:796.159733pt;}
.y12e{bottom:796.234400pt;}
.ydd{bottom:801.306533pt;}
.yb7{bottom:802.511733pt;}
.y47{bottom:802.895867pt;}
.y22{bottom:802.901067pt;}
.y6c{bottom:804.101067pt;}
.y91{bottom:804.490400pt;}
.y100{bottom:809.759733pt;}
.y12d{bottom:812.901067pt;}
.y2{bottom:816.234400pt;}
.ydc{bottom:821.834533pt;}
.yb6{bottom:822.639733pt;}
.y46{bottom:822.895867pt;}
.y21{bottom:822.901067pt;}
.yff{bottom:823.359733pt;}
.y6b{bottom:823.701067pt;}
.y90{bottom:823.962400pt;}
.y12c{bottom:829.567733pt;}
.ydb{bottom:842.362533pt;}
.yfe{bottom:842.634400pt;}
.yb5{bottom:842.767733pt;}
.y45{bottom:842.895867pt;}
.y20{bottom:842.901067pt;}
.y6a{bottom:843.301067pt;}
.y8f{bottom:843.434400pt;}
.y12b{bottom:846.234400pt;}
.h7{height:21.894141pt;}
.h9{height:35.456000pt;}
.h8{height:36.229167pt;}
.h4{height:44.960000pt;}
.h2{height:45.286458pt;}
.h5{height:54.343750pt;}
.h3{height:90.572917pt;}
.h6{height:258.176053pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x1{left:78.897600pt;}
.x3{left:92.138800pt;}
.x6{left:99.996400pt;}
.x5{left:113.228400pt;}
.x2{left:140.874800pt;}
.x8{left:160.463333pt;}
.x7{left:556.250000pt;}
.x4{left:564.791600pt;}
}




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