
    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_bfcc49cd9ff80395fa5aecf3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.767578;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_f5e1d1210e471432704b44b7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_5abb722e3aeeb17df6ca198c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.207031;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_fab4416e349c5f142b9e5028.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c248d5f8aad8b509a3410345.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-57.600000px;}
.v0{vertical-align:0.000000px;}
.ls30{letter-spacing:-0.522000px;}
.ls8{letter-spacing:-0.517200px;}
.ls5{letter-spacing:-0.348600px;}
.ls22{letter-spacing:-0.342000px;}
.ls20{letter-spacing:-0.324000px;}
.lsa{letter-spacing:-0.274200px;}
.ls9{letter-spacing:-0.272400px;}
.ls23{letter-spacing:-0.270000px;}
.ls1f{letter-spacing:-0.252000px;}
.lsb{letter-spacing:-0.216600px;}
.ls7{letter-spacing:-0.174000px;}
.ls32{letter-spacing:-0.168600px;}
.ls2b{letter-spacing:-0.166800px;}
.ls1d{letter-spacing:-0.147000px;}
.ls6{letter-spacing:-0.126000px;}
.lsc{letter-spacing:-0.092400px;}
.lsf{letter-spacing:-0.054000px;}
.ls38{letter-spacing:-0.036000px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.020880px;}
.ls12{letter-spacing:0.036000px;}
.ls3c{letter-spacing:0.037947px;}
.ls29{letter-spacing:0.066000px;}
.ls0{letter-spacing:0.070800px;}
.ls25{letter-spacing:0.108000px;}
.ls28{letter-spacing:0.126000px;}
.ls3d{letter-spacing:0.149760px;}
.ls19{letter-spacing:0.150000px;}
.ls18{letter-spacing:0.156000px;}
.ls3e{letter-spacing:0.162000px;}
.ls26{letter-spacing:0.180000px;}
.lse{letter-spacing:0.198000px;}
.lsd{letter-spacing:0.202800px;}
.ls2f{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.229200px;}
.ls33{letter-spacing:0.231000px;}
.ls3{letter-spacing:0.265680px;}
.ls24{letter-spacing:0.324000px;}
.ls37{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.364200px;}
.ls2d{letter-spacing:0.378000px;}
.ls21{letter-spacing:0.396000px;}
.ls13{letter-spacing:0.450000px;}
.ls1e{letter-spacing:0.573000px;}
.ls3a{letter-spacing:0.594000px;}
.ls15{letter-spacing:0.666000px;}
.ls3b{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.740880px;}
.ls11{letter-spacing:0.756000px;}
.ls39{letter-spacing:0.758939px;}
.ls3f{letter-spacing:0.796886px;}
.ls2e{letter-spacing:0.876000px;}
.ls10{letter-spacing:0.918000px;}
.ls2a{letter-spacing:1.098000px;}
.ls14{letter-spacing:1.386000px;}
.ls34{letter-spacing:1.460880px;}
.ls16{letter-spacing:1.818000px;}
.ls1b{letter-spacing:3.620880px;}
.ls27{letter-spacing:5.418000px;}
.ls2{letter-spacing:8.185680px;}
.ls17{letter-spacing:9.018000px;}
.ls36{letter-spacing:9.198000px;}
.ls40{letter-spacing:34.709760px;}
.ls31{letter-spacing:68.508000px;}
.ls1{letter-spacing:1175.336880px;}
.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;}
}
.ws14{word-spacing:-54.000000px;}
.ws1c{word-spacing:-17.854041px;}
.ws6{word-spacing:-17.816094px;}
.ws1b{word-spacing:-17.622000px;}
.ws1a{word-spacing:-17.496000px;}
.ws18{word-spacing:-17.352000px;}
.wsb{word-spacing:-17.298000px;}
.ws12{word-spacing:-17.280000px;}
.wsf{word-spacing:-17.100000px;}
.ws10{word-spacing:-17.010000px;}
.ws13{word-spacing:-16.938000px;}
.ws7{word-spacing:-16.902000px;}
.ws19{word-spacing:-16.866000px;}
.wse{word-spacing:-16.776000px;}
.ws9{word-spacing:-16.650000px;}
.wsd{word-spacing:-16.632000px;}
.wsa{word-spacing:-16.578000px;}
.wsc{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.915711px;}
.ws3{word-spacing:-15.099120px;}
.ws5{word-spacing:-15.006720px;}
.ws1{word-spacing:-14.973120px;}
.ws4{word-spacing:-14.826720px;}
.ws16{word-spacing:-14.365320px;}
.ws15{word-spacing:-13.965720px;}
.ws17{word-spacing:-13.435080px;}
.ws11{word-spacing:-12.002640px;}
.ws0{word-spacing:-11.820840px;}
.ws8{word-spacing:0.000000px;}
._16{margin-left:-5.264160px;}
._b{margin-left:-3.693120px;}
._a{margin-left:-2.653200px;}
._1{margin-left:-1.476480px;}
._0{width:1.182720px;}
._2{width:2.827200px;}
._3{width:3.864518px;}
._8{width:5.020777px;}
._4{width:6.174720px;}
._7{width:7.554720px;}
._9{width:8.654640px;}
._c{width:9.704640px;}
._d{width:11.238720px;}
._11{width:12.911280px;}
._e{width:14.796000px;}
._15{width:15.822000px;}
._12{width:18.035760px;}
._10{width:19.062000px;}
._f{width:20.142000px;}
._6{width:21.535200px;}
._5{width:22.557360px;}
._17{width:25.974000px;}
._18{width:27.708000px;}
._1b{width:34.912800px;}
._1c{width:35.935200px;}
._19{width:73.926000px;}
._1a{width:78.720953px;}
._13{width:104.291400px;}
._14{width:798.010560px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fsa{font-size:44.018465px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:50.848916px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:56.920429px;}
.fsb{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:69.822393px;}
.y0{bottom:0.000000px;}
.yad{bottom:9.705000px;}
.yb0{bottom:9.885000px;}
.yaa{bottom:9.900000px;}
.y5{bottom:35.280000px;}
.y41{bottom:52.740000px;}
.y4{bottom:53.460000px;}
.y3{bottom:67.896000px;}
.y74{bottom:108.396000px;}
.ya8{bottom:108.756000px;}
.y40{bottom:109.296000px;}
.ya7{bottom:113.256000px;}
.y79{bottom:116.316000px;}
.y73{bottom:120.996000px;}
.ya6{bottom:123.156000px;}
.ya5{bottom:127.656000px;}
.yb6{bottom:131.796000px;}
.y80{bottom:133.596000px;}
.y3f{bottom:133.776000px;}
.y72{bottom:133.956000px;}
.y71{bottom:138.456000px;}
.ya4{bottom:139.716000px;}
.y78{bottom:140.796000px;}
.y7f{bottom:146.376000px;}
.y70{bottom:148.176000px;}
.ybb{bottom:150.510000px;}
.yb5{bottom:156.270000px;}
.y3e{bottom:158.070000px;}
.y7e{bottom:158.970000px;}
.y6f{bottom:161.130000px;}
.y77{bottom:165.270000px;}
.y6e{bottom:165.630000px;}
.y7d{bottom:172.110000px;}
.y6d{bottom:175.710000px;}
.y7c{bottom:176.610000px;}
.yb9{bottom:177.690000px;}
.y6c{bottom:180.210000px;}
.yb4{bottom:180.750000px;}
.y3d{bottom:182.550000px;}
.y7b{bottom:188.670000px;}
.ya3{bottom:189.570000px;}
.y76{bottom:189.750000px;}
.y6b{bottom:192.270000px;}
.yb3{bottom:194.985000px;}
.y3c{bottom:207.030000px;}
.ya2{bottom:213.870000px;}
.y75{bottom:214.230000px;}
.yb2{bottom:218.925000px;}
.y3b{bottom:231.510000px;}
.ya1{bottom:238.350000px;}
.y6a{bottom:238.530000px;}
.yb1{bottom:241.425000px;}
.y3a{bottom:255.810000px;}
.ya0{bottom:262.830000px;}
.y69{bottom:263.010000px;}
.yaf{bottom:263.925000px;}
.y39{bottom:280.290000px;}
.yae{bottom:286.425000px;}
.y9f{bottom:287.310000px;}
.y68{bottom:287.490000px;}
.yb8{bottom:291.990000px;}
.y38{bottom:304.770000px;}
.yac{bottom:308.925000px;}
.y9e{bottom:311.790000px;}
.y67{bottom:311.970000px;}
.y37{bottom:329.295000px;}
.yab{bottom:331.275000px;}
.y9d{bottom:336.135000px;}
.y66{bottom:336.315000px;}
.y36{bottom:353.775000px;}
.y9c{bottom:360.615000px;}
.y65{bottom:360.795000px;}
.ya9{bottom:376.275000px;}
.y35{bottom:376.995000px;}
.y9b{bottom:385.095000px;}
.y64{bottom:385.275000px;}
.y34{bottom:407.775000px;}
.y9a{bottom:409.575000px;}
.y63{bottom:409.755000px;}
.y99{bottom:434.055000px;}
.y62{bottom:434.235000px;}
.y33{bottom:439.635000px;}
.y98{bottom:458.355000px;}
.y61{bottom:458.535000px;}
.y32{bottom:464.115000px;}
.y31{bottom:480.135000px;}
.y97{bottom:482.835000px;}
.y60{bottom:483.015000px;}
.y30{bottom:494.715000px;}
.y96{bottom:507.315000px;}
.y5f{bottom:507.495000px;}
.y2f{bottom:509.115000px;}
.y2e{bottom:523.515000px;}
.y95{bottom:531.795000px;}
.y5e{bottom:531.975000px;}
.y2d{bottom:538.095000px;}
.y2c{bottom:552.495000px;}
.y94{bottom:556.095000px;}
.y5d{bottom:556.455000px;}
.y2b{bottom:567.075000px;}
.y92{bottom:580.575000px;}
.y5c{bottom:580.755000px;}
.y2a{bottom:581.475000px;}
.y93{bottom:585.075000px;}
.y29{bottom:596.085000px;}
.y91{bottom:605.085000px;}
.y5b{bottom:605.265000px;}
.y28{bottom:610.485000px;}
.y27{bottom:625.065000px;}
.y8f{bottom:629.565000px;}
.y5a{bottom:629.745000px;}
.y90{bottom:634.065000px;}
.y26{bottom:639.465000px;}
.y25{bottom:654.045000px;}
.y59{bottom:654.225000px;}
.y24{bottom:668.445000px;}
.y8e{bottom:678.345000px;}
.y58{bottom:678.705000px;}
.y23{bottom:683.025000px;}
.y22{bottom:697.425000px;}
.y8d{bottom:702.825000px;}
.y57{bottom:703.005000px;}
.yba{bottom:707.505000px;}
.y21{bottom:712.005000px;}
.y20{bottom:726.405000px;}
.y8c{bottom:727.305000px;}
.y55{bottom:727.485000px;}
.y56{bottom:731.985000px;}
.y1f{bottom:740.985000px;}
.y8b{bottom:751.785000px;}
.y54{bottom:751.965000px;}
.y1e{bottom:755.385000px;}
.y1d{bottom:769.785000px;}
.y8a{bottom:776.265000px;}
.y52{bottom:776.445000px;}
.y53{bottom:780.945000px;}
.y1c{bottom:784.365000px;}
.y1b{bottom:798.765000px;}
.y89{bottom:800.565000px;}
.y50{bottom:800.925000px;}
.y51{bottom:805.425000px;}
.y1a{bottom:813.345000px;}
.y88{bottom:825.045000px;}
.y4f{bottom:825.225000px;}
.y19{bottom:827.745000px;}
.y18{bottom:842.325000px;}
.y87{bottom:849.525000px;}
.y4e{bottom:849.705000px;}
.y17{bottom:856.725000px;}
.y16{bottom:871.350000px;}
.y86{bottom:874.050000px;}
.y4d{bottom:874.230000px;}
.y15{bottom:885.750000px;}
.y85{bottom:898.530000px;}
.y4c{bottom:898.710000px;}
.y14{bottom:900.330000px;}
.y13{bottom:914.730000px;}
.y84{bottom:922.830000px;}
.y4b{bottom:923.010000px;}
.y12{bottom:943.710000px;}
.y4a{bottom:947.490000px;}
.y11{bottom:958.290000px;}
.y83{bottom:971.790000px;}
.y49{bottom:971.970000px;}
.y10{bottom:972.690000px;}
.yf{bottom:987.090000px;}
.y82{bottom:996.270000px;}
.y48{bottom:996.450000px;}
.ye{bottom:1001.670000px;}
.yd{bottom:1016.070000px;}
.y81{bottom:1020.750000px;}
.y47{bottom:1020.930000px;}
.yb7{bottom:1025.430000px;}
.yc{bottom:1030.650000px;}
.yb{bottom:1045.050000px;}
.y46{bottom:1045.230000px;}
.ya{bottom:1060.530000px;}
.y45{bottom:1069.710000px;}
.y9{bottom:1080.510000px;}
.y44{bottom:1094.190000px;}
.y8{bottom:1100.310000px;}
.y43{bottom:1118.670000px;}
.y7{bottom:1120.290000px;}
.y7a{bottom:1123.170000px;}
.y6{bottom:1140.300000px;}
.y42{bottom:1143.180000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1199.160000px;}
.h18{height:21.585000px;}
.h17{height:21.621000px;}
.h16{height:21.765000px;}
.h10{height:30.254766px;}
.hd{height:36.017578px;}
.hc{height:38.898984px;}
.h7{height:39.477656px;}
.h12{height:41.780391px;}
.h11{height:44.039958px;}
.ha{height:44.191406px;}
.hf{height:46.581366px;}
.h4{height:48.263555px;}
.h3{height:50.229844px;}
.h8{height:50.873745px;}
.h9{height:54.026367px;}
.h5{height:54.208125px;}
.h15{height:55.503491px;}
.hb{height:56.948222px;}
.h6{height:57.139810px;}
.h14{height:59.789180px;}
.h13{height:61.423863px;}
.h2{height:66.272344px;}
.he{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:130.665000px;}
.w3{width:386.010000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x83{left:7.545000px;}
.x84{left:11.340000px;}
.x86{left:46.065000px;}
.x89{left:57.600000px;}
.x85{left:62.100000px;}
.x1{left:127.656000px;}
.x38{left:131.796000px;}
.x6{left:134.676000px;}
.x2{left:140.616000px;}
.xc4{left:145.296000px;}
.x1a{left:148.896000px;}
.xbe{left:152.130000px;}
.x5d{left:154.650000px;}
.x25{left:157.710000px;}
.x47{left:163.650000px;}
.xa{left:170.130000px;}
.x32{left:171.390000px;}
.x9c{left:172.470000px;}
.xc7{left:180.750000px;}
.x4f{left:182.550000px;}
.x1b{left:185.070000px;}
.x5a{left:186.510000px;}
.x82{left:187.965000px;}
.x2d{left:189.390000px;}
.x70{left:193.170000px;}
.xe5{left:195.510000px;}
.x10{left:196.950000px;}
.x1f{left:198.390000px;}
.x49{left:199.470000px;}
.xc5{left:202.890000px;}
.x8a{left:212.407500px;}
.x8b{left:217.290000px;}
.x8c{left:220.530000px;}
.x14{left:222.510000px;}
.xcd{left:227.910000px;}
.xcb{left:230.610000px;}
.x93{left:233.490000px;}
.x87{left:236.580000px;}
.xa4{left:238.710000px;}
.x65{left:239.790000px;}
.x15{left:243.075000px;}
.x4a{left:244.515000px;}
.xe1{left:248.655000px;}
.xea{left:249.735000px;}
.x23{left:251.535000px;}
.x54{left:255.315000px;}
.x26{left:256.395000px;}
.xdb{left:257.475000px;}
.xb{left:258.735000px;}
.x66{left:260.355000px;}
.x5b{left:262.335000px;}
.xe7{left:263.595000px;}
.xe9{left:266.295000px;}
.x51{left:270.435000px;}
.xd6{left:282.675000px;}
.x46{left:283.755000px;}
.x9f{left:287.535000px;}
.x7{left:289.515000px;}
.xb9{left:290.595000px;}
.xb5{left:292.395000px;}
.x64{left:293.475000px;}
.x27{left:296.175000px;}
.x67{left:299.752500px;}
.xb3{left:301.755000px;}
.x68{left:304.635000px;}
.x2e{left:309.315000px;}
.xc{left:310.755000px;}
.x9d{left:314.152500px;}
.x6f{left:318.495000px;}
.x81{left:320.295000px;}
.xc1{left:321.375000px;}
.xcc{left:323.895000px;}
.x7b{left:324.975000px;}
.x3{left:328.395000px;}
.x20{left:330.195000px;}
.x50{left:331.635000px;}
.xa1{left:332.895000px;}
.xde{left:337.035000px;}
.x7a{left:339.195000px;}
.xda{left:342.435000px;}
.x37{left:343.695000px;}
.xd{left:345.675000px;}
.x88{left:347.460000px;}
.xb6{left:351.255000px;}
.x3d{left:352.875000px;}
.x4{left:358.995000px;}
.x9a{left:364.755000px;}
.xa7{left:365.835000px;}
.x98{left:367.095000px;}
.x8d{left:368.355000px;}
.x8e{left:371.055000px;}
.x21{left:373.035000px;}
.x16{left:375.195000px;}
.xa3{left:378.615000px;}
.xbf{left:380.235000px;}
.x8f{left:383.295000px;}
.xdf{left:384.915000px;}
.x3e{left:388.515000px;}
.xa9{left:390.855000px;}
.xaf{left:393.555000px;}
.x8{left:398.055000px;}
.x7c{left:401.115000px;}
.x99{left:402.945000px;}
.x39{left:404.925000px;}
.xd5{left:406.545000px;}
.x9{left:409.785000px;}
.xe0{left:412.125000px;}
.xaa{left:413.205000px;}
.xb8{left:415.005000px;}
.x56{left:418.605000px;}
.x13{left:424.905000px;}
.xac{left:426.885000px;}
.x41{left:429.765000px;}
.x44{left:435.345000px;}
.xba{left:436.785000px;}
.xe8{left:439.845000px;}
.xc0{left:442.005000px;}
.x94{left:445.605000px;}
.x5{left:446.685000px;}
.x5e{left:448.845000px;}
.x3a{left:450.465000px;}
.xe2{left:453.345000px;}
.xd7{left:457.485000px;}
.x42{left:465.405000px;}
.x45{left:470.985000px;}
.xab{left:472.065000px;}
.xd4{left:473.865000px;}
.xc2{left:478.005000px;}
.xe{left:479.625000px;}
.xa2{left:480.705000px;}
.x57{left:481.965000px;}
.xb7{left:484.845000px;}
.x4d{left:486.645000px;}
.x69{left:488.805000px;}
.x52{left:490.605000px;}
.x90{left:492.225000px;}
.x33{left:494.385000px;}
.x3b{left:498.525000px;}
.x3f{left:501.585000px;}
.x73{left:503.565000px;}
.x28{left:505.882500px;}
.xca{left:506.985000px;}
.x5f{left:508.605000px;}
.x29{left:510.765000px;}
.x60{left:512.025000px;}
.x75{left:517.425000px;}
.xe4{left:519.765000px;}
.x96{left:522.285000px;}
.xb1{left:523.905000px;}
.xdc{left:524.985000px;}
.x53{left:526.605000px;}
.x7d{left:532.905000px;}
.x71{left:536.685000px;}
.x40{left:537.765000px;}
.x4b{left:538.845000px;}
.xd0{left:540.465000px;}
.x77{left:547.485000px;}
.x91{left:551.265000px;}
.x78{left:554.325000px;}
.x63{left:558.645000px;}
.x34{left:559.725000px;}
.x5c{left:563.550000px;}
.x6d{left:565.687500px;}
.x62{left:566.970000px;}
.x2a{left:569.310000px;}
.x6e{left:570.570000px;}
.x61{left:571.830000px;}
.x4c{left:574.530000px;}
.x76{left:576.330000px;}
.x97{left:581.190000px;}
.x30{left:583.507500px;}
.x18{left:585.510000px;}
.xdd{left:587.130000px;}
.x31{left:588.390000px;}
.xbc{left:589.650000px;}
.x7e{left:591.270000px;}
.xd8{left:600.630000px;}
.xd1{left:602.970000px;}
.xad{left:609.090000px;}
.xc3{left:610.170000px;}
.xd2{left:611.250000px;}
.x17{left:613.050000px;}
.x4e{left:614.310000px;}
.xc6{left:616.290000px;}
.x79{left:619.170000px;}
.xb4{left:622.590000px;}
.xe6{left:624.390000px;}
.x55{left:625.470000px;}
.x2b{left:627.630000px;}
.xbd{left:629.070000px;}
.xd3{left:630.150000px;}
.x2c{left:631.927500px;}
.x1c{left:633.930000px;}
.x19{left:637.350000px;}
.x58{left:642.750000px;}
.x6a{left:644.010000px;}
.xa8{left:645.630000px;}
.x9e{left:648.870000px;}
.xd9{left:651.210000px;}
.xce{left:653.910000px;}
.x74{left:657.690000px;}
.xbb{left:660.750000px;}
.xb0{left:663.810000px;}
.x11{left:664.890000px;}
.xae{left:667.230000px;}
.xc8{left:668.490000px;}
.x1d{left:669.930000px;}
.x35{left:674.430000px;}
.xa0{left:675.690000px;}
.x95{left:677.850000px;}
.x6b{left:680.730000px;}
.x72{left:690.270000px;}
.x2f{left:691.710000px;}
.xe3{left:695.310000px;}
.x7f{left:698.730000px;}
.x3c{left:700.350000px;}
.xf{left:701.970000px;}
.x92{left:703.410000px;}
.x59{left:705.750000px;}
.x48{left:707.370000px;}
.xa5{left:709.350000px;}
.x36{left:710.430000px;}
.xc9{left:711.690000px;}
.xcf{left:716.010000px;}
.x12{left:718.890000px;}
.x9b{left:723.420000px;}
.x43{left:729.540000px;}
.xb2{left:734.580000px;}
.x24{left:741.600000px;}
.x22{left:743.040000px;}
.x80{left:756.360000px;}
.xa6{left:757.440000px;}
.x6c{left:761.580000px;}
.x1e{left:765.720000px;}
@media print{
.v1{vertical-align:-51.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls30{letter-spacing:-0.464000pt;}
.ls8{letter-spacing:-0.459733pt;}
.ls5{letter-spacing:-0.309867pt;}
.ls22{letter-spacing:-0.304000pt;}
.ls20{letter-spacing:-0.288000pt;}
.lsa{letter-spacing:-0.243733pt;}
.ls9{letter-spacing:-0.242133pt;}
.ls23{letter-spacing:-0.240000pt;}
.ls1f{letter-spacing:-0.224000pt;}
.lsb{letter-spacing:-0.192533pt;}
.ls7{letter-spacing:-0.154667pt;}
.ls32{letter-spacing:-0.149867pt;}
.ls2b{letter-spacing:-0.148267pt;}
.ls1d{letter-spacing:-0.130667pt;}
.ls6{letter-spacing:-0.112000pt;}
.lsc{letter-spacing:-0.082133pt;}
.lsf{letter-spacing:-0.048000pt;}
.ls38{letter-spacing:-0.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.018560pt;}
.ls12{letter-spacing:0.032000pt;}
.ls3c{letter-spacing:0.033731pt;}
.ls29{letter-spacing:0.058667pt;}
.ls0{letter-spacing:0.062933pt;}
.ls25{letter-spacing:0.096000pt;}
.ls28{letter-spacing:0.112000pt;}
.ls3d{letter-spacing:0.133120pt;}
.ls19{letter-spacing:0.133333pt;}
.ls18{letter-spacing:0.138667pt;}
.ls3e{letter-spacing:0.144000pt;}
.ls26{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.176000pt;}
.lsd{letter-spacing:0.180267pt;}
.ls2f{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.203733pt;}
.ls33{letter-spacing:0.205333pt;}
.ls3{letter-spacing:0.236160pt;}
.ls24{letter-spacing:0.288000pt;}
.ls37{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.323733pt;}
.ls2d{letter-spacing:0.336000pt;}
.ls21{letter-spacing:0.352000pt;}
.ls13{letter-spacing:0.400000pt;}
.ls1e{letter-spacing:0.509333pt;}
.ls3a{letter-spacing:0.528000pt;}
.ls15{letter-spacing:0.592000pt;}
.ls3b{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.658560pt;}
.ls11{letter-spacing:0.672000pt;}
.ls39{letter-spacing:0.674612pt;}
.ls3f{letter-spacing:0.708343pt;}
.ls2e{letter-spacing:0.778667pt;}
.ls10{letter-spacing:0.816000pt;}
.ls2a{letter-spacing:0.976000pt;}
.ls14{letter-spacing:1.232000pt;}
.ls34{letter-spacing:1.298560pt;}
.ls16{letter-spacing:1.616000pt;}
.ls1b{letter-spacing:3.218560pt;}
.ls27{letter-spacing:4.816000pt;}
.ls2{letter-spacing:7.276160pt;}
.ls17{letter-spacing:8.016000pt;}
.ls36{letter-spacing:8.176000pt;}
.ls40{letter-spacing:30.853120pt;}
.ls31{letter-spacing:60.896000pt;}
.ls1{letter-spacing:1044.743893pt;}
.ws14{word-spacing:-48.000000pt;}
.ws1c{word-spacing:-15.870259pt;}
.ws6{word-spacing:-15.836528pt;}
.ws1b{word-spacing:-15.664000pt;}
.ws1a{word-spacing:-15.552000pt;}
.ws18{word-spacing:-15.424000pt;}
.wsb{word-spacing:-15.376000pt;}
.ws12{word-spacing:-15.360000pt;}
.wsf{word-spacing:-15.200000pt;}
.ws10{word-spacing:-15.120000pt;}
.ws13{word-spacing:-15.056000pt;}
.ws7{word-spacing:-15.024000pt;}
.ws19{word-spacing:-14.992000pt;}
.wse{word-spacing:-14.912000pt;}
.ws9{word-spacing:-14.800000pt;}
.wsd{word-spacing:-14.784000pt;}
.wsa{word-spacing:-14.736000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.147298pt;}
.ws3{word-spacing:-13.421440pt;}
.ws5{word-spacing:-13.339307pt;}
.ws1{word-spacing:-13.309440pt;}
.ws4{word-spacing:-13.179307pt;}
.ws16{word-spacing:-12.769173pt;}
.ws15{word-spacing:-12.413973pt;}
.ws17{word-spacing:-11.942293pt;}
.ws11{word-spacing:-10.669013pt;}
.ws0{word-spacing:-10.507413pt;}
.ws8{word-spacing:0.000000pt;}
._16{margin-left:-4.679253pt;}
._b{margin-left:-3.282773pt;}
._a{margin-left:-2.358400pt;}
._1{margin-left:-1.312427pt;}
._0{width:1.051307pt;}
._2{width:2.513067pt;}
._3{width:3.435127pt;}
._8{width:4.462912pt;}
._4{width:5.488640pt;}
._7{width:6.715307pt;}
._9{width:7.693013pt;}
._c{width:8.626347pt;}
._d{width:9.989973pt;}
._11{width:11.476693pt;}
._e{width:13.152000pt;}
._15{width:14.064000pt;}
._12{width:16.031787pt;}
._10{width:16.944000pt;}
._f{width:17.904000pt;}
._6{width:19.142400pt;}
._5{width:20.050987pt;}
._17{width:23.088000pt;}
._18{width:24.629333pt;}
._1b{width:31.033600pt;}
._1c{width:31.942400pt;}
._19{width:65.712000pt;}
._1a{width:69.974180pt;}
._13{width:92.703467pt;}
._14{width:709.342720pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fsa{font-size:39.127524pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:45.199037pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:50.595937pt;}
.fsb{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:62.064349pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:8.626667pt;}
.yb0{bottom:8.786667pt;}
.yaa{bottom:8.800000pt;}
.y5{bottom:31.360000pt;}
.y41{bottom:46.880000pt;}
.y4{bottom:47.520000pt;}
.y3{bottom:60.352000pt;}
.y74{bottom:96.352000pt;}
.ya8{bottom:96.672000pt;}
.y40{bottom:97.152000pt;}
.ya7{bottom:100.672000pt;}
.y79{bottom:103.392000pt;}
.y73{bottom:107.552000pt;}
.ya6{bottom:109.472000pt;}
.ya5{bottom:113.472000pt;}
.yb6{bottom:117.152000pt;}
.y80{bottom:118.752000pt;}
.y3f{bottom:118.912000pt;}
.y72{bottom:119.072000pt;}
.y71{bottom:123.072000pt;}
.ya4{bottom:124.192000pt;}
.y78{bottom:125.152000pt;}
.y7f{bottom:130.112000pt;}
.y70{bottom:131.712000pt;}
.ybb{bottom:133.786667pt;}
.yb5{bottom:138.906667pt;}
.y3e{bottom:140.506667pt;}
.y7e{bottom:141.306667pt;}
.y6f{bottom:143.226667pt;}
.y77{bottom:146.906667pt;}
.y6e{bottom:147.226667pt;}
.y7d{bottom:152.986667pt;}
.y6d{bottom:156.186667pt;}
.y7c{bottom:156.986667pt;}
.yb9{bottom:157.946667pt;}
.y6c{bottom:160.186667pt;}
.yb4{bottom:160.666667pt;}
.y3d{bottom:162.266667pt;}
.y7b{bottom:167.706667pt;}
.ya3{bottom:168.506667pt;}
.y76{bottom:168.666667pt;}
.y6b{bottom:170.906667pt;}
.yb3{bottom:173.320000pt;}
.y3c{bottom:184.026667pt;}
.ya2{bottom:190.106667pt;}
.y75{bottom:190.426667pt;}
.yb2{bottom:194.600000pt;}
.y3b{bottom:205.786667pt;}
.ya1{bottom:211.866667pt;}
.y6a{bottom:212.026667pt;}
.yb1{bottom:214.600000pt;}
.y3a{bottom:227.386667pt;}
.ya0{bottom:233.626667pt;}
.y69{bottom:233.786667pt;}
.yaf{bottom:234.600000pt;}
.y39{bottom:249.146667pt;}
.yae{bottom:254.600000pt;}
.y9f{bottom:255.386667pt;}
.y68{bottom:255.546667pt;}
.yb8{bottom:259.546667pt;}
.y38{bottom:270.906667pt;}
.yac{bottom:274.600000pt;}
.y9e{bottom:277.146667pt;}
.y67{bottom:277.306667pt;}
.y37{bottom:292.706667pt;}
.yab{bottom:294.466667pt;}
.y9d{bottom:298.786667pt;}
.y66{bottom:298.946667pt;}
.y36{bottom:314.466667pt;}
.y9c{bottom:320.546667pt;}
.y65{bottom:320.706667pt;}
.ya9{bottom:334.466667pt;}
.y35{bottom:335.106667pt;}
.y9b{bottom:342.306667pt;}
.y64{bottom:342.466667pt;}
.y34{bottom:362.466667pt;}
.y9a{bottom:364.066667pt;}
.y63{bottom:364.226667pt;}
.y99{bottom:385.826667pt;}
.y62{bottom:385.986667pt;}
.y33{bottom:390.786667pt;}
.y98{bottom:407.426667pt;}
.y61{bottom:407.586667pt;}
.y32{bottom:412.546667pt;}
.y31{bottom:426.786667pt;}
.y97{bottom:429.186667pt;}
.y60{bottom:429.346667pt;}
.y30{bottom:439.746667pt;}
.y96{bottom:450.946667pt;}
.y5f{bottom:451.106667pt;}
.y2f{bottom:452.546667pt;}
.y2e{bottom:465.346667pt;}
.y95{bottom:472.706667pt;}
.y5e{bottom:472.866667pt;}
.y2d{bottom:478.306667pt;}
.y2c{bottom:491.106667pt;}
.y94{bottom:494.306667pt;}
.y5d{bottom:494.626667pt;}
.y2b{bottom:504.066667pt;}
.y92{bottom:516.066667pt;}
.y5c{bottom:516.226667pt;}
.y2a{bottom:516.866667pt;}
.y93{bottom:520.066667pt;}
.y29{bottom:529.853333pt;}
.y91{bottom:537.853333pt;}
.y5b{bottom:538.013333pt;}
.y28{bottom:542.653333pt;}
.y27{bottom:555.613333pt;}
.y8f{bottom:559.613333pt;}
.y5a{bottom:559.773333pt;}
.y90{bottom:563.613333pt;}
.y26{bottom:568.413333pt;}
.y25{bottom:581.373333pt;}
.y59{bottom:581.533333pt;}
.y24{bottom:594.173333pt;}
.y8e{bottom:602.973333pt;}
.y58{bottom:603.293333pt;}
.y23{bottom:607.133333pt;}
.y22{bottom:619.933333pt;}
.y8d{bottom:624.733333pt;}
.y57{bottom:624.893333pt;}
.yba{bottom:628.893333pt;}
.y21{bottom:632.893333pt;}
.y20{bottom:645.693333pt;}
.y8c{bottom:646.493333pt;}
.y55{bottom:646.653333pt;}
.y56{bottom:650.653333pt;}
.y1f{bottom:658.653333pt;}
.y8b{bottom:668.253333pt;}
.y54{bottom:668.413333pt;}
.y1e{bottom:671.453333pt;}
.y1d{bottom:684.253333pt;}
.y8a{bottom:690.013333pt;}
.y52{bottom:690.173333pt;}
.y53{bottom:694.173333pt;}
.y1c{bottom:697.213333pt;}
.y1b{bottom:710.013333pt;}
.y89{bottom:711.613333pt;}
.y50{bottom:711.933333pt;}
.y51{bottom:715.933333pt;}
.y1a{bottom:722.973333pt;}
.y88{bottom:733.373333pt;}
.y4f{bottom:733.533333pt;}
.y19{bottom:735.773333pt;}
.y18{bottom:748.733333pt;}
.y87{bottom:755.133333pt;}
.y4e{bottom:755.293333pt;}
.y17{bottom:761.533333pt;}
.y16{bottom:774.533333pt;}
.y86{bottom:776.933333pt;}
.y4d{bottom:777.093333pt;}
.y15{bottom:787.333333pt;}
.y85{bottom:798.693333pt;}
.y4c{bottom:798.853333pt;}
.y14{bottom:800.293333pt;}
.y13{bottom:813.093333pt;}
.y84{bottom:820.293333pt;}
.y4b{bottom:820.453333pt;}
.y12{bottom:838.853333pt;}
.y4a{bottom:842.213333pt;}
.y11{bottom:851.813333pt;}
.y83{bottom:863.813333pt;}
.y49{bottom:863.973333pt;}
.y10{bottom:864.613333pt;}
.yf{bottom:877.413333pt;}
.y82{bottom:885.573333pt;}
.y48{bottom:885.733333pt;}
.ye{bottom:890.373333pt;}
.yd{bottom:903.173333pt;}
.y81{bottom:907.333333pt;}
.y47{bottom:907.493333pt;}
.yb7{bottom:911.493333pt;}
.yc{bottom:916.133333pt;}
.yb{bottom:928.933333pt;}
.y46{bottom:929.093333pt;}
.ya{bottom:942.693333pt;}
.y45{bottom:950.853333pt;}
.y9{bottom:960.453333pt;}
.y44{bottom:972.613333pt;}
.y8{bottom:978.053333pt;}
.y43{bottom:994.373333pt;}
.y7{bottom:995.813333pt;}
.y7a{bottom:998.373333pt;}
.y6{bottom:1013.600000pt;}
.y42{bottom:1016.160000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1065.920000pt;}
.h18{height:19.186667pt;}
.h17{height:19.218667pt;}
.h16{height:19.346667pt;}
.h10{height:26.893125pt;}
.hd{height:32.015625pt;}
.hc{height:34.576875pt;}
.h7{height:35.091250pt;}
.h12{height:37.138125pt;}
.h11{height:39.146630pt;}
.ha{height:39.281250pt;}
.hf{height:41.405659pt;}
.h4{height:42.900937pt;}
.h3{height:44.648750pt;}
.h8{height:45.221107pt;}
.h9{height:48.023438pt;}
.h5{height:48.185000pt;}
.h15{height:49.336436pt;}
.hb{height:50.620642pt;}
.h6{height:50.790942pt;}
.h14{height:53.145938pt;}
.h13{height:54.598989pt;}
.h2{height:58.908750pt;}
.he{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:116.146667pt;}
.w3{width:343.120000pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x83{left:6.706667pt;}
.x84{left:10.080000pt;}
.x86{left:40.946667pt;}
.x89{left:51.200000pt;}
.x85{left:55.200000pt;}
.x1{left:113.472000pt;}
.x38{left:117.152000pt;}
.x6{left:119.712000pt;}
.x2{left:124.992000pt;}
.xc4{left:129.152000pt;}
.x1a{left:132.352000pt;}
.xbe{left:135.226667pt;}
.x5d{left:137.466667pt;}
.x25{left:140.186667pt;}
.x47{left:145.466667pt;}
.xa{left:151.226667pt;}
.x32{left:152.346667pt;}
.x9c{left:153.306667pt;}
.xc7{left:160.666667pt;}
.x4f{left:162.266667pt;}
.x1b{left:164.506667pt;}
.x5a{left:165.786667pt;}
.x82{left:167.080000pt;}
.x2d{left:168.346667pt;}
.x70{left:171.706667pt;}
.xe5{left:173.786667pt;}
.x10{left:175.066667pt;}
.x1f{left:176.346667pt;}
.x49{left:177.306667pt;}
.xc5{left:180.346667pt;}
.x8a{left:188.806667pt;}
.x8b{left:193.146667pt;}
.x8c{left:196.026667pt;}
.x14{left:197.786667pt;}
.xcd{left:202.586667pt;}
.xcb{left:204.986667pt;}
.x93{left:207.546667pt;}
.x87{left:210.293333pt;}
.xa4{left:212.186667pt;}
.x65{left:213.146667pt;}
.x15{left:216.066667pt;}
.x4a{left:217.346667pt;}
.xe1{left:221.026667pt;}
.xea{left:221.986667pt;}
.x23{left:223.586667pt;}
.x54{left:226.946667pt;}
.x26{left:227.906667pt;}
.xdb{left:228.866667pt;}
.xb{left:229.986667pt;}
.x66{left:231.426667pt;}
.x5b{left:233.186667pt;}
.xe7{left:234.306667pt;}
.xe9{left:236.706667pt;}
.x51{left:240.386667pt;}
.xd6{left:251.266667pt;}
.x46{left:252.226667pt;}
.x9f{left:255.586667pt;}
.x7{left:257.346667pt;}
.xb9{left:258.306667pt;}
.xb5{left:259.906667pt;}
.x64{left:260.866667pt;}
.x27{left:263.266667pt;}
.x67{left:266.446667pt;}
.xb3{left:268.226667pt;}
.x68{left:270.786667pt;}
.x2e{left:274.946667pt;}
.xc{left:276.226667pt;}
.x9d{left:279.246667pt;}
.x6f{left:283.106667pt;}
.x81{left:284.706667pt;}
.xc1{left:285.666667pt;}
.xcc{left:287.906667pt;}
.x7b{left:288.866667pt;}
.x3{left:291.906667pt;}
.x20{left:293.506667pt;}
.x50{left:294.786667pt;}
.xa1{left:295.906667pt;}
.xde{left:299.586667pt;}
.x7a{left:301.506667pt;}
.xda{left:304.386667pt;}
.x37{left:305.506667pt;}
.xd{left:307.266667pt;}
.x88{left:308.853333pt;}
.xb6{left:312.226667pt;}
.x3d{left:313.666667pt;}
.x4{left:319.106667pt;}
.x9a{left:324.226667pt;}
.xa7{left:325.186667pt;}
.x98{left:326.306667pt;}
.x8d{left:327.426667pt;}
.x8e{left:329.826667pt;}
.x21{left:331.586667pt;}
.x16{left:333.506667pt;}
.xa3{left:336.546667pt;}
.xbf{left:337.986667pt;}
.x8f{left:340.706667pt;}
.xdf{left:342.146667pt;}
.x3e{left:345.346667pt;}
.xa9{left:347.426667pt;}
.xaf{left:349.826667pt;}
.x8{left:353.826667pt;}
.x7c{left:356.546667pt;}
.x99{left:358.173333pt;}
.x39{left:359.933333pt;}
.xd5{left:361.373333pt;}
.x9{left:364.253333pt;}
.xe0{left:366.333333pt;}
.xaa{left:367.293333pt;}
.xb8{left:368.893333pt;}
.x56{left:372.093333pt;}
.x13{left:377.693333pt;}
.xac{left:379.453333pt;}
.x41{left:382.013333pt;}
.x44{left:386.973333pt;}
.xba{left:388.253333pt;}
.xe8{left:390.973333pt;}
.xc0{left:392.893333pt;}
.x94{left:396.093333pt;}
.x5{left:397.053333pt;}
.x5e{left:398.973333pt;}
.x3a{left:400.413333pt;}
.xe2{left:402.973333pt;}
.xd7{left:406.653333pt;}
.x42{left:413.693333pt;}
.x45{left:418.653333pt;}
.xab{left:419.613333pt;}
.xd4{left:421.213333pt;}
.xc2{left:424.893333pt;}
.xe{left:426.333333pt;}
.xa2{left:427.293333pt;}
.x57{left:428.413333pt;}
.xb7{left:430.973333pt;}
.x4d{left:432.573333pt;}
.x69{left:434.493333pt;}
.x52{left:436.093333pt;}
.x90{left:437.533333pt;}
.x33{left:439.453333pt;}
.x3b{left:443.133333pt;}
.x3f{left:445.853333pt;}
.x73{left:447.613333pt;}
.x28{left:449.673333pt;}
.xca{left:450.653333pt;}
.x5f{left:452.093333pt;}
.x29{left:454.013333pt;}
.x60{left:455.133333pt;}
.x75{left:459.933333pt;}
.xe4{left:462.013333pt;}
.x96{left:464.253333pt;}
.xb1{left:465.693333pt;}
.xdc{left:466.653333pt;}
.x53{left:468.093333pt;}
.x7d{left:473.693333pt;}
.x71{left:477.053333pt;}
.x40{left:478.013333pt;}
.x4b{left:478.973333pt;}
.xd0{left:480.413333pt;}
.x77{left:486.653333pt;}
.x91{left:490.013333pt;}
.x78{left:492.733333pt;}
.x63{left:496.573333pt;}
.x34{left:497.533333pt;}
.x5c{left:500.933333pt;}
.x6d{left:502.833333pt;}
.x62{left:503.973333pt;}
.x2a{left:506.053333pt;}
.x6e{left:507.173333pt;}
.x61{left:508.293333pt;}
.x4c{left:510.693333pt;}
.x76{left:512.293333pt;}
.x97{left:516.613333pt;}
.x30{left:518.673333pt;}
.x18{left:520.453333pt;}
.xdd{left:521.893333pt;}
.x31{left:523.013333pt;}
.xbc{left:524.133333pt;}
.x7e{left:525.573333pt;}
.xd8{left:533.893333pt;}
.xd1{left:535.973333pt;}
.xad{left:541.413333pt;}
.xc3{left:542.373333pt;}
.xd2{left:543.333333pt;}
.x17{left:544.933333pt;}
.x4e{left:546.053333pt;}
.xc6{left:547.813333pt;}
.x79{left:550.373333pt;}
.xb4{left:553.413333pt;}
.xe6{left:555.013333pt;}
.x55{left:555.973333pt;}
.x2b{left:557.893333pt;}
.xbd{left:559.173333pt;}
.xd3{left:560.133333pt;}
.x2c{left:561.713333pt;}
.x1c{left:563.493333pt;}
.x19{left:566.533333pt;}
.x58{left:571.333333pt;}
.x6a{left:572.453333pt;}
.xa8{left:573.893333pt;}
.x9e{left:576.773333pt;}
.xd9{left:578.853333pt;}
.xce{left:581.253333pt;}
.x74{left:584.613333pt;}
.xbb{left:587.333333pt;}
.xb0{left:590.053333pt;}
.x11{left:591.013333pt;}
.xae{left:593.093333pt;}
.xc8{left:594.213333pt;}
.x1d{left:595.493333pt;}
.x35{left:599.493333pt;}
.xa0{left:600.613333pt;}
.x95{left:602.533333pt;}
.x6b{left:605.093333pt;}
.x72{left:613.573333pt;}
.x2f{left:614.853333pt;}
.xe3{left:618.053333pt;}
.x7f{left:621.093333pt;}
.x3c{left:622.533333pt;}
.xf{left:623.973333pt;}
.x92{left:625.253333pt;}
.x59{left:627.333333pt;}
.x48{left:628.773333pt;}
.xa5{left:630.533333pt;}
.x36{left:631.493333pt;}
.xc9{left:632.613333pt;}
.xcf{left:636.453333pt;}
.x12{left:639.013333pt;}
.x9b{left:643.040000pt;}
.x43{left:648.480000pt;}
.xb2{left:652.960000pt;}
.x24{left:659.200000pt;}
.x22{left:660.480000pt;}
.x80{left:672.320000pt;}
.xa6{left:673.280000pt;}
.x6c{left:676.960000pt;}
.x1e{left:680.640000pt;}
}




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