
    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_4a0eb8dd38356452bcbbe169.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_a94c1f0f6a79b40492b7f0bd.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_f7c50f4f4a6d69fbb0a55651.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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_606d4a33592fcda6a7dce036.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_f3bb13e523c6d03734efa0b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_6354bd56d10a73f37ed217ba.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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_f6446a055ceab269f4fec7fd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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;}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.060000px;}
.v6{vertical-align:15.120000px;}
.v5{vertical-align:36.180000px;}
.v3{vertical-align:42.480000px;}
.v7{vertical-align:78.600000px;}
.ls14{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.078600px;}
.ls4{letter-spacing:-0.034560px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.320400px;}
.ls0{letter-spacing:0.341280px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.385200px;}
.ls1{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.720000px;}
.lse{letter-spacing:1.792800px;}
.lsc{letter-spacing:1.812960px;}
.ls10{letter-spacing:11.185200px;}
.lsf{letter-spacing:153.756000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws2{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.246400px;}
.ws8{word-spacing:-11.167800px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:5.472000px;}
.ws9{word-spacing:38.632560px;}
._2{margin-left:-88.394400px;}
._1a{margin-left:-4.342320px;}
._15{margin-left:-3.312000px;}
._b{margin-left:-2.160000px;}
._4{margin-left:-1.108080px;}
._0{width:1.274400px;}
._5{width:2.489280px;}
._10{width:3.916560px;}
._19{width:5.184000px;}
._d{width:6.192000px;}
._16{width:7.992000px;}
._17{width:9.492000px;}
._18{width:10.684080px;}
._c{width:11.952000px;}
._e{width:12.988080px;}
._f{width:14.164080px;}
._11{width:15.912000px;}
._14{width:16.948080px;}
._1d{width:19.296000px;}
._1e{width:20.397600px;}
._7{width:22.104000px;}
._6{width:23.112000px;}
._8{width:24.441600px;}
._13{width:25.459200px;}
._12{width:26.678400px;}
._1f{width:28.358400px;}
._9{width:29.520000px;}
._a{width:30.744000px;}
._22{width:31.773600px;}
._25{width:39.672000px;}
._26{width:40.824000px;}
._1b{width:57.960000px;}
._1c{width:59.256000px;}
._3{width:83.380080px;}
._27{width:91.612080px;}
._28{width:92.999760px;}
._20{width:103.152000px;}
._1{width:109.380000px;}
._24{width:113.292000px;}
._23{width:114.552000px;}
._21{width:142.752000px;}
._29{width:229.752000px;}
.fc6{color:rgb(27,28,29);}
.fc4{color:transparent;}
.fc5{color:rgb(47,84,150);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.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;}
.yeb{bottom:18.180000px;}
.yfc{bottom:18.360000px;}
.ycd{bottom:18.405000px;}
.ye5{bottom:19.620000px;}
.y114{bottom:19.665000px;}
.yc4{bottom:19.800000px;}
.yc5{bottom:19.830000px;}
.ycc{bottom:19.845000px;}
.y8{bottom:21.600000px;}
.y30{bottom:31.500000px;}
.y9{bottom:31.680000px;}
.y7{bottom:57.780000px;}
.y6{bottom:78.516000px;}
.yd5{bottom:112.896000px;}
.yc0{bottom:116.136000px;}
.y134{bottom:116.316000px;}
.y2e{bottom:126.396000px;}
.y118{bottom:128.016000px;}
.y7e{bottom:129.276000px;}
.y96{bottom:129.636000px;}
.yd4{bottom:133.596000px;}
.ybf{bottom:136.836000px;}
.y133{bottom:137.016000px;}
.y100{bottom:140.616000px;}
.y59{bottom:141.876000px;}
.y2d{bottom:147.096000px;}
.y7d{bottom:149.976000px;}
.y95{bottom:150.330000px;}
.yd3{bottom:154.290000px;}
.ybe{bottom:157.530000px;}
.y132{bottom:157.710000px;}
.yff{bottom:161.310000px;}
.y58{bottom:162.570000px;}
.y2c{bottom:167.790000px;}
.y117{bottom:169.050000px;}
.y173{bottom:169.230000px;}
.y160{bottom:169.770000px;}
.y7c{bottom:170.670000px;}
.ya5{bottom:171.030000px;}
.yd2{bottom:174.990000px;}
.ybd{bottom:178.230000px;}
.yf1{bottom:181.290000px;}
.yfe{bottom:182.010000px;}
.y57{bottom:183.270000px;}
.y2b{bottom:188.490000px;}
.y15f{bottom:190.470000px;}
.y7b{bottom:191.370000px;}
.ya4{bottom:191.730000px;}
.y94{bottom:191.910000px;}
.yd1{bottom:195.690000px;}
.y131{bottom:198.750000px;}
.yf0{bottom:201.990000px;}
.yfd{bottom:202.710000px;}
.y56{bottom:203.970000px;}
.y2a{bottom:209.190000px;}
.y116{bottom:210.090000px;}
.y172{bottom:210.810000px;}
.y15e{bottom:211.170000px;}
.y7a{bottom:212.070000px;}
.ya3{bottom:212.430000px;}
.y93{bottom:212.610000px;}
.yd0{bottom:216.390000px;}
.ybc{bottom:219.990000px;}
.yef{bottom:222.690000px;}
.y55{bottom:224.670000px;}
.y29{bottom:229.890000px;}
.y171{bottom:231.510000px;}
.y15d{bottom:231.870000px;}
.y79{bottom:232.770000px;}
.ya2{bottom:233.130000px;}
.y92{bottom:233.310000px;}
.ycf{bottom:237.090000px;}
.y130{bottom:239.790000px;}
.yee{bottom:243.390000px;}
.yfb{bottom:243.750000px;}
.y54{bottom:245.370000px;}
.y115{bottom:251.130000px;}
.y78{bottom:253.470000px;}
.ya1{bottom:253.830000px;}
.y91{bottom:254.010000px;}
.yce{bottom:257.790000px;}
.ybb{bottom:261.570000px;}
.yed{bottom:264.090000px;}
.y53{bottom:266.070000px;}
.y28{bottom:271.650000px;}
.y170{bottom:273.270000px;}
.y15c{bottom:273.630000px;}
.y77{bottom:274.170000px;}
.ya0{bottom:274.530000px;}
.y90{bottom:274.710000px;}
.y12f{bottom:280.830000px;}
.yba{bottom:282.270000px;}
.yec{bottom:284.790000px;}
.y52{bottom:286.770000px;}
.y113{bottom:292.170000px;}
.y15b{bottom:294.330000px;}
.y76{bottom:294.870000px;}
.y9f{bottom:295.230000px;}
.y8f{bottom:295.410000px;}
.ycb{bottom:298.830000px;}
.yb9{bottom:302.970000px;}
.y51{bottom:307.470000px;}
.y27{bottom:313.275000px;}
.y15a{bottom:315.075000px;}
.y14c{bottom:316.155000px;}
.y12e{bottom:321.915000px;}
.yb8{bottom:323.715000px;}
.yea{bottom:325.875000px;}
.y112{bottom:333.075000px;}
.y16f{bottom:335.775000px;}
.y75{bottom:336.675000px;}
.y9e{bottom:336.855000px;}
.y8e{bottom:337.215000px;}
.yca{bottom:339.915000px;}
.yb7{bottom:344.415000px;}
.y50{bottom:349.095000px;}
.y26{bottom:355.035000px;}
.y159{bottom:356.655000px;}
.y14b{bottom:357.555000px;}
.y8d{bottom:357.915000px;}
.y12d{bottom:362.955000px;}
.yb6{bottom:365.115000px;}
.ye9{bottom:366.915000px;}
.y111{bottom:374.115000px;}
.y25{bottom:375.735000px;}
.y16e{bottom:377.355000px;}
.y74{bottom:378.255000px;}
.y8c{bottom:378.615000px;}
.yc9{bottom:380.955000px;}
.y4f{bottom:381.855000px;}
.y145{bottom:382.935000px;}
.yb5{bottom:385.815000px;}
.y24{bottom:396.435000px;}
.y16d{bottom:398.055000px;}
.y158{bottom:398.415000px;}
.y14a{bottom:398.955000px;}
.y8b{bottom:399.315000px;}
.yb4{bottom:406.695000px;}
.ye8{bottom:407.955000px;}
.y12c{bottom:412.815000px;}
.y4e{bottom:414.435000px;}
.y23{bottom:417.135000px;}
.y149{bottom:419.655000px;}
.y73{bottom:420.015000px;}
.yc8{bottom:421.995000px;}
.y110{bottom:423.975000px;}
.y144{bottom:424.695000px;}
.y22{bottom:437.835000px;}
.y16c{bottom:439.815000px;}
.y157{bottom:440.175000px;}
.y72{bottom:440.715000px;}
.y143{bottom:445.395000px;}
.yb3{bottom:448.275000px;}
.ye7{bottom:448.995000px;}
.y12b{bottom:454.575000px;}
.y10f{bottom:456.735000px;}
.y21{bottom:458.535000px;}
.y16b{bottom:460.515000px;}
.y156{bottom:460.875000px;}
.y71{bottom:461.415000px;}
.y4d{bottom:462.315000px;}
.yc7{bottom:463.035000px;}
.y142{bottom:466.095000px;}
.y12a{bottom:475.275000px;}
.y20{bottom:479.235000px;}
.y16a{bottom:481.215000px;}
.y155{bottom:481.575000px;}
.y70{bottom:482.115000px;}
.y4c{bottom:483.015000px;}
.yb2{bottom:484.815000px;}
.y141{bottom:486.795000px;}
.ye6{bottom:490.035000px;}
.y129{bottom:495.795000px;}
.y10e{bottom:498.495000px;}
.y1f{bottom:499.935000px;}
.y6f{bottom:502.815000px;}
.y8a{bottom:503.175000px;}
.y4b{bottom:503.715000px;}
.yc6{bottom:504.075000px;}
.yb1{bottom:505.515000px;}
.y140{bottom:507.495000px;}
.y128{bottom:516.495000px;}
.y10d{bottom:519.195000px;}
.y1e{bottom:520.635000px;}
.y169{bottom:522.975000px;}
.y154{bottom:523.155000px;}
.y6e{bottom:523.515000px;}
.y89{bottom:523.875000px;}
.y4a{bottom:524.415000px;}
.y13f{bottom:528.195000px;}
.ye4{bottom:531.075000px;}
.y127{bottom:537.195000px;}
.yfa{bottom:539.895000px;}
.y1d{bottom:541.335000px;}
.y168{bottom:543.675000px;}
.y153{bottom:543.855000px;}
.y6d{bottom:544.215000px;}
.y88{bottom:544.575000px;}
.y49{bottom:545.115000px;}
.yb0{bottom:546.195000px;}
.y13e{bottom:548.895000px;}
.yaf{bottom:555.195000px;}
.y10c{bottom:560.625000px;}
.y1c{bottom:562.065000px;}
.y167{bottom:564.405000px;}
.y6c{bottom:564.945000px;}
.y87{bottom:565.305000px;}
.y48{bottom:565.845000px;}
.ye3{bottom:571.965000px;}
.y126{bottom:578.445000px;}
.y10b{bottom:581.325000px;}
.yf9{bottom:581.505000px;}
.y1b{bottom:582.765000px;}
.y152{bottom:585.645000px;}
.y86{bottom:586.005000px;}
.yc3{bottom:586.185000px;}
.y47{bottom:586.545000px;}
.y13d{bottom:589.965000px;}
.y10a{bottom:602.025000px;}
.yf8{bottom:602.205000px;}
.y1a{bottom:603.465000px;}
.y166{bottom:605.985000px;}
.y151{bottom:606.345000px;}
.y6b{bottom:606.705000px;}
.y9d{bottom:606.885000px;}
.y46{bottom:607.245000px;}
.y125{bottom:619.485000px;}
.ye2{bottom:621.825000px;}
.yae{bottom:622.365000px;}
.y109{bottom:622.725000px;}
.yf7{bottom:622.905000px;}
.y19{bottom:624.165000px;}
.y165{bottom:626.685000px;}
.y150{bottom:627.045000px;}
.y85{bottom:627.405000px;}
.y45{bottom:627.945000px;}
.y13c{bottom:631.005000px;}
.yc2{bottom:635.865000px;}
.yf6{bottom:643.605000px;}
.y18{bottom:644.865000px;}
.y148{bottom:647.925000px;}
.y6a{bottom:648.285000px;}
.y44{bottom:648.645000px;}
.y124{bottom:660.525000px;}
.ye1{bottom:663.585000px;}
.y108{bottom:663.765000px;}
.yad{bottom:664.125000px;}
.yf5{bottom:664.305000px;}
.y164{bottom:668.445000px;}
.yc1{bottom:668.625000px;}
.y69{bottom:668.985000px;}
.y43{bottom:669.345000px;}
.y13b{bottom:672.045000px;}
.ye0{bottom:684.285000px;}
.yf4{bottom:685.005000px;}
.y17{bottom:686.625000px;}
.y163{bottom:689.145000px;}
.y147{bottom:689.325000px;}
.y68{bottom:689.685000px;}
.y42{bottom:690.045000px;}
.yac{bottom:700.665000px;}
.y123{bottom:701.565000px;}
.y107{bottom:704.805000px;}
.ydf{bottom:704.985000px;}
.y14f{bottom:710.025000px;}
.y146{bottom:710.205000px;}
.y67{bottom:710.385000px;}
.y9c{bottom:710.745000px;}
.y13a{bottom:713.085000px;}
.yde{bottom:725.685000px;}
.yf3{bottom:726.225000px;}
.y16{bottom:728.385000px;}
.y14e{bottom:730.725000px;}
.y66{bottom:731.085000px;}
.y9b{bottom:731.445000px;}
.y41{bottom:731.625000px;}
.yab{bottom:737.205000px;}
.y122{bottom:742.605000px;}
.y106{bottom:745.845000px;}
.ydd{bottom:746.385000px;}
.y162{bottom:751.425000px;}
.y65{bottom:751.785000px;}
.y9a{bottom:752.145000px;}
.y40{bottom:752.325000px;}
.y139{bottom:754.125000px;}
.y15{bottom:755.925000px;}
.ydc{bottom:767.085000px;}
.yf2{bottom:767.265000px;}
.y14{bottom:769.785000px;}
.y64{bottom:772.485000px;}
.y99{bottom:772.845000px;}
.y3f{bottom:773.025000px;}
.yaa{bottom:773.745000px;}
.y105{bottom:786.885000px;}
.y121{bottom:792.285000px;}
.y63{bottom:793.185000px;}
.y98{bottom:793.545000px;}
.y3e{bottom:793.725000px;}
.y138{bottom:795.165000px;}
.y13{bottom:797.145000px;}
.ydb{bottom:808.125000px;}
.ya9{bottom:810.825000px;}
.y12{bottom:811.005000px;}
.y14d{bottom:813.930000px;}
.y97{bottom:814.290000px;}
.y3d{bottom:814.470000px;}
.ya8{bottom:819.870000px;}
.y104{bottom:827.970000px;}
.y120{bottom:834.090000px;}
.y161{bottom:834.630000px;}
.y62{bottom:834.990000px;}
.y3c{bottom:835.170000px;}
.y137{bottom:836.250000px;}
.y11{bottom:838.590000px;}
.yda{bottom:849.210000px;}
.y10{bottom:852.450000px;}
.y11f{bottom:854.790000px;}
.y84{bottom:855.690000px;}
.y3b{bottom:855.870000px;}
.ya7{bottom:860.730000px;}
.y103{bottom:869.010000px;}
.y11e{bottom:875.490000px;}
.y83{bottom:876.390000px;}
.y61{bottom:876.570000px;}
.y136{bottom:877.290000px;}
.yf{bottom:879.090000px;}
.yd9{bottom:890.250000px;}
.y11d{bottom:896.190000px;}
.y82{bottom:897.090000px;}
.y60{bottom:897.270000px;}
.y3a{bottom:897.630000px;}
.ye{bottom:909.690000px;}
.y102{bottom:909.870000px;}
.y11c{bottom:916.890000px;}
.y81{bottom:917.790000px;}
.y5f{bottom:917.970000px;}
.y39{bottom:918.330000px;}
.yd{bottom:930.390000px;}
.yd8{bottom:931.290000px;}
.y80{bottom:938.490000px;}
.y5e{bottom:938.670000px;}
.y38{bottom:939.030000px;}
.y101{bottom:950.910000px;}
.yc{bottom:951.090000px;}
.y11b{bottom:958.110000px;}
.y7f{bottom:959.190000px;}
.y5d{bottom:959.370000px;}
.y37{bottom:959.730000px;}
.y135{bottom:968.010000px;}
.y5{bottom:971.790000px;}
.yd7{bottom:972.330000px;}
.y5c{bottom:980.070000px;}
.y36{bottom:980.430000px;}
.y11a{bottom:998.970000px;}
.y5b{bottom:1000.770000px;}
.y35{bottom:1001.130000px;}
.yd6{bottom:1013.370000px;}
.y4{bottom:1013.550000px;}
.ya6{bottom:1021.470000px;}
.y5a{bottom:1021.650000px;}
.y34{bottom:1021.830000px;}
.y119{bottom:1040.010000px;}
.y33{bottom:1042.530000px;}
.y3{bottom:1055.850000px;}
.y32{bottom:1063.260000px;}
.y2{bottom:1093.140000px;}
.y1{bottom:1115.820000px;}
.h9{height:33.683203px;}
.h8{height:34.036523px;}
.h14{height:36.360000px;}
.h13{height:36.396000px;}
.h11{height:36.540000px;}
.h12{height:36.576000px;}
.h5{height:49.500000px;}
.h4{height:50.273438px;}
.h2{height:50.800781px;}
.ha{height:52.417969px;}
.h7{height:54.316406px;}
.hb{height:54.773438px;}
.h6{height:58.320000px;}
.h1{height:61.468945px;}
.h3{height:67.565039px;}
.hc{height:85.562578px;}
.he{height:85.682578px;}
.hd{height:86.453438px;}
.h10{height:96.679688px;}
.hf{height:121.682578px;}
.h0{height:1188.000000px;}
.w6{width:92.160000px;}
.w3{width:92.340000px;}
.w8{width:101.520000px;}
.w4{width:129.636000px;}
.w2{width:202.530000px;}
.w9{width:206.670000px;}
.w7{width:218.010000px;}
.w5{width:250.050000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:4.680000px;}
.x7{left:9.719986px;}
.x1b{left:24.840000px;}
.x1c{left:34.920000px;}
.x8{left:38.339986px;}
.x19{left:44.994000px;}
.x23{left:47.700000px;}
.x1a{left:50.214000px;}
.x14{left:58.854000px;}
.x20{left:64.614000px;}
.x18{left:71.634000px;}
.x1d{left:72.714000px;}
.x5{left:106.955986px;}
.xf{left:108.035986px;}
.x13{left:110.376000px;}
.xa{left:138.995986px;}
.x10{left:140.975986px;}
.x24{left:162.029986px;}
.x1{left:176.249986px;}
.x3{left:206.309986px;}
.x4{left:236.549986px;}
.x11{left:282.449986px;}
.x2{left:284.249986px;}
.xd{left:287.309986px;}
.xb{left:299.234986px;}
.x15{left:315.075000px;}
.x21{left:330.735000px;}
.x1e{left:362.775000px;}
.x17{left:409.575000px;}
.x9{left:423.074986px;}
.x22{left:434.595000px;}
.x1f{left:457.095000px;}
.x12{left:459.434986px;}
.xe{left:488.444986px;}
.xc{left:501.944986px;}
.x6{left:851.909986px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.720000pt;}
.v6{vertical-align:13.440000pt;}
.v5{vertical-align:32.160000pt;}
.v3{vertical-align:37.760000pt;}
.v7{vertical-align:69.866667pt;}
.ls14{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.069867pt;}
.ls4{letter-spacing:-0.030720pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.284800pt;}
.ls0{letter-spacing:0.303360pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.342400pt;}
.ls1{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.593600pt;}
.lsc{letter-spacing:1.611520pt;}
.ls10{letter-spacing:9.942400pt;}
.lsf{letter-spacing:136.672000pt;}
.wsb{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws7{word-spacing:-9.996800pt;}
.ws8{word-spacing:-9.926933pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:4.864000pt;}
.ws9{word-spacing:34.340053pt;}
._2{margin-left:-78.572800pt;}
._1a{margin-left:-3.859840pt;}
._15{margin-left:-2.944000pt;}
._b{margin-left:-1.920000pt;}
._4{margin-left:-0.984960pt;}
._0{width:1.132800pt;}
._5{width:2.212693pt;}
._10{width:3.481387pt;}
._19{width:4.608000pt;}
._d{width:5.504000pt;}
._16{width:7.104000pt;}
._17{width:8.437333pt;}
._18{width:9.496960pt;}
._c{width:10.624000pt;}
._e{width:11.544960pt;}
._f{width:12.590293pt;}
._11{width:14.144000pt;}
._14{width:15.064960pt;}
._1d{width:17.152000pt;}
._1e{width:18.131200pt;}
._7{width:19.648000pt;}
._6{width:20.544000pt;}
._8{width:21.725867pt;}
._13{width:22.630400pt;}
._12{width:23.714133pt;}
._1f{width:25.207467pt;}
._9{width:26.240000pt;}
._a{width:27.328000pt;}
._22{width:28.243200pt;}
._25{width:35.264000pt;}
._26{width:36.288000pt;}
._1b{width:51.520000pt;}
._1c{width:52.672000pt;}
._3{width:74.115627pt;}
._27{width:81.432960pt;}
._28{width:82.666453pt;}
._20{width:91.690667pt;}
._1{width:97.226667pt;}
._24{width:100.704000pt;}
._23{width:101.824000pt;}
._21{width:126.890667pt;}
._29{width:204.224000pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.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;}
.yeb{bottom:16.160000pt;}
.yfc{bottom:16.320000pt;}
.ycd{bottom:16.360000pt;}
.ye5{bottom:17.440000pt;}
.y114{bottom:17.480000pt;}
.yc4{bottom:17.600000pt;}
.yc5{bottom:17.626667pt;}
.ycc{bottom:17.640000pt;}
.y8{bottom:19.200000pt;}
.y30{bottom:28.000000pt;}
.y9{bottom:28.160000pt;}
.y7{bottom:51.360000pt;}
.y6{bottom:69.792000pt;}
.yd5{bottom:100.352000pt;}
.yc0{bottom:103.232000pt;}
.y134{bottom:103.392000pt;}
.y2e{bottom:112.352000pt;}
.y118{bottom:113.792000pt;}
.y7e{bottom:114.912000pt;}
.y96{bottom:115.232000pt;}
.yd4{bottom:118.752000pt;}
.ybf{bottom:121.632000pt;}
.y133{bottom:121.792000pt;}
.y100{bottom:124.992000pt;}
.y59{bottom:126.112000pt;}
.y2d{bottom:130.752000pt;}
.y7d{bottom:133.312000pt;}
.y95{bottom:133.626667pt;}
.yd3{bottom:137.146667pt;}
.ybe{bottom:140.026667pt;}
.y132{bottom:140.186667pt;}
.yff{bottom:143.386667pt;}
.y58{bottom:144.506667pt;}
.y2c{bottom:149.146667pt;}
.y117{bottom:150.266667pt;}
.y173{bottom:150.426667pt;}
.y160{bottom:150.906667pt;}
.y7c{bottom:151.706667pt;}
.ya5{bottom:152.026667pt;}
.yd2{bottom:155.546667pt;}
.ybd{bottom:158.426667pt;}
.yf1{bottom:161.146667pt;}
.yfe{bottom:161.786667pt;}
.y57{bottom:162.906667pt;}
.y2b{bottom:167.546667pt;}
.y15f{bottom:169.306667pt;}
.y7b{bottom:170.106667pt;}
.ya4{bottom:170.426667pt;}
.y94{bottom:170.586667pt;}
.yd1{bottom:173.946667pt;}
.y131{bottom:176.666667pt;}
.yf0{bottom:179.546667pt;}
.yfd{bottom:180.186667pt;}
.y56{bottom:181.306667pt;}
.y2a{bottom:185.946667pt;}
.y116{bottom:186.746667pt;}
.y172{bottom:187.386667pt;}
.y15e{bottom:187.706667pt;}
.y7a{bottom:188.506667pt;}
.ya3{bottom:188.826667pt;}
.y93{bottom:188.986667pt;}
.yd0{bottom:192.346667pt;}
.ybc{bottom:195.546667pt;}
.yef{bottom:197.946667pt;}
.y55{bottom:199.706667pt;}
.y29{bottom:204.346667pt;}
.y171{bottom:205.786667pt;}
.y15d{bottom:206.106667pt;}
.y79{bottom:206.906667pt;}
.ya2{bottom:207.226667pt;}
.y92{bottom:207.386667pt;}
.ycf{bottom:210.746667pt;}
.y130{bottom:213.146667pt;}
.yee{bottom:216.346667pt;}
.yfb{bottom:216.666667pt;}
.y54{bottom:218.106667pt;}
.y115{bottom:223.226667pt;}
.y78{bottom:225.306667pt;}
.ya1{bottom:225.626667pt;}
.y91{bottom:225.786667pt;}
.yce{bottom:229.146667pt;}
.ybb{bottom:232.506667pt;}
.yed{bottom:234.746667pt;}
.y53{bottom:236.506667pt;}
.y28{bottom:241.466667pt;}
.y170{bottom:242.906667pt;}
.y15c{bottom:243.226667pt;}
.y77{bottom:243.706667pt;}
.ya0{bottom:244.026667pt;}
.y90{bottom:244.186667pt;}
.y12f{bottom:249.626667pt;}
.yba{bottom:250.906667pt;}
.yec{bottom:253.146667pt;}
.y52{bottom:254.906667pt;}
.y113{bottom:259.706667pt;}
.y15b{bottom:261.626667pt;}
.y76{bottom:262.106667pt;}
.y9f{bottom:262.426667pt;}
.y8f{bottom:262.586667pt;}
.ycb{bottom:265.626667pt;}
.yb9{bottom:269.306667pt;}
.y51{bottom:273.306667pt;}
.y27{bottom:278.466667pt;}
.y15a{bottom:280.066667pt;}
.y14c{bottom:281.026667pt;}
.y12e{bottom:286.146667pt;}
.yb8{bottom:287.746667pt;}
.yea{bottom:289.666667pt;}
.y112{bottom:296.066667pt;}
.y16f{bottom:298.466667pt;}
.y75{bottom:299.266667pt;}
.y9e{bottom:299.426667pt;}
.y8e{bottom:299.746667pt;}
.yca{bottom:302.146667pt;}
.yb7{bottom:306.146667pt;}
.y50{bottom:310.306667pt;}
.y26{bottom:315.586667pt;}
.y159{bottom:317.026667pt;}
.y14b{bottom:317.826667pt;}
.y8d{bottom:318.146667pt;}
.y12d{bottom:322.626667pt;}
.yb6{bottom:324.546667pt;}
.ye9{bottom:326.146667pt;}
.y111{bottom:332.546667pt;}
.y25{bottom:333.986667pt;}
.y16e{bottom:335.426667pt;}
.y74{bottom:336.226667pt;}
.y8c{bottom:336.546667pt;}
.yc9{bottom:338.626667pt;}
.y4f{bottom:339.426667pt;}
.y145{bottom:340.386667pt;}
.yb5{bottom:342.946667pt;}
.y24{bottom:352.386667pt;}
.y16d{bottom:353.826667pt;}
.y158{bottom:354.146667pt;}
.y14a{bottom:354.626667pt;}
.y8b{bottom:354.946667pt;}
.yb4{bottom:361.506667pt;}
.ye8{bottom:362.626667pt;}
.y12c{bottom:366.946667pt;}
.y4e{bottom:368.386667pt;}
.y23{bottom:370.786667pt;}
.y149{bottom:373.026667pt;}
.y73{bottom:373.346667pt;}
.yc8{bottom:375.106667pt;}
.y110{bottom:376.866667pt;}
.y144{bottom:377.506667pt;}
.y22{bottom:389.186667pt;}
.y16c{bottom:390.946667pt;}
.y157{bottom:391.266667pt;}
.y72{bottom:391.746667pt;}
.y143{bottom:395.906667pt;}
.yb3{bottom:398.466667pt;}
.ye7{bottom:399.106667pt;}
.y12b{bottom:404.066667pt;}
.y10f{bottom:405.986667pt;}
.y21{bottom:407.586667pt;}
.y16b{bottom:409.346667pt;}
.y156{bottom:409.666667pt;}
.y71{bottom:410.146667pt;}
.y4d{bottom:410.946667pt;}
.yc7{bottom:411.586667pt;}
.y142{bottom:414.306667pt;}
.y12a{bottom:422.466667pt;}
.y20{bottom:425.986667pt;}
.y16a{bottom:427.746667pt;}
.y155{bottom:428.066667pt;}
.y70{bottom:428.546667pt;}
.y4c{bottom:429.346667pt;}
.yb2{bottom:430.946667pt;}
.y141{bottom:432.706667pt;}
.ye6{bottom:435.586667pt;}
.y129{bottom:440.706667pt;}
.y10e{bottom:443.106667pt;}
.y1f{bottom:444.386667pt;}
.y6f{bottom:446.946667pt;}
.y8a{bottom:447.266667pt;}
.y4b{bottom:447.746667pt;}
.yc6{bottom:448.066667pt;}
.yb1{bottom:449.346667pt;}
.y140{bottom:451.106667pt;}
.y128{bottom:459.106667pt;}
.y10d{bottom:461.506667pt;}
.y1e{bottom:462.786667pt;}
.y169{bottom:464.866667pt;}
.y154{bottom:465.026667pt;}
.y6e{bottom:465.346667pt;}
.y89{bottom:465.666667pt;}
.y4a{bottom:466.146667pt;}
.y13f{bottom:469.506667pt;}
.ye4{bottom:472.066667pt;}
.y127{bottom:477.506667pt;}
.yfa{bottom:479.906667pt;}
.y1d{bottom:481.186667pt;}
.y168{bottom:483.266667pt;}
.y153{bottom:483.426667pt;}
.y6d{bottom:483.746667pt;}
.y88{bottom:484.066667pt;}
.y49{bottom:484.546667pt;}
.yb0{bottom:485.506667pt;}
.y13e{bottom:487.906667pt;}
.yaf{bottom:493.506667pt;}
.y10c{bottom:498.333333pt;}
.y1c{bottom:499.613333pt;}
.y167{bottom:501.693333pt;}
.y6c{bottom:502.173333pt;}
.y87{bottom:502.493333pt;}
.y48{bottom:502.973333pt;}
.ye3{bottom:508.413333pt;}
.y126{bottom:514.173333pt;}
.y10b{bottom:516.733333pt;}
.yf9{bottom:516.893333pt;}
.y1b{bottom:518.013333pt;}
.y152{bottom:520.573333pt;}
.y86{bottom:520.893333pt;}
.yc3{bottom:521.053333pt;}
.y47{bottom:521.373333pt;}
.y13d{bottom:524.413333pt;}
.y10a{bottom:535.133333pt;}
.yf8{bottom:535.293333pt;}
.y1a{bottom:536.413333pt;}
.y166{bottom:538.653333pt;}
.y151{bottom:538.973333pt;}
.y6b{bottom:539.293333pt;}
.y9d{bottom:539.453333pt;}
.y46{bottom:539.773333pt;}
.y125{bottom:550.653333pt;}
.ye2{bottom:552.733333pt;}
.yae{bottom:553.213333pt;}
.y109{bottom:553.533333pt;}
.yf7{bottom:553.693333pt;}
.y19{bottom:554.813333pt;}
.y165{bottom:557.053333pt;}
.y150{bottom:557.373333pt;}
.y85{bottom:557.693333pt;}
.y45{bottom:558.173333pt;}
.y13c{bottom:560.893333pt;}
.yc2{bottom:565.213333pt;}
.yf6{bottom:572.093333pt;}
.y18{bottom:573.213333pt;}
.y148{bottom:575.933333pt;}
.y6a{bottom:576.253333pt;}
.y44{bottom:576.573333pt;}
.y124{bottom:587.133333pt;}
.ye1{bottom:589.853333pt;}
.y108{bottom:590.013333pt;}
.yad{bottom:590.333333pt;}
.yf5{bottom:590.493333pt;}
.y164{bottom:594.173333pt;}
.yc1{bottom:594.333333pt;}
.y69{bottom:594.653333pt;}
.y43{bottom:594.973333pt;}
.y13b{bottom:597.373333pt;}
.ye0{bottom:608.253333pt;}
.yf4{bottom:608.893333pt;}
.y17{bottom:610.333333pt;}
.y163{bottom:612.573333pt;}
.y147{bottom:612.733333pt;}
.y68{bottom:613.053333pt;}
.y42{bottom:613.373333pt;}
.yac{bottom:622.813333pt;}
.y123{bottom:623.613333pt;}
.y107{bottom:626.493333pt;}
.ydf{bottom:626.653333pt;}
.y14f{bottom:631.133333pt;}
.y146{bottom:631.293333pt;}
.y67{bottom:631.453333pt;}
.y9c{bottom:631.773333pt;}
.y13a{bottom:633.853333pt;}
.yde{bottom:645.053333pt;}
.yf3{bottom:645.533333pt;}
.y16{bottom:647.453333pt;}
.y14e{bottom:649.533333pt;}
.y66{bottom:649.853333pt;}
.y9b{bottom:650.173333pt;}
.y41{bottom:650.333333pt;}
.yab{bottom:655.293333pt;}
.y122{bottom:660.093333pt;}
.y106{bottom:662.973333pt;}
.ydd{bottom:663.453333pt;}
.y162{bottom:667.933333pt;}
.y65{bottom:668.253333pt;}
.y9a{bottom:668.573333pt;}
.y40{bottom:668.733333pt;}
.y139{bottom:670.333333pt;}
.y15{bottom:671.933333pt;}
.ydc{bottom:681.853333pt;}
.yf2{bottom:682.013333pt;}
.y14{bottom:684.253333pt;}
.y64{bottom:686.653333pt;}
.y99{bottom:686.973333pt;}
.y3f{bottom:687.133333pt;}
.yaa{bottom:687.773333pt;}
.y105{bottom:699.453333pt;}
.y121{bottom:704.253333pt;}
.y63{bottom:705.053333pt;}
.y98{bottom:705.373333pt;}
.y3e{bottom:705.533333pt;}
.y138{bottom:706.813333pt;}
.y13{bottom:708.573333pt;}
.ydb{bottom:718.333333pt;}
.ya9{bottom:720.733333pt;}
.y12{bottom:720.893333pt;}
.y14d{bottom:723.493333pt;}
.y97{bottom:723.813333pt;}
.y3d{bottom:723.973333pt;}
.ya8{bottom:728.773333pt;}
.y104{bottom:735.973333pt;}
.y120{bottom:741.413333pt;}
.y161{bottom:741.893333pt;}
.y62{bottom:742.213333pt;}
.y3c{bottom:742.373333pt;}
.y137{bottom:743.333333pt;}
.y11{bottom:745.413333pt;}
.yda{bottom:754.853333pt;}
.y10{bottom:757.733333pt;}
.y11f{bottom:759.813333pt;}
.y84{bottom:760.613333pt;}
.y3b{bottom:760.773333pt;}
.ya7{bottom:765.093333pt;}
.y103{bottom:772.453333pt;}
.y11e{bottom:778.213333pt;}
.y83{bottom:779.013333pt;}
.y61{bottom:779.173333pt;}
.y136{bottom:779.813333pt;}
.yf{bottom:781.413333pt;}
.yd9{bottom:791.333333pt;}
.y11d{bottom:796.613333pt;}
.y82{bottom:797.413333pt;}
.y60{bottom:797.573333pt;}
.y3a{bottom:797.893333pt;}
.ye{bottom:808.613333pt;}
.y102{bottom:808.773333pt;}
.y11c{bottom:815.013333pt;}
.y81{bottom:815.813333pt;}
.y5f{bottom:815.973333pt;}
.y39{bottom:816.293333pt;}
.yd{bottom:827.013333pt;}
.yd8{bottom:827.813333pt;}
.y80{bottom:834.213333pt;}
.y5e{bottom:834.373333pt;}
.y38{bottom:834.693333pt;}
.y101{bottom:845.253333pt;}
.yc{bottom:845.413333pt;}
.y11b{bottom:851.653333pt;}
.y7f{bottom:852.613333pt;}
.y5d{bottom:852.773333pt;}
.y37{bottom:853.093333pt;}
.y135{bottom:860.453333pt;}
.y5{bottom:863.813333pt;}
.yd7{bottom:864.293333pt;}
.y5c{bottom:871.173333pt;}
.y36{bottom:871.493333pt;}
.y11a{bottom:887.973333pt;}
.y5b{bottom:889.573333pt;}
.y35{bottom:889.893333pt;}
.yd6{bottom:900.773333pt;}
.y4{bottom:900.933333pt;}
.ya6{bottom:907.973333pt;}
.y5a{bottom:908.133333pt;}
.y34{bottom:908.293333pt;}
.y119{bottom:924.453333pt;}
.y33{bottom:926.693333pt;}
.y3{bottom:938.533333pt;}
.y32{bottom:945.120000pt;}
.y2{bottom:971.680000pt;}
.y1{bottom:991.840000pt;}
.h9{height:29.940625pt;}
.h8{height:30.254687pt;}
.h14{height:32.320000pt;}
.h13{height:32.352000pt;}
.h11{height:32.480000pt;}
.h12{height:32.512000pt;}
.h5{height:44.000000pt;}
.h4{height:44.687500pt;}
.h2{height:45.156250pt;}
.ha{height:46.593750pt;}
.h7{height:48.281250pt;}
.hb{height:48.687500pt;}
.h6{height:51.840000pt;}
.h1{height:54.639063pt;}
.h3{height:60.057813pt;}
.hc{height:76.055625pt;}
.he{height:76.162292pt;}
.hd{height:76.847500pt;}
.h10{height:85.937500pt;}
.hf{height:108.162292pt;}
.h0{height:1056.000000pt;}
.w6{width:81.920000pt;}
.w3{width:82.080000pt;}
.w8{width:90.240000pt;}
.w4{width:115.232000pt;}
.w2{width:180.026667pt;}
.w9{width:183.706667pt;}
.w7{width:193.786667pt;}
.w5{width:222.266667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:4.160000pt;}
.x7{left:8.639988pt;}
.x1b{left:22.080000pt;}
.x1c{left:31.040000pt;}
.x8{left:34.079988pt;}
.x19{left:39.994667pt;}
.x23{left:42.400000pt;}
.x1a{left:44.634667pt;}
.x14{left:52.314667pt;}
.x20{left:57.434667pt;}
.x18{left:63.674667pt;}
.x1d{left:64.634667pt;}
.x5{left:95.071988pt;}
.xf{left:96.031988pt;}
.x13{left:98.112000pt;}
.xa{left:123.551988pt;}
.x10{left:125.311988pt;}
.x24{left:144.026655pt;}
.x1{left:156.666655pt;}
.x3{left:183.386655pt;}
.x4{left:210.266655pt;}
.x11{left:251.066655pt;}
.x2{left:252.666655pt;}
.xd{left:255.386655pt;}
.xb{left:265.986655pt;}
.x15{left:280.066667pt;}
.x21{left:293.986667pt;}
.x1e{left:322.466667pt;}
.x17{left:364.066667pt;}
.x9{left:376.066655pt;}
.x22{left:386.306667pt;}
.x1f{left:406.306667pt;}
.x12{left:408.386655pt;}
.xe{left:434.173321pt;}
.xc{left:446.173321pt;}
.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; }
  