
    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_7e27675718f86b0df3f0e73b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.766602;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_2f3fa7b589abdf1d8ee4bedb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.977539;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_fc4af3ac8e5fbf3e3b268ba0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.800293;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_99628b0e5eab96f215f2342b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_675fe8fb037a8dd7f5f5f5de.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_6db06b2c190b86e0b961aa65.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_1809df1d0b7e77016fd7feba.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7eec402c49a1c5d98be0dc16.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_feea7ed6c2fd7dd1a2523e4c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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:ffb;src:url('chunks/assets/font_2b4e665713343b595e428497.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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:ffc;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls2{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.720000px;}
.ls8{letter-spacing:6.480000px;}
.lsc{letter-spacing:15.120000px;}
.lsf{letter-spacing:20.856000px;}
.lse{letter-spacing:21.744000px;}
.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;}
}
.ws5{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws0{word-spacing:-13.447440px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-4.416000px;}
._8{margin-left:-2.880000px;}
._0{margin-left:-1.243142px;}
._1{width:1.238842px;}
._16{width:2.379475px;}
._12{width:3.672000px;}
._f{width:4.838284px;}
._b{width:6.048000px;}
._4{width:7.704000px;}
._3{width:8.712000px;}
._15{width:9.792000px;}
._e{width:10.800000px;}
._6{width:12.684000px;}
._5{width:13.824000px;}
._7{width:14.868000px;}
._9{width:16.092000px;}
._d{width:19.296000px;}
._c{width:20.808000px;}
._1e{width:22.296000px;}
._19{width:23.472000px;}
._1a{width:24.624000px;}
._1c{width:25.848000px;}
._27{width:26.856000px;}
._34{width:27.936000px;}
._17{width:29.520000px;}
._18{width:30.672000px;}
._1b{width:32.040000px;}
._51{width:33.234317px;}
._52{width:34.752000px;}
._24{width:35.856000px;}
._1d{width:37.584000px;}
._13{width:39.144000px;}
._14{width:40.188000px;}
._11{width:42.048000px;}
._10{width:43.219142px;}
._26{width:45.936000px;}
._47{width:48.600000px;}
._2a{width:52.632000px;}
._4e{width:53.640000px;}
._30{width:55.080000px;}
._33{width:59.184000px;}
._2c{width:60.408000px;}
._44{width:61.632000px;}
._28{width:63.216000px;}
._22{width:65.520000px;}
._23{width:66.672000px;}
._21{width:70.056000px;}
._42{width:71.928000px;}
._25{width:74.304000px;}
._3d{width:76.104000px;}
._3a{width:80.208000px;}
._29{width:82.512000px;}
._35{width:83.880000px;}
._32{width:86.616000px;}
._31{width:91.152000px;}
._2d{width:94.320000px;}
._1f{width:98.280000px;}
._50{width:100.512000px;}
._2f{width:103.104000px;}
._4d{width:108.144000px;}
._4b{width:109.800000px;}
._3b{width:114.264000px;}
._3e{width:117.432000px;}
._38{width:122.112000px;}
._3c{width:123.552000px;}
._48{width:127.800000px;}
._4c{width:130.392000px;}
._37{width:135.288000px;}
._43{width:139.248000px;}
._46{width:144.144000px;}
._2{width:146.082865px;}
._40{width:151.992000px;}
._39{width:153.648000px;}
._20{width:165.960000px;}
._41{width:171.576000px;}
._45{width:177.912000px;}
._3f{width:179.568000px;}
._2b{width:186.624000px;}
._2e{width:194.688000px;}
._49{width:204.264000px;}
._4f{width:212.544000px;}
._36{width:218.304000px;}
._4a{width:228.456000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(0,176,240);}
.fc4{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.y3a{bottom:3.960000px;}
.y38{bottom:14.220000px;}
.y57{bottom:14.400000px;}
.y9d{bottom:24.480000px;}
.y39{bottom:24.660000px;}
.y6a{bottom:24.690000px;}
.y3d{bottom:34.920000px;}
.y42{bottom:35.100000px;}
.y9c{bottom:45.180000px;}
.y65{bottom:45.354000px;}
.y40{bottom:45.360000px;}
.y3c{bottom:55.620000px;}
.y48{bottom:55.800000px;}
.y97{bottom:65.700000px;}
.y3f{bottom:65.880000px;}
.y64{bottom:66.054000px;}
.y43{bottom:66.060000px;}
.y60{bottom:66.105000px;}
.y4{bottom:68.580000px;}
.y66{bottom:76.314000px;}
.y6e{bottom:76.320000px;}
.y5b{bottom:76.365000px;}
.y47{bottom:76.500000px;}
.y3e{bottom:86.580000px;}
.y63{bottom:86.754000px;}
.y45{bottom:86.760000px;}
.y5c{bottom:86.805000px;}
.y6d{bottom:97.020000px;}
.y5a{bottom:97.065000px;}
.y46{bottom:97.200000px;}
.ya0{bottom:97.230000px;}
.y9a{bottom:107.280000px;}
.y62{bottom:107.454000px;}
.y72{bottom:107.460000px;}
.ya4{bottom:107.490000px;}
.y4a{bottom:107.505000px;}
.y6c{bottom:117.720000px;}
.y59{bottom:117.765000px;}
.y74{bottom:117.900000px;}
.y9f{bottom:117.930000px;}
.yb3{bottom:117.945000px;}
.ybd{bottom:118.296000px;}
.y61{bottom:119.016000px;}
.yf8{bottom:122.796000px;}
.y93{bottom:126.036000px;}
.y71{bottom:127.980000px;}
.y68{bottom:128.154000px;}
.y77{bottom:128.160000px;}
.ya3{bottom:128.190000px;}
.y49{bottom:128.205000px;}
.y36{bottom:128.916000px;}
.y124{bottom:131.076000px;}
.y99{bottom:138.420000px;}
.yb2{bottom:138.645000px;}
.yf7{bottom:143.496000px;}
.y92{bottom:146.736000px;}
.ye5{bottom:146.916000px;}
.y70{bottom:148.680000px;}
.y67{bottom:148.854000px;}
.y76{bottom:148.860000px;}
.ya2{bottom:148.890000px;}
.y5f{bottom:148.905000px;}
.y35{bottom:149.616000px;}
.y123{bottom:151.770000px;}
.yb4{bottom:159.345000px;}
.ybb{bottom:160.410000px;}
.yf6{bottom:164.190000px;}
.y91{bottom:167.430000px;}
.ye4{bottom:167.610000px;}
.y6f{bottom:169.380000px;}
.ybc{bottom:169.560000px;}
.yaf{bottom:169.590000px;}
.y5e{bottom:169.605000px;}
.y34{bottom:170.310000px;}
.y122{bottom:172.470000px;}
.y90{bottom:188.130000px;}
.ye3{bottom:188.310000px;}
.y9b{bottom:190.125000px;}
.y5d{bottom:190.305000px;}
.y33{bottom:191.010000px;}
.y121{bottom:193.170000px;}
.y8f{bottom:208.830000px;}
.ye2{bottom:209.010000px;}
.y75{bottom:211.005000px;}
.y32{bottom:211.710000px;}
.y120{bottom:213.870000px;}
.y8e{bottom:229.530000px;}
.ye1{bottom:229.710000px;}
.y31{bottom:232.410000px;}
.y11f{bottom:234.570000px;}
.y8d{bottom:250.230000px;}
.ye0{bottom:250.410000px;}
.y30{bottom:253.110000px;}
.y11e{bottom:255.270000px;}
.y8c{bottom:270.930000px;}
.ydf{bottom:271.110000px;}
.y2f{bottom:273.810000px;}
.y11d{bottom:275.970000px;}
.y58{bottom:285.330000px;}
.y8b{bottom:291.630000px;}
.yde{bottom:291.810000px;}
.y2e{bottom:294.510000px;}
.y11c{bottom:296.670000px;}
.y8a{bottom:312.330000px;}
.ydd{bottom:312.510000px;}
.y2d{bottom:315.210000px;}
.y11b{bottom:317.370000px;}
.yad{bottom:331.410000px;}
.y89{bottom:333.030000px;}
.y2c{bottom:335.910000px;}
.y11a{bottom:338.115000px;}
.yac{bottom:352.155000px;}
.y88{bottom:353.595000px;}
.ydc{bottom:354.315000px;}
.y2b{bottom:356.655000px;}
.y119{bottom:358.815000px;}
.yab{bottom:372.855000px;}
.y87{bottom:374.295000px;}
.ydb{bottom:375.015000px;}
.y2a{bottom:377.355000px;}
.y118{bottom:379.515000px;}
.yba{bottom:388.875000px;}
.yaa{bottom:393.555000px;}
.y86{bottom:394.995000px;}
.yda{bottom:395.715000px;}
.y29{bottom:398.055000px;}
.y117{bottom:400.215000px;}
.yb9{bottom:410.295000px;}
.ya9{bottom:414.255000px;}
.y85{bottom:415.695000px;}
.yd9{bottom:416.415000px;}
.y28{bottom:418.755000px;}
.y116{bottom:420.915000px;}
.ya8{bottom:434.955000px;}
.y84{bottom:436.395000px;}
.yd8{bottom:437.115000px;}
.y27{bottom:439.455000px;}
.y115{bottom:441.615000px;}
.ya7{bottom:455.655000px;}
.y83{bottom:457.095000px;}
.yd7{bottom:457.815000px;}
.y26{bottom:460.155000px;}
.y114{bottom:462.315000px;}
.ya6{bottom:476.355000px;}
.y82{bottom:477.795000px;}
.y25{bottom:480.855000px;}
.y113{bottom:483.015000px;}
.y56{bottom:493.095000px;}
.ya5{bottom:493.815000px;}
.y81{bottom:498.495000px;}
.yd6{bottom:499.395000px;}
.y24{bottom:501.555000px;}
.y112{bottom:503.715000px;}
.y126{bottom:504.255000px;}
.y9e{bottom:515.235000px;}
.y80{bottom:519.195000px;}
.yd5{bottom:520.095000px;}
.y23{bottom:522.255000px;}
.y111{bottom:524.415000px;}
.y125{bottom:524.955000px;}
.y55{bottom:539.175000px;}
.y7f{bottom:539.895000px;}
.yd4{bottom:540.795000px;}
.y22{bottom:542.955000px;}
.y110{bottom:545.115000px;}
.y54{bottom:559.875000px;}
.y7e{bottom:560.595000px;}
.yd3{bottom:561.495000px;}
.y21{bottom:563.655000px;}
.y10f{bottom:565.815000px;}
.yb8{bottom:576.615000px;}
.y53{bottom:580.575000px;}
.y7d{bottom:581.295000px;}
.yd2{bottom:582.195000px;}
.y20{bottom:584.355000px;}
.y10e{bottom:586.515000px;}
.ya1{bottom:591.195000px;}
.y52{bottom:601.275000px;}
.y7c{bottom:601.995000px;}
.yd1{bottom:602.895000px;}
.yf5{bottom:604.545000px;}
.y1f{bottom:605.085000px;}
.y10d{bottom:607.245000px;}
.y51{bottom:622.005000px;}
.y7b{bottom:622.725000px;}
.yf4{bottom:625.245000px;}
.y1e{bottom:625.785000px;}
.y10c{bottom:627.945000px;}
.y50{bottom:642.705000px;}
.y7a{bottom:643.425000px;}
.yd0{bottom:644.685000px;}
.yf3{bottom:645.945000px;}
.y1d{bottom:646.485000px;}
.y10b{bottom:648.645000px;}
.y4f{bottom:663.405000px;}
.y79{bottom:664.125000px;}
.ycf{bottom:665.385000px;}
.yf2{bottom:666.645000px;}
.y1c{bottom:667.185000px;}
.y10a{bottom:669.345000px;}
.y98{bottom:681.765000px;}
.y4e{bottom:684.105000px;}
.y78{bottom:684.825000px;}
.yce{bottom:686.085000px;}
.yf1{bottom:687.345000px;}
.y1b{bottom:687.885000px;}
.y109{bottom:690.045000px;}
.y73{bottom:702.285000px;}
.y4d{bottom:704.805000px;}
.yb7{bottom:705.525000px;}
.ycd{bottom:706.785000px;}
.yf0{bottom:708.045000px;}
.y1a{bottom:708.585000px;}
.y108{bottom:710.745000px;}
.y4c{bottom:725.505000px;}
.yb6{bottom:726.225000px;}
.ycc{bottom:727.485000px;}
.yef{bottom:728.745000px;}
.y19{bottom:729.285000px;}
.y107{bottom:731.445000px;}
.y4b{bottom:746.205000px;}
.yb5{bottom:746.925000px;}
.ycb{bottom:748.185000px;}
.yee{bottom:749.445000px;}
.y18{bottom:749.985000px;}
.y106{bottom:752.145000px;}
.y44{bottom:763.665000px;}
.yb1{bottom:764.385000px;}
.yca{bottom:768.885000px;}
.y17{bottom:770.685000px;}
.y105{bottom:772.845000px;}
.yc9{bottom:789.585000px;}
.yed{bottom:791.025000px;}
.y16{bottom:791.385000px;}
.y104{bottom:793.545000px;}
.yc8{bottom:810.285000px;}
.yec{bottom:811.725000px;}
.y15{bottom:812.085000px;}
.y103{bottom:814.245000px;}
.yc7{bottom:830.985000px;}
.yeb{bottom:832.425000px;}
.y14{bottom:832.785000px;}
.y102{bottom:834.945000px;}
.yc6{bottom:851.685000px;}
.yea{bottom:853.125000px;}
.y13{bottom:853.485000px;}
.y101{bottom:855.645000px;}
.yc5{bottom:872.430000px;}
.ye9{bottom:873.870000px;}
.y12{bottom:874.230000px;}
.y100{bottom:888.270000px;}
.y95{bottom:889.530000px;}
.ye8{bottom:894.570000px;}
.y11{bottom:894.930000px;}
.yff{bottom:908.970000px;}
.y41{bottom:909.330000px;}
.yc4{bottom:914.190000px;}
.ye7{bottom:915.270000px;}
.y10{bottom:915.630000px;}
.y6b{bottom:930.930000px;}
.yc3{bottom:934.890000px;}
.ye6{bottom:935.970000px;}
.yf{bottom:936.330000px;}
.yfe{bottom:941.730000px;}
.yb0{bottom:951.630000px;}
.yc2{bottom:955.590000px;}
.ye{bottom:957.030000px;}
.yfd{bottom:962.430000px;}
.y96{bottom:965.310000px;}
.yae{bottom:973.050000px;}
.yc1{bottom:976.290000px;}
.yd{bottom:977.730000px;}
.y3b{bottom:993.030000px;}
.yfc{bottom:995.190000px;}
.yc0{bottom:996.990000px;}
.yc{bottom:998.430000px;}
.yfb{bottom:1015.890000px;}
.ybf{bottom:1017.690000px;}
.yb{bottom:1019.130000px;}
.ybe{bottom:1035.150000px;}
.ya{bottom:1039.830000px;}
.yfa{bottom:1048.470000px;}
.y9{bottom:1060.530000px;}
.yf9{bottom:1069.170000px;}
.y94{bottom:1076.550000px;}
.y8{bottom:1081.230000px;}
.y37{bottom:1097.250000px;}
.y7{bottom:1101.930000px;}
.y69{bottom:1117.950000px;}
.y6{bottom:1122.630000px;}
.y5{bottom:1143.360000px;}
.y3{bottom:1162.800000px;}
.y2{bottom:1180.260000px;}
.y1{bottom:1217.520000px;}
.h12{height:2.010938px;}
.h16{height:20.700000px;}
.h15{height:20.736000px;}
.h2{height:40.790039px;}
.hd{height:41.400000px;}
.h9{height:41.436000px;}
.h4{height:45.386260px;}
.h7{height:50.273438px;}
.h6{height:50.800781px;}
.h19{height:52.417969px;}
.h5{height:56.900391px;}
.h8{height:59.343750px;}
.h3{height:70.802565px;}
.hb{height:82.800000px;}
.ha{height:103.320000px;}
.h18{height:124.236000px;}
.hc{height:144.936000px;}
.hf{height:165.600000px;}
.h14{height:165.630000px;}
.h10{height:186.120000px;}
.h17{height:186.330000px;}
.h13{height:206.850000px;}
.he{height:207.030000px;}
.h11{height:227.730000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:93.636000px;}
.w12{width:96.120000px;}
.w6{width:102.600000px;}
.wd{width:113.436000px;}
.w16{width:114.120000px;}
.w15{width:114.876000px;}
.wb{width:115.920000px;}
.w9{width:120.240000px;}
.we{width:121.356000px;}
.w18{width:121.536000px;}
.wf{width:125.460000px;}
.w8{width:126.576000px;}
.w19{width:129.096000px;}
.wa{width:129.816000px;}
.w3{width:134.460000px;}
.w4{width:134.496000px;}
.w5{width:134.676000px;}
.w14{width:142.776000px;}
.w11{width:176.250000px;}
.w17{width:182.370000px;}
.w13{width:193.350000px;}
.w7{width:193.530000px;}
.wc{width:196.230000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:1.080000px;}
.xe{left:7.740000px;}
.x1{left:108.035987px;}
.x3{left:138.995987px;}
.x2{left:142.775987px;}
.x24{left:162.029987px;}
.x23{left:174.089987px;}
.x1e{left:205.590000px;}
.x13{left:212.070000px;}
.x21{left:223.590000px;}
.x17{left:225.570000px;}
.x1d{left:235.470000px;}
.xf{left:243.930000px;}
.xd{left:283.934987px;}
.x8{left:289.334987px;}
.x4{left:303.554987px;}
.xa{left:311.834987px;}
.x9{left:327.854987px;}
.xb{left:340.814987px;}
.x7{left:360.434987px;}
.x10{left:379.335000px;}
.xc{left:390.674987px;}
.x1f{left:399.675000px;}
.x14{left:406.335000px;}
.x18{left:422.535000px;}
.x1b{left:432.435000px;}
.x6{left:436.034987px;}
.x5{left:446.474987px;}
.x11{left:514.545000px;}
.x22{left:528.945000px;}
.x15{left:533.625000px;}
.x19{left:536.685000px;}
.x20{left:543.165000px;}
.x12{left:649.725000px;}
.x16{left:654.585000px;}
.x1a{left:658.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls8{letter-spacing:5.760000pt;}
.lsc{letter-spacing:13.440000pt;}
.lsf{letter-spacing:18.538667pt;}
.lse{letter-spacing:19.328000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-3.925333pt;}
._8{margin-left:-2.560000pt;}
._0{margin-left:-1.105015pt;}
._1{width:1.101192pt;}
._16{width:2.115089pt;}
._12{width:3.264000pt;}
._f{width:4.300697pt;}
._b{width:5.376000pt;}
._4{width:6.848000pt;}
._3{width:7.744000pt;}
._15{width:8.704000pt;}
._e{width:9.600000pt;}
._6{width:11.274667pt;}
._5{width:12.288000pt;}
._7{width:13.216000pt;}
._9{width:14.304000pt;}
._d{width:17.152000pt;}
._c{width:18.496000pt;}
._1e{width:19.818667pt;}
._19{width:20.864000pt;}
._1a{width:21.888000pt;}
._1c{width:22.976000pt;}
._27{width:23.872000pt;}
._34{width:24.832000pt;}
._17{width:26.240000pt;}
._18{width:27.264000pt;}
._1b{width:28.480000pt;}
._51{width:29.541615pt;}
._52{width:30.890667pt;}
._24{width:31.872000pt;}
._1d{width:33.408000pt;}
._13{width:34.794667pt;}
._14{width:35.722667pt;}
._11{width:37.376000pt;}
._10{width:38.417015pt;}
._26{width:40.832000pt;}
._47{width:43.200000pt;}
._2a{width:46.784000pt;}
._4e{width:47.680000pt;}
._30{width:48.960000pt;}
._33{width:52.608000pt;}
._2c{width:53.696000pt;}
._44{width:54.784000pt;}
._28{width:56.192000pt;}
._22{width:58.240000pt;}
._23{width:59.264000pt;}
._21{width:62.272000pt;}
._42{width:63.936000pt;}
._25{width:66.048000pt;}
._3d{width:67.648000pt;}
._3a{width:71.296000pt;}
._29{width:73.344000pt;}
._35{width:74.560000pt;}
._32{width:76.992000pt;}
._31{width:81.024000pt;}
._2d{width:83.840000pt;}
._1f{width:87.360000pt;}
._50{width:89.344000pt;}
._2f{width:91.648000pt;}
._4d{width:96.128000pt;}
._4b{width:97.600000pt;}
._3b{width:101.568000pt;}
._3e{width:104.384000pt;}
._38{width:108.544000pt;}
._3c{width:109.824000pt;}
._48{width:113.600000pt;}
._4c{width:115.904000pt;}
._37{width:120.256000pt;}
._43{width:123.776000pt;}
._46{width:128.128000pt;}
._2{width:129.851436pt;}
._40{width:135.104000pt;}
._39{width:136.576000pt;}
._20{width:147.520000pt;}
._41{width:152.512000pt;}
._45{width:158.144000pt;}
._3f{width:159.616000pt;}
._2b{width:165.888000pt;}
._2e{width:173.056000pt;}
._49{width:181.568000pt;}
._4f{width:188.928000pt;}
._36{width:194.048000pt;}
._4a{width:203.072000pt;}
.fs5{font-size:2.560000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:3.520000pt;}
.y38{bottom:12.640000pt;}
.y57{bottom:12.800000pt;}
.y9d{bottom:21.760000pt;}
.y39{bottom:21.920000pt;}
.y6a{bottom:21.946667pt;}
.y3d{bottom:31.040000pt;}
.y42{bottom:31.200000pt;}
.y9c{bottom:40.160000pt;}
.y65{bottom:40.314667pt;}
.y40{bottom:40.320000pt;}
.y3c{bottom:49.440000pt;}
.y48{bottom:49.600000pt;}
.y97{bottom:58.400000pt;}
.y3f{bottom:58.560000pt;}
.y64{bottom:58.714667pt;}
.y43{bottom:58.720000pt;}
.y60{bottom:58.760000pt;}
.y4{bottom:60.960000pt;}
.y66{bottom:67.834667pt;}
.y6e{bottom:67.840000pt;}
.y5b{bottom:67.880000pt;}
.y47{bottom:68.000000pt;}
.y3e{bottom:76.960000pt;}
.y63{bottom:77.114667pt;}
.y45{bottom:77.120000pt;}
.y5c{bottom:77.160000pt;}
.y6d{bottom:86.240000pt;}
.y5a{bottom:86.280000pt;}
.y46{bottom:86.400000pt;}
.ya0{bottom:86.426667pt;}
.y9a{bottom:95.360000pt;}
.y62{bottom:95.514667pt;}
.y72{bottom:95.520000pt;}
.ya4{bottom:95.546667pt;}
.y4a{bottom:95.560000pt;}
.y6c{bottom:104.640000pt;}
.y59{bottom:104.680000pt;}
.y74{bottom:104.800000pt;}
.y9f{bottom:104.826667pt;}
.yb3{bottom:104.840000pt;}
.ybd{bottom:105.152000pt;}
.y61{bottom:105.792000pt;}
.yf8{bottom:109.152000pt;}
.y93{bottom:112.032000pt;}
.y71{bottom:113.760000pt;}
.y68{bottom:113.914667pt;}
.y77{bottom:113.920000pt;}
.ya3{bottom:113.946667pt;}
.y49{bottom:113.960000pt;}
.y36{bottom:114.592000pt;}
.y124{bottom:116.512000pt;}
.y99{bottom:123.040000pt;}
.yb2{bottom:123.240000pt;}
.yf7{bottom:127.552000pt;}
.y92{bottom:130.432000pt;}
.ye5{bottom:130.592000pt;}
.y70{bottom:132.160000pt;}
.y67{bottom:132.314667pt;}
.y76{bottom:132.320000pt;}
.ya2{bottom:132.346667pt;}
.y5f{bottom:132.360000pt;}
.y35{bottom:132.992000pt;}
.y123{bottom:134.906667pt;}
.yb4{bottom:141.640000pt;}
.ybb{bottom:142.586667pt;}
.yf6{bottom:145.946667pt;}
.y91{bottom:148.826667pt;}
.ye4{bottom:148.986667pt;}
.y6f{bottom:150.560000pt;}
.ybc{bottom:150.720000pt;}
.yaf{bottom:150.746667pt;}
.y5e{bottom:150.760000pt;}
.y34{bottom:151.386667pt;}
.y122{bottom:153.306667pt;}
.y90{bottom:167.226667pt;}
.ye3{bottom:167.386667pt;}
.y9b{bottom:169.000000pt;}
.y5d{bottom:169.160000pt;}
.y33{bottom:169.786667pt;}
.y121{bottom:171.706667pt;}
.y8f{bottom:185.626667pt;}
.ye2{bottom:185.786667pt;}
.y75{bottom:187.560000pt;}
.y32{bottom:188.186667pt;}
.y120{bottom:190.106667pt;}
.y8e{bottom:204.026667pt;}
.ye1{bottom:204.186667pt;}
.y31{bottom:206.586667pt;}
.y11f{bottom:208.506667pt;}
.y8d{bottom:222.426667pt;}
.ye0{bottom:222.586667pt;}
.y30{bottom:224.986667pt;}
.y11e{bottom:226.906667pt;}
.y8c{bottom:240.826667pt;}
.ydf{bottom:240.986667pt;}
.y2f{bottom:243.386667pt;}
.y11d{bottom:245.306667pt;}
.y58{bottom:253.626667pt;}
.y8b{bottom:259.226667pt;}
.yde{bottom:259.386667pt;}
.y2e{bottom:261.786667pt;}
.y11c{bottom:263.706667pt;}
.y8a{bottom:277.626667pt;}
.ydd{bottom:277.786667pt;}
.y2d{bottom:280.186667pt;}
.y11b{bottom:282.106667pt;}
.yad{bottom:294.586667pt;}
.y89{bottom:296.026667pt;}
.y2c{bottom:298.586667pt;}
.y11a{bottom:300.546667pt;}
.yac{bottom:313.026667pt;}
.y88{bottom:314.306667pt;}
.ydc{bottom:314.946667pt;}
.y2b{bottom:317.026667pt;}
.y119{bottom:318.946667pt;}
.yab{bottom:331.426667pt;}
.y87{bottom:332.706667pt;}
.ydb{bottom:333.346667pt;}
.y2a{bottom:335.426667pt;}
.y118{bottom:337.346667pt;}
.yba{bottom:345.666667pt;}
.yaa{bottom:349.826667pt;}
.y86{bottom:351.106667pt;}
.yda{bottom:351.746667pt;}
.y29{bottom:353.826667pt;}
.y117{bottom:355.746667pt;}
.yb9{bottom:364.706667pt;}
.ya9{bottom:368.226667pt;}
.y85{bottom:369.506667pt;}
.yd9{bottom:370.146667pt;}
.y28{bottom:372.226667pt;}
.y116{bottom:374.146667pt;}
.ya8{bottom:386.626667pt;}
.y84{bottom:387.906667pt;}
.yd8{bottom:388.546667pt;}
.y27{bottom:390.626667pt;}
.y115{bottom:392.546667pt;}
.ya7{bottom:405.026667pt;}
.y83{bottom:406.306667pt;}
.yd7{bottom:406.946667pt;}
.y26{bottom:409.026667pt;}
.y114{bottom:410.946667pt;}
.ya6{bottom:423.426667pt;}
.y82{bottom:424.706667pt;}
.y25{bottom:427.426667pt;}
.y113{bottom:429.346667pt;}
.y56{bottom:438.306667pt;}
.ya5{bottom:438.946667pt;}
.y81{bottom:443.106667pt;}
.yd6{bottom:443.906667pt;}
.y24{bottom:445.826667pt;}
.y112{bottom:447.746667pt;}
.y126{bottom:448.226667pt;}
.y9e{bottom:457.986667pt;}
.y80{bottom:461.506667pt;}
.yd5{bottom:462.306667pt;}
.y23{bottom:464.226667pt;}
.y111{bottom:466.146667pt;}
.y125{bottom:466.626667pt;}
.y55{bottom:479.266667pt;}
.y7f{bottom:479.906667pt;}
.yd4{bottom:480.706667pt;}
.y22{bottom:482.626667pt;}
.y110{bottom:484.546667pt;}
.y54{bottom:497.666667pt;}
.y7e{bottom:498.306667pt;}
.yd3{bottom:499.106667pt;}
.y21{bottom:501.026667pt;}
.y10f{bottom:502.946667pt;}
.yb8{bottom:512.546667pt;}
.y53{bottom:516.066667pt;}
.y7d{bottom:516.706667pt;}
.yd2{bottom:517.506667pt;}
.y20{bottom:519.426667pt;}
.y10e{bottom:521.346667pt;}
.ya1{bottom:525.506667pt;}
.y52{bottom:534.466667pt;}
.y7c{bottom:535.106667pt;}
.yd1{bottom:535.906667pt;}
.yf5{bottom:537.373333pt;}
.y1f{bottom:537.853333pt;}
.y10d{bottom:539.773333pt;}
.y51{bottom:552.893333pt;}
.y7b{bottom:553.533333pt;}
.yf4{bottom:555.773333pt;}
.y1e{bottom:556.253333pt;}
.y10c{bottom:558.173333pt;}
.y50{bottom:571.293333pt;}
.y7a{bottom:571.933333pt;}
.yd0{bottom:573.053333pt;}
.yf3{bottom:574.173333pt;}
.y1d{bottom:574.653333pt;}
.y10b{bottom:576.573333pt;}
.y4f{bottom:589.693333pt;}
.y79{bottom:590.333333pt;}
.ycf{bottom:591.453333pt;}
.yf2{bottom:592.573333pt;}
.y1c{bottom:593.053333pt;}
.y10a{bottom:594.973333pt;}
.y98{bottom:606.013333pt;}
.y4e{bottom:608.093333pt;}
.y78{bottom:608.733333pt;}
.yce{bottom:609.853333pt;}
.yf1{bottom:610.973333pt;}
.y1b{bottom:611.453333pt;}
.y109{bottom:613.373333pt;}
.y73{bottom:624.253333pt;}
.y4d{bottom:626.493333pt;}
.yb7{bottom:627.133333pt;}
.ycd{bottom:628.253333pt;}
.yf0{bottom:629.373333pt;}
.y1a{bottom:629.853333pt;}
.y108{bottom:631.773333pt;}
.y4c{bottom:644.893333pt;}
.yb6{bottom:645.533333pt;}
.ycc{bottom:646.653333pt;}
.yef{bottom:647.773333pt;}
.y19{bottom:648.253333pt;}
.y107{bottom:650.173333pt;}
.y4b{bottom:663.293333pt;}
.yb5{bottom:663.933333pt;}
.ycb{bottom:665.053333pt;}
.yee{bottom:666.173333pt;}
.y18{bottom:666.653333pt;}
.y106{bottom:668.573333pt;}
.y44{bottom:678.813333pt;}
.yb1{bottom:679.453333pt;}
.yca{bottom:683.453333pt;}
.y17{bottom:685.053333pt;}
.y105{bottom:686.973333pt;}
.yc9{bottom:701.853333pt;}
.yed{bottom:703.133333pt;}
.y16{bottom:703.453333pt;}
.y104{bottom:705.373333pt;}
.yc8{bottom:720.253333pt;}
.yec{bottom:721.533333pt;}
.y15{bottom:721.853333pt;}
.y103{bottom:723.773333pt;}
.yc7{bottom:738.653333pt;}
.yeb{bottom:739.933333pt;}
.y14{bottom:740.253333pt;}
.y102{bottom:742.173333pt;}
.yc6{bottom:757.053333pt;}
.yea{bottom:758.333333pt;}
.y13{bottom:758.653333pt;}
.y101{bottom:760.573333pt;}
.yc5{bottom:775.493333pt;}
.ye9{bottom:776.773333pt;}
.y12{bottom:777.093333pt;}
.y100{bottom:789.573333pt;}
.y95{bottom:790.693333pt;}
.ye8{bottom:795.173333pt;}
.y11{bottom:795.493333pt;}
.yff{bottom:807.973333pt;}
.y41{bottom:808.293333pt;}
.yc4{bottom:812.613333pt;}
.ye7{bottom:813.573333pt;}
.y10{bottom:813.893333pt;}
.y6b{bottom:827.493333pt;}
.yc3{bottom:831.013333pt;}
.ye6{bottom:831.973333pt;}
.yf{bottom:832.293333pt;}
.yfe{bottom:837.093333pt;}
.yb0{bottom:845.893333pt;}
.yc2{bottom:849.413333pt;}
.ye{bottom:850.693333pt;}
.yfd{bottom:855.493333pt;}
.y96{bottom:858.053333pt;}
.yae{bottom:864.933333pt;}
.yc1{bottom:867.813333pt;}
.yd{bottom:869.093333pt;}
.y3b{bottom:882.693333pt;}
.yfc{bottom:884.613333pt;}
.yc0{bottom:886.213333pt;}
.yc{bottom:887.493333pt;}
.yfb{bottom:903.013333pt;}
.ybf{bottom:904.613333pt;}
.yb{bottom:905.893333pt;}
.ybe{bottom:920.133333pt;}
.ya{bottom:924.293333pt;}
.yfa{bottom:931.973333pt;}
.y9{bottom:942.693333pt;}
.yf9{bottom:950.373333pt;}
.y94{bottom:956.933333pt;}
.y8{bottom:961.093333pt;}
.y37{bottom:975.333333pt;}
.y7{bottom:979.493333pt;}
.y69{bottom:993.733333pt;}
.y6{bottom:997.893333pt;}
.y5{bottom:1016.320000pt;}
.y3{bottom:1033.600000pt;}
.y2{bottom:1049.120000pt;}
.y1{bottom:1082.240000pt;}
.h12{height:1.787500pt;}
.h16{height:18.400000pt;}
.h15{height:18.432000pt;}
.h2{height:36.257812pt;}
.hd{height:36.800000pt;}
.h9{height:36.832000pt;}
.h4{height:40.343342pt;}
.h7{height:44.687500pt;}
.h6{height:45.156250pt;}
.h19{height:46.593750pt;}
.h5{height:50.578125pt;}
.h8{height:52.750000pt;}
.h3{height:62.935614pt;}
.hb{height:73.600000pt;}
.ha{height:91.840000pt;}
.h18{height:110.432000pt;}
.hc{height:128.832000pt;}
.hf{height:147.200000pt;}
.h14{height:147.226667pt;}
.h10{height:165.440000pt;}
.h17{height:165.626667pt;}
.h13{height:183.866667pt;}
.he{height:184.026667pt;}
.h11{height:202.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:83.232000pt;}
.w12{width:85.440000pt;}
.w6{width:91.200000pt;}
.wd{width:100.832000pt;}
.w16{width:101.440000pt;}
.w15{width:102.112000pt;}
.wb{width:103.040000pt;}
.w9{width:106.880000pt;}
.we{width:107.872000pt;}
.w18{width:108.032000pt;}
.wf{width:111.520000pt;}
.w8{width:112.512000pt;}
.w19{width:114.752000pt;}
.wa{width:115.392000pt;}
.w3{width:119.520000pt;}
.w4{width:119.552000pt;}
.w5{width:119.712000pt;}
.w14{width:126.912000pt;}
.w11{width:156.666667pt;}
.w17{width:162.106667pt;}
.w13{width:171.866667pt;}
.w7{width:172.026667pt;}
.wc{width:174.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:0.960000pt;}
.xe{left:6.880000pt;}
.x1{left:96.031988pt;}
.x3{left:123.551988pt;}
.x2{left:126.911988pt;}
.x24{left:144.026655pt;}
.x23{left:154.746655pt;}
.x1e{left:182.746667pt;}
.x13{left:188.506667pt;}
.x21{left:198.746667pt;}
.x17{left:200.506667pt;}
.x1d{left:209.306667pt;}
.xf{left:216.826667pt;}
.xd{left:252.386655pt;}
.x8{left:257.186655pt;}
.x4{left:269.826655pt;}
.xa{left:277.186655pt;}
.x9{left:291.426655pt;}
.xb{left:302.946655pt;}
.x7{left:320.386655pt;}
.x10{left:337.186667pt;}
.xc{left:347.266655pt;}
.x1f{left:355.266667pt;}
.x14{left:361.186667pt;}
.x18{left:375.586667pt;}
.x1b{left:384.386667pt;}
.x6{left:387.586655pt;}
.x5{left:396.866655pt;}
.x11{left:457.373333pt;}
.x22{left:470.173333pt;}
.x15{left:474.333333pt;}
.x19{left:477.053333pt;}
.x20{left:482.813333pt;}
.x12{left:577.533333pt;}
.x16{left:581.853333pt;}
.x1a{left:585.733333pt;}
}




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