
    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_22c75f7ae7a23d08733fc4d7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_9c0228cd6622d0112cdf1883.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_bcd3084abd8c9ee4b97a1f52.woff')format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_1cdf66a9a3cf76e74f7051ea.woff')format("woff");}.ff4{font-family:ff4;line-height:0.674316;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_bade23b9632422b635b1bbd2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_0639219d411ff6299566003a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d2dc71bf1a74191f60024fec.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_784c9bf30d84ee24c41ae5f7.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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);}
.v4{vertical-align:-29.880000px;}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.424000px;}
.v3{vertical-align:29.880000px;}
.ls27{letter-spacing:-1.806000px;}
.ls1b{letter-spacing:-1.704000px;}
.ls13{letter-spacing:-1.626000px;}
.ls16{letter-spacing:-1.368000px;}
.ls14{letter-spacing:-1.344000px;}
.ls19{letter-spacing:-1.326000px;}
.ls15{letter-spacing:-1.266000px;}
.ls1a{letter-spacing:-0.732000px;}
.lsa{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls18{letter-spacing:-0.068400px;}
.ls8{letter-spacing:-0.066000px;}
.ls24{letter-spacing:-0.037800px;}
.ls21{letter-spacing:-0.014760px;}
.ls1f{letter-spacing:-0.013320px;}
.ls25{letter-spacing:-0.011160px;}
.ls1c{letter-spacing:-0.007560px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.006840px;}
.ls3{letter-spacing:0.009186px;}
.ls2{letter-spacing:0.014400px;}
.lsd{letter-spacing:0.045360px;}
.ls23{letter-spacing:0.047520px;}
.ls10{letter-spacing:0.048960px;}
.ls1{letter-spacing:0.090000px;}
.ls1e{letter-spacing:0.098400px;}
.ls26{letter-spacing:0.105600px;}
.ls12{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.160800px;}
.lsb{letter-spacing:0.173400px;}
.ls17{letter-spacing:0.180000px;}
.ls0{letter-spacing:13.347360px;}
.ls28{letter-spacing:21.720000px;}
.ls20{letter-spacing:47.726640px;}
.ls11{letter-spacing:55.286640px;}
.lsf{letter-spacing:64.646640px;}
.ls1d{letter-spacing:80.846640px;}
.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:-14.493600px;}
.ws1f{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.ws2c{word-spacing:-13.387200px;}
.ws1e{word-spacing:-13.342800px;}
.ws31{word-spacing:-13.332000px;}
.ws2a{word-spacing:-13.324800px;}
.ws20{word-spacing:-13.275360px;}
.ws2d{word-spacing:-13.273920px;}
.ws3{word-spacing:-13.226400px;}
.ws28{word-spacing:-13.218840px;}
.ws2f{word-spacing:-13.215240px;}
.ws29{word-spacing:-13.213080px;}
.ws2b{word-spacing:-13.211640px;}
.ws2e{word-spacing:-13.188600px;}
.ws30{word-spacing:-13.158000px;}
.ws4{word-spacing:-13.039800px;}
.ws26{word-spacing:-12.494400px;}
.ws23{word-spacing:-11.960400px;}
.ws25{word-spacing:-11.900400px;}
.ws24{word-spacing:-11.858400px;}
.ws22{word-spacing:-11.600400px;}
.ws27{word-spacing:-11.522400px;}
.ws32{word-spacing:-11.420400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws1d{word-spacing:-0.420000px;}
.ws1c{word-spacing:-0.360000px;}
.ws1a{word-spacing:-0.264000px;}
.ws1b{word-spacing:-0.198000px;}
.ws8{word-spacing:-0.144000px;}
.ws21{word-spacing:-0.060120px;}
.wsb{word-spacing:-0.018000px;}
.ws7{word-spacing:0.000000px;}
.wsc{word-spacing:0.012000px;}
.ws9{word-spacing:0.078000px;}
.wsa{word-spacing:0.240000px;}
.ws12{word-spacing:3.714000px;}
.ws17{word-spacing:3.846000px;}
.wse{word-spacing:4.068000px;}
.wsf{word-spacing:4.086000px;}
.wsd{word-spacing:4.116000px;}
.ws15{word-spacing:4.206000px;}
.ws14{word-spacing:4.266000px;}
.ws10{word-spacing:4.272000px;}
.ws6{word-spacing:4.304880px;}
.ws19{word-spacing:4.368000px;}
.ws18{word-spacing:4.386000px;}
.ws16{word-spacing:4.452000px;}
.ws13{word-spacing:4.488000px;}
.ws11{word-spacing:4.536000px;}
._2{margin-left:-3.191400px;}
._a{margin-left:-2.164320px;}
._0{margin-left:-1.110000px;}
._1{width:1.342164px;}
._5{width:3.066000px;}
._9{width:4.509000px;}
._6{width:5.932080px;}
._7{width:7.093560px;}
._8{width:8.717400px;}
._4{width:10.345920px;}
._3{width:11.357280px;}
._e{width:14.238720px;}
._d{width:15.330600px;}
._c{width:16.352640px;}
._10{width:20.405316px;}
._f{width:21.733200px;}
._12{width:26.993520px;}
._11{width:29.973600px;}
._14{width:31.408920px;}
._13{width:37.457712px;}
._b{width:169.890840px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:43.482000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:7.830000px;}
.y58{bottom:7.920000px;}
.y6d{bottom:7.950000px;}
.ya6{bottom:15.390000px;}
.y2{bottom:73.380000px;}
.y24{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.yb7{bottom:113.250000px;}
.yfe{bottom:113.970000px;}
.y9d{bottom:121.260000px;}
.yfd{bottom:131.520000px;}
.y78{bottom:135.660000px;}
.y52{bottom:137.910000px;}
.y9c{bottom:148.620000px;}
.yb6{bottom:148.800000px;}
.y51{bottom:155.460000px;}
.yfc{bottom:158.070000px;}
.y77{bottom:162.930000px;}
.y22{bottom:164.550000px;}
.yb5{bottom:166.440000px;}
.y50{bottom:173.100000px;}
.yfb{bottom:175.710000px;}
.y9b{bottom:175.980000px;}
.y21{bottom:182.190000px;}
.y76{bottom:190.290000px;}
.y4f{bottom:190.650000px;}
.yb4{bottom:201.990000px;}
.yfa{bottom:202.260000px;}
.yda{bottom:203.250000px;}
.y9a{bottom:203.340000px;}
.y4e{bottom:208.200000px;}
.y75{bottom:217.650000px;}
.y20{bottom:217.740000px;}
.yb3{bottom:219.540000px;}
.yf9{bottom:219.900000px;}
.y99{bottom:230.610000px;}
.y4d{bottom:234.840000px;}
.y1f{bottom:235.380000px;}
.yd9{bottom:238.800000px;}
.y74{bottom:245.010000px;}
.yf8{bottom:246.810000px;}
.yb2{bottom:255.180000px;}
.yd8{bottom:256.440000px;}
.y98{bottom:257.970000px;}
.y4c{bottom:270.390000px;}
.y1e{bottom:270.930000px;}
.y73{bottom:272.280000px;}
.yb1{bottom:272.730000px;}
.yd7{bottom:273.990000px;}
.y4b{bottom:287.940000px;}
.y1d{bottom:288.480000px;}
.yb0{bottom:290.370000px;}
.yf7{bottom:295.050000px;}
.y72{bottom:299.640000px;}
.y4a{bottom:305.580000px;}
.y1c{bottom:306.120000px;}
.y97{bottom:306.660000px;}
.yd6{bottom:309.540000px;}
.yf6{bottom:321.960000px;}
.y49{bottom:323.130000px;}
.yaf{bottom:325.920000px;}
.y71{bottom:327.000000px;}
.yd5{bottom:327.180000px;}
.y1b{bottom:333.030000px;}
.y48{bottom:340.770000px;}
.y96{bottom:342.300000px;}
.yae{bottom:343.470000px;}
.y70{bottom:354.270000px;}
.y47{bottom:358.320000px;}
.yf5{bottom:358.950000px;}
.y95{bottom:359.850000px;}
.yad{bottom:361.110000px;}
.yd4{bottom:362.730000px;}
.y46{bottom:375.870000px;}
.yf4{bottom:376.590000px;}
.y94{bottom:377.400000px;}
.yd3{bottom:380.370000px;}
.y1a{bottom:381.630000px;}
.yac{bottom:388.020000px;}
.y45{bottom:393.510000px;}
.yf3{bottom:394.140000px;}
.y6f{bottom:408.990000px;}
.y93{bottom:410.430000px;}
.yf2{bottom:411.690000px;}
.yd2{bottom:415.920000px;}
.y19{bottom:418.620000px;}
.y44{bottom:420.060000px;}
.yf1{bottom:429.330000px;}
.yd1{bottom:433.470000px;}
.y18{bottom:436.170000px;}
.yab{bottom:436.260000px;}
.y6e{bottom:436.350000px;}
.y92{bottom:437.700000px;}
.yf0{bottom:446.880000px;}
.yd0{bottom:451.110000px;}
.y17{bottom:453.810000px;}
.y43{bottom:455.700000px;}
.y6c{bottom:463.620000px;}
.y91{bottom:465.060000px;}
.ycf{bottom:468.660000px;}
.yaa{bottom:471.480000px;}
.yef{bottom:473.820000px;}
.y42{bottom:482.280000px;}
.ya9{bottom:489.030000px;}
.y16{bottom:489.390000px;}
.y6b{bottom:491.010000px;}
.yce{bottom:504.330000px;}
.y15{bottom:507.030000px;}
.yee{bottom:510.900000px;}
.y90{bottom:513.780000px;}
.y41{bottom:517.830000px;}
.y6a{bottom:518.370000px;}
.ycd{bottom:521.880000px;}
.ya8{bottom:522.060000px;}
.y14{bottom:524.580000px;}
.y40{bottom:535.470000px;}
.yed{bottom:537.720000px;}
.ycc{bottom:539.430000px;}
.y13{bottom:542.130000px;}
.y69{bottom:545.730000px;}
.ya7{bottom:549.330000px;}
.y8f{bottom:549.420000px;}
.y3f{bottom:553.020000px;}
.ycb{bottom:557.070000px;}
.y8e{bottom:566.970000px;}
.y3e{bottom:570.660000px;}
.y68{bottom:573.000000px;}
.yec{bottom:575.070000px;}
.ya5{bottom:576.690000px;}
.y12{bottom:577.770000px;}
.y8d{bottom:584.520000px;}
.yca{bottom:592.620000px;}
.y11{bottom:595.320000px;}
.y3d{bottom:597.210000px;}
.y8c{bottom:602.160000px;}
.yc9{bottom:610.260000px;}
.ya4{bottom:611.520000px;}
.y67{bottom:621.690000px;}
.yeb{bottom:623.400000px;}
.yc8{bottom:627.810000px;}
.y10{bottom:630.960000px;}
.y3c{bottom:632.760000px;}
.y8b{bottom:635.100000px;}
.yea{bottom:640.950000px;}
.yf{bottom:648.510000px;}
.y3b{bottom:650.400000px;}
.y66{bottom:657.330000px;}
.ye9{bottom:658.590000px;}
.ya3{bottom:660.210000px;}
.y8a{bottom:662.460000px;}
.yc7{bottom:663.360000px;}
.y3a{bottom:667.950000px;}
.y65{bottom:674.880000px;}
.yc6{bottom:681.000000px;}
.ye{bottom:684.060000px;}
.y39{bottom:685.590000px;}
.y89{bottom:689.820000px;}
.y64{bottom:692.520000px;}
.ye8{bottom:694.140000px;}
.ya2{bottom:695.850000px;}
.yc5{bottom:698.550000px;}
.yd{bottom:701.700000px;}
.y38{bottom:703.140000px;}
.ye7{bottom:711.690000px;}
.ya1{bottom:713.400000px;}
.yc4{bottom:716.190000px;}
.y88{bottom:717.090000px;}
.yc{bottom:719.250000px;}
.y37{bottom:720.690000px;}
.y63{bottom:725.460000px;}
.ya0{bottom:730.950000px;}
.yb{bottom:736.890000px;}
.y87{bottom:744.450000px;}
.y36{bottom:747.330000px;}
.y9f{bottom:748.590000px;}
.yc3{bottom:751.740000px;}
.y62{bottom:752.820000px;}
.ya{bottom:763.800000px;}
.ye6{bottom:764.880000px;}
.y9e{bottom:766.140000px;}
.yc2{bottom:769.290000px;}
.y86{bottom:771.810000px;}
.y61{bottom:780.090000px;}
.ye5{bottom:782.520000px;}
.y35{bottom:782.880000px;}
.yc1{bottom:786.930000px;}
.y108{bottom:787.290000px;}
.y85{bottom:799.170000px;}
.ye4{bottom:800.070000px;}
.y34{bottom:800.520000px;}
.yc0{bottom:804.480000px;}
.y107{bottom:804.930000px;}
.y60{bottom:807.450000px;}
.y9{bottom:812.040000px;}
.y33{bottom:818.070000px;}
.ybf{bottom:822.030000px;}
.y106{bottom:822.480000px;}
.y84{bottom:826.440000px;}
.y5f{bottom:834.810000px;}
.y32{bottom:835.620000px;}
.y8{bottom:847.860000px;}
.y105{bottom:849.030000px;}
.ye3{bottom:853.260000px;}
.y83{bottom:853.800000px;}
.ybe{bottom:857.670000px;}
.y5e{bottom:862.170000px;}
.y31{bottom:862.530000px;}
.y104{bottom:866.670000px;}
.ye2{bottom:870.810000px;}
.ybd{bottom:875.220000px;}
.y82{bottom:881.160000px;}
.y7{bottom:883.860000px;}
.y103{bottom:884.220000px;}
.ye1{bottom:888.450000px;}
.y5d{bottom:889.440000px;}
.ybc{bottom:892.860000px;}
.ye0{bottom:906.000000px;}
.y81{bottom:908.430000px;}
.y30{bottom:910.860000px;}
.y5c{bottom:916.800000px;}
.y6{bottom:920.059500px;}
.y2f{bottom:928.410000px;}
.y80{bottom:935.790000px;}
.ydf{bottom:941.550000px;}
.y5a{bottom:944.160000px;}
.y2e{bottom:945.960000px;}
.y5{bottom:946.902000px;}
.yde{bottom:959.190000px;}
.y7f{bottom:963.150000px;}
.y2d{bottom:963.600000px;}
.y59{bottom:971.430000px;}
.y102{bottom:972.600000px;}
.y4{bottom:974.352000px;}
.y2c{bottom:981.150000px;}
.y101{bottom:990.150000px;}
.y7e{bottom:990.510000px;}
.ydd{bottom:994.740000px;}
.y57{bottom:998.790000px;}
.ybb{bottom:999.150000px;}
.y3{bottom:1012.230000px;}
.ydc{bottom:1012.320000px;}
.y2b{bottom:1016.820000px;}
.y7d{bottom:1017.810000px;}
.ydb{bottom:1029.960000px;}
.y2a{bottom:1034.370000px;}
.y7c{bottom:1045.170000px;}
.y56{bottom:1047.510000px;}
.y29{bottom:1051.920000px;}
.y28{bottom:1069.560000px;}
.yba{bottom:1069.920000px;}
.y7b{bottom:1072.530000px;}
.y100{bottom:1078.560000px;}
.y55{bottom:1083.150000px;}
.y27{bottom:1087.110000px;}
.yb9{bottom:1087.560000px;}
.yff{bottom:1096.110000px;}
.y7a{bottom:1099.890000px;}
.y54{bottom:1100.700000px;}
.yb8{bottom:1105.110000px;}
.y26{bottom:1122.750000px;}
.y79{bottom:1127.160000px;}
.y53{bottom:1127.610000px;}
.y25{bottom:1140.300000px;}
.y23{bottom:1194.300000px;}
.hc{height:26.550000px;}
.hd{height:26.580000px;}
.hb{height:26.640000px;}
.ha{height:26.670000px;}
.h2{height:32.918906px;}
.he{height:34.110000px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h8{height:61.793886px;}
.h9{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.hf{height:80.782383px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wb{width:39.240000px;}
.we{width:40.410000px;}
.w13{width:75.330000px;}
.w10{width:89.190000px;}
.w12{width:92.460000px;}
.w11{width:105.210000px;}
.wc{width:111.360000px;}
.w3{width:115.200000px;}
.w9{width:121.050000px;}
.w5{width:121.950000px;}
.wf{width:123.060000px;}
.wd{width:127.890000px;}
.w4{width:129.540000px;}
.w8{width:142.770000px;}
.wa{width:175.230000px;}
.w7{width:198.720000px;}
.w6{width:368.130000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.650000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x19{left:111.239987px;}
.x5{left:122.039987px;}
.x6{left:126.089987px;}
.x2{left:192.719987px;}
.xb{left:214.680000px;}
.x14{left:226.380000px;}
.x7{left:262.560000px;}
.xe{left:282.900000px;}
.x11{left:300.180000px;}
.x15{left:316.290000px;}
.x9{left:378.480000px;}
.xc{left:414.120000px;}
.x16{left:422.220000px;}
.x12{left:428.790000px;}
.xf{left:458.940000px;}
.x13{left:470.010000px;}
.x10{left:498.990000px;}
.xa{left:508.740000px;}
.x17{left:515.400000px;}
.xd{left:557.610000px;}
.x18{left:591.540000px;}
.x3{left:800.339987px;}
@media print{
.v4{vertical-align:-26.560000pt;}
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.154667pt;}
.v3{vertical-align:26.560000pt;}
.ls27{letter-spacing:-1.605333pt;}
.ls1b{letter-spacing:-1.514667pt;}
.ls13{letter-spacing:-1.445333pt;}
.ls16{letter-spacing:-1.216000pt;}
.ls14{letter-spacing:-1.194667pt;}
.ls19{letter-spacing:-1.178667pt;}
.ls15{letter-spacing:-1.125333pt;}
.ls1a{letter-spacing:-0.650667pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls18{letter-spacing:-0.060800pt;}
.ls8{letter-spacing:-0.058667pt;}
.ls24{letter-spacing:-0.033600pt;}
.ls21{letter-spacing:-0.013120pt;}
.ls1f{letter-spacing:-0.011840pt;}
.ls25{letter-spacing:-0.009920pt;}
.ls1c{letter-spacing:-0.006720pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.006080pt;}
.ls3{letter-spacing:0.008165pt;}
.ls2{letter-spacing:0.012800pt;}
.lsd{letter-spacing:0.040320pt;}
.ls23{letter-spacing:0.042240pt;}
.ls10{letter-spacing:0.043520pt;}
.ls1{letter-spacing:0.080000pt;}
.ls1e{letter-spacing:0.087467pt;}
.ls26{letter-spacing:0.093867pt;}
.ls12{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.142933pt;}
.lsb{letter-spacing:0.154133pt;}
.ls17{letter-spacing:0.160000pt;}
.ls0{letter-spacing:11.864320pt;}
.ls28{letter-spacing:19.306667pt;}
.ls20{letter-spacing:42.423680pt;}
.ls11{letter-spacing:49.143680pt;}
.lsf{letter-spacing:57.463680pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws2{word-spacing:-12.883200pt;}
.ws1f{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.ws2c{word-spacing:-11.899733pt;}
.ws1e{word-spacing:-11.860267pt;}
.ws31{word-spacing:-11.850667pt;}
.ws2a{word-spacing:-11.844267pt;}
.ws20{word-spacing:-11.800320pt;}
.ws2d{word-spacing:-11.799040pt;}
.ws3{word-spacing:-11.756800pt;}
.ws28{word-spacing:-11.750080pt;}
.ws2f{word-spacing:-11.746880pt;}
.ws29{word-spacing:-11.744960pt;}
.ws2b{word-spacing:-11.743680pt;}
.ws2e{word-spacing:-11.723200pt;}
.ws30{word-spacing:-11.696000pt;}
.ws4{word-spacing:-11.590933pt;}
.ws26{word-spacing:-11.106133pt;}
.ws23{word-spacing:-10.631467pt;}
.ws25{word-spacing:-10.578133pt;}
.ws24{word-spacing:-10.540800pt;}
.ws22{word-spacing:-10.311467pt;}
.ws27{word-spacing:-10.242133pt;}
.ws32{word-spacing:-10.151467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws1d{word-spacing:-0.373333pt;}
.ws1c{word-spacing:-0.320000pt;}
.ws1a{word-spacing:-0.234667pt;}
.ws1b{word-spacing:-0.176000pt;}
.ws8{word-spacing:-0.128000pt;}
.ws21{word-spacing:-0.053440pt;}
.wsb{word-spacing:-0.016000pt;}
.ws7{word-spacing:0.000000pt;}
.wsc{word-spacing:0.010667pt;}
.ws9{word-spacing:0.069333pt;}
.wsa{word-spacing:0.213333pt;}
.ws12{word-spacing:3.301333pt;}
.ws17{word-spacing:3.418667pt;}
.wse{word-spacing:3.616000pt;}
.wsf{word-spacing:3.632000pt;}
.wsd{word-spacing:3.658667pt;}
.ws15{word-spacing:3.738667pt;}
.ws14{word-spacing:3.792000pt;}
.ws10{word-spacing:3.797333pt;}
.ws6{word-spacing:3.826560pt;}
.ws19{word-spacing:3.882667pt;}
.ws18{word-spacing:3.898667pt;}
.ws16{word-spacing:3.957333pt;}
.ws13{word-spacing:3.989333pt;}
.ws11{word-spacing:4.032000pt;}
._2{margin-left:-2.836800pt;}
._a{margin-left:-1.923840pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.193035pt;}
._5{width:2.725333pt;}
._9{width:4.008000pt;}
._6{width:5.272960pt;}
._7{width:6.305387pt;}
._8{width:7.748800pt;}
._4{width:9.196373pt;}
._3{width:10.095360pt;}
._e{width:12.656640pt;}
._d{width:13.627200pt;}
._c{width:14.535680pt;}
._10{width:18.138059pt;}
._f{width:19.318400pt;}
._12{width:23.994240pt;}
._11{width:26.643200pt;}
._14{width:27.919040pt;}
._13{width:33.295744pt;}
._b{width:151.014080pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:38.650667pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:6.960000pt;}
.y58{bottom:7.040000pt;}
.y6d{bottom:7.066667pt;}
.ya6{bottom:13.680000pt;}
.y2{bottom:65.226667pt;}
.y24{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.yb7{bottom:100.666667pt;}
.yfe{bottom:101.306667pt;}
.y9d{bottom:107.786667pt;}
.yfd{bottom:116.906667pt;}
.y78{bottom:120.586667pt;}
.y52{bottom:122.586667pt;}
.y9c{bottom:132.106667pt;}
.yb6{bottom:132.266667pt;}
.y51{bottom:138.186667pt;}
.yfc{bottom:140.506667pt;}
.y77{bottom:144.826667pt;}
.y22{bottom:146.266667pt;}
.yb5{bottom:147.946667pt;}
.y50{bottom:153.866667pt;}
.yfb{bottom:156.186667pt;}
.y9b{bottom:156.426667pt;}
.y21{bottom:161.946667pt;}
.y76{bottom:169.146667pt;}
.y4f{bottom:169.466667pt;}
.yb4{bottom:179.546667pt;}
.yfa{bottom:179.786667pt;}
.yda{bottom:180.666667pt;}
.y9a{bottom:180.746667pt;}
.y4e{bottom:185.066667pt;}
.y75{bottom:193.466667pt;}
.y20{bottom:193.546667pt;}
.yb3{bottom:195.146667pt;}
.yf9{bottom:195.466667pt;}
.y99{bottom:204.986667pt;}
.y4d{bottom:208.746667pt;}
.y1f{bottom:209.226667pt;}
.yd9{bottom:212.266667pt;}
.y74{bottom:217.786667pt;}
.yf8{bottom:219.386667pt;}
.yb2{bottom:226.826667pt;}
.yd8{bottom:227.946667pt;}
.y98{bottom:229.306667pt;}
.y4c{bottom:240.346667pt;}
.y1e{bottom:240.826667pt;}
.y73{bottom:242.026667pt;}
.yb1{bottom:242.426667pt;}
.yd7{bottom:243.546667pt;}
.y4b{bottom:255.946667pt;}
.y1d{bottom:256.426667pt;}
.yb0{bottom:258.106667pt;}
.yf7{bottom:262.266667pt;}
.y72{bottom:266.346667pt;}
.y4a{bottom:271.626667pt;}
.y1c{bottom:272.106667pt;}
.y97{bottom:272.586667pt;}
.yd6{bottom:275.146667pt;}
.yf6{bottom:286.186667pt;}
.y49{bottom:287.226667pt;}
.yaf{bottom:289.706667pt;}
.y71{bottom:290.666667pt;}
.yd5{bottom:290.826667pt;}
.y1b{bottom:296.026667pt;}
.y48{bottom:302.906667pt;}
.y96{bottom:304.266667pt;}
.yae{bottom:305.306667pt;}
.y70{bottom:314.906667pt;}
.y47{bottom:318.506667pt;}
.yf5{bottom:319.066667pt;}
.y95{bottom:319.866667pt;}
.yad{bottom:320.986667pt;}
.yd4{bottom:322.426667pt;}
.y46{bottom:334.106667pt;}
.yf4{bottom:334.746667pt;}
.y94{bottom:335.466667pt;}
.yd3{bottom:338.106667pt;}
.y1a{bottom:339.226667pt;}
.yac{bottom:344.906667pt;}
.y45{bottom:349.786667pt;}
.yf3{bottom:350.346667pt;}
.y6f{bottom:363.546667pt;}
.y93{bottom:364.826667pt;}
.yf2{bottom:365.946667pt;}
.yd2{bottom:369.706667pt;}
.y19{bottom:372.106667pt;}
.y44{bottom:373.386667pt;}
.yf1{bottom:381.626667pt;}
.yd1{bottom:385.306667pt;}
.y18{bottom:387.706667pt;}
.yab{bottom:387.786667pt;}
.y6e{bottom:387.866667pt;}
.y92{bottom:389.066667pt;}
.yf0{bottom:397.226667pt;}
.yd0{bottom:400.986667pt;}
.y17{bottom:403.386667pt;}
.y43{bottom:405.066667pt;}
.y6c{bottom:412.106667pt;}
.y91{bottom:413.386667pt;}
.ycf{bottom:416.586667pt;}
.yaa{bottom:419.093333pt;}
.yef{bottom:421.173333pt;}
.y42{bottom:428.693333pt;}
.ya9{bottom:434.693333pt;}
.y16{bottom:435.013333pt;}
.y6b{bottom:436.453333pt;}
.yce{bottom:448.293333pt;}
.y15{bottom:450.693333pt;}
.yee{bottom:454.133333pt;}
.y90{bottom:456.693333pt;}
.y41{bottom:460.293333pt;}
.y6a{bottom:460.773333pt;}
.ycd{bottom:463.893333pt;}
.ya8{bottom:464.053333pt;}
.y14{bottom:466.293333pt;}
.y40{bottom:475.973333pt;}
.yed{bottom:477.973333pt;}
.ycc{bottom:479.493333pt;}
.y13{bottom:481.893333pt;}
.y69{bottom:485.093333pt;}
.ya7{bottom:488.293333pt;}
.y8f{bottom:488.373333pt;}
.y3f{bottom:491.573333pt;}
.ycb{bottom:495.173333pt;}
.y8e{bottom:503.973333pt;}
.y3e{bottom:507.253333pt;}
.y68{bottom:509.333333pt;}
.yec{bottom:511.173333pt;}
.ya5{bottom:512.613333pt;}
.y12{bottom:513.573333pt;}
.y8d{bottom:519.573333pt;}
.yca{bottom:526.773333pt;}
.y11{bottom:529.173333pt;}
.y3d{bottom:530.853333pt;}
.y8c{bottom:535.253333pt;}
.yc9{bottom:542.453333pt;}
.ya4{bottom:543.573333pt;}
.y67{bottom:552.613333pt;}
.yeb{bottom:554.133333pt;}
.yc8{bottom:558.053333pt;}
.y10{bottom:560.853333pt;}
.y3c{bottom:562.453333pt;}
.y8b{bottom:564.533333pt;}
.yea{bottom:569.733333pt;}
.yf{bottom:576.453333pt;}
.y3b{bottom:578.133333pt;}
.y66{bottom:584.293333pt;}
.ye9{bottom:585.413333pt;}
.ya3{bottom:586.853333pt;}
.y8a{bottom:588.853333pt;}
.yc7{bottom:589.653333pt;}
.y3a{bottom:593.733333pt;}
.y65{bottom:599.893333pt;}
.yc6{bottom:605.333333pt;}
.ye{bottom:608.053333pt;}
.y39{bottom:609.413333pt;}
.y89{bottom:613.173333pt;}
.y64{bottom:615.573333pt;}
.ye8{bottom:617.013333pt;}
.ya2{bottom:618.533333pt;}
.yc5{bottom:620.933333pt;}
.yd{bottom:623.733333pt;}
.y38{bottom:625.013333pt;}
.ye7{bottom:632.613333pt;}
.ya1{bottom:634.133333pt;}
.yc4{bottom:636.613333pt;}
.y88{bottom:637.413333pt;}
.yc{bottom:639.333333pt;}
.y37{bottom:640.613333pt;}
.y63{bottom:644.853333pt;}
.ya0{bottom:649.733333pt;}
.yb{bottom:655.013333pt;}
.y87{bottom:661.733333pt;}
.y36{bottom:664.293333pt;}
.y9f{bottom:665.413333pt;}
.yc3{bottom:668.213333pt;}
.y62{bottom:669.173333pt;}
.ya{bottom:678.933333pt;}
.ye6{bottom:679.893333pt;}
.y9e{bottom:681.013333pt;}
.yc2{bottom:683.813333pt;}
.y86{bottom:686.053333pt;}
.y61{bottom:693.413333pt;}
.ye5{bottom:695.573333pt;}
.y35{bottom:695.893333pt;}
.yc1{bottom:699.493333pt;}
.y108{bottom:699.813333pt;}
.y85{bottom:710.373333pt;}
.ye4{bottom:711.173333pt;}
.y34{bottom:711.573333pt;}
.yc0{bottom:715.093333pt;}
.y107{bottom:715.493333pt;}
.y60{bottom:717.733333pt;}
.y9{bottom:721.813333pt;}
.y33{bottom:727.173333pt;}
.ybf{bottom:730.693333pt;}
.y106{bottom:731.093333pt;}
.y84{bottom:734.613333pt;}
.y5f{bottom:742.053333pt;}
.y32{bottom:742.773333pt;}
.y8{bottom:753.653333pt;}
.y105{bottom:754.693333pt;}
.ye3{bottom:758.453333pt;}
.y83{bottom:758.933333pt;}
.ybe{bottom:762.373333pt;}
.y5e{bottom:766.373333pt;}
.y31{bottom:766.693333pt;}
.y104{bottom:770.373333pt;}
.ye2{bottom:774.053333pt;}
.ybd{bottom:777.973333pt;}
.y82{bottom:783.253333pt;}
.y7{bottom:785.653333pt;}
.y103{bottom:785.973333pt;}
.ye1{bottom:789.733333pt;}
.y5d{bottom:790.613333pt;}
.ybc{bottom:793.653333pt;}
.ye0{bottom:805.333333pt;}
.y81{bottom:807.493333pt;}
.y30{bottom:809.653333pt;}
.y5c{bottom:814.933333pt;}
.y6{bottom:817.830667pt;}
.y2f{bottom:825.253333pt;}
.y80{bottom:831.813333pt;}
.ydf{bottom:836.933333pt;}
.y5a{bottom:839.253333pt;}
.y2e{bottom:840.853333pt;}
.y5{bottom:841.690667pt;}
.yde{bottom:852.613333pt;}
.y7f{bottom:856.133333pt;}
.y2d{bottom:856.533333pt;}
.y59{bottom:863.493333pt;}
.y102{bottom:864.533333pt;}
.y4{bottom:866.090667pt;}
.y2c{bottom:872.133333pt;}
.y101{bottom:880.133333pt;}
.y7e{bottom:880.453333pt;}
.ydd{bottom:884.213333pt;}
.y57{bottom:887.813333pt;}
.ybb{bottom:888.133333pt;}
.y3{bottom:899.760000pt;}
.ydc{bottom:899.840000pt;}
.y2b{bottom:903.840000pt;}
.y7d{bottom:904.720000pt;}
.ydb{bottom:915.520000pt;}
.y2a{bottom:919.440000pt;}
.y7c{bottom:929.040000pt;}
.y56{bottom:931.120000pt;}
.y29{bottom:935.040000pt;}
.y28{bottom:950.720000pt;}
.yba{bottom:951.040000pt;}
.y7b{bottom:953.360000pt;}
.y100{bottom:958.720000pt;}
.y55{bottom:962.800000pt;}
.y27{bottom:966.320000pt;}
.yb9{bottom:966.720000pt;}
.yff{bottom:974.320000pt;}
.y7a{bottom:977.680000pt;}
.y54{bottom:978.400000pt;}
.yb8{bottom:982.320000pt;}
.y26{bottom:998.000000pt;}
.y79{bottom:1001.920000pt;}
.y53{bottom:1002.320000pt;}
.y25{bottom:1013.600000pt;}
.y23{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.hd{height:23.626667pt;}
.hb{height:23.680000pt;}
.ha{height:23.706667pt;}
.h2{height:29.261250pt;}
.he{height:30.320000pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h8{height:54.927899pt;}
.h9{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.hf{height:71.806563pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wb{width:34.880000pt;}
.we{width:35.920000pt;}
.w13{width:66.960000pt;}
.w10{width:79.280000pt;}
.w12{width:82.186667pt;}
.w11{width:93.520000pt;}
.wc{width:98.986667pt;}
.w3{width:102.400000pt;}
.w9{width:107.600000pt;}
.w5{width:108.400000pt;}
.wf{width:109.386667pt;}
.wd{width:113.680000pt;}
.w4{width:115.146667pt;}
.w8{width:126.906667pt;}
.wa{width:155.760000pt;}
.w7{width:176.640000pt;}
.w6{width:327.226667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.800000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x19{left:98.879988pt;}
.x5{left:108.479988pt;}
.x6{left:112.079988pt;}
.x2{left:171.306655pt;}
.xb{left:190.826667pt;}
.x14{left:201.226667pt;}
.x7{left:233.386667pt;}
.xe{left:251.466667pt;}
.x11{left:266.826667pt;}
.x15{left:281.146667pt;}
.x9{left:336.426667pt;}
.xc{left:368.106667pt;}
.x16{left:375.306667pt;}
.x12{left:381.146667pt;}
.xf{left:407.946667pt;}
.x13{left:417.786667pt;}
.x10{left:443.546667pt;}
.xa{left:452.213333pt;}
.x17{left:458.133333pt;}
.xd{left:495.653333pt;}
.x18{left:525.813333pt;}
.x3{left:711.413322pt;}
}




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