
    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_fa2995e1d7d5390f6aaf6a6a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_f8b7c0b708768516f7d40781.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_882b311b1bca69b84ef894ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_415e0dcaf82ab3320d81bee0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_7d78eba6b5a1f2ef87bc2c7a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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:-84.024000px;}
.v1{vertical-align:-82.800000px;}
.v3{vertical-align:-75.570000px;}
.v0{vertical-align:0.000000px;}
.ls26{letter-spacing:-2.376000px;}
.ls35{letter-spacing:-2.016000px;}
.ls27{letter-spacing:-1.944000px;}
.ls18{letter-spacing:-1.872000px;}
.ls20{letter-spacing:-1.656000px;}
.ls2d{letter-spacing:-1.584000px;}
.ls29{letter-spacing:-1.224000px;}
.ls1c{letter-spacing:-0.924000px;}
.ls30{letter-spacing:-0.792000px;}
.ls34{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.624000px;}
.ls15{letter-spacing:-0.604800px;}
.ls1e{letter-spacing:-0.594000px;}
.ls19{letter-spacing:-0.462000px;}
.ls21{letter-spacing:-0.432000px;}
.ls22{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.330000px;}
.ls1f{letter-spacing:-0.312000px;}
.ls16{letter-spacing:-0.078000px;}
.ls14{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.036000px;}
.ls1d{letter-spacing:0.132000px;}
.ls1b{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.347760px;}
.lsa{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.594000px;}
.ls3{letter-spacing:0.604800px;}
.ls5{letter-spacing:0.624000px;}
.ls2{letter-spacing:0.684000px;}
.ls36{letter-spacing:0.792000px;}
.ls23{letter-spacing:0.936000px;}
.ls33{letter-spacing:1.267200px;}
.ls9{letter-spacing:1.584000px;}
.ls10{letter-spacing:2.376000px;}
.ls1{letter-spacing:3.612000px;}
.lsb{letter-spacing:3.643200px;}
.ls11{letter-spacing:3.696000px;}
.ls0{letter-spacing:4.200000px;}
.ls12{letter-spacing:4.284000px;}
.ls13{letter-spacing:4.788000px;}
.ls2f{letter-spacing:7.200000px;}
.lsf{letter-spacing:8.424000px;}
.lsc{letter-spacing:9.576000px;}
.ls28{letter-spacing:10.800000px;}
.lse{letter-spacing:10.821600px;}
.ls2e{letter-spacing:10.965600px;}
.lsd{letter-spacing:12.024000px;}
.ls31{letter-spacing:15.624000px;}
.ls2a{letter-spacing:18.187200px;}
.ls24{letter-spacing:25.200000px;}
.ls2b{letter-spacing:33.984000px;}
.ls32{letter-spacing:194.400000px;}
.ls2c{letter-spacing:223.200000px;}
.ls37{letter-spacing:417.600000px;}
.ls6{letter-spacing:643.812000px;}
.ls38{letter-spacing:987.888000px;}
.ls25{letter-spacing:1773.576000px;}
.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;}
}
.wse{word-spacing:-38.688000px;}
.ws0{word-spacing:-25.788000px;}
.ws1{word-spacing:-24.612000px;}
.ws8{word-spacing:-20.124000px;}
.ws3{word-spacing:-19.504800px;}
.ws7{word-spacing:-19.500000px;}
.ws5{word-spacing:-19.422000px;}
.ws4{word-spacing:-18.900000px;}
.ws6{word-spacing:-18.876000px;}
.ws11{word-spacing:-18.432000px;}
.ws2{word-spacing:-18.295200px;}
.ws10{word-spacing:-18.000000px;}
.ws6d{word-spacing:-17.640000px;}
.ws9{word-spacing:-17.628000px;}
.ws12{word-spacing:-17.568000px;}
.ws74{word-spacing:-17.280000px;}
.wsc{word-spacing:-17.094000px;}
.ws73{word-spacing:-16.776000px;}
.wsa{word-spacing:-16.500000px;}
.wsf{word-spacing:-16.344000px;}
.wsd{word-spacing:-15.906000px;}
.wsb{word-spacing:-15.048000px;}
.ws66{word-spacing:-5.256000px;}
.ws65{word-spacing:-4.824000px;}
.ws14{word-spacing:-4.284000px;}
.ws54{word-spacing:-4.032000px;}
.ws13{word-spacing:-3.696000px;}
.ws55{word-spacing:-3.600000px;}
.ws61{word-spacing:-2.808000px;}
.ws53{word-spacing:-2.376000px;}
.ws41{word-spacing:-2.058000px;}
.ws3a{word-spacing:-1.686000px;}
.ws3c{word-spacing:-1.680000px;}
.ws49{word-spacing:-1.656000px;}
.ws40{word-spacing:-1.650000px;}
.ws31{word-spacing:-1.632000px;}
.ws20{word-spacing:-1.518000px;}
.ws3b{word-spacing:-1.272000px;}
.ws30{word-spacing:-1.266000px;}
.ws21{word-spacing:-1.254000px;}
.ws5a{word-spacing:-1.224000px;}
.ws32{word-spacing:-0.864000px;}
.ws2d{word-spacing:-0.792000px;}
.ws26{word-spacing:-0.624000px;}
.ws1f{word-spacing:-0.594000px;}
.ws3d{word-spacing:-0.474000px;}
.ws1c{word-spacing:-0.462000px;}
.ws2f{word-spacing:-0.456000px;}
.ws2e{word-spacing:-0.432000px;}
.ws34{word-spacing:-0.408000px;}
.ws24{word-spacing:-0.330000px;}
.ws19{word-spacing:-0.312000px;}
.ws1d{word-spacing:-0.264000px;}
.ws3e{word-spacing:-0.018000px;}
.ws16{word-spacing:0.000000px;}
.ws23{word-spacing:0.330000px;}
.ws38{word-spacing:0.360000px;}
.ws35{word-spacing:0.408000px;}
.ws33{word-spacing:0.432000px;}
.ws29{word-spacing:0.450000px;}
.ws1e{word-spacing:0.462000px;}
.ws18{word-spacing:0.604800px;}
.ws1a{word-spacing:0.624000px;}
.ws27{word-spacing:0.648000px;}
.ws39{word-spacing:0.720000px;}
.ws3f{word-spacing:0.768000px;}
.ws1b{word-spacing:0.792000px;}
.ws17{word-spacing:0.907200px;}
.ws22{word-spacing:0.924000px;}
.ws25{word-spacing:0.936000px;}
.ws36{word-spacing:1.218000px;}
.ws43{word-spacing:1.224000px;}
.ws6e{word-spacing:1.584000px;}
.ws28{word-spacing:1.656000px;}
.ws15{word-spacing:1.764000px;}
.ws4f{word-spacing:1.944000px;}
.ws75{word-spacing:2.016000px;}
.ws2b{word-spacing:2.118000px;}
.ws5b{word-spacing:2.376000px;}
.ws50{word-spacing:2.808000px;}
.ws44{word-spacing:3.168000px;}
.ws62{word-spacing:3.600000px;}
.ws5d{word-spacing:4.392000px;}
.ws6b{word-spacing:4.824000px;}
.ws2a{word-spacing:4.944000px;}
.ws59{word-spacing:5.544000px;}
.ws64{word-spacing:5.976000px;}
.ws4a{word-spacing:6.768000px;}
.ws4b{word-spacing:7.200000px;}
.ws4d{word-spacing:7.992000px;}
.ws4e{word-spacing:8.424000px;}
.ws63{word-spacing:9.144000px;}
.ws72{word-spacing:9.576000px;}
.ws45{word-spacing:10.368000px;}
.ws67{word-spacing:10.800000px;}
.ws47{word-spacing:11.592000px;}
.ws46{word-spacing:12.024000px;}
.ws48{word-spacing:12.456000px;}
.ws5c{word-spacing:12.744000px;}
.ws6a{word-spacing:13.968000px;}
.ws69{word-spacing:14.400000px;}
.ws42{word-spacing:15.192000px;}
.ws6f{word-spacing:15.624000px;}
.ws4c{word-spacing:16.344000px;}
.ws71{word-spacing:16.776000px;}
.ws5e{word-spacing:17.568000px;}
.ws68{word-spacing:18.000000px;}
.ws58{word-spacing:19.224000px;}
.ws6c{word-spacing:21.168000px;}
.ws51{word-spacing:22.392000px;}
.ws5f{word-spacing:23.976000px;}
.ws52{word-spacing:24.768000px;}
.ws70{word-spacing:25.992000px;}
.ws56{word-spacing:27.144000px;}
.ws57{word-spacing:27.576000px;}
.ws60{word-spacing:28.800000px;}
.ws37{word-spacing:43.272000px;}
.ws2c{word-spacing:45.648000px;}
._7{margin-left:-5.172000px;}
._6{margin-left:-3.820800px;}
._5{margin-left:-2.549760px;}
._2{margin-left:-1.545600px;}
._0{width:1.478400px;}
._3{width:2.839200px;}
._4{width:3.914400px;}
._1{width:5.157600px;}
._d{width:6.873600px;}
._e{width:9.648000px;}
._9{width:10.800000px;}
._8{width:15.192000px;}
._a{width:23.755200px;}
._b{width:25.017600px;}
._c{width:27.769920px;}
.fc4{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(64,64,64);}
.fc2{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:75.600000px;}
.fs4{font-size:78.000000px;}
.fs0{font-size:84.000000px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y64{bottom:4.200000px;}
.y66{bottom:4.500000px;}
.y99{bottom:4.501500px;}
.y6f{bottom:5.100000px;}
.y75{bottom:5.400000px;}
.yb4{bottom:25.200000px;}
.y6d{bottom:46.500000px;}
.y73{bottom:46.800000px;}
.y3{bottom:68.400000px;}
.y29{bottom:97.200000px;}
.y6a{bottom:117.000000px;}
.y27{bottom:118.200000px;}
.y58{bottom:126.000000px;}
.yd5{bottom:133.200000px;}
.ya8{bottom:136.800000px;}
.y69{bottom:138.600000px;}
.y26{bottom:138.900000px;}
.y57{bottom:146.700000px;}
.yd4{bottom:153.900000px;}
.yee{bottom:156.600000px;}
.ya7{bottom:157.500000px;}
.y25{bottom:159.600000px;}
.y68{bottom:159.900000px;}
.y56{bottom:167.400000px;}
.yd3{bottom:174.600000px;}
.yed{bottom:177.300000px;}
.ya6{bottom:178.200000px;}
.y24{bottom:180.300000px;}
.y67{bottom:181.500000px;}
.y55{bottom:188.100000px;}
.yd2{bottom:195.300000px;}
.yec{bottom:198.000000px;}
.ya5{bottom:198.900000px;}
.y23{bottom:201.000000px;}
.y65{bottom:202.800000px;}
.y54{bottom:208.800000px;}
.yd1{bottom:216.000000px;}
.yeb{bottom:218.700000px;}
.y22{bottom:221.700000px;}
.y63{bottom:224.400000px;}
.y53{bottom:229.500000px;}
.yd0{bottom:236.700000px;}
.yea{bottom:239.400000px;}
.ya4{bottom:240.300000px;}
.y21{bottom:242.400000px;}
.y62{bottom:249.894000px;}
.y52{bottom:250.200000px;}
.ya3{bottom:257.100000px;}
.ycf{bottom:257.400000px;}
.ye9{bottom:260.100000px;}
.y20{bottom:263.100000px;}
.yf1{bottom:270.594000px;}
.y51{bottom:270.900000px;}
.yce{bottom:278.100000px;}
.ya2{bottom:278.700000px;}
.ye8{bottom:280.800000px;}
.y1f{bottom:283.800000px;}
.yf0{bottom:291.294000px;}
.y50{bottom:291.600000px;}
.ycd{bottom:298.800000px;}
.ya1{bottom:300.000000px;}
.ye7{bottom:301.500000px;}
.y1e{bottom:304.500000px;}
.y4f{bottom:312.300000px;}
.ycc{bottom:319.500000px;}
.ya0{bottom:321.600000px;}
.ye6{bottom:322.200000px;}
.y1d{bottom:325.200000px;}
.y4e{bottom:333.000000px;}
.ycb{bottom:340.200000px;}
.y9f{bottom:342.900000px;}
.y1c{bottom:345.900000px;}
.y4d{bottom:353.700000px;}
.yca{bottom:360.900000px;}
.ye5{bottom:363.600000px;}
.y9e{bottom:364.500000px;}
.y1b{bottom:366.600000px;}
.y4c{bottom:374.400000px;}
.y9b{bottom:380.100000px;}
.yc9{bottom:381.600000px;}
.ye4{bottom:384.300000px;}
.y9d{bottom:385.800000px;}
.y1a{bottom:387.300000px;}
.yd7{bottom:394.794000px;}
.y4b{bottom:395.100000px;}
.y9a{bottom:400.800000px;}
.yc8{bottom:402.300000px;}
.ye3{bottom:405.000000px;}
.y9c{bottom:407.400000px;}
.y19{bottom:408.000000px;}
.y4a{bottom:415.800000px;}
.yc7{bottom:423.000000px;}
.ye2{bottom:425.700000px;}
.y109{bottom:428.400000px;}
.y18{bottom:428.700000px;}
.y49{bottom:436.500000px;}
.yc6{bottom:443.700000px;}
.ye1{bottom:446.400000px;}
.y17{bottom:449.094000px;}
.y108{bottom:449.100000px;}
.y98{bottom:450.298500px;}
.y48{bottom:457.200000px;}
.yc5{bottom:464.400000px;}
.y93{bottom:466.500000px;}
.ye0{bottom:467.100000px;}
.y107{bottom:469.800000px;}
.y97{bottom:471.600000px;}
.y47{bottom:477.900000px;}
.yc4{bottom:485.100000px;}
.y92{bottom:487.200000px;}
.ydf{bottom:487.800000px;}
.y106{bottom:490.500000px;}
.y96{bottom:493.200000px;}
.y46{bottom:498.600000px;}
.yc3{bottom:505.800000px;}
.y91{bottom:507.900000px;}
.yde{bottom:508.500000px;}
.y105{bottom:511.200000px;}
.y95{bottom:514.500000px;}
.y45{bottom:519.300000px;}
.y16{bottom:523.281750px;}
.yc2{bottom:526.500000px;}
.y90{bottom:528.600000px;}
.ydd{bottom:529.200000px;}
.y104{bottom:531.327000px;}
.y94{bottom:536.100000px;}
.y44{bottom:540.000000px;}
.y15{bottom:543.981750px;}
.yc1{bottom:546.894000px;}
.ydc{bottom:549.900000px;}
.y103{bottom:550.533000px;}
.y8f{bottom:557.400000px;}
.y43{bottom:560.394000px;}
.y5e{bottom:560.700000px;}
.y14{bottom:564.682500px;}
.yc0{bottom:567.594000px;}
.ydb{bottom:570.600000px;}
.y8e{bottom:579.000000px;}
.y42{bottom:581.094000px;}
.y5d{bottom:581.400000px;}
.ybf{bottom:588.294000px;}
.y102{bottom:588.318000px;}
.yda{bottom:590.994000px;}
.y13{bottom:598.718250px;}
.y8d{bottom:600.300000px;}
.yef{bottom:601.794000px;}
.y41{bottom:602.100000px;}
.y101{bottom:607.210500px;}
.ybe{bottom:609.300000px;}
.yd9{bottom:611.694000px;}
.y12{bottom:619.268250px;}
.y8c{bottom:621.900000px;}
.yd6{bottom:622.494000px;}
.y40{bottom:622.800000px;}
.y100{bottom:626.416500px;}
.ybd{bottom:630.000000px;}
.yd8{bottom:632.394000px;}
.y11{bottom:639.817500px;}
.y8b{bottom:643.200000px;}
.y3f{bottom:643.500000px;}
.yff{bottom:645.309000px;}
.y86{bottom:648.900000px;}
.ybc{bottom:650.700000px;}
.y3e{bottom:664.200000px;}
.yfe{bottom:664.201500px;}
.y8a{bottom:664.800000px;}
.y85{bottom:669.600000px;}
.ybb{bottom:671.400000px;}
.y10{bottom:671.865900px;}
.yfd{bottom:683.094000px;}
.y3d{bottom:684.900000px;}
.y89{bottom:686.100000px;}
.yba{bottom:688.500000px;}
.y84{bottom:690.300000px;}
.yf{bottom:692.566500px;}
.yfc{bottom:702.300000px;}
.y5c{bottom:705.600000px;}
.y88{bottom:707.700000px;}
.yb9{bottom:709.800000px;}
.y83{bottom:711.000000px;}
.yfb{bottom:721.192500px;}
.y61{bottom:725.994000px;}
.y3c{bottom:726.300000px;}
.y87{bottom:729.000000px;}
.yb8{bottom:731.100000px;}
.yfa{bottom:739.788000px;}
.ye{bottom:744.588000px;}
.y3b{bottom:747.000000px;}
.y82{bottom:750.300000px;}
.yb7{bottom:752.700000px;}
.yf9{bottom:758.994000px;}
.y3a{bottom:767.700000px;}
.y81{bottom:771.900000px;}
.yb6{bottom:774.000000px;}
.yd{bottom:775.800000px;}
.yf8{bottom:778.200000px;}
.y39{bottom:788.400000px;}
.y80{bottom:793.200000px;}
.yb5{bottom:795.600000px;}
.yf7{bottom:797.100000px;}
.y38{bottom:809.100000px;}
.y7f{bottom:814.800000px;}
.yf6{bottom:816.603000px;}
.yb3{bottom:816.900000px;}
.yc{bottom:829.194000px;}
.y37{bottom:829.800000px;}
.y7e{bottom:836.100000px;}
.yf5{bottom:836.106000px;}
.y36{bottom:850.500000px;}
.yf4{bottom:854.998500px;}
.y7d{bottom:857.700000px;}
.yb2{bottom:859.200000px;}
.y35{bottom:871.200000px;}
.yb{bottom:874.200000px;}
.yf3{bottom:874.204500px;}
.y7c{bottom:879.000000px;}
.yb1{bottom:880.500000px;}
.y5f{bottom:891.594000px;}
.y34{bottom:891.900000px;}
.yf2{bottom:892.800000px;}
.y7b{bottom:900.600000px;}
.yb0{bottom:902.100000px;}
.y33{bottom:912.294000px;}
.y5b{bottom:912.600000px;}
.y78{bottom:915.900000px;}
.ya{bottom:918.894000px;}
.y7a{bottom:921.900000px;}
.yaf{bottom:923.400000px;}
.y32{bottom:933.300000px;}
.y79{bottom:943.500000px;}
.yae{bottom:945.000000px;}
.y31{bottom:954.000000px;}
.y72{bottom:964.800000px;}
.yad{bottom:966.300000px;}
.y60{bottom:974.394000px;}
.y30{bottom:974.700000px;}
.y77{bottom:986.400000px;}
.yac{bottom:987.900000px;}
.y74{bottom:990.900000px;}
.y2f{bottom:995.400000px;}
.y9{bottom:1004.100000px;}
.y76{bottom:1007.700000px;}
.yab{bottom:1009.200000px;}
.y2e{bottom:1016.100000px;}
.y8{bottom:1023.603000px;}
.y6c{bottom:1029.300000px;}
.yaa{bottom:1030.800000px;}
.y2d{bottom:1036.494000px;}
.y5a{bottom:1036.800000px;}
.y7{bottom:1043.106000px;}
.y71{bottom:1050.600000px;}
.ya9{bottom:1052.100000px;}
.y6e{bottom:1055.100000px;}
.y2c{bottom:1057.500000px;}
.y6{bottom:1061.998500px;}
.y70{bottom:1072.200000px;}
.y59{bottom:1077.894000px;}
.y2b{bottom:1078.200000px;}
.y5{bottom:1081.204500px;}
.y6b{bottom:1093.500000px;}
.y2a{bottom:1098.900000px;}
.y4{bottom:1099.800000px;}
.y28{bottom:1119.600000px;}
.y2{bottom:1146.600000px;}
.y1{bottom:1169.400000px;}
.h12{height:20.400000px;}
.hf{height:20.700000px;}
.he{height:20.701500px;}
.h13{height:41.400000px;}
.h11{height:63.600000px;}
.h10{height:63.601500px;}
.h7{height:64.763391px;}
.h6{height:64.775391px;}
.h5{height:66.515625px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.hc{height:72.565500px;}
.h3{height:74.197266px;}
.hd{height:75.093750px;}
.h4{height:76.552734px;}
.h2{height:82.441406px;}
.h9{height:105.996094px;}
.h8{height:157.218750px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.wb{width:61.800000px;}
.w5{width:113.700000px;}
.w8{width:156.300000px;}
.w9{width:199.498500px;}
.w4{width:213.000000px;}
.wa{width:245.400000px;}
.w7{width:261.298500px;}
.w6{width:324.898500px;}
.w3{width:439.500000px;}
.w2{width:653.400000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.800000px;}
.x3{left:81.000000px;}
.x15{left:84.312000px;}
.x17{left:87.912000px;}
.x6{left:89.082000px;}
.x1{left:92.700000px;}
.x2{left:105.600000px;}
.x1d{left:109.200000px;}
.x1e{left:111.306000px;}
.x19{left:113.700000px;}
.xf{left:119.700000px;}
.x12{left:127.500000px;}
.x5{left:130.825950px;}
.x4{left:134.100000px;}
.x8{left:160.800000px;}
.x16{left:202.806000px;}
.x20{left:214.200000px;}
.x9{left:226.194000px;}
.x13{left:234.300000px;}
.x18{left:238.200000px;}
.x1f{left:262.200000px;}
.x1a{left:270.900000px;}
.x14{left:297.900000px;}
.x7{left:368.400000px;}
.x21{left:446.400000px;}
.xd{left:463.788000px;}
.xa{left:465.570000px;}
.x1b{left:471.000000px;}
.xc{left:473.382000px;}
.xb{left:519.282000px;}
.x23{left:558.262500px;}
.x11{left:560.100000px;}
.x1c{left:717.300000px;}
.x22{left:724.194000px;}
.xe{left:812.088000px;}
@media print{
.v2{vertical-align:-74.688000pt;}
.v1{vertical-align:-73.600000pt;}
.v3{vertical-align:-67.173333pt;}
.v0{vertical-align:0.000000pt;}
.ls26{letter-spacing:-2.112000pt;}
.ls35{letter-spacing:-1.792000pt;}
.ls27{letter-spacing:-1.728000pt;}
.ls18{letter-spacing:-1.664000pt;}
.ls20{letter-spacing:-1.472000pt;}
.ls2d{letter-spacing:-1.408000pt;}
.ls29{letter-spacing:-1.088000pt;}
.ls1c{letter-spacing:-0.821333pt;}
.ls30{letter-spacing:-0.704000pt;}
.ls34{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.554667pt;}
.ls15{letter-spacing:-0.537600pt;}
.ls1e{letter-spacing:-0.528000pt;}
.ls19{letter-spacing:-0.410667pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.293333pt;}
.ls1f{letter-spacing:-0.277333pt;}
.ls16{letter-spacing:-0.069333pt;}
.ls14{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.032000pt;}
.ls1d{letter-spacing:0.117333pt;}
.ls1b{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.309120pt;}
.lsa{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.528000pt;}
.ls3{letter-spacing:0.537600pt;}
.ls5{letter-spacing:0.554667pt;}
.ls2{letter-spacing:0.608000pt;}
.ls36{letter-spacing:0.704000pt;}
.ls23{letter-spacing:0.832000pt;}
.ls33{letter-spacing:1.126400pt;}
.ls9{letter-spacing:1.408000pt;}
.ls10{letter-spacing:2.112000pt;}
.ls1{letter-spacing:3.210667pt;}
.lsb{letter-spacing:3.238400pt;}
.ls11{letter-spacing:3.285333pt;}
.ls0{letter-spacing:3.733333pt;}
.ls12{letter-spacing:3.808000pt;}
.ls13{letter-spacing:4.256000pt;}
.ls2f{letter-spacing:6.400000pt;}
.lsf{letter-spacing:7.488000pt;}
.lsc{letter-spacing:8.512000pt;}
.ls28{letter-spacing:9.600000pt;}
.lse{letter-spacing:9.619200pt;}
.ls2e{letter-spacing:9.747200pt;}
.lsd{letter-spacing:10.688000pt;}
.ls31{letter-spacing:13.888000pt;}
.ls2a{letter-spacing:16.166400pt;}
.ls24{letter-spacing:22.400000pt;}
.ls2b{letter-spacing:30.208000pt;}
.ls32{letter-spacing:172.800000pt;}
.ls2c{letter-spacing:198.400000pt;}
.ls37{letter-spacing:371.200000pt;}
.ls6{letter-spacing:572.277333pt;}
.ls38{letter-spacing:878.122667pt;}
.ls25{letter-spacing:1576.512000pt;}
.wse{word-spacing:-34.389333pt;}
.ws0{word-spacing:-22.922667pt;}
.ws1{word-spacing:-21.877333pt;}
.ws8{word-spacing:-17.888000pt;}
.ws3{word-spacing:-17.337600pt;}
.ws7{word-spacing:-17.333333pt;}
.ws5{word-spacing:-17.264000pt;}
.ws4{word-spacing:-16.800000pt;}
.ws6{word-spacing:-16.778667pt;}
.ws11{word-spacing:-16.384000pt;}
.ws2{word-spacing:-16.262400pt;}
.ws10{word-spacing:-16.000000pt;}
.ws6d{word-spacing:-15.680000pt;}
.ws9{word-spacing:-15.669333pt;}
.ws12{word-spacing:-15.616000pt;}
.ws74{word-spacing:-15.360000pt;}
.wsc{word-spacing:-15.194667pt;}
.ws73{word-spacing:-14.912000pt;}
.wsa{word-spacing:-14.666667pt;}
.wsf{word-spacing:-14.528000pt;}
.wsd{word-spacing:-14.138667pt;}
.wsb{word-spacing:-13.376000pt;}
.ws66{word-spacing:-4.672000pt;}
.ws65{word-spacing:-4.288000pt;}
.ws14{word-spacing:-3.808000pt;}
.ws54{word-spacing:-3.584000pt;}
.ws13{word-spacing:-3.285333pt;}
.ws55{word-spacing:-3.200000pt;}
.ws61{word-spacing:-2.496000pt;}
.ws53{word-spacing:-2.112000pt;}
.ws41{word-spacing:-1.829333pt;}
.ws3a{word-spacing:-1.498667pt;}
.ws3c{word-spacing:-1.493333pt;}
.ws49{word-spacing:-1.472000pt;}
.ws40{word-spacing:-1.466667pt;}
.ws31{word-spacing:-1.450667pt;}
.ws20{word-spacing:-1.349333pt;}
.ws3b{word-spacing:-1.130667pt;}
.ws30{word-spacing:-1.125333pt;}
.ws21{word-spacing:-1.114667pt;}
.ws5a{word-spacing:-1.088000pt;}
.ws32{word-spacing:-0.768000pt;}
.ws2d{word-spacing:-0.704000pt;}
.ws26{word-spacing:-0.554667pt;}
.ws1f{word-spacing:-0.528000pt;}
.ws3d{word-spacing:-0.421333pt;}
.ws1c{word-spacing:-0.410667pt;}
.ws2f{word-spacing:-0.405333pt;}
.ws2e{word-spacing:-0.384000pt;}
.ws34{word-spacing:-0.362667pt;}
.ws24{word-spacing:-0.293333pt;}
.ws19{word-spacing:-0.277333pt;}
.ws1d{word-spacing:-0.234667pt;}
.ws3e{word-spacing:-0.016000pt;}
.ws16{word-spacing:0.000000pt;}
.ws23{word-spacing:0.293333pt;}
.ws38{word-spacing:0.320000pt;}
.ws35{word-spacing:0.362667pt;}
.ws33{word-spacing:0.384000pt;}
.ws29{word-spacing:0.400000pt;}
.ws1e{word-spacing:0.410667pt;}
.ws18{word-spacing:0.537600pt;}
.ws1a{word-spacing:0.554667pt;}
.ws27{word-spacing:0.576000pt;}
.ws39{word-spacing:0.640000pt;}
.ws3f{word-spacing:0.682667pt;}
.ws1b{word-spacing:0.704000pt;}
.ws17{word-spacing:0.806400pt;}
.ws22{word-spacing:0.821333pt;}
.ws25{word-spacing:0.832000pt;}
.ws36{word-spacing:1.082667pt;}
.ws43{word-spacing:1.088000pt;}
.ws6e{word-spacing:1.408000pt;}
.ws28{word-spacing:1.472000pt;}
.ws15{word-spacing:1.568000pt;}
.ws4f{word-spacing:1.728000pt;}
.ws75{word-spacing:1.792000pt;}
.ws2b{word-spacing:1.882667pt;}
.ws5b{word-spacing:2.112000pt;}
.ws50{word-spacing:2.496000pt;}
.ws44{word-spacing:2.816000pt;}
.ws62{word-spacing:3.200000pt;}
.ws5d{word-spacing:3.904000pt;}
.ws6b{word-spacing:4.288000pt;}
.ws2a{word-spacing:4.394667pt;}
.ws59{word-spacing:4.928000pt;}
.ws64{word-spacing:5.312000pt;}
.ws4a{word-spacing:6.016000pt;}
.ws4b{word-spacing:6.400000pt;}
.ws4d{word-spacing:7.104000pt;}
.ws4e{word-spacing:7.488000pt;}
.ws63{word-spacing:8.128000pt;}
.ws72{word-spacing:8.512000pt;}
.ws45{word-spacing:9.216000pt;}
.ws67{word-spacing:9.600000pt;}
.ws47{word-spacing:10.304000pt;}
.ws46{word-spacing:10.688000pt;}
.ws48{word-spacing:11.072000pt;}
.ws5c{word-spacing:11.328000pt;}
.ws6a{word-spacing:12.416000pt;}
.ws69{word-spacing:12.800000pt;}
.ws42{word-spacing:13.504000pt;}
.ws6f{word-spacing:13.888000pt;}
.ws4c{word-spacing:14.528000pt;}
.ws71{word-spacing:14.912000pt;}
.ws5e{word-spacing:15.616000pt;}
.ws68{word-spacing:16.000000pt;}
.ws58{word-spacing:17.088000pt;}
.ws6c{word-spacing:18.816000pt;}
.ws51{word-spacing:19.904000pt;}
.ws5f{word-spacing:21.312000pt;}
.ws52{word-spacing:22.016000pt;}
.ws70{word-spacing:23.104000pt;}
.ws56{word-spacing:24.128000pt;}
.ws57{word-spacing:24.512000pt;}
.ws60{word-spacing:25.600000pt;}
.ws37{word-spacing:38.464000pt;}
.ws2c{word-spacing:40.576000pt;}
._7{margin-left:-4.597333pt;}
._6{margin-left:-3.396267pt;}
._5{margin-left:-2.266453pt;}
._2{margin-left:-1.373867pt;}
._0{width:1.314133pt;}
._3{width:2.523733pt;}
._4{width:3.479467pt;}
._1{width:4.584533pt;}
._d{width:6.109867pt;}
._e{width:8.576000pt;}
._9{width:9.600000pt;}
._8{width:13.504000pt;}
._a{width:21.115733pt;}
._b{width:22.237867pt;}
._c{width:24.684373pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:67.200000pt;}
.fs4{font-size:69.333333pt;}
.fs0{font-size:74.666667pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:3.733333pt;}
.y66{bottom:4.000000pt;}
.y99{bottom:4.001333pt;}
.y6f{bottom:4.533333pt;}
.y75{bottom:4.800000pt;}
.yb4{bottom:22.400000pt;}
.y6d{bottom:41.333333pt;}
.y73{bottom:41.600000pt;}
.y3{bottom:60.800000pt;}
.y29{bottom:86.400000pt;}
.y6a{bottom:104.000000pt;}
.y27{bottom:105.066667pt;}
.y58{bottom:112.000000pt;}
.yd5{bottom:118.400000pt;}
.ya8{bottom:121.600000pt;}
.y69{bottom:123.200000pt;}
.y26{bottom:123.466667pt;}
.y57{bottom:130.400000pt;}
.yd4{bottom:136.800000pt;}
.yee{bottom:139.200000pt;}
.ya7{bottom:140.000000pt;}
.y25{bottom:141.866667pt;}
.y68{bottom:142.133333pt;}
.y56{bottom:148.800000pt;}
.yd3{bottom:155.200000pt;}
.yed{bottom:157.600000pt;}
.ya6{bottom:158.400000pt;}
.y24{bottom:160.266667pt;}
.y67{bottom:161.333333pt;}
.y55{bottom:167.200000pt;}
.yd2{bottom:173.600000pt;}
.yec{bottom:176.000000pt;}
.ya5{bottom:176.800000pt;}
.y23{bottom:178.666667pt;}
.y65{bottom:180.266667pt;}
.y54{bottom:185.600000pt;}
.yd1{bottom:192.000000pt;}
.yeb{bottom:194.400000pt;}
.y22{bottom:197.066667pt;}
.y63{bottom:199.466667pt;}
.y53{bottom:204.000000pt;}
.yd0{bottom:210.400000pt;}
.yea{bottom:212.800000pt;}
.ya4{bottom:213.600000pt;}
.y21{bottom:215.466667pt;}
.y62{bottom:222.128000pt;}
.y52{bottom:222.400000pt;}
.ya3{bottom:228.533333pt;}
.ycf{bottom:228.800000pt;}
.ye9{bottom:231.200000pt;}
.y20{bottom:233.866667pt;}
.yf1{bottom:240.528000pt;}
.y51{bottom:240.800000pt;}
.yce{bottom:247.200000pt;}
.ya2{bottom:247.733333pt;}
.ye8{bottom:249.600000pt;}
.y1f{bottom:252.266667pt;}
.yf0{bottom:258.928000pt;}
.y50{bottom:259.200000pt;}
.ycd{bottom:265.600000pt;}
.ya1{bottom:266.666667pt;}
.ye7{bottom:268.000000pt;}
.y1e{bottom:270.666667pt;}
.y4f{bottom:277.600000pt;}
.ycc{bottom:284.000000pt;}
.ya0{bottom:285.866667pt;}
.ye6{bottom:286.400000pt;}
.y1d{bottom:289.066667pt;}
.y4e{bottom:296.000000pt;}
.ycb{bottom:302.400000pt;}
.y9f{bottom:304.800000pt;}
.y1c{bottom:307.466667pt;}
.y4d{bottom:314.400000pt;}
.yca{bottom:320.800000pt;}
.ye5{bottom:323.200000pt;}
.y9e{bottom:324.000000pt;}
.y1b{bottom:325.866667pt;}
.y4c{bottom:332.800000pt;}
.y9b{bottom:337.866667pt;}
.yc9{bottom:339.200000pt;}
.ye4{bottom:341.600000pt;}
.y9d{bottom:342.933333pt;}
.y1a{bottom:344.266667pt;}
.yd7{bottom:350.928000pt;}
.y4b{bottom:351.200000pt;}
.y9a{bottom:356.266667pt;}
.yc8{bottom:357.600000pt;}
.ye3{bottom:360.000000pt;}
.y9c{bottom:362.133333pt;}
.y19{bottom:362.666667pt;}
.y4a{bottom:369.600000pt;}
.yc7{bottom:376.000000pt;}
.ye2{bottom:378.400000pt;}
.y109{bottom:380.800000pt;}
.y18{bottom:381.066667pt;}
.y49{bottom:388.000000pt;}
.yc6{bottom:394.400000pt;}
.ye1{bottom:396.800000pt;}
.y17{bottom:399.194667pt;}
.y108{bottom:399.200000pt;}
.y98{bottom:400.265333pt;}
.y48{bottom:406.400000pt;}
.yc5{bottom:412.800000pt;}
.y93{bottom:414.666667pt;}
.ye0{bottom:415.200000pt;}
.y107{bottom:417.600000pt;}
.y97{bottom:419.200000pt;}
.y47{bottom:424.800000pt;}
.yc4{bottom:431.200000pt;}
.y92{bottom:433.066667pt;}
.ydf{bottom:433.600000pt;}
.y106{bottom:436.000000pt;}
.y96{bottom:438.400000pt;}
.y46{bottom:443.200000pt;}
.yc3{bottom:449.600000pt;}
.y91{bottom:451.466667pt;}
.yde{bottom:452.000000pt;}
.y105{bottom:454.400000pt;}
.y95{bottom:457.333333pt;}
.y45{bottom:461.600000pt;}
.y16{bottom:465.139333pt;}
.yc2{bottom:468.000000pt;}
.y90{bottom:469.866667pt;}
.ydd{bottom:470.400000pt;}
.y104{bottom:472.290667pt;}
.y94{bottom:476.533333pt;}
.y44{bottom:480.000000pt;}
.y15{bottom:483.539333pt;}
.yc1{bottom:486.128000pt;}
.ydc{bottom:488.800000pt;}
.y103{bottom:489.362667pt;}
.y8f{bottom:495.466667pt;}
.y43{bottom:498.128000pt;}
.y5e{bottom:498.400000pt;}
.y14{bottom:501.940000pt;}
.yc0{bottom:504.528000pt;}
.ydb{bottom:507.200000pt;}
.y8e{bottom:514.666667pt;}
.y42{bottom:516.528000pt;}
.y5d{bottom:516.800000pt;}
.ybf{bottom:522.928000pt;}
.y102{bottom:522.949333pt;}
.yda{bottom:525.328000pt;}
.y13{bottom:532.194000pt;}
.y8d{bottom:533.600000pt;}
.yef{bottom:534.928000pt;}
.y41{bottom:535.200000pt;}
.y101{bottom:539.742667pt;}
.ybe{bottom:541.600000pt;}
.yd9{bottom:543.728000pt;}
.y12{bottom:550.460667pt;}
.y8c{bottom:552.800000pt;}
.yd6{bottom:553.328000pt;}
.y40{bottom:553.600000pt;}
.y100{bottom:556.814667pt;}
.ybd{bottom:560.000000pt;}
.yd8{bottom:562.128000pt;}
.y11{bottom:568.726667pt;}
.y8b{bottom:571.733333pt;}
.y3f{bottom:572.000000pt;}
.yff{bottom:573.608000pt;}
.y86{bottom:576.800000pt;}
.ybc{bottom:578.400000pt;}
.y3e{bottom:590.400000pt;}
.yfe{bottom:590.401333pt;}
.y8a{bottom:590.933333pt;}
.y85{bottom:595.200000pt;}
.ybb{bottom:596.800000pt;}
.y10{bottom:597.214133pt;}
.yfd{bottom:607.194667pt;}
.y3d{bottom:608.800000pt;}
.y89{bottom:609.866667pt;}
.yba{bottom:612.000000pt;}
.y84{bottom:613.600000pt;}
.yf{bottom:615.614667pt;}
.yfc{bottom:624.266667pt;}
.y5c{bottom:627.200000pt;}
.y88{bottom:629.066667pt;}
.yb9{bottom:630.933333pt;}
.y83{bottom:632.000000pt;}
.yfb{bottom:641.060000pt;}
.y61{bottom:645.328000pt;}
.y3c{bottom:645.600000pt;}
.y87{bottom:648.000000pt;}
.yb8{bottom:649.866667pt;}
.yfa{bottom:657.589333pt;}
.ye{bottom:661.856000pt;}
.y3b{bottom:664.000000pt;}
.y82{bottom:666.933333pt;}
.yb7{bottom:669.066667pt;}
.yf9{bottom:674.661333pt;}
.y3a{bottom:682.400000pt;}
.y81{bottom:686.133333pt;}
.yb6{bottom:688.000000pt;}
.yd{bottom:689.600000pt;}
.yf8{bottom:691.733333pt;}
.y39{bottom:700.800000pt;}
.y80{bottom:705.066667pt;}
.yb5{bottom:707.200000pt;}
.yf7{bottom:708.533333pt;}
.y38{bottom:719.200000pt;}
.y7f{bottom:724.266667pt;}
.yf6{bottom:725.869333pt;}
.yb3{bottom:726.133333pt;}
.yc{bottom:737.061333pt;}
.y37{bottom:737.600000pt;}
.y7e{bottom:743.200000pt;}
.yf5{bottom:743.205333pt;}
.y36{bottom:756.000000pt;}
.yf4{bottom:759.998667pt;}
.y7d{bottom:762.400000pt;}
.yb2{bottom:763.733333pt;}
.y35{bottom:774.400000pt;}
.yb{bottom:777.066667pt;}
.yf3{bottom:777.070667pt;}
.y7c{bottom:781.333333pt;}
.yb1{bottom:782.666667pt;}
.y5f{bottom:792.528000pt;}
.y34{bottom:792.800000pt;}
.yf2{bottom:793.600000pt;}
.y7b{bottom:800.533333pt;}
.yb0{bottom:801.866667pt;}
.y33{bottom:810.928000pt;}
.y5b{bottom:811.200000pt;}
.y78{bottom:814.133333pt;}
.ya{bottom:816.794667pt;}
.y7a{bottom:819.466667pt;}
.yaf{bottom:820.800000pt;}
.y32{bottom:829.600000pt;}
.y79{bottom:838.666667pt;}
.yae{bottom:840.000000pt;}
.y31{bottom:848.000000pt;}
.y72{bottom:857.600000pt;}
.yad{bottom:858.933333pt;}
.y60{bottom:866.128000pt;}
.y30{bottom:866.400000pt;}
.y77{bottom:876.800000pt;}
.yac{bottom:878.133333pt;}
.y74{bottom:880.800000pt;}
.y2f{bottom:884.800000pt;}
.y9{bottom:892.533333pt;}
.y76{bottom:895.733333pt;}
.yab{bottom:897.066667pt;}
.y2e{bottom:903.200000pt;}
.y8{bottom:909.869333pt;}
.y6c{bottom:914.933333pt;}
.yaa{bottom:916.266667pt;}
.y2d{bottom:921.328000pt;}
.y5a{bottom:921.600000pt;}
.y7{bottom:927.205333pt;}
.y71{bottom:933.866667pt;}
.ya9{bottom:935.200000pt;}
.y6e{bottom:937.866667pt;}
.y2c{bottom:940.000000pt;}
.y6{bottom:943.998667pt;}
.y70{bottom:953.066667pt;}
.y59{bottom:958.128000pt;}
.y2b{bottom:958.400000pt;}
.y5{bottom:961.070667pt;}
.y6b{bottom:972.000000pt;}
.y2a{bottom:976.800000pt;}
.y4{bottom:977.600000pt;}
.y28{bottom:995.200000pt;}
.y2{bottom:1019.200000pt;}
.y1{bottom:1039.466667pt;}
.h12{height:18.133333pt;}
.hf{height:18.400000pt;}
.he{height:18.401333pt;}
.h13{height:36.800000pt;}
.h11{height:56.533333pt;}
.h10{height:56.534667pt;}
.h7{height:57.567458pt;}
.h6{height:57.578125pt;}
.h5{height:59.125000pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.hc{height:64.502667pt;}
.h3{height:65.953125pt;}
.hd{height:66.750000pt;}
.h4{height:68.046875pt;}
.h2{height:73.281250pt;}
.h9{height:94.218750pt;}
.h8{height:139.750000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.wb{width:54.933333pt;}
.w5{width:101.066667pt;}
.w8{width:138.933333pt;}
.w9{width:177.332000pt;}
.w4{width:189.333333pt;}
.wa{width:218.133333pt;}
.w7{width:232.265333pt;}
.w6{width:288.798667pt;}
.w3{width:390.666667pt;}
.w2{width:580.800000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.933333pt;}
.x3{left:72.000000pt;}
.x15{left:74.944000pt;}
.x17{left:78.144000pt;}
.x6{left:79.184000pt;}
.x1{left:82.400000pt;}
.x2{left:93.866667pt;}
.x1d{left:97.066667pt;}
.x1e{left:98.938667pt;}
.x19{left:101.066667pt;}
.xf{left:106.400000pt;}
.x12{left:113.333333pt;}
.x5{left:116.289733pt;}
.x4{left:119.200000pt;}
.x8{left:142.933333pt;}
.x16{left:180.272000pt;}
.x20{left:190.400000pt;}
.x9{left:201.061333pt;}
.x13{left:208.266667pt;}
.x18{left:211.733333pt;}
.x1f{left:233.066667pt;}
.x1a{left:240.800000pt;}
.x14{left:264.800000pt;}
.x7{left:327.466667pt;}
.x21{left:396.800000pt;}
.xd{left:412.256000pt;}
.xa{left:413.840000pt;}
.x1b{left:418.666667pt;}
.xc{left:420.784000pt;}
.xb{left:461.584000pt;}
.x23{left:496.233333pt;}
.x11{left:497.866667pt;}
.x1c{left:637.600000pt;}
.x22{left:643.728000pt;}
.xe{left:721.856000pt;}
}




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