
    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_bff105073509909341a6fc7e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_328010e5a719855877537a88.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_72a930bccddca93467a02e85.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_e80aa421c32f2c5aa512b27b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_3ce8c3664f4bb4e50620f7f5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_59ccb533da196d397f29ef13.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.034180;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_2fe4598d3e29301a5dcaa124.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.034180;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_b6f5c5f3aa2c0a5ddf780172.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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_0bd711d944cb3287763f7bfb.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ed60de8777ce0f3eadef8fad.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls5{letter-spacing:-4.320000px;}
.lsf{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls2{letter-spacing:-0.034560px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.037440px;}
.lsa{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.341280px;}
.ls13{letter-spacing:0.360000px;}
.lse{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.720000px;}
.lsd{letter-spacing:5.040000px;}
.ls7{letter-spacing:11.520000px;}
.ls12{letter-spacing:232.560000px;}
.ls11{letter-spacing:250.560000px;}
.ls10{letter-spacing:270.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws7{word-spacing:-18.504000px;}
.ws3{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.wsa{word-spacing:-0.216000px;}
.ws8{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-88.394400px;}
._f{margin-left:-15.120000px;}
._6{margin-left:-5.040000px;}
._7{margin-left:-3.960000px;}
._8{margin-left:-2.642400px;}
._4{margin-left:-1.108080px;}
._0{width:1.274400px;}
._5{width:2.489280px;}
._13{width:3.600000px;}
._d{width:4.680000px;}
._e{width:5.688000px;}
._10{width:7.488000px;}
._9{width:9.072000px;}
._a{width:10.224000px;}
._b{width:11.313600px;}
._c{width:12.336000px;}
._11{width:14.136000px;}
._14{width:15.192000px;}
._19{width:16.653600px;}
._12{width:19.224000px;}
._15{width:20.232000px;}
._16{width:21.312000px;}
._2f{width:24.624000px;}
._1a{width:26.136000px;}
._17{width:29.232000px;}
._18{width:30.456000px;}
._1d{width:40.320000px;}
._2c{width:74.149680px;}
._1b{width:76.227360px;}
._3{width:83.380080px;}
._1{width:109.380000px;}
._1f{width:132.397680px;}
._21{width:142.356000px;}
._22{width:150.132000px;}
._29{width:160.212000px;}
._1e{width:198.000000px;}
._23{width:206.053680px;}
._28{width:237.568080px;}
._1c{width:280.380000px;}
._20{width:300.252000px;}
._2b{width:369.804000px;}
._2e{width:542.244000px;}
._27{width:556.068000px;}
._2d{width:590.196000px;}
._24{width:644.196000px;}
._25{width:695.820000px;}
._2a{width:702.156000px;}
._26{width:1003.836000px;}
.fc3{color:transparent;}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:87.120000px;}
.fs4{font-size:95.760000px;}
.yb{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y31{bottom:6.120000px;}
.ya{bottom:6.300000px;}
.y2f{bottom:10.800000px;}
.y8{bottom:21.600000px;}
.y30{bottom:31.500000px;}
.y9{bottom:31.680000px;}
.y7{bottom:57.780000px;}
.y6{bottom:78.516000px;}
.y145{bottom:117.396000px;}
.y2e{bottom:122.076000px;}
.y5e{bottom:124.056000px;}
.y134{bottom:124.416000px;}
.y107{bottom:129.816000px;}
.y89{bottom:131.616000px;}
.yc2{bottom:134.316000px;}
.y11a{bottom:137.556000px;}
.y144{bottom:138.096000px;}
.y2d{bottom:142.776000px;}
.y5d{bottom:144.756000px;}
.y133{bottom:145.116000px;}
.y106{bottom:150.510000px;}
.yb0{bottom:151.410000px;}
.y88{bottom:152.310000px;}
.yc1{bottom:155.010000px;}
.y143{bottom:158.790000px;}
.y2c{bottom:163.470000px;}
.y5c{bottom:165.450000px;}
.ye4{bottom:165.630000px;}
.y132{bottom:165.810000px;}
.y119{bottom:168.510000px;}
.y105{bottom:171.210000px;}
.yaf{bottom:172.110000px;}
.y87{bottom:173.010000px;}
.yc0{bottom:175.710000px;}
.y142{bottom:179.490000px;}
.y2b{bottom:184.170000px;}
.y5b{bottom:186.150000px;}
.ye3{bottom:186.330000px;}
.y131{bottom:186.510000px;}
.y118{bottom:189.210000px;}
.y104{bottom:191.910000px;}
.yae{bottom:192.810000px;}
.y86{bottom:193.710000px;}
.ybf{bottom:196.410000px;}
.y141{bottom:200.190000px;}
.y2a{bottom:204.870000px;}
.y5a{bottom:206.850000px;}
.ye2{bottom:207.030000px;}
.y117{bottom:209.910000px;}
.yad{bottom:213.510000px;}
.y85{bottom:214.410000px;}
.ybe{bottom:217.110000px;}
.y140{bottom:220.890000px;}
.y130{bottom:225.210000px;}
.y29{bottom:225.570000px;}
.y59{bottom:227.550000px;}
.ye1{bottom:227.730000px;}
.y103{bottom:230.610000px;}
.yac{bottom:234.210000px;}
.y84{bottom:235.110000px;}
.ybd{bottom:237.810000px;}
.y13f{bottom:241.590000px;}
.y28{bottom:246.270000px;}
.y58{bottom:248.250000px;}
.ye0{bottom:248.430000px;}
.y15a{bottom:250.230000px;}
.y102{bottom:251.310000px;}
.yab{bottom:254.910000px;}
.y83{bottom:255.810000px;}
.ybc{bottom:258.510000px;}
.y12f{bottom:263.910000px;}
.y27{bottom:266.970000px;}
.y57{bottom:268.950000px;}
.ydf{bottom:269.130000px;}
.y101{bottom:272.010000px;}
.yaa{bottom:275.610000px;}
.y82{bottom:276.510000px;}
.y13e{bottom:278.130000px;}
.ybb{bottom:279.210000px;}
.y12e{bottom:284.610000px;}
.y26{bottom:287.670000px;}
.y56{bottom:289.650000px;}
.y100{bottom:292.710000px;}
.y159{bottom:293.970000px;}
.ya9{bottom:296.310000px;}
.y81{bottom:297.210000px;}
.y13d{bottom:298.830000px;}
.yba{bottom:299.910000px;}
.y12d{bottom:305.310000px;}
.yde{bottom:307.830000px;}
.y25{bottom:308.370000px;}
.y55{bottom:310.395000px;}
.yff{bottom:313.455000px;}
.ya8{bottom:317.055000px;}
.y80{bottom:317.955000px;}
.yb9{bottom:320.655000px;}
.y12c{bottom:326.055000px;}
.ydd{bottom:328.575000px;}
.y24{bottom:329.115000px;}
.y54{bottom:331.095000px;}
.yfe{bottom:334.155000px;}
.y13c{bottom:335.415000px;}
.ya7{bottom:337.755000px;}
.y7f{bottom:338.655000px;}
.yb8{bottom:341.355000px;}
.y12b{bottom:346.755000px;}
.ydc{bottom:349.275000px;}
.y23{bottom:349.815000px;}
.y53{bottom:351.795000px;}
.y13b{bottom:356.115000px;}
.ya6{bottom:358.275000px;}
.y7e{bottom:359.355000px;}
.yb7{bottom:362.055000px;}
.y158{bottom:364.755000px;}
.y12a{bottom:367.455000px;}
.ydb{bottom:369.975000px;}
.y52{bottom:372.495000px;}
.yfd{bottom:372.855000px;}
.ya5{bottom:378.975000px;}
.y7d{bottom:380.055000px;}
.y22{bottom:380.775000px;}
.yb6{bottom:382.755000px;}
.y157{bottom:385.455000px;}
.y129{bottom:388.155000px;}
.yda{bottom:390.675000px;}
.y13a{bottom:392.475000px;}
.y51{bottom:393.195000px;}
.yfc{bottom:393.555000px;}
.ya4{bottom:399.675000px;}
.y7c{bottom:400.755000px;}
.yb5{bottom:403.455000px;}
.y128{bottom:408.855000px;}
.yd9{bottom:411.375000px;}
.y139{bottom:413.175000px;}
.y50{bottom:413.895000px;}
.yfb{bottom:414.255000px;}
.y21{bottom:417.675000px;}
.ya3{bottom:420.375000px;}
.y7b{bottom:421.455000px;}
.yb4{bottom:424.155000px;}
.y127{bottom:429.555000px;}
.yd8{bottom:432.075000px;}
.y4f{bottom:434.595000px;}
.yfa{bottom:434.955000px;}
.ya2{bottom:441.075000px;}
.y7a{bottom:442.155000px;}
.yb3{bottom:444.855000px;}
.y138{bottom:449.715000px;}
.yd7{bottom:452.775000px;}
.y20{bottom:454.395000px;}
.y4e{bottom:455.295000px;}
.yf9{bottom:455.655000px;}
.ya1{bottom:461.775000px;}
.y79{bottom:462.855000px;}
.yb2{bottom:465.555000px;}
.y126{bottom:468.255000px;}
.y137{bottom:470.415000px;}
.y1f{bottom:475.455000px;}
.y4d{bottom:475.995000px;}
.y116{bottom:476.355000px;}
.ya0{bottom:482.475000px;}
.y78{bottom:483.555000px;}
.yb1{bottom:486.255000px;}
.y125{bottom:488.955000px;}
.y136{bottom:491.115000px;}
.yd6{bottom:491.475000px;}
.yf8{bottom:494.355000px;}
.y4c{bottom:496.695000px;}
.y115{bottom:497.055000px;}
.y9f{bottom:503.175000px;}
.y77{bottom:504.255000px;}
.y124{bottom:509.655000px;}
.y1e{bottom:512.175000px;}
.yf7{bottom:515.055000px;}
.y4b{bottom:517.395000px;}
.y114{bottom:517.755000px;}
.y9e{bottom:523.875000px;}
.y76{bottom:524.955000px;}
.y135{bottom:527.655000px;}
.y1d{bottom:532.875000px;}
.yf6{bottom:535.755000px;}
.y4a{bottom:538.095000px;}
.y113{bottom:538.455000px;}
.y9d{bottom:544.575000px;}
.y75{bottom:545.655000px;}
.y123{bottom:548.355000px;}
.y1c{bottom:553.575000px;}
.yf5{bottom:556.455000px;}
.y49{bottom:558.795000px;}
.y9c{bottom:565.305000px;}
.y74{bottom:566.385000px;}
.y122{bottom:569.085000px;}
.y1b{bottom:574.305000px;}
.yf4{bottom:577.185000px;}
.y48{bottom:579.525000px;}
.y156{bottom:584.385000px;}
.y9b{bottom:586.005000px;}
.y73{bottom:587.085000px;}
.y121{bottom:589.785000px;}
.y1a{bottom:595.005000px;}
.y112{bottom:597.885000px;}
.y47{bottom:600.225000px;}
.y155{bottom:605.085000px;}
.y9a{bottom:606.705000px;}
.y72{bottom:607.785000px;}
.y120{bottom:610.485000px;}
.yd5{bottom:613.005000px;}
.y19{bottom:615.705000px;}
.yf3{bottom:615.885000px;}
.y111{bottom:618.585000px;}
.y46{bottom:620.925000px;}
.y154{bottom:625.785000px;}
.y99{bottom:627.405000px;}
.y71{bottom:628.485000px;}
.y11f{bottom:631.185000px;}
.yd4{bottom:633.705000px;}
.y18{bottom:636.405000px;}
.yf2{bottom:636.585000px;}
.y110{bottom:639.285000px;}
.y45{bottom:641.625000px;}
.y153{bottom:644.505000px;}
.y98{bottom:648.105000px;}
.y70{bottom:649.185000px;}
.y11e{bottom:651.885000px;}
.yd3{bottom:654.405000px;}
.y152{bottom:656.745000px;}
.y17{bottom:657.105000px;}
.yf1{bottom:657.285000px;}
.y44{bottom:662.325000px;}
.y97{bottom:668.805000px;}
.y6f{bottom:669.885000px;}
.y11d{bottom:672.585000px;}
.yd2{bottom:675.105000px;}
.y151{bottom:677.445000px;}
.y16{bottom:677.805000px;}
.yf0{bottom:677.985000px;}
.y43{bottom:683.025000px;}
.y96{bottom:689.505000px;}
.y6e{bottom:690.585000px;}
.y11c{bottom:693.285000px;}
.yd1{bottom:695.805000px;}
.y150{bottom:696.345000px;}
.y15{bottom:698.505000px;}
.y10f{bottom:698.685000px;}
.y42{bottom:703.725000px;}
.y14f{bottom:708.585000px;}
.y95{bottom:710.205000px;}
.y6d{bottom:711.285000px;}
.y11b{bottom:713.985000px;}
.yef{bottom:716.685000px;}
.y14{bottom:719.205000px;}
.y10e{bottom:719.385000px;}
.y41{bottom:724.425000px;}
.y14e{bottom:729.285000px;}
.y94{bottom:730.905000px;}
.y6c{bottom:731.985000px;}
.yd0{bottom:734.505000px;}
.yee{bottom:737.385000px;}
.y13{bottom:739.905000px;}
.y10d{bottom:740.085000px;}
.y40{bottom:745.125000px;}
.y93{bottom:751.605000px;}
.y6b{bottom:752.685000px;}
.ycf{bottom:755.205000px;}
.yed{bottom:758.085000px;}
.y3f{bottom:765.825000px;}
.y92{bottom:772.305000px;}
.y6a{bottom:773.385000px;}
.yce{bottom:775.905000px;}
.y12{bottom:776.625000px;}
.yec{bottom:778.785000px;}
.y3e{bottom:786.525000px;}
.y91{bottom:793.005000px;}
.y69{bottom:794.085000px;}
.ycd{bottom:796.605000px;}
.yeb{bottom:799.485000px;}
.y3d{bottom:807.225000px;}
.y90{bottom:813.750000px;}
.y68{bottom:814.830000px;}
.ycc{bottom:817.350000px;}
.y11{bottom:818.070000px;}
.y10c{bottom:820.230000px;}
.y14d{bottom:825.270000px;}
.y3c{bottom:827.970000px;}
.y8f{bottom:834.450000px;}
.y67{bottom:835.530000px;}
.yea{bottom:838.230000px;}
.y10{bottom:839.130000px;}
.y10b{bottom:840.930000px;}
.y14c{bottom:845.970000px;}
.y3b{bottom:848.670000px;}
.y8e{bottom:855.150000px;}
.ycb{bottom:856.050000px;}
.y66{bottom:856.230000px;}
.ye9{bottom:858.930000px;}
.y10a{bottom:861.630000px;}
.y14b{bottom:864.690000px;}
.y3a{bottom:869.370000px;}
.yf{bottom:875.850000px;}
.yca{bottom:876.750000px;}
.y65{bottom:876.930000px;}
.ye8{bottom:879.630000px;}
.y109{bottom:882.330000px;}
.y39{bottom:890.070000px;}
.y8d{bottom:896.550000px;}
.yc9{bottom:897.450000px;}
.y64{bottom:897.630000px;}
.ye7{bottom:900.330000px;}
.ye{bottom:908.790000px;}
.y38{bottom:910.770000px;}
.y8c{bottom:917.250000px;}
.yc8{bottom:918.150000px;}
.y63{bottom:918.330000px;}
.ye6{bottom:921.030000px;}
.yd{bottom:930.210000px;}
.y37{bottom:931.470000px;}
.y14a{bottom:937.230000px;}
.y8b{bottom:937.950000px;}
.yc7{bottom:938.850000px;}
.y62{bottom:939.030000px;}
.ye5{bottom:941.730000px;}
.y149{bottom:949.470000px;}
.yc{bottom:951.090000px;}
.y36{bottom:952.170000px;}
.y8a{bottom:959.550000px;}
.y61{bottom:959.730000px;}
.y108{bottom:962.430000px;}
.y148{bottom:970.170000px;}
.y5{bottom:971.790000px;}
.yc6{bottom:980.250000px;}
.y60{bottom:980.430000px;}
.y35{bottom:983.130000px;}
.y147{bottom:990.870000px;}
.yc5{bottom:1000.950000px;}
.y5f{bottom:1001.130000px;}
.y146{bottom:1009.590000px;}
.y4{bottom:1013.550000px;}
.yc4{bottom:1021.650000px;}
.y34{bottom:1021.830000px;}
.yc3{bottom:1042.350000px;}
.y33{bottom:1042.530000px;}
.y3{bottom:1055.850000px;}
.y32{bottom:1063.260000px;}
.y2{bottom:1093.140000px;}
.y1{bottom:1115.820000px;}
.h8{height:4.064063px;}
.he{height:33.683203px;}
.h5{height:49.500000px;}
.h4{height:50.273438px;}
.h2{height:50.800781px;}
.hc{height:52.171875px;}
.h7{height:54.316406px;}
.h6{height:58.320000px;}
.ha{height:58.921875px;}
.hb{height:59.436914px;}
.hd{height:61.043203px;}
.h1{height:61.468945px;}
.h9{height:65.884219px;}
.h3{height:67.565039px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:9.719986px;}
.x8{left:38.339986px;}
.x5{left:106.955986px;}
.x11{left:108.035986px;}
.xf{left:161.669986px;}
.x1{left:176.249986px;}
.xa{left:186.329986px;}
.x3{left:206.309986px;}
.x4{left:236.549986px;}
.x2{left:284.249986px;}
.x10{left:323.354986px;}
.xe{left:343.874986px;}
.xd{left:347.654986px;}
.xb{left:386.174986px;}
.x9{left:423.074986px;}
.xc{left:515.624986px;}
.x6{left:851.909986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls5{letter-spacing:-3.840000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:-0.030720pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.033280pt;}
.lsa{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.303360pt;}
.ls13{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsd{letter-spacing:4.480000pt;}
.ls7{letter-spacing:10.240000pt;}
.ls12{letter-spacing:206.720000pt;}
.ls11{letter-spacing:222.720000pt;}
.ls10{letter-spacing:240.000000pt;}
.ws9{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws7{word-spacing:-16.448000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.wsa{word-spacing:-0.192000pt;}
.ws8{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-78.572800pt;}
._f{margin-left:-13.440000pt;}
._6{margin-left:-4.480000pt;}
._7{margin-left:-3.520000pt;}
._8{margin-left:-2.348800pt;}
._4{margin-left:-0.984960pt;}
._0{width:1.132800pt;}
._5{width:2.212693pt;}
._13{width:3.200000pt;}
._d{width:4.160000pt;}
._e{width:5.056000pt;}
._10{width:6.656000pt;}
._9{width:8.064000pt;}
._a{width:9.088000pt;}
._b{width:10.056533pt;}
._c{width:10.965333pt;}
._11{width:12.565333pt;}
._14{width:13.504000pt;}
._19{width:14.803200pt;}
._12{width:17.088000pt;}
._15{width:17.984000pt;}
._16{width:18.944000pt;}
._2f{width:21.888000pt;}
._1a{width:23.232000pt;}
._17{width:25.984000pt;}
._18{width:27.072000pt;}
._1d{width:35.840000pt;}
._2c{width:65.910827pt;}
._1b{width:67.757653pt;}
._3{width:74.115627pt;}
._1{width:97.226667pt;}
._1f{width:117.686827pt;}
._21{width:126.538667pt;}
._22{width:133.450667pt;}
._29{width:142.410667pt;}
._1e{width:176.000000pt;}
._23{width:183.158827pt;}
._28{width:211.171627pt;}
._1c{width:249.226667pt;}
._20{width:266.890667pt;}
._2b{width:328.714667pt;}
._2e{width:481.994667pt;}
._27{width:494.282667pt;}
._2d{width:524.618667pt;}
._24{width:572.618667pt;}
._25{width:618.506667pt;}
._2a{width:624.138667pt;}
._26{width:892.298667pt;}
.fs5{font-size:5.120000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:77.440000pt;}
.fs4{font-size:85.120000pt;}
.yb{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:5.440000pt;}
.ya{bottom:5.600000pt;}
.y2f{bottom:9.600000pt;}
.y8{bottom:19.200000pt;}
.y30{bottom:28.000000pt;}
.y9{bottom:28.160000pt;}
.y7{bottom:51.360000pt;}
.y6{bottom:69.792000pt;}
.y145{bottom:104.352000pt;}
.y2e{bottom:108.512000pt;}
.y5e{bottom:110.272000pt;}
.y134{bottom:110.592000pt;}
.y107{bottom:115.392000pt;}
.y89{bottom:116.992000pt;}
.yc2{bottom:119.392000pt;}
.y11a{bottom:122.272000pt;}
.y144{bottom:122.752000pt;}
.y2d{bottom:126.912000pt;}
.y5d{bottom:128.672000pt;}
.y133{bottom:128.992000pt;}
.y106{bottom:133.786667pt;}
.yb0{bottom:134.586667pt;}
.y88{bottom:135.386667pt;}
.yc1{bottom:137.786667pt;}
.y143{bottom:141.146667pt;}
.y2c{bottom:145.306667pt;}
.y5c{bottom:147.066667pt;}
.ye4{bottom:147.226667pt;}
.y132{bottom:147.386667pt;}
.y119{bottom:149.786667pt;}
.y105{bottom:152.186667pt;}
.yaf{bottom:152.986667pt;}
.y87{bottom:153.786667pt;}
.yc0{bottom:156.186667pt;}
.y142{bottom:159.546667pt;}
.y2b{bottom:163.706667pt;}
.y5b{bottom:165.466667pt;}
.ye3{bottom:165.626667pt;}
.y131{bottom:165.786667pt;}
.y118{bottom:168.186667pt;}
.y104{bottom:170.586667pt;}
.yae{bottom:171.386667pt;}
.y86{bottom:172.186667pt;}
.ybf{bottom:174.586667pt;}
.y141{bottom:177.946667pt;}
.y2a{bottom:182.106667pt;}
.y5a{bottom:183.866667pt;}
.ye2{bottom:184.026667pt;}
.y117{bottom:186.586667pt;}
.yad{bottom:189.786667pt;}
.y85{bottom:190.586667pt;}
.ybe{bottom:192.986667pt;}
.y140{bottom:196.346667pt;}
.y130{bottom:200.186667pt;}
.y29{bottom:200.506667pt;}
.y59{bottom:202.266667pt;}
.ye1{bottom:202.426667pt;}
.y103{bottom:204.986667pt;}
.yac{bottom:208.186667pt;}
.y84{bottom:208.986667pt;}
.ybd{bottom:211.386667pt;}
.y13f{bottom:214.746667pt;}
.y28{bottom:218.906667pt;}
.y58{bottom:220.666667pt;}
.ye0{bottom:220.826667pt;}
.y15a{bottom:222.426667pt;}
.y102{bottom:223.386667pt;}
.yab{bottom:226.586667pt;}
.y83{bottom:227.386667pt;}
.ybc{bottom:229.786667pt;}
.y12f{bottom:234.586667pt;}
.y27{bottom:237.306667pt;}
.y57{bottom:239.066667pt;}
.ydf{bottom:239.226667pt;}
.y101{bottom:241.786667pt;}
.yaa{bottom:244.986667pt;}
.y82{bottom:245.786667pt;}
.y13e{bottom:247.226667pt;}
.ybb{bottom:248.186667pt;}
.y12e{bottom:252.986667pt;}
.y26{bottom:255.706667pt;}
.y56{bottom:257.466667pt;}
.y100{bottom:260.186667pt;}
.y159{bottom:261.306667pt;}
.ya9{bottom:263.386667pt;}
.y81{bottom:264.186667pt;}
.y13d{bottom:265.626667pt;}
.yba{bottom:266.586667pt;}
.y12d{bottom:271.386667pt;}
.yde{bottom:273.626667pt;}
.y25{bottom:274.106667pt;}
.y55{bottom:275.906667pt;}
.yff{bottom:278.626667pt;}
.ya8{bottom:281.826667pt;}
.y80{bottom:282.626667pt;}
.yb9{bottom:285.026667pt;}
.y12c{bottom:289.826667pt;}
.ydd{bottom:292.066667pt;}
.y24{bottom:292.546667pt;}
.y54{bottom:294.306667pt;}
.yfe{bottom:297.026667pt;}
.y13c{bottom:298.146667pt;}
.ya7{bottom:300.226667pt;}
.y7f{bottom:301.026667pt;}
.yb8{bottom:303.426667pt;}
.y12b{bottom:308.226667pt;}
.ydc{bottom:310.466667pt;}
.y23{bottom:310.946667pt;}
.y53{bottom:312.706667pt;}
.y13b{bottom:316.546667pt;}
.ya6{bottom:318.466667pt;}
.y7e{bottom:319.426667pt;}
.yb7{bottom:321.826667pt;}
.y158{bottom:324.226667pt;}
.y12a{bottom:326.626667pt;}
.ydb{bottom:328.866667pt;}
.y52{bottom:331.106667pt;}
.yfd{bottom:331.426667pt;}
.ya5{bottom:336.866667pt;}
.y7d{bottom:337.826667pt;}
.y22{bottom:338.466667pt;}
.yb6{bottom:340.226667pt;}
.y157{bottom:342.626667pt;}
.y129{bottom:345.026667pt;}
.yda{bottom:347.266667pt;}
.y13a{bottom:348.866667pt;}
.y51{bottom:349.506667pt;}
.yfc{bottom:349.826667pt;}
.ya4{bottom:355.266667pt;}
.y7c{bottom:356.226667pt;}
.yb5{bottom:358.626667pt;}
.y128{bottom:363.426667pt;}
.yd9{bottom:365.666667pt;}
.y139{bottom:367.266667pt;}
.y50{bottom:367.906667pt;}
.yfb{bottom:368.226667pt;}
.y21{bottom:371.266667pt;}
.ya3{bottom:373.666667pt;}
.y7b{bottom:374.626667pt;}
.yb4{bottom:377.026667pt;}
.y127{bottom:381.826667pt;}
.yd8{bottom:384.066667pt;}
.y4f{bottom:386.306667pt;}
.yfa{bottom:386.626667pt;}
.ya2{bottom:392.066667pt;}
.y7a{bottom:393.026667pt;}
.yb3{bottom:395.426667pt;}
.y138{bottom:399.746667pt;}
.yd7{bottom:402.466667pt;}
.y20{bottom:403.906667pt;}
.y4e{bottom:404.706667pt;}
.yf9{bottom:405.026667pt;}
.ya1{bottom:410.466667pt;}
.y79{bottom:411.426667pt;}
.yb2{bottom:413.826667pt;}
.y126{bottom:416.226667pt;}
.y137{bottom:418.146667pt;}
.y1f{bottom:422.626667pt;}
.y4d{bottom:423.106667pt;}
.y116{bottom:423.426667pt;}
.ya0{bottom:428.866667pt;}
.y78{bottom:429.826667pt;}
.yb1{bottom:432.226667pt;}
.y125{bottom:434.626667pt;}
.y136{bottom:436.546667pt;}
.yd6{bottom:436.866667pt;}
.yf8{bottom:439.426667pt;}
.y4c{bottom:441.506667pt;}
.y115{bottom:441.826667pt;}
.y9f{bottom:447.266667pt;}
.y77{bottom:448.226667pt;}
.y124{bottom:453.026667pt;}
.y1e{bottom:455.266667pt;}
.yf7{bottom:457.826667pt;}
.y4b{bottom:459.906667pt;}
.y114{bottom:460.226667pt;}
.y9e{bottom:465.666667pt;}
.y76{bottom:466.626667pt;}
.y135{bottom:469.026667pt;}
.y1d{bottom:473.666667pt;}
.yf6{bottom:476.226667pt;}
.y4a{bottom:478.306667pt;}
.y113{bottom:478.626667pt;}
.y9d{bottom:484.066667pt;}
.y75{bottom:485.026667pt;}
.y123{bottom:487.426667pt;}
.y1c{bottom:492.066667pt;}
.yf5{bottom:494.626667pt;}
.y49{bottom:496.706667pt;}
.y9c{bottom:502.493333pt;}
.y74{bottom:503.453333pt;}
.y122{bottom:505.853333pt;}
.y1b{bottom:510.493333pt;}
.yf4{bottom:513.053333pt;}
.y48{bottom:515.133333pt;}
.y156{bottom:519.453333pt;}
.y9b{bottom:520.893333pt;}
.y73{bottom:521.853333pt;}
.y121{bottom:524.253333pt;}
.y1a{bottom:528.893333pt;}
.y112{bottom:531.453333pt;}
.y47{bottom:533.533333pt;}
.y155{bottom:537.853333pt;}
.y9a{bottom:539.293333pt;}
.y72{bottom:540.253333pt;}
.y120{bottom:542.653333pt;}
.yd5{bottom:544.893333pt;}
.y19{bottom:547.293333pt;}
.yf3{bottom:547.453333pt;}
.y111{bottom:549.853333pt;}
.y46{bottom:551.933333pt;}
.y154{bottom:556.253333pt;}
.y99{bottom:557.693333pt;}
.y71{bottom:558.653333pt;}
.y11f{bottom:561.053333pt;}
.yd4{bottom:563.293333pt;}
.y18{bottom:565.693333pt;}
.yf2{bottom:565.853333pt;}
.y110{bottom:568.253333pt;}
.y45{bottom:570.333333pt;}
.y153{bottom:572.893333pt;}
.y98{bottom:576.093333pt;}
.y70{bottom:577.053333pt;}
.y11e{bottom:579.453333pt;}
.yd3{bottom:581.693333pt;}
.y152{bottom:583.773333pt;}
.y17{bottom:584.093333pt;}
.yf1{bottom:584.253333pt;}
.y44{bottom:588.733333pt;}
.y97{bottom:594.493333pt;}
.y6f{bottom:595.453333pt;}
.y11d{bottom:597.853333pt;}
.yd2{bottom:600.093333pt;}
.y151{bottom:602.173333pt;}
.y16{bottom:602.493333pt;}
.yf0{bottom:602.653333pt;}
.y43{bottom:607.133333pt;}
.y96{bottom:612.893333pt;}
.y6e{bottom:613.853333pt;}
.y11c{bottom:616.253333pt;}
.yd1{bottom:618.493333pt;}
.y150{bottom:618.973333pt;}
.y15{bottom:620.893333pt;}
.y10f{bottom:621.053333pt;}
.y42{bottom:625.533333pt;}
.y14f{bottom:629.853333pt;}
.y95{bottom:631.293333pt;}
.y6d{bottom:632.253333pt;}
.y11b{bottom:634.653333pt;}
.yef{bottom:637.053333pt;}
.y14{bottom:639.293333pt;}
.y10e{bottom:639.453333pt;}
.y41{bottom:643.933333pt;}
.y14e{bottom:648.253333pt;}
.y94{bottom:649.693333pt;}
.y6c{bottom:650.653333pt;}
.yd0{bottom:652.893333pt;}
.yee{bottom:655.453333pt;}
.y13{bottom:657.693333pt;}
.y10d{bottom:657.853333pt;}
.y40{bottom:662.333333pt;}
.y93{bottom:668.093333pt;}
.y6b{bottom:669.053333pt;}
.ycf{bottom:671.293333pt;}
.yed{bottom:673.853333pt;}
.y3f{bottom:680.733333pt;}
.y92{bottom:686.493333pt;}
.y6a{bottom:687.453333pt;}
.yce{bottom:689.693333pt;}
.y12{bottom:690.333333pt;}
.yec{bottom:692.253333pt;}
.y3e{bottom:699.133333pt;}
.y91{bottom:704.893333pt;}
.y69{bottom:705.853333pt;}
.ycd{bottom:708.093333pt;}
.yeb{bottom:710.653333pt;}
.y3d{bottom:717.533333pt;}
.y90{bottom:723.333333pt;}
.y68{bottom:724.293333pt;}
.ycc{bottom:726.533333pt;}
.y11{bottom:727.173333pt;}
.y10c{bottom:729.093333pt;}
.y14d{bottom:733.573333pt;}
.y3c{bottom:735.973333pt;}
.y8f{bottom:741.733333pt;}
.y67{bottom:742.693333pt;}
.yea{bottom:745.093333pt;}
.y10{bottom:745.893333pt;}
.y10b{bottom:747.493333pt;}
.y14c{bottom:751.973333pt;}
.y3b{bottom:754.373333pt;}
.y8e{bottom:760.133333pt;}
.ycb{bottom:760.933333pt;}
.y66{bottom:761.093333pt;}
.ye9{bottom:763.493333pt;}
.y10a{bottom:765.893333pt;}
.y14b{bottom:768.613333pt;}
.y3a{bottom:772.773333pt;}
.yf{bottom:778.533333pt;}
.yca{bottom:779.333333pt;}
.y65{bottom:779.493333pt;}
.ye8{bottom:781.893333pt;}
.y109{bottom:784.293333pt;}
.y39{bottom:791.173333pt;}
.y8d{bottom:796.933333pt;}
.yc9{bottom:797.733333pt;}
.y64{bottom:797.893333pt;}
.ye7{bottom:800.293333pt;}
.ye{bottom:807.813333pt;}
.y38{bottom:809.573333pt;}
.y8c{bottom:815.333333pt;}
.yc8{bottom:816.133333pt;}
.y63{bottom:816.293333pt;}
.ye6{bottom:818.693333pt;}
.yd{bottom:826.853333pt;}
.y37{bottom:827.973333pt;}
.y14a{bottom:833.093333pt;}
.y8b{bottom:833.733333pt;}
.yc7{bottom:834.533333pt;}
.y62{bottom:834.693333pt;}
.ye5{bottom:837.093333pt;}
.y149{bottom:843.973333pt;}
.yc{bottom:845.413333pt;}
.y36{bottom:846.373333pt;}
.y8a{bottom:852.933333pt;}
.y61{bottom:853.093333pt;}
.y108{bottom:855.493333pt;}
.y148{bottom:862.373333pt;}
.y5{bottom:863.813333pt;}
.yc6{bottom:871.333333pt;}
.y60{bottom:871.493333pt;}
.y35{bottom:873.893333pt;}
.y147{bottom:880.773333pt;}
.yc5{bottom:889.733333pt;}
.y5f{bottom:889.893333pt;}
.y146{bottom:897.413333pt;}
.y4{bottom:900.933333pt;}
.yc4{bottom:908.133333pt;}
.y34{bottom:908.293333pt;}
.yc3{bottom:926.533333pt;}
.y33{bottom:926.693333pt;}
.y3{bottom:938.533333pt;}
.y32{bottom:945.120000pt;}
.y2{bottom:971.680000pt;}
.y1{bottom:991.840000pt;}
.h8{height:3.612500pt;}
.he{height:29.940625pt;}
.h5{height:44.000000pt;}
.h4{height:44.687500pt;}
.h2{height:45.156250pt;}
.hc{height:46.375000pt;}
.h7{height:48.281250pt;}
.h6{height:51.840000pt;}
.ha{height:52.375000pt;}
.hb{height:52.832812pt;}
.hd{height:54.260625pt;}
.h1{height:54.639063pt;}
.h9{height:58.563750pt;}
.h3{height:60.057813pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:8.639988pt;}
.x8{left:34.079988pt;}
.x5{left:95.071988pt;}
.x11{left:96.031988pt;}
.xf{left:143.706655pt;}
.x1{left:156.666655pt;}
.xa{left:165.626655pt;}
.x3{left:183.386655pt;}
.x4{left:210.266655pt;}
.x2{left:252.666655pt;}
.x10{left:287.426655pt;}
.xe{left:305.666655pt;}
.xd{left:309.026655pt;}
.xb{left:343.266655pt;}
.x9{left:376.066655pt;}
.xc{left:458.333321pt;}
.x6{left:757.253321pt;}
}




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