
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_8cabc294f33f3ac6a9f39dc0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_f4248f400aa585fbc75f9da5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_2dd11d67b79ec02400b6d853.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_1b55fad7fc55a2ad863ad5a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_e26bd3645a50f0237a58bfbf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_d7023acd7c9c3da9b6c83972.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_fbdf4132323ddb355556201a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_80535297bf012d84f5f2ef36.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d499d89e256d9de0eee74e5d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5743cb85d4b7c336b3c30563.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls17{letter-spacing:-0.444600px;}
.ls16{letter-spacing:-0.243600px;}
.lsd{letter-spacing:-0.186600px;}
.ls1e{letter-spacing:-0.162000px;}
.ls18{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls1f{letter-spacing:-0.093000px;}
.ls6{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.063600px;}
.ls20{letter-spacing:-0.060600px;}
.lsa{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.064800px;}
.ls9{letter-spacing:0.065400px;}
.ls3{letter-spacing:0.065520px;}
.ls15{letter-spacing:0.068400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.098400px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls8{letter-spacing:0.174600px;}
.ls11{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.558000px;}
.ls1a{letter-spacing:47.726640px;}
.ls13{letter-spacing:63.566640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsa{word-spacing:-60.120000px;}
.ws8{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.324800px;}
.ws9{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.165800px;}
.wsb{word-spacing:-13.162800px;}
.wse{word-spacing:-13.133400px;}
.ws6{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.331800px;}
.ws3{word-spacing:-8.553600px;}
.ws5{word-spacing:0.000000px;}
._2a{margin-left:-4.479601px;}
._a{margin-left:-3.426600px;}
._8{margin-left:-2.330160px;}
._0{margin-left:-1.110000px;}
._2{width:1.174739px;}
._6{width:2.464800px;}
._3{width:3.667200px;}
._4{width:4.749600px;}
._5{width:6.036840px;}
._7{width:7.935600px;}
._17{width:8.958842px;}
._f{width:9.979920px;}
._10{width:11.001960px;}
._9{width:12.084000px;}
._1d{width:14.286120px;}
._16{width:15.510960px;}
._1e{width:16.587240px;}
._26{width:17.675280px;}
._1{width:19.543788px;}
._b{width:21.042000px;}
._31{width:22.147920px;}
._2f{width:23.345880px;}
._11{width:24.589080px;}
._12{width:25.680120px;}
._27{width:27.697560px;}
._2e{width:29.218320px;}
._2d{width:30.721320px;}
._e{width:33.607080px;}
._19{width:37.635120px;}
._21{width:39.331621px;}
._13{width:40.881600px;}
._25{width:44.909640px;}
._14{width:46.773360px;}
._1a{width:49.298400px;}
._23{width:51.102000px;}
._30{width:56.392560px;}
._1f{width:62.584920px;}
._2b{width:64.989720px;}
._2c{width:66.247621px;}
._22{width:67.409280px;}
._d{width:74.694960px;}
._15{width:85.527360px;}
._24{width:95.049720px;}
._1c{width:126.492480px;}
._28{width:132.264000px;}
._29{width:133.286040px;}
._18{width:138.636720px;}
._1b{width:148.075560px;}
._c{width:158.897160px;}
._20{width:218.776680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y44{bottom:7.830000px;}
.y41{bottom:7.920000px;}
.y9a{bottom:8.460000px;}
.y4e{bottom:25.380000px;}
.y40{bottom:25.470000px;}
.yb4{bottom:25.560000px;}
.y99{bottom:25.740000px;}
.y43{bottom:43.020000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y97{bottom:115.770000px;}
.y140{bottom:116.580000px;}
.ybf{bottom:124.680000px;}
.ye7{bottom:125.580000px;}
.y96{bottom:133.320000px;}
.y13f{bottom:134.130000px;}
.y7a{bottom:134.490000px;}
.y51{bottom:136.740000px;}
.ybe{bottom:142.230000px;}
.y15b{bottom:142.680000px;}
.ye6{bottom:143.130000px;}
.y79{bottom:149.430000px;}
.y13e{bottom:151.680000px;}
.y112{bottom:158.250000px;}
.ybd{bottom:159.870000px;}
.y15a{bottom:160.320000px;}
.ye5{bottom:160.770000px;}
.y95{bottom:168.870000px;}
.y50{bottom:172.290000px;}
.y111{bottom:175.890000px;}
.ybc{bottom:177.420000px;}
.ye4{bottom:178.320000px;}
.y25{bottom:179.580000px;}
.y159{bottom:186.870000px;}
.y94{bottom:187.320000px;}
.y110{bottom:193.440000px;}
.y13d{bottom:195.870000px;}
.ye3{bottom:195.960000px;}
.ybb{bottom:203.970000px;}
.y158{bottom:204.510000px;}
.y4f{bottom:205.230000px;}
.y93{bottom:205.680000px;}
.y10f{bottom:211.080000px;}
.y78{bottom:211.980000px;}
.y13c{bottom:213.510000px;}
.y24{bottom:216.570000px;}
.y92{bottom:224.130000px;}
.y157{bottom:231.060000px;}
.ye2{bottom:231.510000px;}
.y23{bottom:234.120000px;}
.y10e{bottom:237.630000px;}
.yba{bottom:239.610000px;}
.y13b{bottom:240.060000px;}
.y91{bottom:242.580000px;}
.y156{bottom:248.610000px;}
.ye1{bottom:249.060000px;}
.y4d{bottom:250.230000px;}
.y22{bottom:251.760000px;}
.y10d{bottom:255.180000px;}
.y77{bottom:256.890000px;}
.yb9{bottom:257.160000px;}
.y13a{bottom:257.610000px;}
.y155{bottom:266.250000px;}
.ye0{bottom:266.700000px;}
.yb8{bottom:274.800000px;}
.y139{bottom:275.250000px;}
.y90{bottom:278.940000px;}
.y10c{bottom:281.820000px;}
.ydf{bottom:284.250000px;}
.y21{bottom:287.310000px;}
.yb7{bottom:292.350000px;}
.y154{bottom:292.800000px;}
.y8f{bottom:296.580000px;}
.y10b{bottom:299.370000px;}
.y138{bottom:301.800000px;}
.y20{bottom:304.950000px;}
.y153{bottom:310.440000px;}
.y8e{bottom:314.130000px;}
.y4c{bottom:316.470000px;}
.yb6{bottom:318.900000px;}
.y137{bottom:319.440000px;}
.yde{bottom:319.890000px;}
.y1f{bottom:322.500000px;}
.y76{bottom:323.130000px;}
.y10a{bottom:326.010000px;}
.y8d{bottom:331.770000px;}
.y152{bottom:336.990000px;}
.ydd{bottom:337.440000px;}
.y1e{bottom:340.050000px;}
.y109{bottom:343.560000px;}
.y136{bottom:345.990000px;}
.yb5{bottom:348.870000px;}
.y4b{bottom:352.110000px;}
.y151{bottom:354.540000px;}
.ydc{bottom:354.990000px;}
.y8c{bottom:358.320000px;}
.y75{bottom:358.770000px;}
.y135{bottom:363.540000px;}
.y4a{bottom:369.660000px;}
.y108{bottom:370.110000px;}
.ydb{bottom:372.630000px;}
.y1d{bottom:375.690000px;}
.y74{bottom:376.320000px;}
.y134{bottom:381.180000px;}
.y49{bottom:387.210000px;}
.y107{bottom:387.750000px;}
.y1c{bottom:393.240000px;}
.y73{bottom:393.870000px;}
.y48{bottom:404.850000px;}
.y133{bottom:407.730000px;}
.yda{bottom:408.180000px;}
.y1b{bottom:410.880000px;}
.y72{bottom:411.510000px;}
.y106{bottom:414.300000px;}
.y47{bottom:422.400000px;}
.y132{bottom:425.370000px;}
.yd9{bottom:425.730000px;}
.y1a{bottom:428.430000px;}
.y71{bottom:429.060000px;}
.y105{bottom:431.940000px;}
.yb3{bottom:438.780000px;}
.y46{bottom:439.950000px;}
.y131{bottom:442.920000px;}
.yd8{bottom:443.370000px;}
.y19{bottom:445.980000px;}
.y70{bottom:446.700000px;}
.y104{bottom:449.490000px;}
.y130{bottom:460.470000px;}
.yd7{bottom:460.920000px;}
.y45{bottom:466.860000px;}
.y150{bottom:469.470000px;}
.y6f{bottom:473.640000px;}
.y103{bottom:476.070000px;}
.yd6{bottom:478.590000px;}
.y18{bottom:481.650000px;}
.y12f{bottom:487.140000px;}
.y102{bottom:493.710000px;}
.y17{bottom:499.200000px;}
.y12e{bottom:504.690000px;}
.yb2{bottom:505.050000px;}
.y42{bottom:512.610000px;}
.y14f{bottom:513.690000px;}
.yd5{bottom:514.140000px;}
.y16{bottom:516.840000px;}
.y101{bottom:520.260000px;}
.y6e{bottom:521.880000px;}
.y12d{bottom:531.330000px;}
.yd4{bottom:531.690000px;}
.y15{bottom:534.390000px;}
.y100{bottom:537.900000px;}
.y6d{bottom:539.430000px;}
.yb1{bottom:540.690000px;}
.y12c{bottom:548.880000px;}
.yd3{bottom:549.330000px;}
.y14{bottom:551.940000px;}
.y6c{bottom:557.070000px;}
.yb0{bottom:558.240000px;}
.yff{bottom:564.450000px;}
.yd2{bottom:566.880000px;}
.y6b{bottom:574.620000px;}
.y3f{bottom:575.070000px;}
.y12b{bottom:575.430000px;}
.yaf{bottom:575.790000px;}
.yfe{bottom:582.000000px;}
.yd1{bottom:584.520000px;}
.y13{bottom:587.580000px;}
.y12a{bottom:593.070000px;}
.yae{bottom:602.700000px;}
.y12{bottom:605.130000px;}
.yfd{bottom:608.640000px;}
.y6a{bottom:610.260000px;}
.y14e{bottom:610.620000px;}
.yd0{bottom:611.430000px;}
.y129{bottom:619.620000px;}
.y11{bottom:622.770000px;}
.yfc{bottom:626.190000px;}
.y69{bottom:627.810000px;}
.y128{bottom:637.260000px;}
.y10{bottom:640.320000px;}
.y3e{bottom:641.400000px;}
.y68{bottom:645.360000px;}
.yad{bottom:651.030000px;}
.yfb{bottom:652.830000px;}
.y14d{bottom:654.810000px;}
.yf{bottom:657.870000px;}
.ycf{bottom:659.670000px;}
.y67{bottom:663.000000px;}
.y127{bottom:663.810000px;}
.yac{bottom:668.580000px;}
.yfa{bottom:670.380000px;}
.y14c{bottom:672.360000px;}
.ye{bottom:675.510000px;}
.y3d{bottom:676.950000px;}
.yce{bottom:677.220000px;}
.y8b{bottom:680.550000px;}
.y126{bottom:681.360000px;}
.yab{bottom:686.130000px;}
.y3c{bottom:694.590000px;}
.ycd{bottom:694.860000px;}
.yf9{bottom:696.930000px;}
.y66{bottom:698.550000px;}
.y14b{bottom:699.000000px;}
.yd{bottom:702.420000px;}
.yaa{bottom:703.770000px;}
.y8a{bottom:707.190000px;}
.y125{bottom:708.000000px;}
.y3b{bottom:712.140000px;}
.ycc{bottom:712.410000px;}
.yf8{bottom:714.570000px;}
.y65{bottom:716.190000px;}
.y14a{bottom:716.550000px;}
.ya9{bottom:721.320000px;}
.y124{bottom:725.550000px;}
.yf7{bottom:732.120000px;}
.y64{bottom:733.740000px;}
.ya8{bottom:738.960000px;}
.y89{bottom:742.740000px;}
.y123{bottom:743.190000px;}
.y3a{bottom:747.690000px;}
.ycb{bottom:748.050000px;}
.yc{bottom:749.130000px;}
.y63{bottom:751.290000px;}
.yf6{bottom:758.670000px;}
.y88{bottom:760.290000px;}
.y149{bottom:760.740000px;}
.y39{bottom:765.330000px;}
.yca{bottom:765.600000px;}
.y122{bottom:769.740000px;}
.ya7{bottom:774.510000px;}
.yf5{bottom:776.310000px;}
.y62{bottom:777.930000px;}
.y38{bottom:782.880000px;}
.yc9{bottom:783.150000px;}
.yb{bottom:784.950000px;}
.y121{bottom:787.290000px;}
.ya6{bottom:792.060000px;}
.y87{bottom:795.480000px;}
.y37{bottom:800.520000px;}
.yc8{bottom:801.600000px;}
.yf4{bottom:802.860000px;}
.y120{bottom:804.930000px;}
.ya5{bottom:810.510000px;}
.y86{bottom:813.030000px;}
.y61{bottom:813.480000px;}
.yc7{bottom:819.150000px;}
.yf3{bottom:820.500000px;}
.ya{bottom:820.950000px;}
.y148{bottom:822.480000px;}
.ya4{bottom:828.870000px;}
.y60{bottom:831.030000px;}
.y11f{bottom:831.480000px;}
.y36{bottom:836.070000px;}
.yc6{bottom:836.700000px;}
.y85{bottom:839.670000px;}
.yf2{bottom:847.050000px;}
.ya3{bottom:847.320000px;}
.y5f{bottom:848.670000px;}
.y147{bottom:849.030000px;}
.y35{bottom:853.620000px;}
.yc5{bottom:855.150000px;}
.y11e{bottom:858.030000px;}
.y9{bottom:860.730000px;}
.yf1{bottom:864.600000px;}
.ya2{bottom:864.870000px;}
.y5e{bottom:866.220000px;}
.y146{bottom:866.670000px;}
.y34{bottom:871.260000px;}
.yc4{bottom:872.700000px;}
.y84{bottom:875.220000px;}
.y11d{bottom:875.670000px;}
.y8{bottom:878.730000px;}
.ya1{bottom:883.320000px;}
.y33{bottom:888.810000px;}
.yc3{bottom:891.150000px;}
.yf0{bottom:891.240000px;}
.y5d{bottom:892.860000px;}
.y11c{bottom:893.220000px;}
.y7{bottom:896.730000px;}
.y15d{bottom:902.220000px;}
.y32{bottom:906.450000px;}
.yc2{bottom:908.700000px;}
.yef{bottom:908.790000px;}
.y83{bottom:910.410000px;}
.y145{bottom:910.860000px;}
.y6{bottom:914.730000px;}
.ya0{bottom:919.770000px;}
.y11b{bottom:919.860000px;}
.yee{bottom:926.430000px;}
.yc1{bottom:927.150000px;}
.y82{bottom:927.960000px;}
.y5c{bottom:928.410000px;}
.y9f{bottom:937.320000px;}
.y11a{bottom:937.410000px;}
.y31{bottom:942.000000px;}
.yc0{bottom:944.700000px;}
.y81{bottom:945.600000px;}
.y5b{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.yed{bottom:952.980000px;}
.y9e{bottom:954.960000px;}
.y30{bottom:959.550000px;}
.y5a{bottom:963.600000px;}
.y119{bottom:963.960000px;}
.yec{bottom:970.530000px;}
.y80{bottom:972.150000px;}
.y9d{bottom:972.510000px;}
.y144{bottom:972.600000px;}
.y2f{bottom:977.190000px;}
.y59{bottom:981.150000px;}
.y118{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.yeb{bottom:988.170000px;}
.y143{bottom:990.150000px;}
.y2e{bottom:994.740000px;}
.y58{bottom:998.790000px;}
.y9c{bottom:999.060000px;}
.y117{bottom:999.150000px;}
.y7f{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.yea{bottom:1015.110000px;}
.y142{bottom:1016.820000px;}
.y57{bottom:1025.370000px;}
.y116{bottom:1025.820000px;}
.y9b{bottom:1029.060000px;}
.y2d{bottom:1030.320000px;}
.y141{bottom:1034.370000px;}
.y7e{bottom:1042.920000px;}
.y115{bottom:1043.370000px;}
.y2c{bottom:1047.960000px;}
.y7d{bottom:1060.560000px;}
.y56{bottom:1060.920000px;}
.ye9{bottom:1063.350000px;}
.y2b{bottom:1065.510000px;}
.y98{bottom:1073.970000px;}
.y7c{bottom:1078.110000px;}
.y55{bottom:1078.560000px;}
.y2a{bottom:1083.150000px;}
.y15c{bottom:1087.560000px;}
.ye8{bottom:1090.260000px;}
.y54{bottom:1096.110000px;}
.y29{bottom:1100.700000px;}
.y7b{bottom:1104.750000px;}
.y114{bottom:1105.110000px;}
.y53{bottom:1113.750000px;}
.y113{bottom:1122.750000px;}
.y28{bottom:1127.610000px;}
.y52{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.he{height:44.100000px;}
.h13{height:44.130000px;}
.hb{height:44.190000px;}
.hc{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h14{height:59.004492px;}
.h10{height:59.973223px;}
.h12{height:60.589687px;}
.h9{height:60.960938px;}
.hd{height:61.740000px;}
.h11{height:61.793886px;}
.hf{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:69.930000px;}
.w4{width:74.550000px;}
.w16{width:78.660000px;}
.w9{width:78.840000px;}
.w11{width:82.980000px;}
.w7{width:94.530000px;}
.w5{width:94.770000px;}
.w6{width:102.420000px;}
.wb{width:103.440000px;}
.w18{width:105.390000px;}
.wd{width:108.990000px;}
.w8{width:110.250000px;}
.wf{width:112.860000px;}
.wc{width:114.300000px;}
.w19{width:114.870000px;}
.w14{width:115.740000px;}
.we{width:120.270000px;}
.wa{width:125.280000px;}
.w1a{width:134.730000px;}
.w13{width:136.920000px;}
.w15{width:142.200000px;}
.w12{width:148.890000px;}
.w1b{width:153.180000px;}
.w1e{width:156.720000px;}
.w17{width:165.000000px;}
.w10{width:169.830000px;}
.w1f{width:171.450000px;}
.w1c{width:188.220000px;}
.w1d{width:237.150000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.x1e{left:7.740000px;}
.x1{left:68.040000px;}
.xc{left:79.830000px;}
.x17{left:95.039987px;}
.x22{left:111.239987px;}
.x1d{left:122.039987px;}
.x5{left:139.410000px;}
.x18{left:148.140000px;}
.x12{left:152.460000px;}
.xd{left:184.080000px;}
.x2{left:192.719987px;}
.x6{left:214.680000px;}
.x1f{left:257.700000px;}
.xe{left:299.190000px;}
.x13{left:302.070000px;}
.x7{left:310.170000px;}
.x19{left:313.950000px;}
.xf{left:408.900000px;}
.x8{left:413.400000px;}
.x1a{left:420.150000px;}
.x14{left:428.160000px;}
.x20{left:495.570000px;}
.x9{left:508.650000px;}
.x10{left:529.890000px;}
.x1b{left:535.830000px;}
.x15{left:565.800000px;}
.xa{left:619.620000px;}
.x11{left:643.560000px;}
.x21{left:653.010000px;}
.x1c{left:671.280000px;}
.x16{left:682.260000px;}
.xb{left:699.180000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.395200pt;}
.ls16{letter-spacing:-0.216533pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls1e{letter-spacing:-0.144000pt;}
.ls18{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls1f{letter-spacing:-0.082667pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls20{letter-spacing:-0.053867pt;}
.lsa{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.057600pt;}
.ls9{letter-spacing:0.058133pt;}
.ls3{letter-spacing:0.058240pt;}
.ls15{letter-spacing:0.060800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.087467pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls8{letter-spacing:0.155200pt;}
.ls11{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.496000pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls13{letter-spacing:56.503680pt;}
.ls19{letter-spacing:71.863680pt;}
.wsa{word-spacing:-53.440000pt;}
.ws8{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.844267pt;}
.ws9{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.702933pt;}
.wsb{word-spacing:-11.700267pt;}
.wse{word-spacing:-11.674133pt;}
.ws6{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.294933pt;}
.ws3{word-spacing:-7.603200pt;}
.ws5{word-spacing:0.000000pt;}
._2a{margin-left:-3.981868pt;}
._a{margin-left:-3.045866pt;}
._8{margin-left:-2.071253pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.044213pt;}
._6{width:2.190933pt;}
._3{width:3.259733pt;}
._4{width:4.221867pt;}
._5{width:5.366080pt;}
._7{width:7.053866pt;}
._17{width:7.963415pt;}
._f{width:8.871040pt;}
._10{width:9.779520pt;}
._9{width:10.741333pt;}
._1d{width:12.698773pt;}
._16{width:13.787520pt;}
._1e{width:14.744213pt;}
._26{width:15.711360pt;}
._1{width:17.372256pt;}
._b{width:18.704000pt;}
._31{width:19.687040pt;}
._2f{width:20.751893pt;}
._11{width:21.856960pt;}
._12{width:22.826773pt;}
._27{width:24.620053pt;}
._2e{width:25.971840pt;}
._2d{width:27.307840pt;}
._e{width:29.872960pt;}
._19{width:33.453440pt;}
._21{width:34.961441pt;}
._13{width:36.339200pt;}
._25{width:39.919680pt;}
._14{width:41.576320pt;}
._1a{width:43.820800pt;}
._23{width:45.424000pt;}
._30{width:50.126720pt;}
._1f{width:55.631040pt;}
._2b{width:57.768640pt;}
._2c{width:58.886774pt;}
._22{width:59.919360pt;}
._d{width:66.395520pt;}
._15{width:76.024320pt;}
._24{width:84.488640pt;}
._1c{width:112.437760pt;}
._28{width:117.568000pt;}
._29{width:118.476480pt;}
._18{width:123.232640pt;}
._1b{width:131.622720pt;}
._c{width:141.241920pt;}
._20{width:194.468160pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:6.960000pt;}
.y41{bottom:7.040000pt;}
.y9a{bottom:7.520000pt;}
.y4e{bottom:22.560000pt;}
.y40{bottom:22.640000pt;}
.yb4{bottom:22.720000pt;}
.y99{bottom:22.880000pt;}
.y43{bottom:38.240000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y97{bottom:102.906667pt;}
.y140{bottom:103.626667pt;}
.ybf{bottom:110.826667pt;}
.ye7{bottom:111.626667pt;}
.y96{bottom:118.506667pt;}
.y13f{bottom:119.226667pt;}
.y7a{bottom:119.546667pt;}
.y51{bottom:121.546667pt;}
.ybe{bottom:126.426667pt;}
.y15b{bottom:126.826667pt;}
.ye6{bottom:127.226667pt;}
.y79{bottom:132.826667pt;}
.y13e{bottom:134.826667pt;}
.y112{bottom:140.666667pt;}
.ybd{bottom:142.106667pt;}
.y15a{bottom:142.506667pt;}
.ye5{bottom:142.906667pt;}
.y95{bottom:150.106667pt;}
.y50{bottom:153.146667pt;}
.y111{bottom:156.346667pt;}
.ybc{bottom:157.706667pt;}
.ye4{bottom:158.506667pt;}
.y25{bottom:159.626667pt;}
.y159{bottom:166.106667pt;}
.y94{bottom:166.506667pt;}
.y110{bottom:171.946667pt;}
.y13d{bottom:174.106667pt;}
.ye3{bottom:174.186667pt;}
.ybb{bottom:181.306667pt;}
.y158{bottom:181.786667pt;}
.y4f{bottom:182.426667pt;}
.y93{bottom:182.826667pt;}
.y10f{bottom:187.626667pt;}
.y78{bottom:188.426667pt;}
.y13c{bottom:189.786667pt;}
.y24{bottom:192.506667pt;}
.y92{bottom:199.226667pt;}
.y157{bottom:205.386667pt;}
.ye2{bottom:205.786667pt;}
.y23{bottom:208.106667pt;}
.y10e{bottom:211.226667pt;}
.yba{bottom:212.986667pt;}
.y13b{bottom:213.386667pt;}
.y91{bottom:215.626667pt;}
.y156{bottom:220.986667pt;}
.ye1{bottom:221.386667pt;}
.y4d{bottom:222.426667pt;}
.y22{bottom:223.786667pt;}
.y10d{bottom:226.826667pt;}
.y77{bottom:228.346667pt;}
.yb9{bottom:228.586667pt;}
.y13a{bottom:228.986667pt;}
.y155{bottom:236.666667pt;}
.ye0{bottom:237.066667pt;}
.yb8{bottom:244.266667pt;}
.y139{bottom:244.666667pt;}
.y90{bottom:247.946667pt;}
.y10c{bottom:250.506667pt;}
.ydf{bottom:252.666667pt;}
.y21{bottom:255.386667pt;}
.yb7{bottom:259.866667pt;}
.y154{bottom:260.266667pt;}
.y8f{bottom:263.626667pt;}
.y10b{bottom:266.106667pt;}
.y138{bottom:268.266667pt;}
.y20{bottom:271.066667pt;}
.y153{bottom:275.946667pt;}
.y8e{bottom:279.226667pt;}
.y4c{bottom:281.306667pt;}
.yb6{bottom:283.466667pt;}
.y137{bottom:283.946667pt;}
.yde{bottom:284.346667pt;}
.y1f{bottom:286.666667pt;}
.y76{bottom:287.226667pt;}
.y10a{bottom:289.786667pt;}
.y8d{bottom:294.906667pt;}
.y152{bottom:299.546667pt;}
.ydd{bottom:299.946667pt;}
.y1e{bottom:302.266667pt;}
.y109{bottom:305.386667pt;}
.y136{bottom:307.546667pt;}
.yb5{bottom:310.106667pt;}
.y4b{bottom:312.986667pt;}
.y151{bottom:315.146667pt;}
.ydc{bottom:315.546667pt;}
.y8c{bottom:318.506667pt;}
.y75{bottom:318.906667pt;}
.y135{bottom:323.146667pt;}
.y4a{bottom:328.586667pt;}
.y108{bottom:328.986667pt;}
.ydb{bottom:331.226667pt;}
.y1d{bottom:333.946667pt;}
.y74{bottom:334.506667pt;}
.y134{bottom:338.826667pt;}
.y49{bottom:344.186667pt;}
.y107{bottom:344.666667pt;}
.y1c{bottom:349.546667pt;}
.y73{bottom:350.106667pt;}
.y48{bottom:359.866667pt;}
.y133{bottom:362.426667pt;}
.yda{bottom:362.826667pt;}
.y1b{bottom:365.226667pt;}
.y72{bottom:365.786667pt;}
.y106{bottom:368.266667pt;}
.y47{bottom:375.466667pt;}
.y132{bottom:378.106667pt;}
.yd9{bottom:378.426667pt;}
.y1a{bottom:380.826667pt;}
.y71{bottom:381.386667pt;}
.y105{bottom:383.946667pt;}
.yb3{bottom:390.026667pt;}
.y46{bottom:391.066667pt;}
.y131{bottom:393.706667pt;}
.yd8{bottom:394.106667pt;}
.y19{bottom:396.426667pt;}
.y70{bottom:397.066667pt;}
.y104{bottom:399.546667pt;}
.y130{bottom:409.306667pt;}
.yd7{bottom:409.706667pt;}
.y45{bottom:414.986667pt;}
.y150{bottom:417.306667pt;}
.y6f{bottom:421.013333pt;}
.y103{bottom:423.173333pt;}
.yd6{bottom:425.413333pt;}
.y18{bottom:428.133333pt;}
.y12f{bottom:433.013333pt;}
.y102{bottom:438.853333pt;}
.y17{bottom:443.733333pt;}
.y12e{bottom:448.613333pt;}
.yb2{bottom:448.933333pt;}
.y42{bottom:455.653333pt;}
.y14f{bottom:456.613333pt;}
.yd5{bottom:457.013333pt;}
.y16{bottom:459.413333pt;}
.y101{bottom:462.453333pt;}
.y6e{bottom:463.893333pt;}
.y12d{bottom:472.293333pt;}
.yd4{bottom:472.613333pt;}
.y15{bottom:475.013333pt;}
.y100{bottom:478.133333pt;}
.y6d{bottom:479.493333pt;}
.yb1{bottom:480.613333pt;}
.y12c{bottom:487.893333pt;}
.yd3{bottom:488.293333pt;}
.y14{bottom:490.613333pt;}
.y6c{bottom:495.173333pt;}
.yb0{bottom:496.213333pt;}
.yff{bottom:501.733333pt;}
.yd2{bottom:503.893333pt;}
.y6b{bottom:510.773333pt;}
.y3f{bottom:511.173333pt;}
.y12b{bottom:511.493333pt;}
.yaf{bottom:511.813333pt;}
.yfe{bottom:517.333333pt;}
.yd1{bottom:519.573333pt;}
.y13{bottom:522.293333pt;}
.y12a{bottom:527.173333pt;}
.yae{bottom:535.733333pt;}
.y12{bottom:537.893333pt;}
.yfd{bottom:541.013333pt;}
.y6a{bottom:542.453333pt;}
.y14e{bottom:542.773333pt;}
.yd0{bottom:543.493333pt;}
.y129{bottom:550.773333pt;}
.y11{bottom:553.573333pt;}
.yfc{bottom:556.613333pt;}
.y69{bottom:558.053333pt;}
.y128{bottom:566.453333pt;}
.y10{bottom:569.173333pt;}
.y3e{bottom:570.133333pt;}
.y68{bottom:573.653333pt;}
.yad{bottom:578.693333pt;}
.yfb{bottom:580.293333pt;}
.y14d{bottom:582.053333pt;}
.yf{bottom:584.773333pt;}
.ycf{bottom:586.373333pt;}
.y67{bottom:589.333333pt;}
.y127{bottom:590.053333pt;}
.yac{bottom:594.293333pt;}
.yfa{bottom:595.893333pt;}
.y14c{bottom:597.653333pt;}
.ye{bottom:600.453333pt;}
.y3d{bottom:601.733333pt;}
.yce{bottom:601.973333pt;}
.y8b{bottom:604.933333pt;}
.y126{bottom:605.653333pt;}
.yab{bottom:609.893333pt;}
.y3c{bottom:617.413333pt;}
.ycd{bottom:617.653333pt;}
.yf9{bottom:619.493333pt;}
.y66{bottom:620.933333pt;}
.y14b{bottom:621.333333pt;}
.yd{bottom:624.373333pt;}
.yaa{bottom:625.573333pt;}
.y8a{bottom:628.613333pt;}
.y125{bottom:629.333333pt;}
.y3b{bottom:633.013333pt;}
.ycc{bottom:633.253333pt;}
.yf8{bottom:635.173333pt;}
.y65{bottom:636.613333pt;}
.y14a{bottom:636.933333pt;}
.ya9{bottom:641.173333pt;}
.y124{bottom:644.933333pt;}
.yf7{bottom:650.773333pt;}
.y64{bottom:652.213333pt;}
.ya8{bottom:656.853333pt;}
.y89{bottom:660.213333pt;}
.y123{bottom:660.613333pt;}
.y3a{bottom:664.613333pt;}
.ycb{bottom:664.933333pt;}
.yc{bottom:665.893333pt;}
.y63{bottom:667.813333pt;}
.yf6{bottom:674.373333pt;}
.y88{bottom:675.813333pt;}
.y149{bottom:676.213333pt;}
.y39{bottom:680.293333pt;}
.yca{bottom:680.533333pt;}
.y122{bottom:684.213333pt;}
.ya7{bottom:688.453333pt;}
.yf5{bottom:690.053333pt;}
.y62{bottom:691.493333pt;}
.y38{bottom:695.893333pt;}
.yc9{bottom:696.133333pt;}
.yb{bottom:697.733333pt;}
.y121{bottom:699.813333pt;}
.ya6{bottom:704.053333pt;}
.y87{bottom:707.093333pt;}
.y37{bottom:711.573333pt;}
.yc8{bottom:712.533333pt;}
.yf4{bottom:713.653333pt;}
.y120{bottom:715.493333pt;}
.ya5{bottom:720.453333pt;}
.y86{bottom:722.693333pt;}
.y61{bottom:723.093333pt;}
.yc7{bottom:728.133333pt;}
.yf3{bottom:729.333333pt;}
.ya{bottom:729.733333pt;}
.y148{bottom:731.093333pt;}
.ya4{bottom:736.773333pt;}
.y60{bottom:738.693333pt;}
.y11f{bottom:739.093333pt;}
.y36{bottom:743.173333pt;}
.yc6{bottom:743.733333pt;}
.y85{bottom:746.373333pt;}
.yf2{bottom:752.933333pt;}
.ya3{bottom:753.173333pt;}
.y5f{bottom:754.373333pt;}
.y147{bottom:754.693333pt;}
.y35{bottom:758.773333pt;}
.yc5{bottom:760.133333pt;}
.y11e{bottom:762.693333pt;}
.y9{bottom:765.093333pt;}
.yf1{bottom:768.533333pt;}
.ya2{bottom:768.773333pt;}
.y5e{bottom:769.973333pt;}
.y146{bottom:770.373333pt;}
.y34{bottom:774.453333pt;}
.yc4{bottom:775.733333pt;}
.y84{bottom:777.973333pt;}
.y11d{bottom:778.373333pt;}
.y8{bottom:781.093333pt;}
.ya1{bottom:785.173333pt;}
.y33{bottom:790.053333pt;}
.yc3{bottom:792.133333pt;}
.yf0{bottom:792.213333pt;}
.y5d{bottom:793.653333pt;}
.y11c{bottom:793.973333pt;}
.y7{bottom:797.093333pt;}
.y15d{bottom:801.973333pt;}
.y32{bottom:805.733333pt;}
.yc2{bottom:807.733333pt;}
.yef{bottom:807.813333pt;}
.y83{bottom:809.253333pt;}
.y145{bottom:809.653333pt;}
.y6{bottom:813.093333pt;}
.ya0{bottom:817.573333pt;}
.y11b{bottom:817.653333pt;}
.yee{bottom:823.493333pt;}
.yc1{bottom:824.133333pt;}
.y82{bottom:824.853333pt;}
.y5c{bottom:825.253333pt;}
.y9f{bottom:833.173333pt;}
.y11a{bottom:833.253333pt;}
.y31{bottom:837.333333pt;}
.yc0{bottom:839.733333pt;}
.y81{bottom:840.533333pt;}
.y5b{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.yed{bottom:847.093333pt;}
.y9e{bottom:848.853333pt;}
.y30{bottom:852.933333pt;}
.y5a{bottom:856.533333pt;}
.y119{bottom:856.853333pt;}
.yec{bottom:862.693333pt;}
.y80{bottom:864.133333pt;}
.y9d{bottom:864.453333pt;}
.y144{bottom:864.533333pt;}
.y2f{bottom:868.613333pt;}
.y59{bottom:872.133333pt;}
.y118{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.yeb{bottom:878.373333pt;}
.y143{bottom:880.133333pt;}
.y2e{bottom:884.213333pt;}
.y58{bottom:887.813333pt;}
.y9c{bottom:888.053333pt;}
.y117{bottom:888.133333pt;}
.y7f{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.yea{bottom:902.320000pt;}
.y142{bottom:903.840000pt;}
.y57{bottom:911.440000pt;}
.y116{bottom:911.840000pt;}
.y9b{bottom:914.720000pt;}
.y2d{bottom:915.840000pt;}
.y141{bottom:919.440000pt;}
.y7e{bottom:927.040000pt;}
.y115{bottom:927.440000pt;}
.y2c{bottom:931.520000pt;}
.y7d{bottom:942.720000pt;}
.y56{bottom:943.040000pt;}
.ye9{bottom:945.200000pt;}
.y2b{bottom:947.120000pt;}
.y98{bottom:954.640000pt;}
.y7c{bottom:958.320000pt;}
.y55{bottom:958.720000pt;}
.y2a{bottom:962.800000pt;}
.y15c{bottom:966.720000pt;}
.ye8{bottom:969.120000pt;}
.y54{bottom:974.320000pt;}
.y29{bottom:978.400000pt;}
.y7b{bottom:982.000000pt;}
.y114{bottom:982.320000pt;}
.y53{bottom:990.000000pt;}
.y113{bottom:998.000000pt;}
.y28{bottom:1002.320000pt;}
.y52{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.he{height:39.200000pt;}
.h13{height:39.226667pt;}
.hb{height:39.280000pt;}
.hc{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h14{height:52.448437pt;}
.h10{height:53.309531pt;}
.h12{height:53.857500pt;}
.h9{height:54.187500pt;}
.hd{height:54.880000pt;}
.h11{height:54.927899pt;}
.hf{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:62.160000pt;}
.w4{width:66.266667pt;}
.w16{width:69.920000pt;}
.w9{width:70.080000pt;}
.w11{width:73.760000pt;}
.w7{width:84.026667pt;}
.w5{width:84.240000pt;}
.w6{width:91.040000pt;}
.wb{width:91.946667pt;}
.w18{width:93.680000pt;}
.wd{width:96.880000pt;}
.w8{width:98.000000pt;}
.wf{width:100.320000pt;}
.wc{width:101.600000pt;}
.w19{width:102.106667pt;}
.w14{width:102.880000pt;}
.we{width:106.906667pt;}
.wa{width:111.360000pt;}
.w1a{width:119.760000pt;}
.w13{width:121.706667pt;}
.w15{width:126.400000pt;}
.w12{width:132.346667pt;}
.w1b{width:136.160000pt;}
.w1e{width:139.306667pt;}
.w17{width:146.666667pt;}
.w10{width:150.960000pt;}
.w1f{width:152.400000pt;}
.w1c{width:167.306667pt;}
.w1d{width:210.800000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.x1e{left:6.880000pt;}
.x1{left:60.480000pt;}
.xc{left:70.960000pt;}
.x17{left:84.479988pt;}
.x22{left:98.879988pt;}
.x1d{left:108.479988pt;}
.x5{left:123.920000pt;}
.x18{left:131.680000pt;}
.x12{left:135.520000pt;}
.xd{left:163.626667pt;}
.x2{left:171.306655pt;}
.x6{left:190.826667pt;}
.x1f{left:229.066667pt;}
.xe{left:265.946667pt;}
.x13{left:268.506667pt;}
.x7{left:275.706667pt;}
.x19{left:279.066667pt;}
.xf{left:363.466667pt;}
.x8{left:367.466667pt;}
.x1a{left:373.466667pt;}
.x14{left:380.586667pt;}
.x20{left:440.506667pt;}
.x9{left:452.133333pt;}
.x10{left:471.013333pt;}
.x1b{left:476.293333pt;}
.x15{left:502.933333pt;}
.xa{left:550.773333pt;}
.x11{left:572.053333pt;}
.x21{left:580.453333pt;}
.x1c{left:596.693333pt;}
.x16{left:606.453333pt;}
.xb{left:621.493333pt;}
.x3{left:711.413322pt;}
}




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