
    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_40fceec44781044eeebaf73b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_8d997ccaa604292401ed07b3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0b2257f1ae96df83422dbbd7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-27.360000px;}
.v3{vertical-align:-18.000000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:9.360000px;}
.v6{vertical-align:18.000000px;}
.v5{vertical-align:33.120000px;}
.v1{vertical-align:48.982320px;}
.ls39{letter-spacing:-1.296000px;}
.ls2a{letter-spacing:-1.061280px;}
.ls26{letter-spacing:-1.013040px;}
.ls27{letter-spacing:-0.916560px;}
.ls25{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.675360px;}
.ls20{letter-spacing:-0.594000px;}
.ls2b{letter-spacing:-0.576000px;}
.ls41{letter-spacing:-0.486000px;}
.ls12{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.336960px;}
.ls7{letter-spacing:-0.324000px;}
.ls28{letter-spacing:-0.288000px;}
.ls23{letter-spacing:-0.241200px;}
.ls21{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.192960px;}
.ls43{letter-spacing:-0.191520px;}
.lsc{letter-spacing:-0.167760px;}
.lsf{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.119520px;}
.lsd{letter-spacing:-0.084240px;}
.ls10{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.096480px;}
.ls3f{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.120240px;}
.ls0{letter-spacing:0.131760px;}
.ls11{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.239040px;}
.ls4{letter-spacing:0.288000px;}
.ls44{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.482400px;}
.ls2f{letter-spacing:1.584000px;}
.ls3e{letter-spacing:5.184000px;}
.ls38{letter-spacing:6.624000px;}
.ls3d{letter-spacing:8.784000px;}
.ls29{letter-spacing:9.504000px;}
.ls30{letter-spacing:12.384000px;}
.ls1e{letter-spacing:13.824000px;}
.ls1d{letter-spacing:15.984000px;}
.ls32{letter-spacing:20.304000px;}
.ls1f{letter-spacing:24.624000px;}
.ls3a{letter-spacing:25.344000px;}
.ls2c{letter-spacing:26.064000px;}
.ls33{letter-spacing:27.504000px;}
.ls37{letter-spacing:28.224000px;}
.ls19{letter-spacing:31.104000px;}
.ls3c{letter-spacing:31.824000px;}
.ls36{letter-spacing:32.544000px;}
.ls16{letter-spacing:40.464000px;}
.ls5{letter-spacing:49.824000px;}
.ls14{letter-spacing:51.264000px;}
.ls40{letter-spacing:54.864000px;}
.ls18{letter-spacing:58.464000px;}
.ls42{letter-spacing:59.184000px;}
.ls35{letter-spacing:67.824000px;}
.ls13{letter-spacing:92.304000px;}
.ls1c{letter-spacing:101.664000px;}
.ls34{letter-spacing:115.344000px;}
.ls3b{letter-spacing:119.115360px;}
.ls17{letter-spacing:134.064000px;}
.ls1b{letter-spacing:141.984000px;}
.ls1a{letter-spacing:162.144000px;}
.ls15{letter-spacing:166.464000px;}
.ls2{letter-spacing:394.088400px;}
.ls2e{letter-spacing:440.064000px;}
.ls2d{letter-spacing:440.784000px;}
.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;}
}
.ws1{word-spacing:-23.334480px;}
.ws75{word-spacing:-20.376000px;}
.ws3{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.160000px;}
.ws4e{word-spacing:-20.088000px;}
.ws7{word-spacing:-20.016000px;}
.ws4{word-spacing:-19.944000px;}
.ws2{word-spacing:-19.872000px;}
.ws2a{word-spacing:-19.800000px;}
.ws6{word-spacing:-19.584000px;}
.ws40{word-spacing:-19.440000px;}
.ws55{word-spacing:-18.720000px;}
.ws72{word-spacing:-14.526000px;}
.ws19{word-spacing:-13.410720px;}
.ws0{word-spacing:-13.217760px;}
.ws2b{word-spacing:-12.735360px;}
.ws2c{word-spacing:-12.494160px;}
.ws56{word-spacing:-12.397680px;}
.ws66{word-spacing:-2.304000px;}
.ws59{word-spacing:-1.584000px;}
.ws14{word-spacing:-0.864000px;}
.ws18{word-spacing:-0.504000px;}
.ws31{word-spacing:-0.482400px;}
.wsd{word-spacing:-0.360720px;}
.wsb{word-spacing:-0.298800px;}
.ws21{word-spacing:-0.288000px;}
.ws10{word-spacing:-0.241200px;}
.wsa{word-spacing:-0.216000px;}
.ws16{word-spacing:-0.144000px;}
.ws8{word-spacing:0.000000px;}
.wsc{word-spacing:0.059760px;}
.ws29{word-spacing:0.144000px;}
.ws76{word-spacing:0.191520px;}
.ws3b{word-spacing:0.192960px;}
.ws17{word-spacing:0.216000px;}
.ws32{word-spacing:0.241200px;}
.ws36{word-spacing:0.288000px;}
.wsf{word-spacing:0.335520px;}
.ws3f{word-spacing:0.432000px;}
.wse{word-spacing:0.482400px;}
.ws73{word-spacing:0.486000px;}
.ws9{word-spacing:0.540000px;}
.ws41{word-spacing:0.576000px;}
.ws11{word-spacing:0.673920px;}
.ws2d{word-spacing:0.702000px;}
.ws38{word-spacing:0.720000px;}
.ws62{word-spacing:0.864000px;}
.ws3e{word-spacing:0.916560px;}
.ws39{word-spacing:1.013040px;}
.ws48{word-spacing:1.061280px;}
.ws26{word-spacing:1.296000px;}
.ws5b{word-spacing:2.016000px;}
.ws53{word-spacing:2.736000px;}
.ws34{word-spacing:3.168000px;}
.ws33{word-spacing:3.456000px;}
.ws1e{word-spacing:4.176000px;}
.ws58{word-spacing:4.896000px;}
.ws28{word-spacing:5.616000px;}
.ws1b{word-spacing:6.336000px;}
.ws5d{word-spacing:6.480000px;}
.ws27{word-spacing:7.056000px;}
.ws1d{word-spacing:7.776000px;}
.ws47{word-spacing:8.496000px;}
.ws43{word-spacing:9.216000px;}
.ws37{word-spacing:9.936000px;}
.ws15{word-spacing:10.656000px;}
.ws2f{word-spacing:11.376000px;}
.ws45{word-spacing:12.096000px;}
.ws46{word-spacing:12.528000px;}
.ws30{word-spacing:12.816000px;}
.ws24{word-spacing:13.536000px;}
.ws1a{word-spacing:14.256000px;}
.ws54{word-spacing:14.976000px;}
.ws4a{word-spacing:15.696000px;}
.ws61{word-spacing:16.416000px;}
.ws12{word-spacing:17.136000px;}
.ws5a{word-spacing:17.856000px;}
.ws60{word-spacing:18.576000px;}
.ws51{word-spacing:19.296000px;}
.ws57{word-spacing:20.016000px;}
.ws4d{word-spacing:20.736000px;}
.ws49{word-spacing:21.456000px;}
.ws42{word-spacing:22.176000px;}
.ws25{word-spacing:23.616000px;}
.ws20{word-spacing:24.336000px;}
.ws23{word-spacing:25.056000px;}
.ws22{word-spacing:25.776000px;}
.ws64{word-spacing:26.496000px;}
.ws1f{word-spacing:27.216000px;}
.ws2e{word-spacing:27.936000px;}
.ws5c{word-spacing:28.224000px;}
.ws4f{word-spacing:28.656000px;}
.ws50{word-spacing:29.376000px;}
.ws35{word-spacing:30.816000px;}
.ws4c{word-spacing:31.536000px;}
.ws5e{word-spacing:32.976000px;}
.ws13{word-spacing:33.696000px;}
.ws63{word-spacing:34.416000px;}
.ws6d{word-spacing:35.136000px;}
.ws6e{word-spacing:35.568000px;}
.ws52{word-spacing:35.856000px;}
.ws3c{word-spacing:37.296000px;}
.ws3a{word-spacing:38.016000px;}
.ws3d{word-spacing:38.520000px;}
.ws68{word-spacing:38.736000px;}
.ws67{word-spacing:39.240000px;}
.ws69{word-spacing:40.176000px;}
.ws65{word-spacing:43.776000px;}
.ws5f{word-spacing:44.496000px;}
.ws4b{word-spacing:46.656000px;}
.ws1c{word-spacing:48.096000px;}
.ws6c{word-spacing:48.816000px;}
.ws74{word-spacing:50.256000px;}
.ws6f{word-spacing:50.976000px;}
.ws6a{word-spacing:51.696000px;}
.ws6b{word-spacing:52.416000px;}
.ws71{word-spacing:54.576000px;}
.ws70{word-spacing:69.696000px;}
.ws44{word-spacing:73.296000px;}
._f{margin-left:-30.816000px;}
._13{margin-left:-19.152000px;}
._e{margin-left:-13.176000px;}
._5{margin-left:-10.476000px;}
._1e{margin-left:-6.798960px;}
._6{margin-left:-2.808000px;}
._1{margin-left:-1.188000px;}
._0{width:1.080000px;}
._2{width:2.134080px;}
._18{width:4.392000px;}
._17{width:5.400000px;}
._19{width:6.624720px;}
._11{width:8.843760px;}
._1d{width:11.779920px;}
._a{width:23.040000px;}
._1a{width:24.755760px;}
._8{width:28.394640px;}
._1b{width:30.384000px;}
._10{width:37.864800px;}
._1c{width:39.197520px;}
._12{width:70.272000px;}
._c{width:87.408000px;}
._4{width:109.872000px;}
._7{width:142.112880px;}
._16{width:151.992000px;}
._15{width:155.664000px;}
._14{width:277.344000px;}
._b{width:507.780000px;}
._3{width:674.496720px;}
._9{width:1011.888000px;}
._d{width:1192.212000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fs5{font-size:120.240000px;}
.fs0{font-size:131.760000px;}
.fs6{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y184{bottom:3.960000px;}
.yc3{bottom:4.140000px;}
.y170{bottom:24.660000px;}
.yc2{bottom:24.840000px;}
.y34{bottom:45.540000px;}
.y6{bottom:46.074420px;}
.y5{bottom:63.360000px;}
.yc5{bottom:66.240000px;}
.y4{bottom:79.920000px;}
.y105{bottom:109.800000px;}
.yb5{bottom:115.200000px;}
.y33{bottom:117.000000px;}
.y90{bottom:125.460000px;}
.y104{bottom:130.500000px;}
.yb4{bottom:135.900000px;}
.y32{bottom:137.700000px;}
.ydf{bottom:137.880000px;}
.y8f{bottom:146.160000px;}
.y103{bottom:151.200000px;}
.yb3{bottom:156.600000px;}
.y31{bottom:158.400000px;}
.yde{bottom:158.580000px;}
.y8e{bottom:171.360000px;}
.y102{bottom:171.900000px;}
.y146{bottom:176.040000px;}
.yb2{bottom:177.300000px;}
.y30{bottom:179.100000px;}
.ydd{bottom:179.280000px;}
.y60{bottom:185.400000px;}
.y8d{bottom:192.060000px;}
.y101{bottom:192.600000px;}
.y12a{bottom:195.300000px;}
.y145{bottom:196.560000px;}
.yb1{bottom:198.000000px;}
.y2f{bottom:199.620000px;}
.ydc{bottom:199.980000px;}
.y5f{bottom:206.100000px;}
.y8c{bottom:212.760000px;}
.y100{bottom:213.300000px;}
.y129{bottom:216.000000px;}
.y144{bottom:218.520000px;}
.yb0{bottom:218.700000px;}
.y2e{bottom:220.320000px;}
.ydb{bottom:220.680000px;}
.y5d{bottom:226.800000px;}
.y8b{bottom:233.460000px;}
.yff{bottom:234.000000px;}
.y128{bottom:236.700000px;}
.yaf{bottom:239.400000px;}
.y143{bottom:240.480000px;}
.y2d{bottom:241.020000px;}
.yda{bottom:241.380000px;}
.y5e{bottom:247.500000px;}
.y159{bottom:250.200000px;}
.y8a{bottom:254.160000px;}
.yfe{bottom:254.700000px;}
.y127{bottom:257.400000px;}
.yae{bottom:260.100000px;}
.y2c{bottom:261.720000px;}
.yd9{bottom:262.080000px;}
.y142{bottom:262.440000px;}
.y182{bottom:263.160000px;}
.y5c{bottom:268.200000px;}
.y158{bottom:270.900000px;}
.y89{bottom:274.860000px;}
.y126{bottom:278.100000px;}
.yfd{bottom:279.900000px;}
.yad{bottom:280.800000px;}
.y2b{bottom:282.420000px;}
.y141{bottom:283.140000px;}
.y5b{bottom:288.900000px;}
.y157{bottom:291.600000px;}
.yd8{bottom:291.780000px;}
.y88{bottom:295.560000px;}
.y125{bottom:298.800000px;}
.yac{bottom:301.500000px;}
.y2a{bottom:303.120000px;}
.y140{bottom:303.840000px;}
.y5a{bottom:309.600000px;}
.y156{bottom:312.300000px;}
.yd7{bottom:312.480000px;}
.y87{bottom:316.260000px;}
.y124{bottom:319.500000px;}
.yab{bottom:322.200000px;}
.y29{bottom:323.820000px;}
.y59{bottom:330.300000px;}
.y155{bottom:333.000000px;}
.yd6{bottom:333.180000px;}
.y13f{bottom:334.620000px;}
.y86{bottom:336.960000px;}
.y174{bottom:340.020000px;}
.y123{bottom:340.200000px;}
.yaa{bottom:342.900000px;}
.y28{bottom:344.520000px;}
.y58{bottom:351.000000px;}
.y154{bottom:353.700000px;}
.yd5{bottom:353.880000px;}
.y13e{bottom:355.500000px;}
.y85{bottom:357.660000px;}
.y173{bottom:360.720000px;}
.y122{bottom:360.900000px;}
.ya9{bottom:363.600000px;}
.y27{bottom:365.220000px;}
.y57{bottom:371.700000px;}
.y153{bottom:374.400000px;}
.yd4{bottom:374.580000px;}
.y13d{bottom:376.200000px;}
.y84{bottom:378.360000px;}
.y121{bottom:381.600000px;}
.ya8{bottom:384.300000px;}
.y26{bottom:385.920000px;}
.yfc{bottom:392.400000px;}
.y152{bottom:395.100000px;}
.yd3{bottom:395.280000px;}
.y56{bottom:396.900000px;}
.y172{bottom:400.140000px;}
.y120{bottom:402.300000px;}
.y83{bottom:403.560000px;}
.ya7{bottom:405.000000px;}
.y25{bottom:406.620000px;}
.yfb{bottom:413.100000px;}
.y151{bottom:415.800000px;}
.yd2{bottom:415.980000px;}
.y55{bottom:417.600000px;}
.y171{bottom:421.920000px;}
.y11f{bottom:422.820000px;}
.y82{bottom:424.260000px;}
.ya6{bottom:425.700000px;}
.y24{bottom:427.320000px;}
.yfa{bottom:433.800000px;}
.y150{bottom:436.320000px;}
.yd1{bottom:436.680000px;}
.y54{bottom:438.300000px;}
.y11e{bottom:443.520000px;}
.y81{bottom:444.960000px;}
.y23{bottom:448.020000px;}
.y14f{bottom:457.020000px;}
.yd0{bottom:457.380000px;}
.y13c{bottom:459.000000px;}
.y11d{bottom:464.220000px;}
.y16f{bottom:464.580000px;}
.yf9{bottom:464.760000px;}
.y80{bottom:465.660000px;}
.y22{bottom:468.720000px;}
.y53{bottom:469.260000px;}
.y14e{bottom:477.720000px;}
.ycf{bottom:478.080000px;}
.y13b{bottom:479.700000px;}
.y11c{bottom:484.920000px;}
.yf8{bottom:485.640000px;}
.y7f{bottom:486.360000px;}
.y21{bottom:489.420000px;}
.y52{bottom:490.140000px;}
.y14d{bottom:498.420000px;}
.yce{bottom:498.780000px;}
.y13a{bottom:500.400000px;}
.y11b{bottom:505.620000px;}
.yf7{bottom:506.340000px;}
.y7e{bottom:507.060000px;}
.y20{bottom:510.120000px;}
.y51{bottom:510.840000px;}
.y16e{bottom:511.200000px;}
.y14c{bottom:519.120000px;}
.ycd{bottom:519.480000px;}
.y139{bottom:521.100000px;}
.yf6{bottom:523.980000px;}
.y11a{bottom:526.320000px;}
.y7d{bottom:527.760000px;}
.y1f{bottom:530.820000px;}
.y50{bottom:531.540000px;}
.y16d{bottom:531.900000px;}
.y14b{bottom:539.820000px;}
.ycc{bottom:540.180000px;}
.y138{bottom:541.800000px;}
.yf5{bottom:545.760000px;}
.y119{bottom:547.020000px;}
.y7c{bottom:548.460000px;}
.y1e{bottom:551.520000px;}
.y4f{bottom:552.240000px;}
.y16c{bottom:552.600000px;}
.y14a{bottom:560.520000px;}
.ycb{bottom:560.880000px;}
.y137{bottom:562.500000px;}
.yf4{bottom:567.720000px;}
.y1d{bottom:572.220000px;}
.y4e{bottom:572.940000px;}
.y16b{bottom:573.300000px;}
.y7b{bottom:573.660000px;}
.y149{bottom:581.220000px;}
.yca{bottom:581.580000px;}
.y136{bottom:583.200000px;}
.y118{bottom:588.420000px;}
.y1c{bottom:592.920000px;}
.y4d{bottom:593.640000px;}
.y16a{bottom:594.000000px;}
.y7a{bottom:594.360000px;}
.yc9{bottom:599.220000px;}
.y148{bottom:601.920000px;}
.y135{bottom:603.900000px;}
.y1b{bottom:613.620000px;}
.yf3{bottom:614.340000px;}
.y79{bottom:615.060000px;}
.y181{bottom:618.480000px;}
.yc8{bottom:621.000000px;}
.y147{bottom:622.620000px;}
.y134{bottom:624.600000px;}
.y169{bottom:624.780000px;}
.y4c{bottom:632.880000px;}
.y1a{bottom:634.320000px;}
.yf2{bottom:635.040000px;}
.y78{bottom:635.760000px;}
.y180{bottom:639.180000px;}
.y117{bottom:643.320000px;}
.y133{bottom:645.300000px;}
.y168{bottom:645.660000px;}
.ya5{bottom:651.240000px;}
.y19{bottom:655.020000px;}
.yf1{bottom:655.740000px;}
.y77{bottom:656.460000px;}
.y17f{bottom:659.700000px;}
.yc4{bottom:663.480000px;}
.y116{bottom:664.020000px;}
.y132{bottom:666.000000px;}
.y167{bottom:666.360000px;}
.ya4{bottom:671.940000px;}
.y4b{bottom:674.460000px;}
.y18{bottom:675.720000px;}
.yf0{bottom:676.440000px;}
.y17e{bottom:680.760000px;}
.y76{bottom:681.660000px;}
.y115{bottom:684.720000px;}
.y131{bottom:686.700000px;}
.y166{bottom:687.060000px;}
.yc7{bottom:688.320000px;}
.ya3{bottom:692.640000px;}
.y4a{bottom:695.160000px;}
.y17{bottom:696.420000px;}
.yef{bottom:697.140000px;}
.y17d{bottom:701.460000px;}
.y75{bottom:702.360000px;}
.y114{bottom:705.420000px;}
.y130{bottom:707.400000px;}
.y165{bottom:707.760000px;}
.yc6{bottom:709.020000px;}
.ya2{bottom:713.340000px;}
.y49{bottom:715.860000px;}
.y16{bottom:717.120000px;}
.yee{bottom:717.840000px;}
.y17c{bottom:722.340000px;}
.y74{bottom:723.060000px;}
.y113{bottom:726.120000px;}
.y12f{bottom:728.100000px;}
.y164{bottom:728.460000px;}
.ya1{bottom:734.040000px;}
.y48{bottom:736.560000px;}
.y15{bottom:737.820000px;}
.yed{bottom:738.540000px;}
.y17b{bottom:743.400000px;}
.y73{bottom:743.760000px;}
.y112{bottom:746.820000px;}
.yc1{bottom:747.540000px;}
.y12e{bottom:748.800000px;}
.y163{bottom:749.160000px;}
.ya0{bottom:754.740000px;}
.y47{bottom:757.260000px;}
.y14{bottom:758.520000px;}
.yec{bottom:759.240000px;}
.y72{bottom:764.460000px;}
.y162{bottom:766.800000px;}
.y111{bottom:767.520000px;}
.y12d{bottom:769.500000px;}
.y9f{bottom:775.440000px;}
.y46{bottom:777.960000px;}
.y13{bottom:779.220000px;}
.yeb{bottom:779.940000px;}
.y110{bottom:788.220000px;}
.y161{bottom:788.760000px;}
.y71{bottom:789.660000px;}
.yc0{bottom:794.160000px;}
.y9e{bottom:796.140000px;}
.y45{bottom:798.660000px;}
.y12{bottom:799.920000px;}
.y12c{bottom:800.460000px;}
.yea{bottom:800.640000px;}
.y10f{bottom:808.920000px;}
.y70{bottom:810.360000px;}
.y160{bottom:810.540000px;}
.y17a{bottom:810.900000px;}
.ybf{bottom:814.860000px;}
.y9d{bottom:816.840000px;}
.y44{bottom:819.360000px;}
.y11{bottom:820.620000px;}
.ye9{bottom:821.340000px;}
.y10e{bottom:829.620000px;}
.y6f{bottom:831.060000px;}
.y179{bottom:831.600000px;}
.y15f{bottom:832.320000px;}
.ybe{bottom:835.560000px;}
.y9c{bottom:837.540000px;}
.y12b{bottom:839.880000px;}
.y43{bottom:840.060000px;}
.y10{bottom:841.320000px;}
.y10d{bottom:850.320000px;}
.y6e{bottom:851.760000px;}
.ye8{bottom:852.120000px;}
.ybd{bottom:856.260000px;}
.y9b{bottom:858.240000px;}
.y42{bottom:860.760000px;}
.yf{bottom:862.020000px;}
.y10c{bottom:871.020000px;}
.y6d{bottom:872.460000px;}
.ye7{bottom:873.000000px;}
.ybc{bottom:876.960000px;}
.y15e{bottom:878.940000px;}
.y41{bottom:881.460000px;}
.y9a{bottom:889.020000px;}
.y10b{bottom:891.720000px;}
.y6c{bottom:893.160000px;}
.ye6{bottom:893.700000px;}
.y178{bottom:896.580000px;}
.ybb{bottom:897.660000px;}
.y15d{bottom:899.640000px;}
.ye{bottom:901.260000px;}
.y40{bottom:902.160000px;}
.y10a{bottom:912.420000px;}
.y6b{bottom:913.860000px;}
.ye5{bottom:914.400000px;}
.yba{bottom:918.360000px;}
.y15c{bottom:920.340000px;}
.y3f{bottom:922.860000px;}
.y99{bottom:928.440000px;}
.y109{bottom:933.120000px;}
.y6a{bottom:934.560000px;}
.ye4{bottom:935.100000px;}
.yb9{bottom:939.060000px;}
.y15b{bottom:942.300000px;}
.y3e{bottom:943.560000px;}
.yd{bottom:944.816040px;}
.y108{bottom:953.820000px;}
.y69{bottom:955.260000px;}
.yb8{bottom:959.760000px;}
.y177{bottom:961.560000px;}
.y15a{bottom:963.000000px;}
.y3d{bottom:964.260000px;}
.y98{bottom:970.020000px;}
.ye3{bottom:974.340000px;}
.y107{bottom:974.520000px;}
.y68{bottom:975.960000px;}
.yc{bottom:979.380000px;}
.yb7{bottom:980.460000px;}
.y176{bottom:982.980000px;}
.y3c{bottom:984.960000px;}
.y97{bottom:990.720000px;}
.y106{bottom:995.220000px;}
.y67{bottom:1001.160000px;}
.y3b{bottom:1005.660000px;}
.y96{bottom:1011.420000px;}
.ye2{bottom:1015.920000px;}
.y66{bottom:1021.860000px;}
.yb{bottom:1025.814420px;}
.y9{bottom:1026.351000px;}
.y3a{bottom:1026.360000px;}
.y95{bottom:1032.120000px;}
.ye1{bottom:1036.620000px;}
.y65{bottom:1042.560000px;}
.y39{bottom:1047.060000px;}
.y94{bottom:1052.820000px;}
.ya{bottom:1055.880000px;}
.yb6{bottom:1057.140000px;}
.ye0{bottom:1057.320000px;}
.y8{bottom:1060.920000px;}
.y64{bottom:1063.260000px;}
.y38{bottom:1067.760000px;}
.y93{bottom:1078.020000px;}
.y37{bottom:1088.460000px;}
.y175{bottom:1095.840000px;}
.y92{bottom:1098.720000px;}
.y7{bottom:1104.658560px;}
.y63{bottom:1109.160000px;}
.y36{bottom:1119.240000px;}
.y91{bottom:1119.420000px;}
.y62{bottom:1139.940000px;}
.y35{bottom:1140.120000px;}
.y3{bottom:1142.280000px;}
.y2{bottom:1149.120000px;}
.y183{bottom:1182.600000px;}
.y1{bottom:1183.680000px;}
.y61{bottom:1199.520000px;}
.h15{height:20.520000px;}
.h11{height:20.700000px;}
.h12{height:20.701500px;}
.h13{height:41.221500px;}
.hf{height:41.400000px;}
.h4{height:41.479805px;}
.h8{height:42.186445px;}
.h5{height:46.432617px;}
.h6{height:52.260820px;}
.hb{height:61.910156px;}
.hc{height:62.964844px;}
.ha{height:73.668867px;}
.he{height:74.599805px;}
.hd{height:79.910156px;}
.h10{height:82.800000px;}
.h14{height:83.743242px;}
.h3{height:94.447266px;}
.h7{height:105.151289px;}
.h2{height:115.225664px;}
.h9{height:195.690406px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:179.820000px;}
.w4{width:180.900000px;}
.w9{width:186.300000px;}
.w5{width:200.880000px;}
.wa{width:201.600000px;}
.w7{width:203.220000px;}
.w8{width:219.961500px;}
.wb{width:247.320000px;}
.w2{width:285.841500px;}
.w3{width:286.018500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:6.660000px;}
.x11{left:10.080000px;}
.x22{left:16.740000px;}
.x1c{left:20.700000px;}
.x13{left:31.500000px;}
.x29{left:33.840000px;}
.x28{left:37.800000px;}
.x1f{left:39.960000px;}
.x26{left:42.840000px;}
.xe{left:47.700000px;}
.x2c{left:52.380000px;}
.x18{left:54.000000px;}
.x2a{left:55.260000px;}
.x20{left:61.560000px;}
.x24{left:63.900000px;}
.x16{left:72.540000px;}
.x15{left:77.580000px;}
.x12{left:82.620000px;}
.x25{left:89.100000px;}
.x2e{left:90.720000px;}
.x27{left:91.980000px;}
.x2f{left:95.580000px;}
.x5{left:106.380000px;}
.xf{left:124.200000px;}
.x9{left:127.620000px;}
.xb{left:138.420000px;}
.xc{left:153.180000px;}
.x8{left:159.480000px;}
.x17{left:170.280000px;}
.x1e{left:186.480000px;}
.x1d{left:191.340000px;}
.x1{left:201.960000px;}
.x32{left:203.580000px;}
.x7{left:218.880000px;}
.xd{left:234.000000px;}
.x19{left:351.540000px;}
.x2b{left:373.140000px;}
.x21{left:374.940000px;}
.x10{left:446.940000px;}
.x14{left:478.440000px;}
.x6{left:510.480000px;}
.x2{left:535.140000px;}
.x1a{left:553.500000px;}
.x2d{left:575.640000px;}
.x23{left:595.980000px;}
.x33{left:626.940000px;}
.x30{left:693.000000px;}
.xa{left:700.384500px;}
.x31{left:704.700000px;}
.x4{left:742.860000px;}
.x3{left:786.780000px;}
@media print{
.v4{vertical-align:-24.320000pt;}
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:8.320000pt;}
.v6{vertical-align:16.000000pt;}
.v5{vertical-align:29.440000pt;}
.v1{vertical-align:43.539840pt;}
.ls39{letter-spacing:-1.152000pt;}
.ls2a{letter-spacing:-0.943360pt;}
.ls26{letter-spacing:-0.900480pt;}
.ls27{letter-spacing:-0.814720pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.600320pt;}
.ls20{letter-spacing:-0.528000pt;}
.ls2b{letter-spacing:-0.512000pt;}
.ls41{letter-spacing:-0.432000pt;}
.ls12{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.299520pt;}
.ls7{letter-spacing:-0.288000pt;}
.ls28{letter-spacing:-0.256000pt;}
.ls23{letter-spacing:-0.214400pt;}
.ls21{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.171520pt;}
.ls43{letter-spacing:-0.170240pt;}
.lsc{letter-spacing:-0.149120pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.106240pt;}
.lsd{letter-spacing:-0.074880pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.085760pt;}
.ls3f{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.106880pt;}
.ls0{letter-spacing:0.117120pt;}
.ls11{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.212480pt;}
.ls4{letter-spacing:0.256000pt;}
.ls44{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.428800pt;}
.ls2f{letter-spacing:1.408000pt;}
.ls3e{letter-spacing:4.608000pt;}
.ls38{letter-spacing:5.888000pt;}
.ls3d{letter-spacing:7.808000pt;}
.ls29{letter-spacing:8.448000pt;}
.ls30{letter-spacing:11.008000pt;}
.ls1e{letter-spacing:12.288000pt;}
.ls1d{letter-spacing:14.208000pt;}
.ls32{letter-spacing:18.048000pt;}
.ls1f{letter-spacing:21.888000pt;}
.ls3a{letter-spacing:22.528000pt;}
.ls2c{letter-spacing:23.168000pt;}
.ls33{letter-spacing:24.448000pt;}
.ls37{letter-spacing:25.088000pt;}
.ls19{letter-spacing:27.648000pt;}
.ls3c{letter-spacing:28.288000pt;}
.ls36{letter-spacing:28.928000pt;}
.ls16{letter-spacing:35.968000pt;}
.ls5{letter-spacing:44.288000pt;}
.ls14{letter-spacing:45.568000pt;}
.ls40{letter-spacing:48.768000pt;}
.ls18{letter-spacing:51.968000pt;}
.ls42{letter-spacing:52.608000pt;}
.ls35{letter-spacing:60.288000pt;}
.ls13{letter-spacing:82.048000pt;}
.ls1c{letter-spacing:90.368000pt;}
.ls34{letter-spacing:102.528000pt;}
.ls3b{letter-spacing:105.880320pt;}
.ls17{letter-spacing:119.168000pt;}
.ls1b{letter-spacing:126.208000pt;}
.ls1a{letter-spacing:144.128000pt;}
.ls15{letter-spacing:147.968000pt;}
.ls2{letter-spacing:350.300800pt;}
.ls2e{letter-spacing:391.168000pt;}
.ls2d{letter-spacing:391.808000pt;}
.ws1{word-spacing:-20.741760pt;}
.ws75{word-spacing:-18.112000pt;}
.ws3{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.920000pt;}
.ws4e{word-spacing:-17.856000pt;}
.ws7{word-spacing:-17.792000pt;}
.ws4{word-spacing:-17.728000pt;}
.ws2{word-spacing:-17.664000pt;}
.ws2a{word-spacing:-17.600000pt;}
.ws6{word-spacing:-17.408000pt;}
.ws40{word-spacing:-17.280000pt;}
.ws55{word-spacing:-16.640000pt;}
.ws72{word-spacing:-12.912000pt;}
.ws19{word-spacing:-11.920640pt;}
.ws0{word-spacing:-11.749120pt;}
.ws2b{word-spacing:-11.320320pt;}
.ws2c{word-spacing:-11.105920pt;}
.ws56{word-spacing:-11.020160pt;}
.ws66{word-spacing:-2.048000pt;}
.ws59{word-spacing:-1.408000pt;}
.ws14{word-spacing:-0.768000pt;}
.ws18{word-spacing:-0.448000pt;}
.ws31{word-spacing:-0.428800pt;}
.wsd{word-spacing:-0.320640pt;}
.wsb{word-spacing:-0.265600pt;}
.ws21{word-spacing:-0.256000pt;}
.ws10{word-spacing:-0.214400pt;}
.wsa{word-spacing:-0.192000pt;}
.ws16{word-spacing:-0.128000pt;}
.ws8{word-spacing:0.000000pt;}
.wsc{word-spacing:0.053120pt;}
.ws29{word-spacing:0.128000pt;}
.ws76{word-spacing:0.170240pt;}
.ws3b{word-spacing:0.171520pt;}
.ws17{word-spacing:0.192000pt;}
.ws32{word-spacing:0.214400pt;}
.ws36{word-spacing:0.256000pt;}
.wsf{word-spacing:0.298240pt;}
.ws3f{word-spacing:0.384000pt;}
.wse{word-spacing:0.428800pt;}
.ws73{word-spacing:0.432000pt;}
.ws9{word-spacing:0.480000pt;}
.ws41{word-spacing:0.512000pt;}
.ws11{word-spacing:0.599040pt;}
.ws2d{word-spacing:0.624000pt;}
.ws38{word-spacing:0.640000pt;}
.ws62{word-spacing:0.768000pt;}
.ws3e{word-spacing:0.814720pt;}
.ws39{word-spacing:0.900480pt;}
.ws48{word-spacing:0.943360pt;}
.ws26{word-spacing:1.152000pt;}
.ws5b{word-spacing:1.792000pt;}
.ws53{word-spacing:2.432000pt;}
.ws34{word-spacing:2.816000pt;}
.ws33{word-spacing:3.072000pt;}
.ws1e{word-spacing:3.712000pt;}
.ws58{word-spacing:4.352000pt;}
.ws28{word-spacing:4.992000pt;}
.ws1b{word-spacing:5.632000pt;}
.ws5d{word-spacing:5.760000pt;}
.ws27{word-spacing:6.272000pt;}
.ws1d{word-spacing:6.912000pt;}
.ws47{word-spacing:7.552000pt;}
.ws43{word-spacing:8.192000pt;}
.ws37{word-spacing:8.832000pt;}
.ws15{word-spacing:9.472000pt;}
.ws2f{word-spacing:10.112000pt;}
.ws45{word-spacing:10.752000pt;}
.ws46{word-spacing:11.136000pt;}
.ws30{word-spacing:11.392000pt;}
.ws24{word-spacing:12.032000pt;}
.ws1a{word-spacing:12.672000pt;}
.ws54{word-spacing:13.312000pt;}
.ws4a{word-spacing:13.952000pt;}
.ws61{word-spacing:14.592000pt;}
.ws12{word-spacing:15.232000pt;}
.ws5a{word-spacing:15.872000pt;}
.ws60{word-spacing:16.512000pt;}
.ws51{word-spacing:17.152000pt;}
.ws57{word-spacing:17.792000pt;}
.ws4d{word-spacing:18.432000pt;}
.ws49{word-spacing:19.072000pt;}
.ws42{word-spacing:19.712000pt;}
.ws25{word-spacing:20.992000pt;}
.ws20{word-spacing:21.632000pt;}
.ws23{word-spacing:22.272000pt;}
.ws22{word-spacing:22.912000pt;}
.ws64{word-spacing:23.552000pt;}
.ws1f{word-spacing:24.192000pt;}
.ws2e{word-spacing:24.832000pt;}
.ws5c{word-spacing:25.088000pt;}
.ws4f{word-spacing:25.472000pt;}
.ws50{word-spacing:26.112000pt;}
.ws35{word-spacing:27.392000pt;}
.ws4c{word-spacing:28.032000pt;}
.ws5e{word-spacing:29.312000pt;}
.ws13{word-spacing:29.952000pt;}
.ws63{word-spacing:30.592000pt;}
.ws6d{word-spacing:31.232000pt;}
.ws6e{word-spacing:31.616000pt;}
.ws52{word-spacing:31.872000pt;}
.ws3c{word-spacing:33.152000pt;}
.ws3a{word-spacing:33.792000pt;}
.ws3d{word-spacing:34.240000pt;}
.ws68{word-spacing:34.432000pt;}
.ws67{word-spacing:34.880000pt;}
.ws69{word-spacing:35.712000pt;}
.ws65{word-spacing:38.912000pt;}
.ws5f{word-spacing:39.552000pt;}
.ws4b{word-spacing:41.472000pt;}
.ws1c{word-spacing:42.752000pt;}
.ws6c{word-spacing:43.392000pt;}
.ws74{word-spacing:44.672000pt;}
.ws6f{word-spacing:45.312000pt;}
.ws6a{word-spacing:45.952000pt;}
.ws6b{word-spacing:46.592000pt;}
.ws71{word-spacing:48.512000pt;}
.ws70{word-spacing:61.952000pt;}
.ws44{word-spacing:65.152000pt;}
._f{margin-left:-27.392000pt;}
._13{margin-left:-17.024000pt;}
._e{margin-left:-11.712000pt;}
._5{margin-left:-9.312000pt;}
._1e{margin-left:-6.043520pt;}
._6{margin-left:-2.496000pt;}
._1{margin-left:-1.056000pt;}
._0{width:0.960000pt;}
._2{width:1.896960pt;}
._18{width:3.904000pt;}
._17{width:4.800000pt;}
._19{width:5.888640pt;}
._11{width:7.861120pt;}
._1d{width:10.471040pt;}
._a{width:20.480000pt;}
._1a{width:22.005120pt;}
._8{width:25.239680pt;}
._1b{width:27.008000pt;}
._10{width:33.657600pt;}
._1c{width:34.842240pt;}
._12{width:62.464000pt;}
._c{width:77.696000pt;}
._4{width:97.664000pt;}
._7{width:126.322560pt;}
._16{width:135.104000pt;}
._15{width:138.368000pt;}
._14{width:246.528000pt;}
._b{width:451.360000pt;}
._3{width:599.552640pt;}
._9{width:899.456000pt;}
._d{width:1059.744000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fs5{font-size:106.880000pt;}
.fs0{font-size:117.120000pt;}
.fs6{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y184{bottom:3.520000pt;}
.yc3{bottom:3.680000pt;}
.y170{bottom:21.920000pt;}
.yc2{bottom:22.080000pt;}
.y34{bottom:40.480000pt;}
.y6{bottom:40.955040pt;}
.y5{bottom:56.320000pt;}
.yc5{bottom:58.880000pt;}
.y4{bottom:71.040000pt;}
.y105{bottom:97.600000pt;}
.yb5{bottom:102.400000pt;}
.y33{bottom:104.000000pt;}
.y90{bottom:111.520000pt;}
.y104{bottom:116.000000pt;}
.yb4{bottom:120.800000pt;}
.y32{bottom:122.400000pt;}
.ydf{bottom:122.560000pt;}
.y8f{bottom:129.920000pt;}
.y103{bottom:134.400000pt;}
.yb3{bottom:139.200000pt;}
.y31{bottom:140.800000pt;}
.yde{bottom:140.960000pt;}
.y8e{bottom:152.320000pt;}
.y102{bottom:152.800000pt;}
.y146{bottom:156.480000pt;}
.yb2{bottom:157.600000pt;}
.y30{bottom:159.200000pt;}
.ydd{bottom:159.360000pt;}
.y60{bottom:164.800000pt;}
.y8d{bottom:170.720000pt;}
.y101{bottom:171.200000pt;}
.y12a{bottom:173.600000pt;}
.y145{bottom:174.720000pt;}
.yb1{bottom:176.000000pt;}
.y2f{bottom:177.440000pt;}
.ydc{bottom:177.760000pt;}
.y5f{bottom:183.200000pt;}
.y8c{bottom:189.120000pt;}
.y100{bottom:189.600000pt;}
.y129{bottom:192.000000pt;}
.y144{bottom:194.240000pt;}
.yb0{bottom:194.400000pt;}
.y2e{bottom:195.840000pt;}
.ydb{bottom:196.160000pt;}
.y5d{bottom:201.600000pt;}
.y8b{bottom:207.520000pt;}
.yff{bottom:208.000000pt;}
.y128{bottom:210.400000pt;}
.yaf{bottom:212.800000pt;}
.y143{bottom:213.760000pt;}
.y2d{bottom:214.240000pt;}
.yda{bottom:214.560000pt;}
.y5e{bottom:220.000000pt;}
.y159{bottom:222.400000pt;}
.y8a{bottom:225.920000pt;}
.yfe{bottom:226.400000pt;}
.y127{bottom:228.800000pt;}
.yae{bottom:231.200000pt;}
.y2c{bottom:232.640000pt;}
.yd9{bottom:232.960000pt;}
.y142{bottom:233.280000pt;}
.y182{bottom:233.920000pt;}
.y5c{bottom:238.400000pt;}
.y158{bottom:240.800000pt;}
.y89{bottom:244.320000pt;}
.y126{bottom:247.200000pt;}
.yfd{bottom:248.800000pt;}
.yad{bottom:249.600000pt;}
.y2b{bottom:251.040000pt;}
.y141{bottom:251.680000pt;}
.y5b{bottom:256.800000pt;}
.y157{bottom:259.200000pt;}
.yd8{bottom:259.360000pt;}
.y88{bottom:262.720000pt;}
.y125{bottom:265.600000pt;}
.yac{bottom:268.000000pt;}
.y2a{bottom:269.440000pt;}
.y140{bottom:270.080000pt;}
.y5a{bottom:275.200000pt;}
.y156{bottom:277.600000pt;}
.yd7{bottom:277.760000pt;}
.y87{bottom:281.120000pt;}
.y124{bottom:284.000000pt;}
.yab{bottom:286.400000pt;}
.y29{bottom:287.840000pt;}
.y59{bottom:293.600000pt;}
.y155{bottom:296.000000pt;}
.yd6{bottom:296.160000pt;}
.y13f{bottom:297.440000pt;}
.y86{bottom:299.520000pt;}
.y174{bottom:302.240000pt;}
.y123{bottom:302.400000pt;}
.yaa{bottom:304.800000pt;}
.y28{bottom:306.240000pt;}
.y58{bottom:312.000000pt;}
.y154{bottom:314.400000pt;}
.yd5{bottom:314.560000pt;}
.y13e{bottom:316.000000pt;}
.y85{bottom:317.920000pt;}
.y173{bottom:320.640000pt;}
.y122{bottom:320.800000pt;}
.ya9{bottom:323.200000pt;}
.y27{bottom:324.640000pt;}
.y57{bottom:330.400000pt;}
.y153{bottom:332.800000pt;}
.yd4{bottom:332.960000pt;}
.y13d{bottom:334.400000pt;}
.y84{bottom:336.320000pt;}
.y121{bottom:339.200000pt;}
.ya8{bottom:341.600000pt;}
.y26{bottom:343.040000pt;}
.yfc{bottom:348.800000pt;}
.y152{bottom:351.200000pt;}
.yd3{bottom:351.360000pt;}
.y56{bottom:352.800000pt;}
.y172{bottom:355.680000pt;}
.y120{bottom:357.600000pt;}
.y83{bottom:358.720000pt;}
.ya7{bottom:360.000000pt;}
.y25{bottom:361.440000pt;}
.yfb{bottom:367.200000pt;}
.y151{bottom:369.600000pt;}
.yd2{bottom:369.760000pt;}
.y55{bottom:371.200000pt;}
.y171{bottom:375.040000pt;}
.y11f{bottom:375.840000pt;}
.y82{bottom:377.120000pt;}
.ya6{bottom:378.400000pt;}
.y24{bottom:379.840000pt;}
.yfa{bottom:385.600000pt;}
.y150{bottom:387.840000pt;}
.yd1{bottom:388.160000pt;}
.y54{bottom:389.600000pt;}
.y11e{bottom:394.240000pt;}
.y81{bottom:395.520000pt;}
.y23{bottom:398.240000pt;}
.y14f{bottom:406.240000pt;}
.yd0{bottom:406.560000pt;}
.y13c{bottom:408.000000pt;}
.y11d{bottom:412.640000pt;}
.y16f{bottom:412.960000pt;}
.yf9{bottom:413.120000pt;}
.y80{bottom:413.920000pt;}
.y22{bottom:416.640000pt;}
.y53{bottom:417.120000pt;}
.y14e{bottom:424.640000pt;}
.ycf{bottom:424.960000pt;}
.y13b{bottom:426.400000pt;}
.y11c{bottom:431.040000pt;}
.yf8{bottom:431.680000pt;}
.y7f{bottom:432.320000pt;}
.y21{bottom:435.040000pt;}
.y52{bottom:435.680000pt;}
.y14d{bottom:443.040000pt;}
.yce{bottom:443.360000pt;}
.y13a{bottom:444.800000pt;}
.y11b{bottom:449.440000pt;}
.yf7{bottom:450.080000pt;}
.y7e{bottom:450.720000pt;}
.y20{bottom:453.440000pt;}
.y51{bottom:454.080000pt;}
.y16e{bottom:454.400000pt;}
.y14c{bottom:461.440000pt;}
.ycd{bottom:461.760000pt;}
.y139{bottom:463.200000pt;}
.yf6{bottom:465.760000pt;}
.y11a{bottom:467.840000pt;}
.y7d{bottom:469.120000pt;}
.y1f{bottom:471.840000pt;}
.y50{bottom:472.480000pt;}
.y16d{bottom:472.800000pt;}
.y14b{bottom:479.840000pt;}
.ycc{bottom:480.160000pt;}
.y138{bottom:481.600000pt;}
.yf5{bottom:485.120000pt;}
.y119{bottom:486.240000pt;}
.y7c{bottom:487.520000pt;}
.y1e{bottom:490.240000pt;}
.y4f{bottom:490.880000pt;}
.y16c{bottom:491.200000pt;}
.y14a{bottom:498.240000pt;}
.ycb{bottom:498.560000pt;}
.y137{bottom:500.000000pt;}
.yf4{bottom:504.640000pt;}
.y1d{bottom:508.640000pt;}
.y4e{bottom:509.280000pt;}
.y16b{bottom:509.600000pt;}
.y7b{bottom:509.920000pt;}
.y149{bottom:516.640000pt;}
.yca{bottom:516.960000pt;}
.y136{bottom:518.400000pt;}
.y118{bottom:523.040000pt;}
.y1c{bottom:527.040000pt;}
.y4d{bottom:527.680000pt;}
.y16a{bottom:528.000000pt;}
.y7a{bottom:528.320000pt;}
.yc9{bottom:532.640000pt;}
.y148{bottom:535.040000pt;}
.y135{bottom:536.800000pt;}
.y1b{bottom:545.440000pt;}
.yf3{bottom:546.080000pt;}
.y79{bottom:546.720000pt;}
.y181{bottom:549.760000pt;}
.yc8{bottom:552.000000pt;}
.y147{bottom:553.440000pt;}
.y134{bottom:555.200000pt;}
.y169{bottom:555.360000pt;}
.y4c{bottom:562.560000pt;}
.y1a{bottom:563.840000pt;}
.yf2{bottom:564.480000pt;}
.y78{bottom:565.120000pt;}
.y180{bottom:568.160000pt;}
.y117{bottom:571.840000pt;}
.y133{bottom:573.600000pt;}
.y168{bottom:573.920000pt;}
.ya5{bottom:578.880000pt;}
.y19{bottom:582.240000pt;}
.yf1{bottom:582.880000pt;}
.y77{bottom:583.520000pt;}
.y17f{bottom:586.400000pt;}
.yc4{bottom:589.760000pt;}
.y116{bottom:590.240000pt;}
.y132{bottom:592.000000pt;}
.y167{bottom:592.320000pt;}
.ya4{bottom:597.280000pt;}
.y4b{bottom:599.520000pt;}
.y18{bottom:600.640000pt;}
.yf0{bottom:601.280000pt;}
.y17e{bottom:605.120000pt;}
.y76{bottom:605.920000pt;}
.y115{bottom:608.640000pt;}
.y131{bottom:610.400000pt;}
.y166{bottom:610.720000pt;}
.yc7{bottom:611.840000pt;}
.ya3{bottom:615.680000pt;}
.y4a{bottom:617.920000pt;}
.y17{bottom:619.040000pt;}
.yef{bottom:619.680000pt;}
.y17d{bottom:623.520000pt;}
.y75{bottom:624.320000pt;}
.y114{bottom:627.040000pt;}
.y130{bottom:628.800000pt;}
.y165{bottom:629.120000pt;}
.yc6{bottom:630.240000pt;}
.ya2{bottom:634.080000pt;}
.y49{bottom:636.320000pt;}
.y16{bottom:637.440000pt;}
.yee{bottom:638.080000pt;}
.y17c{bottom:642.080000pt;}
.y74{bottom:642.720000pt;}
.y113{bottom:645.440000pt;}
.y12f{bottom:647.200000pt;}
.y164{bottom:647.520000pt;}
.ya1{bottom:652.480000pt;}
.y48{bottom:654.720000pt;}
.y15{bottom:655.840000pt;}
.yed{bottom:656.480000pt;}
.y17b{bottom:660.800000pt;}
.y73{bottom:661.120000pt;}
.y112{bottom:663.840000pt;}
.yc1{bottom:664.480000pt;}
.y12e{bottom:665.600000pt;}
.y163{bottom:665.920000pt;}
.ya0{bottom:670.880000pt;}
.y47{bottom:673.120000pt;}
.y14{bottom:674.240000pt;}
.yec{bottom:674.880000pt;}
.y72{bottom:679.520000pt;}
.y162{bottom:681.600000pt;}
.y111{bottom:682.240000pt;}
.y12d{bottom:684.000000pt;}
.y9f{bottom:689.280000pt;}
.y46{bottom:691.520000pt;}
.y13{bottom:692.640000pt;}
.yeb{bottom:693.280000pt;}
.y110{bottom:700.640000pt;}
.y161{bottom:701.120000pt;}
.y71{bottom:701.920000pt;}
.yc0{bottom:705.920000pt;}
.y9e{bottom:707.680000pt;}
.y45{bottom:709.920000pt;}
.y12{bottom:711.040000pt;}
.y12c{bottom:711.520000pt;}
.yea{bottom:711.680000pt;}
.y10f{bottom:719.040000pt;}
.y70{bottom:720.320000pt;}
.y160{bottom:720.480000pt;}
.y17a{bottom:720.800000pt;}
.ybf{bottom:724.320000pt;}
.y9d{bottom:726.080000pt;}
.y44{bottom:728.320000pt;}
.y11{bottom:729.440000pt;}
.ye9{bottom:730.080000pt;}
.y10e{bottom:737.440000pt;}
.y6f{bottom:738.720000pt;}
.y179{bottom:739.200000pt;}
.y15f{bottom:739.840000pt;}
.ybe{bottom:742.720000pt;}
.y9c{bottom:744.480000pt;}
.y12b{bottom:746.560000pt;}
.y43{bottom:746.720000pt;}
.y10{bottom:747.840000pt;}
.y10d{bottom:755.840000pt;}
.y6e{bottom:757.120000pt;}
.ye8{bottom:757.440000pt;}
.ybd{bottom:761.120000pt;}
.y9b{bottom:762.880000pt;}
.y42{bottom:765.120000pt;}
.yf{bottom:766.240000pt;}
.y10c{bottom:774.240000pt;}
.y6d{bottom:775.520000pt;}
.ye7{bottom:776.000000pt;}
.ybc{bottom:779.520000pt;}
.y15e{bottom:781.280000pt;}
.y41{bottom:783.520000pt;}
.y9a{bottom:790.240000pt;}
.y10b{bottom:792.640000pt;}
.y6c{bottom:793.920000pt;}
.ye6{bottom:794.400000pt;}
.y178{bottom:796.960000pt;}
.ybb{bottom:797.920000pt;}
.y15d{bottom:799.680000pt;}
.ye{bottom:801.120000pt;}
.y40{bottom:801.920000pt;}
.y10a{bottom:811.040000pt;}
.y6b{bottom:812.320000pt;}
.ye5{bottom:812.800000pt;}
.yba{bottom:816.320000pt;}
.y15c{bottom:818.080000pt;}
.y3f{bottom:820.320000pt;}
.y99{bottom:825.280000pt;}
.y109{bottom:829.440000pt;}
.y6a{bottom:830.720000pt;}
.ye4{bottom:831.200000pt;}
.yb9{bottom:834.720000pt;}
.y15b{bottom:837.600000pt;}
.y3e{bottom:838.720000pt;}
.yd{bottom:839.836480pt;}
.y108{bottom:847.840000pt;}
.y69{bottom:849.120000pt;}
.yb8{bottom:853.120000pt;}
.y177{bottom:854.720000pt;}
.y15a{bottom:856.000000pt;}
.y3d{bottom:857.120000pt;}
.y98{bottom:862.240000pt;}
.ye3{bottom:866.080000pt;}
.y107{bottom:866.240000pt;}
.y68{bottom:867.520000pt;}
.yc{bottom:870.560000pt;}
.yb7{bottom:871.520000pt;}
.y176{bottom:873.760000pt;}
.y3c{bottom:875.520000pt;}
.y97{bottom:880.640000pt;}
.y106{bottom:884.640000pt;}
.y67{bottom:889.920000pt;}
.y3b{bottom:893.920000pt;}
.y96{bottom:899.040000pt;}
.ye2{bottom:903.040000pt;}
.y66{bottom:908.320000pt;}
.yb{bottom:911.835040pt;}
.y9{bottom:912.312000pt;}
.y3a{bottom:912.320000pt;}
.y95{bottom:917.440000pt;}
.ye1{bottom:921.440000pt;}
.y65{bottom:926.720000pt;}
.y39{bottom:930.720000pt;}
.y94{bottom:935.840000pt;}
.ya{bottom:938.560000pt;}
.yb6{bottom:939.680000pt;}
.ye0{bottom:939.840000pt;}
.y8{bottom:943.040000pt;}
.y64{bottom:945.120000pt;}
.y38{bottom:949.120000pt;}
.y93{bottom:958.240000pt;}
.y37{bottom:967.520000pt;}
.y175{bottom:974.080000pt;}
.y92{bottom:976.640000pt;}
.y7{bottom:981.918720pt;}
.y63{bottom:985.920000pt;}
.y36{bottom:994.880000pt;}
.y91{bottom:995.040000pt;}
.y62{bottom:1013.280000pt;}
.y35{bottom:1013.440000pt;}
.y3{bottom:1015.360000pt;}
.y2{bottom:1021.440000pt;}
.y183{bottom:1051.200000pt;}
.y1{bottom:1052.160000pt;}
.y61{bottom:1066.240000pt;}
.h15{height:18.240000pt;}
.h11{height:18.400000pt;}
.h12{height:18.401333pt;}
.h13{height:36.641333pt;}
.hf{height:36.800000pt;}
.h4{height:36.870937pt;}
.h8{height:37.499062pt;}
.h5{height:41.273438pt;}
.h6{height:46.454062pt;}
.hb{height:55.031250pt;}
.hc{height:55.968750pt;}
.ha{height:65.483437pt;}
.he{height:66.310937pt;}
.hd{height:71.031250pt;}
.h10{height:73.600000pt;}
.h14{height:74.438437pt;}
.h3{height:83.953125pt;}
.h7{height:93.467812pt;}
.h2{height:102.422812pt;}
.h9{height:173.947028pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:159.840000pt;}
.w4{width:160.800000pt;}
.w9{width:165.600000pt;}
.w5{width:178.560000pt;}
.wa{width:179.200000pt;}
.w7{width:180.640000pt;}
.w8{width:195.521333pt;}
.wb{width:219.840000pt;}
.w2{width:254.081333pt;}
.w3{width:254.238667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:5.920000pt;}
.x11{left:8.960000pt;}
.x22{left:14.880000pt;}
.x1c{left:18.400000pt;}
.x13{left:28.000000pt;}
.x29{left:30.080000pt;}
.x28{left:33.600000pt;}
.x1f{left:35.520000pt;}
.x26{left:38.080000pt;}
.xe{left:42.400000pt;}
.x2c{left:46.560000pt;}
.x18{left:48.000000pt;}
.x2a{left:49.120000pt;}
.x20{left:54.720000pt;}
.x24{left:56.800000pt;}
.x16{left:64.480000pt;}
.x15{left:68.960000pt;}
.x12{left:73.440000pt;}
.x25{left:79.200000pt;}
.x2e{left:80.640000pt;}
.x27{left:81.760000pt;}
.x2f{left:84.960000pt;}
.x5{left:94.560000pt;}
.xf{left:110.400000pt;}
.x9{left:113.440000pt;}
.xb{left:123.040000pt;}
.xc{left:136.160000pt;}
.x8{left:141.760000pt;}
.x17{left:151.360000pt;}
.x1e{left:165.760000pt;}
.x1d{left:170.080000pt;}
.x1{left:179.520000pt;}
.x32{left:180.960000pt;}
.x7{left:194.560000pt;}
.xd{left:208.000000pt;}
.x19{left:312.480000pt;}
.x2b{left:331.680000pt;}
.x21{left:333.280000pt;}
.x10{left:397.280000pt;}
.x14{left:425.280000pt;}
.x6{left:453.760000pt;}
.x2{left:475.680000pt;}
.x1a{left:492.000000pt;}
.x2d{left:511.680000pt;}
.x23{left:529.760000pt;}
.x33{left:557.280000pt;}
.x30{left:616.000000pt;}
.xa{left:622.564000pt;}
.x31{left:626.400000pt;}
.x4{left:660.320000pt;}
.x3{left:699.360000pt;}
}




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