
    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_854ca69af584e725e6c9c162.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2cc3e5c575a2196fb923ad2d.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_e678f973094e2ffde37bb382.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7f6f84a9da7c4df787a8059d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dd40f3b412a012a9085daa09.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_43b0aa4e3eaec2e647f6f313.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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);}
.v3{vertical-align:-27.780000px;}
.v2{vertical-align:-9.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.600000px;}
.ls13{letter-spacing:-5.184000px;}
.ls22{letter-spacing:-2.400000px;}
.ls6{letter-spacing:-2.016000px;}
.ls4{letter-spacing:-1.200000px;}
.ls19{letter-spacing:-1.176000px;}
.lsb{letter-spacing:-0.816000px;}
.ls8{letter-spacing:-0.768000px;}
.ls18{letter-spacing:-0.474000px;}
.ls10{letter-spacing:-0.408000px;}
.ls1a{letter-spacing:-0.384000px;}
.ls17{letter-spacing:-0.024000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.024000px;}
.lse{letter-spacing:0.372000px;}
.lsf{letter-spacing:0.384000px;}
.ls9{letter-spacing:0.408000px;}
.ls7{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.492000px;}
.ls1{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.ls2{letter-spacing:1.200000px;}
.lsa{letter-spacing:1.224000px;}
.ls15{letter-spacing:1.632000px;}
.ls20{letter-spacing:2.340000px;}
.ls1f{letter-spacing:2.400000px;}
.ls1d{letter-spacing:6.000000px;}
.ls1e{letter-spacing:6.120000px;}
.lsc{letter-spacing:7.200000px;}
.ls11{letter-spacing:7.500000px;}
.lsd{letter-spacing:9.600000px;}
.ls16{letter-spacing:10.800000px;}
.ls21{letter-spacing:14.400000px;}
.ls12{letter-spacing:14.460000px;}
.ls1c{letter-spacing:51.600000px;}
.ls1b{letter-spacing:194.550000px;}
.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;}
}
.ws2{word-spacing:-48.000000px;}
.ws8{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.408000px;}
.wsc{word-spacing:-18.384000px;}
.ws3{word-spacing:-18.024000px;}
.ws1{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.976000px;}
.ws11{word-spacing:-17.616000px;}
.wsd{word-spacing:-17.592000px;}
.wsa{word-spacing:-17.232000px;}
.wsb{word-spacing:-17.184000px;}
.wse{word-spacing:-17.100000px;}
.ws10{word-spacing:-16.824000px;}
.ws9{word-spacing:-16.800000px;}
.ws12{word-spacing:-16.500000px;}
.ws14{word-spacing:-15.600000px;}
.ws13{word-spacing:-15.540000px;}
.ws5{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.ws4{word-spacing:-9.900000px;}
.ws6{word-spacing:0.000000px;}
._25{margin-left:-8.538000px;}
._11{margin-left:-7.434000px;}
._30{margin-left:-6.408000px;}
._3{margin-left:-5.244000px;}
._5{margin-left:-4.128000px;}
._4{margin-left:-2.898000px;}
._1{margin-left:-1.560000px;}
._0{width:1.080000px;}
._2{width:2.130000px;}
._8{width:3.582000px;}
._1a{width:4.638000px;}
._19{width:5.688000px;}
._9{width:6.696000px;}
._b{width:7.728000px;}
._a{width:9.264000px;}
._1e{width:10.452000px;}
._1d{width:11.496000px;}
._18{width:12.672000px;}
._17{width:13.680000px;}
._10{width:14.694000px;}
._12{width:16.176000px;}
._13{width:17.268000px;}
._1c{width:19.092000px;}
._7{width:20.106000px;}
._6{width:21.270000px;}
._26{width:22.314000px;}
._f{width:23.328000px;}
._e{width:24.744000px;}
._16{width:26.316000px;}
._15{width:27.426000px;}
._14{width:28.566000px;}
._1b{width:29.730000px;}
._22{width:30.834000px;}
._21{width:32.088000px;}
._23{width:33.378000px;}
._d{width:34.956000px;}
._c{width:36.624000px;}
._27{width:38.568000px;}
._28{width:39.888000px;}
._20{width:40.944000px;}
._1f{width:42.024000px;}
._2b{width:43.056000px;}
._2c{width:44.760000px;}
._2d{width:45.984000px;}
._24{width:47.304000px;}
._2a{width:50.670000px;}
._29{width:51.840000px;}
._2f{width:52.986000px;}
._2e{width:194.550000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.600000px;}
.fs6{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.337500px;}
.y2{bottom:78.037500px;}
.y29{bottom:109.537500px;}
.yea{bottom:113.737500px;}
.yb7{bottom:117.037500px;}
.y111{bottom:118.837500px;}
.y12e{bottom:125.737500px;}
.y28{bottom:126.937500px;}
.y87{bottom:132.637500px;}
.y95{bottom:133.837500px;}
.yb6{bottom:137.737500px;}
.y27{bottom:144.037500px;}
.y94{bottom:144.937500px;}
.y12d{bottom:146.437500px;}
.y55{bottom:150.930000px;}
.y86{bottom:153.330000px;}
.ye9{bottom:155.130000px;}
.yb5{bottom:158.430000px;}
.y110{bottom:160.245000px;}
.y120{bottom:161.430000px;}
.y54{bottom:162.030000px;}
.y12c{bottom:167.175000px;}
.y26{bottom:168.375000px;}
.y85{bottom:174.075000px;}
.ye8{bottom:175.575000px;}
.y11f{bottom:178.575000px;}
.yb4{bottom:179.175000px;}
.y25{bottom:179.475000px;}
.y10f{bottom:180.375000px;}
.y128{bottom:185.475000px;}
.y53{bottom:187.875000px;}
.y84{bottom:194.775000px;}
.y11e{bottom:195.975000px;}
.y12a{bottom:196.575000px;}
.y10e{bottom:199.575000px;}
.yb3{bottom:199.875000px;}
.yf5{bottom:208.275000px;}
.y52{bottom:208.575000px;}
.y11d{bottom:213.075000px;}
.y83{bottom:215.475000px;}
.ye7{bottom:217.275000px;}
.y10d{bottom:218.475000px;}
.y5d{bottom:219.075000px;}
.y127{bottom:219.975000px;}
.yb2{bottom:220.575000px;}
.y51{bottom:229.275000px;}
.y11c{bottom:230.475000px;}
.y82{bottom:236.175000px;}
.y10c{bottom:237.375000px;}
.ye6{bottom:237.675000px;}
.y5c{bottom:239.175000px;}
.yb1{bottom:241.275000px;}
.y11b{bottom:247.575000px;}
.y50{bottom:249.975000px;}
.y11a{bottom:254.475000px;}
.y10b{bottom:256.275000px;}
.y81{bottom:256.875000px;}
.y5b{bottom:258.075000px;}
.yb0{bottom:261.975000px;}
.y126{bottom:264.975000px;}
.y119{bottom:265.575000px;}
.y4f{bottom:270.675000px;}
.y125{bottom:271.875000px;}
.y5a{bottom:276.975000px;}
.y80{bottom:277.575000px;}
.ye5{bottom:279.375000px;}
.yf4{bottom:282.675000px;}
.y124{bottom:282.975000px;}
.y4e{bottom:291.375000px;}
.y59{bottom:295.875000px;}
.y10a{bottom:296.475000px;}
.y7f{bottom:298.275000px;}
.ye4{bottom:300.075000px;}
.yaf{bottom:303.375000px;}
.y24{bottom:310.575000px;}
.y4d{bottom:312.075000px;}
.y58{bottom:315.075000px;}
.y109{bottom:317.175000px;}
.y7e{bottom:318.975000px;}
.ye3{bottom:320.775000px;}
.yae{bottom:323.775000px;}
.yf3{bottom:324.075000px;}
.y4c{bottom:332.820000px;}
.y57{bottom:334.005000px;}
.y108{bottom:337.905000px;}
.y7d{bottom:339.705000px;}
.ye2{bottom:341.505000px;}
.yf2{bottom:344.820000px;}
.y23{bottom:352.005000px;}
.y4b{bottom:353.505000px;}
.y107{bottom:358.620000px;}
.y7c{bottom:360.405000px;}
.ye1{bottom:362.205000px;}
.yad{bottom:365.505000px;}
.y22{bottom:372.705000px;}
.y4a{bottom:374.205000px;}
.y106{bottom:379.320000px;}
.y7b{bottom:381.120000px;}
.ye0{bottom:382.905000px;}
.yac{bottom:386.205000px;}
.y49{bottom:394.905000px;}
.y105{bottom:400.005000px;}
.y7a{bottom:401.820000px;}
.ydf{bottom:403.620000px;}
.yab{bottom:406.905000px;}
.y21{bottom:414.120000px;}
.y48{bottom:415.620000px;}
.y104{bottom:420.705000px;}
.y79{bottom:422.505000px;}
.y123{bottom:424.005000px;}
.yde{bottom:424.320000px;}
.yaa{bottom:427.620000px;}
.y20{bottom:434.820000px;}
.y47{bottom:436.320000px;}
.y103{bottom:441.405000px;}
.y93{bottom:443.205000px;}
.ydd{bottom:445.005000px;}
.ya9{bottom:448.320000px;}
.y1f{bottom:455.505000px;}
.y46{bottom:457.005000px;}
.y102{bottom:462.120000px;}
.y78{bottom:463.905000px;}
.ydc{bottom:465.705000px;}
.ya8{bottom:469.005000px;}
.y1e{bottom:476.205000px;}
.y45{bottom:477.705000px;}
.y101{bottom:482.820000px;}
.y77{bottom:484.320000px;}
.y92{bottom:484.620000px;}
.ydb{bottom:486.405000px;}
.ya7{bottom:489.705000px;}
.y1d{bottom:496.905000px;}
.y44{bottom:498.405000px;}
.y100{bottom:503.550000px;}
.y91{bottom:505.350000px;}
.yda{bottom:507.150000px;}
.ya6{bottom:510.450000px;}
.y1c{bottom:517.650000px;}
.y43{bottom:519.150000px;}
.yff{bottom:524.250000px;}
.y76{bottom:526.050000px;}
.yd9{bottom:527.850000px;}
.ya5{bottom:531.150000px;}
.y1b{bottom:538.350000px;}
.y42{bottom:539.850000px;}
.yfe{bottom:544.950000px;}
.y75{bottom:546.450000px;}
.y90{bottom:546.750000px;}
.yd8{bottom:548.550000px;}
.ya4{bottom:551.850000px;}
.y1a{bottom:559.050000px;}
.y41{bottom:560.550000px;}
.yfd{bottom:565.650000px;}
.y8f{bottom:567.450000px;}
.yd7{bottom:569.250000px;}
.ya3{bottom:572.550000px;}
.y19{bottom:579.750000px;}
.y40{bottom:581.250000px;}
.yfc{bottom:586.350000px;}
.y74{bottom:588.150000px;}
.yd6{bottom:589.950000px;}
.ya2{bottom:593.250000px;}
.y18{bottom:600.450000px;}
.y3f{bottom:601.950000px;}
.yfb{bottom:607.050000px;}
.y73{bottom:608.550000px;}
.y8e{bottom:608.850000px;}
.yd5{bottom:610.650000px;}
.ya1{bottom:613.950000px;}
.y17{bottom:621.150000px;}
.y3e{bottom:622.650000px;}
.yfa{bottom:627.750000px;}
.y8d{bottom:629.550000px;}
.y122{bottom:631.050000px;}
.yd4{bottom:631.350000px;}
.ya0{bottom:634.650000px;}
.y3d{bottom:643.350000px;}
.y72{bottom:650.250000px;}
.yd3{bottom:652.050000px;}
.yf1{bottom:654.750000px;}
.y9f{bottom:655.350000px;}
.y16{bottom:662.550000px;}
.y3c{bottom:664.050000px;}
.yf9{bottom:669.150000px;}
.y71{bottom:670.980000px;}
.yd2{bottom:672.780000px;}
.yf0{bottom:673.980000px;}
.y9e{bottom:676.080000px;}
.y15{bottom:683.280000px;}
.y3b{bottom:684.780000px;}
.yf8{bottom:689.280000px;}
.y70{bottom:691.695000px;}
.yef{bottom:692.880000px;}
.yd1{bottom:693.480000px;}
.y14{bottom:703.980000px;}
.y3a{bottom:705.480000px;}
.yf7{bottom:708.480000px;}
.yee{bottom:711.780000px;}
.y6f{bottom:712.380000px;}
.yd0{bottom:714.195000px;}
.y9d{bottom:717.480000px;}
.y13{bottom:724.695000px;}
.y39{bottom:726.195000px;}
.yf6{bottom:727.380000px;}
.yed{bottom:730.695000px;}
.y6e{bottom:733.080000px;}
.ycf{bottom:734.880000px;}
.y9c{bottom:737.580000px;}
.y12{bottom:745.380000px;}
.y38{bottom:746.880000px;}
.yec{bottom:749.880000px;}
.y6d{bottom:753.780000px;}
.y56{bottom:755.280000px;}
.yce{bottom:755.580000px;}
.y9b{bottom:756.780000px;}
.y11{bottom:766.080000px;}
.y37{bottom:767.580000px;}
.yeb{bottom:768.795000px;}
.y6c{bottom:774.480000px;}
.y9a{bottom:775.695000px;}
.ycd{bottom:776.295000px;}
.y10{bottom:786.795000px;}
.y36{bottom:788.295000px;}
.y99{bottom:794.580000px;}
.y6b{bottom:795.195000px;}
.y121{bottom:796.695000px;}
.ycc{bottom:796.980000px;}
.yf{bottom:807.480000px;}
.y35{bottom:808.980000px;}
.y98{bottom:813.480000px;}
.y117{bottom:815.295000px;}
.y6a{bottom:815.880000px;}
.ycb{bottom:817.695000px;}
.y118{bottom:822.795000px;}
.ye{bottom:828.195000px;}
.y34{bottom:829.695000px;}
.y97{bottom:832.695000px;}
.y116{bottom:834.195000px;}
.y69{bottom:836.580000px;}
.yca{bottom:838.380000px;}
.y33{bottom:850.425000px;}
.y96{bottom:851.625000px;}
.y115{bottom:853.425000px;}
.y68{bottom:857.325000px;}
.yc9{bottom:859.125000px;}
.yd{bottom:869.625000px;}
.y32{bottom:871.125000px;}
.y114{bottom:872.325000px;}
.y67{bottom:878.025000px;}
.yc8{bottom:879.825000px;}
.y31{bottom:891.825000px;}
.y8c{bottom:898.125000px;}
.y66{bottom:898.725000px;}
.yc7{bottom:900.525000px;}
.yc{bottom:911.025000px;}
.y30{bottom:912.525000px;}
.y8b{bottom:917.025000px;}
.y65{bottom:919.425000px;}
.yc6{bottom:921.225000px;}
.yb{bottom:931.725000px;}
.y2f{bottom:933.225000px;}
.y8a{bottom:936.225000px;}
.y64{bottom:940.125000px;}
.yc5{bottom:941.925000px;}
.y2e{bottom:953.925000px;}
.y89{bottom:955.125000px;}
.y63{bottom:960.825000px;}
.yc4{bottom:962.625000px;}
.ya{bottom:974.625000px;}
.ybb{bottom:980.925000px;}
.yc3{bottom:983.325000px;}
.y9{bottom:995.325000px;}
.yba{bottom:999.825000px;}
.y62{bottom:1002.225000px;}
.yc2{bottom:1004.025000px;}
.y113{bottom:1015.755000px;}
.y8{bottom:1016.070000px;}
.yb9{bottom:1019.070000px;}
.y61{bottom:1022.355000px;}
.y12b{bottom:1036.455000px;}
.y2d{bottom:1036.755000px;}
.yb8{bottom:1037.955000px;}
.y60{bottom:1041.255000px;}
.yc1{bottom:1045.455000px;}
.y112{bottom:1057.170000px;}
.y7{bottom:1057.455000px;}
.y5f{bottom:1060.455000px;}
.yc0{bottom:1065.570000px;}
.y129{bottom:1065.855000px;}
.y6{bottom:1078.155000px;}
.y5e{bottom:1079.370000px;}
.ybf{bottom:1084.455000px;}
.y5{bottom:1098.870000px;}
.ybe{bottom:1103.370000px;}
.y2c{bottom:1119.570000px;}
.ybd{bottom:1122.570000px;}
.y2a{bottom:1139.955000px;}
.y4{bottom:1140.255000px;}
.ybc{bottom:1141.455000px;}
.y2b{bottom:1148.370000px;}
.y88{bottom:1148.655000px;}
.y1{bottom:1193.400000px;}
.h5{height:38.865234px;}
.hd{height:41.220703px;}
.ha{height:47.109375px;}
.h7{height:48.375000px;}
.h6{height:58.886719px;}
.h8{height:64.546875px;}
.hc{height:64.743164px;}
.hb{height:64.775391px;}
.h9{height:70.628906px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.he{height:80.709375px;}
.h4{height:1262.681100px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.081250px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.537500px;}
.xd{left:132.637500px;}
.x10{left:133.837500px;}
.x4{left:138.637500px;}
.x1{left:150.645000px;}
.xc{left:180.675000px;}
.x1d{left:195.056250px;}
.x1e{left:207.075000px;}
.x1b{left:235.556250px;}
.x19{left:237.356250px;}
.x1c{left:241.575000px;}
.x1a{left:248.775000px;}
.x15{left:310.601250px;}
.x16{left:316.620000px;}
.x7{left:339.120000px;}
.x9{left:343.620000px;}
.x5{left:348.120000px;}
.xa{left:357.386250px;}
.xb{left:363.405000px;}
.x6{left:446.550000px;}
.x14{left:449.831250px;}
.x11{left:455.250000px;}
.x12{left:466.031250px;}
.x13{left:472.050000px;}
.xe{left:509.531250px;}
.xf{left:515.550000px;}
.x17{left:577.076250px;}
.x18{left:584.595000px;}
.x8{left:665.025000px;}
.x2{left:765.525000px;}
@media print{
.v3{vertical-align:-24.693333pt;}
.v2{vertical-align:-8.533333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.866667pt;}
.ls13{letter-spacing:-4.608000pt;}
.ls22{letter-spacing:-2.133333pt;}
.ls6{letter-spacing:-1.792000pt;}
.ls4{letter-spacing:-1.066667pt;}
.ls19{letter-spacing:-1.045333pt;}
.lsb{letter-spacing:-0.725333pt;}
.ls8{letter-spacing:-0.682667pt;}
.ls18{letter-spacing:-0.421333pt;}
.ls10{letter-spacing:-0.362667pt;}
.ls1a{letter-spacing:-0.341333pt;}
.ls17{letter-spacing:-0.021333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.021333pt;}
.lse{letter-spacing:0.330667pt;}
.lsf{letter-spacing:0.341333pt;}
.ls9{letter-spacing:0.362667pt;}
.ls7{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.437333pt;}
.ls1{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls2{letter-spacing:1.066667pt;}
.lsa{letter-spacing:1.088000pt;}
.ls15{letter-spacing:1.450667pt;}
.ls20{letter-spacing:2.080000pt;}
.ls1f{letter-spacing:2.133333pt;}
.ls1d{letter-spacing:5.333333pt;}
.ls1e{letter-spacing:5.440000pt;}
.lsc{letter-spacing:6.400000pt;}
.ls11{letter-spacing:6.666667pt;}
.lsd{letter-spacing:8.533333pt;}
.ls16{letter-spacing:9.600000pt;}
.ls21{letter-spacing:12.800000pt;}
.ls12{letter-spacing:12.853333pt;}
.ls1c{letter-spacing:45.866667pt;}
.ls1b{letter-spacing:172.933333pt;}
.ws2{word-spacing:-42.666667pt;}
.ws8{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.362667pt;}
.wsc{word-spacing:-16.341333pt;}
.ws3{word-spacing:-16.021333pt;}
.ws1{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.978667pt;}
.ws11{word-spacing:-15.658667pt;}
.wsd{word-spacing:-15.637333pt;}
.wsa{word-spacing:-15.317333pt;}
.wsb{word-spacing:-15.274667pt;}
.wse{word-spacing:-15.200000pt;}
.ws10{word-spacing:-14.954667pt;}
.ws9{word-spacing:-14.933333pt;}
.ws12{word-spacing:-14.666667pt;}
.ws14{word-spacing:-13.866667pt;}
.ws13{word-spacing:-13.813333pt;}
.ws5{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws4{word-spacing:-8.800000pt;}
.ws6{word-spacing:0.000000pt;}
._25{margin-left:-7.589333pt;}
._11{margin-left:-6.608000pt;}
._30{margin-left:-5.696000pt;}
._3{margin-left:-4.661333pt;}
._5{margin-left:-3.669333pt;}
._4{margin-left:-2.576000pt;}
._1{margin-left:-1.386667pt;}
._0{width:0.960000pt;}
._2{width:1.893333pt;}
._8{width:3.184000pt;}
._1a{width:4.122667pt;}
._19{width:5.056000pt;}
._9{width:5.952000pt;}
._b{width:6.869333pt;}
._a{width:8.234667pt;}
._1e{width:9.290667pt;}
._1d{width:10.218667pt;}
._18{width:11.264000pt;}
._17{width:12.160000pt;}
._10{width:13.061333pt;}
._12{width:14.378667pt;}
._13{width:15.349333pt;}
._1c{width:16.970667pt;}
._7{width:17.872000pt;}
._6{width:18.906667pt;}
._26{width:19.834667pt;}
._f{width:20.736000pt;}
._e{width:21.994667pt;}
._16{width:23.392000pt;}
._15{width:24.378667pt;}
._14{width:25.392000pt;}
._1b{width:26.426667pt;}
._22{width:27.408000pt;}
._21{width:28.522667pt;}
._23{width:29.669333pt;}
._d{width:31.072000pt;}
._c{width:32.554667pt;}
._27{width:34.282667pt;}
._28{width:35.456000pt;}
._20{width:36.394667pt;}
._1f{width:37.354667pt;}
._2b{width:38.272000pt;}
._2c{width:39.786667pt;}
._2d{width:40.874667pt;}
._24{width:42.048000pt;}
._2a{width:45.040000pt;}
._29{width:46.080000pt;}
._2f{width:47.098667pt;}
._2e{width:172.933333pt;}
.fs3{font-size:35.200000pt;}
.fs6{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.966667pt;}
.y2{bottom:69.366667pt;}
.y29{bottom:97.366667pt;}
.yea{bottom:101.100000pt;}
.yb7{bottom:104.033333pt;}
.y111{bottom:105.633333pt;}
.y12e{bottom:111.766667pt;}
.y28{bottom:112.833333pt;}
.y87{bottom:117.900000pt;}
.y95{bottom:118.966667pt;}
.yb6{bottom:122.433333pt;}
.y27{bottom:128.033333pt;}
.y94{bottom:128.833333pt;}
.y12d{bottom:130.166667pt;}
.y55{bottom:134.160000pt;}
.y86{bottom:136.293333pt;}
.ye9{bottom:137.893333pt;}
.yb5{bottom:140.826667pt;}
.y110{bottom:142.440000pt;}
.y120{bottom:143.493333pt;}
.y54{bottom:144.026667pt;}
.y12c{bottom:148.600000pt;}
.y26{bottom:149.666667pt;}
.y85{bottom:154.733333pt;}
.ye8{bottom:156.066667pt;}
.y11f{bottom:158.733333pt;}
.yb4{bottom:159.266667pt;}
.y25{bottom:159.533333pt;}
.y10f{bottom:160.333333pt;}
.y128{bottom:164.866667pt;}
.y53{bottom:167.000000pt;}
.y84{bottom:173.133333pt;}
.y11e{bottom:174.200000pt;}
.y12a{bottom:174.733333pt;}
.y10e{bottom:177.400000pt;}
.yb3{bottom:177.666667pt;}
.yf5{bottom:185.133333pt;}
.y52{bottom:185.400000pt;}
.y11d{bottom:189.400000pt;}
.y83{bottom:191.533333pt;}
.ye7{bottom:193.133333pt;}
.y10d{bottom:194.200000pt;}
.y5d{bottom:194.733333pt;}
.y127{bottom:195.533333pt;}
.yb2{bottom:196.066667pt;}
.y51{bottom:203.800000pt;}
.y11c{bottom:204.866667pt;}
.y82{bottom:209.933333pt;}
.y10c{bottom:211.000000pt;}
.ye6{bottom:211.266667pt;}
.y5c{bottom:212.600000pt;}
.yb1{bottom:214.466667pt;}
.y11b{bottom:220.066667pt;}
.y50{bottom:222.200000pt;}
.y11a{bottom:226.200000pt;}
.y10b{bottom:227.800000pt;}
.y81{bottom:228.333333pt;}
.y5b{bottom:229.400000pt;}
.yb0{bottom:232.866667pt;}
.y126{bottom:235.533333pt;}
.y119{bottom:236.066667pt;}
.y4f{bottom:240.600000pt;}
.y125{bottom:241.666667pt;}
.y5a{bottom:246.200000pt;}
.y80{bottom:246.733333pt;}
.ye5{bottom:248.333333pt;}
.yf4{bottom:251.266667pt;}
.y124{bottom:251.533333pt;}
.y4e{bottom:259.000000pt;}
.y59{bottom:263.000000pt;}
.y10a{bottom:263.533333pt;}
.y7f{bottom:265.133333pt;}
.ye4{bottom:266.733333pt;}
.yaf{bottom:269.666667pt;}
.y24{bottom:276.066667pt;}
.y4d{bottom:277.400000pt;}
.y58{bottom:280.066667pt;}
.y109{bottom:281.933333pt;}
.y7e{bottom:283.533333pt;}
.ye3{bottom:285.133333pt;}
.yae{bottom:287.800000pt;}
.yf3{bottom:288.066667pt;}
.y4c{bottom:295.840000pt;}
.y57{bottom:296.893333pt;}
.y108{bottom:300.360000pt;}
.y7d{bottom:301.960000pt;}
.ye2{bottom:303.560000pt;}
.yf2{bottom:306.506667pt;}
.y23{bottom:312.893333pt;}
.y4b{bottom:314.226667pt;}
.y107{bottom:318.773333pt;}
.y7c{bottom:320.360000pt;}
.ye1{bottom:321.960000pt;}
.yad{bottom:324.893333pt;}
.y22{bottom:331.293333pt;}
.y4a{bottom:332.626667pt;}
.y106{bottom:337.173333pt;}
.y7b{bottom:338.773333pt;}
.ye0{bottom:340.360000pt;}
.yac{bottom:343.293333pt;}
.y49{bottom:351.026667pt;}
.y105{bottom:355.560000pt;}
.y7a{bottom:357.173333pt;}
.ydf{bottom:358.773333pt;}
.yab{bottom:361.693333pt;}
.y21{bottom:368.106667pt;}
.y48{bottom:369.440000pt;}
.y104{bottom:373.960000pt;}
.y79{bottom:375.560000pt;}
.y123{bottom:376.893333pt;}
.yde{bottom:377.173333pt;}
.yaa{bottom:380.106667pt;}
.y20{bottom:386.506667pt;}
.y47{bottom:387.840000pt;}
.y103{bottom:392.360000pt;}
.y93{bottom:393.960000pt;}
.ydd{bottom:395.560000pt;}
.ya9{bottom:398.506667pt;}
.y1f{bottom:404.893333pt;}
.y46{bottom:406.226667pt;}
.y102{bottom:410.773333pt;}
.y78{bottom:412.360000pt;}
.ydc{bottom:413.960000pt;}
.ya8{bottom:416.893333pt;}
.y1e{bottom:423.293333pt;}
.y45{bottom:424.626667pt;}
.y101{bottom:429.173333pt;}
.y77{bottom:430.506667pt;}
.y92{bottom:430.773333pt;}
.ydb{bottom:432.360000pt;}
.ya7{bottom:435.293333pt;}
.y1d{bottom:441.693333pt;}
.y44{bottom:443.026667pt;}
.y100{bottom:447.600000pt;}
.y91{bottom:449.200000pt;}
.yda{bottom:450.800000pt;}
.ya6{bottom:453.733333pt;}
.y1c{bottom:460.133333pt;}
.y43{bottom:461.466667pt;}
.yff{bottom:466.000000pt;}
.y76{bottom:467.600000pt;}
.yd9{bottom:469.200000pt;}
.ya5{bottom:472.133333pt;}
.y1b{bottom:478.533333pt;}
.y42{bottom:479.866667pt;}
.yfe{bottom:484.400000pt;}
.y75{bottom:485.733333pt;}
.y90{bottom:486.000000pt;}
.yd8{bottom:487.600000pt;}
.ya4{bottom:490.533333pt;}
.y1a{bottom:496.933333pt;}
.y41{bottom:498.266667pt;}
.yfd{bottom:502.800000pt;}
.y8f{bottom:504.400000pt;}
.yd7{bottom:506.000000pt;}
.ya3{bottom:508.933333pt;}
.y19{bottom:515.333333pt;}
.y40{bottom:516.666667pt;}
.yfc{bottom:521.200000pt;}
.y74{bottom:522.800000pt;}
.yd6{bottom:524.400000pt;}
.ya2{bottom:527.333333pt;}
.y18{bottom:533.733333pt;}
.y3f{bottom:535.066667pt;}
.yfb{bottom:539.600000pt;}
.y73{bottom:540.933333pt;}
.y8e{bottom:541.200000pt;}
.yd5{bottom:542.800000pt;}
.ya1{bottom:545.733333pt;}
.y17{bottom:552.133333pt;}
.y3e{bottom:553.466667pt;}
.yfa{bottom:558.000000pt;}
.y8d{bottom:559.600000pt;}
.y122{bottom:560.933333pt;}
.yd4{bottom:561.200000pt;}
.ya0{bottom:564.133333pt;}
.y3d{bottom:571.866667pt;}
.y72{bottom:578.000000pt;}
.yd3{bottom:579.600000pt;}
.yf1{bottom:582.000000pt;}
.y9f{bottom:582.533333pt;}
.y16{bottom:588.933333pt;}
.y3c{bottom:590.266667pt;}
.yf9{bottom:594.800000pt;}
.y71{bottom:596.426667pt;}
.yd2{bottom:598.026667pt;}
.yf0{bottom:599.093333pt;}
.y9e{bottom:600.960000pt;}
.y15{bottom:607.360000pt;}
.y3b{bottom:608.693333pt;}
.yf8{bottom:612.693333pt;}
.y70{bottom:614.840000pt;}
.yef{bottom:615.893333pt;}
.yd1{bottom:616.426667pt;}
.y14{bottom:625.760000pt;}
.y3a{bottom:627.093333pt;}
.yf7{bottom:629.760000pt;}
.yee{bottom:632.693333pt;}
.y6f{bottom:633.226667pt;}
.yd0{bottom:634.840000pt;}
.y9d{bottom:637.760000pt;}
.y13{bottom:644.173333pt;}
.y39{bottom:645.506667pt;}
.yf6{bottom:646.560000pt;}
.yed{bottom:649.506667pt;}
.y6e{bottom:651.626667pt;}
.ycf{bottom:653.226667pt;}
.y9c{bottom:655.626667pt;}
.y12{bottom:662.560000pt;}
.y38{bottom:663.893333pt;}
.yec{bottom:666.560000pt;}
.y6d{bottom:670.026667pt;}
.y56{bottom:671.360000pt;}
.yce{bottom:671.626667pt;}
.y9b{bottom:672.693333pt;}
.y11{bottom:680.960000pt;}
.y37{bottom:682.293333pt;}
.yeb{bottom:683.373333pt;}
.y6c{bottom:688.426667pt;}
.y9a{bottom:689.506667pt;}
.ycd{bottom:690.040000pt;}
.y10{bottom:699.373333pt;}
.y36{bottom:700.706667pt;}
.y99{bottom:706.293333pt;}
.y6b{bottom:706.840000pt;}
.y121{bottom:708.173333pt;}
.ycc{bottom:708.426667pt;}
.yf{bottom:717.760000pt;}
.y35{bottom:719.093333pt;}
.y98{bottom:723.093333pt;}
.y117{bottom:724.706667pt;}
.y6a{bottom:725.226667pt;}
.ycb{bottom:726.840000pt;}
.y118{bottom:731.373333pt;}
.ye{bottom:736.173333pt;}
.y34{bottom:737.506667pt;}
.y97{bottom:740.173333pt;}
.y116{bottom:741.506667pt;}
.y69{bottom:743.626667pt;}
.yca{bottom:745.226667pt;}
.y33{bottom:755.933333pt;}
.y96{bottom:757.000000pt;}
.y115{bottom:758.600000pt;}
.y68{bottom:762.066667pt;}
.yc9{bottom:763.666667pt;}
.yd{bottom:773.000000pt;}
.y32{bottom:774.333333pt;}
.y114{bottom:775.400000pt;}
.y67{bottom:780.466667pt;}
.yc8{bottom:782.066667pt;}
.y31{bottom:792.733333pt;}
.y8c{bottom:798.333333pt;}
.y66{bottom:798.866667pt;}
.yc7{bottom:800.466667pt;}
.yc{bottom:809.800000pt;}
.y30{bottom:811.133333pt;}
.y8b{bottom:815.133333pt;}
.y65{bottom:817.266667pt;}
.yc6{bottom:818.866667pt;}
.yb{bottom:828.200000pt;}
.y2f{bottom:829.533333pt;}
.y8a{bottom:832.200000pt;}
.y64{bottom:835.666667pt;}
.yc5{bottom:837.266667pt;}
.y2e{bottom:847.933333pt;}
.y89{bottom:849.000000pt;}
.y63{bottom:854.066667pt;}
.yc4{bottom:855.666667pt;}
.ya{bottom:866.333333pt;}
.ybb{bottom:871.933333pt;}
.yc3{bottom:874.066667pt;}
.y9{bottom:884.733333pt;}
.yba{bottom:888.733333pt;}
.y62{bottom:890.866667pt;}
.yc2{bottom:892.466667pt;}
.y113{bottom:902.893333pt;}
.y8{bottom:903.173333pt;}
.yb9{bottom:905.840000pt;}
.y61{bottom:908.760000pt;}
.y12b{bottom:921.293333pt;}
.y2d{bottom:921.560000pt;}
.yb8{bottom:922.626667pt;}
.y60{bottom:925.560000pt;}
.yc1{bottom:929.293333pt;}
.y112{bottom:939.706667pt;}
.y7{bottom:939.960000pt;}
.y5f{bottom:942.626667pt;}
.yc0{bottom:947.173333pt;}
.y129{bottom:947.426667pt;}
.y6{bottom:958.360000pt;}
.y5e{bottom:959.440000pt;}
.ybf{bottom:963.960000pt;}
.y5{bottom:976.773333pt;}
.ybe{bottom:980.773333pt;}
.y2c{bottom:995.173333pt;}
.ybd{bottom:997.840000pt;}
.y2a{bottom:1013.293333pt;}
.y4{bottom:1013.560000pt;}
.ybc{bottom:1014.626667pt;}
.y2b{bottom:1020.773333pt;}
.y88{bottom:1021.026667pt;}
.y1{bottom:1060.800000pt;}
.h5{height:34.546875pt;}
.hd{height:36.640625pt;}
.ha{height:41.875000pt;}
.h7{height:43.000000pt;}
.h6{height:52.343750pt;}
.h8{height:57.375000pt;}
.hc{height:57.549479pt;}
.hb{height:57.578125pt;}
.h9{height:62.781250pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.he{height:71.741667pt;}
.h4{height:1122.383200pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.850000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.366667pt;}
.xd{left:117.900000pt;}
.x10{left:118.966667pt;}
.x4{left:123.233333pt;}
.x1{left:133.906667pt;}
.xc{left:160.600000pt;}
.x1d{left:173.383333pt;}
.x1e{left:184.066667pt;}
.x1b{left:209.383333pt;}
.x19{left:210.983333pt;}
.x1c{left:214.733333pt;}
.x1a{left:221.133333pt;}
.x15{left:276.090000pt;}
.x16{left:281.440000pt;}
.x7{left:301.440000pt;}
.x9{left:305.440000pt;}
.x5{left:309.440000pt;}
.xa{left:317.676667pt;}
.xb{left:323.026667pt;}
.x6{left:396.933333pt;}
.x14{left:399.850000pt;}
.x11{left:404.666667pt;}
.x12{left:414.250000pt;}
.x13{left:419.600000pt;}
.xe{left:452.916667pt;}
.xf{left:458.266667pt;}
.x17{left:512.956667pt;}
.x18{left:519.640000pt;}
.x8{left:591.133333pt;}
.x2{left:680.466667pt;}
}




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