
    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_52285cfc57d6fcf3f480eca0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a551c1de1a8db32ccd31f06f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.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_9a0e01820db296e65ca3f97a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7f2b2f2124761ff06a040d90.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_795777d1ee73f33ad7bf09d0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_039fb08034f81d6517e8d364.woff2')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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.260000px;}
.lsc{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.450600px;}
.ls5{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.269400px;}
.ls20{letter-spacing:-0.259800px;}
.ls19{letter-spacing:-0.223800px;}
.ls23{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.208200px;}
.ls22{letter-spacing:-0.108000px;}
.ls13{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.033840px;}
.ls1e{letter-spacing:0.045360px;}
.lse{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls21{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.181200px;}
.ls14{letter-spacing:0.206400px;}
.ls12{letter-spacing:0.206640px;}
.ls17{letter-spacing:0.223800px;}
.ls6{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.269400px;}
.lsa{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.306600px;}
.ls10{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.900000px;}
.ls1b{letter-spacing:3.060000px;}
.ls16{letter-spacing:4.500000px;}
.lsf{letter-spacing:6.660000px;}
.ls11{letter-spacing:10.260000px;}
.ls3{letter-spacing:66.162720px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.246600px;}
.ws9{word-spacing:-15.146400px;}
.ws8{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.833200px;}
.ws15{word-spacing:-14.680200px;}
.ws0{word-spacing:-14.580000px;}
.ws3{word-spacing:-13.860000px;}
.ws17{word-spacing:-13.608000px;}
.ws16{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.392000px;}
.ws19{word-spacing:-13.284000px;}
.wsd{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.329400px;}
.wsc{word-spacing:-12.283800px;}
.ws12{word-spacing:-12.241200px;}
.ws13{word-spacing:-12.105360px;}
.wsb{word-spacing:-12.060000px;}
.wse{word-spacing:-11.836200px;}
.ws10{word-spacing:-11.790600px;}
.wsf{word-spacing:-11.700000px;}
.ws14{word-spacing:-11.609400px;}
.ws4{word-spacing:0.000000px;}
._14{margin-left:-7.020000px;}
._11{margin-left:-3.514320px;}
._f{margin-left:-2.484000px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._12{width:4.446000px;}
._6{width:5.742000px;}
._4{width:6.840000px;}
._5{width:8.319360px;}
._7{width:9.396000px;}
._9{width:10.575360px;}
._8{width:11.664000px;}
._13{width:12.935520px;}
._c{width:14.669280px;}
._b{width:16.092000px;}
._a{width:17.172000px;}
._1b{width:18.401280px;}
._1a{width:20.143200px;}
._19{width:21.453840px;}
._e{width:22.518000px;}
._d{width:23.598000px;}
._1d{width:24.883920px;}
._20{width:26.873280px;}
._1c{width:28.146960px;}
._1e{width:30.136080px;}
._10{width:32.130000px;}
._21{width:33.506640px;}
._28{width:34.704720px;}
._24{width:35.708160px;}
._22{width:36.793440px;}
._1f{width:50.119920px;}
._29{width:57.036960px;}
._2a{width:58.643040px;}
._23{width:59.828160px;}
._2b{width:60.980640px;}
._2c{width:62.499360px;}
._25{width:73.035360px;}
._26{width:74.550240px;}
._27{width:78.775920px;}
._17{width:509.086560px;}
._15{width:736.380000px;}
._18{width:865.686720px;}
._16{width:1073.100000px;}
._3{width:1101.912000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:23.760000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y28{bottom:2.880000px;}
.yf{bottom:3.240000px;}
.yc1{bottom:3.780000px;}
.y17e{bottom:4.680000px;}
.y31{bottom:9.000000px;}
.y37{bottom:12.240000px;}
.y27{bottom:18.540000px;}
.y14{bottom:20.520000px;}
.ybf{bottom:21.060000px;}
.y173{bottom:28.620000px;}
.y36{bottom:29.520000px;}
.y26{bottom:34.020000px;}
.y13{bottom:37.800000px;}
.y172{bottom:44.100000px;}
.y35{bottom:46.800000px;}
.y25{bottom:49.500000px;}
.y12{bottom:55.080000px;}
.y171{bottom:59.580000px;}
.y34{bottom:64.080000px;}
.y17c{bottom:64.260000px;}
.y24{bottom:64.980000px;}
.y30{bottom:65.880000px;}
.yc4{bottom:72.360000px;}
.y170{bottom:75.060000px;}
.y17b{bottom:79.740000px;}
.y23{bottom:80.640000px;}
.y11{bottom:81.225000px;}
.y5{bottom:88.200000px;}
.y33{bottom:90.360000px;}
.y16f{bottom:90.720000px;}
.y17a{bottom:95.400000px;}
.y22{bottom:96.120000px;}
.y16e{bottom:106.200000px;}
.y179{bottom:110.910000px;}
.y21{bottom:111.600000px;}
.y2f{bottom:120.630000px;}
.y16d{bottom:121.680000px;}
.y178{bottom:126.390000px;}
.y20{bottom:127.080000px;}
.y84{bottom:128.160000px;}
.ybc{bottom:128.880000px;}
.ye3{bottom:136.296000px;}
.y16c{bottom:137.160000px;}
.y2e{bottom:137.910000px;}
.y169{bottom:138.636000px;}
.y49{bottom:139.716000px;}
.y177{bottom:141.870000px;}
.y1f{bottom:142.740000px;}
.y83{bottom:145.476000px;}
.ybb{bottom:146.196000px;}
.y12b{bottom:148.176000px;}
.ye2{bottom:150.150000px;}
.y168{bottom:152.310000px;}
.y2d{bottom:155.190000px;}
.y48{bottom:156.990000px;}
.y176{bottom:157.350000px;}
.y1e{bottom:158.220000px;}
.y12a{bottom:162.030000px;}
.y82{bottom:162.750000px;}
.yba{bottom:163.470000px;}
.ye1{bottom:163.830000px;}
.y167{bottom:166.170000px;}
.y2c{bottom:172.470000px;}
.y1d{bottom:173.700000px;}
.y47{bottom:174.270000px;}
.y129{bottom:175.710000px;}
.ye0{bottom:177.690000px;}
.y81{bottom:179.850000px;}
.y166{bottom:180.030000px;}
.yb9{bottom:180.750000px;}
.y1c{bottom:189.180000px;}
.y128{bottom:189.570000px;}
.y2b{bottom:189.750000px;}
.y46{bottom:191.550000px;}
.y165{bottom:193.710000px;}
.y80{bottom:197.130000px;}
.yb8{bottom:197.850000px;}
.y127{bottom:203.430000px;}
.y1b{bottom:204.840000px;}
.ydf{bottom:205.230000px;}
.y2a{bottom:206.850000px;}
.y164{bottom:207.570000px;}
.y45{bottom:208.650000px;}
.y7f{bottom:214.410000px;}
.yb7{bottom:215.130000px;}
.y126{bottom:217.830000px;}
.yde{bottom:219.090000px;}
.y1a{bottom:220.320000px;}
.y163{bottom:221.430000px;}
.y44{bottom:225.930000px;}
.y7e{bottom:231.690000px;}
.yb6{bottom:232.410000px;}
.ydd{bottom:232.950000px;}
.y29{bottom:233.130000px;}
.y125{bottom:234.390000px;}
.y162{bottom:235.110000px;}
.y19{bottom:235.800000px;}
.y43{bottom:243.210000px;}
.ydc{bottom:246.630000px;}
.y124{bottom:248.250000px;}
.y7d{bottom:248.970000px;}
.yb5{bottom:249.690000px;}
.y18{bottom:251.325000px;}
.y42{bottom:260.490000px;}
.y123{bottom:261.930000px;}
.y161{bottom:262.830000px;}
.y7c{bottom:266.250000px;}
.yb4{bottom:266.970000px;}
.ydb{bottom:274.350000px;}
.y122{bottom:275.790000px;}
.y160{bottom:276.510000px;}
.y41{bottom:277.770000px;}
.y7b{bottom:283.350000px;}
.yb3{bottom:284.250000px;}
.yda{bottom:288.030000px;}
.y121{bottom:289.650000px;}
.y15f{bottom:290.370000px;}
.y40{bottom:295.050000px;}
.y7a{bottom:300.630000px;}
.yb2{bottom:301.350000px;}
.yd9{bottom:301.890000px;}
.y120{bottom:303.330000px;}
.y15e{bottom:304.230000px;}
.y3f{bottom:312.150000px;}
.yd8{bottom:315.750000px;}
.y11f{bottom:317.190000px;}
.y79{bottom:317.910000px;}
.yb1{bottom:318.630000px;}
.y3e{bottom:329.430000px;}
.y11e{bottom:331.050000px;}
.y15d{bottom:331.770000px;}
.y78{bottom:335.190000px;}
.yb0{bottom:335.910000px;}
.y16{bottom:338.115000px;}
.yd7{bottom:343.290000px;}
.y11d{bottom:344.730000px;}
.y15c{bottom:345.630000px;}
.y3d{bottom:346.710000px;}
.y77{bottom:352.470000px;}
.yaf{bottom:353.190000px;}
.yd6{bottom:357.150000px;}
.y11c{bottom:358.590000px;}
.y15b{bottom:359.310000px;}
.y3c{bottom:363.990000px;}
.y76{bottom:369.750000px;}
.yae{bottom:370.470000px;}
.yd5{bottom:370.830000px;}
.y11b{bottom:372.450000px;}
.y15a{bottom:373.170000px;}
.y3b{bottom:381.270000px;}
.yd4{bottom:385.410000px;}
.y11a{bottom:386.130000px;}
.y75{bottom:386.850000px;}
.y159{bottom:387.030000px;}
.yad{bottom:387.795000px;}
.y3a{bottom:398.415000px;}
.y119{bottom:400.035000px;}
.y158{bottom:400.755000px;}
.yd3{bottom:402.735000px;}
.y74{bottom:404.175000px;}
.yac{bottom:404.895000px;}
.y118{bottom:413.895000px;}
.y157{bottom:414.615000px;}
.y39{bottom:415.695000px;}
.yd2{bottom:420.015000px;}
.y73{bottom:421.455000px;}
.yab{bottom:422.175000px;}
.y117{bottom:427.575000px;}
.y156{bottom:428.475000px;}
.y38{bottom:432.975000px;}
.yd1{bottom:437.295000px;}
.y72{bottom:438.735000px;}
.yaa{bottom:439.455000px;}
.y116{bottom:441.435000px;}
.y155{bottom:442.155000px;}
.y32{bottom:449.175000px;}
.yd0{bottom:454.395000px;}
.y115{bottom:455.295000px;}
.y71{bottom:456.015000px;}
.ya9{bottom:456.735000px;}
.y114{bottom:468.975000px;}
.y154{bottom:469.875000px;}
.ycf{bottom:471.675000px;}
.y70{bottom:473.115000px;}
.ya8{bottom:474.015000px;}
.y113{bottom:482.835000px;}
.y153{bottom:483.555000px;}
.yce{bottom:488.955000px;}
.y6f{bottom:490.395000px;}
.ya7{bottom:491.115000px;}
.y112{bottom:496.695000px;}
.y152{bottom:497.415000px;}
.ycd{bottom:506.235000px;}
.y6e{bottom:507.675000px;}
.ya6{bottom:508.395000px;}
.y17f{bottom:510.015000px;}
.y111{bottom:510.375000px;}
.y151{bottom:511.095000px;}
.y17d{bottom:515.595000px;}
.ycc{bottom:523.515000px;}
.y110{bottom:524.235000px;}
.y6d{bottom:524.955000px;}
.ya5{bottom:525.675000px;}
.y175{bottom:532.875000px;}
.y10f{bottom:538.095000px;}
.y150{bottom:538.815000px;}
.ycb{bottom:540.615000px;}
.y6c{bottom:542.235000px;}
.ya4{bottom:542.955000px;}
.y10e{bottom:551.775000px;}
.y14f{bottom:552.495000px;}
.yca{bottom:557.895000px;}
.y6b{bottom:559.515000px;}
.ya3{bottom:560.235000px;}
.y15{bottom:563.295000px;}
.y10d{bottom:565.635000px;}
.y14e{bottom:566.355000px;}
.yc9{bottom:575.175000px;}
.y6a{bottom:576.615000px;}
.ya2{bottom:577.515000px;}
.y10c{bottom:579.495000px;}
.y14d{bottom:580.215000px;}
.yc8{bottom:592.455000px;}
.y10b{bottom:593.175000px;}
.y69{bottom:593.895000px;}
.ya1{bottom:594.615000px;}
.y10a{bottom:607.035000px;}
.y14c{bottom:607.755000px;}
.yc7{bottom:609.735000px;}
.y68{bottom:611.175000px;}
.ya0{bottom:611.895000px;}
.y109{bottom:620.895000px;}
.y14b{bottom:621.615000px;}
.yc6{bottom:627.015000px;}
.y67{bottom:628.455000px;}
.y9f{bottom:629.175000px;}
.y108{bottom:634.575000px;}
.y14a{bottom:635.295000px;}
.yc5{bottom:644.145000px;}
.y66{bottom:645.765000px;}
.y9e{bottom:646.485000px;}
.y107{bottom:648.465000px;}
.y149{bottom:649.185000px;}
.y17{bottom:651.525000px;}
.yc3{bottom:658.185000px;}
.y106{bottom:662.325000px;}
.y65{bottom:663.045000px;}
.y9d{bottom:663.765000px;}
.y105{bottom:676.005000px;}
.y148{bottom:676.725000px;}
.y64{bottom:680.145000px;}
.y9c{bottom:681.045000px;}
.y104{bottom:689.865000px;}
.y147{bottom:690.585000px;}
.y63{bottom:697.425000px;}
.y9b{bottom:698.145000px;}
.y103{bottom:703.725000px;}
.y174{bottom:703.905000px;}
.y146{bottom:704.445000px;}
.y62{bottom:714.705000px;}
.y9a{bottom:715.425000px;}
.y102{bottom:717.405000px;}
.y145{bottom:718.125000px;}
.y16b{bottom:719.385000px;}
.y101{bottom:731.265000px;}
.y61{bottom:731.985000px;}
.y99{bottom:732.705000px;}
.y100{bottom:745.125000px;}
.y144{bottom:745.845000px;}
.yc2{bottom:747.645000px;}
.y60{bottom:749.265000px;}
.y98{bottom:749.985000px;}
.yff{bottom:758.805000px;}
.y143{bottom:759.525000px;}
.yc0{bottom:762.405000px;}
.y5f{bottom:766.545000px;}
.y97{bottom:767.265000px;}
.yfe{bottom:772.665000px;}
.y142{bottom:773.385000px;}
.ybe{bottom:779.685000px;}
.y5e{bottom:783.645000px;}
.y96{bottom:784.545000px;}
.yfd{bottom:786.525000px;}
.y141{bottom:787.245000px;}
.yfc{bottom:800.205000px;}
.y5d{bottom:800.925000px;}
.y95{bottom:801.645000px;}
.yfb{bottom:814.065000px;}
.y140{bottom:814.785000px;}
.ybd{bottom:814.965000px;}
.y5c{bottom:818.205000px;}
.y94{bottom:818.925000px;}
.y10{bottom:820.185000px;}
.yfa{bottom:827.745000px;}
.y13f{bottom:828.645000px;}
.y5b{bottom:835.485000px;}
.y93{bottom:836.205000px;}
.yf9{bottom:841.605000px;}
.y13e{bottom:842.325000px;}
.y5a{bottom:852.765000px;}
.y92{bottom:853.485000px;}
.yf8{bottom:855.465000px;}
.y13d{bottom:856.185000px;}
.yf7{bottom:869.145000px;}
.y59{bottom:869.865000px;}
.y13c{bottom:870.045000px;}
.y91{bottom:870.765000px;}
.y16a{bottom:872.745000px;}
.yf6{bottom:883.005000px;}
.y13b{bottom:883.725000px;}
.y58{bottom:887.145000px;}
.y90{bottom:887.865000px;}
.yf5{bottom:896.910000px;}
.y13a{bottom:897.630000px;}
.y57{bottom:904.470000px;}
.y8f{bottom:905.190000px;}
.yf4{bottom:910.590000px;}
.y139{bottom:911.490000px;}
.y56{bottom:921.750000px;}
.y8e{bottom:922.470000px;}
.yf3{bottom:924.450000px;}
.ye{bottom:925.170000px;}
.yf2{bottom:938.310000px;}
.y55{bottom:939.030000px;}
.y8d{bottom:939.750000px;}
.yf1{bottom:951.990000px;}
.y138{bottom:952.890000px;}
.y54{bottom:956.310000px;}
.yd{bottom:957.030000px;}
.yf0{bottom:965.850000px;}
.y137{bottom:966.570000px;}
.y53{bottom:973.410000px;}
.yc{bottom:974.310000px;}
.yef{bottom:979.710000px;}
.y136{bottom:980.430000px;}
.yb{bottom:990.690000px;}
.y8c{bottom:991.410000px;}
.yee{bottom:993.390000px;}
.y135{bottom:994.290000px;}
.ya{bottom:1005.270000px;}
.yed{bottom:1007.250000px;}
.y52{bottom:1007.970000px;}
.y8b{bottom:1008.690000px;}
.yec{bottom:1021.110000px;}
.y134{bottom:1021.830000px;}
.y9{bottom:1022.550000px;}
.y51{bottom:1025.250000px;}
.y8a{bottom:1025.970000px;}
.yeb{bottom:1034.790000px;}
.y133{bottom:1035.690000px;}
.y8{bottom:1039.830000px;}
.y50{bottom:1042.530000px;}
.y89{bottom:1043.250000px;}
.yea{bottom:1048.650000px;}
.y132{bottom:1049.370000px;}
.y7{bottom:1059.090000px;}
.y4f{bottom:1059.810000px;}
.y88{bottom:1060.530000px;}
.ye9{bottom:1062.510000px;}
.y131{bottom:1063.230000px;}
.ye8{bottom:1076.190000px;}
.y4e{bottom:1076.910000px;}
.y130{bottom:1077.090000px;}
.y87{bottom:1077.810000px;}
.y6{bottom:1086.630000px;}
.ye7{bottom:1090.050000px;}
.y12f{bottom:1090.770000px;}
.y4d{bottom:1094.190000px;}
.y86{bottom:1094.910000px;}
.ye6{bottom:1103.910000px;}
.y12e{bottom:1104.630000px;}
.y4c{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.ye5{bottom:1117.590000px;}
.y12d{bottom:1118.490000px;}
.y4b{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.ye4{bottom:1131.450000px;}
.y12c{bottom:1132.170000px;}
.y2{bottom:1146.780000px;}
.y85{bottom:1160.640000px;}
.y4a{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h18{height:15.480000px;}
.h12{height:17.100000px;}
.h13{height:17.280000px;}
.h1a{height:23.319141px;}
.h7{height:26.280000px;}
.h14{height:34.560000px;}
.h6{height:47.344922px;}
.hf{height:52.971680px;}
.hc{height:52.998047px;}
.h17{height:54.421875px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h11{height:62.211094px;}
.h8{height:70.664062px;}
.h15{height:86.220000px;}
.he{height:87.516000px;}
.h5{height:96.508125px;}
.h9{height:104.256000px;}
.h10{height:113.400000px;}
.h16{height:150.840000px;}
.h19{height:171.030000px;}
.hd{height:256.170000px;}
.hb{height:272.910000px;}
.ha{height:361.155000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.060000px;}
.w8{width:29.880000px;}
.w7{width:30.060000px;}
.wa{width:35.280000px;}
.w10{width:35.460000px;}
.wf{width:35.496000px;}
.wb{width:35.820000px;}
.wc{width:36.000000px;}
.w11{width:36.036000px;}
.we{width:36.360000px;}
.w12{width:36.540000px;}
.wd{width:36.720000px;}
.w16{width:144.360000px;}
.w9{width:156.810000px;}
.w15{width:198.570000px;}
.w3{width:209.190000px;}
.w13{width:214.770000px;}
.w14{width:244.290000px;}
.w5{width:433.155000px;}
.w17{width:525.345000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x17{left:9.180000px;}
.xa{left:10.620000px;}
.x14{left:12.240000px;}
.x1a{left:14.790000px;}
.x23{left:17.460000px;}
.x12{left:26.274000px;}
.x2b{left:72.174000px;}
.xc{left:106.560000px;}
.x28{left:117.036000px;}
.x7{left:125.496000px;}
.x1{left:127.655987px;}
.x29{left:131.754000px;}
.x2c{left:136.254000px;}
.x10{left:154.649987px;}
.xf{left:157.349987px;}
.x27{left:159.689987px;}
.x26{left:170.129987px;}
.xe{left:181.649987px;}
.x2{left:230.249987px;}
.x6{left:237.089987px;}
.x2a{left:261.390000px;}
.x13{left:284.475000px;}
.x15{left:319.755000px;}
.x3{left:321.194987px;}
.x5{left:328.754987px;}
.x9{left:334.695000px;}
.x24{left:343.155000px;}
.xb{left:355.755000px;}
.x16{left:391.575000px;}
.xd{left:425.055000px;}
.x18{left:428.295000px;}
.x4{left:457.274987px;}
.x19{left:464.655000px;}
.x1b{left:500.145000px;}
.x1c{left:535.425000px;}
.x1d{left:570.885000px;}
.x25{left:587.445000px;}
.x1e{left:606.345000px;}
.x1f{left:641.625000px;}
.x20{left:677.670000px;}
.x21{left:714.030000px;}
.x22{left:749.490000px;}
.x11{left:756.870000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.120000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.400533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.239467pt;}
.ls20{letter-spacing:-0.230933pt;}
.ls19{letter-spacing:-0.198933pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.185067pt;}
.ls22{letter-spacing:-0.096000pt;}
.ls13{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.030080pt;}
.ls1e{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls21{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.161067pt;}
.ls14{letter-spacing:0.183467pt;}
.ls12{letter-spacing:0.183680pt;}
.ls17{letter-spacing:0.198933pt;}
.ls6{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.239467pt;}
.lsa{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.272533pt;}
.ls10{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:2.720000pt;}
.ls16{letter-spacing:4.000000pt;}
.lsf{letter-spacing:5.920000pt;}
.ls11{letter-spacing:9.120000pt;}
.ls3{letter-spacing:58.811307pt;}
.wsa{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.552533pt;}
.ws9{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.185067pt;}
.ws15{word-spacing:-13.049067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws17{word-spacing:-12.096000pt;}
.ws16{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.904000pt;}
.ws19{word-spacing:-11.808000pt;}
.wsd{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.959467pt;}
.wsc{word-spacing:-10.918933pt;}
.ws12{word-spacing:-10.881067pt;}
.ws13{word-spacing:-10.760320pt;}
.wsb{word-spacing:-10.720000pt;}
.wse{word-spacing:-10.521067pt;}
.ws10{word-spacing:-10.480533pt;}
.wsf{word-spacing:-10.400000pt;}
.ws14{word-spacing:-10.319467pt;}
.ws4{word-spacing:0.000000pt;}
._14{margin-left:-6.240000pt;}
._11{margin-left:-3.123840pt;}
._f{margin-left:-2.208000pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._12{width:3.952000pt;}
._6{width:5.104000pt;}
._4{width:6.080000pt;}
._5{width:7.394987pt;}
._7{width:8.352000pt;}
._9{width:9.400320pt;}
._8{width:10.368000pt;}
._13{width:11.498240pt;}
._c{width:13.039360pt;}
._b{width:14.304000pt;}
._a{width:15.264000pt;}
._1b{width:16.356693pt;}
._1a{width:17.905067pt;}
._19{width:19.070080pt;}
._e{width:20.016000pt;}
._d{width:20.976000pt;}
._1d{width:22.119040pt;}
._20{width:23.887360pt;}
._1c{width:25.019520pt;}
._1e{width:26.787627pt;}
._10{width:28.560000pt;}
._21{width:29.783680pt;}
._28{width:30.848640pt;}
._24{width:31.740587pt;}
._22{width:32.705280pt;}
._1f{width:44.551040pt;}
._29{width:50.699520pt;}
._2a{width:52.127147pt;}
._23{width:53.180587pt;}
._2b{width:54.205013pt;}
._2c{width:55.554987pt;}
._25{width:64.920320pt;}
._26{width:66.266880pt;}
._27{width:70.023040pt;}
._17{width:452.521387pt;}
._15{width:654.560000pt;}
._18{width:769.499307pt;}
._16{width:953.866667pt;}
._3{width:979.477333pt;}
.fs5{font-size:21.120000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:2.560000pt;}
.yf{bottom:2.880000pt;}
.yc1{bottom:3.360000pt;}
.y17e{bottom:4.160000pt;}
.y31{bottom:8.000000pt;}
.y37{bottom:10.880000pt;}
.y27{bottom:16.480000pt;}
.y14{bottom:18.240000pt;}
.ybf{bottom:18.720000pt;}
.y173{bottom:25.440000pt;}
.y36{bottom:26.240000pt;}
.y26{bottom:30.240000pt;}
.y13{bottom:33.600000pt;}
.y172{bottom:39.200000pt;}
.y35{bottom:41.600000pt;}
.y25{bottom:44.000000pt;}
.y12{bottom:48.960000pt;}
.y171{bottom:52.960000pt;}
.y34{bottom:56.960000pt;}
.y17c{bottom:57.120000pt;}
.y24{bottom:57.760000pt;}
.y30{bottom:58.560000pt;}
.yc4{bottom:64.320000pt;}
.y170{bottom:66.720000pt;}
.y17b{bottom:70.880000pt;}
.y23{bottom:71.680000pt;}
.y11{bottom:72.200000pt;}
.y5{bottom:78.400000pt;}
.y33{bottom:80.320000pt;}
.y16f{bottom:80.640000pt;}
.y17a{bottom:84.800000pt;}
.y22{bottom:85.440000pt;}
.y16e{bottom:94.400000pt;}
.y179{bottom:98.586667pt;}
.y21{bottom:99.200000pt;}
.y2f{bottom:107.226667pt;}
.y16d{bottom:108.160000pt;}
.y178{bottom:112.346667pt;}
.y20{bottom:112.960000pt;}
.y84{bottom:113.920000pt;}
.ybc{bottom:114.560000pt;}
.ye3{bottom:121.152000pt;}
.y16c{bottom:121.920000pt;}
.y2e{bottom:122.586667pt;}
.y169{bottom:123.232000pt;}
.y49{bottom:124.192000pt;}
.y177{bottom:126.106667pt;}
.y1f{bottom:126.880000pt;}
.y83{bottom:129.312000pt;}
.ybb{bottom:129.952000pt;}
.y12b{bottom:131.712000pt;}
.ye2{bottom:133.466667pt;}
.y168{bottom:135.386667pt;}
.y2d{bottom:137.946667pt;}
.y48{bottom:139.546667pt;}
.y176{bottom:139.866667pt;}
.y1e{bottom:140.640000pt;}
.y12a{bottom:144.026667pt;}
.y82{bottom:144.666667pt;}
.yba{bottom:145.306667pt;}
.ye1{bottom:145.626667pt;}
.y167{bottom:147.706667pt;}
.y2c{bottom:153.306667pt;}
.y1d{bottom:154.400000pt;}
.y47{bottom:154.906667pt;}
.y129{bottom:156.186667pt;}
.ye0{bottom:157.946667pt;}
.y81{bottom:159.866667pt;}
.y166{bottom:160.026667pt;}
.yb9{bottom:160.666667pt;}
.y1c{bottom:168.160000pt;}
.y128{bottom:168.506667pt;}
.y2b{bottom:168.666667pt;}
.y46{bottom:170.266667pt;}
.y165{bottom:172.186667pt;}
.y80{bottom:175.226667pt;}
.yb8{bottom:175.866667pt;}
.y127{bottom:180.826667pt;}
.y1b{bottom:182.080000pt;}
.ydf{bottom:182.426667pt;}
.y2a{bottom:183.866667pt;}
.y164{bottom:184.506667pt;}
.y45{bottom:185.466667pt;}
.y7f{bottom:190.586667pt;}
.yb7{bottom:191.226667pt;}
.y126{bottom:193.626667pt;}
.yde{bottom:194.746667pt;}
.y1a{bottom:195.840000pt;}
.y163{bottom:196.826667pt;}
.y44{bottom:200.826667pt;}
.y7e{bottom:205.946667pt;}
.yb6{bottom:206.586667pt;}
.ydd{bottom:207.066667pt;}
.y29{bottom:207.226667pt;}
.y125{bottom:208.346667pt;}
.y162{bottom:208.986667pt;}
.y19{bottom:209.600000pt;}
.y43{bottom:216.186667pt;}
.ydc{bottom:219.226667pt;}
.y124{bottom:220.666667pt;}
.y7d{bottom:221.306667pt;}
.yb5{bottom:221.946667pt;}
.y18{bottom:223.400000pt;}
.y42{bottom:231.546667pt;}
.y123{bottom:232.826667pt;}
.y161{bottom:233.626667pt;}
.y7c{bottom:236.666667pt;}
.yb4{bottom:237.306667pt;}
.ydb{bottom:243.866667pt;}
.y122{bottom:245.146667pt;}
.y160{bottom:245.786667pt;}
.y41{bottom:246.906667pt;}
.y7b{bottom:251.866667pt;}
.yb3{bottom:252.666667pt;}
.yda{bottom:256.026667pt;}
.y121{bottom:257.466667pt;}
.y15f{bottom:258.106667pt;}
.y40{bottom:262.266667pt;}
.y7a{bottom:267.226667pt;}
.yb2{bottom:267.866667pt;}
.yd9{bottom:268.346667pt;}
.y120{bottom:269.626667pt;}
.y15e{bottom:270.426667pt;}
.y3f{bottom:277.466667pt;}
.yd8{bottom:280.666667pt;}
.y11f{bottom:281.946667pt;}
.y79{bottom:282.586667pt;}
.yb1{bottom:283.226667pt;}
.y3e{bottom:292.826667pt;}
.y11e{bottom:294.266667pt;}
.y15d{bottom:294.906667pt;}
.y78{bottom:297.946667pt;}
.yb0{bottom:298.586667pt;}
.y16{bottom:300.546667pt;}
.yd7{bottom:305.146667pt;}
.y11d{bottom:306.426667pt;}
.y15c{bottom:307.226667pt;}
.y3d{bottom:308.186667pt;}
.y77{bottom:313.306667pt;}
.yaf{bottom:313.946667pt;}
.yd6{bottom:317.466667pt;}
.y11c{bottom:318.746667pt;}
.y15b{bottom:319.386667pt;}
.y3c{bottom:323.546667pt;}
.y76{bottom:328.666667pt;}
.yae{bottom:329.306667pt;}
.yd5{bottom:329.626667pt;}
.y11b{bottom:331.066667pt;}
.y15a{bottom:331.706667pt;}
.y3b{bottom:338.906667pt;}
.yd4{bottom:342.586667pt;}
.y11a{bottom:343.226667pt;}
.y75{bottom:343.866667pt;}
.y159{bottom:344.026667pt;}
.yad{bottom:344.706667pt;}
.y3a{bottom:354.146667pt;}
.y119{bottom:355.586667pt;}
.y158{bottom:356.226667pt;}
.yd3{bottom:357.986667pt;}
.y74{bottom:359.266667pt;}
.yac{bottom:359.906667pt;}
.y118{bottom:367.906667pt;}
.y157{bottom:368.546667pt;}
.y39{bottom:369.506667pt;}
.yd2{bottom:373.346667pt;}
.y73{bottom:374.626667pt;}
.yab{bottom:375.266667pt;}
.y117{bottom:380.066667pt;}
.y156{bottom:380.866667pt;}
.y38{bottom:384.866667pt;}
.yd1{bottom:388.706667pt;}
.y72{bottom:389.986667pt;}
.yaa{bottom:390.626667pt;}
.y116{bottom:392.386667pt;}
.y155{bottom:393.026667pt;}
.y32{bottom:399.266667pt;}
.yd0{bottom:403.906667pt;}
.y115{bottom:404.706667pt;}
.y71{bottom:405.346667pt;}
.ya9{bottom:405.986667pt;}
.y114{bottom:416.866667pt;}
.y154{bottom:417.666667pt;}
.ycf{bottom:419.266667pt;}
.y70{bottom:420.546667pt;}
.ya8{bottom:421.346667pt;}
.y113{bottom:429.186667pt;}
.y153{bottom:429.826667pt;}
.yce{bottom:434.626667pt;}
.y6f{bottom:435.906667pt;}
.ya7{bottom:436.546667pt;}
.y112{bottom:441.506667pt;}
.y152{bottom:442.146667pt;}
.ycd{bottom:449.986667pt;}
.y6e{bottom:451.266667pt;}
.ya6{bottom:451.906667pt;}
.y17f{bottom:453.346667pt;}
.y111{bottom:453.666667pt;}
.y151{bottom:454.306667pt;}
.y17d{bottom:458.306667pt;}
.ycc{bottom:465.346667pt;}
.y110{bottom:465.986667pt;}
.y6d{bottom:466.626667pt;}
.ya5{bottom:467.266667pt;}
.y175{bottom:473.666667pt;}
.y10f{bottom:478.306667pt;}
.y150{bottom:478.946667pt;}
.ycb{bottom:480.546667pt;}
.y6c{bottom:481.986667pt;}
.ya4{bottom:482.626667pt;}
.y10e{bottom:490.466667pt;}
.y14f{bottom:491.106667pt;}
.yca{bottom:495.906667pt;}
.y6b{bottom:497.346667pt;}
.ya3{bottom:497.986667pt;}
.y15{bottom:500.706667pt;}
.y10d{bottom:502.786667pt;}
.y14e{bottom:503.426667pt;}
.yc9{bottom:511.266667pt;}
.y6a{bottom:512.546667pt;}
.ya2{bottom:513.346667pt;}
.y10c{bottom:515.106667pt;}
.y14d{bottom:515.746667pt;}
.yc8{bottom:526.626667pt;}
.y10b{bottom:527.266667pt;}
.y69{bottom:527.906667pt;}
.ya1{bottom:528.546667pt;}
.y10a{bottom:539.586667pt;}
.y14c{bottom:540.226667pt;}
.yc7{bottom:541.986667pt;}
.y68{bottom:543.266667pt;}
.ya0{bottom:543.906667pt;}
.y109{bottom:551.906667pt;}
.y14b{bottom:552.546667pt;}
.yc6{bottom:557.346667pt;}
.y67{bottom:558.626667pt;}
.y9f{bottom:559.266667pt;}
.y108{bottom:564.066667pt;}
.y14a{bottom:564.706667pt;}
.yc5{bottom:572.573333pt;}
.y66{bottom:574.013333pt;}
.y9e{bottom:574.653333pt;}
.y107{bottom:576.413333pt;}
.y149{bottom:577.053333pt;}
.y17{bottom:579.133333pt;}
.yc3{bottom:585.053333pt;}
.y106{bottom:588.733333pt;}
.y65{bottom:589.373333pt;}
.y9d{bottom:590.013333pt;}
.y105{bottom:600.893333pt;}
.y148{bottom:601.533333pt;}
.y64{bottom:604.573333pt;}
.y9c{bottom:605.373333pt;}
.y104{bottom:613.213333pt;}
.y147{bottom:613.853333pt;}
.y63{bottom:619.933333pt;}
.y9b{bottom:620.573333pt;}
.y103{bottom:625.533333pt;}
.y174{bottom:625.693333pt;}
.y146{bottom:626.173333pt;}
.y62{bottom:635.293333pt;}
.y9a{bottom:635.933333pt;}
.y102{bottom:637.693333pt;}
.y145{bottom:638.333333pt;}
.y16b{bottom:639.453333pt;}
.y101{bottom:650.013333pt;}
.y61{bottom:650.653333pt;}
.y99{bottom:651.293333pt;}
.y100{bottom:662.333333pt;}
.y144{bottom:662.973333pt;}
.yc2{bottom:664.573333pt;}
.y60{bottom:666.013333pt;}
.y98{bottom:666.653333pt;}
.yff{bottom:674.493333pt;}
.y143{bottom:675.133333pt;}
.yc0{bottom:677.693333pt;}
.y5f{bottom:681.373333pt;}
.y97{bottom:682.013333pt;}
.yfe{bottom:686.813333pt;}
.y142{bottom:687.453333pt;}
.ybe{bottom:693.053333pt;}
.y5e{bottom:696.573333pt;}
.y96{bottom:697.373333pt;}
.yfd{bottom:699.133333pt;}
.y141{bottom:699.773333pt;}
.yfc{bottom:711.293333pt;}
.y5d{bottom:711.933333pt;}
.y95{bottom:712.573333pt;}
.yfb{bottom:723.613333pt;}
.y140{bottom:724.253333pt;}
.ybd{bottom:724.413333pt;}
.y5c{bottom:727.293333pt;}
.y94{bottom:727.933333pt;}
.y10{bottom:729.053333pt;}
.yfa{bottom:735.773333pt;}
.y13f{bottom:736.573333pt;}
.y5b{bottom:742.653333pt;}
.y93{bottom:743.293333pt;}
.yf9{bottom:748.093333pt;}
.y13e{bottom:748.733333pt;}
.y5a{bottom:758.013333pt;}
.y92{bottom:758.653333pt;}
.yf8{bottom:760.413333pt;}
.y13d{bottom:761.053333pt;}
.yf7{bottom:772.573333pt;}
.y59{bottom:773.213333pt;}
.y13c{bottom:773.373333pt;}
.y91{bottom:774.013333pt;}
.y16a{bottom:775.773333pt;}
.yf6{bottom:784.893333pt;}
.y13b{bottom:785.533333pt;}
.y58{bottom:788.573333pt;}
.y90{bottom:789.213333pt;}
.yf5{bottom:797.253333pt;}
.y13a{bottom:797.893333pt;}
.y57{bottom:803.973333pt;}
.y8f{bottom:804.613333pt;}
.yf4{bottom:809.413333pt;}
.y139{bottom:810.213333pt;}
.y56{bottom:819.333333pt;}
.y8e{bottom:819.973333pt;}
.yf3{bottom:821.733333pt;}
.ye{bottom:822.373333pt;}
.yf2{bottom:834.053333pt;}
.y55{bottom:834.693333pt;}
.y8d{bottom:835.333333pt;}
.yf1{bottom:846.213333pt;}
.y138{bottom:847.013333pt;}
.y54{bottom:850.053333pt;}
.yd{bottom:850.693333pt;}
.yf0{bottom:858.533333pt;}
.y137{bottom:859.173333pt;}
.y53{bottom:865.253333pt;}
.yc{bottom:866.053333pt;}
.yef{bottom:870.853333pt;}
.y136{bottom:871.493333pt;}
.yb{bottom:880.613333pt;}
.y8c{bottom:881.253333pt;}
.yee{bottom:883.013333pt;}
.y135{bottom:883.813333pt;}
.ya{bottom:893.573333pt;}
.yed{bottom:895.333333pt;}
.y52{bottom:895.973333pt;}
.y8b{bottom:896.613333pt;}
.yec{bottom:907.653333pt;}
.y134{bottom:908.293333pt;}
.y9{bottom:908.933333pt;}
.y51{bottom:911.333333pt;}
.y8a{bottom:911.973333pt;}
.yeb{bottom:919.813333pt;}
.y133{bottom:920.613333pt;}
.y8{bottom:924.293333pt;}
.y50{bottom:926.693333pt;}
.y89{bottom:927.333333pt;}
.yea{bottom:932.133333pt;}
.y132{bottom:932.773333pt;}
.y7{bottom:941.413333pt;}
.y4f{bottom:942.053333pt;}
.y88{bottom:942.693333pt;}
.ye9{bottom:944.453333pt;}
.y131{bottom:945.093333pt;}
.ye8{bottom:956.613333pt;}
.y4e{bottom:957.253333pt;}
.y130{bottom:957.413333pt;}
.y87{bottom:958.053333pt;}
.y6{bottom:965.893333pt;}
.ye7{bottom:968.933333pt;}
.y12f{bottom:969.573333pt;}
.y4d{bottom:972.613333pt;}
.y86{bottom:973.253333pt;}
.ye6{bottom:981.253333pt;}
.y12e{bottom:981.893333pt;}
.y4c{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.ye5{bottom:993.413333pt;}
.y12d{bottom:994.213333pt;}
.y4b{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.ye4{bottom:1005.733333pt;}
.y12c{bottom:1006.373333pt;}
.y2{bottom:1019.360000pt;}
.y85{bottom:1031.680000pt;}
.y4a{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h18{height:13.760000pt;}
.h12{height:15.200000pt;}
.h13{height:15.360000pt;}
.h1a{height:20.728125pt;}
.h7{height:23.360000pt;}
.h14{height:30.720000pt;}
.h6{height:42.084375pt;}
.hf{height:47.085938pt;}
.hc{height:47.109375pt;}
.h17{height:48.375000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h11{height:55.298750pt;}
.h8{height:62.812500pt;}
.h15{height:76.640000pt;}
.he{height:77.792000pt;}
.h5{height:85.785000pt;}
.h9{height:92.672000pt;}
.h10{height:100.800000pt;}
.h16{height:134.080000pt;}
.h19{height:152.026667pt;}
.hd{height:227.706667pt;}
.hb{height:242.586667pt;}
.ha{height:321.026667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.720000pt;}
.w8{width:26.560000pt;}
.w7{width:26.720000pt;}
.wa{width:31.360000pt;}
.w10{width:31.520000pt;}
.wf{width:31.552000pt;}
.wb{width:31.840000pt;}
.wc{width:32.000000pt;}
.w11{width:32.032000pt;}
.we{width:32.320000pt;}
.w12{width:32.480000pt;}
.wd{width:32.640000pt;}
.w16{width:128.320000pt;}
.w9{width:139.386667pt;}
.w15{width:176.506667pt;}
.w3{width:185.946667pt;}
.w13{width:190.906667pt;}
.w14{width:217.146667pt;}
.w5{width:385.026667pt;}
.w17{width:466.973333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x17{left:8.160000pt;}
.xa{left:9.440000pt;}
.x14{left:10.880000pt;}
.x1a{left:13.146667pt;}
.x23{left:15.520000pt;}
.x12{left:23.354667pt;}
.x2b{left:64.154667pt;}
.xc{left:94.720000pt;}
.x28{left:104.032000pt;}
.x7{left:111.552000pt;}
.x1{left:113.471988pt;}
.x29{left:117.114667pt;}
.x2c{left:121.114667pt;}
.x10{left:137.466655pt;}
.xf{left:139.866655pt;}
.x27{left:141.946655pt;}
.x26{left:151.226655pt;}
.xe{left:161.466655pt;}
.x2{left:204.666655pt;}
.x6{left:210.746655pt;}
.x2a{left:232.346667pt;}
.x13{left:252.866667pt;}
.x15{left:284.226667pt;}
.x3{left:285.506655pt;}
.x5{left:292.226655pt;}
.x9{left:297.506667pt;}
.x24{left:305.026667pt;}
.xb{left:316.226667pt;}
.x16{left:348.066667pt;}
.xd{left:377.826667pt;}
.x18{left:380.706667pt;}
.x4{left:406.466655pt;}
.x19{left:413.026667pt;}
.x1b{left:444.573333pt;}
.x1c{left:475.933333pt;}
.x1d{left:507.453333pt;}
.x25{left:522.173333pt;}
.x1e{left:538.973333pt;}
.x1f{left:570.333333pt;}
.x20{left:602.373333pt;}
.x21{left:634.693333pt;}
.x22{left:666.213333pt;}
.x11{left:672.773333pt;}
}




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