
    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_7daea91c19e009ce20a146cb.woff')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_193c9918db17b28be9cef993.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_791cdb97d834d75d85a33446.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_600a9db707db5ba64df452c7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_f18f81e69ce466bb52ac50a6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_25f7c32045f925f74a0c0865.woff')format("woff");}.ff6{font-family:ff6;line-height:1.102051;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_b232af00c1b5b83d20454f42.woff')format("woff");}.ff7{font-family:ff7;line-height:1.102051;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.984000px;}
.ls7{letter-spacing:-0.828000px;}
.lsb{letter-spacing:-0.204600px;}
.ls2{letter-spacing:-0.106800px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.048960px;}
.lsa{letter-spacing:0.057600px;}
.ls8{letter-spacing:0.097800px;}
.ls6{letter-spacing:0.146880px;}
.ls4{letter-spacing:13.241280px;}
.ls9{letter-spacing:23.040000px;}
.ls3{letter-spacing:44.201280px;}
.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;}
}
.ws4{word-spacing:-16.657800px;}
.ws3{word-spacing:-16.617600px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.453200px;}
.ws5{word-spacing:-16.355400px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-4.504320px;}
._d{margin-left:-3.444480px;}
._a{margin-left:-2.384640px;}
._0{margin-left:-1.192320px;}
._4{width:1.059840px;}
._5{width:2.185920px;}
._3{width:4.051680px;}
._2{width:5.564160px;}
._10{width:6.575040px;}
._1{width:7.617600px;}
._6{width:9.141120px;}
._7{width:10.664640px;}
._15{width:11.724480px;}
._11{width:13.446720px;}
._12{width:14.506560px;}
._1c{width:15.513600px;}
._e{width:18.083520px;}
._13{width:19.805760px;}
._14{width:20.998080px;}
._16{width:22.624800px;}
._17{width:23.941920px;}
._18{width:25.833600px;}
._1d{width:26.893440px;}
._21{width:28.085760px;}
._1e{width:36.233280px;}
._1f{width:56.105280px;}
._20{width:57.662880px;}
._9{width:67.680000px;}
._1a{width:78.891840px;}
._1b{width:80.586720px;}
._8{width:111.576000px;}
._f{width:113.016000px;}
._c{width:131.016000px;}
._19{width:195.840000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y57{bottom:16.200000px;}
.y44{bottom:16.380000px;}
.y5a{bottom:16.410000px;}
.ya4{bottom:29.160000px;}
.y92{bottom:29.340000px;}
.y98{bottom:34.740000px;}
.y52{bottom:34.920000px;}
.y56{bottom:46.800000px;}
.ybe{bottom:46.830000px;}
.y47{bottom:46.980000px;}
.ya3{bottom:47.700000px;}
.y91{bottom:59.940000px;}
.y97{bottom:65.340000px;}
.y51{bottom:65.520000px;}
.ya2{bottom:66.240000px;}
.y6{bottom:71.316000px;}
.y54{bottom:77.400000px;}
.y46{bottom:77.580000px;}
.y96{bottom:83.880000px;}
.ya0{bottom:84.780000px;}
.y90{bottom:90.540000px;}
.y50{bottom:95.940000px;}
.y9d{bottom:96.120000px;}
.y5{bottom:104.976000px;}
.y53{bottom:108.000000px;}
.yd5{bottom:108.030000px;}
.yd8{bottom:108.045000px;}
.y95{bottom:114.480000px;}
.y8f{bottom:121.140000px;}
.y4{bottom:125.136000px;}
.y4f{bottom:126.540000px;}
.y9c{bottom:126.720000px;}
.y94{bottom:133.020000px;}
.y3{bottom:144.936000px;}
.yb3{bottom:145.080000px;}
.y8e{bottom:151.560000px;}
.ybc{bottom:151.785000px;}
.y9b{bottom:157.185000px;}
.y93{bottom:163.620000px;}
.yb2{bottom:163.665000px;}
.y2{bottom:163.830000px;}
.y8d{bottom:182.160000px;}
.ybb{bottom:182.205000px;}
.y106{bottom:184.890000px;}
.y48{bottom:187.770000px;}
.y35{bottom:189.390000px;}
.ya5{bottom:189.570000px;}
.y9e{bottom:190.110000px;}
.yb1{bottom:194.265000px;}
.yd9{bottom:196.050000px;}
.y86{bottom:202.530000px;}
.y13d{bottom:202.890000px;}
.y105{bottom:203.430000px;}
.y14f{bottom:205.050000px;}
.y9a{bottom:205.770000px;}
.y34{bottom:207.930000px;}
.y8c{bottom:212.790000px;}
.yba{bottom:212.805000px;}
.y58{bottom:219.090000px;}
.y85{bottom:221.070000px;}
.y104{bottom:221.970000px;}
.yb0{bottom:224.865000px;}
.y33{bottom:226.470000px;}
.y11d{bottom:236.550000px;}
.y14e{bottom:237.990000px;}
.y13c{bottom:239.430000px;}
.y84{bottom:239.610000px;}
.y103{bottom:240.510000px;}
.yb9{bottom:243.405000px;}
.y32{bottom:245.010000px;}
.y11c{bottom:255.090000px;}
.yaf{bottom:255.465000px;}
.yd7{bottom:257.970000px;}
.y83{bottom:258.150000px;}
.y31{bottom:263.550000px;}
.y14d{bottom:271.110000px;}
.yb8{bottom:274.005000px;}
.y13b{bottom:276.510000px;}
.y102{bottom:277.050000px;}
.y30{bottom:282.090000px;}
.yae{bottom:285.885000px;}
.y11b{bottom:291.810000px;}
.y82{bottom:294.690000px;}
.y2f{bottom:300.810000px;}
.y14c{bottom:304.050000px;}
.yb7{bottom:304.605000px;}
.y11a{bottom:310.350000px;}
.y13a{bottom:313.050000px;}
.y101{bottom:313.590000px;}
.yad{bottom:316.485000px;}
.y2e{bottom:319.350000px;}
.y81{bottom:331.230000px;}
.y139{bottom:331.590000px;}
.y100{bottom:332.310000px;}
.yb6{bottom:335.025000px;}
.y14b{bottom:337.035000px;}
.y2d{bottom:337.935000px;}
.y55{bottom:342.255000px;}
.y119{bottom:346.935000px;}
.yac{bottom:347.085000px;}
.y80{bottom:349.815000px;}
.yff{bottom:350.895000px;}
.y2c{bottom:365.475000px;}
.yb5{bottom:365.625000px;}
.y138{bottom:368.355000px;}
.y7f{bottom:368.535000px;}
.yfe{bottom:369.435000px;}
.y14a{bottom:369.975000px;}
.yab{bottom:377.685000px;}
.y99{bottom:378.075000px;}
.yd6{bottom:380.955000px;}
.y118{bottom:384.015000px;}
.y137{bottom:386.895000px;}
.y7e{bottom:387.075000px;}
.yfd{bottom:387.975000px;}
.yb4{bottom:396.225000px;}
.y2b{bottom:402.015000px;}
.y149{bottom:402.915000px;}
.y136{bottom:405.435000px;}
.y7d{bottom:405.615000px;}
.yfc{bottom:406.515000px;}
.yaa{bottom:408.285000px;}
.y8b{bottom:409.395000px;}
.y4d{bottom:410.265000px;}
.y2a{bottom:420.555000px;}
.y7c{bottom:424.155000px;}
.yfb{bottom:425.055000px;}
.ya9{bottom:426.855000px;}
.y4c{bottom:428.835000px;}
.y148{bottom:435.855000px;}
.y29{bottom:439.095000px;}
.y135{bottom:441.975000px;}
.y7b{bottom:442.695000px;}
.yfa{bottom:443.595000px;}
.y4b{bottom:447.375000px;}
.ya8{bottom:457.275000px;}
.y28{bottom:457.635000px;}
.y134{bottom:460.515000px;}
.y7a{bottom:461.235000px;}
.yf9{bottom:462.135000px;}
.y4e{bottom:465.195000px;}
.y4a{bottom:465.915000px;}
.y147{bottom:468.795000px;}
.y27{bottom:476.355000px;}
.y133{bottom:479.055000px;}
.yf8{bottom:480.855000px;}
.ya7{bottom:487.875000px;}
.y117{bottom:494.355000px;}
.y26{bottom:494.895000px;}
.y49{bottom:496.515000px;}
.y79{bottom:497.775000px;}
.yf7{bottom:499.395000px;}
.y146{bottom:501.735000px;}
.yd4{bottom:504.075000px;}
.y116{bottom:512.895000px;}
.y25{bottom:513.435000px;}
.y132{bottom:515.595000px;}
.yf6{bottom:517.935000px;}
.ya6{bottom:518.475000px;}
.y115{bottom:531.435000px;}
.y24{bottom:531.975000px;}
.y131{bottom:534.135000px;}
.y78{bottom:534.315000px;}
.y145{bottom:534.855000px;}
.yf5{bottom:536.475000px;}
.y23{bottom:550.515000px;}
.y130{bottom:552.855000px;}
.y77{bottom:553.035000px;}
.yf4{bottom:555.015000px;}
.y144{bottom:567.795000px;}
.y114{bottom:567.975000px;}
.y22{bottom:569.055000px;}
.y76{bottom:571.575000px;}
.yf3{bottom:582.555000px;}
.y113{bottom:586.515000px;}
.y21{bottom:587.595000px;}
.y12f{bottom:589.395000px;}
.y75{bottom:590.115000px;}
.y143{bottom:600.735000px;}
.y112{bottom:605.085000px;}
.y45{bottom:606.705000px;}
.y12e{bottom:607.965000px;}
.y74{bottom:608.685000px;}
.yf2{bottom:619.125000px;}
.y111{bottom:623.625000px;}
.y20{bottom:624.165000px;}
.y12d{bottom:626.505000px;}
.yd2{bottom:627.045000px;}
.y73{bottom:627.225000px;}
.y142{bottom:633.705000px;}
.y8a{bottom:637.125000px;}
.yf1{bottom:637.665000px;}
.y1f{bottom:642.885000px;}
.y12c{bottom:645.045000px;}
.y72{bottom:645.765000px;}
.yf0{bottom:656.385000px;}
.yd3{bottom:658.365000px;}
.y110{bottom:660.165000px;}
.y1e{bottom:661.425000px;}
.y71{bottom:664.305000px;}
.y141{bottom:666.645000px;}
.y89{bottom:668.445000px;}
.yef{bottom:674.925000px;}
.y10f{bottom:678.885000px;}
.y1d{bottom:679.965000px;}
.y12b{bottom:681.585000px;}
.y70{bottom:682.845000px;}
.yee{bottom:693.465000px;}
.yd1{bottom:694.725000px;}
.y10e{bottom:697.425000px;}
.y1c{bottom:698.505000px;}
.y43{bottom:699.225000px;}
.y140{bottom:699.585000px;}
.y12a{bottom:700.125000px;}
.y6f{bottom:701.565000px;}
.yed{bottom:712.005000px;}
.yd0{bottom:713.265000px;}
.y10d{bottom:715.965000px;}
.y1b{bottom:717.045000px;}
.y13f{bottom:718.125000px;}
.y129{bottom:718.665000px;}
.y6e{bottom:720.105000px;}
.y9f{bottom:722.985000px;}
.yec{bottom:730.545000px;}
.ycf{bottom:731.805000px;}
.y10c{bottom:734.505000px;}
.y1a{bottom:735.585000px;}
.y13e{bottom:736.665000px;}
.y6d{bottom:738.645000px;}
.yeb{bottom:749.085000px;}
.yce{bottom:750.345000px;}
.y10b{bottom:753.045000px;}
.y19{bottom:754.125000px;}
.y128{bottom:755.385000px;}
.y6c{bottom:757.185000px;}
.yea{bottom:767.625000px;}
.ycd{bottom:769.065000px;}
.y10a{bottom:771.585000px;}
.y18{bottom:772.665000px;}
.ya1{bottom:772.845000px;}
.y127{bottom:773.925000px;}
.y6b{bottom:775.725000px;}
.ye9{bottom:786.165000px;}
.ycc{bottom:787.605000px;}
.y109{bottom:790.125000px;}
.y42{bottom:790.665000px;}
.y88{bottom:791.385000px;}
.y6a{bottom:803.265000px;}
.ye8{bottom:804.885000px;}
.ycb{bottom:806.145000px;}
.y108{bottom:808.665000px;}
.y17{bottom:809.385000px;}
.y126{bottom:810.465000px;}
.ye7{bottom:823.425000px;}
.yca{bottom:824.685000px;}
.y107{bottom:827.385000px;}
.y41{bottom:827.925000px;}
.y125{bottom:829.005000px;}
.y69{bottom:839.805000px;}
.ye6{bottom:841.965000px;}
.yc9{bottom:843.225000px;}
.y16{bottom:845.925000px;}
.y40{bottom:846.465000px;}
.y124{bottom:847.545000px;}
.y68{bottom:858.345000px;}
.ye5{bottom:860.505000px;}
.yc8{bottom:861.765000px;}
.y15{bottom:864.465000px;}
.y3f{bottom:865.005000px;}
.y123{bottom:866.085000px;}
.y67{bottom:877.110000px;}
.ye4{bottom:879.090000px;}
.yc7{bottom:880.350000px;}
.y14{bottom:883.050000px;}
.y3e{bottom:883.590000px;}
.y66{bottom:895.650000px;}
.ye3{bottom:897.630000px;}
.yc6{bottom:898.890000px;}
.y13{bottom:901.590000px;}
.y3d{bottom:902.130000px;}
.y122{bottom:902.670000px;}
.y65{bottom:914.190000px;}
.ye2{bottom:916.170000px;}
.yc5{bottom:917.610000px;}
.y12{bottom:920.130000px;}
.y121{bottom:921.210000px;}
.y64{bottom:932.730000px;}
.ye1{bottom:934.710000px;}
.yc4{bottom:936.150000px;}
.y11{bottom:938.670000px;}
.y63{bottom:951.270000px;}
.ye0{bottom:953.430000px;}
.yc3{bottom:954.690000px;}
.y10{bottom:957.210000px;}
.y120{bottom:957.930000px;}
.y62{bottom:969.810000px;}
.ydf{bottom:971.970000px;}
.yc2{bottom:973.230000px;}
.yf{bottom:975.930000px;}
.y11f{bottom:976.470000px;}
.y61{bottom:988.350000px;}
.yde{bottom:990.510000px;}
.yc1{bottom:991.770000px;}
.y3c{bottom:993.930000px;}
.ye{bottom:994.470000px;}
.y11e{bottom:995.010000px;}
.y60{bottom:1006.890000px;}
.ydd{bottom:1009.050000px;}
.yc0{bottom:1010.310000px;}
.y3b{bottom:1012.470000px;}
.yd{bottom:1013.010000px;}
.y5f{bottom:1025.610000px;}
.ydc{bottom:1027.590000px;}
.y3a{bottom:1031.010000px;}
.yc{bottom:1031.550000px;}
.ydb{bottom:1043.250000px;}
.y5e{bottom:1044.150000px;}
.ybf{bottom:1046.850000px;}
.y39{bottom:1049.550000px;}
.yb{bottom:1050.090000px;}
.y5d{bottom:1062.690000px;}
.y38{bottom:1068.090000px;}
.ya{bottom:1068.630000px;}
.y5c{bottom:1081.230000px;}
.y37{bottom:1086.630000px;}
.y87{bottom:1087.170000px;}
.yda{bottom:1093.110000px;}
.ybd{bottom:1094.010000px;}
.y9{bottom:1096.170000px;}
.y36{bottom:1105.170000px;}
.y5b{bottom:1108.770000px;}
.y8{bottom:1123.710000px;}
.y59{bottom:1124.430000px;}
.y7{bottom:1142.460000px;}
.y1{bottom:1194.300000px;}
.hf{height:30.420000px;}
.h7{height:30.600000px;}
.hd{height:30.636000px;}
.h12{height:49.140000px;}
.h4{height:55.501875px;}
.h5{height:56.019375px;}
.h3{height:56.957344px;}
.h2{height:57.410156px;}
.h14{height:61.056000px;}
.h16{height:61.200000px;}
.h15{height:61.920000px;}
.h6{height:69.086250px;}
.h8{height:91.800000px;}
.h11{height:99.000000px;}
.hb{height:122.220000px;}
.hc{height:122.256000px;}
.ha{height:140.796000px;}
.h10{height:171.390000px;}
.he{height:227.010000px;}
.h9{height:510.735000px;}
.h13{height:532.695000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:62.640000px;}
.w14{width:63.000000px;}
.w15{width:63.036000px;}
.w16{width:63.180000px;}
.w10{width:73.620000px;}
.w3{width:84.060000px;}
.w11{width:84.420000px;}
.wf{width:94.536000px;}
.wb{width:115.416000px;}
.w9{width:130.500000px;}
.wa{width:145.296000px;}
.w8{width:157.530000px;}
.we{width:158.760000px;}
.w5{width:187.230000px;}
.w12{width:254.010000px;}
.w7{width:261.615000px;}
.w6{width:288.750000px;}
.wd{width:296.535000px;}
.w4{width:339.555000px;}
.w13{width:445.935000px;}
.wc{width:551.085000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.380000px;}
.x2b{left:8.640000px;}
.x3e{left:10.440000px;}
.x2c{left:11.880000px;}
.x2d{left:14.580000px;}
.x2f{left:15.840000px;}
.x30{left:23.400000px;}
.x31{left:24.840000px;}
.x37{left:28.260000px;}
.x3b{left:31.500000px;}
.x13{left:39.645000px;}
.x29{left:47.340000px;}
.x22{left:59.940000px;}
.x1c{left:67.680000px;}
.x20{left:70.230000px;}
.x1e{left:75.420000px;}
.x1d{left:79.020000px;}
.x21{left:82.440000px;}
.x32{left:87.300000px;}
.x1f{left:91.794000px;}
.x35{left:96.156000px;}
.x36{left:97.380000px;}
.x3d{left:108.534000px;}
.x33{left:109.980000px;}
.x19{left:111.990000px;}
.x17{left:118.614000px;}
.xc{left:122.795987px;}
.x3{left:127.655987px;}
.x16{left:128.736000px;}
.x5{left:159.509987px;}
.xf{left:160.590000px;}
.x3c{left:165.414000px;}
.x4{left:167.249987px;}
.x27{left:170.850000px;}
.x3f{left:180.749987px;}
.x25{left:206.130000px;}
.x24{left:213.870000px;}
.x23{left:236.919000px;}
.x11{left:245.370000px;}
.x1a{left:286.995000px;}
.xe{left:304.094987px;}
.x9{left:316.334987px;}
.x15{left:320.294987px;}
.x26{left:329.834987px;}
.x34{left:344.774987px;}
.x8{left:360.794987px;}
.x6{left:368.174987px;}
.xb{left:376.094987px;}
.x7{left:379.694987px;}
.xa{left:384.914987px;}
.x18{left:418.215000px;}
.x2{left:430.454987px;}
.x14{left:431.714987px;}
.xd{left:434.594987px;}
.x1{left:446.474987px;}
.x28{left:468.285000px;}
.x2e{left:542.625000px;}
.x1b{left:564.405000px;}
.x12{left:585.645000px;}
.x38{left:606.705000px;}
.x2a{left:627.765000px;}
.x39{left:670.470000px;}
.x3a{left:734.370000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.874667pt;}
.ls7{letter-spacing:-0.736000pt;}
.lsb{letter-spacing:-0.181867pt;}
.ls2{letter-spacing:-0.094933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.043520pt;}
.lsa{letter-spacing:0.051200pt;}
.ls8{letter-spacing:0.086933pt;}
.ls6{letter-spacing:0.130560pt;}
.ls4{letter-spacing:11.770027pt;}
.ls9{letter-spacing:20.480000pt;}
.ls3{letter-spacing:39.290027pt;}
.ws4{word-spacing:-14.806933pt;}
.ws3{word-spacing:-14.771200pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.625067pt;}
.ws5{word-spacing:-14.538133pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-4.003840pt;}
._d{margin-left:-3.061760pt;}
._a{margin-left:-2.119680pt;}
._0{margin-left:-1.059840pt;}
._4{width:0.942080pt;}
._5{width:1.943040pt;}
._3{width:3.601493pt;}
._2{width:4.945920pt;}
._10{width:5.844480pt;}
._1{width:6.771200pt;}
._6{width:8.125440pt;}
._7{width:9.479680pt;}
._15{width:10.421760pt;}
._11{width:11.952640pt;}
._12{width:12.894720pt;}
._1c{width:13.789867pt;}
._e{width:16.074240pt;}
._13{width:17.605120pt;}
._14{width:18.664960pt;}
._16{width:20.110933pt;}
._17{width:21.281707pt;}
._18{width:22.963200pt;}
._1d{width:23.905280pt;}
._21{width:24.965120pt;}
._1e{width:32.207360pt;}
._1f{width:49.871360pt;}
._20{width:51.255893pt;}
._9{width:60.160000pt;}
._1a{width:70.126080pt;}
._1b{width:71.632640pt;}
._8{width:99.178667pt;}
._f{width:100.458667pt;}
._c{width:116.458667pt;}
._19{width:174.080000pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:14.400000pt;}
.y44{bottom:14.560000pt;}
.y5a{bottom:14.586667pt;}
.ya4{bottom:25.920000pt;}
.y92{bottom:26.080000pt;}
.y98{bottom:30.880000pt;}
.y52{bottom:31.040000pt;}
.y56{bottom:41.600000pt;}
.ybe{bottom:41.626667pt;}
.y47{bottom:41.760000pt;}
.ya3{bottom:42.400000pt;}
.y91{bottom:53.280000pt;}
.y97{bottom:58.080000pt;}
.y51{bottom:58.240000pt;}
.ya2{bottom:58.880000pt;}
.y6{bottom:63.392000pt;}
.y54{bottom:68.800000pt;}
.y46{bottom:68.960000pt;}
.y96{bottom:74.560000pt;}
.ya0{bottom:75.360000pt;}
.y90{bottom:80.480000pt;}
.y50{bottom:85.280000pt;}
.y9d{bottom:85.440000pt;}
.y5{bottom:93.312000pt;}
.y53{bottom:96.000000pt;}
.yd5{bottom:96.026667pt;}
.yd8{bottom:96.040000pt;}
.y95{bottom:101.760000pt;}
.y8f{bottom:107.680000pt;}
.y4{bottom:111.232000pt;}
.y4f{bottom:112.480000pt;}
.y9c{bottom:112.640000pt;}
.y94{bottom:118.240000pt;}
.y3{bottom:128.832000pt;}
.yb3{bottom:128.960000pt;}
.y8e{bottom:134.720000pt;}
.ybc{bottom:134.920000pt;}
.y9b{bottom:139.720000pt;}
.y93{bottom:145.440000pt;}
.yb2{bottom:145.480000pt;}
.y2{bottom:145.626667pt;}
.y8d{bottom:161.920000pt;}
.ybb{bottom:161.960000pt;}
.y106{bottom:164.346667pt;}
.y48{bottom:166.906667pt;}
.y35{bottom:168.346667pt;}
.ya5{bottom:168.506667pt;}
.y9e{bottom:168.986667pt;}
.yb1{bottom:172.680000pt;}
.yd9{bottom:174.266667pt;}
.y86{bottom:180.026667pt;}
.y13d{bottom:180.346667pt;}
.y105{bottom:180.826667pt;}
.y14f{bottom:182.266667pt;}
.y9a{bottom:182.906667pt;}
.y34{bottom:184.826667pt;}
.y8c{bottom:189.146667pt;}
.yba{bottom:189.160000pt;}
.y58{bottom:194.746667pt;}
.y85{bottom:196.506667pt;}
.y104{bottom:197.306667pt;}
.yb0{bottom:199.880000pt;}
.y33{bottom:201.306667pt;}
.y11d{bottom:210.266667pt;}
.y14e{bottom:211.546667pt;}
.y13c{bottom:212.826667pt;}
.y84{bottom:212.986667pt;}
.y103{bottom:213.786667pt;}
.yb9{bottom:216.360000pt;}
.y32{bottom:217.786667pt;}
.y11c{bottom:226.746667pt;}
.yaf{bottom:227.080000pt;}
.yd7{bottom:229.306667pt;}
.y83{bottom:229.466667pt;}
.y31{bottom:234.266667pt;}
.y14d{bottom:240.986667pt;}
.yb8{bottom:243.560000pt;}
.y13b{bottom:245.786667pt;}
.y102{bottom:246.266667pt;}
.y30{bottom:250.746667pt;}
.yae{bottom:254.120000pt;}
.y11b{bottom:259.386667pt;}
.y82{bottom:261.946667pt;}
.y2f{bottom:267.386667pt;}
.y14c{bottom:270.266667pt;}
.yb7{bottom:270.760000pt;}
.y11a{bottom:275.866667pt;}
.y13a{bottom:278.266667pt;}
.y101{bottom:278.746667pt;}
.yad{bottom:281.320000pt;}
.y2e{bottom:283.866667pt;}
.y81{bottom:294.426667pt;}
.y139{bottom:294.746667pt;}
.y100{bottom:295.386667pt;}
.yb6{bottom:297.800000pt;}
.y14b{bottom:299.586667pt;}
.y2d{bottom:300.386667pt;}
.y55{bottom:304.226667pt;}
.y119{bottom:308.386667pt;}
.yac{bottom:308.520000pt;}
.y80{bottom:310.946667pt;}
.yff{bottom:311.906667pt;}
.y2c{bottom:324.866667pt;}
.yb5{bottom:325.000000pt;}
.y138{bottom:327.426667pt;}
.y7f{bottom:327.586667pt;}
.yfe{bottom:328.386667pt;}
.y14a{bottom:328.866667pt;}
.yab{bottom:335.720000pt;}
.y99{bottom:336.066667pt;}
.yd6{bottom:338.626667pt;}
.y118{bottom:341.346667pt;}
.y137{bottom:343.906667pt;}
.y7e{bottom:344.066667pt;}
.yfd{bottom:344.866667pt;}
.yb4{bottom:352.200000pt;}
.y2b{bottom:357.346667pt;}
.y149{bottom:358.146667pt;}
.y136{bottom:360.386667pt;}
.y7d{bottom:360.546667pt;}
.yfc{bottom:361.346667pt;}
.yaa{bottom:362.920000pt;}
.y8b{bottom:363.906667pt;}
.y4d{bottom:364.680000pt;}
.y2a{bottom:373.826667pt;}
.y7c{bottom:377.026667pt;}
.yfb{bottom:377.826667pt;}
.ya9{bottom:379.426667pt;}
.y4c{bottom:381.186667pt;}
.y148{bottom:387.426667pt;}
.y29{bottom:390.306667pt;}
.y135{bottom:392.866667pt;}
.y7b{bottom:393.506667pt;}
.yfa{bottom:394.306667pt;}
.y4b{bottom:397.666667pt;}
.ya8{bottom:406.466667pt;}
.y28{bottom:406.786667pt;}
.y134{bottom:409.346667pt;}
.y7a{bottom:409.986667pt;}
.yf9{bottom:410.786667pt;}
.y4e{bottom:413.506667pt;}
.y4a{bottom:414.146667pt;}
.y147{bottom:416.706667pt;}
.y27{bottom:423.426667pt;}
.y133{bottom:425.826667pt;}
.yf8{bottom:427.426667pt;}
.ya7{bottom:433.666667pt;}
.y117{bottom:439.426667pt;}
.y26{bottom:439.906667pt;}
.y49{bottom:441.346667pt;}
.y79{bottom:442.466667pt;}
.yf7{bottom:443.906667pt;}
.y146{bottom:445.986667pt;}
.yd4{bottom:448.066667pt;}
.y116{bottom:455.906667pt;}
.y25{bottom:456.386667pt;}
.y132{bottom:458.306667pt;}
.yf6{bottom:460.386667pt;}
.ya6{bottom:460.866667pt;}
.y115{bottom:472.386667pt;}
.y24{bottom:472.866667pt;}
.y131{bottom:474.786667pt;}
.y78{bottom:474.946667pt;}
.y145{bottom:475.426667pt;}
.yf5{bottom:476.866667pt;}
.y23{bottom:489.346667pt;}
.y130{bottom:491.426667pt;}
.y77{bottom:491.586667pt;}
.yf4{bottom:493.346667pt;}
.y144{bottom:504.706667pt;}
.y114{bottom:504.866667pt;}
.y22{bottom:505.826667pt;}
.y76{bottom:508.066667pt;}
.yf3{bottom:517.826667pt;}
.y113{bottom:521.346667pt;}
.y21{bottom:522.306667pt;}
.y12f{bottom:523.906667pt;}
.y75{bottom:524.546667pt;}
.y143{bottom:533.986667pt;}
.y112{bottom:537.853333pt;}
.y45{bottom:539.293333pt;}
.y12e{bottom:540.413333pt;}
.y74{bottom:541.053333pt;}
.yf2{bottom:550.333333pt;}
.y111{bottom:554.333333pt;}
.y20{bottom:554.813333pt;}
.y12d{bottom:556.893333pt;}
.yd2{bottom:557.373333pt;}
.y73{bottom:557.533333pt;}
.y142{bottom:563.293333pt;}
.y8a{bottom:566.333333pt;}
.yf1{bottom:566.813333pt;}
.y1f{bottom:571.453333pt;}
.y12c{bottom:573.373333pt;}
.y72{bottom:574.013333pt;}
.yf0{bottom:583.453333pt;}
.yd3{bottom:585.213333pt;}
.y110{bottom:586.813333pt;}
.y1e{bottom:587.933333pt;}
.y71{bottom:590.493333pt;}
.y141{bottom:592.573333pt;}
.y89{bottom:594.173333pt;}
.yef{bottom:599.933333pt;}
.y10f{bottom:603.453333pt;}
.y1d{bottom:604.413333pt;}
.y12b{bottom:605.853333pt;}
.y70{bottom:606.973333pt;}
.yee{bottom:616.413333pt;}
.yd1{bottom:617.533333pt;}
.y10e{bottom:619.933333pt;}
.y1c{bottom:620.893333pt;}
.y43{bottom:621.533333pt;}
.y140{bottom:621.853333pt;}
.y12a{bottom:622.333333pt;}
.y6f{bottom:623.613333pt;}
.yed{bottom:632.893333pt;}
.yd0{bottom:634.013333pt;}
.y10d{bottom:636.413333pt;}
.y1b{bottom:637.373333pt;}
.y13f{bottom:638.333333pt;}
.y129{bottom:638.813333pt;}
.y6e{bottom:640.093333pt;}
.y9f{bottom:642.653333pt;}
.yec{bottom:649.373333pt;}
.ycf{bottom:650.493333pt;}
.y10c{bottom:652.893333pt;}
.y1a{bottom:653.853333pt;}
.y13e{bottom:654.813333pt;}
.y6d{bottom:656.573333pt;}
.yeb{bottom:665.853333pt;}
.yce{bottom:666.973333pt;}
.y10b{bottom:669.373333pt;}
.y19{bottom:670.333333pt;}
.y128{bottom:671.453333pt;}
.y6c{bottom:673.053333pt;}
.yea{bottom:682.333333pt;}
.ycd{bottom:683.613333pt;}
.y10a{bottom:685.853333pt;}
.y18{bottom:686.813333pt;}
.ya1{bottom:686.973333pt;}
.y127{bottom:687.933333pt;}
.y6b{bottom:689.533333pt;}
.ye9{bottom:698.813333pt;}
.ycc{bottom:700.093333pt;}
.y109{bottom:702.333333pt;}
.y42{bottom:702.813333pt;}
.y88{bottom:703.453333pt;}
.y6a{bottom:714.013333pt;}
.ye8{bottom:715.453333pt;}
.ycb{bottom:716.573333pt;}
.y108{bottom:718.813333pt;}
.y17{bottom:719.453333pt;}
.y126{bottom:720.413333pt;}
.ye7{bottom:731.933333pt;}
.yca{bottom:733.053333pt;}
.y107{bottom:735.453333pt;}
.y41{bottom:735.933333pt;}
.y125{bottom:736.893333pt;}
.y69{bottom:746.493333pt;}
.ye6{bottom:748.413333pt;}
.yc9{bottom:749.533333pt;}
.y16{bottom:751.933333pt;}
.y40{bottom:752.413333pt;}
.y124{bottom:753.373333pt;}
.y68{bottom:762.973333pt;}
.ye5{bottom:764.893333pt;}
.yc8{bottom:766.013333pt;}
.y15{bottom:768.413333pt;}
.y3f{bottom:768.893333pt;}
.y123{bottom:769.853333pt;}
.y67{bottom:779.653333pt;}
.ye4{bottom:781.413333pt;}
.yc7{bottom:782.533333pt;}
.y14{bottom:784.933333pt;}
.y3e{bottom:785.413333pt;}
.y66{bottom:796.133333pt;}
.ye3{bottom:797.893333pt;}
.yc6{bottom:799.013333pt;}
.y13{bottom:801.413333pt;}
.y3d{bottom:801.893333pt;}
.y122{bottom:802.373333pt;}
.y65{bottom:812.613333pt;}
.ye2{bottom:814.373333pt;}
.yc5{bottom:815.653333pt;}
.y12{bottom:817.893333pt;}
.y121{bottom:818.853333pt;}
.y64{bottom:829.093333pt;}
.ye1{bottom:830.853333pt;}
.yc4{bottom:832.133333pt;}
.y11{bottom:834.373333pt;}
.y63{bottom:845.573333pt;}
.ye0{bottom:847.493333pt;}
.yc3{bottom:848.613333pt;}
.y10{bottom:850.853333pt;}
.y120{bottom:851.493333pt;}
.y62{bottom:862.053333pt;}
.ydf{bottom:863.973333pt;}
.yc2{bottom:865.093333pt;}
.yf{bottom:867.493333pt;}
.y11f{bottom:867.973333pt;}
.y61{bottom:878.533333pt;}
.yde{bottom:880.453333pt;}
.yc1{bottom:881.573333pt;}
.y3c{bottom:883.493333pt;}
.ye{bottom:883.973333pt;}
.y11e{bottom:884.453333pt;}
.y60{bottom:895.013333pt;}
.ydd{bottom:896.933333pt;}
.yc0{bottom:898.053333pt;}
.y3b{bottom:899.973333pt;}
.yd{bottom:900.453333pt;}
.y5f{bottom:911.653333pt;}
.ydc{bottom:913.413333pt;}
.y3a{bottom:916.453333pt;}
.yc{bottom:916.933333pt;}
.ydb{bottom:927.333333pt;}
.y5e{bottom:928.133333pt;}
.ybf{bottom:930.533333pt;}
.y39{bottom:932.933333pt;}
.yb{bottom:933.413333pt;}
.y5d{bottom:944.613333pt;}
.y38{bottom:949.413333pt;}
.ya{bottom:949.893333pt;}
.y5c{bottom:961.093333pt;}
.y37{bottom:965.893333pt;}
.y87{bottom:966.373333pt;}
.yda{bottom:971.653333pt;}
.ybd{bottom:972.453333pt;}
.y9{bottom:974.373333pt;}
.y36{bottom:982.373333pt;}
.y5b{bottom:985.573333pt;}
.y8{bottom:998.853333pt;}
.y59{bottom:999.493333pt;}
.y7{bottom:1015.520000pt;}
.y1{bottom:1061.600000pt;}
.hf{height:27.040000pt;}
.h7{height:27.200000pt;}
.hd{height:27.232000pt;}
.h12{height:43.680000pt;}
.h4{height:49.335000pt;}
.h5{height:49.795000pt;}
.h3{height:50.628750pt;}
.h2{height:51.031250pt;}
.h14{height:54.272000pt;}
.h16{height:54.400000pt;}
.h15{height:55.040000pt;}
.h6{height:61.410000pt;}
.h8{height:81.600000pt;}
.h11{height:88.000000pt;}
.hb{height:108.640000pt;}
.hc{height:108.672000pt;}
.ha{height:125.152000pt;}
.h10{height:152.346667pt;}
.he{height:201.786667pt;}
.h9{height:453.986667pt;}
.h13{height:473.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:55.680000pt;}
.w14{width:56.000000pt;}
.w15{width:56.032000pt;}
.w16{width:56.160000pt;}
.w10{width:65.440000pt;}
.w3{width:74.720000pt;}
.w11{width:75.040000pt;}
.wf{width:84.032000pt;}
.wb{width:102.592000pt;}
.w9{width:116.000000pt;}
.wa{width:129.152000pt;}
.w8{width:140.026667pt;}
.we{width:141.120000pt;}
.w5{width:166.426667pt;}
.w12{width:225.786667pt;}
.w7{width:232.546667pt;}
.w6{width:256.666667pt;}
.wd{width:263.586667pt;}
.w4{width:301.826667pt;}
.w13{width:396.386667pt;}
.wc{width:489.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.560000pt;}
.x2b{left:7.680000pt;}
.x3e{left:9.280000pt;}
.x2c{left:10.560000pt;}
.x2d{left:12.960000pt;}
.x2f{left:14.080000pt;}
.x30{left:20.800000pt;}
.x31{left:22.080000pt;}
.x37{left:25.120000pt;}
.x3b{left:28.000000pt;}
.x13{left:35.240000pt;}
.x29{left:42.080000pt;}
.x22{left:53.280000pt;}
.x1c{left:60.160000pt;}
.x20{left:62.426667pt;}
.x1e{left:67.040000pt;}
.x1d{left:70.240000pt;}
.x21{left:73.280000pt;}
.x32{left:77.600000pt;}
.x1f{left:81.594667pt;}
.x35{left:85.472000pt;}
.x36{left:86.560000pt;}
.x3d{left:96.474667pt;}
.x33{left:97.760000pt;}
.x19{left:99.546667pt;}
.x17{left:105.434667pt;}
.xc{left:109.151988pt;}
.x3{left:113.471988pt;}
.x16{left:114.432000pt;}
.x5{left:141.786655pt;}
.xf{left:142.746667pt;}
.x3c{left:147.034667pt;}
.x4{left:148.666655pt;}
.x27{left:151.866667pt;}
.x3f{left:160.666655pt;}
.x25{left:183.226667pt;}
.x24{left:190.106667pt;}
.x23{left:210.594667pt;}
.x11{left:218.106667pt;}
.x1a{left:255.106667pt;}
.xe{left:270.306655pt;}
.x9{left:281.186655pt;}
.x15{left:284.706655pt;}
.x26{left:293.186655pt;}
.x34{left:306.466655pt;}
.x8{left:320.706655pt;}
.x6{left:327.266655pt;}
.xb{left:334.306655pt;}
.x7{left:337.506655pt;}
.xa{left:342.146655pt;}
.x18{left:371.746667pt;}
.x2{left:382.626655pt;}
.x14{left:383.746655pt;}
.xd{left:386.306655pt;}
.x1{left:396.866655pt;}
.x28{left:416.253333pt;}
.x2e{left:482.333333pt;}
.x1b{left:501.693333pt;}
.x12{left:520.573333pt;}
.x38{left:539.293333pt;}
.x2a{left:558.013333pt;}
.x39{left:595.973333pt;}
.x3a{left:652.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; }
  