
    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_9cc1809013961af6aa3ffaff.woff')format("woff");}.ff1{font-family:ff1;line-height:0.776367;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_e8e71eb3ffe0c2e931ca5584.woff')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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.035156;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_cef4c315560dc148787c1695.woff')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_6342aa2641c2a5c6c225ec91.woff')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_9dedd5c5b6263ea1cbcd8d24.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7ce73d0a34eeebbe3c29f89a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.963867;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_b90058dabce82426b817111e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.728516;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_4640578295310669e6cdd6a5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.728027;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:ffa;src:url('chunks/assets/font_f40a08662186c848876111e2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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:ffb;src:url('chunks/assets/font_709c4b4e2dbd1a6e7496936d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.687500;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:ffc;src:url('chunks/assets/font_9a78830fa68a19442258c379.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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(0.288450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288450,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);}
.v2{vertical-align:-97.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.ls8{letter-spacing:-5.760000px;}
.ls10{letter-spacing:-2.880000px;}
.lsf{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.166800px;}
.ls5{letter-spacing:-0.127200px;}
.ls6{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.504000px;}
.lse{letter-spacing:0.720000px;}
.ls2{letter-spacing:7.560000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-20.566320px;}
.ws6{word-spacing:-18.360000px;}
.ws7{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.568000px;}
.ws3{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.120000px;}
.ws4{word-spacing:-15.046800px;}
.ws1{word-spacing:-12.060000px;}
.ws2{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
._3{margin-left:-6.624000px;}
._4{margin-left:-5.352000px;}
._2{margin-left:-3.048000px;}
._0{margin-left:-1.104000px;}
._1{width:1.512000px;}
._d{width:3.415680px;}
._f{width:4.601520px;}
._12{width:6.573600px;}
._e{width:7.791360px;}
._7{width:8.826480px;}
._6{width:9.979920px;}
._13{width:11.024640px;}
._8{width:12.628800px;}
._11{width:13.858560px;}
._1f{width:15.160320px;}
._17{width:16.553520px;}
._18{width:17.808480px;}
._a{width:18.884160px;}
._9{width:20.019600px;}
._1a{width:21.744000px;}
._1b{width:23.112000px;}
._c{width:24.349680px;}
._b{width:25.468080px;}
._1c{width:27.456000px;}
._25{width:28.776000px;}
._14{width:29.880000px;}
._21{width:30.912000px;}
._19{width:32.280720px;}
._16{width:33.683760px;}
._15{width:34.899840px;}
._1d{width:36.144000px;}
._1e{width:37.296000px;}
._20{width:38.880000px;}
._10{width:40.875840px;}
._26{width:42.120000px;}
._27{width:43.992000px;}
._28{width:45.072000px;}
._29{width:46.236000px;}
._23{width:50.904000px;}
._22{width:52.512000px;}
._5{width:54.501120px;}
._24{width:67.032000px;}
._2a{width:115.848000px;}
._2b{width:117.120000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:12.240000px;}
.fsb{font-size:15.120000px;}
.fs3{font-size:18.000000px;}
.fs6{font-size:30.240000px;}
.fs8{font-size:33.120000px;}
.fsc{font-size:38.880000px;}
.fs5{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ydf{bottom:4.125000px;}
.y9a{bottom:4.140000px;}
.ye1{bottom:4.485000px;}
.ye5{bottom:4.495500px;}
.yb4{bottom:4.500000px;}
.ye8{bottom:4.530000px;}
.y9c{bottom:9.180000px;}
.y9f{bottom:9.360000px;}
.y60{bottom:14.220000px;}
.y5{bottom:28.590000px;}
.y65{bottom:36.180000px;}
.yf5{bottom:39.105000px;}
.yfb{bottom:39.240000px;}
.yf9{bottom:39.420000px;}
.yf7{bottom:43.380000px;}
.yfd{bottom:43.590000px;}
.y3{bottom:46.620000px;}
.y64{bottom:56.160000px;}
.y2{bottom:66.456000px;}
.y1{bottom:86.436000px;}
.y37{bottom:115.776000px;}
.yd1{bottom:116.316000px;}
.y5e{bottom:122.796000px;}
.ye6{bottom:123.160500px;}
.yc1{bottom:126.216000px;}
.y116{bottom:127.296000px;}
.yaf{bottom:128.916000px;}
.y11f{bottom:129.456000px;}
.y92{bottom:132.156000px;}
.y36{bottom:133.056000px;}
.yd0{bottom:137.016000px;}
.y5d{bottom:140.076000px;}
.ye4{bottom:144.760500px;}
.yc0{bottom:146.916000px;}
.y115{bottom:147.996000px;}
.yae{bottom:149.616000px;}
.y11e{bottom:150.150000px;}
.y35{bottom:150.330000px;}
.y91{bottom:152.850000px;}
.y5c{bottom:157.350000px;}
.ycf{bottom:157.710000px;}
.ye3{bottom:166.185000px;}
.y34{bottom:167.610000px;}
.y114{bottom:168.690000px;}
.yad{bottom:170.310000px;}
.y11d{bottom:170.490000px;}
.y90{bottom:173.550000px;}
.y5b{bottom:174.450000px;}
.yce{bottom:178.410000px;}
.y33{bottom:184.890000px;}
.y11c{bottom:187.230000px;}
.ye2{bottom:187.605000px;}
.ybf{bottom:188.310000px;}
.y113{bottom:189.390000px;}
.yac{bottom:191.010000px;}
.y5a{bottom:191.730000px;}
.y8f{bottom:194.250000px;}
.ycd{bottom:198.750000px;}
.y10a{bottom:199.830000px;}
.y32{bottom:201.810000px;}
.y59{bottom:209.010000px;}
.ye0{bottom:209.025000px;}
.y112{bottom:210.090000px;}
.yab{bottom:211.710000px;}
.y8e{bottom:214.950000px;}
.ycc{bottom:219.450000px;}
.y31{bottom:219.990000px;}
.y109{bottom:220.530000px;}
.y58{bottom:226.290000px;}
.ybe{bottom:229.710000px;}
.yde{bottom:230.445000px;}
.y111{bottom:230.790000px;}
.yaa{bottom:232.410000px;}
.y8d{bottom:235.650000px;}
.y30{bottom:237.990000px;}
.ycb{bottom:240.510000px;}
.y108{bottom:241.230000px;}
.y57{bottom:243.570000px;}
.ybd{bottom:250.410000px;}
.y110{bottom:251.130000px;}
.ya9{bottom:253.110000px;}
.ydd{bottom:255.990000px;}
.y2f{bottom:256.170000px;}
.y8c{bottom:256.350000px;}
.y56{bottom:260.850000px;}
.yca{bottom:261.210000px;}
.y107{bottom:261.930000px;}
.ybc{bottom:271.110000px;}
.y10f{bottom:271.830000px;}
.ya8{bottom:273.810000px;}
.y2e{bottom:274.350000px;}
.ydc{bottom:276.690000px;}
.y8b{bottom:277.050000px;}
.y55{bottom:277.950000px;}
.yc9{bottom:281.910000px;}
.y106{bottom:282.630000px;}
.ybb{bottom:291.810000px;}
.y2d{bottom:292.350000px;}
.y10e{bottom:292.890000px;}
.ya7{bottom:294.510000px;}
.y54{bottom:295.230000px;}
.y8a{bottom:297.750000px;}
.yc8{bottom:302.610000px;}
.y105{bottom:303.330000px;}
.y2c{bottom:311.115000px;}
.yba{bottom:312.195000px;}
.y53{bottom:312.555000px;}
.y10d{bottom:313.635000px;}
.ya6{bottom:315.255000px;}
.y89{bottom:318.495000px;}
.yc7{bottom:323.355000px;}
.y104{bottom:324.075000px;}
.y2b{bottom:328.395000px;}
.y52{bottom:329.835000px;}
.yb9{bottom:332.895000px;}
.y10c{bottom:334.335000px;}
.ya5{bottom:335.955000px;}
.yd5{bottom:338.835000px;}
.y88{bottom:339.195000px;}
.yc6{bottom:344.055000px;}
.y103{bottom:344.775000px;}
.y2a{bottom:345.675000px;}
.y51{bottom:347.115000px;}
.yb8{bottom:350.175000px;}
.y10b{bottom:350.715000px;}
.ya4{bottom:356.295000px;}
.yd4{bottom:359.535000px;}
.y87{bottom:359.895000px;}
.y29{bottom:362.775000px;}
.y50{bottom:364.215000px;}
.yc5{bottom:364.755000px;}
.y102{bottom:365.475000px;}
.yb7{bottom:371.595000px;}
.ya3{bottom:376.995000px;}
.y28{bottom:379.695000px;}
.y86{bottom:380.595000px;}
.y4f{bottom:381.495000px;}
.yc4{bottom:385.455000px;}
.y101{bottom:386.175000px;}
.yb6{bottom:393.015000px;}
.ya2{bottom:394.275000px;}
.y27{bottom:396.975000px;}
.y4e{bottom:398.775000px;}
.y85{bottom:401.295000px;}
.yc3{bottom:406.155000px;}
.y100{bottom:406.875000px;}
.y26{bottom:414.615000px;}
.y4d{bottom:416.055000px;}
.ya1{bottom:420.555000px;}
.y84{bottom:421.995000px;}
.yc2{bottom:422.355000px;}
.yff{bottom:423.975000px;}
.y25{bottom:431.895000px;}
.y4c{bottom:433.335000px;}
.yb5{bottom:436.035000px;}
.ydb{bottom:442.335000px;}
.y83{bottom:442.695000px;}
.ya0{bottom:446.835000px;}
.y24{bottom:449.175000px;}
.y4b{bottom:450.615000px;}
.yb3{bottom:457.455000px;}
.yda{bottom:463.035000px;}
.y82{bottom:463.395000px;}
.y23{bottom:465.915000px;}
.y4a{bottom:467.715000px;}
.y9e{bottom:473.115000px;}
.yb2{bottom:478.875000px;}
.y22{bottom:483.195000px;}
.y81{bottom:484.095000px;}
.yfe{bottom:484.275000px;}
.y49{bottom:484.995000px;}
.y9d{bottom:499.395000px;}
.y21{bottom:500.835000px;}
.y48{bottom:502.275000px;}
.yb1{bottom:504.435000px;}
.y80{bottom:504.795000px;}
.y20{bottom:518.115000px;}
.y47{bottom:519.555000px;}
.yb0{bottom:525.135000px;}
.y7f{bottom:525.495000px;}
.y9b{bottom:525.675000px;}
.y1f{bottom:535.395000px;}
.y46{bottom:536.835000px;}
.yfc{bottom:540.435000px;}
.y7e{bottom:546.195000px;}
.y99{bottom:551.775000px;}
.y1e{bottom:552.315000px;}
.y45{bottom:554.115000px;}
.y7d{bottom:566.925000px;}
.y44{bottom:571.245000px;}
.y1d{bottom:576.285000px;}
.y98{bottom:577.545000px;}
.y1c{bottom:587.085000px;}
.y7c{bottom:587.625000px;}
.y43{bottom:588.525000px;}
.y97{bottom:598.245000px;}
.yfa{bottom:600.945000px;}
.y1b{bottom:604.365000px;}
.y42{bottom:605.805000px;}
.y7b{bottom:608.325000px;}
.y96{bottom:618.945000px;}
.y1a{bottom:621.645000px;}
.y41{bottom:623.085000px;}
.y7a{bottom:629.025000px;}
.y19{bottom:638.565000px;}
.y95{bottom:639.645000px;}
.y40{bottom:640.365000px;}
.y79{bottom:649.725000px;}
.y11b{bottom:652.965000px;}
.y18{bottom:655.665000px;}
.y94{bottom:656.205000px;}
.yf8{bottom:657.105000px;}
.y3f{bottom:657.645000px;}
.y78{bottom:670.425000px;}
.y17{bottom:673.305000px;}
.y11a{bottom:673.665000px;}
.y3e{bottom:674.745000px;}
.y16{bottom:690.585000px;}
.y77{bottom:691.125000px;}
.y3d{bottom:692.025000px;}
.y119{bottom:694.365000px;}
.y15{bottom:707.865000px;}
.y3c{bottom:709.305000px;}
.yd9{bottom:711.465000px;}
.y76{bottom:711.825000px;}
.yf6{bottom:713.445000px;}
.y118{bottom:714.885000px;}
.y14{bottom:724.785000px;}
.y3b{bottom:726.585000px;}
.y117{bottom:731.265000px;}
.yd8{bottom:732.165000px;}
.y75{bottom:732.525000px;}
.y13{bottom:741.705000px;}
.y3a{bottom:743.865000px;}
.yd3{bottom:752.865000px;}
.y74{bottom:753.225000px;}
.y12{bottom:759.885000px;}
.y39{bottom:760.965000px;}
.yd2{bottom:773.565000px;}
.yf4{bottom:773.745000px;}
.y73{bottom:773.925000px;}
.y38{bottom:778.245000px;}
.y11{bottom:778.785000px;}
.y10{bottom:792.645000px;}
.y72{bottom:794.625000px;}
.yf{bottom:802.365000px;}
.ye{bottom:811.185000px;}
.y71{bottom:815.370000px;}
.yf3{bottom:834.270000px;}
.y70{bottom:836.070000px;}
.y4{bottom:839.880000px;}
.yf2{bottom:854.970000px;}
.y6{bottom:856.770000px;}
.yf1{bottom:876.030000px;}
.y6f{bottom:877.470000px;}
.yf0{bottom:896.730000px;}
.y6e{bottom:898.170000px;}
.yd{bottom:903.570000px;}
.yc{bottom:917.070000px;}
.yef{bottom:917.430000px;}
.y6d{bottom:918.870000px;}
.yee{bottom:938.130000px;}
.y6c{bottom:939.570000px;}
.yed{bottom:958.830000px;}
.y6b{bottom:960.270000px;}
.yb{bottom:968.910000px;}
.yec{bottom:979.530000px;}
.y6a{bottom:980.970000px;}
.yeb{bottom:1000.230000px;}
.yd7{bottom:1001.310000px;}
.y69{bottom:1001.670000px;}
.yea{bottom:1020.570000px;}
.yd6{bottom:1022.010000px;}
.y68{bottom:1022.370000px;}
.y8{bottom:1030.290000px;}
.ye9{bottom:1041.270000px;}
.y120{bottom:1042.710000px;}
.y67{bottom:1043.070000px;}
.y7{bottom:1050.990000px;}
.ye7{bottom:1058.550000px;}
.y66{bottom:1063.440000px;}
.y93{bottom:1063.800000px;}
.ya{bottom:1106.460000px;}
.y5f{bottom:1108.080000px;}
.y62{bottom:1116.540000px;}
.y9{bottom:1120.680000px;}
.y61{bottom:1137.060000px;}
.y63{bottom:1171.620000px;}
.hd{height:8.773594px;}
.he{height:10.830586px;}
.h4{height:18.430664px;}
.h1d{height:20.685000px;}
.h1e{height:20.695500px;}
.h1f{height:20.722500px;}
.h1a{height:20.730000px;}
.ha{height:25.163437px;}
.h1b{height:25.365000px;}
.h1c{height:25.545000px;}
.h8{height:29.678906px;}
.h15{height:29.700000px;}
.h14{height:39.183750px;}
.hf{height:40.472227px;}
.h5{height:42.602344px;}
.h7{height:44.518359px;}
.h2{height:44.820000px;}
.h10{height:45.403594px;}
.hc{height:45.457031px;}
.h16{height:47.221875px;}
.h19{height:50.273438px;}
.h1{height:50.326875px;}
.h6{height:51.328125px;}
.h25{height:55.425000px;}
.h23{height:55.440000px;}
.h22{height:55.620000px;}
.h20{height:55.656000px;}
.hb{height:55.760625px;}
.h12{height:58.651172px;}
.h26{height:59.565000px;}
.h21{height:59.580000px;}
.h24{height:59.790000px;}
.h13{height:60.226875px;}
.h11{height:66.543750px;}
.h18{height:70.664062px;}
.h17{height:72.562500px;}
.h3{height:80.464922px;}
.h9{height:96.508125px;}
.h0{height:1188.000000px;}
.w8{width:67.536000px;}
.wd{width:71.136000px;}
.w3{width:77.031000px;}
.w7{width:84.060000px;}
.wc{width:88.380000px;}
.w9{width:123.120000px;}
.wa{width:123.876000px;}
.we{width:129.420000px;}
.wf{width:130.536000px;}
.wb{width:146.001000px;}
.w5{width:149.976000px;}
.w10{width:153.555000px;}
.w6{width:286.050000px;}
.w2{width:406.260000px;}
.w4{width:528.585000px;}
.w1{width:783.360000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:8.385000px;}
.x3{left:58.500000px;}
.x4{left:67.320000px;}
.x5{left:72.720000px;}
.x9{left:76.500000px;}
.x19{left:100.296000px;}
.x16{left:108.036000px;}
.x29{left:162.030000px;}
.x23{left:171.030000px;}
.x1a{left:178.050000px;}
.x1e{left:185.250000px;}
.x8{left:192.630000px;}
.x6{left:206.310000px;}
.x15{left:207.390000px;}
.x1b{left:240.690000px;}
.x24{left:260.130000px;}
.x1f{left:270.030000px;}
.x25{left:331.995000px;}
.x20{left:338.295000px;}
.x12{left:351.435000px;}
.xa{left:369.075000px;}
.xb{left:383.475000px;}
.x1c{left:391.395000px;}
.xc{left:393.735000px;}
.xd{left:401.655000px;}
.xe{left:411.915000px;}
.xf{left:423.795000px;}
.x10{left:438.195000px;}
.x17{left:445.575000px;}
.x2{left:450.075000px;}
.x1{left:459.075000px;}
.x21{left:462.135000px;}
.x7{left:472.215000px;}
.x11{left:509.325000px;}
.x13{left:511.560000px;}
.x22{left:586.920000px;}
.x26{left:593.400000px;}
.x28{left:784.050000px;}
.x18{left:785.310000px;}
.x27{left:806.550000px;}
.x1d{left:810.150000px;}
@media print{
.v2{vertical-align:-86.400000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls8{letter-spacing:-5.120000pt;}
.ls10{letter-spacing:-2.560000pt;}
.lsf{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.148267pt;}
.ls5{letter-spacing:-0.113067pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.640000pt;}
.ls2{letter-spacing:6.720000pt;}
.ws0{word-spacing:-18.281173pt;}
.ws6{word-spacing:-16.320000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.616000pt;}
.ws3{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.374933pt;}
.ws1{word-spacing:-10.720000pt;}
.ws2{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
._3{margin-left:-5.888000pt;}
._4{margin-left:-4.757333pt;}
._2{margin-left:-2.709333pt;}
._0{margin-left:-0.981333pt;}
._1{width:1.344000pt;}
._d{width:3.036160pt;}
._f{width:4.090240pt;}
._12{width:5.843200pt;}
._e{width:6.925653pt;}
._7{width:7.845760pt;}
._6{width:8.871040pt;}
._13{width:9.799680pt;}
._8{width:11.225600pt;}
._11{width:12.318720pt;}
._1f{width:13.475840pt;}
._17{width:14.714240pt;}
._18{width:15.829760pt;}
._a{width:16.785920pt;}
._9{width:17.795200pt;}
._1a{width:19.328000pt;}
._1b{width:20.544000pt;}
._c{width:21.644160pt;}
._b{width:22.638293pt;}
._1c{width:24.405333pt;}
._25{width:25.578667pt;}
._14{width:26.560000pt;}
._21{width:27.477333pt;}
._19{width:28.693973pt;}
._16{width:29.941120pt;}
._15{width:31.022080pt;}
._1d{width:32.128000pt;}
._1e{width:33.152000pt;}
._20{width:34.560000pt;}
._10{width:36.334080pt;}
._26{width:37.440000pt;}
._27{width:39.104000pt;}
._28{width:40.064000pt;}
._29{width:41.098667pt;}
._23{width:45.248000pt;}
._22{width:46.677333pt;}
._5{width:48.445440pt;}
._24{width:59.584000pt;}
._2a{width:102.976000pt;}
._2b{width:104.106667pt;}
.fsa{font-size:10.880000pt;}
.fsb{font-size:13.440000pt;}
.fs3{font-size:16.000000pt;}
.fs6{font-size:26.880000pt;}
.fs8{font-size:29.440000pt;}
.fsc{font-size:34.560000pt;}
.fs5{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:3.666667pt;}
.y9a{bottom:3.680000pt;}
.ye1{bottom:3.986667pt;}
.ye5{bottom:3.996000pt;}
.yb4{bottom:4.000000pt;}
.ye8{bottom:4.026667pt;}
.y9c{bottom:8.160000pt;}
.y9f{bottom:8.320000pt;}
.y60{bottom:12.640000pt;}
.y5{bottom:25.413333pt;}
.y65{bottom:32.160000pt;}
.yf5{bottom:34.760000pt;}
.yfb{bottom:34.880000pt;}
.yf9{bottom:35.040000pt;}
.yf7{bottom:38.560000pt;}
.yfd{bottom:38.746667pt;}
.y3{bottom:41.440000pt;}
.y64{bottom:49.920000pt;}
.y2{bottom:59.072000pt;}
.y1{bottom:76.832000pt;}
.y37{bottom:102.912000pt;}
.yd1{bottom:103.392000pt;}
.y5e{bottom:109.152000pt;}
.ye6{bottom:109.476000pt;}
.yc1{bottom:112.192000pt;}
.y116{bottom:113.152000pt;}
.yaf{bottom:114.592000pt;}
.y11f{bottom:115.072000pt;}
.y92{bottom:117.472000pt;}
.y36{bottom:118.272000pt;}
.yd0{bottom:121.792000pt;}
.y5d{bottom:124.512000pt;}
.ye4{bottom:128.676000pt;}
.yc0{bottom:130.592000pt;}
.y115{bottom:131.552000pt;}
.yae{bottom:132.992000pt;}
.y11e{bottom:133.466667pt;}
.y35{bottom:133.626667pt;}
.y91{bottom:135.866667pt;}
.y5c{bottom:139.866667pt;}
.ycf{bottom:140.186667pt;}
.ye3{bottom:147.720000pt;}
.y34{bottom:148.986667pt;}
.y114{bottom:149.946667pt;}
.yad{bottom:151.386667pt;}
.y11d{bottom:151.546667pt;}
.y90{bottom:154.266667pt;}
.y5b{bottom:155.066667pt;}
.yce{bottom:158.586667pt;}
.y33{bottom:164.346667pt;}
.y11c{bottom:166.426667pt;}
.ye2{bottom:166.760000pt;}
.ybf{bottom:167.386667pt;}
.y113{bottom:168.346667pt;}
.yac{bottom:169.786667pt;}
.y5a{bottom:170.426667pt;}
.y8f{bottom:172.666667pt;}
.ycd{bottom:176.666667pt;}
.y10a{bottom:177.626667pt;}
.y32{bottom:179.386667pt;}
.y59{bottom:185.786667pt;}
.ye0{bottom:185.800000pt;}
.y112{bottom:186.746667pt;}
.yab{bottom:188.186667pt;}
.y8e{bottom:191.066667pt;}
.ycc{bottom:195.066667pt;}
.y31{bottom:195.546667pt;}
.y109{bottom:196.026667pt;}
.y58{bottom:201.146667pt;}
.ybe{bottom:204.186667pt;}
.yde{bottom:204.840000pt;}
.y111{bottom:205.146667pt;}
.yaa{bottom:206.586667pt;}
.y8d{bottom:209.466667pt;}
.y30{bottom:211.546667pt;}
.ycb{bottom:213.786667pt;}
.y108{bottom:214.426667pt;}
.y57{bottom:216.506667pt;}
.ybd{bottom:222.586667pt;}
.y110{bottom:223.226667pt;}
.ya9{bottom:224.986667pt;}
.ydd{bottom:227.546667pt;}
.y2f{bottom:227.706667pt;}
.y8c{bottom:227.866667pt;}
.y56{bottom:231.866667pt;}
.yca{bottom:232.186667pt;}
.y107{bottom:232.826667pt;}
.ybc{bottom:240.986667pt;}
.y10f{bottom:241.626667pt;}
.ya8{bottom:243.386667pt;}
.y2e{bottom:243.866667pt;}
.ydc{bottom:245.946667pt;}
.y8b{bottom:246.266667pt;}
.y55{bottom:247.066667pt;}
.yc9{bottom:250.586667pt;}
.y106{bottom:251.226667pt;}
.ybb{bottom:259.386667pt;}
.y2d{bottom:259.866667pt;}
.y10e{bottom:260.346667pt;}
.ya7{bottom:261.786667pt;}
.y54{bottom:262.426667pt;}
.y8a{bottom:264.666667pt;}
.yc8{bottom:268.986667pt;}
.y105{bottom:269.626667pt;}
.y2c{bottom:276.546667pt;}
.yba{bottom:277.506667pt;}
.y53{bottom:277.826667pt;}
.y10d{bottom:278.786667pt;}
.ya6{bottom:280.226667pt;}
.y89{bottom:283.106667pt;}
.yc7{bottom:287.426667pt;}
.y104{bottom:288.066667pt;}
.y2b{bottom:291.906667pt;}
.y52{bottom:293.186667pt;}
.yb9{bottom:295.906667pt;}
.y10c{bottom:297.186667pt;}
.ya5{bottom:298.626667pt;}
.yd5{bottom:301.186667pt;}
.y88{bottom:301.506667pt;}
.yc6{bottom:305.826667pt;}
.y103{bottom:306.466667pt;}
.y2a{bottom:307.266667pt;}
.y51{bottom:308.546667pt;}
.yb8{bottom:311.266667pt;}
.y10b{bottom:311.746667pt;}
.ya4{bottom:316.706667pt;}
.yd4{bottom:319.586667pt;}
.y87{bottom:319.906667pt;}
.y29{bottom:322.466667pt;}
.y50{bottom:323.746667pt;}
.yc5{bottom:324.226667pt;}
.y102{bottom:324.866667pt;}
.yb7{bottom:330.306667pt;}
.ya3{bottom:335.106667pt;}
.y28{bottom:337.506667pt;}
.y86{bottom:338.306667pt;}
.y4f{bottom:339.106667pt;}
.yc4{bottom:342.626667pt;}
.y101{bottom:343.266667pt;}
.yb6{bottom:349.346667pt;}
.ya2{bottom:350.466667pt;}
.y27{bottom:352.866667pt;}
.y4e{bottom:354.466667pt;}
.y85{bottom:356.706667pt;}
.yc3{bottom:361.026667pt;}
.y100{bottom:361.666667pt;}
.y26{bottom:368.546667pt;}
.y4d{bottom:369.826667pt;}
.ya1{bottom:373.826667pt;}
.y84{bottom:375.106667pt;}
.yc2{bottom:375.426667pt;}
.yff{bottom:376.866667pt;}
.y25{bottom:383.906667pt;}
.y4c{bottom:385.186667pt;}
.yb5{bottom:387.586667pt;}
.ydb{bottom:393.186667pt;}
.y83{bottom:393.506667pt;}
.ya0{bottom:397.186667pt;}
.y24{bottom:399.266667pt;}
.y4b{bottom:400.546667pt;}
.yb3{bottom:406.626667pt;}
.yda{bottom:411.586667pt;}
.y82{bottom:411.906667pt;}
.y23{bottom:414.146667pt;}
.y4a{bottom:415.746667pt;}
.y9e{bottom:420.546667pt;}
.yb2{bottom:425.666667pt;}
.y22{bottom:429.506667pt;}
.y81{bottom:430.306667pt;}
.yfe{bottom:430.466667pt;}
.y49{bottom:431.106667pt;}
.y9d{bottom:443.906667pt;}
.y21{bottom:445.186667pt;}
.y48{bottom:446.466667pt;}
.yb1{bottom:448.386667pt;}
.y80{bottom:448.706667pt;}
.y20{bottom:460.546667pt;}
.y47{bottom:461.826667pt;}
.yb0{bottom:466.786667pt;}
.y7f{bottom:467.106667pt;}
.y9b{bottom:467.266667pt;}
.y1f{bottom:475.906667pt;}
.y46{bottom:477.186667pt;}
.yfc{bottom:480.386667pt;}
.y7e{bottom:485.506667pt;}
.y99{bottom:490.466667pt;}
.y1e{bottom:490.946667pt;}
.y45{bottom:492.546667pt;}
.y7d{bottom:503.933333pt;}
.y44{bottom:507.773333pt;}
.y1d{bottom:512.253333pt;}
.y98{bottom:513.373333pt;}
.y1c{bottom:521.853333pt;}
.y7c{bottom:522.333333pt;}
.y43{bottom:523.133333pt;}
.y97{bottom:531.773333pt;}
.yfa{bottom:534.173333pt;}
.y1b{bottom:537.213333pt;}
.y42{bottom:538.493333pt;}
.y7b{bottom:540.733333pt;}
.y96{bottom:550.173333pt;}
.y1a{bottom:552.573333pt;}
.y41{bottom:553.853333pt;}
.y7a{bottom:559.133333pt;}
.y19{bottom:567.613333pt;}
.y95{bottom:568.573333pt;}
.y40{bottom:569.213333pt;}
.y79{bottom:577.533333pt;}
.y11b{bottom:580.413333pt;}
.y18{bottom:582.813333pt;}
.y94{bottom:583.293333pt;}
.yf8{bottom:584.093333pt;}
.y3f{bottom:584.573333pt;}
.y78{bottom:595.933333pt;}
.y17{bottom:598.493333pt;}
.y11a{bottom:598.813333pt;}
.y3e{bottom:599.773333pt;}
.y16{bottom:613.853333pt;}
.y77{bottom:614.333333pt;}
.y3d{bottom:615.133333pt;}
.y119{bottom:617.213333pt;}
.y15{bottom:629.213333pt;}
.y3c{bottom:630.493333pt;}
.yd9{bottom:632.413333pt;}
.y76{bottom:632.733333pt;}
.yf6{bottom:634.173333pt;}
.y118{bottom:635.453333pt;}
.y14{bottom:644.253333pt;}
.y3b{bottom:645.853333pt;}
.y117{bottom:650.013333pt;}
.yd8{bottom:650.813333pt;}
.y75{bottom:651.133333pt;}
.y13{bottom:659.293333pt;}
.y3a{bottom:661.213333pt;}
.yd3{bottom:669.213333pt;}
.y74{bottom:669.533333pt;}
.y12{bottom:675.453333pt;}
.y39{bottom:676.413333pt;}
.yd2{bottom:687.613333pt;}
.yf4{bottom:687.773333pt;}
.y73{bottom:687.933333pt;}
.y38{bottom:691.773333pt;}
.y11{bottom:692.253333pt;}
.y10{bottom:704.573333pt;}
.y72{bottom:706.333333pt;}
.yf{bottom:713.213333pt;}
.ye{bottom:721.053333pt;}
.y71{bottom:724.773333pt;}
.yf3{bottom:741.573333pt;}
.y70{bottom:743.173333pt;}
.y4{bottom:746.560000pt;}
.yf2{bottom:759.973333pt;}
.y6{bottom:761.573333pt;}
.yf1{bottom:778.693333pt;}
.y6f{bottom:779.973333pt;}
.yf0{bottom:797.093333pt;}
.y6e{bottom:798.373333pt;}
.yd{bottom:803.173333pt;}
.yc{bottom:815.173333pt;}
.yef{bottom:815.493333pt;}
.y6d{bottom:816.773333pt;}
.yee{bottom:833.893333pt;}
.y6c{bottom:835.173333pt;}
.yed{bottom:852.293333pt;}
.y6b{bottom:853.573333pt;}
.yb{bottom:861.253333pt;}
.yec{bottom:870.693333pt;}
.y6a{bottom:871.973333pt;}
.yeb{bottom:889.093333pt;}
.yd7{bottom:890.053333pt;}
.y69{bottom:890.373333pt;}
.yea{bottom:907.173333pt;}
.yd6{bottom:908.453333pt;}
.y68{bottom:908.773333pt;}
.y8{bottom:915.813333pt;}
.ye9{bottom:925.573333pt;}
.y120{bottom:926.853333pt;}
.y67{bottom:927.173333pt;}
.y7{bottom:934.213333pt;}
.ye7{bottom:940.933333pt;}
.y66{bottom:945.280000pt;}
.y93{bottom:945.600000pt;}
.ya{bottom:983.520000pt;}
.y5f{bottom:984.960000pt;}
.y62{bottom:992.480000pt;}
.y9{bottom:996.160000pt;}
.y61{bottom:1010.720000pt;}
.y63{bottom:1041.440000pt;}
.hd{height:7.798750pt;}
.he{height:9.627187pt;}
.h4{height:16.382812pt;}
.h1d{height:18.386667pt;}
.h1e{height:18.396000pt;}
.h1f{height:18.420000pt;}
.h1a{height:18.426667pt;}
.ha{height:22.367500pt;}
.h1b{height:22.546667pt;}
.h1c{height:22.706667pt;}
.h8{height:26.381250pt;}
.h15{height:26.400000pt;}
.h14{height:34.830000pt;}
.hf{height:35.975313pt;}
.h5{height:37.868750pt;}
.h7{height:39.571875pt;}
.h2{height:39.840000pt;}
.h10{height:40.358750pt;}
.hc{height:40.406250pt;}
.h16{height:41.975000pt;}
.h19{height:44.687500pt;}
.h1{height:44.735000pt;}
.h6{height:45.625000pt;}
.h25{height:49.266667pt;}
.h23{height:49.280000pt;}
.h22{height:49.440000pt;}
.h20{height:49.472000pt;}
.hb{height:49.565000pt;}
.h12{height:52.134375pt;}
.h26{height:52.946667pt;}
.h21{height:52.960000pt;}
.h24{height:53.146667pt;}
.h13{height:53.535000pt;}
.h11{height:59.150000pt;}
.h18{height:62.812500pt;}
.h17{height:64.500000pt;}
.h3{height:71.524375pt;}
.h9{height:85.785000pt;}
.h0{height:1056.000000pt;}
.w8{width:60.032000pt;}
.wd{width:63.232000pt;}
.w3{width:68.472000pt;}
.w7{width:74.720000pt;}
.wc{width:78.560000pt;}
.w9{width:109.440000pt;}
.wa{width:110.112000pt;}
.we{width:115.040000pt;}
.wf{width:116.032000pt;}
.wb{width:129.778667pt;}
.w5{width:133.312000pt;}
.w10{width:136.493333pt;}
.w6{width:254.266667pt;}
.w2{width:361.120000pt;}
.w4{width:469.853333pt;}
.w1{width:696.320000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:7.453333pt;}
.x3{left:52.000000pt;}
.x4{left:59.840000pt;}
.x5{left:64.640000pt;}
.x9{left:68.000000pt;}
.x19{left:89.152000pt;}
.x16{left:96.032000pt;}
.x29{left:144.026667pt;}
.x23{left:152.026667pt;}
.x1a{left:158.266667pt;}
.x1e{left:164.666667pt;}
.x8{left:171.226667pt;}
.x6{left:183.386667pt;}
.x15{left:184.346667pt;}
.x1b{left:213.946667pt;}
.x24{left:231.226667pt;}
.x1f{left:240.026667pt;}
.x25{left:295.106667pt;}
.x20{left:300.706667pt;}
.x12{left:312.386667pt;}
.xa{left:328.066667pt;}
.xb{left:340.866667pt;}
.x1c{left:347.906667pt;}
.xc{left:349.986667pt;}
.xd{left:357.026667pt;}
.xe{left:366.146667pt;}
.xf{left:376.706667pt;}
.x10{left:389.506667pt;}
.x17{left:396.066667pt;}
.x2{left:400.066667pt;}
.x1{left:408.066667pt;}
.x21{left:410.786667pt;}
.x7{left:419.746667pt;}
.x11{left:452.733333pt;}
.x13{left:454.720000pt;}
.x22{left:521.706667pt;}
.x26{left:527.466667pt;}
.x28{left:696.933333pt;}
.x18{left:698.053333pt;}
.x27{left:716.933333pt;}
.x1d{left:720.133333pt;}
}




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