
    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_3500d24d9d29ffb4a28b132d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_b27e4f692ed2590f9ce92613.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5dfc1070d90f6900ca180b32.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5c0e4b9b7d416ce511823faa.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b020a30ee8fa4d289232acb9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.123047;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_1c178a5649fdc2295a6ce4ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.123047;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_2f76cae670ad20d2424e56e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_e6242e86e6564d3407ccb832.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v4{vertical-align:-42.480000px;}
.v6{vertical-align:-30.240000px;}
.v3{vertical-align:-27.360000px;}
.v1{vertical-align:-14.400000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.v7{vertical-align:26.640000px;}
.ls4{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.360000px;}
.ls1{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.144000px;}
.ls24{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.269280px;}
.ls17{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.720000px;}
.ls9{letter-spacing:1.800000px;}
.ls1c{letter-spacing:2.081520px;}
.lsb{letter-spacing:2.160000px;}
.ls21{letter-spacing:2.376000px;}
.lsd{letter-spacing:2.448000px;}
.lsc{letter-spacing:2.568000px;}
.ls1a{letter-spacing:2.801520px;}
.ls20{letter-spacing:2.921520px;}
.ls13{letter-spacing:3.427200px;}
.ls14{letter-spacing:4.114080px;}
.ls8{letter-spacing:4.147200px;}
.ls1e{letter-spacing:4.376880px;}
.lsa{letter-spacing:4.867200px;}
.ls18{letter-spacing:5.047200px;}
.ls22{letter-spacing:6.588000px;}
.lse{letter-spacing:10.080000px;}
.ls16{letter-spacing:11.880000px;}
.ls0{letter-spacing:12.240000px;}
.ls19{letter-spacing:18.641520px;}
.ls1f{letter-spacing:19.361520px;}
.ls12{letter-spacing:19.987200px;}
.ls7{letter-spacing:20.707200px;}
.ls6{letter-spacing:24.283200px;}
.ls11{letter-spacing:24.307200px;}
.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;}
}
.ws8{word-spacing:-72.072000px;}
.ws1{word-spacing:-72.000000px;}
.wsf{word-spacing:-71.856000px;}
.ws6{word-spacing:-71.640000px;}
.wse{word-spacing:-60.120000px;}
.ws7{word-spacing:-56.664000px;}
.wsb{word-spacing:-55.944000px;}
.ws9{word-spacing:-55.764000px;}
.ws11{word-spacing:-54.000000px;}
.wsa{word-spacing:-52.344000px;}
.wsd{word-spacing:-51.120000px;}
.wsc{word-spacing:-29.758320px;}
.ws12{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.ws10{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws0{word-spacing:-14.328000px;}
.ws3{word-spacing:0.000000px;}
._26{margin-left:-7.572000px;}
._20{margin-left:-5.916000px;}
._23{margin-left:-4.128000px;}
._24{margin-left:-2.722320px;}
._1{margin-left:-1.152000px;}
._0{width:1.164000px;}
._b{width:2.184000px;}
._3{width:3.216000px;}
._4{width:4.536000px;}
._7{width:5.760000px;}
._6{width:6.912000px;}
._9{width:8.280000px;}
._8{width:9.432000px;}
._a{width:10.488000px;}
._10{width:11.952000px;}
._11{width:13.224000px;}
._c{width:14.544000px;}
._d{width:15.984000px;}
._1e{width:16.992000px;}
._28{width:18.000000px;}
._13{width:19.224000px;}
._12{width:20.304000px;}
._18{width:21.384000px;}
._f{width:22.392000px;}
._e{width:23.400000px;}
._2{width:24.552000px;}
._1b{width:25.704000px;}
._1a{width:26.712000px;}
._16{width:28.080000px;}
._15{width:30.024000px;}
._1f{width:31.176000px;}
._5{width:32.760000px;}
._14{width:34.344000px;}
._17{width:35.928000px;}
._2d{width:37.512000px;}
._3d{width:38.724000px;}
._1c{width:39.888000px;}
._1d{width:41.184000px;}
._2c{width:42.312000px;}
._38{width:45.144000px;}
._37{width:46.440000px;}
._32{width:47.448000px;}
._31{width:48.456000px;}
._19{width:49.464000px;}
._2b{width:53.938320px;}
._2e{width:66.672000px;}
._2f{width:68.328000px;}
._21{width:72.864000px;}
._2a{width:79.752000px;}
._34{width:88.848000px;}
._41{width:100.008000px;}
._3b{width:108.720000px;}
._3c{width:110.232000px;}
._40{width:128.232000px;}
._27{width:133.812000px;}
._25{width:157.404240px;}
._29{width:167.016000px;}
._30{width:171.072000px;}
._3a{width:181.512000px;}
._22{width:198.000000px;}
._42{width:205.344000px;}
._43{width:206.424000px;}
._36{width:229.428000px;}
._35{width:230.760000px;}
._39{width:413.208000px;}
._33{width:446.328000px;}
._3f{width:474.768000px;}
._3e{width:493.344000px;}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb2{bottom:7.014000px;}
.y8f{bottom:7.020000px;}
.ydc{bottom:7.065000px;}
.yad{bottom:7.200000px;}
.y94{bottom:7.245000px;}
.y9a{bottom:30.774000px;}
.y96{bottom:30.780000px;}
.y12e{bottom:30.825000px;}
.y91{bottom:30.960000px;}
.y11b{bottom:30.990000px;}
.y93{bottom:31.005000px;}
.y114{bottom:54.540000px;}
.y101{bottom:54.720000px;}
.y11a{bottom:54.750000px;}
.y2{bottom:55.980000px;}
.y1{bottom:77.976000px;}
.y100{bottom:78.480000px;}
.y119{bottom:78.510000px;}
.yb4{bottom:98.496000px;}
.y160{bottom:112.356000px;}
.y112{bottom:115.236000px;}
.yd5{bottom:116.676000px;}
.y146{bottom:117.396000px;}
.y9b{bottom:119.736000px;}
.y186{bottom:120.636000px;}
.y2b{bottom:121.356000px;}
.yb3{bottom:122.976000px;}
.yf6{bottom:125.136000px;}
.y59{bottom:126.396000px;}
.y4f{bottom:128.916000px;}
.y15f{bottom:135.036000px;}
.y128{bottom:137.016000px;}
.y99{bottom:137.196000px;}
.y185{bottom:143.316000px;}
.y2a{bottom:145.116000px;}
.y111{bottom:146.196000px;}
.yb1{bottom:147.636000px;}
.y145{bottom:148.536000px;}
.y80{bottom:153.570000px;}
.yf5{bottom:156.270000px;}
.y58{bottom:157.530000px;}
.y15e{bottom:157.890000px;}
.y4e{bottom:159.870000px;}
.y184{bottom:166.170000px;}
.y127{bottom:168.150000px;}
.y29{bottom:169.050000px;}
.yb0{bottom:172.110000px;}
.y110{bottom:177.330000px;}
.yd4{bottom:178.590000px;}
.y144{bottom:179.490000px;}
.y15d{bottom:180.570000px;}
.y7f{bottom:184.530000px;}
.y98{bottom:185.610000px;}
.yf4{bottom:187.230000px;}
.y57{bottom:188.490000px;}
.y183{bottom:188.850000px;}
.y4d{bottom:191.010000px;}
.y28{bottom:192.810000px;}
.yaf{bottom:196.770000px;}
.y126{bottom:199.110000px;}
.y15c{bottom:203.430000px;}
.y10f{bottom:208.290000px;}
.yd3{bottom:209.730000px;}
.y143{bottom:210.630000px;}
.y182{bottom:211.710000px;}
.y7e{bottom:215.670000px;}
.y27{bottom:216.570000px;}
.yf3{bottom:218.370000px;}
.y56{bottom:219.630000px;}
.yae{bottom:221.250000px;}
.y4c{bottom:221.970000px;}
.y15b{bottom:226.110000px;}
.y125{bottom:230.250000px;}
.y97{bottom:233.850000px;}
.y181{bottom:234.390000px;}
.y10e{bottom:239.430000px;}
.y26{bottom:240.330000px;}
.yd2{bottom:240.690000px;}
.y142{bottom:241.590000px;}
.yac{bottom:245.730000px;}
.y7d{bottom:246.630000px;}
.y15a{bottom:248.970000px;}
.yf2{bottom:249.330000px;}
.y55{bottom:250.590000px;}
.y4b{bottom:253.110000px;}
.y180{bottom:257.250000px;}
.y124{bottom:261.210000px;}
.y25{bottom:264.270000px;}
.yf1{bottom:266.790000px;}
.yab{bottom:270.390000px;}
.y159{bottom:271.650000px;}
.yd1{bottom:271.830000px;}
.y141{bottom:272.730000px;}
.y7c{bottom:277.770000px;}
.y17f{bottom:279.930000px;}
.y54{bottom:281.730000px;}
.y95{bottom:282.270000px;}
.y4a{bottom:284.070000px;}
.y24{bottom:288.030000px;}
.yf0{bottom:291.450000px;}
.y123{bottom:292.350000px;}
.y158{bottom:294.510000px;}
.y10d{bottom:301.530000px;}
.yd0{bottom:302.790000px;}
.y140{bottom:303.690000px;}
.y7b{bottom:308.730000px;}
.yaa{bottom:309.270000px;}
.y23{bottom:311.790000px;}
.y53{bottom:313.050000px;}
.y49{bottom:315.210000px;}
.yef{bottom:315.930000px;}
.y157{bottom:317.190000px;}
.y122{bottom:323.310000px;}
.y17e{bottom:325.470000px;}
.y92{bottom:330.510000px;}
.y10c{bottom:332.490000px;}
.ycf{bottom:333.930000px;}
.y13f{bottom:334.830000px;}
.y22{bottom:335.550000px;}
.y7a{bottom:339.915000px;}
.y156{bottom:340.095000px;}
.ya9{bottom:340.275000px;}
.yee{bottom:340.635000px;}
.y52{bottom:344.775000px;}
.y48{bottom:346.215000px;}
.y17d{bottom:348.375000px;}
.y121{bottom:354.495000px;}
.y21{bottom:359.535000px;}
.y155{bottom:362.775000px;}
.y10b{bottom:363.675000px;}
.yce{bottom:364.935000px;}
.yed{bottom:365.115000px;}
.y13e{bottom:365.835000px;}
.y79{bottom:370.875000px;}
.y17c{bottom:371.055000px;}
.ya8{bottom:371.415000px;}
.y51{bottom:376.275000px;}
.y47{bottom:377.355000px;}
.y90{bottom:378.975000px;}
.y20{bottom:383.295000px;}
.y120{bottom:385.455000px;}
.y154{bottom:385.635000px;}
.yec{bottom:389.595000px;}
.y17b{bottom:393.915000px;}
.y10a{bottom:394.635000px;}
.ycd{bottom:396.075000px;}
.y13d{bottom:396.975000px;}
.y78{bottom:402.015000px;}
.ya7{bottom:402.375000px;}
.y1f{bottom:407.055000px;}
.y50{bottom:407.955000px;}
.y46{bottom:408.315000px;}
.yeb{bottom:414.255000px;}
.y11f{bottom:416.595000px;}
.y109{bottom:425.775000px;}
.ycc{bottom:427.035000px;}
.y8e{bottom:427.395000px;}
.y13c{bottom:427.935000px;}
.y1e{bottom:430.815000px;}
.y153{bottom:431.175000px;}
.y77{bottom:433.335000px;}
.ya6{bottom:433.515000px;}
.y45{bottom:439.455000px;}
.y11e{bottom:447.555000px;}
.yea{bottom:453.135000px;}
.y152{bottom:453.855000px;}
.y1d{bottom:454.755000px;}
.y108{bottom:456.735000px;}
.ycb{bottom:458.175000px;}
.y13b{bottom:459.075000px;}
.y17a{bottom:462.135000px;}
.ya5{bottom:464.475000px;}
.y76{bottom:464.835000px;}
.y8d{bottom:466.275000px;}
.y44{bottom:470.415000px;}
.y151{bottom:476.715000px;}
.y1c{bottom:478.515000px;}
.y11d{bottom:478.695000px;}
.ye9{bottom:484.095000px;}
.y179{bottom:484.995000px;}
.y107{bottom:487.875000px;}
.yca{bottom:489.135000px;}
.y13a{bottom:490.035000px;}
.ya4{bottom:495.615000px;}
.y11c{bottom:496.155000px;}
.y75{bottom:496.515000px;}
.y8c{bottom:497.235000px;}
.y150{bottom:499.395000px;}
.y43{bottom:501.555000px;}
.y1b{bottom:502.275000px;}
.y178{bottom:507.675000px;}
.ye8{bottom:515.235000px;}
.y106{bottom:518.835000px;}
.yc9{bottom:520.275000px;}
.y139{bottom:521.175000px;}
.y14f{bottom:522.255000px;}
.y1a{bottom:526.035000px;}
.ya3{bottom:526.935000px;}
.y74{bottom:528.015000px;}
.y8b{bottom:528.375000px;}
.y177{bottom:530.535000px;}
.y42{bottom:532.515000px;}
.y14e{bottom:544.935000px;}
.ye7{bottom:546.195000px;}
.y19{bottom:549.795000px;}
.y105{bottom:549.975000px;}
.yc8{bottom:551.235000px;}
.y138{bottom:552.135000px;}
.y176{bottom:553.215000px;}
.ya2{bottom:558.435000px;}
.y73{bottom:558.975000px;}
.y8a{bottom:559.695000px;}
.y41{bottom:563.655000px;}
.y14d{bottom:567.795000px;}
.y18{bottom:573.735000px;}
.y175{bottom:576.075000px;}
.ye6{bottom:577.335000px;}
.y104{bottom:580.935000px;}
.yc7{bottom:582.375000px;}
.y137{bottom:583.275000px;}
.ya1{bottom:589.575000px;}
.y72{bottom:590.115000px;}
.y14c{bottom:590.475000px;}
.y89{bottom:591.015000px;}
.y118{bottom:592.095000px;}
.y40{bottom:594.615000px;}
.y17{bottom:597.495000px;}
.y174{bottom:598.755000px;}
.ye5{bottom:608.325000px;}
.y103{bottom:612.105000px;}
.yc6{bottom:613.365000px;}
.y136{bottom:614.265000px;}
.ya0{bottom:620.745000px;}
.y71{bottom:621.105000px;}
.y173{bottom:621.645000px;}
.y88{bottom:622.365000px;}
.y3f{bottom:625.785000px;}
.y16{bottom:628.485000px;}
.y14b{bottom:636.045000px;}
.ye4{bottom:639.465000px;}
.y102{bottom:643.065000px;}
.y172{bottom:644.325000px;}
.yc5{bottom:644.505000px;}
.y135{bottom:645.405000px;}
.y70{bottom:652.245000px;}
.y87{bottom:653.685000px;}
.y3e{bottom:656.745000px;}
.y14a{bottom:658.905000px;}
.y15{bottom:659.625000px;}
.yff{bottom:660.525000px;}
.y171{bottom:667.185000px;}
.ye3{bottom:670.425000px;}
.yc4{bottom:675.465000px;}
.y134{bottom:676.365000px;}
.y149{bottom:681.585000px;}
.y6f{bottom:683.205000px;}
.y86{bottom:685.005000px;}
.y3d{bottom:687.885000px;}
.y117{bottom:688.065000px;}
.y170{bottom:689.865000px;}
.y14{bottom:690.585000px;}
.ye2{bottom:701.565000px;}
.y148{bottom:704.445000px;}
.yc3{bottom:706.605000px;}
.y133{bottom:707.325000px;}
.y16f{bottom:712.725000px;}
.y6e{bottom:714.345000px;}
.y9e{bottom:714.525000px;}
.y85{bottom:716.685000px;}
.y9f{bottom:718.485000px;}
.y3c{bottom:718.845000px;}
.y13{bottom:721.725000px;}
.y147{bottom:727.125000px;}
.ye1{bottom:732.525000px;}
.y16e{bottom:735.405000px;}
.yc2{bottom:737.565000px;}
.y132{bottom:738.465000px;}
.y6d{bottom:745.305000px;}
.y9c{bottom:748.005000px;}
.y84{bottom:748.365000px;}
.y3b{bottom:749.985000px;}
.y9d{bottom:751.965000px;}
.y12{bottom:752.685000px;}
.yfe{bottom:756.465000px;}
.y16d{bottom:758.265000px;}
.y116{bottom:760.245000px;}
.ye0{bottom:763.665000px;}
.yc1{bottom:768.705000px;}
.y131{bottom:769.425000px;}
.y6c{bottom:776.445000px;}
.y83{bottom:780.045000px;}
.y3a{bottom:780.945000px;}
.yfd{bottom:781.125000px;}
.y11{bottom:783.825000px;}
.ydf{bottom:794.625000px;}
.yc0{bottom:799.665000px;}
.y130{bottom:800.565000px;}
.y16c{bottom:803.805000px;}
.yfc{bottom:805.605000px;}
.y6b{bottom:807.405000px;}
.y82{bottom:811.365000px;}
.y39{bottom:812.085000px;}
.y10{bottom:814.785000px;}
.y12f{bottom:818.025000px;}
.yde{bottom:825.765000px;}
.y16b{bottom:826.485000px;}
.yfb{bottom:830.265000px;}
.ybf{bottom:830.805000px;}
.y115{bottom:832.425000px;}
.y6a{bottom:838.545000px;}
.y81{bottom:842.685000px;}
.y38{bottom:843.045000px;}
.ydd{bottom:843.225000px;}
.yf{bottom:845.925000px;}
.y16a{bottom:849.345000px;}
.yfa{bottom:854.745000px;}
.ybe{bottom:861.765000px;}
.y12d{bottom:866.445000px;}
.ydb{bottom:867.705000px;}
.y69{bottom:869.505000px;}
.y169{bottom:872.070000px;}
.y37{bottom:874.230000px;}
.ye{bottom:876.930000px;}
.yf9{bottom:879.270000px;}
.y113{bottom:880.890000px;}
.yda{bottom:892.230000px;}
.ybd{bottom:892.950000px;}
.y168{bottom:894.930000px;}
.y67{bottom:897.270000px;}
.y66{bottom:900.870000px;}
.yf8{bottom:903.930000px;}
.y36{bottom:905.190000px;}
.y68{bottom:907.710000px;}
.yd{bottom:908.070000px;}
.y12c{bottom:914.730000px;}
.yd9{bottom:916.890000px;}
.y167{bottom:917.610000px;}
.ybc{bottom:923.910000px;}
.yf7{bottom:928.410000px;}
.y65{bottom:932.730000px;}
.y35{bottom:936.330000px;}
.yc{bottom:939.030000px;}
.y166{bottom:940.470000px;}
.yd8{bottom:941.370000px;}
.ybb{bottom:955.050000px;}
.y12b{bottom:963.150000px;}
.y64{bottom:963.690000px;}
.yd7{bottom:966.030000px;}
.y34{bottom:967.290000px;}
.yb{bottom:970.170000px;}
.yba{bottom:986.010000px;}
.yd6{bottom:990.510000px;}
.y63{bottom:994.830000px;}
.y33{bottom:998.430000px;}
.ya{bottom:1001.130000px;}
.y165{bottom:1008.690000px;}
.y12a{bottom:1011.570000px;}
.yb9{bottom:1017.150000px;}
.y62{bottom:1025.790000px;}
.y32{bottom:1029.390000px;}
.y164{bottom:1031.370000px;}
.y9{bottom:1032.270000px;}
.yb8{bottom:1048.110000px;}
.y61{bottom:1053.510000px;}
.y163{bottom:1054.230000px;}
.y5f{bottom:1057.110000px;}
.y129{bottom:1059.810000px;}
.y31{bottom:1060.350000px;}
.y8{bottom:1063.230000px;}
.y60{bottom:1063.950000px;}
.yb7{bottom:1065.570000px;}
.y162{bottom:1076.910000px;}
.y7{bottom:1086.990000px;}
.y5d{bottom:1089.330000px;}
.yb6{bottom:1090.230000px;}
.y30{bottom:1091.490000px;}
.y5e{bottom:1096.170000px;}
.y161{bottom:1099.770000px;}
.y6{bottom:1110.930000px;}
.yb5{bottom:1114.710000px;}
.y5b{bottom:1117.950000px;}
.y5a{bottom:1121.550000px;}
.y2f{bottom:1122.450000px;}
.y5c{bottom:1128.390000px;}
.y5{bottom:1134.690000px;}
.y2e{bottom:1144.440000px;}
.y4{bottom:1158.480000px;}
.y2d{bottom:1168.380000px;}
.y3{bottom:1182.240000px;}
.y2c{bottom:1192.140000px;}
.hb{height:23.760000px;}
.h11{height:23.796000px;}
.h10{height:23.940000px;}
.h8{height:43.082578px;}
.he{height:47.520000px;}
.h14{height:47.556000px;}
.hc{height:47.700000px;}
.hd{height:47.736000px;}
.h3{height:50.800781px;}
.ha{height:54.246094px;}
.h4{height:59.343750px;}
.h6{height:60.679688px;}
.h2{height:62.402344px;}
.h5{height:64.546875px;}
.hf{height:69.722578px;}
.h13{height:71.280000px;}
.h15{height:71.460000px;}
.h7{height:75.079688px;}
.h9{height:78.946875px;}
.h12{height:95.220000px;}
.h16{height:95.256000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w23{width:57.600000px;}
.w27{width:65.160000px;}
.w18{width:69.660000px;}
.w16{width:69.696000px;}
.w4{width:74.016000px;}
.wd{width:81.936000px;}
.wb{width:82.656000px;}
.wf{width:83.340000px;}
.w12{width:83.556000px;}
.w14{width:87.660000px;}
.w9{width:89.316000px;}
.we{width:92.880000px;}
.wc{width:93.060000px;}
.w1d{width:97.020000px;}
.w10{width:98.496000px;}
.w21{width:105.336000px;}
.w26{width:107.100000px;}
.w3{width:108.540000px;}
.w22{width:110.160000px;}
.w1f{width:111.240000px;}
.w28{width:113.976000px;}
.w11{width:114.660000px;}
.w8{width:119.880000px;}
.wa{width:120.420000px;}
.w19{width:125.280000px;}
.w7{width:139.356000px;}
.w20{width:143.316000px;}
.w1c{width:145.296000px;}
.w1b{width:148.536000px;}
.w24{width:152.850000px;}
.w1a{width:165.270000px;}
.w5{width:172.980000px;}
.w25{width:175.890000px;}
.w13{width:186.150000px;}
.w6{width:194.790000px;}
.w29{width:219.450000px;}
.w15{width:219.990000px;}
.w17{width:234.570000px;}
.w1e{width:684.465000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.740000px;}
.x18{left:100.296000px;}
.x2{left:108.035987px;}
.x12{left:115.955987px;}
.x8{left:128.375987px;}
.x23{left:161.309987px;}
.x14{left:165.989987px;}
.x16{left:177.689987px;}
.x10{left:179.129987px;}
.x9{left:185.069987px;}
.x13{left:191.729987px;}
.x17{left:195.329987px;}
.x2d{left:196.770000px;}
.x1a{left:209.550000px;}
.x1e{left:216.929987px;}
.x35{left:220.350000px;}
.x24{left:228.990000px;}
.x31{left:234.570000px;}
.xc{left:273.269987px;}
.x1b{left:284.295000px;}
.x29{left:291.675000px;}
.x1f{left:296.354987px;}
.x15{left:317.954987px;}
.xb{left:319.034987px;}
.x3{left:332.354987px;}
.xa{left:334.874987px;}
.xd{left:339.014987px;}
.x11{left:346.934987px;}
.xe{left:365.474987px;}
.x20{left:377.894987px;}
.x39{left:392.835000px;}
.x32{left:400.575000px;}
.x2a{left:407.055000px;}
.x2e{left:417.495000px;}
.x1{left:432.074987px;}
.x25{left:440.175000px;}
.xf{left:446.474987px;}
.x21{left:453.134987px;}
.x1c{left:457.995000px;}
.x36{left:470.625000px;}
.x2f{left:487.905000px;}
.x2b{left:491.325000px;}
.x26{left:523.545000px;}
.x22{left:528.044987px;}
.x7{left:545.504987px;}
.x33{left:549.825000px;}
.x3a{left:573.405000px;}
.x6{left:576.464987px;}
.x37{left:581.505000px;}
.x5{left:592.484987px;}
.x2c{left:606.705000px;}
.x27{left:617.325000px;}
.x4{left:618.944987px;}
.x38{left:640.005000px;}
.x1d{left:653.505000px;}
.x34{left:695.850000px;}
.x28{left:699.990000px;}
.x30{left:723.210000px;}
@media print{
.v4{vertical-align:-37.760000pt;}
.v6{vertical-align:-26.880000pt;}
.v3{vertical-align:-24.320000pt;}
.v1{vertical-align:-12.800000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.v7{vertical-align:23.680000pt;}
.ls4{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.128000pt;}
.ls24{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.239360pt;}
.ls17{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.600000pt;}
.ls1c{letter-spacing:1.850240pt;}
.lsb{letter-spacing:1.920000pt;}
.ls21{letter-spacing:2.112000pt;}
.lsd{letter-spacing:2.176000pt;}
.lsc{letter-spacing:2.282667pt;}
.ls1a{letter-spacing:2.490240pt;}
.ls20{letter-spacing:2.596907pt;}
.ls13{letter-spacing:3.046400pt;}
.ls14{letter-spacing:3.656960pt;}
.ls8{letter-spacing:3.686400pt;}
.ls1e{letter-spacing:3.890560pt;}
.lsa{letter-spacing:4.326400pt;}
.ls18{letter-spacing:4.486400pt;}
.ls22{letter-spacing:5.856000pt;}
.lse{letter-spacing:8.960000pt;}
.ls16{letter-spacing:10.560000pt;}
.ls0{letter-spacing:10.880000pt;}
.ls19{letter-spacing:16.570240pt;}
.ls1f{letter-spacing:17.210240pt;}
.ls12{letter-spacing:17.766400pt;}
.ls7{letter-spacing:18.406400pt;}
.ls6{letter-spacing:21.585067pt;}
.ls11{letter-spacing:21.606400pt;}
.ws8{word-spacing:-64.064000pt;}
.ws1{word-spacing:-64.000000pt;}
.wsf{word-spacing:-63.872000pt;}
.ws6{word-spacing:-63.680000pt;}
.wse{word-spacing:-53.440000pt;}
.ws7{word-spacing:-50.368000pt;}
.wsb{word-spacing:-49.728000pt;}
.ws9{word-spacing:-49.568000pt;}
.ws11{word-spacing:-48.000000pt;}
.wsa{word-spacing:-46.528000pt;}
.wsd{word-spacing:-45.440000pt;}
.wsc{word-spacing:-26.451840pt;}
.ws12{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.ws10{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws0{word-spacing:-12.736000pt;}
.ws3{word-spacing:0.000000pt;}
._26{margin-left:-6.730667pt;}
._20{margin-left:-5.258667pt;}
._23{margin-left:-3.669333pt;}
._24{margin-left:-2.419840pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.034667pt;}
._b{width:1.941333pt;}
._3{width:2.858667pt;}
._4{width:4.032000pt;}
._7{width:5.120000pt;}
._6{width:6.144000pt;}
._9{width:7.360000pt;}
._8{width:8.384000pt;}
._a{width:9.322667pt;}
._10{width:10.624000pt;}
._11{width:11.754667pt;}
._c{width:12.928000pt;}
._d{width:14.208000pt;}
._1e{width:15.104000pt;}
._28{width:16.000000pt;}
._13{width:17.088000pt;}
._12{width:18.048000pt;}
._18{width:19.008000pt;}
._f{width:19.904000pt;}
._e{width:20.800000pt;}
._2{width:21.824000pt;}
._1b{width:22.848000pt;}
._1a{width:23.744000pt;}
._16{width:24.960000pt;}
._15{width:26.688000pt;}
._1f{width:27.712000pt;}
._5{width:29.120000pt;}
._14{width:30.528000pt;}
._17{width:31.936000pt;}
._2d{width:33.344000pt;}
._3d{width:34.421333pt;}
._1c{width:35.456000pt;}
._1d{width:36.608000pt;}
._2c{width:37.610667pt;}
._38{width:40.128000pt;}
._37{width:41.280000pt;}
._32{width:42.176000pt;}
._31{width:43.072000pt;}
._19{width:43.968000pt;}
._2b{width:47.945173pt;}
._2e{width:59.264000pt;}
._2f{width:60.736000pt;}
._21{width:64.768000pt;}
._2a{width:70.890667pt;}
._34{width:78.976000pt;}
._41{width:88.896000pt;}
._3b{width:96.640000pt;}
._3c{width:97.984000pt;}
._40{width:113.984000pt;}
._27{width:118.944000pt;}
._25{width:139.914880pt;}
._29{width:148.458667pt;}
._30{width:152.064000pt;}
._3a{width:161.344000pt;}
._22{width:176.000000pt;}
._42{width:182.528000pt;}
._43{width:183.488000pt;}
._36{width:203.936000pt;}
._35{width:205.120000pt;}
._39{width:367.296000pt;}
._33{width:396.736000pt;}
._3f{width:422.016000pt;}
._3e{width:438.528000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:6.234667pt;}
.y8f{bottom:6.240000pt;}
.ydc{bottom:6.280000pt;}
.yad{bottom:6.400000pt;}
.y94{bottom:6.440000pt;}
.y9a{bottom:27.354667pt;}
.y96{bottom:27.360000pt;}
.y12e{bottom:27.400000pt;}
.y91{bottom:27.520000pt;}
.y11b{bottom:27.546667pt;}
.y93{bottom:27.560000pt;}
.y114{bottom:48.480000pt;}
.y101{bottom:48.640000pt;}
.y11a{bottom:48.666667pt;}
.y2{bottom:49.760000pt;}
.y1{bottom:69.312000pt;}
.y100{bottom:69.760000pt;}
.y119{bottom:69.786667pt;}
.yb4{bottom:87.552000pt;}
.y160{bottom:99.872000pt;}
.y112{bottom:102.432000pt;}
.yd5{bottom:103.712000pt;}
.y146{bottom:104.352000pt;}
.y9b{bottom:106.432000pt;}
.y186{bottom:107.232000pt;}
.y2b{bottom:107.872000pt;}
.yb3{bottom:109.312000pt;}
.yf6{bottom:111.232000pt;}
.y59{bottom:112.352000pt;}
.y4f{bottom:114.592000pt;}
.y15f{bottom:120.032000pt;}
.y128{bottom:121.792000pt;}
.y99{bottom:121.952000pt;}
.y185{bottom:127.392000pt;}
.y2a{bottom:128.992000pt;}
.y111{bottom:129.952000pt;}
.yb1{bottom:131.232000pt;}
.y145{bottom:132.032000pt;}
.y80{bottom:136.506667pt;}
.yf5{bottom:138.906667pt;}
.y58{bottom:140.026667pt;}
.y15e{bottom:140.346667pt;}
.y4e{bottom:142.106667pt;}
.y184{bottom:147.706667pt;}
.y127{bottom:149.466667pt;}
.y29{bottom:150.266667pt;}
.yb0{bottom:152.986667pt;}
.y110{bottom:157.626667pt;}
.yd4{bottom:158.746667pt;}
.y144{bottom:159.546667pt;}
.y15d{bottom:160.506667pt;}
.y7f{bottom:164.026667pt;}
.y98{bottom:164.986667pt;}
.yf4{bottom:166.426667pt;}
.y57{bottom:167.546667pt;}
.y183{bottom:167.866667pt;}
.y4d{bottom:169.786667pt;}
.y28{bottom:171.386667pt;}
.yaf{bottom:174.906667pt;}
.y126{bottom:176.986667pt;}
.y15c{bottom:180.826667pt;}
.y10f{bottom:185.146667pt;}
.yd3{bottom:186.426667pt;}
.y143{bottom:187.226667pt;}
.y182{bottom:188.186667pt;}
.y7e{bottom:191.706667pt;}
.y27{bottom:192.506667pt;}
.yf3{bottom:194.106667pt;}
.y56{bottom:195.226667pt;}
.yae{bottom:196.666667pt;}
.y4c{bottom:197.306667pt;}
.y15b{bottom:200.986667pt;}
.y125{bottom:204.666667pt;}
.y97{bottom:207.866667pt;}
.y181{bottom:208.346667pt;}
.y10e{bottom:212.826667pt;}
.y26{bottom:213.626667pt;}
.yd2{bottom:213.946667pt;}
.y142{bottom:214.746667pt;}
.yac{bottom:218.426667pt;}
.y7d{bottom:219.226667pt;}
.y15a{bottom:221.306667pt;}
.yf2{bottom:221.626667pt;}
.y55{bottom:222.746667pt;}
.y4b{bottom:224.986667pt;}
.y180{bottom:228.666667pt;}
.y124{bottom:232.186667pt;}
.y25{bottom:234.906667pt;}
.yf1{bottom:237.146667pt;}
.yab{bottom:240.346667pt;}
.y159{bottom:241.466667pt;}
.yd1{bottom:241.626667pt;}
.y141{bottom:242.426667pt;}
.y7c{bottom:246.906667pt;}
.y17f{bottom:248.826667pt;}
.y54{bottom:250.426667pt;}
.y95{bottom:250.906667pt;}
.y4a{bottom:252.506667pt;}
.y24{bottom:256.026667pt;}
.yf0{bottom:259.066667pt;}
.y123{bottom:259.866667pt;}
.y158{bottom:261.786667pt;}
.y10d{bottom:268.026667pt;}
.yd0{bottom:269.146667pt;}
.y140{bottom:269.946667pt;}
.y7b{bottom:274.426667pt;}
.yaa{bottom:274.906667pt;}
.y23{bottom:277.146667pt;}
.y53{bottom:278.266667pt;}
.y49{bottom:280.186667pt;}
.yef{bottom:280.826667pt;}
.y157{bottom:281.946667pt;}
.y122{bottom:287.386667pt;}
.y17e{bottom:289.306667pt;}
.y92{bottom:293.786667pt;}
.y10c{bottom:295.546667pt;}
.ycf{bottom:296.826667pt;}
.y13f{bottom:297.626667pt;}
.y22{bottom:298.266667pt;}
.y7a{bottom:302.146667pt;}
.y156{bottom:302.306667pt;}
.ya9{bottom:302.466667pt;}
.yee{bottom:302.786667pt;}
.y52{bottom:306.466667pt;}
.y48{bottom:307.746667pt;}
.y17d{bottom:309.666667pt;}
.y121{bottom:315.106667pt;}
.y21{bottom:319.586667pt;}
.y155{bottom:322.466667pt;}
.y10b{bottom:323.266667pt;}
.yce{bottom:324.386667pt;}
.yed{bottom:324.546667pt;}
.y13e{bottom:325.186667pt;}
.y79{bottom:329.666667pt;}
.y17c{bottom:329.826667pt;}
.ya8{bottom:330.146667pt;}
.y51{bottom:334.466667pt;}
.y47{bottom:335.426667pt;}
.y90{bottom:336.866667pt;}
.y20{bottom:340.706667pt;}
.y120{bottom:342.626667pt;}
.y154{bottom:342.786667pt;}
.yec{bottom:346.306667pt;}
.y17b{bottom:350.146667pt;}
.y10a{bottom:350.786667pt;}
.ycd{bottom:352.066667pt;}
.y13d{bottom:352.866667pt;}
.y78{bottom:357.346667pt;}
.ya7{bottom:357.666667pt;}
.y1f{bottom:361.826667pt;}
.y50{bottom:362.626667pt;}
.y46{bottom:362.946667pt;}
.yeb{bottom:368.226667pt;}
.y11f{bottom:370.306667pt;}
.y109{bottom:378.466667pt;}
.ycc{bottom:379.586667pt;}
.y8e{bottom:379.906667pt;}
.y13c{bottom:380.386667pt;}
.y1e{bottom:382.946667pt;}
.y153{bottom:383.266667pt;}
.y77{bottom:385.186667pt;}
.ya6{bottom:385.346667pt;}
.y45{bottom:390.626667pt;}
.y11e{bottom:397.826667pt;}
.yea{bottom:402.786667pt;}
.y152{bottom:403.426667pt;}
.y1d{bottom:404.226667pt;}
.y108{bottom:405.986667pt;}
.ycb{bottom:407.266667pt;}
.y13b{bottom:408.066667pt;}
.y17a{bottom:410.786667pt;}
.ya5{bottom:412.866667pt;}
.y76{bottom:413.186667pt;}
.y8d{bottom:414.466667pt;}
.y44{bottom:418.146667pt;}
.y151{bottom:423.746667pt;}
.y1c{bottom:425.346667pt;}
.y11d{bottom:425.506667pt;}
.ye9{bottom:430.306667pt;}
.y179{bottom:431.106667pt;}
.y107{bottom:433.666667pt;}
.yca{bottom:434.786667pt;}
.y13a{bottom:435.586667pt;}
.ya4{bottom:440.546667pt;}
.y11c{bottom:441.026667pt;}
.y75{bottom:441.346667pt;}
.y8c{bottom:441.986667pt;}
.y150{bottom:443.906667pt;}
.y43{bottom:445.826667pt;}
.y1b{bottom:446.466667pt;}
.y178{bottom:451.266667pt;}
.ye8{bottom:457.986667pt;}
.y106{bottom:461.186667pt;}
.yc9{bottom:462.466667pt;}
.y139{bottom:463.266667pt;}
.y14f{bottom:464.226667pt;}
.y1a{bottom:467.586667pt;}
.ya3{bottom:468.386667pt;}
.y74{bottom:469.346667pt;}
.y8b{bottom:469.666667pt;}
.y177{bottom:471.586667pt;}
.y42{bottom:473.346667pt;}
.y14e{bottom:484.386667pt;}
.ye7{bottom:485.506667pt;}
.y19{bottom:488.706667pt;}
.y105{bottom:488.866667pt;}
.yc8{bottom:489.986667pt;}
.y138{bottom:490.786667pt;}
.y176{bottom:491.746667pt;}
.ya2{bottom:496.386667pt;}
.y73{bottom:496.866667pt;}
.y8a{bottom:497.506667pt;}
.y41{bottom:501.026667pt;}
.y14d{bottom:504.706667pt;}
.y18{bottom:509.986667pt;}
.y175{bottom:512.066667pt;}
.ye6{bottom:513.186667pt;}
.y104{bottom:516.386667pt;}
.yc7{bottom:517.666667pt;}
.y137{bottom:518.466667pt;}
.ya1{bottom:524.066667pt;}
.y72{bottom:524.546667pt;}
.y14c{bottom:524.866667pt;}
.y89{bottom:525.346667pt;}
.y118{bottom:526.306667pt;}
.y40{bottom:528.546667pt;}
.y17{bottom:531.106667pt;}
.y174{bottom:532.226667pt;}
.ye5{bottom:540.733333pt;}
.y103{bottom:544.093333pt;}
.yc6{bottom:545.213333pt;}
.y136{bottom:546.013333pt;}
.ya0{bottom:551.773333pt;}
.y71{bottom:552.093333pt;}
.y173{bottom:552.573333pt;}
.y88{bottom:553.213333pt;}
.y3f{bottom:556.253333pt;}
.y16{bottom:558.653333pt;}
.y14b{bottom:565.373333pt;}
.ye4{bottom:568.413333pt;}
.y102{bottom:571.613333pt;}
.y172{bottom:572.733333pt;}
.yc5{bottom:572.893333pt;}
.y135{bottom:573.693333pt;}
.y70{bottom:579.773333pt;}
.y87{bottom:581.053333pt;}
.y3e{bottom:583.773333pt;}
.y14a{bottom:585.693333pt;}
.y15{bottom:586.333333pt;}
.yff{bottom:587.133333pt;}
.y171{bottom:593.053333pt;}
.ye3{bottom:595.933333pt;}
.yc4{bottom:600.413333pt;}
.y134{bottom:601.213333pt;}
.y149{bottom:605.853333pt;}
.y6f{bottom:607.293333pt;}
.y86{bottom:608.893333pt;}
.y3d{bottom:611.453333pt;}
.y117{bottom:611.613333pt;}
.y170{bottom:613.213333pt;}
.y14{bottom:613.853333pt;}
.ye2{bottom:623.613333pt;}
.y148{bottom:626.173333pt;}
.yc3{bottom:628.093333pt;}
.y133{bottom:628.733333pt;}
.y16f{bottom:633.533333pt;}
.y6e{bottom:634.973333pt;}
.y9e{bottom:635.133333pt;}
.y85{bottom:637.053333pt;}
.y9f{bottom:638.653333pt;}
.y3c{bottom:638.973333pt;}
.y13{bottom:641.533333pt;}
.y147{bottom:646.333333pt;}
.ye1{bottom:651.133333pt;}
.y16e{bottom:653.693333pt;}
.yc2{bottom:655.613333pt;}
.y132{bottom:656.413333pt;}
.y6d{bottom:662.493333pt;}
.y9c{bottom:664.893333pt;}
.y84{bottom:665.213333pt;}
.y3b{bottom:666.653333pt;}
.y9d{bottom:668.413333pt;}
.y12{bottom:669.053333pt;}
.yfe{bottom:672.413333pt;}
.y16d{bottom:674.013333pt;}
.y116{bottom:675.773333pt;}
.ye0{bottom:678.813333pt;}
.yc1{bottom:683.293333pt;}
.y131{bottom:683.933333pt;}
.y6c{bottom:690.173333pt;}
.y83{bottom:693.373333pt;}
.y3a{bottom:694.173333pt;}
.yfd{bottom:694.333333pt;}
.y11{bottom:696.733333pt;}
.ydf{bottom:706.333333pt;}
.yc0{bottom:710.813333pt;}
.y130{bottom:711.613333pt;}
.y16c{bottom:714.493333pt;}
.yfc{bottom:716.093333pt;}
.y6b{bottom:717.693333pt;}
.y82{bottom:721.213333pt;}
.y39{bottom:721.853333pt;}
.y10{bottom:724.253333pt;}
.y12f{bottom:727.133333pt;}
.yde{bottom:734.013333pt;}
.y16b{bottom:734.653333pt;}
.yfb{bottom:738.013333pt;}
.ybf{bottom:738.493333pt;}
.y115{bottom:739.933333pt;}
.y6a{bottom:745.373333pt;}
.y81{bottom:749.053333pt;}
.y38{bottom:749.373333pt;}
.ydd{bottom:749.533333pt;}
.yf{bottom:751.933333pt;}
.y16a{bottom:754.973333pt;}
.yfa{bottom:759.773333pt;}
.ybe{bottom:766.013333pt;}
.y12d{bottom:770.173333pt;}
.ydb{bottom:771.293333pt;}
.y69{bottom:772.893333pt;}
.y169{bottom:775.173333pt;}
.y37{bottom:777.093333pt;}
.ye{bottom:779.493333pt;}
.yf9{bottom:781.573333pt;}
.y113{bottom:783.013333pt;}
.yda{bottom:793.093333pt;}
.ybd{bottom:793.733333pt;}
.y168{bottom:795.493333pt;}
.y67{bottom:797.573333pt;}
.y66{bottom:800.773333pt;}
.yf8{bottom:803.493333pt;}
.y36{bottom:804.613333pt;}
.y68{bottom:806.853333pt;}
.yd{bottom:807.173333pt;}
.y12c{bottom:813.093333pt;}
.yd9{bottom:815.013333pt;}
.y167{bottom:815.653333pt;}
.ybc{bottom:821.253333pt;}
.yf7{bottom:825.253333pt;}
.y65{bottom:829.093333pt;}
.y35{bottom:832.293333pt;}
.yc{bottom:834.693333pt;}
.y166{bottom:835.973333pt;}
.yd8{bottom:836.773333pt;}
.ybb{bottom:848.933333pt;}
.y12b{bottom:856.133333pt;}
.y64{bottom:856.613333pt;}
.yd7{bottom:858.693333pt;}
.y34{bottom:859.813333pt;}
.yb{bottom:862.373333pt;}
.yba{bottom:876.453333pt;}
.yd6{bottom:880.453333pt;}
.y63{bottom:884.293333pt;}
.y33{bottom:887.493333pt;}
.ya{bottom:889.893333pt;}
.y165{bottom:896.613333pt;}
.y12a{bottom:899.173333pt;}
.yb9{bottom:904.133333pt;}
.y62{bottom:911.813333pt;}
.y32{bottom:915.013333pt;}
.y164{bottom:916.773333pt;}
.y9{bottom:917.573333pt;}
.yb8{bottom:931.653333pt;}
.y61{bottom:936.453333pt;}
.y163{bottom:937.093333pt;}
.y5f{bottom:939.653333pt;}
.y129{bottom:942.053333pt;}
.y31{bottom:942.533333pt;}
.y8{bottom:945.093333pt;}
.y60{bottom:945.733333pt;}
.yb7{bottom:947.173333pt;}
.y162{bottom:957.253333pt;}
.y7{bottom:966.213333pt;}
.y5d{bottom:968.293333pt;}
.yb6{bottom:969.093333pt;}
.y30{bottom:970.213333pt;}
.y5e{bottom:974.373333pt;}
.y161{bottom:977.573333pt;}
.y6{bottom:987.493333pt;}
.yb5{bottom:990.853333pt;}
.y5b{bottom:993.733333pt;}
.y5a{bottom:996.933333pt;}
.y2f{bottom:997.733333pt;}
.y5c{bottom:1003.013333pt;}
.y5{bottom:1008.613333pt;}
.y2e{bottom:1017.280000pt;}
.y4{bottom:1029.760000pt;}
.y2d{bottom:1038.560000pt;}
.y3{bottom:1050.880000pt;}
.y2c{bottom:1059.680000pt;}
.hb{height:21.120000pt;}
.h11{height:21.152000pt;}
.h10{height:21.280000pt;}
.h8{height:38.295625pt;}
.he{height:42.240000pt;}
.h14{height:42.272000pt;}
.hc{height:42.400000pt;}
.hd{height:42.432000pt;}
.h3{height:45.156250pt;}
.ha{height:48.218750pt;}
.h4{height:52.750000pt;}
.h6{height:53.937500pt;}
.h2{height:55.468750pt;}
.h5{height:57.375000pt;}
.hf{height:61.975625pt;}
.h13{height:63.360000pt;}
.h15{height:63.520000pt;}
.h7{height:66.737500pt;}
.h9{height:70.175000pt;}
.h12{height:84.640000pt;}
.h16{height:84.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w23{width:51.200000pt;}
.w27{width:57.920000pt;}
.w18{width:61.920000pt;}
.w16{width:61.952000pt;}
.w4{width:65.792000pt;}
.wd{width:72.832000pt;}
.wb{width:73.472000pt;}
.wf{width:74.080000pt;}
.w12{width:74.272000pt;}
.w14{width:77.920000pt;}
.w9{width:79.392000pt;}
.we{width:82.560000pt;}
.wc{width:82.720000pt;}
.w1d{width:86.240000pt;}
.w10{width:87.552000pt;}
.w21{width:93.632000pt;}
.w26{width:95.200000pt;}
.w3{width:96.480000pt;}
.w22{width:97.920000pt;}
.w1f{width:98.880000pt;}
.w28{width:101.312000pt;}
.w11{width:101.920000pt;}
.w8{width:106.560000pt;}
.wa{width:107.040000pt;}
.w19{width:111.360000pt;}
.w7{width:123.872000pt;}
.w20{width:127.392000pt;}
.w1c{width:129.152000pt;}
.w1b{width:132.032000pt;}
.w24{width:135.866667pt;}
.w1a{width:146.906667pt;}
.w5{width:153.760000pt;}
.w25{width:156.346667pt;}
.w13{width:165.466667pt;}
.w6{width:173.146667pt;}
.w29{width:195.066667pt;}
.w15{width:195.546667pt;}
.w17{width:208.506667pt;}
.w1e{width:608.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.880000pt;}
.x18{left:89.152000pt;}
.x2{left:96.031988pt;}
.x12{left:103.071988pt;}
.x8{left:114.111988pt;}
.x23{left:143.386655pt;}
.x14{left:147.546655pt;}
.x16{left:157.946655pt;}
.x10{left:159.226655pt;}
.x9{left:164.506655pt;}
.x13{left:170.426655pt;}
.x17{left:173.626655pt;}
.x2d{left:174.906667pt;}
.x1a{left:186.266667pt;}
.x1e{left:192.826655pt;}
.x35{left:195.866667pt;}
.x24{left:203.546667pt;}
.x31{left:208.506667pt;}
.xc{left:242.906655pt;}
.x1b{left:252.706667pt;}
.x29{left:259.266667pt;}
.x1f{left:263.426655pt;}
.x15{left:282.626655pt;}
.xb{left:283.586655pt;}
.x3{left:295.426655pt;}
.xa{left:297.666655pt;}
.xd{left:301.346655pt;}
.x11{left:308.386655pt;}
.xe{left:324.866655pt;}
.x20{left:335.906655pt;}
.x39{left:349.186667pt;}
.x32{left:356.066667pt;}
.x2a{left:361.826667pt;}
.x2e{left:371.106667pt;}
.x1{left:384.066655pt;}
.x25{left:391.266667pt;}
.xf{left:396.866655pt;}
.x21{left:402.786655pt;}
.x1c{left:407.106667pt;}
.x36{left:418.333333pt;}
.x2f{left:433.693333pt;}
.x2b{left:436.733333pt;}
.x26{left:465.373333pt;}
.x22{left:469.373322pt;}
.x7{left:484.893322pt;}
.x33{left:488.733333pt;}
.x3a{left:509.693333pt;}
.x6{left:512.413322pt;}
.x37{left:516.893333pt;}
.x5{left:526.653322pt;}
.x2c{left:539.293333pt;}
.x27{left:548.733333pt;}
.x4{left:550.173322pt;}
.x38{left:568.893333pt;}
.x1d{left:580.893333pt;}
.x34{left:618.533333pt;}
.x28{left:622.213333pt;}
.x30{left:642.853333pt;}
}




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