
    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_c1a002698ec607e56e09ce66.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_32eb657ba6178b2b42e4aab2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_c8b30886c0515d21ec718fab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936523;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_0590fa5eb356a968e8fa9fd3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940430;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_d97d61833c1775716aa76db9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_161e2b2056ee4694b76d1b34.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964844;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_348711d1aca6337c41a7518a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4ef497431e4439aa936b56db.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b180c9006613fcdd42decf8f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6ed0012c12295117fe096900.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ae3726b5f3621bb46ba1fcef.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m2{transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182433,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m0{transform:matrix(0.284725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284725,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3{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:-84.240000px;}
.v5{vertical-align:-82.080000px;}
.v1{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v6{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v7{vertical-align:27.360000px;}
.ls1f{letter-spacing:-1.512000px;}
.lsf{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-1.056000px;}
.ls19{letter-spacing:-0.936000px;}
.ls12{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.045360px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.269400px;}
.lsc{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.321600px;}
.ls8{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.864000px;}
.ls4{letter-spacing:0.918000px;}
.ls13{letter-spacing:1.440000px;}
.lsb{letter-spacing:4.320000px;}
.ls10{letter-spacing:7.200000px;}
.ls17{letter-spacing:8.640000px;}
.ls0{letter-spacing:10.974240px;}
.ls1{letter-spacing:12.420000px;}
.ls1b{letter-spacing:13.680000px;}
.lsa{letter-spacing:20.880000px;}
.ls16{letter-spacing:87.264000px;}
.ls15{letter-spacing:87.984000px;}
.ls14{letter-spacing:166.296000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-18.864000px;}
.ws12{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.704880px;}
.wse{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.928000px;}
.ws17{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.712000px;}
.wsf{word-spacing:-17.280000px;}
.ws11{word-spacing:-17.208000px;}
.ws13{word-spacing:-17.064000px;}
.ws5{word-spacing:-16.613280px;}
.ws18{word-spacing:-16.488000px;}
.ws0{word-spacing:-15.333600px;}
.ws9{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.099120px;}
.ws8{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws16{word-spacing:-12.329400px;}
.wsd{word-spacing:-12.014640px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.786880px;}
.wsb{word-spacing:0.000000px;}
._e{margin-left:-10.800000px;}
._3{margin-left:-3.529864px;}
._1{margin-left:-1.901397px;}
._0{width:1.529224px;}
._2{width:3.014400px;}
._8{width:4.709397px;}
._9{width:5.715243px;}
._7{width:6.912000px;}
._a{width:8.016346px;}
._6{width:9.216000px;}
._d{width:10.314430px;}
._5{width:12.024000px;}
._4{width:13.032000px;}
._c{width:14.501397px;}
._b{width:15.941397px;}
._18{width:16.942567px;}
._16{width:19.020173px;}
._f{width:20.088000px;}
._10{width:21.485397px;}
._19{width:22.501206px;}
._17{width:23.689379px;}
._11{width:24.840000px;}
._12{width:26.352000px;}
._15{width:28.092173px;}
._1b{width:30.000000px;}
._1e{width:31.152000px;}
._13{width:32.472000px;}
._14{width:33.673725px;}
._1f{width:34.976550px;}
._1a{width:36.369588px;}
._1c{width:39.528000px;}
._1d{width:40.956173px;}
.fc4{color:rgb(57,83,164);}
.fc3{color:rgb(0,112,193);}
.fc2{color:rgb(130,132,135);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.140000px;}
.y4{bottom:4.680000px;}
.y6{bottom:6.660000px;}
.y5{bottom:51.480000px;}
.y3{bottom:52.200000px;}
.y8{bottom:56.340000px;}
.y5b{bottom:115.596000px;}
.y93{bottom:121.356000px;}
.ya5{bottom:121.536000px;}
.y32{bottom:125.676000px;}
.y77{bottom:127.296000px;}
.ycf{bottom:133.596000px;}
.y5a{bottom:139.356000px;}
.yd3{bottom:139.536000px;}
.ye7{bottom:144.576000px;}
.y92{bottom:145.116000px;}
.ya4{bottom:145.296000px;}
.y31{bottom:147.096000px;}
.y76{bottom:151.050000px;}
.y100{bottom:151.590000px;}
.yce{bottom:157.350000px;}
.y59{bottom:163.110000px;}
.y122{bottom:166.170000px;}
.ye6{bottom:168.330000px;}
.y91{bottom:168.870000px;}
.ya3{bottom:169.050000px;}
.y75{bottom:174.810000px;}
.y30{bottom:177.150000px;}
.ycd{bottom:181.290000px;}
.y58{bottom:186.870000px;}
.yc3{bottom:187.050000px;}
.yff{bottom:190.290000px;}
.ye5{bottom:192.270000px;}
.y90{bottom:192.810000px;}
.y74{bottom:198.570000px;}
.y2f{bottom:198.750000px;}
.ycc{bottom:205.050000px;}
.y57{bottom:210.810000px;}
.yfe{bottom:210.990000px;}
.y8f{bottom:216.570000px;}
.ybb{bottom:216.750000px;}
.y73{bottom:222.330000px;}
.y2e{bottom:225.210000px;}
.y121{bottom:225.750000px;}
.ycb{bottom:228.810000px;}
.yfd{bottom:231.690000px;}
.ye4{bottom:234.030000px;}
.yc2{bottom:234.570000px;}
.y8e{bottom:240.330000px;}
.ya2{bottom:240.510000px;}
.y2d{bottom:242.310000px;}
.y72{bottom:246.270000px;}
.y120{bottom:246.450000px;}
.y56{bottom:252.570000px;}
.ye3{bottom:257.790000px;}
.yc1{bottom:258.510000px;}
.y2c{bottom:259.770000px;}
.y8d{bottom:264.270000px;}
.yfc{bottom:270.390000px;}
.y55{bottom:276.330000px;}
.yca{bottom:276.510000px;}
.y2b{bottom:277.050000px;}
.ye2{bottom:281.550000px;}
.ya1{bottom:282.270000px;}
.y11f{bottom:285.150000px;}
.y71{bottom:288.030000px;}
.yfb{bottom:291.090000px;}
.y2a{bottom:297.930000px;}
.y54{bottom:300.090000px;}
.yc9{bottom:300.270000px;}
.ye1{bottom:305.490000px;}
.y11e{bottom:305.850000px;}
.y8c{bottom:306.030000px;}
.y70{bottom:311.970000px;}
.y29{bottom:321.690000px;}
.y53{bottom:324.030000px;}
.y8b{bottom:329.835000px;}
.yfa{bottom:330.015000px;}
.y6f{bottom:335.775000px;}
.y11d{bottom:344.595000px;}
.y28{bottom:345.675000px;}
.y52{bottom:347.835000px;}
.ye0{bottom:350.175000px;}
.yf9{bottom:350.715000px;}
.y8a{bottom:353.775000px;}
.y6e{bottom:359.535000px;}
.y11c{bottom:365.295000px;}
.y27{bottom:369.435000px;}
.yf8{bottom:371.415000px;}
.y51{bottom:371.595000px;}
.yc8{bottom:371.775000px;}
.y89{bottom:377.535000px;}
.y6d{bottom:383.295000px;}
.ydf{bottom:391.755000px;}
.y26{bottom:393.195000px;}
.y50{bottom:395.355000px;}
.yd2{bottom:395.535000px;}
.y88{bottom:401.295000px;}
.y11b{bottom:403.995000px;}
.y6c{bottom:407.235000px;}
.yf7{bottom:410.115000px;}
.yde{bottom:412.275000px;}
.yc7{bottom:413.355000px;}
.y25{bottom:416.955000px;}
.y4f{bottom:419.295000px;}
.y87{bottom:425.055000px;}
.yba{bottom:427.755000px;}
.yf6{bottom:430.815000px;}
.y6b{bottom:430.995000px;}
.yc6{bottom:437.295000px;}
.y24{bottom:440.895000px;}
.y11a{bottom:442.695000px;}
.yd1{bottom:443.055000px;}
.yc0{bottom:445.755000px;}
.yb9{bottom:448.275000px;}
.y86{bottom:448.995000px;}
.y6a{bottom:454.755000px;}
.y4e{bottom:461.055000px;}
.y119{bottom:463.395000px;}
.y23{bottom:464.655000px;}
.ybf{bottom:466.275000px;}
.yd0{bottom:466.995000px;}
.y85{bottom:472.755000px;}
.y69{bottom:478.515000px;}
.y4d{bottom:484.815000px;}
.y22{bottom:488.415000px;}
.yb8{bottom:490.575000px;}
.yf5{bottom:492.555000px;}
.y84{bottom:496.515000px;}
.y118{bottom:502.095000px;}
.ydd{bottom:502.275000px;}
.y68{bottom:502.455000px;}
.y4c{bottom:508.575000px;}
.y21{bottom:512.175000px;}
.yb7{bottom:514.335000px;}
.y83{bottom:520.275000px;}
.y117{bottom:522.795000px;}
.ydc{bottom:526.035000px;}
.yf4{bottom:531.975000px;}
.y4b{bottom:532.515000px;}
.y20{bottom:535.935000px;}
.yb6{bottom:538.275000px;}
.y116{bottom:543.495000px;}
.ya0{bottom:544.215000px;}
.y67{bottom:546.735000px;}
.ydb{bottom:549.795000px;}
.yf3{bottom:555.555000px;}
.y4a{bottom:556.275000px;}
.y1f{bottom:559.875000px;}
.yb5{bottom:562.035000px;}
.y82{bottom:564.735000px;}
.y66{bottom:567.255000px;}
.yf2{bottom:579.495000px;}
.y49{bottom:580.035000px;}
.y115{bottom:582.195000px;}
.y1e{bottom:583.635000px;}
.y81{bottom:585.255000px;}
.yb4{bottom:585.795000px;}
.y9f{bottom:585.975000px;}
.yda{bottom:594.255000px;}
.y114{bottom:602.925000px;}
.y48{bottom:603.825000px;}
.y65{bottom:609.585000px;}
.y9e{bottom:609.765000px;}
.yd9{bottom:614.805000px;}
.yf1{bottom:621.285000px;}
.y47{bottom:627.585000px;}
.ybe{bottom:627.765000px;}
.y1d{bottom:627.945000px;}
.yb3{bottom:633.345000px;}
.y9d{bottom:633.525000px;}
.y113{bottom:641.625000px;}
.yf0{bottom:645.225000px;}
.y46{bottom:651.525000px;}
.y64{bottom:653.865000px;}
.yb2{bottom:657.285000px;}
.y9c{bottom:657.465000px;}
.y112{bottom:662.325000px;}
.ybd{bottom:669.525000px;}
.y1c{bottom:669.705000px;}
.y63{bottom:674.745000px;}
.y45{bottom:675.285000px;}
.yb1{bottom:681.045000px;}
.y9b{bottom:681.225000px;}
.yef{bottom:686.985000px;}
.ybc{bottom:693.285000px;}
.y44{bottom:699.045000px;}
.y111{bottom:701.025000px;}
.yb0{bottom:704.805000px;}
.y9a{bottom:704.985000px;}
.y1b{bottom:706.245000px;}
.yee{bottom:710.925000px;}
.y62{bottom:717.225000px;}
.y110{bottom:721.725000px;}
.y43{bottom:722.805000px;}
.yc5{bottom:722.985000px;}
.y99{bottom:728.745000px;}
.yed{bottom:734.685000px;}
.y61{bottom:740.985000px;}
.y1a{bottom:744.945000px;}
.y42{bottom:746.745000px;}
.y98{bottom:752.505000px;}
.y10f{bottom:760.245000px;}
.y60{bottom:764.745000px;}
.y19{bottom:765.645000px;}
.y80{bottom:770.505000px;}
.yd8{bottom:776.265000px;}
.y97{bottom:776.445000px;}
.y10e{bottom:781.485000px;}
.y18{bottom:786.345000px;}
.y5f{bottom:788.505000px;}
.y41{bottom:788.685000px;}
.y7f{bottom:794.265000px;}
.y96{bottom:796.965000px;}
.yec{bottom:800.025000px;}
.yd7{bottom:800.205000px;}
.y17{bottom:807.045000px;}
.y40{bottom:812.445000px;}
.y95{bottom:817.485000px;}
.y7e{bottom:818.025000px;}
.yaf{bottom:818.205000px;}
.y10d{bottom:819.645000px;}
.y16{bottom:827.745000px;}
.y3f{bottom:836.205000px;}
.yae{bottom:841.965000px;}
.yd6{bottom:844.665000px;}
.y15{bottom:848.445000px;}
.y10c{bottom:858.525000px;}
.y3e{bottom:859.965000px;}
.yad{bottom:865.770000px;}
.yd5{bottom:865.950000px;}
.y14{bottom:869.190000px;}
.y10b{bottom:879.270000px;}
.y5e{bottom:883.770000px;}
.y3d{bottom:883.950000px;}
.yac{bottom:889.530000px;}
.y13{bottom:889.890000px;}
.y10a{bottom:899.970000px;}
.yd4{bottom:906.990000px;}
.y7d{bottom:907.530000px;}
.y5d{bottom:907.710000px;}
.y12{bottom:910.590000px;}
.yeb{bottom:913.290000px;}
.yab{bottom:913.470000px;}
.y109{bottom:920.670000px;}
.y3c{bottom:925.710000px;}
.y11{bottom:931.290000px;}
.y5c{bottom:931.470000px;}
.yea{bottom:937.050000px;}
.yaa{bottom:937.230000px;}
.y108{bottom:941.370000px;}
.y3b{bottom:949.470000px;}
.y10{bottom:951.990000px;}
.y7c{bottom:955.230000px;}
.ya9{bottom:960.990000px;}
.yf{bottom:972.690000px;}
.y3a{bottom:973.230000px;}
.y7b{bottom:978.990000px;}
.y94{bottom:979.170000px;}
.y107{bottom:980.070000px;}
.ya8{bottom:984.750000px;}
.ye{bottom:993.390000px;}
.y39{bottom:996.990000px;}
.y124{bottom:998.070000px;}
.y106{bottom:1000.770000px;}
.y7a{bottom:1002.750000px;}
.ye9{bottom:1002.930000px;}
.y123{bottom:1018.770000px;}
.y38{bottom:1020.750000px;}
.y79{bottom:1026.510000px;}
.yc4{bottom:1026.690000px;}
.ya7{bottom:1029.030000px;}
.yd{bottom:1031.190000px;}
.y105{bottom:1039.470000px;}
.y37{bottom:1044.690000px;}
.ya6{bottom:1049.730000px;}
.y78{bottom:1050.450000px;}
.yc{bottom:1052.070000px;}
.y36{bottom:1068.450000px;}
.ye8{bottom:1074.390000px;}
.y104{bottom:1078.170000px;}
.yb{bottom:1078.710000px;}
.y35{bottom:1092.210000px;}
.y103{bottom:1098.870000px;}
.ya{bottom:1104.090000px;}
.y34{bottom:1115.970000px;}
.y102{bottom:1119.570000px;}
.y9{bottom:1136.160000px;}
.y33{bottom:1139.940000px;}
.y101{bottom:1140.120000px;}
.y1{bottom:1193.580000px;}
.y7{bottom:1207.800000px;}
.h2{height:16.380000px;}
.h4{height:19.485000px;}
.h6{height:21.105000px;}
.he{height:39.346875px;}
.hf{height:45.106875px;}
.h7{height:45.403594px;}
.ha{height:48.802500px;}
.h5{height:50.229844px;}
.hd{height:50.273438px;}
.h9{height:54.316406px;}
.h3{height:56.320312px;}
.h8{height:58.651172px;}
.hc{height:70.664062px;}
.hb{height:72.562500px;}
.h11{height:74.004654px;}
.h12{height:74.681367px;}
.h10{height:74.704922px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:92.340000px;}
.w4{width:180.390000px;}
.w2{width:577.170000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:1.425000px;}
.x5{left:4.491000px;}
.x7{left:34.230000px;}
.x8{left:39.090000px;}
.x9{left:57.630000px;}
.xa{left:62.490000px;}
.xb{left:71.850000px;}
.xc{left:76.710000px;}
.xd{left:93.630000px;}
.xe{left:98.490000px;}
.x4{left:103.545000px;}
.x14{left:106.236000px;}
.xf{left:107.850000px;}
.x10{left:112.710000px;}
.x15{left:116.136000px;}
.x1d{left:127.656000px;}
.x11{left:142.590000px;}
.x12{left:147.090000px;}
.x1{left:158.085000px;}
.x34{left:162.030000px;}
.x35{left:166.530000px;}
.x13{left:170.310000px;}
.x1e{left:172.830000px;}
.x1f{left:184.530000px;}
.x1c{left:189.030000px;}
.x20{left:207.570000px;}
.x21{left:219.450000px;}
.x22{left:248.430000px;}
.x23{left:260.490000px;}
.x24{left:268.635000px;}
.x25{left:280.695000px;}
.x17{left:297.615000px;}
.x26{left:357.195000px;}
.x27{left:380.955000px;}
.x16{left:399.135000px;}
.x18{left:405.435000px;}
.x28{left:412.995000px;}
.x19{left:418.395000px;}
.x29{left:424.695000px;}
.x1a{left:454.425000px;}
.x1b{left:466.845000px;}
.x2a{left:476.745000px;}
.x2b{left:488.445000px;}
.x2c{left:523.545000px;}
.x2d{left:535.425000px;}
.x3{left:564.765000px;}
.x2e{left:582.405000px;}
.x2f{left:594.285000px;}
.x6{left:600.960000px;}
.x30{left:647.610000px;}
.x31{left:659.310000px;}
.x32{left:744.270000px;}
.x33{left:755.970000px;}
@media print{
.v4{vertical-align:-74.880000pt;}
.v5{vertical-align:-72.960000pt;}
.v1{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v6{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v7{vertical-align:24.320000pt;}
.ls1f{letter-spacing:-1.344000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-0.938667pt;}
.ls19{letter-spacing:-0.832000pt;}
.ls12{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.040320pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.239467pt;}
.lsc{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.285867pt;}
.ls8{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.768000pt;}
.ls4{letter-spacing:0.816000pt;}
.ls13{letter-spacing:1.280000pt;}
.lsb{letter-spacing:3.840000pt;}
.ls10{letter-spacing:6.400000pt;}
.ls17{letter-spacing:7.680000pt;}
.ls0{letter-spacing:9.754880pt;}
.ls1{letter-spacing:11.040000pt;}
.ls1b{letter-spacing:12.160000pt;}
.lsa{letter-spacing:18.560000pt;}
.ls16{letter-spacing:77.568000pt;}
.ls15{letter-spacing:78.208000pt;}
.ls14{letter-spacing:147.818667pt;}
.ws14{word-spacing:-16.768000pt;}
.ws12{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.626560pt;}
.wse{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.936000pt;}
.ws17{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.744000pt;}
.wsf{word-spacing:-15.360000pt;}
.ws11{word-spacing:-15.296000pt;}
.ws13{word-spacing:-15.168000pt;}
.ws5{word-spacing:-14.767360pt;}
.ws18{word-spacing:-14.656000pt;}
.ws0{word-spacing:-13.629867pt;}
.ws9{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.421440pt;}
.ws8{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws16{word-spacing:-10.959467pt;}
.wsd{word-spacing:-10.679680pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.810560pt;}
.wsb{word-spacing:0.000000pt;}
._e{margin-left:-9.600000pt;}
._3{margin-left:-3.137657pt;}
._1{margin-left:-1.690131pt;}
._0{width:1.359310pt;}
._2{width:2.679467pt;}
._8{width:4.186131pt;}
._9{width:5.080216pt;}
._7{width:6.144000pt;}
._a{width:7.125641pt;}
._6{width:8.192000pt;}
._d{width:9.168382pt;}
._5{width:10.688000pt;}
._4{width:11.584000pt;}
._c{width:12.890131pt;}
._b{width:14.170131pt;}
._18{width:15.060059pt;}
._16{width:16.906821pt;}
._f{width:17.856000pt;}
._10{width:19.098131pt;}
._19{width:20.001072pt;}
._17{width:21.057226pt;}
._11{width:22.080000pt;}
._12{width:23.424000pt;}
._15{width:24.970821pt;}
._1b{width:26.666667pt;}
._1e{width:27.690667pt;}
._13{width:28.864000pt;}
._14{width:29.932200pt;}
._1f{width:31.090266pt;}
._1a{width:32.328523pt;}
._1c{width:35.136000pt;}
._1d{width:36.405487pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.680000pt;}
.y4{bottom:4.160000pt;}
.y6{bottom:5.920000pt;}
.y5{bottom:45.760000pt;}
.y3{bottom:46.400000pt;}
.y8{bottom:50.080000pt;}
.y5b{bottom:102.752000pt;}
.y93{bottom:107.872000pt;}
.ya5{bottom:108.032000pt;}
.y32{bottom:111.712000pt;}
.y77{bottom:113.152000pt;}
.ycf{bottom:118.752000pt;}
.y5a{bottom:123.872000pt;}
.yd3{bottom:124.032000pt;}
.ye7{bottom:128.512000pt;}
.y92{bottom:128.992000pt;}
.ya4{bottom:129.152000pt;}
.y31{bottom:130.752000pt;}
.y76{bottom:134.266667pt;}
.y100{bottom:134.746667pt;}
.yce{bottom:139.866667pt;}
.y59{bottom:144.986667pt;}
.y122{bottom:147.706667pt;}
.ye6{bottom:149.626667pt;}
.y91{bottom:150.106667pt;}
.ya3{bottom:150.266667pt;}
.y75{bottom:155.386667pt;}
.y30{bottom:157.466667pt;}
.ycd{bottom:161.146667pt;}
.y58{bottom:166.106667pt;}
.yc3{bottom:166.266667pt;}
.yff{bottom:169.146667pt;}
.ye5{bottom:170.906667pt;}
.y90{bottom:171.386667pt;}
.y74{bottom:176.506667pt;}
.y2f{bottom:176.666667pt;}
.ycc{bottom:182.266667pt;}
.y57{bottom:187.386667pt;}
.yfe{bottom:187.546667pt;}
.y8f{bottom:192.506667pt;}
.ybb{bottom:192.666667pt;}
.y73{bottom:197.626667pt;}
.y2e{bottom:200.186667pt;}
.y121{bottom:200.666667pt;}
.ycb{bottom:203.386667pt;}
.yfd{bottom:205.946667pt;}
.ye4{bottom:208.026667pt;}
.yc2{bottom:208.506667pt;}
.y8e{bottom:213.626667pt;}
.ya2{bottom:213.786667pt;}
.y2d{bottom:215.386667pt;}
.y72{bottom:218.906667pt;}
.y120{bottom:219.066667pt;}
.y56{bottom:224.506667pt;}
.ye3{bottom:229.146667pt;}
.yc1{bottom:229.786667pt;}
.y2c{bottom:230.906667pt;}
.y8d{bottom:234.906667pt;}
.yfc{bottom:240.346667pt;}
.y55{bottom:245.626667pt;}
.yca{bottom:245.786667pt;}
.y2b{bottom:246.266667pt;}
.ye2{bottom:250.266667pt;}
.ya1{bottom:250.906667pt;}
.y11f{bottom:253.466667pt;}
.y71{bottom:256.026667pt;}
.yfb{bottom:258.746667pt;}
.y2a{bottom:264.826667pt;}
.y54{bottom:266.746667pt;}
.yc9{bottom:266.906667pt;}
.ye1{bottom:271.546667pt;}
.y11e{bottom:271.866667pt;}
.y8c{bottom:272.026667pt;}
.y70{bottom:277.306667pt;}
.y29{bottom:285.946667pt;}
.y53{bottom:288.026667pt;}
.y8b{bottom:293.186667pt;}
.yfa{bottom:293.346667pt;}
.y6f{bottom:298.466667pt;}
.y11d{bottom:306.306667pt;}
.y28{bottom:307.266667pt;}
.y52{bottom:309.186667pt;}
.ye0{bottom:311.266667pt;}
.yf9{bottom:311.746667pt;}
.y8a{bottom:314.466667pt;}
.y6e{bottom:319.586667pt;}
.y11c{bottom:324.706667pt;}
.y27{bottom:328.386667pt;}
.yf8{bottom:330.146667pt;}
.y51{bottom:330.306667pt;}
.yc8{bottom:330.466667pt;}
.y89{bottom:335.586667pt;}
.y6d{bottom:340.706667pt;}
.ydf{bottom:348.226667pt;}
.y26{bottom:349.506667pt;}
.y50{bottom:351.426667pt;}
.yd2{bottom:351.586667pt;}
.y88{bottom:356.706667pt;}
.y11b{bottom:359.106667pt;}
.y6c{bottom:361.986667pt;}
.yf7{bottom:364.546667pt;}
.yde{bottom:366.466667pt;}
.yc7{bottom:367.426667pt;}
.y25{bottom:370.626667pt;}
.y4f{bottom:372.706667pt;}
.y87{bottom:377.826667pt;}
.yba{bottom:380.226667pt;}
.yf6{bottom:382.946667pt;}
.y6b{bottom:383.106667pt;}
.yc6{bottom:388.706667pt;}
.y24{bottom:391.906667pt;}
.y11a{bottom:393.506667pt;}
.yd1{bottom:393.826667pt;}
.yc0{bottom:396.226667pt;}
.yb9{bottom:398.466667pt;}
.y86{bottom:399.106667pt;}
.y6a{bottom:404.226667pt;}
.y4e{bottom:409.826667pt;}
.y119{bottom:411.906667pt;}
.y23{bottom:413.026667pt;}
.ybf{bottom:414.466667pt;}
.yd0{bottom:415.106667pt;}
.y85{bottom:420.226667pt;}
.y69{bottom:425.346667pt;}
.y4d{bottom:430.946667pt;}
.y22{bottom:434.146667pt;}
.yb8{bottom:436.066667pt;}
.yf5{bottom:437.826667pt;}
.y84{bottom:441.346667pt;}
.y118{bottom:446.306667pt;}
.ydd{bottom:446.466667pt;}
.y68{bottom:446.626667pt;}
.y4c{bottom:452.066667pt;}
.y21{bottom:455.266667pt;}
.yb7{bottom:457.186667pt;}
.y83{bottom:462.466667pt;}
.y117{bottom:464.706667pt;}
.ydc{bottom:467.586667pt;}
.yf4{bottom:472.866667pt;}
.y4b{bottom:473.346667pt;}
.y20{bottom:476.386667pt;}
.yb6{bottom:478.466667pt;}
.y116{bottom:483.106667pt;}
.ya0{bottom:483.746667pt;}
.y67{bottom:485.986667pt;}
.ydb{bottom:488.706667pt;}
.yf3{bottom:493.826667pt;}
.y4a{bottom:494.466667pt;}
.y1f{bottom:497.666667pt;}
.yb5{bottom:499.586667pt;}
.y82{bottom:501.986667pt;}
.y66{bottom:504.226667pt;}
.yf2{bottom:515.106667pt;}
.y49{bottom:515.586667pt;}
.y115{bottom:517.506667pt;}
.y1e{bottom:518.786667pt;}
.y81{bottom:520.226667pt;}
.yb4{bottom:520.706667pt;}
.y9f{bottom:520.866667pt;}
.yda{bottom:528.226667pt;}
.y114{bottom:535.933333pt;}
.y48{bottom:536.733333pt;}
.y65{bottom:541.853333pt;}
.y9e{bottom:542.013333pt;}
.yd9{bottom:546.493333pt;}
.yf1{bottom:552.253333pt;}
.y47{bottom:557.853333pt;}
.ybe{bottom:558.013333pt;}
.y1d{bottom:558.173333pt;}
.yb3{bottom:562.973333pt;}
.y9d{bottom:563.133333pt;}
.y113{bottom:570.333333pt;}
.yf0{bottom:573.533333pt;}
.y46{bottom:579.133333pt;}
.y64{bottom:581.213333pt;}
.yb2{bottom:584.253333pt;}
.y9c{bottom:584.413333pt;}
.y112{bottom:588.733333pt;}
.ybd{bottom:595.133333pt;}
.y1c{bottom:595.293333pt;}
.y63{bottom:599.773333pt;}
.y45{bottom:600.253333pt;}
.yb1{bottom:605.373333pt;}
.y9b{bottom:605.533333pt;}
.yef{bottom:610.653333pt;}
.ybc{bottom:616.253333pt;}
.y44{bottom:621.373333pt;}
.y111{bottom:623.133333pt;}
.yb0{bottom:626.493333pt;}
.y9a{bottom:626.653333pt;}
.y1b{bottom:627.773333pt;}
.yee{bottom:631.933333pt;}
.y62{bottom:637.533333pt;}
.y110{bottom:641.533333pt;}
.y43{bottom:642.493333pt;}
.yc5{bottom:642.653333pt;}
.y99{bottom:647.773333pt;}
.yed{bottom:653.053333pt;}
.y61{bottom:658.653333pt;}
.y1a{bottom:662.173333pt;}
.y42{bottom:663.773333pt;}
.y98{bottom:668.893333pt;}
.y10f{bottom:675.773333pt;}
.y60{bottom:679.773333pt;}
.y19{bottom:680.573333pt;}
.y80{bottom:684.893333pt;}
.yd8{bottom:690.013333pt;}
.y97{bottom:690.173333pt;}
.y10e{bottom:694.653333pt;}
.y18{bottom:698.973333pt;}
.y5f{bottom:700.893333pt;}
.y41{bottom:701.053333pt;}
.y7f{bottom:706.013333pt;}
.y96{bottom:708.413333pt;}
.yec{bottom:711.133333pt;}
.yd7{bottom:711.293333pt;}
.y17{bottom:717.373333pt;}
.y40{bottom:722.173333pt;}
.y95{bottom:726.653333pt;}
.y7e{bottom:727.133333pt;}
.yaf{bottom:727.293333pt;}
.y10d{bottom:728.573333pt;}
.y16{bottom:735.773333pt;}
.y3f{bottom:743.293333pt;}
.yae{bottom:748.413333pt;}
.yd6{bottom:750.813333pt;}
.y15{bottom:754.173333pt;}
.y10c{bottom:763.133333pt;}
.y3e{bottom:764.413333pt;}
.yad{bottom:769.573333pt;}
.yd5{bottom:769.733333pt;}
.y14{bottom:772.613333pt;}
.y10b{bottom:781.573333pt;}
.y5e{bottom:785.573333pt;}
.y3d{bottom:785.733333pt;}
.yac{bottom:790.693333pt;}
.y13{bottom:791.013333pt;}
.y10a{bottom:799.973333pt;}
.yd4{bottom:806.213333pt;}
.y7d{bottom:806.693333pt;}
.y5d{bottom:806.853333pt;}
.y12{bottom:809.413333pt;}
.yeb{bottom:811.813333pt;}
.yab{bottom:811.973333pt;}
.y109{bottom:818.373333pt;}
.y3c{bottom:822.853333pt;}
.y11{bottom:827.813333pt;}
.y5c{bottom:827.973333pt;}
.yea{bottom:832.933333pt;}
.yaa{bottom:833.093333pt;}
.y108{bottom:836.773333pt;}
.y3b{bottom:843.973333pt;}
.y10{bottom:846.213333pt;}
.y7c{bottom:849.093333pt;}
.ya9{bottom:854.213333pt;}
.yf{bottom:864.613333pt;}
.y3a{bottom:865.093333pt;}
.y7b{bottom:870.213333pt;}
.y94{bottom:870.373333pt;}
.y107{bottom:871.173333pt;}
.ya8{bottom:875.333333pt;}
.ye{bottom:883.013333pt;}
.y39{bottom:886.213333pt;}
.y124{bottom:887.173333pt;}
.y106{bottom:889.573333pt;}
.y7a{bottom:891.333333pt;}
.ye9{bottom:891.493333pt;}
.y123{bottom:905.573333pt;}
.y38{bottom:907.333333pt;}
.y79{bottom:912.453333pt;}
.yc4{bottom:912.613333pt;}
.ya7{bottom:914.693333pt;}
.yd{bottom:916.613333pt;}
.y105{bottom:923.973333pt;}
.y37{bottom:928.613333pt;}
.ya6{bottom:933.093333pt;}
.y78{bottom:933.733333pt;}
.yc{bottom:935.173333pt;}
.y36{bottom:949.733333pt;}
.ye8{bottom:955.013333pt;}
.y104{bottom:958.373333pt;}
.yb{bottom:958.853333pt;}
.y35{bottom:970.853333pt;}
.y103{bottom:976.773333pt;}
.ya{bottom:981.413333pt;}
.y34{bottom:991.973333pt;}
.y102{bottom:995.173333pt;}
.y9{bottom:1009.920000pt;}
.y33{bottom:1013.280000pt;}
.y101{bottom:1013.440000pt;}
.y1{bottom:1060.960000pt;}
.y7{bottom:1073.600000pt;}
.h2{height:14.560000pt;}
.h4{height:17.320000pt;}
.h6{height:18.760000pt;}
.he{height:34.975000pt;}
.hf{height:40.095000pt;}
.h7{height:40.358750pt;}
.ha{height:43.380000pt;}
.h5{height:44.648750pt;}
.hd{height:44.687500pt;}
.h9{height:48.281250pt;}
.h3{height:50.062500pt;}
.h8{height:52.134375pt;}
.hc{height:62.812500pt;}
.hb{height:64.500000pt;}
.h11{height:65.781915pt;}
.h12{height:66.383438pt;}
.h10{height:66.404375pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:82.080000pt;}
.w4{width:160.346667pt;}
.w2{width:513.040000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:1.266667pt;}
.x5{left:3.992000pt;}
.x7{left:30.426667pt;}
.x8{left:34.746667pt;}
.x9{left:51.226667pt;}
.xa{left:55.546667pt;}
.xb{left:63.866667pt;}
.xc{left:68.186667pt;}
.xd{left:83.226667pt;}
.xe{left:87.546667pt;}
.x4{left:92.040000pt;}
.x14{left:94.432000pt;}
.xf{left:95.866667pt;}
.x10{left:100.186667pt;}
.x15{left:103.232000pt;}
.x1d{left:113.472000pt;}
.x11{left:126.746667pt;}
.x12{left:130.746667pt;}
.x1{left:140.520000pt;}
.x34{left:144.026667pt;}
.x35{left:148.026667pt;}
.x13{left:151.386667pt;}
.x1e{left:153.626667pt;}
.x1f{left:164.026667pt;}
.x1c{left:168.026667pt;}
.x20{left:184.506667pt;}
.x21{left:195.066667pt;}
.x22{left:220.826667pt;}
.x23{left:231.546667pt;}
.x24{left:238.786667pt;}
.x25{left:249.506667pt;}
.x17{left:264.546667pt;}
.x26{left:317.506667pt;}
.x27{left:338.626667pt;}
.x16{left:354.786667pt;}
.x18{left:360.386667pt;}
.x28{left:367.106667pt;}
.x19{left:371.906667pt;}
.x29{left:377.506667pt;}
.x1a{left:403.933333pt;}
.x1b{left:414.973333pt;}
.x2a{left:423.773333pt;}
.x2b{left:434.173333pt;}
.x2c{left:465.373333pt;}
.x2d{left:475.933333pt;}
.x3{left:502.013333pt;}
.x2e{left:517.693333pt;}
.x2f{left:528.253333pt;}
.x6{left:534.186667pt;}
.x30{left:575.653333pt;}
.x31{left:586.053333pt;}
.x32{left:661.573333pt;}
.x33{left:671.973333pt;}
}




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