
    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_710304b604b6671ba3dd9c5a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_966db854183ea825ae86bbf0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_b9e8aeb5edc3b8a386979c60.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_14e54d8e0a450801eb852a37.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_00ea026ee6a28ec226c8e48a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_75a6c1dfa84c73e8745655d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_2fe10a704dc62cd85d50104a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_8def8b492ad353c6549b5972.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_2873bc6384fb0fd69d4d6eed.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.442800px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:21.619200px;}
.ls18{letter-spacing:-0.780000px;}
.ls5f{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.480000px;}
.ls41{letter-spacing:-0.300000px;}
.ls1a{letter-spacing:-0.240000px;}
.ls5e{letter-spacing:-0.180000px;}
.ls3a{letter-spacing:-0.120000px;}
.ls60{letter-spacing:-0.096000px;}
.ls1b{letter-spacing:-0.060000px;}
.ls61{letter-spacing:-0.048000px;}
.ls17{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004200px;}
.lsf{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.069600px;}
.ls6b{letter-spacing:0.096000px;}
.ls49{letter-spacing:0.120000px;}
.ls6c{letter-spacing:0.144000px;}
.ls34{letter-spacing:0.180000px;}
.ls64{letter-spacing:0.192000px;}
.ls2c{letter-spacing:0.240000px;}
.ls68{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.300000px;}
.ls56{letter-spacing:0.336000px;}
.ls8{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.420000px;}
.ls65{letter-spacing:0.432000px;}
.ls42{letter-spacing:0.480000px;}
.ls5b{letter-spacing:0.528000px;}
.lse{letter-spacing:0.540000px;}
.ls51{letter-spacing:0.576000px;}
.ls47{letter-spacing:0.600000px;}
.ls1c{letter-spacing:0.660000px;}
.ls48{letter-spacing:0.720000px;}
.ls4b{letter-spacing:0.768000px;}
.ls5{letter-spacing:0.780000px;}
.ls55{letter-spacing:0.816000px;}
.ls23{letter-spacing:0.840000px;}
.ls53{letter-spacing:0.864000px;}
.ls2{letter-spacing:0.900000px;}
.ls6a{letter-spacing:0.912000px;}
.ls24{letter-spacing:0.960000px;}
.ls7{letter-spacing:1.020000px;}
.ls4c{letter-spacing:1.056000px;}
.ls11{letter-spacing:1.080000px;}
.ls14{letter-spacing:1.140000px;}
.ls6{letter-spacing:1.200000px;}
.ls6e{letter-spacing:1.248000px;}
.ls15{letter-spacing:1.260000px;}
.ls1d{letter-spacing:1.320000px;}
.ls30{letter-spacing:1.380000px;}
.lsa{letter-spacing:1.440000px;}
.ls1f{letter-spacing:1.500000px;}
.ls5d{letter-spacing:1.536000px;}
.ls3{letter-spacing:1.560000px;}
.ls4{letter-spacing:1.620000px;}
.ls16{letter-spacing:1.680000px;}
.ls59{letter-spacing:1.728000px;}
.ls2f{letter-spacing:1.740000px;}
.ls21{letter-spacing:1.800000px;}
.ls66{letter-spacing:1.824000px;}
.ls31{letter-spacing:1.860000px;}
.ls2d{letter-spacing:1.920000px;}
.ls3b{letter-spacing:1.980000px;}
.ls32{letter-spacing:2.100000px;}
.ls52{letter-spacing:2.112000px;}
.ls13{letter-spacing:2.160000px;}
.ls67{letter-spacing:2.208000px;}
.lsd{letter-spacing:2.220000px;}
.ls12{letter-spacing:2.280000px;}
.ls4a{letter-spacing:2.340000px;}
.ls69{letter-spacing:2.352000px;}
.ls10{letter-spacing:2.400000px;}
.ls27{letter-spacing:2.460000px;}
.ls9{letter-spacing:2.520000px;}
.ls5c{letter-spacing:2.544000px;}
.lsb{letter-spacing:2.580000px;}
.ls58{letter-spacing:2.592000px;}
.ls54{letter-spacing:2.640000px;}
.ls44{letter-spacing:2.700000px;}
.ls28{letter-spacing:2.820000px;}
.ls6d{letter-spacing:2.880000px;}
.ls2b{letter-spacing:2.940000px;}
.ls62{letter-spacing:2.976000px;}
.ls20{letter-spacing:3.060000px;}
.lsc{letter-spacing:3.120000px;}
.ls46{letter-spacing:3.180000px;}
.ls40{letter-spacing:3.240000px;}
.ls3d{letter-spacing:3.300000px;}
.ls4f{letter-spacing:3.360000px;}
.ls3e{letter-spacing:3.540000px;}
.ls45{letter-spacing:3.660000px;}
.ls39{letter-spacing:3.780000px;}
.ls5a{letter-spacing:3.792000px;}
.ls29{letter-spacing:3.840000px;}
.ls4e{letter-spacing:4.020000px;}
.ls2a{letter-spacing:4.080000px;}
.ls36{letter-spacing:4.140000px;}
.ls6f{letter-spacing:4.368000px;}
.ls43{letter-spacing:4.380000px;}
.ls70{letter-spacing:4.416000px;}
.ls38{letter-spacing:4.560000px;}
.ls2e{letter-spacing:4.620000px;}
.ls35{letter-spacing:4.680000px;}
.ls63{letter-spacing:4.752000px;}
.ls1e{letter-spacing:4.800000px;}
.ls37{letter-spacing:4.860000px;}
.ls3c{letter-spacing:5.160000px;}
.ls57{letter-spacing:5.280000px;}
.ls3f{letter-spacing:5.520000px;}
.ls4d{letter-spacing:6.120000px;}
.ls26{letter-spacing:7.140000px;}
.ls25{letter-spacing:7.320000px;}
.ls50{letter-spacing:7.620000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-35.194800px;}
.ws18{word-spacing:-22.320000px;}
.ws26{word-spacing:-20.520000px;}
.ws19{word-spacing:-19.680000px;}
.ws2b{word-spacing:-18.660000px;}
.ws44{word-spacing:-18.300000px;}
.ws2c{word-spacing:-18.180000px;}
.ws14{word-spacing:-18.060000px;}
.ws43{word-spacing:-17.880000px;}
.ws4{word-spacing:-17.580000px;}
.ws48{word-spacing:-16.800000px;}
.ws2{word-spacing:-16.680000px;}
.ws63{word-spacing:-16.416000px;}
.ws7{word-spacing:-16.260000px;}
.ws5{word-spacing:-15.900000px;}
.ws64{word-spacing:-15.840000px;}
.ws2d{word-spacing:-15.480000px;}
.ws25{word-spacing:-15.420000px;}
.ws42{word-spacing:-15.360000px;}
.ws6{word-spacing:-15.060000px;}
.ws15{word-spacing:-15.000000px;}
.ws5f{word-spacing:-14.976000px;}
.ws17{word-spacing:-14.940000px;}
.ws45{word-spacing:-14.112000px;}
.ws61{word-spacing:-13.824000px;}
.ws16{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.344000px;}
.ws47{word-spacing:-12.960000px;}
.ws3{word-spacing:-12.510000px;}
.ws60{word-spacing:-12.192000px;}
.ws62{word-spacing:-12.096000px;}
.ws46{word-spacing:-12.000000px;}
.ws4b{word-spacing:-11.664000px;}
.ws1{word-spacing:-10.508400px;}
.ws50{word-spacing:-7.824000px;}
.ws4c{word-spacing:-7.776000px;}
.ws54{word-spacing:-7.680000px;}
.ws4f{word-spacing:-6.288000px;}
.ws53{word-spacing:-6.240000px;}
.ws5e{word-spacing:-4.800000px;}
.ws23{word-spacing:-4.200000px;}
.ws52{word-spacing:-3.840000px;}
.ws4d{word-spacing:-3.792000px;}
.ws24{word-spacing:-3.780000px;}
.ws37{word-spacing:-3.180000px;}
.ws1c{word-spacing:-3.120000px;}
.wsa{word-spacing:-2.886000px;}
.ws58{word-spacing:-2.700000px;}
.ws4a{word-spacing:-2.400000px;}
.ws10{word-spacing:-2.220000px;}
.ws13{word-spacing:-1.680000px;}
.ws11{word-spacing:-1.140000px;}
.ws68{word-spacing:-0.912000px;}
.wsf{word-spacing:-0.900000px;}
.ws5c{word-spacing:-0.816000px;}
.ws59{word-spacing:-0.768000px;}
.ws3d{word-spacing:-0.720000px;}
.ws30{word-spacing:-0.360000px;}
.ws67{word-spacing:-0.336000px;}
.ws3b{word-spacing:-0.240000px;}
.ws66{word-spacing:-0.192000px;}
.ws32{word-spacing:-0.060000px;}
.ws9{word-spacing:0.000000px;}
.ws5d{word-spacing:0.096000px;}
.ws35{word-spacing:0.300000px;}
.ws5b{word-spacing:0.432000px;}
.ws39{word-spacing:0.480000px;}
.ws3f{word-spacing:0.540000px;}
.ws1e{word-spacing:1.020000px;}
.ws69{word-spacing:1.296000px;}
.ws65{word-spacing:1.344000px;}
.ws55{word-spacing:1.560000px;}
.ws3e{word-spacing:1.620000px;}
.ws2f{word-spacing:1.680000px;}
.ws5a{word-spacing:1.824000px;}
.ws38{word-spacing:2.040000px;}
.ws36{word-spacing:2.220000px;}
.ws6a{word-spacing:2.400000px;}
.ws1f{word-spacing:2.460000px;}
.wse{word-spacing:2.520000px;}
.ws41{word-spacing:2.700000px;}
.ws29{word-spacing:2.784000px;}
.ws33{word-spacing:2.880000px;}
.ws21{word-spacing:2.940000px;}
.ws3c{word-spacing:3.000000px;}
.ws2e{word-spacing:3.180000px;}
.ws31{word-spacing:3.240000px;}
.ws34{word-spacing:3.300000px;}
.ws1d{word-spacing:3.360000px;}
.ws20{word-spacing:3.540000px;}
.ws6b{word-spacing:3.600000px;}
.wsd{word-spacing:3.660000px;}
.ws2a{word-spacing:3.792000px;}
.ws49{word-spacing:3.840000px;}
.ws12{word-spacing:3.900000px;}
.ws51{word-spacing:3.936000px;}
.ws4e{word-spacing:3.984000px;}
.ws1a{word-spacing:4.140000px;}
.ws28{word-spacing:4.200000px;}
.ws22{word-spacing:4.260000px;}
.ws3a{word-spacing:4.320000px;}
.ws1b{word-spacing:4.380000px;}
.ws40{word-spacing:4.680000px;}
.ws27{word-spacing:4.860000px;}
.wsc{word-spacing:4.920000px;}
.wsb{word-spacing:4.980000px;}
.ws56{word-spacing:5.460000px;}
.ws57{word-spacing:5.520000px;}
._a{margin-left:-2898.144000px;}
._b{margin-left:-2874.336000px;}
._f{margin-left:-11.914200px;}
._2{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.095000px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.080000px;}
._5{width:1.440000px;}
._7{width:3.420000px;}
._11{width:4.440000px;}
._6{width:5.520000px;}
._8{width:7.440000px;}
._9{width:9.360000px;}
._e{width:10.605600px;}
._c{width:55.824000px;}
._10{width:58.320000px;}
._d{width:63.840000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:27.000000px;}
.fs5{font-size:37.800000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y30{bottom:47.777250px;}
.y9e{bottom:83.460300px;}
.ya0{bottom:83.673000px;}
.y93{bottom:83.763450px;}
.yc2{bottom:83.770350px;}
.y102{bottom:83.772600px;}
.yd8{bottom:84.062100px;}
.y5d{bottom:86.718450px;}
.y19{bottom:88.026750px;}
.y137{bottom:95.121900px;}
.y9d{bottom:99.204300px;}
.y9f{bottom:99.417000px;}
.y92{bottom:101.763450px;}
.yc1{bottom:101.770350px;}
.y101{bottom:101.772600px;}
.yd7{bottom:102.062100px;}
.y18{bottom:103.023000px;}
.y5c{bottom:104.718450px;}
.y136{bottom:110.121900px;}
.y91{bottom:119.763450px;}
.yc0{bottom:119.770350px;}
.y100{bottom:119.772600px;}
.yd6{bottom:120.062100px;}
.y5b{bottom:122.718450px;}
.y135{bottom:125.121900px;}
.y90{bottom:137.763450px;}
.ybf{bottom:137.770350px;}
.yff{bottom:137.772600px;}
.yd5{bottom:138.062100px;}
.y134{bottom:140.121900px;}
.y5a{bottom:140.718450px;}
.y133{bottom:155.121900px;}
.y8f{bottom:155.763450px;}
.ybe{bottom:155.770350px;}
.yfe{bottom:155.772600px;}
.yd4{bottom:156.062100px;}
.y59{bottom:158.718450px;}
.y2b{bottom:168.457650px;}
.y132{bottom:170.121900px;}
.y8e{bottom:173.763450px;}
.ybd{bottom:173.770350px;}
.yfd{bottom:173.772600px;}
.yd3{bottom:174.062100px;}
.y58{bottom:176.718450px;}
.y131{bottom:185.121900px;}
.y2a{bottom:186.457650px;}
.y8d{bottom:191.763450px;}
.ybc{bottom:191.770350px;}
.yfc{bottom:191.772600px;}
.yd2{bottom:192.062100px;}
.y57{bottom:194.718450px;}
.y130{bottom:200.121900px;}
.y29{bottom:204.457650px;}
.y8c{bottom:209.763450px;}
.ybb{bottom:209.770350px;}
.yfb{bottom:209.772600px;}
.yd1{bottom:210.062100px;}
.y56{bottom:212.718450px;}
.y12f{bottom:215.121900px;}
.y28{bottom:222.457650px;}
.y8b{bottom:227.763450px;}
.yba{bottom:227.770350px;}
.yfa{bottom:227.772600px;}
.yd0{bottom:228.062100px;}
.y12e{bottom:230.121900px;}
.y55{bottom:230.718450px;}
.y27{bottom:240.457650px;}
.y12d{bottom:245.121900px;}
.y8a{bottom:245.763450px;}
.yb9{bottom:245.770350px;}
.yf9{bottom:245.772600px;}
.ycf{bottom:246.062100px;}
.y54{bottom:248.718450px;}
.y26{bottom:258.457650px;}
.y12c{bottom:260.121900px;}
.y89{bottom:263.763450px;}
.yb8{bottom:263.770350px;}
.yf8{bottom:263.772600px;}
.yce{bottom:264.062100px;}
.y53{bottom:266.718450px;}
.y12b{bottom:275.121900px;}
.y25{bottom:276.457650px;}
.y88{bottom:281.763450px;}
.yb7{bottom:281.770350px;}
.yf7{bottom:281.772600px;}
.ycd{bottom:282.062100px;}
.y12a{bottom:290.121900px;}
.y24{bottom:294.457650px;}
.yf6{bottom:299.367600px;}
.y87{bottom:299.763450px;}
.yb6{bottom:299.770350px;}
.ycc{bottom:300.062100px;}
.y52{bottom:302.718450px;}
.y129{bottom:305.121900px;}
.y23{bottom:312.457650px;}
.y86{bottom:317.763450px;}
.yb5{bottom:317.770350px;}
.ycb{bottom:318.062100px;}
.y128{bottom:320.121900px;}
.y51{bottom:320.718450px;}
.y22{bottom:330.457650px;}
.y127{bottom:335.121900px;}
.y85{bottom:335.763450px;}
.yb4{bottom:335.770350px;}
.yf5{bottom:335.772600px;}
.yca{bottom:336.062100px;}
.y50{bottom:338.718450px;}
.y21{bottom:348.457650px;}
.y126{bottom:350.121900px;}
.y84{bottom:353.763450px;}
.yb3{bottom:353.770350px;}
.yf4{bottom:353.772600px;}
.yc9{bottom:354.062100px;}
.y4f{bottom:356.718450px;}
.y125{bottom:365.121900px;}
.y20{bottom:366.457650px;}
.y83{bottom:371.763450px;}
.yb2{bottom:371.770350px;}
.yf3{bottom:371.772600px;}
.yc8{bottom:372.062100px;}
.y124{bottom:380.121900px;}
.y1f{bottom:384.457650px;}
.y82{bottom:389.763450px;}
.yb1{bottom:389.770350px;}
.yf2{bottom:389.772600px;}
.y4e{bottom:391.558950px;}
.y123{bottom:395.121900px;}
.y1e{bottom:402.457650px;}
.y4d{bottom:407.164950px;}
.yc7{bottom:407.657100px;}
.y81{bottom:407.763450px;}
.yb0{bottom:407.770350px;}
.yf1{bottom:407.772600px;}
.y122{bottom:410.121900px;}
.y1d{bottom:420.457650px;}
.y4c{bottom:421.540350px;}
.y121{bottom:425.121900px;}
.y80{bottom:425.763450px;}
.yaf{bottom:425.770350px;}
.yf0{bottom:425.772600px;}
.y1c{bottom:438.457650px;}
.y4b{bottom:439.135350px;}
.y120{bottom:440.121900px;}
.y7f{bottom:443.763450px;}
.yae{bottom:443.770350px;}
.yef{bottom:443.772600px;}
.yc6{bottom:443.912100px;}
.y11f{bottom:455.121900px;}
.y1b{bottom:456.457650px;}
.y7e{bottom:461.763450px;}
.yad{bottom:461.770350px;}
.yee{bottom:461.772600px;}
.yc5{bottom:461.912100px;}
.y11e{bottom:470.121900px;}
.y2d{bottom:474.457650px;}
.y4a{bottom:474.985350px;}
.y7d{bottom:479.763450px;}
.yac{bottom:479.770350px;}
.yc4{bottom:479.912100px;}
.y11d{bottom:485.121900px;}
.y1a{bottom:492.052650px;}
.y2c{bottom:492.457650px;}
.y49{bottom:497.230350px;}
.yed{bottom:497.367600px;}
.y7c{bottom:497.763450px;}
.yab{bottom:497.770350px;}
.y11c{bottom:500.121900px;}
.y11b{bottom:515.121900px;}
.yc3{bottom:515.515350px;}
.y7b{bottom:515.763450px;}
.yaa{bottom:515.770350px;}
.y11a{bottom:530.121900px;}
.y48{bottom:533.095350px;}
.y7a{bottom:533.763450px;}
.ya9{bottom:533.770350px;}
.y119{bottom:545.121900px;}
.yec{bottom:551.405250px;}
.y79{bottom:551.763450px;}
.ya8{bottom:551.770350px;}
.y118{bottom:560.121900px;}
.y17{bottom:565.154550px;}
.yeb{bottom:566.405250px;}
.y78{bottom:569.763450px;}
.ya7{bottom:569.770350px;}
.y117{bottom:575.121900px;}
.yea{bottom:581.405250px;}
.y16{bottom:583.160250px;}
.y47{bottom:587.635350px;}
.y77{bottom:587.763450px;}
.ya6{bottom:587.770350px;}
.y116{bottom:590.121900px;}
.ye9{bottom:596.405250px;}
.y115{bottom:605.121900px;}
.y46{bottom:605.635350px;}
.y76{bottom:605.763450px;}
.ya5{bottom:605.770350px;}
.y15{bottom:610.505250px;}
.ye8{bottom:611.405250px;}
.y114{bottom:620.121900px;}
.y45{bottom:623.635350px;}
.y75{bottom:623.763450px;}
.ya4{bottom:623.770350px;}
.ye7{bottom:626.405250px;}
.y14{bottom:628.505250px;}
.y113{bottom:635.121900px;}
.ye6{bottom:641.405250px;}
.y44{bottom:641.635350px;}
.y74{bottom:641.763450px;}
.ya3{bottom:641.770350px;}
.y13{bottom:646.505250px;}
.y112{bottom:650.121900px;}
.ye5{bottom:656.405250px;}
.y43{bottom:659.635350px;}
.y73{bottom:659.763450px;}
.ya2{bottom:659.770350px;}
.y12{bottom:664.505250px;}
.y111{bottom:665.121900px;}
.ye4{bottom:671.405250px;}
.y42{bottom:677.635350px;}
.y72{bottom:677.763450px;}
.y9c{bottom:677.770350px;}
.y110{bottom:680.121900px;}
.y151{bottom:680.263500px;}
.y11{bottom:682.505250px;}
.ye3{bottom:686.405250px;}
.y150{bottom:695.263500px;}
.y41{bottom:695.635350px;}
.y71{bottom:695.763450px;}
.y9b{bottom:695.770350px;}
.ye2{bottom:701.405250px;}
.y14f{bottom:710.263500px;}
.y10f{bottom:713.232600px;}
.y40{bottom:713.635350px;}
.y70{bottom:713.763450px;}
.y9a{bottom:713.770350px;}
.y10{bottom:715.640100px;}
.ye1{bottom:716.405250px;}
.y14e{bottom:725.263500px;}
.ye0{bottom:731.405250px;}
.y3f{bottom:731.635350px;}
.y6f{bottom:731.763450px;}
.y99{bottom:731.770350px;}
.y14d{bottom:740.263500px;}
.yf{bottom:740.968050px;}
.ydf{bottom:746.405250px;}
.y6e{bottom:749.763450px;}
.y98{bottom:749.770350px;}
.y14c{bottom:755.263500px;}
.yde{bottom:761.405250px;}
.y3e{bottom:767.230350px;}
.y6d{bottom:767.763450px;}
.y97{bottom:767.770350px;}
.y10e{bottom:767.772600px;}
.y14b{bottom:770.263500px;}
.ye{bottom:772.683600px;}
.ydd{bottom:776.405250px;}
.y14a{bottom:785.263500px;}
.y10d{bottom:785.367600px;}
.y6c{bottom:785.763450px;}
.y96{bottom:785.770350px;}
.yd{bottom:790.044300px;}
.ydc{bottom:791.405250px;}
.y149{bottom:800.263500px;}
.yc{bottom:803.544300px;}
.y6b{bottom:803.763450px;}
.y95{bottom:803.770350px;}
.ydb{bottom:806.405250px;}
.y148{bottom:815.263500px;}
.yb{bottom:817.044300px;}
.y10c{bottom:821.367600px;}
.y6a{bottom:821.763450px;}
.y3d{bottom:821.770350px;}
.y147{bottom:830.263500px;}
.ya{bottom:830.544300px;}
.y69{bottom:839.763450px;}
.y3c{bottom:839.770350px;}
.yda{bottom:839.920350px;}
.y9{bottom:840.183600px;}
.y146{bottom:845.263500px;}
.y10b{bottom:857.367600px;}
.yd9{bottom:857.515350px;}
.y8{bottom:857.544300px;}
.y68{bottom:857.763450px;}
.y3b{bottom:857.770350px;}
.y145{bottom:860.263500px;}
.y144{bottom:875.263500px;}
.y67{bottom:875.763450px;}
.y3a{bottom:875.770350px;}
.y7{bottom:887.830950px;}
.y143{bottom:890.263500px;}
.y66{bottom:893.763450px;}
.y39{bottom:893.770350px;}
.y10a{bottom:893.772600px;}
.y142{bottom:905.263500px;}
.y109{bottom:911.367600px;}
.y65{bottom:911.763450px;}
.y38{bottom:911.770350px;}
.y141{bottom:920.263500px;}
.y64{bottom:929.763450px;}
.y37{bottom:929.770350px;}
.y6{bottom:934.004400px;}
.y140{bottom:935.263500px;}
.y63{bottom:947.763450px;}
.y36{bottom:947.770350px;}
.y108{bottom:947.772600px;}
.y13f{bottom:950.263500px;}
.y13e{bottom:965.263500px;}
.y62{bottom:965.763450px;}
.y35{bottom:965.770350px;}
.y107{bottom:965.772600px;}
.y5{bottom:970.465200px;}
.y13d{bottom:980.263500px;}
.y61{bottom:983.763450px;}
.y34{bottom:983.770350px;}
.y106{bottom:983.772600px;}
.y13c{bottom:995.263500px;}
.y60{bottom:1001.763450px;}
.y33{bottom:1001.770350px;}
.y105{bottom:1001.772600px;}
.y4{bottom:1006.926000px;}
.y13b{bottom:1010.263500px;}
.y5f{bottom:1019.763450px;}
.y32{bottom:1019.770350px;}
.y104{bottom:1019.772600px;}
.y13a{bottom:1025.263500px;}
.y103{bottom:1037.367600px;}
.y5e{bottom:1037.763450px;}
.y31{bottom:1037.770350px;}
.y139{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y3{bottom:1071.618450px;}
.y138{bottom:1132.413900px;}
.y94{bottom:1132.418700px;}
.ya1{bottom:1132.421700px;}
.y152{bottom:1132.423500px;}
.y2f{bottom:1136.089500px;}
.y2e{bottom:1150.492500px;}
.h7{height:19.683105px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h8{height:32.805176px;}
.h15{height:33.328125px;}
.h14{height:33.351562px;}
.h4{height:34.945312px;}
.h12{height:34.968750px;}
.h11{height:34.992188px;}
.h13{height:37.520508px;}
.h10{height:41.660156px;}
.hf{height:41.689453px;}
.he{height:43.681641px;}
.hc{height:43.710938px;}
.hb{height:43.717434px;}
.ha{height:43.740234px;}
.h6{height:49.138634px;}
.h3{height:56.786133px;}
.h5{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:70.582650px;}
.xc{left:76.535400px;}
.x13{left:93.254250px;}
.xa{left:96.094500px;}
.x1{left:97.795200px;}
.x20{left:99.488850px;}
.x5{left:104.173200px;}
.x3{left:106.724400px;}
.xe{left:110.540400px;}
.x24{left:123.307050px;}
.x4{left:125.433000px;}
.x8{left:131.816400px;}
.xd{left:144.710400px;}
.x12{left:146.480400px;}
.x11{left:159.665400px;}
.x21{left:190.132350px;}
.x6{left:191.323650px;}
.x10{left:192.755400px;}
.x14{left:197.919750px;}
.xf{left:211.085400px;}
.x7{left:212.876400px;}
.xb{left:455.041500px;}
.x15{left:457.104150px;}
.x19{left:478.360350px;}
.x9{left:480.476400px;}
.x23{left:482.598600px;}
.x16{left:491.124150px;}
.x1e{left:495.354300px;}
.x1d{left:499.792350px;}
.x25{left:503.899050px;}
.x1f{left:508.110300px;}
.x1a{left:512.380350px;}
.x22{left:574.807350px;}
.x18{left:663.492300px;}
.x2{left:693.365400px;}
.x17{left:735.065400px;}
.x1b{left:756.325200px;}
@media print{
.v2{vertical-align:-13.726933pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:19.217067pt;}
.ls18{letter-spacing:-0.693333pt;}
.ls5f{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.426667pt;}
.ls41{letter-spacing:-0.266667pt;}
.ls1a{letter-spacing:-0.213333pt;}
.ls5e{letter-spacing:-0.160000pt;}
.ls3a{letter-spacing:-0.106667pt;}
.ls60{letter-spacing:-0.085333pt;}
.ls1b{letter-spacing:-0.053333pt;}
.ls61{letter-spacing:-0.042667pt;}
.ls17{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003733pt;}
.lsf{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.061867pt;}
.ls6b{letter-spacing:0.085333pt;}
.ls49{letter-spacing:0.106667pt;}
.ls6c{letter-spacing:0.128000pt;}
.ls34{letter-spacing:0.160000pt;}
.ls64{letter-spacing:0.170667pt;}
.ls2c{letter-spacing:0.213333pt;}
.ls68{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.266667pt;}
.ls56{letter-spacing:0.298667pt;}
.ls8{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.373333pt;}
.ls65{letter-spacing:0.384000pt;}
.ls42{letter-spacing:0.426667pt;}
.ls5b{letter-spacing:0.469333pt;}
.lse{letter-spacing:0.480000pt;}
.ls51{letter-spacing:0.512000pt;}
.ls47{letter-spacing:0.533333pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls48{letter-spacing:0.640000pt;}
.ls4b{letter-spacing:0.682667pt;}
.ls5{letter-spacing:0.693333pt;}
.ls55{letter-spacing:0.725333pt;}
.ls23{letter-spacing:0.746667pt;}
.ls53{letter-spacing:0.768000pt;}
.ls2{letter-spacing:0.800000pt;}
.ls6a{letter-spacing:0.810667pt;}
.ls24{letter-spacing:0.853333pt;}
.ls7{letter-spacing:0.906667pt;}
.ls4c{letter-spacing:0.938667pt;}
.ls11{letter-spacing:0.960000pt;}
.ls14{letter-spacing:1.013333pt;}
.ls6{letter-spacing:1.066667pt;}
.ls6e{letter-spacing:1.109333pt;}
.ls15{letter-spacing:1.120000pt;}
.ls1d{letter-spacing:1.173333pt;}
.ls30{letter-spacing:1.226667pt;}
.lsa{letter-spacing:1.280000pt;}
.ls1f{letter-spacing:1.333333pt;}
.ls5d{letter-spacing:1.365333pt;}
.ls3{letter-spacing:1.386667pt;}
.ls4{letter-spacing:1.440000pt;}
.ls16{letter-spacing:1.493333pt;}
.ls59{letter-spacing:1.536000pt;}
.ls2f{letter-spacing:1.546667pt;}
.ls21{letter-spacing:1.600000pt;}
.ls66{letter-spacing:1.621333pt;}
.ls31{letter-spacing:1.653333pt;}
.ls2d{letter-spacing:1.706667pt;}
.ls3b{letter-spacing:1.760000pt;}
.ls32{letter-spacing:1.866667pt;}
.ls52{letter-spacing:1.877333pt;}
.ls13{letter-spacing:1.920000pt;}
.ls67{letter-spacing:1.962667pt;}
.lsd{letter-spacing:1.973333pt;}
.ls12{letter-spacing:2.026667pt;}
.ls4a{letter-spacing:2.080000pt;}
.ls69{letter-spacing:2.090667pt;}
.ls10{letter-spacing:2.133333pt;}
.ls27{letter-spacing:2.186667pt;}
.ls9{letter-spacing:2.240000pt;}
.ls5c{letter-spacing:2.261333pt;}
.lsb{letter-spacing:2.293333pt;}
.ls58{letter-spacing:2.304000pt;}
.ls54{letter-spacing:2.346667pt;}
.ls44{letter-spacing:2.400000pt;}
.ls28{letter-spacing:2.506667pt;}
.ls6d{letter-spacing:2.560000pt;}
.ls2b{letter-spacing:2.613333pt;}
.ls62{letter-spacing:2.645333pt;}
.ls20{letter-spacing:2.720000pt;}
.lsc{letter-spacing:2.773333pt;}
.ls46{letter-spacing:2.826667pt;}
.ls40{letter-spacing:2.880000pt;}
.ls3d{letter-spacing:2.933333pt;}
.ls4f{letter-spacing:2.986667pt;}
.ls3e{letter-spacing:3.146667pt;}
.ls45{letter-spacing:3.253333pt;}
.ls39{letter-spacing:3.360000pt;}
.ls5a{letter-spacing:3.370667pt;}
.ls29{letter-spacing:3.413333pt;}
.ls4e{letter-spacing:3.573333pt;}
.ls2a{letter-spacing:3.626667pt;}
.ls36{letter-spacing:3.680000pt;}
.ls6f{letter-spacing:3.882667pt;}
.ls43{letter-spacing:3.893333pt;}
.ls70{letter-spacing:3.925333pt;}
.ls38{letter-spacing:4.053333pt;}
.ls2e{letter-spacing:4.106667pt;}
.ls35{letter-spacing:4.160000pt;}
.ls63{letter-spacing:4.224000pt;}
.ls1e{letter-spacing:4.266667pt;}
.ls37{letter-spacing:4.320000pt;}
.ls3c{letter-spacing:4.586667pt;}
.ls57{letter-spacing:4.693333pt;}
.ls3f{letter-spacing:4.906667pt;}
.ls4d{letter-spacing:5.440000pt;}
.ls26{letter-spacing:6.346667pt;}
.ls25{letter-spacing:6.506667pt;}
.ls50{letter-spacing:6.773333pt;}
.ws0{word-spacing:-31.284267pt;}
.ws18{word-spacing:-19.840000pt;}
.ws26{word-spacing:-18.240000pt;}
.ws19{word-spacing:-17.493333pt;}
.ws2b{word-spacing:-16.586667pt;}
.ws44{word-spacing:-16.266667pt;}
.ws2c{word-spacing:-16.160000pt;}
.ws14{word-spacing:-16.053333pt;}
.ws43{word-spacing:-15.893333pt;}
.ws4{word-spacing:-15.626667pt;}
.ws48{word-spacing:-14.933333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws63{word-spacing:-14.592000pt;}
.ws7{word-spacing:-14.453333pt;}
.ws5{word-spacing:-14.133333pt;}
.ws64{word-spacing:-14.080000pt;}
.ws2d{word-spacing:-13.760000pt;}
.ws25{word-spacing:-13.706667pt;}
.ws42{word-spacing:-13.653333pt;}
.ws6{word-spacing:-13.386667pt;}
.ws15{word-spacing:-13.333333pt;}
.ws5f{word-spacing:-13.312000pt;}
.ws17{word-spacing:-13.280000pt;}
.ws45{word-spacing:-12.544000pt;}
.ws61{word-spacing:-12.288000pt;}
.ws16{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.861333pt;}
.ws47{word-spacing:-11.520000pt;}
.ws3{word-spacing:-11.120000pt;}
.ws60{word-spacing:-10.837333pt;}
.ws62{word-spacing:-10.752000pt;}
.ws46{word-spacing:-10.666667pt;}
.ws4b{word-spacing:-10.368000pt;}
.ws1{word-spacing:-9.340800pt;}
.ws50{word-spacing:-6.954667pt;}
.ws4c{word-spacing:-6.912000pt;}
.ws54{word-spacing:-6.826667pt;}
.ws4f{word-spacing:-5.589333pt;}
.ws53{word-spacing:-5.546667pt;}
.ws5e{word-spacing:-4.266667pt;}
.ws23{word-spacing:-3.733333pt;}
.ws52{word-spacing:-3.413333pt;}
.ws4d{word-spacing:-3.370667pt;}
.ws24{word-spacing:-3.360000pt;}
.ws37{word-spacing:-2.826667pt;}
.ws1c{word-spacing:-2.773333pt;}
.wsa{word-spacing:-2.565333pt;}
.ws58{word-spacing:-2.400000pt;}
.ws4a{word-spacing:-2.133333pt;}
.ws10{word-spacing:-1.973333pt;}
.ws13{word-spacing:-1.493333pt;}
.ws11{word-spacing:-1.013333pt;}
.ws68{word-spacing:-0.810667pt;}
.wsf{word-spacing:-0.800000pt;}
.ws5c{word-spacing:-0.725333pt;}
.ws59{word-spacing:-0.682667pt;}
.ws3d{word-spacing:-0.640000pt;}
.ws30{word-spacing:-0.320000pt;}
.ws67{word-spacing:-0.298667pt;}
.ws3b{word-spacing:-0.213333pt;}
.ws66{word-spacing:-0.170667pt;}
.ws32{word-spacing:-0.053333pt;}
.ws9{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.085333pt;}
.ws35{word-spacing:0.266667pt;}
.ws5b{word-spacing:0.384000pt;}
.ws39{word-spacing:0.426667pt;}
.ws3f{word-spacing:0.480000pt;}
.ws1e{word-spacing:0.906667pt;}
.ws69{word-spacing:1.152000pt;}
.ws65{word-spacing:1.194667pt;}
.ws55{word-spacing:1.386667pt;}
.ws3e{word-spacing:1.440000pt;}
.ws2f{word-spacing:1.493333pt;}
.ws5a{word-spacing:1.621333pt;}
.ws38{word-spacing:1.813333pt;}
.ws36{word-spacing:1.973333pt;}
.ws6a{word-spacing:2.133333pt;}
.ws1f{word-spacing:2.186667pt;}
.wse{word-spacing:2.240000pt;}
.ws41{word-spacing:2.400000pt;}
.ws29{word-spacing:2.474667pt;}
.ws33{word-spacing:2.560000pt;}
.ws21{word-spacing:2.613333pt;}
.ws3c{word-spacing:2.666667pt;}
.ws2e{word-spacing:2.826667pt;}
.ws31{word-spacing:2.880000pt;}
.ws34{word-spacing:2.933333pt;}
.ws1d{word-spacing:2.986667pt;}
.ws20{word-spacing:3.146667pt;}
.ws6b{word-spacing:3.200000pt;}
.wsd{word-spacing:3.253333pt;}
.ws2a{word-spacing:3.370667pt;}
.ws49{word-spacing:3.413333pt;}
.ws12{word-spacing:3.466667pt;}
.ws51{word-spacing:3.498667pt;}
.ws4e{word-spacing:3.541333pt;}
.ws1a{word-spacing:3.680000pt;}
.ws28{word-spacing:3.733333pt;}
.ws22{word-spacing:3.786667pt;}
.ws3a{word-spacing:3.840000pt;}
.ws1b{word-spacing:3.893333pt;}
.ws40{word-spacing:4.160000pt;}
.ws27{word-spacing:4.320000pt;}
.wsc{word-spacing:4.373333pt;}
.wsb{word-spacing:4.426667pt;}
.ws56{word-spacing:4.853333pt;}
.ws57{word-spacing:4.906667pt;}
._a{margin-left:-2576.128000pt;}
._b{margin-left:-2554.965333pt;}
._f{margin-left:-10.590400pt;}
._2{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.640000pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.960000pt;}
._5{width:1.280000pt;}
._7{width:3.040000pt;}
._11{width:3.946667pt;}
._6{width:4.906667pt;}
._8{width:6.613333pt;}
._9{width:8.320000pt;}
._e{width:9.427200pt;}
._c{width:49.621333pt;}
._10{width:51.840000pt;}
._d{width:56.746667pt;}
.fs6{font-size:24.000000pt;}
.fs5{font-size:33.600000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y30{bottom:42.468667pt;}
.y9e{bottom:74.186933pt;}
.ya0{bottom:74.376000pt;}
.y93{bottom:74.456400pt;}
.yc2{bottom:74.462533pt;}
.y102{bottom:74.464533pt;}
.yd8{bottom:74.721867pt;}
.y5d{bottom:77.083067pt;}
.y19{bottom:78.246000pt;}
.y137{bottom:84.552800pt;}
.y9d{bottom:88.181600pt;}
.y9f{bottom:88.370667pt;}
.y92{bottom:90.456400pt;}
.yc1{bottom:90.462533pt;}
.y101{bottom:90.464533pt;}
.yd7{bottom:90.721867pt;}
.y18{bottom:91.576000pt;}
.y5c{bottom:93.083067pt;}
.y136{bottom:97.886133pt;}
.y91{bottom:106.456400pt;}
.yc0{bottom:106.462533pt;}
.y100{bottom:106.464533pt;}
.yd6{bottom:106.721867pt;}
.y5b{bottom:109.083067pt;}
.y135{bottom:111.219467pt;}
.y90{bottom:122.456400pt;}
.ybf{bottom:122.462533pt;}
.yff{bottom:122.464533pt;}
.yd5{bottom:122.721867pt;}
.y134{bottom:124.552800pt;}
.y5a{bottom:125.083067pt;}
.y133{bottom:137.886133pt;}
.y8f{bottom:138.456400pt;}
.ybe{bottom:138.462533pt;}
.yfe{bottom:138.464533pt;}
.yd4{bottom:138.721867pt;}
.y59{bottom:141.083067pt;}
.y2b{bottom:149.740133pt;}
.y132{bottom:151.219467pt;}
.y8e{bottom:154.456400pt;}
.ybd{bottom:154.462533pt;}
.yfd{bottom:154.464533pt;}
.yd3{bottom:154.721867pt;}
.y58{bottom:157.083067pt;}
.y131{bottom:164.552800pt;}
.y2a{bottom:165.740133pt;}
.y8d{bottom:170.456400pt;}
.ybc{bottom:170.462533pt;}
.yfc{bottom:170.464533pt;}
.yd2{bottom:170.721867pt;}
.y57{bottom:173.083067pt;}
.y130{bottom:177.886133pt;}
.y29{bottom:181.740133pt;}
.y8c{bottom:186.456400pt;}
.ybb{bottom:186.462533pt;}
.yfb{bottom:186.464533pt;}
.yd1{bottom:186.721867pt;}
.y56{bottom:189.083067pt;}
.y12f{bottom:191.219467pt;}
.y28{bottom:197.740133pt;}
.y8b{bottom:202.456400pt;}
.yba{bottom:202.462533pt;}
.yfa{bottom:202.464533pt;}
.yd0{bottom:202.721867pt;}
.y12e{bottom:204.552800pt;}
.y55{bottom:205.083067pt;}
.y27{bottom:213.740133pt;}
.y12d{bottom:217.886133pt;}
.y8a{bottom:218.456400pt;}
.yb9{bottom:218.462533pt;}
.yf9{bottom:218.464533pt;}
.ycf{bottom:218.721867pt;}
.y54{bottom:221.083067pt;}
.y26{bottom:229.740133pt;}
.y12c{bottom:231.219467pt;}
.y89{bottom:234.456400pt;}
.yb8{bottom:234.462533pt;}
.yf8{bottom:234.464533pt;}
.yce{bottom:234.721867pt;}
.y53{bottom:237.083067pt;}
.y12b{bottom:244.552800pt;}
.y25{bottom:245.740133pt;}
.y88{bottom:250.456400pt;}
.yb7{bottom:250.462533pt;}
.yf7{bottom:250.464533pt;}
.ycd{bottom:250.721867pt;}
.y12a{bottom:257.886133pt;}
.y24{bottom:261.740133pt;}
.yf6{bottom:266.104533pt;}
.y87{bottom:266.456400pt;}
.yb6{bottom:266.462533pt;}
.ycc{bottom:266.721867pt;}
.y52{bottom:269.083067pt;}
.y129{bottom:271.219467pt;}
.y23{bottom:277.740133pt;}
.y86{bottom:282.456400pt;}
.yb5{bottom:282.462533pt;}
.ycb{bottom:282.721867pt;}
.y128{bottom:284.552800pt;}
.y51{bottom:285.083067pt;}
.y22{bottom:293.740133pt;}
.y127{bottom:297.886133pt;}
.y85{bottom:298.456400pt;}
.yb4{bottom:298.462533pt;}
.yf5{bottom:298.464533pt;}
.yca{bottom:298.721867pt;}
.y50{bottom:301.083067pt;}
.y21{bottom:309.740133pt;}
.y126{bottom:311.219467pt;}
.y84{bottom:314.456400pt;}
.yb3{bottom:314.462533pt;}
.yf4{bottom:314.464533pt;}
.yc9{bottom:314.721867pt;}
.y4f{bottom:317.083067pt;}
.y125{bottom:324.552800pt;}
.y20{bottom:325.740133pt;}
.y83{bottom:330.456400pt;}
.yb2{bottom:330.462533pt;}
.yf3{bottom:330.464533pt;}
.yc8{bottom:330.721867pt;}
.y124{bottom:337.886133pt;}
.y1f{bottom:341.740133pt;}
.y82{bottom:346.456400pt;}
.yb1{bottom:346.462533pt;}
.yf2{bottom:346.464533pt;}
.y4e{bottom:348.052400pt;}
.y123{bottom:351.219467pt;}
.y1e{bottom:357.740133pt;}
.y4d{bottom:361.924400pt;}
.yc7{bottom:362.361867pt;}
.y81{bottom:362.456400pt;}
.yb0{bottom:362.462533pt;}
.yf1{bottom:362.464533pt;}
.y122{bottom:364.552800pt;}
.y1d{bottom:373.740133pt;}
.y4c{bottom:374.702533pt;}
.y121{bottom:377.886133pt;}
.y80{bottom:378.456400pt;}
.yaf{bottom:378.462533pt;}
.yf0{bottom:378.464533pt;}
.y1c{bottom:389.740133pt;}
.y4b{bottom:390.342533pt;}
.y120{bottom:391.219467pt;}
.y7f{bottom:394.456400pt;}
.yae{bottom:394.462533pt;}
.yef{bottom:394.464533pt;}
.yc6{bottom:394.588533pt;}
.y11f{bottom:404.552800pt;}
.y1b{bottom:405.740133pt;}
.y7e{bottom:410.456400pt;}
.yad{bottom:410.462533pt;}
.yee{bottom:410.464533pt;}
.yc5{bottom:410.588533pt;}
.y11e{bottom:417.886133pt;}
.y2d{bottom:421.740133pt;}
.y4a{bottom:422.209200pt;}
.y7d{bottom:426.456400pt;}
.yac{bottom:426.462533pt;}
.yc4{bottom:426.588533pt;}
.y11d{bottom:431.219467pt;}
.y1a{bottom:437.380133pt;}
.y2c{bottom:437.740133pt;}
.y49{bottom:441.982533pt;}
.yed{bottom:442.104533pt;}
.y7c{bottom:442.456400pt;}
.yab{bottom:442.462533pt;}
.y11c{bottom:444.552800pt;}
.y11b{bottom:457.886133pt;}
.yc3{bottom:458.235867pt;}
.y7b{bottom:458.456400pt;}
.yaa{bottom:458.462533pt;}
.y11a{bottom:471.219467pt;}
.y48{bottom:473.862533pt;}
.y7a{bottom:474.456400pt;}
.ya9{bottom:474.462533pt;}
.y119{bottom:484.552800pt;}
.yec{bottom:490.138000pt;}
.y79{bottom:490.456400pt;}
.ya8{bottom:490.462533pt;}
.y118{bottom:497.886133pt;}
.y17{bottom:502.359600pt;}
.yeb{bottom:503.471333pt;}
.y78{bottom:506.456400pt;}
.ya7{bottom:506.462533pt;}
.y117{bottom:511.219467pt;}
.yea{bottom:516.804667pt;}
.y16{bottom:518.364667pt;}
.y47{bottom:522.342533pt;}
.y77{bottom:522.456400pt;}
.ya6{bottom:522.462533pt;}
.y116{bottom:524.552800pt;}
.ye9{bottom:530.138000pt;}
.y115{bottom:537.886133pt;}
.y46{bottom:538.342533pt;}
.y76{bottom:538.456400pt;}
.ya5{bottom:538.462533pt;}
.y15{bottom:542.671333pt;}
.ye8{bottom:543.471333pt;}
.y114{bottom:551.219467pt;}
.y45{bottom:554.342533pt;}
.y75{bottom:554.456400pt;}
.ya4{bottom:554.462533pt;}
.ye7{bottom:556.804667pt;}
.y14{bottom:558.671333pt;}
.y113{bottom:564.552800pt;}
.ye6{bottom:570.138000pt;}
.y44{bottom:570.342533pt;}
.y74{bottom:570.456400pt;}
.ya3{bottom:570.462533pt;}
.y13{bottom:574.671333pt;}
.y112{bottom:577.886133pt;}
.ye5{bottom:583.471333pt;}
.y43{bottom:586.342533pt;}
.y73{bottom:586.456400pt;}
.ya2{bottom:586.462533pt;}
.y12{bottom:590.671333pt;}
.y111{bottom:591.219467pt;}
.ye4{bottom:596.804667pt;}
.y42{bottom:602.342533pt;}
.y72{bottom:602.456400pt;}
.y9c{bottom:602.462533pt;}
.y110{bottom:604.552800pt;}
.y151{bottom:604.678667pt;}
.y11{bottom:606.671333pt;}
.ye3{bottom:610.138000pt;}
.y150{bottom:618.012000pt;}
.y41{bottom:618.342533pt;}
.y71{bottom:618.456400pt;}
.y9b{bottom:618.462533pt;}
.ye2{bottom:623.471333pt;}
.y14f{bottom:631.345333pt;}
.y10f{bottom:633.984533pt;}
.y40{bottom:634.342533pt;}
.y70{bottom:634.456400pt;}
.y9a{bottom:634.462533pt;}
.y10{bottom:636.124533pt;}
.ye1{bottom:636.804667pt;}
.y14e{bottom:644.678667pt;}
.ye0{bottom:650.138000pt;}
.y3f{bottom:650.342533pt;}
.y6f{bottom:650.456400pt;}
.y99{bottom:650.462533pt;}
.y14d{bottom:658.012000pt;}
.yf{bottom:658.638267pt;}
.ydf{bottom:663.471333pt;}
.y6e{bottom:666.456400pt;}
.y98{bottom:666.462533pt;}
.y14c{bottom:671.345333pt;}
.yde{bottom:676.804667pt;}
.y3e{bottom:681.982533pt;}
.y6d{bottom:682.456400pt;}
.y97{bottom:682.462533pt;}
.y10e{bottom:682.464533pt;}
.y14b{bottom:684.678667pt;}
.ye{bottom:686.829867pt;}
.ydd{bottom:690.138000pt;}
.y14a{bottom:698.012000pt;}
.y10d{bottom:698.104533pt;}
.y6c{bottom:698.456400pt;}
.y96{bottom:698.462533pt;}
.yd{bottom:702.261600pt;}
.ydc{bottom:703.471333pt;}
.y149{bottom:711.345333pt;}
.yc{bottom:714.261600pt;}
.y6b{bottom:714.456400pt;}
.y95{bottom:714.462533pt;}
.ydb{bottom:716.804667pt;}
.y148{bottom:724.678667pt;}
.yb{bottom:726.261600pt;}
.y10c{bottom:730.104533pt;}
.y6a{bottom:730.456400pt;}
.y3d{bottom:730.462533pt;}
.y147{bottom:738.012000pt;}
.ya{bottom:738.261600pt;}
.y69{bottom:746.456400pt;}
.y3c{bottom:746.462533pt;}
.yda{bottom:746.595867pt;}
.y9{bottom:746.829867pt;}
.y146{bottom:751.345333pt;}
.y10b{bottom:762.104533pt;}
.yd9{bottom:762.235867pt;}
.y8{bottom:762.261600pt;}
.y68{bottom:762.456400pt;}
.y3b{bottom:762.462533pt;}
.y145{bottom:764.678667pt;}
.y144{bottom:778.012000pt;}
.y67{bottom:778.456400pt;}
.y3a{bottom:778.462533pt;}
.y7{bottom:789.183067pt;}
.y143{bottom:791.345333pt;}
.y66{bottom:794.456400pt;}
.y39{bottom:794.462533pt;}
.y10a{bottom:794.464533pt;}
.y142{bottom:804.678667pt;}
.y109{bottom:810.104533pt;}
.y65{bottom:810.456400pt;}
.y38{bottom:810.462533pt;}
.y141{bottom:818.012000pt;}
.y64{bottom:826.456400pt;}
.y37{bottom:826.462533pt;}
.y6{bottom:830.226133pt;}
.y140{bottom:831.345333pt;}
.y63{bottom:842.456400pt;}
.y36{bottom:842.462533pt;}
.y108{bottom:842.464533pt;}
.y13f{bottom:844.678667pt;}
.y13e{bottom:858.012000pt;}
.y62{bottom:858.456400pt;}
.y35{bottom:858.462533pt;}
.y107{bottom:858.464533pt;}
.y5{bottom:862.635733pt;}
.y13d{bottom:871.345333pt;}
.y61{bottom:874.456400pt;}
.y34{bottom:874.462533pt;}
.y106{bottom:874.464533pt;}
.y13c{bottom:884.678667pt;}
.y60{bottom:890.456400pt;}
.y33{bottom:890.462533pt;}
.y105{bottom:890.464533pt;}
.y4{bottom:895.045333pt;}
.y13b{bottom:898.012000pt;}
.y5f{bottom:906.456400pt;}
.y32{bottom:906.462533pt;}
.y104{bottom:906.464533pt;}
.y13a{bottom:911.345333pt;}
.y103{bottom:922.104533pt;}
.y5e{bottom:922.456400pt;}
.y31{bottom:922.462533pt;}
.y139{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y3{bottom:952.549733pt;}
.y138{bottom:1006.590133pt;}
.y94{bottom:1006.594400pt;}
.ya1{bottom:1006.597067pt;}
.y152{bottom:1006.598667pt;}
.y2f{bottom:1009.857333pt;}
.y2e{bottom:1022.660000pt;}
.h7{height:17.496094pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h8{height:29.160156pt;}
.h15{height:29.625000pt;}
.h14{height:29.645833pt;}
.h4{height:31.062500pt;}
.h12{height:31.083333pt;}
.h11{height:31.104167pt;}
.h13{height:33.351562pt;}
.h10{height:37.031250pt;}
.hf{height:37.057292pt;}
.he{height:38.828125pt;}
.hc{height:38.854167pt;}
.hb{height:38.859942pt;}
.ha{height:38.880208pt;}
.h6{height:43.678785pt;}
.h3{height:50.476562pt;}
.h5{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:62.740133pt;}
.xc{left:68.031467pt;}
.x13{left:82.892667pt;}
.xa{left:85.417333pt;}
.x1{left:86.929067pt;}
.x20{left:88.434533pt;}
.x5{left:92.598400pt;}
.x3{left:94.866133pt;}
.xe{left:98.258133pt;}
.x24{left:109.606267pt;}
.x4{left:111.496000pt;}
.x8{left:117.170133pt;}
.xd{left:128.631467pt;}
.x12{left:130.204800pt;}
.x11{left:141.924800pt;}
.x21{left:169.006533pt;}
.x6{left:170.065467pt;}
.x10{left:171.338133pt;}
.x14{left:175.928667pt;}
.xf{left:187.631467pt;}
.x7{left:189.223467pt;}
.xb{left:404.481333pt;}
.x15{left:406.314800pt;}
.x19{left:425.209200pt;}
.x9{left:427.090133pt;}
.x23{left:428.976533pt;}
.x16{left:436.554800pt;}
.x1e{left:440.314933pt;}
.x1d{left:444.259867pt;}
.x25{left:447.910267pt;}
.x1f{left:451.653600pt;}
.x1a{left:455.449200pt;}
.x22{left:510.939867pt;}
.x18{left:589.770933pt;}
.x2{left:616.324800pt;}
.x17{left:653.391467pt;}
.x1b{left:672.289067pt;}
}




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