
    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_f786a6cf4a7c7fa305aadf49.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_90d6aa100d0cb4d5854ccc9c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_de4b92105ad86e073b19101f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_bbb2c0973d009a4923b83c29.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.019531;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_8e4d2cd8354cd18598024cd4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_706032666b2792db29417944.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6809ee6dd519ec9ddb79fe76.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_9c4c1b958955c3f2d5194646.woff2')format("woff");}.ff8{font-family:ff8;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);}
.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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls39{letter-spacing:-1.008000px;}
.ls2b{letter-spacing:-0.936000px;}
.ls3e{letter-spacing:-0.864000px;}
.ls3f{letter-spacing:-0.792000px;}
.ls3b{letter-spacing:-0.758160px;}
.ls31{letter-spacing:-0.720000px;}
.ls32{letter-spacing:-0.576000px;}
.ls34{letter-spacing:-0.537840px;}
.ls1d{letter-spacing:-0.432000px;}
.ls1c{letter-spacing:-0.336960px;}
.ls11{letter-spacing:-0.331200px;}
.ls14{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.264960px;}
.ls33{letter-spacing:-0.239040px;}
.ls1e{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.132480px;}
.ls25{letter-spacing:-0.119520px;}
.lsd{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.084240px;}
.ls10{letter-spacing:-0.077760px;}
.ls2a{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.059760px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.054000px;}
.ls15{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.077760px;}
.ls24{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.132480px;}
.ls7{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.161352px;}
.ls3{letter-spacing:0.168480px;}
.ls1{letter-spacing:0.179280px;}
.ls1b{letter-spacing:0.216000px;}
.lse{letter-spacing:0.252720px;}
.ls23{letter-spacing:0.262944px;}
.ls35{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.331200px;}
.ls2c{letter-spacing:0.334656px;}
.ls20{letter-spacing:0.358560px;}
.ls37{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.421200px;}
.ls26{letter-spacing:0.504000px;}
.ls3c{letter-spacing:0.712800px;}
.ls19{letter-spacing:0.720000px;}
.ls38{letter-spacing:1.432800px;}
.ls16{letter-spacing:1.440000px;}
.ls27{letter-spacing:2.160000px;}
.ls6{letter-spacing:2.880000px;}
.ls3a{letter-spacing:2.887200px;}
.ls3d{letter-spacing:3.265920px;}
.ls29{letter-spacing:3.600000px;}
.ls36{letter-spacing:4.320000px;}
.ls2d{letter-spacing:5.032800px;}
.ls21{letter-spacing:5.047200px;}
.ls5{letter-spacing:5.760000px;}
.ls1f{letter-spacing:6.480000px;}
.ls17{letter-spacing:6.487200px;}
.ls18{letter-spacing:7.200000px;}
.ls2f{letter-spacing:7.920000px;}
.ls28{letter-spacing:12.240000px;}
.ls2e{letter-spacing:846.000000px;}
.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;}
}
.ws6a{word-spacing:-23.334480px;}
.ws1e{word-spacing:-23.081760px;}
.ws60{word-spacing:-22.660560px;}
.ws56{word-spacing:-20.304000px;}
.ws58{word-spacing:-19.944000px;}
.ws38{word-spacing:-18.144000px;}
.ws20{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws1d{word-spacing:-17.856000px;}
.ws21{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws1f{word-spacing:-17.568000px;}
.ws4e{word-spacing:-17.424000px;}
.ws6b{word-spacing:-17.280000px;}
.ws5a{word-spacing:-17.064000px;}
.ws3{word-spacing:-16.891200px;}
.ws52{word-spacing:-15.298560px;}
.ws5f{word-spacing:-15.059520px;}
.ws43{word-spacing:-14.940000px;}
.ws37{word-spacing:-14.880240px;}
.ws1{word-spacing:-13.446000px;}
.ws0{word-spacing:-12.204000px;}
.ws2{word-spacing:-11.934000px;}
.ws59{word-spacing:-4.320000px;}
.ws30{word-spacing:-3.600000px;}
.ws63{word-spacing:-3.456000px;}
.ws3d{word-spacing:-3.312000px;}
.ws3c{word-spacing:-2.880000px;}
.ws3b{word-spacing:-2.592000px;}
.ws64{word-spacing:-2.304000px;}
.ws3e{word-spacing:-2.160000px;}
.ws3f{word-spacing:-1.872000px;}
.ws57{word-spacing:-1.584000px;}
.ws13{word-spacing:-1.440000px;}
.ws50{word-spacing:-1.224000px;}
.ws14{word-spacing:-1.152000px;}
.ws9{word-spacing:-0.926640px;}
.ws31{word-spacing:-0.864000px;}
.ws4f{word-spacing:-0.758160px;}
.ws2a{word-spacing:-0.720000px;}
.wsa{word-spacing:-0.589680px;}
.ws25{word-spacing:-0.576000px;}
.ws22{word-spacing:-0.432000px;}
.ws54{word-spacing:-0.358560px;}
.ws24{word-spacing:-0.216000px;}
.wse{word-spacing:-0.179280px;}
.ws1c{word-spacing:-0.144000px;}
.wsf{word-spacing:-0.132480px;}
.ws5d{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
.ws45{word-spacing:0.059760px;}
.ws5e{word-spacing:0.072000px;}
.wsd{word-spacing:0.132480px;}
.ws23{word-spacing:0.144000px;}
.wsb{word-spacing:0.155520px;}
.ws8{word-spacing:0.162000px;}
.ws49{word-spacing:0.216000px;}
.ws3a{word-spacing:0.239040px;}
.ws7{word-spacing:0.264960px;}
.ws15{word-spacing:0.288000px;}
.ws46{word-spacing:0.298800px;}
.wsc{word-spacing:0.331200px;}
.ws53{word-spacing:0.418320px;}
.ws55{word-spacing:0.537840px;}
.ws2c{word-spacing:0.576000px;}
.ws2b{word-spacing:0.720000px;}
.ws6e{word-spacing:0.792000px;}
.ws6c{word-spacing:0.864000px;}
.ws39{word-spacing:0.936000px;}
.ws35{word-spacing:1.008000px;}
.ws51{word-spacing:1.296000px;}
.ws17{word-spacing:1.440000px;}
.ws2e{word-spacing:1.728000px;}
.ws28{word-spacing:2.160000px;}
.ws29{word-spacing:2.448000px;}
.ws6f{word-spacing:2.736000px;}
.ws16{word-spacing:2.880000px;}
.ws2d{word-spacing:3.168000px;}
.ws61{word-spacing:3.456000px;}
.ws1b{word-spacing:3.600000px;}
.ws4d{word-spacing:3.672000px;}
.ws69{word-spacing:3.744000px;}
.ws48{word-spacing:3.888000px;}
.ws41{word-spacing:4.176000px;}
.ws42{word-spacing:4.320000px;}
.ws36{word-spacing:4.608000px;}
.ws34{word-spacing:5.040000px;}
.ws44{word-spacing:5.328000px;}
.ws47{word-spacing:5.616000px;}
.ws10{word-spacing:5.688000px;}
.ws12{word-spacing:5.760000px;}
.ws67{word-spacing:5.904000px;}
.ws11{word-spacing:6.048000px;}
.ws40{word-spacing:6.480000px;}
.ws68{word-spacing:6.624000px;}
.ws2f{word-spacing:6.768000px;}
.ws32{word-spacing:7.056000px;}
.ws1a{word-spacing:7.200000px;}
.ws33{word-spacing:7.488000px;}
.ws19{word-spacing:7.920000px;}
.ws18{word-spacing:8.208000px;}
.ws5c{word-spacing:8.496000px;}
.ws5b{word-spacing:9.360000px;}
.ws4b{word-spacing:12.240000px;}
.ws4c{word-spacing:12.384000px;}
.ws4a{word-spacing:12.528000px;}
.ws62{word-spacing:17.568000px;}
.ws66{word-spacing:29.520000px;}
.ws65{word-spacing:29.808000px;}
.ws26{word-spacing:44.784000px;}
.ws27{word-spacing:44.928000px;}
.ws6d{word-spacing:84.240000px;}
._6{margin-left:-43.540920px;}
._8{margin-left:-6.984000px;}
._a{margin-left:-3.504960px;}
._7{margin-left:-2.140920px;}
._2{margin-left:-1.063800px;}
._3{width:1.037880px;}
._4{width:2.082600px;}
._9{width:3.568680px;}
._d{width:6.048000px;}
._b{width:7.704000px;}
._e{width:29.520000px;}
._c{width:54.919440px;}
._1{width:94.338000px;}
._0{width:731.538000px;}
._5{width:846.000000px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(196,89,17);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs7{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:16.020000px;}
.y7{bottom:79.920000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.760000px;}
.y5{bottom:145.440000px;}
.yd4{bottom:167.400000px;}
.y158{bottom:170.460000px;}
.y64{bottom:178.374420px;}
.y13b{bottom:182.340000px;}
.y5c{bottom:185.040000px;}
.y96{bottom:188.640000px;}
.yeb{bottom:189.720000px;}
.yd3{bottom:191.160000px;}
.y157{bottom:194.220000px;}
.y63{bottom:195.660000px;}
.y8e{bottom:200.700000px;}
.yfd{bottom:203.400000px;}
.y180{bottom:203.940000px;}
.y13a{bottom:206.100000px;}
.y5b{bottom:208.800000px;}
.y62{bottom:209.700000px;}
.y95{bottom:212.400000px;}
.yd2{bottom:214.920000px;}
.y156{bottom:217.980000px;}
.yea{bottom:222.480000px;}
.y125{bottom:225.720000px;}
.yfc{bottom:227.340000px;}
.y139{bottom:230.040000px;}
.y94{bottom:232.374420px;}
.y5a{bottom:232.560000px;}
.y8d{bottom:233.460000px;}
.y17f{bottom:233.640000px;}
.yd1{bottom:238.680000px;}
.y155{bottom:241.920000px;}
.ye9{bottom:246.240000px;}
.ya7{bottom:248.760000px;}
.y93{bottom:249.660000px;}
.yfb{bottom:251.100000px;}
.y138{bottom:253.800000px;}
.y17e{bottom:254.340000px;}
.y59{bottom:256.320000px;}
.y43{bottom:256.860000px;}
.y8c{bottom:257.220000px;}
.y124{bottom:258.480000px;}
.yd0{bottom:259.380000px;}
.y92{bottom:263.880000px;}
.ye8{bottom:266.940000px;}
.y154{bottom:271.980000px;}
.ya6{bottom:272.340000px;}
.y76{bottom:272.520000px;}
.yfa{bottom:274.860000px;}
.y17d{bottom:275.040000px;}
.yc7{bottom:275.400000px;}
.ycf{bottom:279.360000px;}
.y58{bottom:280.260000px;}
.y42{bottom:280.620000px;}
.y8b{bottom:280.980000px;}
.y123{bottom:282.420000px;}
.y137{bottom:286.560000px;}
.ye7{bottom:286.914420px;}
.ya5{bottom:293.040000px;}
.yce{bottom:293.400000px;}
.y17c{bottom:295.740000px;}
.yf9{bottom:298.620000px;}
.y57{bottom:304.020000px;}
.ye6{bottom:304.200000px;}
.y41{bottom:304.560000px;}
.y75{bottom:305.280000px;}
.y122{bottom:306.180000px;}
.yc6{bottom:308.160000px;}
.y136{bottom:310.320000px;}
.ya4{bottom:313.020000px;}
.y8a{bottom:313.920000px;}
.y17b{bottom:316.440000px;}
.ye5{bottom:318.240000px;}
.y153{bottom:319.860000px;}
.yf8{bottom:322.560000px;}
.ya3{bottom:327.060000px;}
.y56{bottom:327.780000px;}
.y40{bottom:328.320000px;}
.y74{bottom:329.220000px;}
.y121{bottom:329.940000px;}
.yc5{bottom:331.920000px;}
.y135{bottom:334.260000px;}
.y17a{bottom:337.140000px;}
.y89{bottom:337.680000px;}
.y152{bottom:343.620000px;}
.yf7{bottom:346.320000px;}
.y55{bottom:351.540000px;}
.y3f{bottom:352.080000px;}
.y73{bottom:352.980000px;}
.y120{bottom:353.700000px;}
.yc4{bottom:355.680000px;}
.y179{bottom:357.840000px;}
.y88{bottom:361.440000px;}
.y134{bottom:364.320000px;}
.y151{bottom:367.380000px;}
.y72{bottom:376.740000px;}
.y11f{bottom:377.640000px;}
.y178{bottom:378.540000px;}
.yf6{bottom:379.080000px;}
.y54{bottom:384.480000px;}
.y3e{bottom:384.840000px;}
.y87{bottom:385.200000px;}
.yc3{bottom:388.440000px;}
.y150{bottom:391.140000px;}
.y177{bottom:399.240000px;}
.y71{bottom:400.500000px;}
.y11e{bottom:401.400000px;}
.yf5{bottom:402.840000px;}
.y53{bottom:408.240000px;}
.y3d{bottom:408.780000px;}
.y133{bottom:408.960000px;}
.yc2{bottom:412.380000px;}
.y23{bottom:417.780000px;}
.y86{bottom:418.140000px;}
.y176{bottom:419.940000px;}
.y14f{bottom:421.380000px;}
.y70{bottom:424.440000px;}
.y11d{bottom:425.160000px;}
.yf4{bottom:426.780000px;}
.y132{bottom:429.660000px;}
.y52{bottom:432.000000px;}
.y3c{bottom:432.540000px;}
.yc1{bottom:436.140000px;}
.y175{bottom:440.640000px;}
.y85{bottom:441.900000px;}
.y6f{bottom:445.140000px;}
.y114{bottom:445.320000px;}
.y131{bottom:449.636400px;}
.y22{bottom:450.540000px;}
.y51{bottom:455.760000px;}
.y3b{bottom:456.300000px;}
.y11c{bottom:457.920000px;}
.yc0{bottom:459.900000px;}
.y174{bottom:461.340000px;}
.y130{bottom:463.680000px;}
.y19c{bottom:464.580000px;}
.y6e{bottom:465.120000px;}
.y84{bottom:465.660000px;}
.y113{bottom:466.020000px;}
.y14e{bottom:469.080000px;}
.yf3{bottom:474.300000px;}
.y6d{bottom:479.160000px;}
.y50{bottom:479.700000px;}
.y3a{bottom:480.060000px;}
.y11b{bottom:481.860000px;}
.y21{bottom:483.480000px;}
.ybf{bottom:483.660000px;}
.y19b{bottom:485.280000px;}
.y173{bottom:488.880000px;}
.y83{bottom:489.420000px;}
.y14d{bottom:493.020000px;}
.yf2{bottom:498.060000px;}
.y112{bottom:498.780000px;}
.y172{bottom:502.740000px;}
.y4f{bottom:503.460000px;}
.y11a{bottom:505.620000px;}
.y19a{bottom:505.980000px;}
.y20{bottom:507.240000px;}
.y39{bottom:513.000000px;}
.ybe{bottom:513.180000px;}
.y82{bottom:513.360000px;}
.yf1{bottom:522.000000px;}
.y111{bottom:522.720000px;}
.y171{bottom:523.440000px;}
.y14c{bottom:525.780000px;}
.y199{bottom:526.680000px;}
.y4e{bottom:527.220000px;}
.y119{bottom:529.380000px;}
.y1f{bottom:531.000000px;}
.y38{bottom:536.760000px;}
.y81{bottom:537.120000px;}
.y170{bottom:544.140000px;}
.y110{bottom:546.480000px;}
.y198{bottom:547.380000px;}
.y14b{bottom:549.540000px;}
.y4d{bottom:550.980000px;}
.yf0{bottom:551.340000px;}
.y118{bottom:553.140000px;}
.y1e{bottom:554.760000px;}
.ybd{bottom:558.180000px;}
.y37{bottom:560.520000px;}
.y80{bottom:560.880000px;}
.y16f{bottom:564.840000px;}
.y197{bottom:568.080000px;}
.y10f{bottom:570.240000px;}
.y14a{bottom:573.300000px;}
.y117{bottom:573.840000px;}
.y4c{bottom:574.920000px;}
.y61{bottom:578.520000px;}
.y1d{bottom:578.700000px;}
.ybc{bottom:582.120000px;}
.y36{bottom:584.280000px;}
.y7f{bottom:584.640000px;}
.y16e{bottom:585.540000px;}
.y196{bottom:588.780000px;}
.yef{bottom:593.280000px;}
.y10e{bottom:594.000000px;}
.y116{bottom:594.540000px;}
.y149{bottom:597.240000px;}
.y60{bottom:602.280000px;}
.y4b{bottom:604.980000px;}
.y16d{bottom:606.240000px;}
.y35{bottom:608.220000px;}
.y115{bottom:611.280000px;}
.y1c{bottom:611.460000px;}
.yee{bottom:613.980000px;}
.ybb{bottom:614.880000px;}
.y195{bottom:616.320000px;}
.y7e{bottom:617.580000px;}
.y148{bottom:621.000000px;}
.y5f{bottom:622.254420px;}
.y10d{bottom:626.940000px;}
.y194{bottom:630.180000px;}
.y34{bottom:631.980000px;}
.yed{bottom:633.960000px;}
.yba{bottom:638.640000px;}
.y5e{bottom:639.540000px;}
.y7d{bottom:641.340000px;}
.y1b{bottom:644.220000px;}
.y16c{bottom:647.640000px;}
.yec{bottom:648.000000px;}
.y4a{bottom:649.620000px;}
.y10c{bottom:650.700000px;}
.y5d{bottom:653.580000px;}
.y147{bottom:653.760000px;}
.y33{bottom:655.740000px;}
.y91{bottom:658.800000px;}
.ye4{bottom:659.700000px;}
.yb9{bottom:662.400000px;}
.y7c{bottom:665.100000px;}
.y16b{bottom:668.340000px;}
.y49{bottom:669.600000px;}
.y193{bottom:671.400000px;}
.y10b{bottom:674.460000px;}
.y1a{bottom:676.980000px;}
.y146{bottom:677.520000px;}
.y32{bottom:679.500000px;}
.y48{bottom:683.640000px;}
.yb8{bottom:686.340000px;}
.ycd{bottom:686.520000px;}
.y7b{bottom:688.860000px;}
.y16a{bottom:689.040000px;}
.y192{bottom:692.100000px;}
.ye3{bottom:692.460000px;}
.y10a{bottom:698.220000px;}
.y90{bottom:699.480000px;}
.y145{bottom:701.460000px;}
.y31{bottom:703.260000px;}
.y19{bottom:709.740000px;}
.yb7{bottom:710.100000px;}
.y7a{bottom:712.800000px;}
.y8f{bottom:713.340000px;}
.ye2{bottom:716.220000px;}
.ycc{bottom:719.280000px;}
.y109{bottom:722.160000px;}
.y144{bottom:725.220000px;}
.y30{bottom:727.200000px;}
.y169{bottom:730.440000px;}
.y79{bottom:733.500000px;}
.y18{bottom:733.680000px;}
.ye1{bottom:740.160000px;}
.y191{bottom:740.340000px;}
.yb6{bottom:742.860000px;}
.ycb{bottom:743.040000px;}
.y12f{bottom:745.740000px;}
.y108{bottom:745.920000px;}
.y168{bottom:751.140000px;}
.y78{bottom:753.480000px;}
.y190{bottom:754.200000px;}
.ya2{bottom:754.920000px;}
.y17{bottom:757.440000px;}
.y143{bottom:757.980000px;}
.yca{bottom:763.740000px;}
.yb5{bottom:766.620000px;}
.y77{bottom:767.340000px;}
.y12e{bottom:769.500000px;}
.y107{bottom:769.680000px;}
.y167{bottom:771.840000px;}
.ye0{bottom:772.920000px;}
.y18f{bottom:774.900000px;}
.y16{bottom:781.200000px;}
.y142{bottom:781.740000px;}
.yc9{bottom:783.720000px;}
.ya1{bottom:787.680000px;}
.yb4{bottom:790.380000px;}
.y166{bottom:792.540000px;}
.y12d{bottom:793.260000px;}
.y106{bottom:793.440000px;}
.y18e{bottom:795.600000px;}
.ydf{bottom:796.680000px;}
.yc8{bottom:797.760000px;}
.y15{bottom:804.960000px;}
.y2f{bottom:805.140000px;}
.y141{bottom:805.680000px;}
.ya0{bottom:811.440000px;}
.y165{bottom:813.240000px;}
.yb3{bottom:814.320000px;}
.y18d{bottom:816.300000px;}
.y12c{bottom:817.020000px;}
.y105{bottom:817.380000px;}
.yde{bottom:820.440000px;}
.y14{bottom:828.900000px;}
.y140{bottom:829.440000px;}
.y164{bottom:833.940000px;}
.y9f{bottom:835.380000px;}
.y18c{bottom:837.000000px;}
.y2e{bottom:837.900000px;}
.y12b{bottom:840.960000px;}
.y104{bottom:841.140000px;}
.ydd{bottom:844.380000px;}
.yb2{bottom:847.080000px;}
.y13f{bottom:853.200000px;}
.y163{bottom:854.640000px;}
.y18b{bottom:857.520000px;}
.y13{bottom:858.600000px;}
.y9e{bottom:859.140000px;}
.y2d{bottom:861.660000px;}
.y12a{bottom:864.720000px;}
.ydc{bottom:868.140000px;}
.yb1{bottom:870.840000px;}
.y103{bottom:873.900000px;}
.y162{bottom:875.340000px;}
.y18a{bottom:878.220000px;}
.y13e{bottom:885.960000px;}
.y12{bottom:888.300000px;}
.y129{bottom:888.480000px;}
.y9d{bottom:891.900000px;}
.y2c{bottom:894.600000px;}
.y161{bottom:896.040000px;}
.y102{bottom:897.660000px;}
.y189{bottom:898.920000px;}
.y128{bottom:908.454420px;}
.y13d{bottom:909.900000px;}
.y9c{bottom:915.660000px;}
.y160{bottom:916.740000px;}
.yb0{bottom:918.540000px;}
.y11{bottom:920.337120px;}
.y101{bottom:921.600000px;}
.ydb{bottom:924.660000px;}
.y127{bottom:925.740000px;}
.y188{bottom:926.460000px;}
.y2b{bottom:927.360000px;}
.y6c{bottom:933.660000px;}
.y15f{bottom:937.440000px;}
.y10{bottom:939.414240px;}
.y9b{bottom:939.600000px;}
.y126{bottom:939.780000px;}
.y187{bottom:940.320000px;}
.yaf{bottom:942.300000px;}
.y100{bottom:945.360000px;}
.yda{bottom:948.600000px;}
.y15e{bottom:958.140000px;}
.y2a{bottom:960.120000px;}
.y186{bottom:961.020000px;}
.y9a{bottom:963.360000px;}
.yae{bottom:966.060000px;}
.y6b{bottom:966.420000px;}
.yf{bottom:967.500000px;}
.yff{bottom:969.120000px;}
.yd9{bottom:972.360000px;}
.y15d{bottom:978.840000px;}
.y185{bottom:981.720000px;}
.y99{bottom:987.120000px;}
.yad{bottom:989.820000px;}
.y6a{bottom:990.180000px;}
.y29{bottom:992.880000px;}
.yd8{bottom:996.120000px;}
.ye{bottom:997.560000px;}
.y15c{bottom:999.540000px;}
.yfe{bottom:1001.880000px;}
.y184{bottom:1002.420000px;}
.y98{bottom:1010.880000px;}
.yac{bottom:1013.760000px;}
.y69{bottom:1013.940000px;}
.yd{bottom:1019.162880px;}
.yd7{bottom:1019.880000px;}
.y15b{bottom:1020.240000px;}
.y183{bottom:1023.120000px;}
.y28{bottom:1025.640000px;}
.yab{bottom:1034.460000px;}
.y47{bottom:1034.640000px;}
.y68{bottom:1037.880000px;}
.y15a{bottom:1040.940000px;}
.yc{bottom:1042.380000px;}
.y97{bottom:1043.640000px;}
.yd6{bottom:1043.820000px;}
.y13c{bottom:1046.880000px;}
.y27{bottom:1058.580000px;}
.y159{bottom:1061.640000px;}
.yaa{bottom:1063.800000px;}
.y182{bottom:1064.340000px;}
.y46{bottom:1067.580000px;}
.y67{bottom:1070.640000px;}
.y26{bottom:1082.340000px;}
.yb{bottom:1083.600000px;}
.y45{bottom:1091.340000px;}
.y181{bottom:1091.880000px;}
.y66{bottom:1094.400000px;}
.yd5{bottom:1096.920000px;}
.ya9{bottom:1105.740000px;}
.y25{bottom:1106.100000px;}
.y44{bottom:1115.100000px;}
.y65{bottom:1118.160000px;}
.ya{bottom:1134.540000px;}
.ya8{bottom:1135.980000px;}
.y24{bottom:1138.860000px;}
.y4{bottom:1171.800000px;}
.y3{bottom:1192.149000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h5{height:32.758500px;}
.h3{height:38.759766px;}
.h13{height:42.327773px;}
.h9{height:48.905156px;}
.h11{height:49.992188px;}
.h10{height:52.417969px;}
.hf{height:52.435898px;}
.hd{height:53.077852px;}
.h8{height:54.208125px;}
.ha{height:58.121719px;}
.hc{height:61.329023px;}
.h4{height:63.175781px;}
.he{height:63.198101px;}
.h7{height:63.635625px;}
.hb{height:63.949219px;}
.h6{height:68.938594px;}
.h12{height:69.687773px;}
.h2{height:75.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:20.880000px;}
.w3{width:29.881500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.633500px;}
.x13{left:138.240000px;}
.x1{left:145.980000px;}
.x6{left:175.320000px;}
.x1c{left:181.800000px;}
.x7{left:197.640000px;}
.x1a{left:236.700000px;}
.x2a{left:245.333700px;}
.x24{left:254.518560px;}
.x22{left:259.200000px;}
.x20{left:273.600000px;}
.x1e{left:289.620000px;}
.x4{left:297.180000px;}
.xe{left:313.740000px;}
.x26{left:366.480000px;}
.x18{left:379.440000px;}
.x14{left:385.392420px;}
.x10{left:391.140000px;}
.x28{left:394.380000px;}
.x16{left:423.900000px;}
.x5{left:466.740000px;}
.x11{left:478.270080px;}
.x2{left:533.349000px;}
.xc{left:539.280000px;}
.x8{left:615.600000px;}
.xf{left:622.260000px;}
.xa{left:642.420000px;}
.x17{left:647.280000px;}
.x25{left:659.340000px;}
.x9{left:661.686480px;}
.x23{left:688.680000px;}
.x1f{left:702.360000px;}
.x21{left:712.260000px;}
.x12{left:724.680000px;}
.xd{left:734.040000px;}
.x1b{left:754.380000px;}
.x15{left:770.040000px;}
.x19{left:774.180000px;}
.x1d{left:777.600000px;}
.x29{left:800.280000px;}
.x27{left:805.680000px;}
.xb{left:829.080000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls39{letter-spacing:-0.896000pt;}
.ls2b{letter-spacing:-0.832000pt;}
.ls3e{letter-spacing:-0.768000pt;}
.ls3f{letter-spacing:-0.704000pt;}
.ls3b{letter-spacing:-0.673920pt;}
.ls31{letter-spacing:-0.640000pt;}
.ls32{letter-spacing:-0.512000pt;}
.ls34{letter-spacing:-0.478080pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls1c{letter-spacing:-0.299520pt;}
.ls11{letter-spacing:-0.294400pt;}
.ls14{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.235520pt;}
.ls33{letter-spacing:-0.212480pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.117760pt;}
.ls25{letter-spacing:-0.106240pt;}
.lsd{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.074880pt;}
.ls10{letter-spacing:-0.069120pt;}
.ls2a{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.053120pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.048000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.069120pt;}
.ls24{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.117760pt;}
.ls7{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.143424pt;}
.ls3{letter-spacing:0.149760pt;}
.ls1{letter-spacing:0.159360pt;}
.ls1b{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.224640pt;}
.ls23{letter-spacing:0.233728pt;}
.ls35{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.294400pt;}
.ls2c{letter-spacing:0.297472pt;}
.ls20{letter-spacing:0.318720pt;}
.ls37{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.374400pt;}
.ls26{letter-spacing:0.448000pt;}
.ls3c{letter-spacing:0.633600pt;}
.ls19{letter-spacing:0.640000pt;}
.ls38{letter-spacing:1.273600pt;}
.ls16{letter-spacing:1.280000pt;}
.ls27{letter-spacing:1.920000pt;}
.ls6{letter-spacing:2.560000pt;}
.ls3a{letter-spacing:2.566400pt;}
.ls3d{letter-spacing:2.903040pt;}
.ls29{letter-spacing:3.200000pt;}
.ls36{letter-spacing:3.840000pt;}
.ls2d{letter-spacing:4.473600pt;}
.ls21{letter-spacing:4.486400pt;}
.ls5{letter-spacing:5.120000pt;}
.ls1f{letter-spacing:5.760000pt;}
.ls17{letter-spacing:5.766400pt;}
.ls18{letter-spacing:6.400000pt;}
.ls2f{letter-spacing:7.040000pt;}
.ls28{letter-spacing:10.880000pt;}
.ls2e{letter-spacing:752.000000pt;}
.ws6a{word-spacing:-20.741760pt;}
.ws1e{word-spacing:-20.517120pt;}
.ws60{word-spacing:-20.142720pt;}
.ws56{word-spacing:-18.048000pt;}
.ws58{word-spacing:-17.728000pt;}
.ws38{word-spacing:-16.128000pt;}
.ws20{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws1d{word-spacing:-15.872000pt;}
.ws21{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws1f{word-spacing:-15.616000pt;}
.ws4e{word-spacing:-15.488000pt;}
.ws6b{word-spacing:-15.360000pt;}
.ws5a{word-spacing:-15.168000pt;}
.ws3{word-spacing:-15.014400pt;}
.ws52{word-spacing:-13.598720pt;}
.ws5f{word-spacing:-13.386240pt;}
.ws43{word-spacing:-13.280000pt;}
.ws37{word-spacing:-13.226880pt;}
.ws1{word-spacing:-11.952000pt;}
.ws0{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws59{word-spacing:-3.840000pt;}
.ws30{word-spacing:-3.200000pt;}
.ws63{word-spacing:-3.072000pt;}
.ws3d{word-spacing:-2.944000pt;}
.ws3c{word-spacing:-2.560000pt;}
.ws3b{word-spacing:-2.304000pt;}
.ws64{word-spacing:-2.048000pt;}
.ws3e{word-spacing:-1.920000pt;}
.ws3f{word-spacing:-1.664000pt;}
.ws57{word-spacing:-1.408000pt;}
.ws13{word-spacing:-1.280000pt;}
.ws50{word-spacing:-1.088000pt;}
.ws14{word-spacing:-1.024000pt;}
.ws9{word-spacing:-0.823680pt;}
.ws31{word-spacing:-0.768000pt;}
.ws4f{word-spacing:-0.673920pt;}
.ws2a{word-spacing:-0.640000pt;}
.wsa{word-spacing:-0.524160pt;}
.ws25{word-spacing:-0.512000pt;}
.ws22{word-spacing:-0.384000pt;}
.ws54{word-spacing:-0.318720pt;}
.ws24{word-spacing:-0.192000pt;}
.wse{word-spacing:-0.159360pt;}
.ws1c{word-spacing:-0.128000pt;}
.wsf{word-spacing:-0.117760pt;}
.ws5d{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
.ws45{word-spacing:0.053120pt;}
.ws5e{word-spacing:0.064000pt;}
.wsd{word-spacing:0.117760pt;}
.ws23{word-spacing:0.128000pt;}
.wsb{word-spacing:0.138240pt;}
.ws8{word-spacing:0.144000pt;}
.ws49{word-spacing:0.192000pt;}
.ws3a{word-spacing:0.212480pt;}
.ws7{word-spacing:0.235520pt;}
.ws15{word-spacing:0.256000pt;}
.ws46{word-spacing:0.265600pt;}
.wsc{word-spacing:0.294400pt;}
.ws53{word-spacing:0.371840pt;}
.ws55{word-spacing:0.478080pt;}
.ws2c{word-spacing:0.512000pt;}
.ws2b{word-spacing:0.640000pt;}
.ws6e{word-spacing:0.704000pt;}
.ws6c{word-spacing:0.768000pt;}
.ws39{word-spacing:0.832000pt;}
.ws35{word-spacing:0.896000pt;}
.ws51{word-spacing:1.152000pt;}
.ws17{word-spacing:1.280000pt;}
.ws2e{word-spacing:1.536000pt;}
.ws28{word-spacing:1.920000pt;}
.ws29{word-spacing:2.176000pt;}
.ws6f{word-spacing:2.432000pt;}
.ws16{word-spacing:2.560000pt;}
.ws2d{word-spacing:2.816000pt;}
.ws61{word-spacing:3.072000pt;}
.ws1b{word-spacing:3.200000pt;}
.ws4d{word-spacing:3.264000pt;}
.ws69{word-spacing:3.328000pt;}
.ws48{word-spacing:3.456000pt;}
.ws41{word-spacing:3.712000pt;}
.ws42{word-spacing:3.840000pt;}
.ws36{word-spacing:4.096000pt;}
.ws34{word-spacing:4.480000pt;}
.ws44{word-spacing:4.736000pt;}
.ws47{word-spacing:4.992000pt;}
.ws10{word-spacing:5.056000pt;}
.ws12{word-spacing:5.120000pt;}
.ws67{word-spacing:5.248000pt;}
.ws11{word-spacing:5.376000pt;}
.ws40{word-spacing:5.760000pt;}
.ws68{word-spacing:5.888000pt;}
.ws2f{word-spacing:6.016000pt;}
.ws32{word-spacing:6.272000pt;}
.ws1a{word-spacing:6.400000pt;}
.ws33{word-spacing:6.656000pt;}
.ws19{word-spacing:7.040000pt;}
.ws18{word-spacing:7.296000pt;}
.ws5c{word-spacing:7.552000pt;}
.ws5b{word-spacing:8.320000pt;}
.ws4b{word-spacing:10.880000pt;}
.ws4c{word-spacing:11.008000pt;}
.ws4a{word-spacing:11.136000pt;}
.ws62{word-spacing:15.616000pt;}
.ws66{word-spacing:26.240000pt;}
.ws65{word-spacing:26.496000pt;}
.ws26{word-spacing:39.808000pt;}
.ws27{word-spacing:39.936000pt;}
.ws6d{word-spacing:74.880000pt;}
._6{margin-left:-38.703040pt;}
._8{margin-left:-6.208000pt;}
._a{margin-left:-3.115520pt;}
._7{margin-left:-1.903040pt;}
._2{margin-left:-0.945600pt;}
._3{width:0.922560pt;}
._4{width:1.851200pt;}
._9{width:3.172160pt;}
._d{width:5.376000pt;}
._b{width:6.848000pt;}
._e{width:26.240000pt;}
._c{width:48.817280pt;}
._1{width:83.856000pt;}
._0{width:650.256000pt;}
._5{width:752.000000pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:14.240000pt;}
.y7{bottom:71.040000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:101.120000pt;}
.y5{bottom:129.280000pt;}
.yd4{bottom:148.800000pt;}
.y158{bottom:151.520000pt;}
.y64{bottom:158.555040pt;}
.y13b{bottom:162.080000pt;}
.y5c{bottom:164.480000pt;}
.y96{bottom:167.680000pt;}
.yeb{bottom:168.640000pt;}
.yd3{bottom:169.920000pt;}
.y157{bottom:172.640000pt;}
.y63{bottom:173.920000pt;}
.y8e{bottom:178.400000pt;}
.yfd{bottom:180.800000pt;}
.y180{bottom:181.280000pt;}
.y13a{bottom:183.200000pt;}
.y5b{bottom:185.600000pt;}
.y62{bottom:186.400000pt;}
.y95{bottom:188.800000pt;}
.yd2{bottom:191.040000pt;}
.y156{bottom:193.760000pt;}
.yea{bottom:197.760000pt;}
.y125{bottom:200.640000pt;}
.yfc{bottom:202.080000pt;}
.y139{bottom:204.480000pt;}
.y94{bottom:206.555040pt;}
.y5a{bottom:206.720000pt;}
.y8d{bottom:207.520000pt;}
.y17f{bottom:207.680000pt;}
.yd1{bottom:212.160000pt;}
.y155{bottom:215.040000pt;}
.ye9{bottom:218.880000pt;}
.ya7{bottom:221.120000pt;}
.y93{bottom:221.920000pt;}
.yfb{bottom:223.200000pt;}
.y138{bottom:225.600000pt;}
.y17e{bottom:226.080000pt;}
.y59{bottom:227.840000pt;}
.y43{bottom:228.320000pt;}
.y8c{bottom:228.640000pt;}
.y124{bottom:229.760000pt;}
.yd0{bottom:230.560000pt;}
.y92{bottom:234.560000pt;}
.ye8{bottom:237.280000pt;}
.y154{bottom:241.760000pt;}
.ya6{bottom:242.080000pt;}
.y76{bottom:242.240000pt;}
.yfa{bottom:244.320000pt;}
.y17d{bottom:244.480000pt;}
.yc7{bottom:244.800000pt;}
.ycf{bottom:248.320000pt;}
.y58{bottom:249.120000pt;}
.y42{bottom:249.440000pt;}
.y8b{bottom:249.760000pt;}
.y123{bottom:251.040000pt;}
.y137{bottom:254.720000pt;}
.ye7{bottom:255.035040pt;}
.ya5{bottom:260.480000pt;}
.yce{bottom:260.800000pt;}
.y17c{bottom:262.880000pt;}
.yf9{bottom:265.440000pt;}
.y57{bottom:270.240000pt;}
.ye6{bottom:270.400000pt;}
.y41{bottom:270.720000pt;}
.y75{bottom:271.360000pt;}
.y122{bottom:272.160000pt;}
.yc6{bottom:273.920000pt;}
.y136{bottom:275.840000pt;}
.ya4{bottom:278.240000pt;}
.y8a{bottom:279.040000pt;}
.y17b{bottom:281.280000pt;}
.ye5{bottom:282.880000pt;}
.y153{bottom:284.320000pt;}
.yf8{bottom:286.720000pt;}
.ya3{bottom:290.720000pt;}
.y56{bottom:291.360000pt;}
.y40{bottom:291.840000pt;}
.y74{bottom:292.640000pt;}
.y121{bottom:293.280000pt;}
.yc5{bottom:295.040000pt;}
.y135{bottom:297.120000pt;}
.y17a{bottom:299.680000pt;}
.y89{bottom:300.160000pt;}
.y152{bottom:305.440000pt;}
.yf7{bottom:307.840000pt;}
.y55{bottom:312.480000pt;}
.y3f{bottom:312.960000pt;}
.y73{bottom:313.760000pt;}
.y120{bottom:314.400000pt;}
.yc4{bottom:316.160000pt;}
.y179{bottom:318.080000pt;}
.y88{bottom:321.280000pt;}
.y134{bottom:323.840000pt;}
.y151{bottom:326.560000pt;}
.y72{bottom:334.880000pt;}
.y11f{bottom:335.680000pt;}
.y178{bottom:336.480000pt;}
.yf6{bottom:336.960000pt;}
.y54{bottom:341.760000pt;}
.y3e{bottom:342.080000pt;}
.y87{bottom:342.400000pt;}
.yc3{bottom:345.280000pt;}
.y150{bottom:347.680000pt;}
.y177{bottom:354.880000pt;}
.y71{bottom:356.000000pt;}
.y11e{bottom:356.800000pt;}
.yf5{bottom:358.080000pt;}
.y53{bottom:362.880000pt;}
.y3d{bottom:363.360000pt;}
.y133{bottom:363.520000pt;}
.yc2{bottom:366.560000pt;}
.y23{bottom:371.360000pt;}
.y86{bottom:371.680000pt;}
.y176{bottom:373.280000pt;}
.y14f{bottom:374.560000pt;}
.y70{bottom:377.280000pt;}
.y11d{bottom:377.920000pt;}
.yf4{bottom:379.360000pt;}
.y132{bottom:381.920000pt;}
.y52{bottom:384.000000pt;}
.y3c{bottom:384.480000pt;}
.yc1{bottom:387.680000pt;}
.y175{bottom:391.680000pt;}
.y85{bottom:392.800000pt;}
.y6f{bottom:395.680000pt;}
.y114{bottom:395.840000pt;}
.y131{bottom:399.676800pt;}
.y22{bottom:400.480000pt;}
.y51{bottom:405.120000pt;}
.y3b{bottom:405.600000pt;}
.y11c{bottom:407.040000pt;}
.yc0{bottom:408.800000pt;}
.y174{bottom:410.080000pt;}
.y130{bottom:412.160000pt;}
.y19c{bottom:412.960000pt;}
.y6e{bottom:413.440000pt;}
.y84{bottom:413.920000pt;}
.y113{bottom:414.240000pt;}
.y14e{bottom:416.960000pt;}
.yf3{bottom:421.600000pt;}
.y6d{bottom:425.920000pt;}
.y50{bottom:426.400000pt;}
.y3a{bottom:426.720000pt;}
.y11b{bottom:428.320000pt;}
.y21{bottom:429.760000pt;}
.ybf{bottom:429.920000pt;}
.y19b{bottom:431.360000pt;}
.y173{bottom:434.560000pt;}
.y83{bottom:435.040000pt;}
.y14d{bottom:438.240000pt;}
.yf2{bottom:442.720000pt;}
.y112{bottom:443.360000pt;}
.y172{bottom:446.880000pt;}
.y4f{bottom:447.520000pt;}
.y11a{bottom:449.440000pt;}
.y19a{bottom:449.760000pt;}
.y20{bottom:450.880000pt;}
.y39{bottom:456.000000pt;}
.ybe{bottom:456.160000pt;}
.y82{bottom:456.320000pt;}
.yf1{bottom:464.000000pt;}
.y111{bottom:464.640000pt;}
.y171{bottom:465.280000pt;}
.y14c{bottom:467.360000pt;}
.y199{bottom:468.160000pt;}
.y4e{bottom:468.640000pt;}
.y119{bottom:470.560000pt;}
.y1f{bottom:472.000000pt;}
.y38{bottom:477.120000pt;}
.y81{bottom:477.440000pt;}
.y170{bottom:483.680000pt;}
.y110{bottom:485.760000pt;}
.y198{bottom:486.560000pt;}
.y14b{bottom:488.480000pt;}
.y4d{bottom:489.760000pt;}
.yf0{bottom:490.080000pt;}
.y118{bottom:491.680000pt;}
.y1e{bottom:493.120000pt;}
.ybd{bottom:496.160000pt;}
.y37{bottom:498.240000pt;}
.y80{bottom:498.560000pt;}
.y16f{bottom:502.080000pt;}
.y197{bottom:504.960000pt;}
.y10f{bottom:506.880000pt;}
.y14a{bottom:509.600000pt;}
.y117{bottom:510.080000pt;}
.y4c{bottom:511.040000pt;}
.y61{bottom:514.240000pt;}
.y1d{bottom:514.400000pt;}
.ybc{bottom:517.440000pt;}
.y36{bottom:519.360000pt;}
.y7f{bottom:519.680000pt;}
.y16e{bottom:520.480000pt;}
.y196{bottom:523.360000pt;}
.yef{bottom:527.360000pt;}
.y10e{bottom:528.000000pt;}
.y116{bottom:528.480000pt;}
.y149{bottom:530.880000pt;}
.y60{bottom:535.360000pt;}
.y4b{bottom:537.760000pt;}
.y16d{bottom:538.880000pt;}
.y35{bottom:540.640000pt;}
.y115{bottom:543.360000pt;}
.y1c{bottom:543.520000pt;}
.yee{bottom:545.760000pt;}
.ybb{bottom:546.560000pt;}
.y195{bottom:547.840000pt;}
.y7e{bottom:548.960000pt;}
.y148{bottom:552.000000pt;}
.y5f{bottom:553.115040pt;}
.y10d{bottom:557.280000pt;}
.y194{bottom:560.160000pt;}
.y34{bottom:561.760000pt;}
.yed{bottom:563.520000pt;}
.yba{bottom:567.680000pt;}
.y5e{bottom:568.480000pt;}
.y7d{bottom:570.080000pt;}
.y1b{bottom:572.640000pt;}
.y16c{bottom:575.680000pt;}
.yec{bottom:576.000000pt;}
.y4a{bottom:577.440000pt;}
.y10c{bottom:578.400000pt;}
.y5d{bottom:580.960000pt;}
.y147{bottom:581.120000pt;}
.y33{bottom:582.880000pt;}
.y91{bottom:585.600000pt;}
.ye4{bottom:586.400000pt;}
.yb9{bottom:588.800000pt;}
.y7c{bottom:591.200000pt;}
.y16b{bottom:594.080000pt;}
.y49{bottom:595.200000pt;}
.y193{bottom:596.800000pt;}
.y10b{bottom:599.520000pt;}
.y1a{bottom:601.760000pt;}
.y146{bottom:602.240000pt;}
.y32{bottom:604.000000pt;}
.y48{bottom:607.680000pt;}
.yb8{bottom:610.080000pt;}
.ycd{bottom:610.240000pt;}
.y7b{bottom:612.320000pt;}
.y16a{bottom:612.480000pt;}
.y192{bottom:615.200000pt;}
.ye3{bottom:615.520000pt;}
.y10a{bottom:620.640000pt;}
.y90{bottom:621.760000pt;}
.y145{bottom:623.520000pt;}
.y31{bottom:625.120000pt;}
.y19{bottom:630.880000pt;}
.yb7{bottom:631.200000pt;}
.y7a{bottom:633.600000pt;}
.y8f{bottom:634.080000pt;}
.ye2{bottom:636.640000pt;}
.ycc{bottom:639.360000pt;}
.y109{bottom:641.920000pt;}
.y144{bottom:644.640000pt;}
.y30{bottom:646.400000pt;}
.y169{bottom:649.280000pt;}
.y79{bottom:652.000000pt;}
.y18{bottom:652.160000pt;}
.ye1{bottom:657.920000pt;}
.y191{bottom:658.080000pt;}
.yb6{bottom:660.320000pt;}
.ycb{bottom:660.480000pt;}
.y12f{bottom:662.880000pt;}
.y108{bottom:663.040000pt;}
.y168{bottom:667.680000pt;}
.y78{bottom:669.760000pt;}
.y190{bottom:670.400000pt;}
.ya2{bottom:671.040000pt;}
.y17{bottom:673.280000pt;}
.y143{bottom:673.760000pt;}
.yca{bottom:678.880000pt;}
.yb5{bottom:681.440000pt;}
.y77{bottom:682.080000pt;}
.y12e{bottom:684.000000pt;}
.y107{bottom:684.160000pt;}
.y167{bottom:686.080000pt;}
.ye0{bottom:687.040000pt;}
.y18f{bottom:688.800000pt;}
.y16{bottom:694.400000pt;}
.y142{bottom:694.880000pt;}
.yc9{bottom:696.640000pt;}
.ya1{bottom:700.160000pt;}
.yb4{bottom:702.560000pt;}
.y166{bottom:704.480000pt;}
.y12d{bottom:705.120000pt;}
.y106{bottom:705.280000pt;}
.y18e{bottom:707.200000pt;}
.ydf{bottom:708.160000pt;}
.yc8{bottom:709.120000pt;}
.y15{bottom:715.520000pt;}
.y2f{bottom:715.680000pt;}
.y141{bottom:716.160000pt;}
.ya0{bottom:721.280000pt;}
.y165{bottom:722.880000pt;}
.yb3{bottom:723.840000pt;}
.y18d{bottom:725.600000pt;}
.y12c{bottom:726.240000pt;}
.y105{bottom:726.560000pt;}
.yde{bottom:729.280000pt;}
.y14{bottom:736.800000pt;}
.y140{bottom:737.280000pt;}
.y164{bottom:741.280000pt;}
.y9f{bottom:742.560000pt;}
.y18c{bottom:744.000000pt;}
.y2e{bottom:744.800000pt;}
.y12b{bottom:747.520000pt;}
.y104{bottom:747.680000pt;}
.ydd{bottom:750.560000pt;}
.yb2{bottom:752.960000pt;}
.y13f{bottom:758.400000pt;}
.y163{bottom:759.680000pt;}
.y18b{bottom:762.240000pt;}
.y13{bottom:763.200000pt;}
.y9e{bottom:763.680000pt;}
.y2d{bottom:765.920000pt;}
.y12a{bottom:768.640000pt;}
.ydc{bottom:771.680000pt;}
.yb1{bottom:774.080000pt;}
.y103{bottom:776.800000pt;}
.y162{bottom:778.080000pt;}
.y18a{bottom:780.640000pt;}
.y13e{bottom:787.520000pt;}
.y12{bottom:789.600000pt;}
.y129{bottom:789.760000pt;}
.y9d{bottom:792.800000pt;}
.y2c{bottom:795.200000pt;}
.y161{bottom:796.480000pt;}
.y102{bottom:797.920000pt;}
.y189{bottom:799.040000pt;}
.y128{bottom:807.515040pt;}
.y13d{bottom:808.800000pt;}
.y9c{bottom:813.920000pt;}
.y160{bottom:814.880000pt;}
.yb0{bottom:816.480000pt;}
.y11{bottom:818.077440pt;}
.y101{bottom:819.200000pt;}
.ydb{bottom:821.920000pt;}
.y127{bottom:822.880000pt;}
.y188{bottom:823.520000pt;}
.y2b{bottom:824.320000pt;}
.y6c{bottom:829.920000pt;}
.y15f{bottom:833.280000pt;}
.y10{bottom:835.034880pt;}
.y9b{bottom:835.200000pt;}
.y126{bottom:835.360000pt;}
.y187{bottom:835.840000pt;}
.yaf{bottom:837.600000pt;}
.y100{bottom:840.320000pt;}
.yda{bottom:843.200000pt;}
.y15e{bottom:851.680000pt;}
.y2a{bottom:853.440000pt;}
.y186{bottom:854.240000pt;}
.y9a{bottom:856.320000pt;}
.yae{bottom:858.720000pt;}
.y6b{bottom:859.040000pt;}
.yf{bottom:860.000000pt;}
.yff{bottom:861.440000pt;}
.yd9{bottom:864.320000pt;}
.y15d{bottom:870.080000pt;}
.y185{bottom:872.640000pt;}
.y99{bottom:877.440000pt;}
.yad{bottom:879.840000pt;}
.y6a{bottom:880.160000pt;}
.y29{bottom:882.560000pt;}
.yd8{bottom:885.440000pt;}
.ye{bottom:886.720000pt;}
.y15c{bottom:888.480000pt;}
.yfe{bottom:890.560000pt;}
.y184{bottom:891.040000pt;}
.y98{bottom:898.560000pt;}
.yac{bottom:901.120000pt;}
.y69{bottom:901.280000pt;}
.yd{bottom:905.922560pt;}
.yd7{bottom:906.560000pt;}
.y15b{bottom:906.880000pt;}
.y183{bottom:909.440000pt;}
.y28{bottom:911.680000pt;}
.yab{bottom:919.520000pt;}
.y47{bottom:919.680000pt;}
.y68{bottom:922.560000pt;}
.y15a{bottom:925.280000pt;}
.yc{bottom:926.560000pt;}
.y97{bottom:927.680000pt;}
.yd6{bottom:927.840000pt;}
.y13c{bottom:930.560000pt;}
.y27{bottom:940.960000pt;}
.y159{bottom:943.680000pt;}
.yaa{bottom:945.600000pt;}
.y182{bottom:946.080000pt;}
.y46{bottom:948.960000pt;}
.y67{bottom:951.680000pt;}
.y26{bottom:962.080000pt;}
.yb{bottom:963.200000pt;}
.y45{bottom:970.080000pt;}
.y181{bottom:970.560000pt;}
.y66{bottom:972.800000pt;}
.yd5{bottom:975.040000pt;}
.ya9{bottom:982.880000pt;}
.y25{bottom:983.200000pt;}
.y44{bottom:991.200000pt;}
.y65{bottom:993.920000pt;}
.ya{bottom:1008.480000pt;}
.ya8{bottom:1009.760000pt;}
.y24{bottom:1012.320000pt;}
.y4{bottom:1041.600000pt;}
.y3{bottom:1059.688000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h5{height:29.118667pt;}
.h3{height:34.453125pt;}
.h13{height:37.624687pt;}
.h9{height:43.471250pt;}
.h11{height:44.437500pt;}
.h10{height:46.593750pt;}
.hf{height:46.609688pt;}
.hd{height:47.180312pt;}
.h8{height:48.185000pt;}
.ha{height:51.663750pt;}
.hc{height:54.514687pt;}
.h4{height:56.156250pt;}
.he{height:56.176090pt;}
.h7{height:56.565000pt;}
.hb{height:56.843750pt;}
.h6{height:61.278750pt;}
.h12{height:61.944687pt;}
.h2{height:67.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:18.560000pt;}
.w3{width:26.561333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.452000pt;}
.x13{left:122.880000pt;}
.x1{left:129.760000pt;}
.x6{left:155.840000pt;}
.x1c{left:161.600000pt;}
.x7{left:175.680000pt;}
.x1a{left:210.400000pt;}
.x2a{left:218.074400pt;}
.x24{left:226.238720pt;}
.x22{left:230.400000pt;}
.x20{left:243.200000pt;}
.x1e{left:257.440000pt;}
.x4{left:264.160000pt;}
.xe{left:278.880000pt;}
.x26{left:325.760000pt;}
.x18{left:337.280000pt;}
.x14{left:342.571040pt;}
.x10{left:347.680000pt;}
.x28{left:350.560000pt;}
.x16{left:376.800000pt;}
.x5{left:414.880000pt;}
.x11{left:425.128960pt;}
.x2{left:474.088000pt;}
.xc{left:479.360000pt;}
.x8{left:547.200000pt;}
.xf{left:553.120000pt;}
.xa{left:571.040000pt;}
.x17{left:575.360000pt;}
.x25{left:586.080000pt;}
.x9{left:588.165760pt;}
.x23{left:612.160000pt;}
.x1f{left:624.320000pt;}
.x21{left:633.120000pt;}
.x12{left:644.160000pt;}
.xd{left:652.480000pt;}
.x1b{left:670.560000pt;}
.x15{left:684.480000pt;}
.x19{left:688.160000pt;}
.x1d{left:691.200000pt;}
.x29{left:711.360000pt;}
.x27{left:716.160000pt;}
.xb{left:736.960000pt;}
}




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