
    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_f8645dc4746d0fdd1c5e4830.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_0bfddbc243ce185c5f202e0e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_96a9b7de0b88b0c79cdf409d.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_794d4fe97076d441c12f2f7e.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_12944253dafc34ab3bb2c173.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_0a72548518e429dba54ba35c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3c23c79eabd23e3ea4b921f3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cae905d1bc68942861389bb5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.992188;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_fc98aba412a4c159e1b51e15.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.992188;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_e14f708f61cf55002b8d3c20.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-1.656000px;}
.ls23{letter-spacing:-0.936000px;}
.ls9{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.414600px;}
.ls3{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.720000px;}
.ls25{letter-spacing:0.792000px;}
.ls5{letter-spacing:0.900000px;}
.ls22{letter-spacing:1.152000px;}
.ls6{letter-spacing:1.296000px;}
.ls1b{letter-spacing:2.160000px;}
.lsf{letter-spacing:2.880000px;}
.ls14{letter-spacing:3.060000px;}
.ls1e{letter-spacing:3.780000px;}
.ls1c{letter-spacing:4.320000px;}
.ls10{letter-spacing:5.220000px;}
.lsb{letter-spacing:7.920000px;}
.ls12{letter-spacing:8.640000px;}
.ls1d{letter-spacing:11.520000px;}
.ls18{letter-spacing:13.680000px;}
.ls20{letter-spacing:18.000000px;}
.ls1f{letter-spacing:20.880000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws8{word-spacing:-19.296000px;}
.ws14{word-spacing:-19.152000px;}
.ws10{word-spacing:-18.576000px;}
.ws16{word-spacing:-18.504000px;}
.ws9{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wse{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws15{word-spacing:-17.064000px;}
.ws6{word-spacing:-16.704000px;}
.ws1{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.344000px;}
.wsa{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.716000px;}
.ws11{word-spacing:-13.608000px;}
.ws12{word-spacing:-13.518000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.140000px;}
.wsf{word-spacing:-12.060000px;}
.ws5{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._14{margin-left:-4.968000px;}
._4{margin-left:-3.643200px;}
._9{margin-left:-2.185920px;}
._0{margin-left:-1.104000px;}
._1{width:1.008000px;}
._7{width:2.057280px;}
._6{width:3.219360px;}
._5{width:4.239360px;}
._12{width:5.413200px;}
._d{width:6.682560px;}
._c{width:7.934400px;}
._13{width:9.720000px;}
._2{width:10.863360px;}
._3{width:12.240000px;}
._1c{width:13.296480px;}
._a{width:14.307840px;}
._16{width:15.696000px;}
._15{width:16.776000px;}
._8{width:18.878400px;}
._b{width:20.446080px;}
._17{width:21.672000px;}
._18{width:23.040000px;}
._f{width:24.494400px;}
._e{width:26.164800px;}
._1a{width:27.792000px;}
._1b{width:29.592000px;}
._1f{width:31.248000px;}
._19{width:32.356800px;}
._10{width:33.451200px;}
._21{width:34.486560px;}
._11{width:35.504640px;}
._22{width:37.368000px;}
._23{width:38.772000px;}
._1d{width:45.576000px;}
._1e{width:47.016000px;}
._20{width:72.144000px;}
.fca{color:rgb(15,17,17);}
.fc9{color:rgb(32,33,34);}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(112,48,160);}
.fc3{color:transparent;}
.fc8{color:rgb(34,34,34);}
.fc5{color:rgb(242,242,242);}
.fc4{color:rgb(38,38,38);}
.fc2{color:rgb(0,176,80);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y55{bottom:4.140000px;}
.y3{bottom:4.320000px;}
.y4b{bottom:14.580000px;}
.y58{bottom:14.616000px;}
.y52{bottom:14.760000px;}
.y54{bottom:24.840000px;}
.y4c{bottom:25.020000px;}
.y59{bottom:25.050000px;}
.y4f{bottom:25.065000px;}
.y2{bottom:52.920000px;}
.y1{bottom:57.420000px;}
.y3b{bottom:109.440000px;}
.y106{bottom:113.940000px;}
.y127{bottom:114.300000px;}
.yc1{bottom:115.740000px;}
.y79{bottom:119.520000px;}
.y3a{bottom:124.920000px;}
.yd8{bottom:128.520000px;}
.yca{bottom:129.420000px;}
.y57{bottom:131.040000px;}
.y126{bottom:135.360000px;}
.y39{bottom:140.436000px;}
.yc9{bottom:141.696000px;}
.y9c{bottom:144.936000px;}
.yc0{bottom:146.736000px;}
.y78{bottom:150.690000px;}
.yff{bottom:154.110000px;}
.y38{bottom:156.090000px;}
.y9b{bottom:157.170000px;}
.yd7{bottom:159.510000px;}
.ybc{bottom:160.590000px;}
.y37{bottom:171.570000px;}
.ybb{bottom:172.830000px;}
.y36{bottom:176.070000px;}
.y125{bottom:176.790000px;}
.ybf{bottom:177.870000px;}
.y56{bottom:178.410000px;}
.y77{bottom:181.650000px;}
.yfe{bottom:185.250000px;}
.y35{bottom:187.050000px;}
.ycd{bottom:188.310000px;}
.yd6{bottom:190.650000px;}
.y9a{bottom:191.550000px;}
.y124{bottom:197.490000px;}
.y34{bottom:202.530000px;}
.yc4{bottom:203.790000px;}
.y103{bottom:207.030000px;}
.y104{bottom:208.470000px;}
.yba{bottom:208.830000px;}
.y76{bottom:212.790000px;}
.yfd{bottom:216.210000px;}
.y33{bottom:218.190000px;}
.y102{bottom:219.270000px;}
.y99{bottom:222.690000px;}
.y53{bottom:225.750000px;}
.yd5{bottom:231.330000px;}
.y32{bottom:233.670000px;}
.yd3{bottom:234.930000px;}
.y31{bottom:238.170000px;}
.y123{bottom:238.890000px;}
.yb9{bottom:239.970000px;}
.y75{bottom:243.750000px;}
.yfc{bottom:247.350000px;}
.y30{bottom:250.410000px;}
.y98{bottom:253.650000px;}
.y122{bottom:259.590000px;}
.yee{bottom:260.670000px;}
.yb8{bottom:270.930000px;}
.y51{bottom:272.910000px;}
.y74{bottom:274.890000px;}
.yd0{bottom:277.770000px;}
.yfb{bottom:278.310000px;}
.y2f{bottom:279.210000px;}
.y121{bottom:279.930000px;}
.y97{bottom:284.790000px;}
.yed{bottom:291.810000px;}
.y2e{bottom:298.290000px;}
.y120{bottom:300.990000px;}
.yb7{bottom:301.890000px;}
.y73{bottom:305.850000px;}
.yfa{bottom:309.450000px;}
.y96{bottom:315.750000px;}
.y2d{bottom:317.190000px;}
.y50{bottom:320.250000px;}
.y11f{bottom:321.690000px;}
.yec{bottom:322.770000px;}
.yb6{bottom:333.030000px;}
.y2c{bottom:336.270000px;}
.y72{bottom:336.990000px;}
.yf9{bottom:340.410000px;}
.y11e{bottom:342.390000px;}
.y95{bottom:346.890000px;}
.yeb{bottom:353.910000px;}
.y2b{bottom:355.170000px;}
.y11d{bottom:363.090000px;}
.yb5{bottom:363.990000px;}
.y4e{bottom:367.590000px;}
.y71{bottom:367.950000px;}
.yf0{bottom:370.830000px;}
.yf8{bottom:371.550000px;}
.y2a{bottom:374.070000px;}
.y94{bottom:377.850000px;}
.y11c{bottom:383.790000px;}
.yea{bottom:384.870000px;}
.y29{bottom:393.195000px;}
.yb4{bottom:395.175000px;}
.y70{bottom:399.135000px;}
.ycf{bottom:402.015000px;}
.yf7{bottom:402.555000px;}
.y11b{bottom:404.535000px;}
.y93{bottom:409.035000px;}
.y28{bottom:412.095000px;}
.y4d{bottom:414.975000px;}
.ye9{bottom:416.055000px;}
.yc8{bottom:425.775000px;}
.yb3{bottom:426.135000px;}
.y6f{bottom:430.095000px;}
.y27{bottom:431.175000px;}
.yf6{bottom:433.695000px;}
.y92{bottom:439.995000px;}
.y4a{bottom:441.615000px;}
.y11a{bottom:446.115000px;}
.ye8{bottom:447.015000px;}
.y26{bottom:450.075000px;}
.yc7{bottom:456.915000px;}
.yb2{bottom:457.275000px;}
.y6e{bottom:461.235000px;}
.yf5{bottom:464.655000px;}
.y119{bottom:466.815000px;}
.y25{bottom:468.975000px;}
.y91{bottom:471.135000px;}
.ye6{bottom:478.155000px;}
.ye7{bottom:484.995000px;}
.yda{bottom:487.875000px;}
.y24{bottom:488.055000px;}
.yb1{bottom:488.235000px;}
.y49{bottom:488.955000px;}
.y6d{bottom:492.195000px;}
.yf4{bottom:497.775000px;}
.y90{bottom:502.095000px;}
.y23{bottom:506.955000px;}
.y118{bottom:508.575000px;}
.ye5{bottom:509.115000px;}
.yf3{bottom:514.335000px;}
.y48{bottom:515.595000px;}
.yd9{bottom:519.015000px;}
.yaf{bottom:519.375000px;}
.y6c{bottom:523.335000px;}
.y22{bottom:526.035000px;}
.yb0{bottom:526.215000px;}
.y117{bottom:529.275000px;}
.yf2{bottom:531.075000px;}
.y8f{bottom:533.235000px;}
.ye4{bottom:540.255000px;}
.y47{bottom:542.235000px;}
.y21{bottom:544.935000px;}
.yce{bottom:549.975000px;}
.yae{bottom:550.335000px;}
.yf1{bottom:553.755000px;}
.y6b{bottom:554.295000px;}
.ycc{bottom:557.175000px;}
.y20{bottom:563.835000px;}
.y8e{bottom:564.195000px;}
.y46{bottom:568.875000px;}
.y116{bottom:570.675000px;}
.ye3{bottom:571.215000px;}
.ybe{bottom:581.115000px;}
.yad{bottom:581.475000px;}
.y1f{bottom:582.915000px;}
.y6a{bottom:585.435000px;}
.y105{bottom:588.315000px;}
.y115{bottom:591.375000px;}
.y8d{bottom:595.335000px;}
.y1e{bottom:601.815000px;}
.ye2{bottom:602.175000px;}
.y45{bottom:609.015000px;}
.ybd{bottom:612.075000px;}
.yac{bottom:612.435000px;}
.y69{bottom:616.395000px;}
.yd2{bottom:619.275000px;}
.y1d{bottom:620.895000px;}
.y8c{bottom:626.295000px;}
.y114{bottom:632.775000px;}
.ye1{bottom:633.315000px;}
.y1c{bottom:639.795000px;}
.y44{bottom:640.155000px;}
.yab{bottom:643.605000px;}
.y68{bottom:647.565000px;}
.y113{bottom:653.505000px;}
.y8a{bottom:657.285000px;}
.y1b{bottom:658.725000px;}
.y8b{bottom:664.125000px;}
.ye0{bottom:664.305000px;}
.y43{bottom:671.145000px;}
.y112{bottom:674.205000px;}
.yaa{bottom:674.565000px;}
.y1a{bottom:677.805000px;}
.y67{bottom:678.525000px;}
.ycb{bottom:681.405000px;}
.y13e{bottom:685.185000px;}
.yd4{bottom:688.065000px;}
.y89{bottom:688.425000px;}
.y111{bottom:694.905000px;}
.ydf{bottom:695.445000px;}
.y19{bottom:696.705000px;}
.y42{bottom:702.285000px;}
.ya9{bottom:705.705000px;}
.y13d{bottom:705.885000px;}
.y66{bottom:709.665000px;}
.yc6{bottom:712.545000px;}
.y18{bottom:715.785000px;}
.y88{bottom:719.385000px;}
.y41{bottom:722.445000px;}
.yde{bottom:726.405000px;}
.y13c{bottom:726.585000px;}
.y17{bottom:734.685000px;}
.yc5{bottom:736.305000px;}
.ya8{bottom:736.665000px;}
.y40{bottom:739.725000px;}
.y65{bottom:740.625000px;}
.ydd{bottom:746.565000px;}
.y13b{bottom:747.285000px;}
.y87{bottom:750.525000px;}
.y16{bottom:753.765000px;}
.y3f{bottom:756.825000px;}
.y110{bottom:757.185000px;}
.ydc{bottom:763.845000px;}
.yef{bottom:767.445000px;}
.ya7{bottom:767.805000px;}
.y13a{bottom:767.985000px;}
.y64{bottom:771.765000px;}
.y15{bottom:772.665000px;}
.y3e{bottom:774.105000px;}
.yc3{bottom:774.645000px;}
.y86{bottom:781.485000px;}
.ydb{bottom:787.785000px;}
.y139{bottom:788.685000px;}
.y14{bottom:791.565000px;}
.y3d{bottom:798.045000px;}
.ya6{bottom:798.765000px;}
.y10f{bottom:798.945000px;}
.y63{bottom:802.725000px;}
.y138{bottom:809.385000px;}
.y85{bottom:812.625000px;}
.y10e{bottom:819.645000px;}
.y13{bottom:821.265000px;}
.y101{bottom:829.545000px;}
.ya5{bottom:829.905000px;}
.y137{bottom:830.085000px;}
.y62{bottom:833.865000px;}
.yd1{bottom:836.745000px;}
.y10d{bottom:840.345000px;}
.y84{bottom:843.585000px;}
.y136{bottom:850.785000px;}
.y12{bottom:852.225000px;}
.y100{bottom:860.505000px;}
.ya4{bottom:860.865000px;}
.y10c{bottom:861.045000px;}
.y61{bottom:864.825000px;}
.y135{bottom:871.485000px;}
.y10{bottom:872.745000px;}
.y83{bottom:874.725000px;}
.y11{bottom:878.685000px;}
.y10b{bottom:881.745000px;}
.yf{bottom:891.645000px;}
.ya3{bottom:892.005000px;}
.y134{bottom:892.185000px;}
.y10a{bottom:902.490000px;}
.y82{bottom:905.730000px;}
.y60{bottom:906.090000px;}
.ye{bottom:910.770000px;}
.y133{bottom:912.930000px;}
.ya2{bottom:923.010000px;}
.y5f{bottom:923.190000px;}
.yd{bottom:929.670000px;}
.y132{bottom:933.630000px;}
.y81{bottom:936.870000px;}
.y109{bottom:943.890000px;}
.yc{bottom:948.570000px;}
.ya1{bottom:954.150000px;}
.y131{bottom:954.330000px;}
.y5e{bottom:962.610000px;}
.y108{bottom:964.590000px;}
.yb{bottom:967.650000px;}
.y80{bottom:967.830000px;}
.y130{bottom:975.030000px;}
.yc2{bottom:984.750000px;}
.y107{bottom:984.930000px;}
.ya0{bottom:985.110000px;}
.ya{bottom:986.550000px;}
.y12f{bottom:995.730000px;}
.y7f{bottom:998.970000px;}
.y5d{bottom:1009.950000px;}
.y12e{bottom:1016.070000px;}
.y9{bottom:1016.250000px;}
.y7e{bottom:1029.930000px;}
.y12d{bottom:1037.130000px;}
.y8{bottom:1047.210000px;}
.y5c{bottom:1057.290000px;}
.y12c{bottom:1057.830000px;}
.y7d{bottom:1061.070000px;}
.y7{bottom:1077.990000px;}
.y9f{bottom:1078.350000px;}
.y12b{bottom:1078.530000px;}
.y7c{bottom:1092.030000px;}
.y12a{bottom:1099.230000px;}
.y5b{bottom:1104.630000px;}
.y5{bottom:1108.950000px;}
.y9e{bottom:1109.310000px;}
.y6{bottom:1114.890000px;}
.y129{bottom:1119.930000px;}
.y7b{bottom:1122.810000px;}
.y5a{bottom:1131.270000px;}
.y4{bottom:1140.090000px;}
.y9d{bottom:1140.450000px;}
.y128{bottom:1140.630000px;}
.y3c{bottom:1141.890000px;}
.y7a{bottom:1143.330000px;}
.h15{height:20.520000px;}
.h14{height:20.556000px;}
.h3{height:20.700000px;}
.hb{height:35.332031px;}
.h18{height:36.281250px;}
.ha{height:40.985156px;}
.h13{height:41.220000px;}
.h11{height:41.400000px;}
.h12{height:41.436000px;}
.h16{height:47.344922px;}
.hd{height:48.410156px;}
.h5{height:48.616875px;}
.hf{height:52.417969px;}
.hc{height:52.998047px;}
.h19{height:54.421875px;}
.h10{height:56.285156px;}
.he{height:58.651172px;}
.h9{height:59.383125px;}
.h17{height:64.546875px;}
.h7{height:65.010937px;}
.h8{height:66.757500px;}
.h6{height:70.628906px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:9.180000px;}
.w8{width:18.180000px;}
.w5{width:111.600000px;}
.w7{width:186.510000px;}
.w6{width:368.355000px;}
.w4{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x17{left:1.080000px;}
.x12{left:23.754000px;}
.x16{left:68.220000px;}
.x32{left:117.035987px;}
.x1{left:127.655987px;}
.x11{left:131.076000px;}
.xa{left:132.155987px;}
.x39{left:134.315987px;}
.x29{left:136.655987px;}
.x35{left:138.275987px;}
.xc{left:139.535987px;}
.xd{left:141.335987px;}
.x8{left:148.895987px;}
.x14{left:155.385000px;}
.x10{left:170.129987px;}
.x21{left:189.209973px;}
.x22{left:195.329987px;}
.x18{left:229.349987px;}
.x6{left:232.049973px;}
.x7{left:237.269987px;}
.x13{left:246.450000px;}
.x3b{left:264.134973px;}
.x2f{left:274.754987px;}
.x3c{left:276.374987px;}
.x31{left:298.694987px;}
.xe{left:327.314987px;}
.x3f{left:334.154973px;}
.x9{left:343.694987px;}
.x40{left:346.394987px;}
.x3d{left:349.274973px;}
.x27{left:354.674973px;}
.x3e{left:361.514987px;}
.x28{left:366.914987px;}
.x3a{left:407.774987px;}
.x25{left:431.354973px;}
.x26{left:437.474987px;}
.xf{left:446.324987px;}
.x2a{left:469.184973px;}
.x2b{left:481.424987px;}
.x36{left:487.544973px;}
.x3{left:491.864973px;}
.x4{left:497.984987px;}
.x37{left:499.784987px;}
.x33{left:513.104973px;}
.x34{left:525.344987px;}
.x2d{left:611.744987px;}
.x15{left:618.630000px;}
.x1b{left:621.689973px;}
.x1c{left:627.809987px;}
.x19{left:653.369973px;}
.x1a{left:659.489987px;}
.x1d{left:674.069973px;}
.x1e{left:680.189987px;}
.x2e{left:702.329987px;}
.x23{left:704.129973px;}
.x24{left:710.249987px;}
.x20{left:746.970000px;}
.x2c{left:752.909973px;}
.x2{left:755.970000px;}
.x1f{left:759.029973px;}
.x5{left:765.149987px;}
.xb{left:805.679987px;}
.x38{left:807.479987px;}
.x30{left:826.739987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-1.472000pt;}
.ls23{letter-spacing:-0.832000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.368533pt;}
.ls3{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls25{letter-spacing:0.704000pt;}
.ls5{letter-spacing:0.800000pt;}
.ls22{letter-spacing:1.024000pt;}
.ls6{letter-spacing:1.152000pt;}
.ls1b{letter-spacing:1.920000pt;}
.lsf{letter-spacing:2.560000pt;}
.ls14{letter-spacing:2.720000pt;}
.ls1e{letter-spacing:3.360000pt;}
.ls1c{letter-spacing:3.840000pt;}
.ls10{letter-spacing:4.640000pt;}
.lsb{letter-spacing:7.040000pt;}
.ls12{letter-spacing:7.680000pt;}
.ls1d{letter-spacing:10.240000pt;}
.ls18{letter-spacing:12.160000pt;}
.ls20{letter-spacing:16.000000pt;}
.ls1f{letter-spacing:18.560000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws8{word-spacing:-17.152000pt;}
.ws14{word-spacing:-17.024000pt;}
.ws10{word-spacing:-16.512000pt;}
.ws16{word-spacing:-16.448000pt;}
.ws9{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws15{word-spacing:-15.168000pt;}
.ws6{word-spacing:-14.848000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.528000pt;}
.wsa{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.192000pt;}
.ws11{word-spacing:-12.096000pt;}
.ws12{word-spacing:-12.016000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.680000pt;}
.wsf{word-spacing:-10.720000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._14{margin-left:-4.416000pt;}
._4{margin-left:-3.238400pt;}
._9{margin-left:-1.943040pt;}
._0{margin-left:-0.981333pt;}
._1{width:0.896000pt;}
._7{width:1.828693pt;}
._6{width:2.861653pt;}
._5{width:3.768320pt;}
._12{width:4.811733pt;}
._d{width:5.940053pt;}
._c{width:7.052800pt;}
._13{width:8.640000pt;}
._2{width:9.656320pt;}
._3{width:10.880000pt;}
._1c{width:11.819093pt;}
._a{width:12.718080pt;}
._16{width:13.952000pt;}
._15{width:14.912000pt;}
._8{width:16.780800pt;}
._b{width:18.174293pt;}
._17{width:19.264000pt;}
._18{width:20.480000pt;}
._f{width:21.772800pt;}
._e{width:23.257600pt;}
._1a{width:24.704000pt;}
._1b{width:26.304000pt;}
._1f{width:27.776000pt;}
._19{width:28.761600pt;}
._10{width:29.734400pt;}
._21{width:30.654720pt;}
._11{width:31.559680pt;}
._22{width:33.216000pt;}
._23{width:34.464000pt;}
._1d{width:40.512000pt;}
._1e{width:41.792000pt;}
._20{width:64.128000pt;}
.fs4{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:3.680000pt;}
.y3{bottom:3.840000pt;}
.y4b{bottom:12.960000pt;}
.y58{bottom:12.992000pt;}
.y52{bottom:13.120000pt;}
.y54{bottom:22.080000pt;}
.y4c{bottom:22.240000pt;}
.y59{bottom:22.266667pt;}
.y4f{bottom:22.280000pt;}
.y2{bottom:47.040000pt;}
.y1{bottom:51.040000pt;}
.y3b{bottom:97.280000pt;}
.y106{bottom:101.280000pt;}
.y127{bottom:101.600000pt;}
.yc1{bottom:102.880000pt;}
.y79{bottom:106.240000pt;}
.y3a{bottom:111.040000pt;}
.yd8{bottom:114.240000pt;}
.yca{bottom:115.040000pt;}
.y57{bottom:116.480000pt;}
.y126{bottom:120.320000pt;}
.y39{bottom:124.832000pt;}
.yc9{bottom:125.952000pt;}
.y9c{bottom:128.832000pt;}
.yc0{bottom:130.432000pt;}
.y78{bottom:133.946667pt;}
.yff{bottom:136.986667pt;}
.y38{bottom:138.746667pt;}
.y9b{bottom:139.706667pt;}
.yd7{bottom:141.786667pt;}
.ybc{bottom:142.746667pt;}
.y37{bottom:152.506667pt;}
.ybb{bottom:153.626667pt;}
.y36{bottom:156.506667pt;}
.y125{bottom:157.146667pt;}
.ybf{bottom:158.106667pt;}
.y56{bottom:158.586667pt;}
.y77{bottom:161.466667pt;}
.yfe{bottom:164.666667pt;}
.y35{bottom:166.266667pt;}
.ycd{bottom:167.386667pt;}
.yd6{bottom:169.466667pt;}
.y9a{bottom:170.266667pt;}
.y124{bottom:175.546667pt;}
.y34{bottom:180.026667pt;}
.yc4{bottom:181.146667pt;}
.y103{bottom:184.026667pt;}
.y104{bottom:185.306667pt;}
.yba{bottom:185.626667pt;}
.y76{bottom:189.146667pt;}
.yfd{bottom:192.186667pt;}
.y33{bottom:193.946667pt;}
.y102{bottom:194.906667pt;}
.y99{bottom:197.946667pt;}
.y53{bottom:200.666667pt;}
.yd5{bottom:205.626667pt;}
.y32{bottom:207.706667pt;}
.yd3{bottom:208.826667pt;}
.y31{bottom:211.706667pt;}
.y123{bottom:212.346667pt;}
.yb9{bottom:213.306667pt;}
.y75{bottom:216.666667pt;}
.yfc{bottom:219.866667pt;}
.y30{bottom:222.586667pt;}
.y98{bottom:225.466667pt;}
.y122{bottom:230.746667pt;}
.yee{bottom:231.706667pt;}
.yb8{bottom:240.826667pt;}
.y51{bottom:242.586667pt;}
.y74{bottom:244.346667pt;}
.yd0{bottom:246.906667pt;}
.yfb{bottom:247.386667pt;}
.y2f{bottom:248.186667pt;}
.y121{bottom:248.826667pt;}
.y97{bottom:253.146667pt;}
.yed{bottom:259.386667pt;}
.y2e{bottom:265.146667pt;}
.y120{bottom:267.546667pt;}
.yb7{bottom:268.346667pt;}
.y73{bottom:271.866667pt;}
.yfa{bottom:275.066667pt;}
.y96{bottom:280.666667pt;}
.y2d{bottom:281.946667pt;}
.y50{bottom:284.666667pt;}
.y11f{bottom:285.946667pt;}
.yec{bottom:286.906667pt;}
.yb6{bottom:296.026667pt;}
.y2c{bottom:298.906667pt;}
.y72{bottom:299.546667pt;}
.yf9{bottom:302.586667pt;}
.y11e{bottom:304.346667pt;}
.y95{bottom:308.346667pt;}
.yeb{bottom:314.586667pt;}
.y2b{bottom:315.706667pt;}
.y11d{bottom:322.746667pt;}
.yb5{bottom:323.546667pt;}
.y4e{bottom:326.746667pt;}
.y71{bottom:327.066667pt;}
.yf0{bottom:329.626667pt;}
.yf8{bottom:330.266667pt;}
.y2a{bottom:332.506667pt;}
.y94{bottom:335.866667pt;}
.y11c{bottom:341.146667pt;}
.yea{bottom:342.106667pt;}
.y29{bottom:349.506667pt;}
.yb4{bottom:351.266667pt;}
.y70{bottom:354.786667pt;}
.ycf{bottom:357.346667pt;}
.yf7{bottom:357.826667pt;}
.y11b{bottom:359.586667pt;}
.y93{bottom:363.586667pt;}
.y28{bottom:366.306667pt;}
.y4d{bottom:368.866667pt;}
.ye9{bottom:369.826667pt;}
.yc8{bottom:378.466667pt;}
.yb3{bottom:378.786667pt;}
.y6f{bottom:382.306667pt;}
.y27{bottom:383.266667pt;}
.yf6{bottom:385.506667pt;}
.y92{bottom:391.106667pt;}
.y4a{bottom:392.546667pt;}
.y11a{bottom:396.546667pt;}
.ye8{bottom:397.346667pt;}
.y26{bottom:400.066667pt;}
.yc7{bottom:406.146667pt;}
.yb2{bottom:406.466667pt;}
.y6e{bottom:409.986667pt;}
.yf5{bottom:413.026667pt;}
.y119{bottom:414.946667pt;}
.y25{bottom:416.866667pt;}
.y91{bottom:418.786667pt;}
.ye6{bottom:425.026667pt;}
.ye7{bottom:431.106667pt;}
.yda{bottom:433.666667pt;}
.y24{bottom:433.826667pt;}
.yb1{bottom:433.986667pt;}
.y49{bottom:434.626667pt;}
.y6d{bottom:437.506667pt;}
.yf4{bottom:442.466667pt;}
.y90{bottom:446.306667pt;}
.y23{bottom:450.626667pt;}
.y118{bottom:452.066667pt;}
.ye5{bottom:452.546667pt;}
.yf3{bottom:457.186667pt;}
.y48{bottom:458.306667pt;}
.yd9{bottom:461.346667pt;}
.yaf{bottom:461.666667pt;}
.y6c{bottom:465.186667pt;}
.y22{bottom:467.586667pt;}
.yb0{bottom:467.746667pt;}
.y117{bottom:470.466667pt;}
.yf2{bottom:472.066667pt;}
.y8f{bottom:473.986667pt;}
.ye4{bottom:480.226667pt;}
.y47{bottom:481.986667pt;}
.y21{bottom:484.386667pt;}
.yce{bottom:488.866667pt;}
.yae{bottom:489.186667pt;}
.yf1{bottom:492.226667pt;}
.y6b{bottom:492.706667pt;}
.ycc{bottom:495.266667pt;}
.y20{bottom:501.186667pt;}
.y8e{bottom:501.506667pt;}
.y46{bottom:505.666667pt;}
.y116{bottom:507.266667pt;}
.ye3{bottom:507.746667pt;}
.ybe{bottom:516.546667pt;}
.yad{bottom:516.866667pt;}
.y1f{bottom:518.146667pt;}
.y6a{bottom:520.386667pt;}
.y105{bottom:522.946667pt;}
.y115{bottom:525.666667pt;}
.y8d{bottom:529.186667pt;}
.y1e{bottom:534.946667pt;}
.ye2{bottom:535.266667pt;}
.y45{bottom:541.346667pt;}
.ybd{bottom:544.066667pt;}
.yac{bottom:544.386667pt;}
.y69{bottom:547.906667pt;}
.yd2{bottom:550.466667pt;}
.y1d{bottom:551.906667pt;}
.y8c{bottom:556.706667pt;}
.y114{bottom:562.466667pt;}
.ye1{bottom:562.946667pt;}
.y1c{bottom:568.706667pt;}
.y44{bottom:569.026667pt;}
.yab{bottom:572.093333pt;}
.y68{bottom:575.613333pt;}
.y113{bottom:580.893333pt;}
.y8a{bottom:584.253333pt;}
.y1b{bottom:585.533333pt;}
.y8b{bottom:590.333333pt;}
.ye0{bottom:590.493333pt;}
.y43{bottom:596.573333pt;}
.y112{bottom:599.293333pt;}
.yaa{bottom:599.613333pt;}
.y1a{bottom:602.493333pt;}
.y67{bottom:603.133333pt;}
.ycb{bottom:605.693333pt;}
.y13e{bottom:609.053333pt;}
.yd4{bottom:611.613333pt;}
.y89{bottom:611.933333pt;}
.y111{bottom:617.693333pt;}
.ydf{bottom:618.173333pt;}
.y19{bottom:619.293333pt;}
.y42{bottom:624.253333pt;}
.ya9{bottom:627.293333pt;}
.y13d{bottom:627.453333pt;}
.y66{bottom:630.813333pt;}
.yc6{bottom:633.373333pt;}
.y18{bottom:636.253333pt;}
.y88{bottom:639.453333pt;}
.y41{bottom:642.173333pt;}
.yde{bottom:645.693333pt;}
.y13c{bottom:645.853333pt;}
.y17{bottom:653.053333pt;}
.yc5{bottom:654.493333pt;}
.ya8{bottom:654.813333pt;}
.y40{bottom:657.533333pt;}
.y65{bottom:658.333333pt;}
.ydd{bottom:663.613333pt;}
.y13b{bottom:664.253333pt;}
.y87{bottom:667.133333pt;}
.y16{bottom:670.013333pt;}
.y3f{bottom:672.733333pt;}
.y110{bottom:673.053333pt;}
.ydc{bottom:678.973333pt;}
.yef{bottom:682.173333pt;}
.ya7{bottom:682.493333pt;}
.y13a{bottom:682.653333pt;}
.y64{bottom:686.013333pt;}
.y15{bottom:686.813333pt;}
.y3e{bottom:688.093333pt;}
.yc3{bottom:688.573333pt;}
.y86{bottom:694.653333pt;}
.ydb{bottom:700.253333pt;}
.y139{bottom:701.053333pt;}
.y14{bottom:703.613333pt;}
.y3d{bottom:709.373333pt;}
.ya6{bottom:710.013333pt;}
.y10f{bottom:710.173333pt;}
.y63{bottom:713.533333pt;}
.y138{bottom:719.453333pt;}
.y85{bottom:722.333333pt;}
.y10e{bottom:728.573333pt;}
.y13{bottom:730.013333pt;}
.y101{bottom:737.373333pt;}
.ya5{bottom:737.693333pt;}
.y137{bottom:737.853333pt;}
.y62{bottom:741.213333pt;}
.yd1{bottom:743.773333pt;}
.y10d{bottom:746.973333pt;}
.y84{bottom:749.853333pt;}
.y136{bottom:756.253333pt;}
.y12{bottom:757.533333pt;}
.y100{bottom:764.893333pt;}
.ya4{bottom:765.213333pt;}
.y10c{bottom:765.373333pt;}
.y61{bottom:768.733333pt;}
.y135{bottom:774.653333pt;}
.y10{bottom:775.773333pt;}
.y83{bottom:777.533333pt;}
.y11{bottom:781.053333pt;}
.y10b{bottom:783.773333pt;}
.yf{bottom:792.573333pt;}
.ya3{bottom:792.893333pt;}
.y134{bottom:793.053333pt;}
.y10a{bottom:802.213333pt;}
.y82{bottom:805.093333pt;}
.y60{bottom:805.413333pt;}
.ye{bottom:809.573333pt;}
.y133{bottom:811.493333pt;}
.ya2{bottom:820.453333pt;}
.y5f{bottom:820.613333pt;}
.yd{bottom:826.373333pt;}
.y132{bottom:829.893333pt;}
.y81{bottom:832.773333pt;}
.y109{bottom:839.013333pt;}
.yc{bottom:843.173333pt;}
.ya1{bottom:848.133333pt;}
.y131{bottom:848.293333pt;}
.y5e{bottom:855.653333pt;}
.y108{bottom:857.413333pt;}
.yb{bottom:860.133333pt;}
.y80{bottom:860.293333pt;}
.y130{bottom:866.693333pt;}
.yc2{bottom:875.333333pt;}
.y107{bottom:875.493333pt;}
.ya0{bottom:875.653333pt;}
.ya{bottom:876.933333pt;}
.y12f{bottom:885.093333pt;}
.y7f{bottom:887.973333pt;}
.y5d{bottom:897.733333pt;}
.y12e{bottom:903.173333pt;}
.y9{bottom:903.333333pt;}
.y7e{bottom:915.493333pt;}
.y12d{bottom:921.893333pt;}
.y8{bottom:930.853333pt;}
.y5c{bottom:939.813333pt;}
.y12c{bottom:940.293333pt;}
.y7d{bottom:943.173333pt;}
.y7{bottom:958.213333pt;}
.y9f{bottom:958.533333pt;}
.y12b{bottom:958.693333pt;}
.y7c{bottom:970.693333pt;}
.y12a{bottom:977.093333pt;}
.y5b{bottom:981.893333pt;}
.y5{bottom:985.733333pt;}
.y9e{bottom:986.053333pt;}
.y6{bottom:991.013333pt;}
.y129{bottom:995.493333pt;}
.y7b{bottom:998.053333pt;}
.y5a{bottom:1005.573333pt;}
.y4{bottom:1013.413333pt;}
.y9d{bottom:1013.733333pt;}
.y128{bottom:1013.893333pt;}
.y3c{bottom:1015.013333pt;}
.y7a{bottom:1016.293333pt;}
.h15{height:18.240000pt;}
.h14{height:18.272000pt;}
.h3{height:18.400000pt;}
.hb{height:31.406250pt;}
.h18{height:32.250000pt;}
.ha{height:36.431250pt;}
.h13{height:36.640000pt;}
.h11{height:36.800000pt;}
.h12{height:36.832000pt;}
.h16{height:42.084375pt;}
.hd{height:43.031250pt;}
.h5{height:43.215000pt;}
.hf{height:46.593750pt;}
.hc{height:47.109375pt;}
.h19{height:48.375000pt;}
.h10{height:50.031250pt;}
.he{height:52.134375pt;}
.h9{height:52.785000pt;}
.h17{height:57.375000pt;}
.h7{height:57.787500pt;}
.h8{height:59.340000pt;}
.h6{height:62.781250pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:8.160000pt;}
.w8{width:16.160000pt;}
.w5{width:99.200000pt;}
.w7{width:165.786667pt;}
.w6{width:327.426667pt;}
.w4{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x17{left:0.960000pt;}
.x12{left:21.114667pt;}
.x16{left:60.640000pt;}
.x32{left:104.031988pt;}
.x1{left:113.471988pt;}
.x11{left:116.512000pt;}
.xa{left:117.471988pt;}
.x39{left:119.391988pt;}
.x29{left:121.471988pt;}
.x35{left:122.911988pt;}
.xc{left:124.031988pt;}
.xd{left:125.631988pt;}
.x8{left:132.351988pt;}
.x14{left:138.120000pt;}
.x10{left:151.226655pt;}
.x21{left:168.186643pt;}
.x22{left:173.626655pt;}
.x18{left:203.866655pt;}
.x6{left:206.266643pt;}
.x7{left:210.906655pt;}
.x13{left:219.066667pt;}
.x3b{left:234.786643pt;}
.x2f{left:244.226655pt;}
.x3c{left:245.666655pt;}
.x31{left:265.506655pt;}
.xe{left:290.946655pt;}
.x3f{left:297.026643pt;}
.x9{left:305.506655pt;}
.x40{left:307.906655pt;}
.x3d{left:310.466643pt;}
.x27{left:315.266643pt;}
.x3e{left:321.346655pt;}
.x28{left:326.146655pt;}
.x3a{left:362.466655pt;}
.x25{left:383.426643pt;}
.x26{left:388.866655pt;}
.xf{left:396.733322pt;}
.x2a{left:417.053310pt;}
.x2b{left:427.933322pt;}
.x36{left:433.373310pt;}
.x3{left:437.213310pt;}
.x4{left:442.653322pt;}
.x37{left:444.253322pt;}
.x33{left:456.093310pt;}
.x34{left:466.973322pt;}
.x2d{left:543.773322pt;}
.x15{left:549.893333pt;}
.x1b{left:552.613310pt;}
.x1c{left:558.053322pt;}
.x19{left:580.773310pt;}
.x1a{left:586.213322pt;}
.x1d{left:599.173310pt;}
.x1e{left:604.613322pt;}
.x2e{left:624.293322pt;}
.x23{left:625.893310pt;}
.x24{left:631.333322pt;}
.x20{left:663.973333pt;}
.x2c{left:669.253310pt;}
.x2{left:671.973333pt;}
.x1f{left:674.693310pt;}
.x5{left:680.133322pt;}
.xb{left:716.159988pt;}
.x38{left:717.759988pt;}
.x30{left:734.879988pt;}
}




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