
    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_4348438bf42dc356fe76095c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_90b72cf6cfaf2daa752295b7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c003d6a4ff5ece0c72c48440.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.877441;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_b3beba8c776a8f692214a91e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.776855;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_c42ea4204e291fc2a46abafd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1eef2d32856d90505b0c0f7a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966309;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_51d9f521b6f16ab4a6f48826.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_30be4a4205162aad328869b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.688965;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_eb8b63aa8c34e989b17d594d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_66c4cdd0cf164a5c18c990e6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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_24f9a8a0afe829f066fa600d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e33381feca408e5274c9d0e7.woff2')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.254371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254371,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.792000px;}
.ls3{letter-spacing:-0.740550px;}
.lsa{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls4{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.078000px;}
.ls7{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.162000px;}
.ls9{letter-spacing:0.216000px;}
.lse{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.792000px;}
.ls12{letter-spacing:0.912000px;}
.ls10{letter-spacing:0.972000px;}
.ls1{letter-spacing:1.309895px;}
.ls8{letter-spacing:102.240000px;}
.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;}
}
.ws5{word-spacing:-41.040000px;}
.wsb{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.496000px;}
.wsd{word-spacing:-17.208000px;}
.ws9{word-spacing:-15.984000px;}
.ws4{word-spacing:0.000000px;}
.ws1{word-spacing:0.691461px;}
.ws0{word-spacing:420.975840px;}
._24{margin-left:-14.064000px;}
._3{margin-left:-6.592560px;}
._4{margin-left:-5.352000px;}
._2{margin-left:-2.985120px;}
._1{margin-left:-1.135440px;}
._0{width:1.434240px;}
._b{width:2.569680px;}
._a{width:4.087440px;}
._17{width:5.159040px;}
._c{width:6.168000px;}
._d{width:7.416000px;}
._10{width:9.264000px;}
._11{width:10.824000px;}
._18{width:12.053760px;}
._19{width:13.278720px;}
._e{width:14.904000px;}
._f{width:16.333200px;}
._15{width:19.097760px;}
._8{width:20.664000px;}
._9{width:22.674960px;}
._12{width:24.197040px;}
._6{width:25.992000px;}
._7{width:27.245760px;}
._1f{width:28.254720px;}
._16{width:29.880000px;}
._1b{width:31.296000px;}
._1a{width:32.544000px;}
._1c{width:34.366320px;}
._1d{width:35.523360px;}
._13{width:36.792000px;}
._14{width:38.172000px;}
._1e{width:39.925200px;}
._22{width:41.920560px;}
._3e{width:43.255440px;}
._43{width:44.944560px;}
._32{width:51.312000px;}
._28{width:57.960000px;}
._2a{width:62.040000px;}
._2d{width:66.000000px;}
._31{width:67.296000px;}
._29{width:69.529680px;}
._3a{width:72.084000px;}
._33{width:79.248000px;}
._2e{width:82.448160px;}
._27{width:90.012000px;}
._41{width:96.912000px;}
._25{width:101.953200px;}
._37{width:114.852000px;}
._2c{width:116.377920px;}
._2b{width:117.607440px;}
._23{width:138.180000px;}
._3b{width:139.968000px;}
._30{width:142.794960px;}
._39{width:144.849840px;}
._38{width:145.992000px;}
._36{width:149.412000px;}
._34{width:154.764000px;}
._2f{width:166.080000px;}
._21{width:174.844560px;}
._3c{width:178.176000px;}
._42{width:180.168000px;}
._35{width:183.404160px;}
._26{width:197.193600px;}
._20{width:198.247440px;}
._44{width:216.720000px;}
._40{width:281.032560px;}
._3f{width:282.079440px;}
._5{width:431.756880px;}
._3d{width:446.256000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs6{font-size:49.089115px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y10{bottom:-1.965000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.700000px;}
.y12{bottom:3.330141px;}
.y14{bottom:15.855000px;}
.yf{bottom:17.115000px;}
.y45{bottom:18.375000px;}
.ye{bottom:46.815000px;}
.y15{bottom:53.460000px;}
.yc{bottom:56.700000px;}
.y129{bottom:112.320000px;}
.yec{bottom:112.680000px;}
.y84{bottom:114.120000px;}
.y73{bottom:114.480000px;}
.yc4{bottom:117.360000px;}
.ya2{bottom:124.380000px;}
.yb4{bottom:127.620000px;}
.y43{bottom:128.520000px;}
.y11d{bottom:131.040000px;}
.yeb{bottom:133.020000px;}
.y108{bottom:133.380000px;}
.y83{bottom:134.820000px;}
.y72{bottom:135.180000px;}
.yc3{bottom:138.060000px;}
.ya1{bottom:145.080000px;}
.yb3{bottom:148.320000px;}
.y42{bottom:149.220000px;}
.y11c{bottom:151.740000px;}
.yea{bottom:153.720000px;}
.y107{bottom:154.080000px;}
.y71{bottom:155.880000px;}
.yc2{bottom:158.760000px;}
.ya0{bottom:165.780000px;}
.yb2{bottom:169.020000px;}
.y41{bottom:169.920000px;}
.y11b{bottom:172.440000px;}
.y106{bottom:174.780000px;}
.y70{bottom:176.610000px;}
.ye9{bottom:178.230000px;}
.yc1{bottom:179.490000px;}
.y9f{bottom:186.330000px;}
.yb1{bottom:189.390000px;}
.y40{bottom:190.650000px;}
.y11a{bottom:193.170000px;}
.y105{bottom:195.510000px;}
.y6f{bottom:197.310000px;}
.ye8{bottom:199.110000px;}
.yc0{bottom:200.190000px;}
.y9e{bottom:207.030000px;}
.yb0{bottom:210.450000px;}
.y3f{bottom:210.990000px;}
.y119{bottom:213.870000px;}
.y104{bottom:216.210000px;}
.y6e{bottom:218.010000px;}
.ye7{bottom:219.810000px;}
.ybf{bottom:220.530000px;}
.y9d{bottom:227.730000px;}
.yaf{bottom:231.150000px;}
.y3e{bottom:232.050000px;}
.y118{bottom:234.570000px;}
.y103{bottom:236.910000px;}
.y7a{bottom:238.350000px;}
.y6d{bottom:238.710000px;}
.ye6{bottom:240.510000px;}
.ybe{bottom:241.590000px;}
.y9c{bottom:248.430000px;}
.yae{bottom:251.850000px;}
.y3d{bottom:252.750000px;}
.y117{bottom:255.270000px;}
.y102{bottom:257.610000px;}
.y12c{bottom:259.050000px;}
.y6c{bottom:259.410000px;}
.ye5{bottom:261.210000px;}
.ybd{bottom:262.290000px;}
.y9b{bottom:269.130000px;}
.yad{bottom:272.550000px;}
.y3c{bottom:273.450000px;}
.y116{bottom:275.970000px;}
.y101{bottom:278.310000px;}
.y12e{bottom:279.750000px;}
.y6b{bottom:280.110000px;}
.ye4{bottom:281.910000px;}
.ybc{bottom:282.990000px;}
.y9a{bottom:289.830000px;}
.yac{bottom:292.890000px;}
.y3b{bottom:294.150000px;}
.y115{bottom:296.670000px;}
.y100{bottom:299.010000px;}
.y12d{bottom:300.450000px;}
.y6a{bottom:300.810000px;}
.ye3{bottom:302.610000px;}
.ybb{bottom:303.330000px;}
.y99{bottom:310.530000px;}
.yab{bottom:313.950000px;}
.y3a{bottom:314.850000px;}
.y114{bottom:317.370000px;}
.yff{bottom:319.710000px;}
.y69{bottom:321.510000px;}
.ye2{bottom:323.310000px;}
.yba{bottom:324.030000px;}
.y98{bottom:331.230000px;}
.yaa{bottom:334.650000px;}
.y39{bottom:335.550000px;}
.y113{bottom:338.070000px;}
.yfe{bottom:340.410000px;}
.yb9{bottom:340.770000px;}
.y68{bottom:342.210000px;}
.ye1{bottom:344.010000px;}
.y97{bottom:351.570000px;}
.ya9{bottom:355.350000px;}
.y38{bottom:356.250000px;}
.y112{bottom:358.410000px;}
.yfd{bottom:361.110000px;}
.y67{bottom:362.910000px;}
.ye0{bottom:364.710000px;}
.y96{bottom:372.630000px;}
.ya8{bottom:376.050000px;}
.y37{bottom:376.950000px;}
.y111{bottom:379.110000px;}
.y128{bottom:381.450000px;}
.yfc{bottom:381.810000px;}
.y82{bottom:383.250000px;}
.y66{bottom:383.610000px;}
.ydf{bottom:385.410000px;}
.y95{bottom:393.330000px;}
.ya7{bottom:396.750000px;}
.y36{bottom:397.650000px;}
.y110{bottom:399.810000px;}
.yfb{bottom:402.150000px;}
.y65{bottom:404.310000px;}
.yde{bottom:406.110000px;}
.y94{bottom:414.030000px;}
.y10f{bottom:416.370000px;}
.ya6{bottom:417.090000px;}
.y35{bottom:418.395000px;}
.yfa{bottom:423.255000px;}
.y81{bottom:424.695000px;}
.y64{bottom:425.055000px;}
.ydd{bottom:426.855000px;}
.y93{bottom:434.775000px;}
.y34{bottom:439.095000px;}
.ya5{bottom:441.795000px;}
.y80{bottom:445.395000px;}
.y63{bottom:445.755000px;}
.yf9{bottom:447.375000px;}
.ydc{bottom:447.555000px;}
.y92{bottom:455.475000px;}
.y33{bottom:459.795000px;}
.y76{bottom:466.095000px;}
.y62{bottom:466.455000px;}
.ydb{bottom:468.255000px;}
.y91{bottom:476.175000px;}
.y32{bottom:480.495000px;}
.y79{bottom:486.795000px;}
.y61{bottom:487.155000px;}
.yf8{bottom:488.955000px;}
.yda{bottom:492.555000px;}
.y90{bottom:496.875000px;}
.y31{bottom:501.195000px;}
.ya4{bottom:507.495000px;}
.y60{bottom:507.855000px;}
.yf7{bottom:509.655000px;}
.y127{bottom:512.895000px;}
.yd9{bottom:516.855000px;}
.y8f{bottom:517.575000px;}
.y30{bottom:521.895000px;}
.y12b{bottom:528.015000px;}
.y5f{bottom:528.375000px;}
.yf6{bottom:533.955000px;}
.yd8{bottom:537.555000px;}
.y8e{bottom:538.275000px;}
.y2f{bottom:542.595000px;}
.y12a{bottom:548.715000px;}
.y5e{bottom:549.075000px;}
.yf5{bottom:558.255000px;}
.yd7{bottom:558.615000px;}
.y8d{bottom:558.975000px;}
.y2e{bottom:563.295000px;}
.y5d{bottom:569.775000px;}
.yf4{bottom:578.955000px;}
.yd6{bottom:579.315000px;}
.y8c{bottom:579.675000px;}
.y2d{bottom:583.995000px;}
.y44{bottom:587.220000px;}
.y5c{bottom:590.475000px;}
.yd5{bottom:600.015000px;}
.y8b{bottom:600.375000px;}
.y2c{bottom:604.695000px;}
.y5b{bottom:611.175000px;}
.y8a{bottom:620.715000px;}
.y2b{bottom:625.395000px;}
.y5a{bottom:631.875000px;}
.y89{bottom:641.415000px;}
.y2a{bottom:646.095000px;}
.y7f{bottom:652.215000px;}
.y59{bottom:652.575000px;}
.yd4{bottom:662.145000px;}
.y88{bottom:662.505000px;}
.y29{bottom:666.825000px;}
.y7e{bottom:672.945000px;}
.y58{bottom:673.305000px;}
.yd3{bottom:682.485000px;}
.y87{bottom:682.845000px;}
.y28{bottom:687.525000px;}
.y7d{bottom:693.645000px;}
.y57{bottom:694.005000px;}
.yd2{bottom:703.185000px;}
.y86{bottom:703.545000px;}
.y27{bottom:708.225000px;}
.y7c{bottom:714.345000px;}
.y56{bottom:714.705000px;}
.y85{bottom:720.105000px;}
.yd1{bottom:723.885000px;}
.yf3{bottom:724.245000px;}
.y26{bottom:728.565000px;}
.y75{bottom:735.045000px;}
.y55{bottom:735.405000px;}
.yd0{bottom:744.585000px;}
.yf2{bottom:744.945000px;}
.y25{bottom:749.625000px;}
.yb8{bottom:752.505000px;}
.y54{bottom:756.105000px;}
.ycf{bottom:765.285000px;}
.y126{bottom:765.645000px;}
.y24{bottom:770.325000px;}
.y78{bottom:776.445000px;}
.yb7{bottom:776.625000px;}
.y53{bottom:776.805000px;}
.yce{bottom:785.985000px;}
.yf1{bottom:786.345000px;}
.y23{bottom:790.665000px;}
.y77{bottom:797.145000px;}
.y52{bottom:797.505000px;}
.ycd{bottom:806.685000px;}
.y125{bottom:807.045000px;}
.yf0{bottom:810.645000px;}
.y22{bottom:811.185000px;}
.ya3{bottom:817.845000px;}
.y51{bottom:818.205000px;}
.ycc{bottom:827.745000px;}
.yef{bottom:831.525000px;}
.y21{bottom:832.245000px;}
.y50{bottom:838.905000px;}
.y10e{bottom:848.445000px;}
.ycb{bottom:852.045000px;}
.y20{bottom:852.945000px;}
.yee{bottom:855.645000px;}
.y4f{bottom:859.605000px;}
.y124{bottom:869.145000px;}
.y10d{bottom:872.745000px;}
.yca{bottom:872.925000px;}
.y1f{bottom:873.285000px;}
.yb6{bottom:879.945000px;}
.y4e{bottom:880.305000px;}
.y123{bottom:889.485000px;}
.yc9{bottom:893.625000px;}
.y1e{bottom:893.985000px;}
.yed{bottom:900.690000px;}
.y4d{bottom:901.050000px;}
.y122{bottom:910.230000px;}
.yc8{bottom:914.370000px;}
.y1d{bottom:915.090000px;}
.y4c{bottom:921.750000px;}
.y121{bottom:931.290000px;}
.yc7{bottom:935.070000px;}
.y1c{bottom:935.790000px;}
.y7b{bottom:942.090000px;}
.y4b{bottom:942.450000px;}
.y120{bottom:955.590000px;}
.y10c{bottom:955.770000px;}
.y1b{bottom:956.490000px;}
.yc6{bottom:959.190000px;}
.y74{bottom:962.790000px;}
.y4a{bottom:963.150000px;}
.y10b{bottom:976.470000px;}
.y1a{bottom:976.830000px;}
.yb5{bottom:983.490000px;}
.y49{bottom:983.850000px;}
.y19{bottom:994.470000px;}
.y11f{bottom:1000.230000px;}
.y10a{bottom:1000.590000px;}
.yc5{bottom:1004.190000px;}
.y48{bottom:1004.550000px;}
.y18{bottom:1018.590000px;}
.y109{bottom:1024.890000px;}
.y47{bottom:1025.250000px;}
.y17{bottom:1042.710000px;}
.y11e{bottom:1045.590000px;}
.y46{bottom:1045.950000px;}
.yd{bottom:1056.735000px;}
.yb{bottom:1065.030000px;}
.y11{bottom:1080.682742px;}
.ya{bottom:1081.230000px;}
.y13{bottom:1088.775000px;}
.y9{bottom:1097.610000px;}
.y8{bottom:1113.810000px;}
.y7{bottom:1130.190000px;}
.y6{bottom:1146.420000px;}
.y5{bottom:1162.800000px;}
.y2{bottom:1176.300000px;}
.y4{bottom:1179.000000px;}
.y3{bottom:1195.380000px;}
.y1{bottom:1197.000000px;}
.h9{height:15.576326px;}
.hc{height:16.200000px;}
.hb{height:29.700000px;}
.h7{height:31.952109px;}
.h6{height:39.247031px;}
.he{height:40.472227px;}
.h4{height:41.027344px;}
.h2{height:42.602344px;}
.h11{height:49.500000px;}
.h13{height:50.273438px;}
.h8{height:50.326875px;}
.ha{height:51.198413px;}
.h3{height:51.328125px;}
.h5{height:58.860000px;}
.h12{height:66.757500px;}
.h10{height:70.664062px;}
.hf{height:72.562500px;}
.hd{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:45.900000px;}
.w7{width:54.540000px;}
.w3{width:103.619060px;}
.w6{width:199.845000px;}
.w2{width:330.720000px;}
.w4{width:403.995000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.x9{left:15.105000px;}
.xf{left:47.880000px;}
.x4{left:59.220000px;}
.x10{left:61.560000px;}
.x6{left:74.443751px;}
.x11{left:84.960000px;}
.x12{left:97.740000px;}
.x13{left:111.420000px;}
.x14{left:125.280000px;}
.x3{left:135.036000px;}
.x15{left:139.140000px;}
.xb{left:147.096000px;}
.x16{left:152.130000px;}
.xc{left:168.150000px;}
.x1a{left:189.030000px;}
.x7{left:199.183751px;}
.x1{left:204.150000px;}
.xe{left:345.315000px;}
.xd{left:366.915000px;}
.x19{left:419.295000px;}
.xa{left:423.615000px;}
.x2{left:475.275000px;}
.x8{left:487.380000px;}
.x17{left:697.650000px;}
.x18{left:837.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.704000pt;}
.ls3{letter-spacing:-0.658266pt;}
.lsa{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls7{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.144000pt;}
.ls9{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.810667pt;}
.ls10{letter-spacing:0.864000pt;}
.ls1{letter-spacing:1.164351pt;}
.ls8{letter-spacing:90.880000pt;}
.ws5{word-spacing:-36.480000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.552000pt;}
.wsd{word-spacing:-15.296000pt;}
.ws9{word-spacing:-14.208000pt;}
.ws4{word-spacing:0.000000pt;}
.ws1{word-spacing:0.614632pt;}
.ws0{word-spacing:374.200747pt;}
._24{margin-left:-12.501333pt;}
._3{margin-left:-5.860053pt;}
._4{margin-left:-4.757333pt;}
._2{margin-left:-2.653440pt;}
._1{margin-left:-1.009280pt;}
._0{width:1.274880pt;}
._b{width:2.284160pt;}
._a{width:3.633280pt;}
._17{width:4.585813pt;}
._c{width:5.482667pt;}
._d{width:6.592000pt;}
._10{width:8.234667pt;}
._11{width:9.621333pt;}
._18{width:10.714453pt;}
._19{width:11.803307pt;}
._e{width:13.248000pt;}
._f{width:14.518400pt;}
._15{width:16.975787pt;}
._8{width:18.368000pt;}
._9{width:20.155520pt;}
._12{width:21.508480pt;}
._6{width:23.104000pt;}
._7{width:24.218453pt;}
._1f{width:25.115307pt;}
._16{width:26.560000pt;}
._1b{width:27.818667pt;}
._1a{width:28.928000pt;}
._1c{width:30.547840pt;}
._1d{width:31.576320pt;}
._13{width:32.704000pt;}
._14{width:33.930667pt;}
._1e{width:35.489067pt;}
._22{width:37.262720pt;}
._3e{width:38.449280pt;}
._43{width:39.950720pt;}
._32{width:45.610667pt;}
._28{width:51.520000pt;}
._2a{width:55.146667pt;}
._2d{width:58.666667pt;}
._31{width:59.818667pt;}
._29{width:61.804160pt;}
._3a{width:64.074667pt;}
._33{width:70.442667pt;}
._2e{width:73.287253pt;}
._27{width:80.010667pt;}
._41{width:86.144000pt;}
._25{width:90.625067pt;}
._37{width:102.090667pt;}
._2c{width:103.447040pt;}
._2b{width:104.539947pt;}
._23{width:122.826667pt;}
._3b{width:124.416000pt;}
._30{width:126.928853pt;}
._39{width:128.755413pt;}
._38{width:129.770667pt;}
._36{width:132.810667pt;}
._34{width:137.568000pt;}
._2f{width:147.626667pt;}
._21{width:155.417387pt;}
._3c{width:158.378667pt;}
._42{width:160.149333pt;}
._35{width:163.025920pt;}
._26{width:175.283200pt;}
._20{width:176.219947pt;}
._44{width:192.640000pt;}
._40{width:249.806720pt;}
._3f{width:250.737280pt;}
._5{width:383.783893pt;}
._3d{width:396.672000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs6{font-size:43.634769pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y10{bottom:-1.746667pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.400000pt;}
.y12{bottom:2.960126pt;}
.y14{bottom:14.093333pt;}
.yf{bottom:15.213333pt;}
.y45{bottom:16.333333pt;}
.ye{bottom:41.613333pt;}
.y15{bottom:47.520000pt;}
.yc{bottom:50.400000pt;}
.y129{bottom:99.840000pt;}
.yec{bottom:100.160000pt;}
.y84{bottom:101.440000pt;}
.y73{bottom:101.760000pt;}
.yc4{bottom:104.320000pt;}
.ya2{bottom:110.560000pt;}
.yb4{bottom:113.440000pt;}
.y43{bottom:114.240000pt;}
.y11d{bottom:116.480000pt;}
.yeb{bottom:118.240000pt;}
.y108{bottom:118.560000pt;}
.y83{bottom:119.840000pt;}
.y72{bottom:120.160000pt;}
.yc3{bottom:122.720000pt;}
.ya1{bottom:128.960000pt;}
.yb3{bottom:131.840000pt;}
.y42{bottom:132.640000pt;}
.y11c{bottom:134.880000pt;}
.yea{bottom:136.640000pt;}
.y107{bottom:136.960000pt;}
.y71{bottom:138.560000pt;}
.yc2{bottom:141.120000pt;}
.ya0{bottom:147.360000pt;}
.yb2{bottom:150.240000pt;}
.y41{bottom:151.040000pt;}
.y11b{bottom:153.280000pt;}
.y106{bottom:155.360000pt;}
.y70{bottom:156.986667pt;}
.ye9{bottom:158.426667pt;}
.yc1{bottom:159.546667pt;}
.y9f{bottom:165.626667pt;}
.yb1{bottom:168.346667pt;}
.y40{bottom:169.466667pt;}
.y11a{bottom:171.706667pt;}
.y105{bottom:173.786667pt;}
.y6f{bottom:175.386667pt;}
.ye8{bottom:176.986667pt;}
.yc0{bottom:177.946667pt;}
.y9e{bottom:184.026667pt;}
.yb0{bottom:187.066667pt;}
.y3f{bottom:187.546667pt;}
.y119{bottom:190.106667pt;}
.y104{bottom:192.186667pt;}
.y6e{bottom:193.786667pt;}
.ye7{bottom:195.386667pt;}
.ybf{bottom:196.026667pt;}
.y9d{bottom:202.426667pt;}
.yaf{bottom:205.466667pt;}
.y3e{bottom:206.266667pt;}
.y118{bottom:208.506667pt;}
.y103{bottom:210.586667pt;}
.y7a{bottom:211.866667pt;}
.y6d{bottom:212.186667pt;}
.ye6{bottom:213.786667pt;}
.ybe{bottom:214.746667pt;}
.y9c{bottom:220.826667pt;}
.yae{bottom:223.866667pt;}
.y3d{bottom:224.666667pt;}
.y117{bottom:226.906667pt;}
.y102{bottom:228.986667pt;}
.y12c{bottom:230.266667pt;}
.y6c{bottom:230.586667pt;}
.ye5{bottom:232.186667pt;}
.ybd{bottom:233.146667pt;}
.y9b{bottom:239.226667pt;}
.yad{bottom:242.266667pt;}
.y3c{bottom:243.066667pt;}
.y116{bottom:245.306667pt;}
.y101{bottom:247.386667pt;}
.y12e{bottom:248.666667pt;}
.y6b{bottom:248.986667pt;}
.ye4{bottom:250.586667pt;}
.ybc{bottom:251.546667pt;}
.y9a{bottom:257.626667pt;}
.yac{bottom:260.346667pt;}
.y3b{bottom:261.466667pt;}
.y115{bottom:263.706667pt;}
.y100{bottom:265.786667pt;}
.y12d{bottom:267.066667pt;}
.y6a{bottom:267.386667pt;}
.ye3{bottom:268.986667pt;}
.ybb{bottom:269.626667pt;}
.y99{bottom:276.026667pt;}
.yab{bottom:279.066667pt;}
.y3a{bottom:279.866667pt;}
.y114{bottom:282.106667pt;}
.yff{bottom:284.186667pt;}
.y69{bottom:285.786667pt;}
.ye2{bottom:287.386667pt;}
.yba{bottom:288.026667pt;}
.y98{bottom:294.426667pt;}
.yaa{bottom:297.466667pt;}
.y39{bottom:298.266667pt;}
.y113{bottom:300.506667pt;}
.yfe{bottom:302.586667pt;}
.yb9{bottom:302.906667pt;}
.y68{bottom:304.186667pt;}
.ye1{bottom:305.786667pt;}
.y97{bottom:312.506667pt;}
.ya9{bottom:315.866667pt;}
.y38{bottom:316.666667pt;}
.y112{bottom:318.586667pt;}
.yfd{bottom:320.986667pt;}
.y67{bottom:322.586667pt;}
.ye0{bottom:324.186667pt;}
.y96{bottom:331.226667pt;}
.ya8{bottom:334.266667pt;}
.y37{bottom:335.066667pt;}
.y111{bottom:336.986667pt;}
.y128{bottom:339.066667pt;}
.yfc{bottom:339.386667pt;}
.y82{bottom:340.666667pt;}
.y66{bottom:340.986667pt;}
.ydf{bottom:342.586667pt;}
.y95{bottom:349.626667pt;}
.ya7{bottom:352.666667pt;}
.y36{bottom:353.466667pt;}
.y110{bottom:355.386667pt;}
.yfb{bottom:357.466667pt;}
.y65{bottom:359.386667pt;}
.yde{bottom:360.986667pt;}
.y94{bottom:368.026667pt;}
.y10f{bottom:370.106667pt;}
.ya6{bottom:370.746667pt;}
.y35{bottom:371.906667pt;}
.yfa{bottom:376.226667pt;}
.y81{bottom:377.506667pt;}
.y64{bottom:377.826667pt;}
.ydd{bottom:379.426667pt;}
.y93{bottom:386.466667pt;}
.y34{bottom:390.306667pt;}
.ya5{bottom:392.706667pt;}
.y80{bottom:395.906667pt;}
.y63{bottom:396.226667pt;}
.yf9{bottom:397.666667pt;}
.ydc{bottom:397.826667pt;}
.y92{bottom:404.866667pt;}
.y33{bottom:408.706667pt;}
.y76{bottom:414.306667pt;}
.y62{bottom:414.626667pt;}
.ydb{bottom:416.226667pt;}
.y91{bottom:423.266667pt;}
.y32{bottom:427.106667pt;}
.y79{bottom:432.706667pt;}
.y61{bottom:433.026667pt;}
.yf8{bottom:434.626667pt;}
.yda{bottom:437.826667pt;}
.y90{bottom:441.666667pt;}
.y31{bottom:445.506667pt;}
.ya4{bottom:451.106667pt;}
.y60{bottom:451.426667pt;}
.yf7{bottom:453.026667pt;}
.y127{bottom:455.906667pt;}
.yd9{bottom:459.426667pt;}
.y8f{bottom:460.066667pt;}
.y30{bottom:463.906667pt;}
.y12b{bottom:469.346667pt;}
.y5f{bottom:469.666667pt;}
.yf6{bottom:474.626667pt;}
.yd8{bottom:477.826667pt;}
.y8e{bottom:478.466667pt;}
.y2f{bottom:482.306667pt;}
.y12a{bottom:487.746667pt;}
.y5e{bottom:488.066667pt;}
.yf5{bottom:496.226667pt;}
.yd7{bottom:496.546667pt;}
.y8d{bottom:496.866667pt;}
.y2e{bottom:500.706667pt;}
.y5d{bottom:506.466667pt;}
.yf4{bottom:514.626667pt;}
.yd6{bottom:514.946667pt;}
.y8c{bottom:515.266667pt;}
.y2d{bottom:519.106667pt;}
.y44{bottom:521.973333pt;}
.y5c{bottom:524.866667pt;}
.yd5{bottom:533.346667pt;}
.y8b{bottom:533.666667pt;}
.y2c{bottom:537.506667pt;}
.y5b{bottom:543.266667pt;}
.y8a{bottom:551.746667pt;}
.y2b{bottom:555.906667pt;}
.y5a{bottom:561.666667pt;}
.y89{bottom:570.146667pt;}
.y2a{bottom:574.306667pt;}
.y7f{bottom:579.746667pt;}
.y59{bottom:580.066667pt;}
.yd4{bottom:588.573333pt;}
.y88{bottom:588.893333pt;}
.y29{bottom:592.733333pt;}
.y7e{bottom:598.173333pt;}
.y58{bottom:598.493333pt;}
.yd3{bottom:606.653333pt;}
.y87{bottom:606.973333pt;}
.y28{bottom:611.133333pt;}
.y7d{bottom:616.573333pt;}
.y57{bottom:616.893333pt;}
.yd2{bottom:625.053333pt;}
.y86{bottom:625.373333pt;}
.y27{bottom:629.533333pt;}
.y7c{bottom:634.973333pt;}
.y56{bottom:635.293333pt;}
.y85{bottom:640.093333pt;}
.yd1{bottom:643.453333pt;}
.yf3{bottom:643.773333pt;}
.y26{bottom:647.613333pt;}
.y75{bottom:653.373333pt;}
.y55{bottom:653.693333pt;}
.yd0{bottom:661.853333pt;}
.yf2{bottom:662.173333pt;}
.y25{bottom:666.333333pt;}
.yb8{bottom:668.893333pt;}
.y54{bottom:672.093333pt;}
.ycf{bottom:680.253333pt;}
.y126{bottom:680.573333pt;}
.y24{bottom:684.733333pt;}
.y78{bottom:690.173333pt;}
.yb7{bottom:690.333333pt;}
.y53{bottom:690.493333pt;}
.yce{bottom:698.653333pt;}
.yf1{bottom:698.973333pt;}
.y23{bottom:702.813333pt;}
.y77{bottom:708.573333pt;}
.y52{bottom:708.893333pt;}
.ycd{bottom:717.053333pt;}
.y125{bottom:717.373333pt;}
.yf0{bottom:720.573333pt;}
.y22{bottom:721.053333pt;}
.ya3{bottom:726.973333pt;}
.y51{bottom:727.293333pt;}
.ycc{bottom:735.773333pt;}
.yef{bottom:739.133333pt;}
.y21{bottom:739.773333pt;}
.y50{bottom:745.693333pt;}
.y10e{bottom:754.173333pt;}
.ycb{bottom:757.373333pt;}
.y20{bottom:758.173333pt;}
.yee{bottom:760.573333pt;}
.y4f{bottom:764.093333pt;}
.y124{bottom:772.573333pt;}
.y10d{bottom:775.773333pt;}
.yca{bottom:775.933333pt;}
.y1f{bottom:776.253333pt;}
.yb6{bottom:782.173333pt;}
.y4e{bottom:782.493333pt;}
.y123{bottom:790.653333pt;}
.yc9{bottom:794.333333pt;}
.y1e{bottom:794.653333pt;}
.yed{bottom:800.613333pt;}
.y4d{bottom:800.933333pt;}
.y122{bottom:809.093333pt;}
.yc8{bottom:812.773333pt;}
.y1d{bottom:813.413333pt;}
.y4c{bottom:819.333333pt;}
.y121{bottom:827.813333pt;}
.yc7{bottom:831.173333pt;}
.y1c{bottom:831.813333pt;}
.y7b{bottom:837.413333pt;}
.y4b{bottom:837.733333pt;}
.y120{bottom:849.413333pt;}
.y10c{bottom:849.573333pt;}
.y1b{bottom:850.213333pt;}
.yc6{bottom:852.613333pt;}
.y74{bottom:855.813333pt;}
.y4a{bottom:856.133333pt;}
.y10b{bottom:867.973333pt;}
.y1a{bottom:868.293333pt;}
.yb5{bottom:874.213333pt;}
.y49{bottom:874.533333pt;}
.y19{bottom:883.973333pt;}
.y11f{bottom:889.093333pt;}
.y10a{bottom:889.413333pt;}
.yc5{bottom:892.613333pt;}
.y48{bottom:892.933333pt;}
.y18{bottom:905.413333pt;}
.y109{bottom:911.013333pt;}
.y47{bottom:911.333333pt;}
.y17{bottom:926.853333pt;}
.y11e{bottom:929.413333pt;}
.y46{bottom:929.733333pt;}
.yd{bottom:939.320000pt;}
.yb{bottom:946.693333pt;}
.y11{bottom:960.606882pt;}
.ya{bottom:961.093333pt;}
.y13{bottom:967.800000pt;}
.y9{bottom:975.653333pt;}
.y8{bottom:990.053333pt;}
.y7{bottom:1004.613333pt;}
.y6{bottom:1019.040000pt;}
.y5{bottom:1033.600000pt;}
.y2{bottom:1045.600000pt;}
.y4{bottom:1048.000000pt;}
.y3{bottom:1062.560000pt;}
.y1{bottom:1064.000000pt;}
.h9{height:13.845623pt;}
.hc{height:14.400000pt;}
.hb{height:26.400000pt;}
.h7{height:28.401875pt;}
.h6{height:34.886250pt;}
.he{height:35.975313pt;}
.h4{height:36.468750pt;}
.h2{height:37.868750pt;}
.h11{height:44.000000pt;}
.h13{height:44.687500pt;}
.h8{height:44.735000pt;}
.ha{height:45.509701pt;}
.h3{height:45.625000pt;}
.h5{height:52.320000pt;}
.h12{height:59.340000pt;}
.h10{height:62.812500pt;}
.hf{height:64.500000pt;}
.hd{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:40.800000pt;}
.w7{width:48.480000pt;}
.w3{width:92.105831pt;}
.w6{width:177.640000pt;}
.w2{width:293.973333pt;}
.w4{width:359.106667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.x9{left:13.426667pt;}
.xf{left:42.560000pt;}
.x4{left:52.640000pt;}
.x10{left:54.720000pt;}
.x6{left:66.172223pt;}
.x11{left:75.520000pt;}
.x12{left:86.880000pt;}
.x13{left:99.040000pt;}
.x14{left:111.360000pt;}
.x3{left:120.032000pt;}
.x15{left:123.680000pt;}
.xb{left:130.752000pt;}
.x16{left:135.226667pt;}
.xc{left:149.466667pt;}
.x1a{left:168.026667pt;}
.x7{left:177.052223pt;}
.x1{left:181.466667pt;}
.xe{left:306.946667pt;}
.xd{left:326.146667pt;}
.x19{left:372.706667pt;}
.xa{left:376.546667pt;}
.x2{left:422.466667pt;}
.x8{left:433.226667pt;}
.x17{left:620.133333pt;}
.x18{left:744.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; }
  