
    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_d93881b8e97867686fd2ad68.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_db078a0fd1b48ea000132ecc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_3d4b044df7d9051b4dca389d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_1b56a524e7b9ae43c603eac1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.788574;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_2947876b07dd6a8eb157a18c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a98b6e4aac77bc3b05f74f84.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_ec97c16b2d45ccc151d607d7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f11390bc987460f8493bb842.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4995c498dfbc4fd43cef58c7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_eba49dc1acaed961e8ba6acf.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4995c498dfbc4fd43cef58c7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_eba49dc1acaed961e8ba6acf.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4995c498dfbc4fd43cef58c7.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_eba49dc1acaed961e8ba6acf.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4995c498dfbc4fd43cef58c7.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_eba49dc1acaed961e8ba6acf.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_57c3267deb3c2c3dacb2225c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.946777;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:ff13;src:url('chunks/assets/font_f973c883c4398fae77df1747.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.747559;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:ff14;src:url('chunks/assets/font_4995c498dfbc4fd43cef58c7.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_eba49dc1acaed961e8ba6acf.woff2')format("woff");}.ff15{font-family:ff15;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls11{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.513600px;}
.ls12{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.269400px;}
.ls9{letter-spacing:-0.223800px;}
.ls17{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.053280px;}
.ls10{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.045360px;}
.ls15{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.153360px;}
.ls7{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.181440px;}
.lse{letter-spacing:0.206640px;}
.ls8{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.269400px;}
.lsc{letter-spacing:0.306600px;}
.ls5{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.386640px;}
.ls1{letter-spacing:1.620000px;}
.ls2{letter-spacing:8.820000px;}
.ls3{letter-spacing:11.700000px;}
.ls16{letter-spacing:11.789280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-54.000000px;}
.ws2{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.246600px;}
.ws5{word-spacing:-15.199800px;}
.ws13{word-spacing:-15.120000px;}
.ws1{word-spacing:-15.093600px;}
.wse{word-spacing:-15.046800px;}
.ws11{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.733600px;}
.wsf{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.426400px;}
.ws3{word-spacing:-13.500000px;}
.ws16{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.329400px;}
.ws7{word-spacing:-12.105360px;}
.ws9{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.836200px;}
.ws8{word-spacing:-11.790600px;}
.ws15{word-spacing:-11.700000px;}
.wsd{word-spacing:-9.711360px;}
.wsc{word-spacing:0.000000px;}
._18{margin-left:-3.312240px;}
._c{margin-left:-2.106000px;}
._1{margin-left:-1.008000px;}
._0{width:1.115520px;}
._2{width:2.484000px;}
._4{width:3.834000px;}
._3{width:5.022000px;}
._6{width:6.246000px;}
._5{width:7.452000px;}
._b{width:8.496480px;}
._e{width:10.209840px;}
._15{width:11.740320px;}
._f{width:13.087440px;}
._17{width:14.690160px;}
._1c{width:16.194960px;}
._1a{width:17.210880px;}
._1b{width:18.306480px;}
._1d{width:19.488240px;}
._9{width:20.754480px;}
._a{width:22.013520px;}
._8{width:23.112000px;}
._7{width:24.300000px;}
._14{width:25.637040px;}
._10{width:27.310320px;}
._1e{width:28.378560px;}
._19{width:29.541360px;}
._d{width:30.834000px;}
._13{width:32.121840px;}
._16{width:33.344880px;}
._1f{width:34.660800px;}
._11{width:38.326080px;}
._12{width:39.561120px;}
._20{width:40.898880px;}
._21{width:56.054880px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:144.000000px;}
.fs5{font-size:290.880000px;}
.y0{bottom:0.000000px;}
.yb1{bottom:0.720000px;}
.y7d{bottom:0.900000px;}
.yda{bottom:2.160000px;}
.y3f{bottom:3.240000px;}
.y59{bottom:3.960000px;}
.y119{bottom:4.140000px;}
.ye7{bottom:7.560000px;}
.y118{bottom:12.600000px;}
.ye9{bottom:17.460000px;}
.y48{bottom:20.340000px;}
.y44{bottom:20.520000px;}
.y5c{bottom:22.500000px;}
.yd4{bottom:31.140000px;}
.yb2{bottom:45.900000px;}
.y3a{bottom:77.976000px;}
.yd6{bottom:79.956000px;}
.y120{bottom:84.276000px;}
.yfa{bottom:91.116000px;}
.y39{bottom:91.836000px;}
.y148{bottom:97.596000px;}
.yd5{bottom:98.136000px;}
.yaf{bottom:101.376000px;}
.y11f{bottom:102.276000px;}
.y38{bottom:105.516000px;}
.yf9{bottom:109.116000px;}
.y147{bottom:111.276000px;}
.yd3{bottom:112.176000px;}
.y37{bottom:119.376000px;}
.yae{bottom:119.556000px;}
.y11e{bottom:120.456000px;}
.y146{bottom:125.136000px;}
.yf8{bottom:127.296000px;}
.y36{bottom:133.236000px;}
.y84{bottom:134.316000px;}
.yad{bottom:137.556000px;}
.y11d{bottom:138.456000px;}
.y145{bottom:138.996000px;}
.yf7{bottom:145.296000px;}
.y35{bottom:146.916000px;}
.y83{bottom:152.490000px;}
.y144{bottom:152.670000px;}
.yac{bottom:155.730000px;}
.y11c{bottom:156.630000px;}
.y34{bottom:160.770000px;}
.yf6{bottom:163.470000px;}
.y143{bottom:166.530000px;}
.y82{bottom:170.670000px;}
.yab{bottom:173.910000px;}
.y33{bottom:174.630000px;}
.y11b{bottom:174.810000px;}
.y142{bottom:180.390000px;}
.yf5{bottom:181.650000px;}
.y32{bottom:188.310000px;}
.y81{bottom:188.670000px;}
.yaa{bottom:191.910000px;}
.y11a{bottom:192.810000px;}
.y141{bottom:194.070000px;}
.yf4{bottom:199.650000px;}
.y31{bottom:202.170000px;}
.y80{bottom:206.850000px;}
.y140{bottom:207.930000px;}
.ya9{bottom:210.090000px;}
.y30{bottom:216.750000px;}
.yf3{bottom:217.830000px;}
.y13f{bottom:221.790000px;}
.y7f{bottom:224.850000px;}
.ya8{bottom:228.270000px;}
.y13e{bottom:235.470000px;}
.yf2{bottom:236.010000px;}
.y2f{bottom:236.370000px;}
.y7e{bottom:238.890000px;}
.ya7{bottom:246.270000px;}
.y13d{bottom:249.330000px;}
.yf1{bottom:254.010000px;}
.y2e{bottom:254.370000px;}
.y13c{bottom:263.190000px;}
.ya6{bottom:264.450000px;}
.y57{bottom:269.670000px;}
.yf0{bottom:272.190000px;}
.y2d{bottom:272.550000px;}
.y13b{bottom:276.870000px;}
.ya5{bottom:282.450000px;}
.y56{bottom:287.850000px;}
.yef{bottom:290.190000px;}
.y2c{bottom:290.730000px;}
.ya4{bottom:300.630000px;}
.yd2{bottom:301.530000px;}
.y55{bottom:302.610000px;}
.y13a{bottom:304.590000px;}
.yee{bottom:308.370000px;}
.y2b{bottom:308.730000px;}
.ya3{bottom:318.855000px;}
.yd1{bottom:319.755000px;}
.y139{bottom:325.155000px;}
.yed{bottom:326.595000px;}
.y2a{bottom:326.955000px;}
.ya2{bottom:336.855000px;}
.yd0{bottom:337.935000px;}
.yec{bottom:344.595000px;}
.y29{bottom:344.955000px;}
.ya1{bottom:355.035000px;}
.ycf{bottom:355.935000px;}
.y138{bottom:360.435000px;}
.yeb{bottom:362.775000px;}
.y28{bottom:363.135000px;}
.y117{bottom:370.335000px;}
.ya0{bottom:373.035000px;}
.yce{bottom:374.115000px;}
.y137{bottom:377.535000px;}
.yea{bottom:380.955000px;}
.y27{bottom:381.315000px;}
.y7c{bottom:386.175000px;}
.y9f{bottom:391.215000px;}
.ycd{bottom:392.295000px;}
.y136{bottom:394.815000px;}
.ye8{bottom:394.995000px;}
.y26{bottom:399.315000px;}
.y9e{bottom:409.395000px;}
.ycc{bottom:410.295000px;}
.y25{bottom:417.495000px;}
.y135{bottom:418.035000px;}
.y9d{bottom:427.395000px;}
.ycb{bottom:428.475000px;}
.y24{bottom:435.675000px;}
.y9c{bottom:445.575000px;}
.yca{bottom:446.475000px;}
.y134{bottom:453.315000px;}
.y23{bottom:453.675000px;}
.y9b{bottom:463.755000px;}
.yc9{bottom:464.655000px;}
.y133{bottom:470.595000px;}
.y22{bottom:471.855000px;}
.y9a{bottom:481.755000px;}
.yc8{bottom:482.835000px;}
.y132{bottom:487.875000px;}
.y54{bottom:489.135000px;}
.y21{bottom:489.855000px;}
.y99{bottom:499.935000px;}
.yc7{bottom:500.835000px;}
.y131{bottom:505.155000px;}
.y53{bottom:507.135000px;}
.y20{bottom:508.035000px;}
.y98{bottom:517.935000px;}
.yc6{bottom:519.015000px;}
.y130{bottom:522.255000px;}
.y52{bottom:525.315000px;}
.y1f{bottom:526.215000px;}
.y116{bottom:531.075000px;}
.y7b{bottom:531.615000px;}
.ye6{bottom:535.935000px;}
.y97{bottom:536.115000px;}
.yc5{bottom:537.015000px;}
.y12f{bottom:539.535000px;}
.y51{bottom:543.315000px;}
.y1e{bottom:544.215000px;}
.y115{bottom:549.075000px;}
.y7a{bottom:549.795000px;}
.y96{bottom:554.295000px;}
.yc4{bottom:555.195000px;}
.y12e{bottom:556.815000px;}
.y58{bottom:558.255000px;}
.y50{bottom:561.495000px;}
.y1d{bottom:562.395000px;}
.y114{bottom:567.255000px;}
.y79{bottom:567.975000px;}
.y95{bottom:572.325000px;}
.yc3{bottom:573.405000px;}
.y12d{bottom:574.125000px;}
.y4f{bottom:579.705000px;}
.y1c{bottom:580.425000px;}
.y113{bottom:585.465000px;}
.y78{bottom:586.005000px;}
.y94{bottom:590.505000px;}
.yc2{bottom:591.405000px;}
.y4e{bottom:597.705000px;}
.y1b{bottom:598.605000px;}
.y112{bottom:603.465000px;}
.y77{bottom:604.185000px;}
.y93{bottom:608.505000px;}
.y12c{bottom:608.685000px;}
.yc1{bottom:609.585000px;}
.y4d{bottom:615.885000px;}
.y111{bottom:621.645000px;}
.y1a{bottom:621.825000px;}
.y76{bottom:622.185000px;}
.y12b{bottom:625.785000px;}
.y92{bottom:626.685000px;}
.yc0{bottom:627.765000px;}
.y4c{bottom:634.065000px;}
.y110{bottom:639.645000px;}
.y75{bottom:640.365000px;}
.y12a{bottom:643.065000px;}
.y91{bottom:644.865000px;}
.ybf{bottom:645.765000px;}
.y4b{bottom:652.065000px;}
.y19{bottom:656.745000px;}
.y10f{bottom:657.825000px;}
.y74{bottom:658.545000px;}
.y129{bottom:660.345000px;}
.y90{bottom:662.865000px;}
.ybe{bottom:663.945000px;}
.y4a{bottom:670.245000px;}
.y18{bottom:672.405000px;}
.y10e{bottom:676.005000px;}
.y73{bottom:676.545000px;}
.y128{bottom:677.625000px;}
.y8f{bottom:681.045000px;}
.ybd{bottom:681.945000px;}
.ye5{bottom:682.665000px;}
.y17{bottom:688.245000px;}
.y10d{bottom:694.005000px;}
.y72{bottom:694.725000px;}
.y127{bottom:694.905000px;}
.y8e{bottom:699.225000px;}
.ybc{bottom:700.125000px;}
.ye4{bottom:700.845000px;}
.y49{bottom:703.185000px;}
.y16{bottom:705.165000px;}
.y10c{bottom:712.185000px;}
.y71{bottom:712.905000px;}
.y8d{bottom:717.225000px;}
.y126{bottom:718.125000px;}
.ybb{bottom:718.305000px;}
.ye3{bottom:719.025000px;}
.y15{bottom:720.645000px;}
.y47{bottom:721.185000px;}
.y10b{bottom:730.365000px;}
.y70{bottom:730.905000px;}
.y8c{bottom:735.405000px;}
.y14{bottom:736.125000px;}
.yba{bottom:736.305000px;}
.ye2{bottom:737.025000px;}
.y10a{bottom:748.365000px;}
.y6f{bottom:749.085000px;}
.y13{bottom:751.605000px;}
.y8b{bottom:753.405000px;}
.y125{bottom:754.125000px;}
.yb9{bottom:754.485000px;}
.ye1{bottom:755.205000px;}
.y46{bottom:756.285000px;}
.y109{bottom:766.545000px;}
.y6e{bottom:767.085000px;}
.y12{bottom:767.265000px;}
.y8a{bottom:771.585000px;}
.y124{bottom:772.305000px;}
.yb8{bottom:772.485000px;}
.ye0{bottom:773.205000px;}
.y45{bottom:774.285000px;}
.y11{bottom:782.745000px;}
.y108{bottom:784.545000px;}
.y6d{bottom:785.265000px;}
.y123{bottom:790.485000px;}
.yb7{bottom:790.665000px;}
.ydf{bottom:791.385000px;}
.y43{bottom:792.285000px;}
.y89{bottom:794.805000px;}
.y10{bottom:798.225000px;}
.y6c{bottom:803.445000px;}
.y107{bottom:807.945000px;}
.y122{bottom:808.485000px;}
.yb6{bottom:808.845000px;}
.yde{bottom:809.565000px;}
.yf{bottom:813.705000px;}
.y6b{bottom:821.490000px;}
.y121{bottom:826.710000px;}
.yb5{bottom:826.890000px;}
.y42{bottom:827.610000px;}
.ye{bottom:829.410000px;}
.y88{bottom:831.750000px;}
.y6a{bottom:839.670000px;}
.y106{bottom:844.710000px;}
.yd{bottom:844.890000px;}
.yb4{bottom:845.070000px;}
.y41{bottom:845.610000px;}
.y87{bottom:849.930000px;}
.ydd{bottom:851.010000px;}
.y69{bottom:857.670000px;}
.yc{bottom:860.370000px;}
.y105{bottom:862.890000px;}
.yb3{bottom:863.250000px;}
.y40{bottom:863.610000px;}
.y86{bottom:867.930000px;}
.y157{bottom:873.150000px;}
.yb{bottom:875.850000px;}
.yb0{bottom:877.290000px;}
.y104{bottom:881.070000px;}
.y3e{bottom:881.610000px;}
.y85{bottom:882.870000px;}
.ydc{bottom:887.730000px;}
.ya{bottom:891.510000px;}
.y68{bottom:894.030000px;}
.y103{bottom:899.070000px;}
.y3d{bottom:903.750000px;}
.ydb{bottom:905.910000px;}
.y9{bottom:906.990000px;}
.y156{bottom:907.890000px;}
.y67{bottom:912.030000px;}
.y102{bottom:917.250000px;}
.yd9{bottom:919.950000px;}
.y3c{bottom:921.750000px;}
.y8{bottom:922.470000px;}
.y66{bottom:930.210000px;}
.y101{bottom:935.250000px;}
.y155{bottom:935.430000px;}
.y3b{bottom:939.930000px;}
.y7{bottom:940.470000px;}
.y65{bottom:948.390000px;}
.y154{bottom:949.290000px;}
.y100{bottom:953.430000px;}
.y153{bottom:963.150000px;}
.y64{bottom:966.390000px;}
.yff{bottom:971.610000px;}
.y152{bottom:976.830000px;}
.y6{bottom:981.510000px;}
.y63{bottom:984.570000px;}
.yfe{bottom:989.610000px;}
.y151{bottom:990.690000px;}
.y5{bottom:1000.590000px;}
.y62{bottom:1002.570000px;}
.y150{bottom:1004.550000px;}
.yfd{bottom:1007.790000px;}
.y14f{bottom:1018.230000px;}
.y61{bottom:1020.750000px;}
.y4{bottom:1025.790000px;}
.yfc{bottom:1025.970000px;}
.y14e{bottom:1032.090000px;}
.y60{bottom:1038.930000px;}
.yfb{bottom:1043.970000px;}
.y14d{bottom:1045.950000px;}
.y5f{bottom:1056.930000px;}
.y14c{bottom:1059.630000px;}
.yd8{bottom:1062.150000px;}
.y3{bottom:1069.170000px;}
.y14b{bottom:1073.520000px;}
.y5e{bottom:1075.140000px;}
.yd7{bottom:1080.180000px;}
.y14a{bottom:1087.380000px;}
.y5d{bottom:1098.360000px;}
.y149{bottom:1101.060000px;}
.y2{bottom:1124.280000px;}
.y1{bottom:1141.560000px;}
.y5b{bottom:1165.500000px;}
.y5a{bottom:1180.500000px;}
.hb{height:17.100000px;}
.h8{height:17.280000px;}
.ha{height:34.380000px;}
.h9{height:34.596000px;}
.h1b{height:35.261367px;}
.h4{height:37.494141px;}
.he{height:37.546875px;}
.h5{height:38.100586px;}
.h6{height:39.128906px;}
.h1c{height:41.493516px;}
.h11{height:42.164648px;}
.h7{height:43.246406px;}
.h1a{height:43.681992px;}
.h1{height:53.573906px;}
.hc{height:54.396000px;}
.h12{height:55.735313px;}
.h3{height:59.383125px;}
.h2{height:129.093750px;}
.h15{height:138.060000px;}
.h17{height:140.940000px;}
.hf{height:141.480000px;}
.h16{height:142.776000px;}
.h10{height:147.276000px;}
.h18{height:156.600000px;}
.h19{height:163.470000px;}
.h14{height:185.400000px;}
.h13{height:235.110000px;}
.hd{height:260.769375px;}
.h0{height:1188.000000px;}
.w5{width:42.696000px;}
.w4{width:69.120000px;}
.w3{width:129.996000px;}
.w9{width:140.616000px;}
.w7{width:156.990000px;}
.we{width:173.700000px;}
.w2{width:176.070000px;}
.wb{width:181.650000px;}
.wf{width:183.090000px;}
.w10{width:194.250000px;}
.wc{width:196.410000px;}
.wd{width:204.375000px;}
.w8{width:221.070000px;}
.wa{width:222.870000px;}
.w6{width:378.075000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:2.160000px;}
.xe{left:7.740000px;}
.x15{left:68.040000px;}
.x2{left:70.199986px;}
.x23{left:80.820000px;}
.x7{left:85.319986px;}
.x38{left:90.539986px;}
.x9{left:110.735986px;}
.x5{left:111.995986px;}
.x24{left:132.510000px;}
.x3{left:143.495986px;}
.x30{left:155.189986px;}
.x20{left:156.630000px;}
.x19{left:160.049986px;}
.x2d{left:170.640000px;}
.x17{left:174.000000px;}
.x2f{left:176.040000px;}
.x32{left:179.325000px;}
.x27{left:183.990000px;}
.x2e{left:190.290000px;}
.x4{left:194.069986px;}
.x8{left:196.589986px;}
.x29{left:202.005000px;}
.x2b{left:206.535000px;}
.x26{left:217.305000px;}
.x25{left:221.430000px;}
.x22{left:224.145000px;}
.x21{left:227.190000px;}
.x31{left:253.290000px;}
.x1b{left:266.789986px;}
.x6{left:269.489986px;}
.x18{left:279.000000px;}
.x1a{left:370.335000px;}
.x1d{left:464.294986px;}
.xd{left:470.595000px;}
.x1e{left:478.514986px;}
.x34{left:480.704986px;}
.x14{left:485.024986px;}
.x12{left:487.904986px;}
.x37{left:490.244986px;}
.x13{left:508.424986px;}
.x33{left:551.804986px;}
.x2a{left:595.904986px;}
.x35{left:597.704986px;}
.xb{left:599.144986px;}
.x36{left:620.204986px;}
.x1f{left:635.684986px;}
.xa{left:637.844986px;}
.xf{left:647.385000px;}
.x28{left:651.525000px;}
.xc{left:666.464986px;}
.x2c{left:674.250000px;}
.x10{left:778.110000px;}
.x11{left:826.349986px;}
.x1c{left:834.629986px;}
.x1{left:840.389986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.456533pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.239467pt;}
.ls9{letter-spacing:-0.198933pt;}
.ls17{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls10{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.040320pt;}
.ls15{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.136320pt;}
.ls7{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.161280pt;}
.lse{letter-spacing:0.183680pt;}
.ls8{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.239467pt;}
.lsc{letter-spacing:0.272533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.343680pt;}
.ls1{letter-spacing:1.440000pt;}
.ls2{letter-spacing:7.840000pt;}
.ls3{letter-spacing:10.400000pt;}
.ls16{letter-spacing:10.479360pt;}
.ws4{word-spacing:-48.000000pt;}
.ws2{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.552533pt;}
.ws5{word-spacing:-13.510933pt;}
.ws13{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.416533pt;}
.wse{word-spacing:-13.374933pt;}
.ws11{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.096533pt;}
.wsf{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.823467pt;}
.ws3{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.959467pt;}
.ws7{word-spacing:-10.760320pt;}
.ws9{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.521067pt;}
.ws8{word-spacing:-10.480533pt;}
.ws15{word-spacing:-10.400000pt;}
.wsd{word-spacing:-8.632320pt;}
.wsc{word-spacing:0.000000pt;}
._18{margin-left:-2.944213pt;}
._c{margin-left:-1.872000pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.991573pt;}
._2{width:2.208000pt;}
._4{width:3.408000pt;}
._3{width:4.464000pt;}
._6{width:5.552000pt;}
._5{width:6.624000pt;}
._b{width:7.552427pt;}
._e{width:9.075413pt;}
._15{width:10.435840pt;}
._f{width:11.633280pt;}
._17{width:13.057920pt;}
._1c{width:14.395520pt;}
._1a{width:15.298560pt;}
._1b{width:16.272427pt;}
._1d{width:17.322880pt;}
._9{width:18.448427pt;}
._a{width:19.567573pt;}
._8{width:20.544000pt;}
._7{width:21.600000pt;}
._14{width:22.788480pt;}
._10{width:24.275840pt;}
._1e{width:25.225387pt;}
._19{width:26.258987pt;}
._d{width:27.408000pt;}
._13{width:28.552747pt;}
._16{width:29.639893pt;}
._1f{width:30.809600pt;}
._11{width:34.067627pt;}
._12{width:35.165440pt;}
._20{width:36.354560pt;}
._21{width:49.826560pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:128.000000pt;}
.fs5{font-size:258.560000pt;}
.y0{bottom:0.000000pt;}
.yb1{bottom:0.640000pt;}
.y7d{bottom:0.800000pt;}
.yda{bottom:1.920000pt;}
.y3f{bottom:2.880000pt;}
.y59{bottom:3.520000pt;}
.y119{bottom:3.680000pt;}
.ye7{bottom:6.720000pt;}
.y118{bottom:11.200000pt;}
.ye9{bottom:15.520000pt;}
.y48{bottom:18.080000pt;}
.y44{bottom:18.240000pt;}
.y5c{bottom:20.000000pt;}
.yd4{bottom:27.680000pt;}
.yb2{bottom:40.800000pt;}
.y3a{bottom:69.312000pt;}
.yd6{bottom:71.072000pt;}
.y120{bottom:74.912000pt;}
.yfa{bottom:80.992000pt;}
.y39{bottom:81.632000pt;}
.y148{bottom:86.752000pt;}
.yd5{bottom:87.232000pt;}
.yaf{bottom:90.112000pt;}
.y11f{bottom:90.912000pt;}
.y38{bottom:93.792000pt;}
.yf9{bottom:96.992000pt;}
.y147{bottom:98.912000pt;}
.yd3{bottom:99.712000pt;}
.y37{bottom:106.112000pt;}
.yae{bottom:106.272000pt;}
.y11e{bottom:107.072000pt;}
.y146{bottom:111.232000pt;}
.yf8{bottom:113.152000pt;}
.y36{bottom:118.432000pt;}
.y84{bottom:119.392000pt;}
.yad{bottom:122.272000pt;}
.y11d{bottom:123.072000pt;}
.y145{bottom:123.552000pt;}
.yf7{bottom:129.152000pt;}
.y35{bottom:130.592000pt;}
.y83{bottom:135.546667pt;}
.y144{bottom:135.706667pt;}
.yac{bottom:138.426667pt;}
.y11c{bottom:139.226667pt;}
.y34{bottom:142.906667pt;}
.yf6{bottom:145.306667pt;}
.y143{bottom:148.026667pt;}
.y82{bottom:151.706667pt;}
.yab{bottom:154.586667pt;}
.y33{bottom:155.226667pt;}
.y11b{bottom:155.386667pt;}
.y142{bottom:160.346667pt;}
.yf5{bottom:161.466667pt;}
.y32{bottom:167.386667pt;}
.y81{bottom:167.706667pt;}
.yaa{bottom:170.586667pt;}
.y11a{bottom:171.386667pt;}
.y141{bottom:172.506667pt;}
.yf4{bottom:177.466667pt;}
.y31{bottom:179.706667pt;}
.y80{bottom:183.866667pt;}
.y140{bottom:184.826667pt;}
.ya9{bottom:186.746667pt;}
.y30{bottom:192.666667pt;}
.yf3{bottom:193.626667pt;}
.y13f{bottom:197.146667pt;}
.y7f{bottom:199.866667pt;}
.ya8{bottom:202.906667pt;}
.y13e{bottom:209.306667pt;}
.yf2{bottom:209.786667pt;}
.y2f{bottom:210.106667pt;}
.y7e{bottom:212.346667pt;}
.ya7{bottom:218.906667pt;}
.y13d{bottom:221.626667pt;}
.yf1{bottom:225.786667pt;}
.y2e{bottom:226.106667pt;}
.y13c{bottom:233.946667pt;}
.ya6{bottom:235.066667pt;}
.y57{bottom:239.706667pt;}
.yf0{bottom:241.946667pt;}
.y2d{bottom:242.266667pt;}
.y13b{bottom:246.106667pt;}
.ya5{bottom:251.066667pt;}
.y56{bottom:255.866667pt;}
.yef{bottom:257.946667pt;}
.y2c{bottom:258.426667pt;}
.ya4{bottom:267.226667pt;}
.yd2{bottom:268.026667pt;}
.y55{bottom:268.986667pt;}
.y13a{bottom:270.746667pt;}
.yee{bottom:274.106667pt;}
.y2b{bottom:274.426667pt;}
.ya3{bottom:283.426667pt;}
.yd1{bottom:284.226667pt;}
.y139{bottom:289.026667pt;}
.yed{bottom:290.306667pt;}
.y2a{bottom:290.626667pt;}
.ya2{bottom:299.426667pt;}
.yd0{bottom:300.386667pt;}
.yec{bottom:306.306667pt;}
.y29{bottom:306.626667pt;}
.ya1{bottom:315.586667pt;}
.ycf{bottom:316.386667pt;}
.y138{bottom:320.386667pt;}
.yeb{bottom:322.466667pt;}
.y28{bottom:322.786667pt;}
.y117{bottom:329.186667pt;}
.ya0{bottom:331.586667pt;}
.yce{bottom:332.546667pt;}
.y137{bottom:335.586667pt;}
.yea{bottom:338.626667pt;}
.y27{bottom:338.946667pt;}
.y7c{bottom:343.266667pt;}
.y9f{bottom:347.746667pt;}
.ycd{bottom:348.706667pt;}
.y136{bottom:350.946667pt;}
.ye8{bottom:351.106667pt;}
.y26{bottom:354.946667pt;}
.y9e{bottom:363.906667pt;}
.ycc{bottom:364.706667pt;}
.y25{bottom:371.106667pt;}
.y135{bottom:371.586667pt;}
.y9d{bottom:379.906667pt;}
.ycb{bottom:380.866667pt;}
.y24{bottom:387.266667pt;}
.y9c{bottom:396.066667pt;}
.yca{bottom:396.866667pt;}
.y134{bottom:402.946667pt;}
.y23{bottom:403.266667pt;}
.y9b{bottom:412.226667pt;}
.yc9{bottom:413.026667pt;}
.y133{bottom:418.306667pt;}
.y22{bottom:419.426667pt;}
.y9a{bottom:428.226667pt;}
.yc8{bottom:429.186667pt;}
.y132{bottom:433.666667pt;}
.y54{bottom:434.786667pt;}
.y21{bottom:435.426667pt;}
.y99{bottom:444.386667pt;}
.yc7{bottom:445.186667pt;}
.y131{bottom:449.026667pt;}
.y53{bottom:450.786667pt;}
.y20{bottom:451.586667pt;}
.y98{bottom:460.386667pt;}
.yc6{bottom:461.346667pt;}
.y130{bottom:464.226667pt;}
.y52{bottom:466.946667pt;}
.y1f{bottom:467.746667pt;}
.y116{bottom:472.066667pt;}
.y7b{bottom:472.546667pt;}
.ye6{bottom:476.386667pt;}
.y97{bottom:476.546667pt;}
.yc5{bottom:477.346667pt;}
.y12f{bottom:479.586667pt;}
.y51{bottom:482.946667pt;}
.y1e{bottom:483.746667pt;}
.y115{bottom:488.066667pt;}
.y7a{bottom:488.706667pt;}
.y96{bottom:492.706667pt;}
.yc4{bottom:493.506667pt;}
.y12e{bottom:494.946667pt;}
.y58{bottom:496.226667pt;}
.y50{bottom:499.106667pt;}
.y1d{bottom:499.906667pt;}
.y114{bottom:504.226667pt;}
.y79{bottom:504.866667pt;}
.y95{bottom:508.733333pt;}
.yc3{bottom:509.693333pt;}
.y12d{bottom:510.333333pt;}
.y4f{bottom:515.293333pt;}
.y1c{bottom:515.933333pt;}
.y113{bottom:520.413333pt;}
.y78{bottom:520.893333pt;}
.y94{bottom:524.893333pt;}
.yc2{bottom:525.693333pt;}
.y4e{bottom:531.293333pt;}
.y1b{bottom:532.093333pt;}
.y112{bottom:536.413333pt;}
.y77{bottom:537.053333pt;}
.y93{bottom:540.893333pt;}
.y12c{bottom:541.053333pt;}
.yc1{bottom:541.853333pt;}
.y4d{bottom:547.453333pt;}
.y111{bottom:552.573333pt;}
.y1a{bottom:552.733333pt;}
.y76{bottom:553.053333pt;}
.y12b{bottom:556.253333pt;}
.y92{bottom:557.053333pt;}
.yc0{bottom:558.013333pt;}
.y4c{bottom:563.613333pt;}
.y110{bottom:568.573333pt;}
.y75{bottom:569.213333pt;}
.y12a{bottom:571.613333pt;}
.y91{bottom:573.213333pt;}
.ybf{bottom:574.013333pt;}
.y4b{bottom:579.613333pt;}
.y19{bottom:583.773333pt;}
.y10f{bottom:584.733333pt;}
.y74{bottom:585.373333pt;}
.y129{bottom:586.973333pt;}
.y90{bottom:589.213333pt;}
.ybe{bottom:590.173333pt;}
.y4a{bottom:595.773333pt;}
.y18{bottom:597.693333pt;}
.y10e{bottom:600.893333pt;}
.y73{bottom:601.373333pt;}
.y128{bottom:602.333333pt;}
.y8f{bottom:605.373333pt;}
.ybd{bottom:606.173333pt;}
.ye5{bottom:606.813333pt;}
.y17{bottom:611.773333pt;}
.y10d{bottom:616.893333pt;}
.y72{bottom:617.533333pt;}
.y127{bottom:617.693333pt;}
.y8e{bottom:621.533333pt;}
.ybc{bottom:622.333333pt;}
.ye4{bottom:622.973333pt;}
.y49{bottom:625.053333pt;}
.y16{bottom:626.813333pt;}
.y10c{bottom:633.053333pt;}
.y71{bottom:633.693333pt;}
.y8d{bottom:637.533333pt;}
.y126{bottom:638.333333pt;}
.ybb{bottom:638.493333pt;}
.ye3{bottom:639.133333pt;}
.y15{bottom:640.573333pt;}
.y47{bottom:641.053333pt;}
.y10b{bottom:649.213333pt;}
.y70{bottom:649.693333pt;}
.y8c{bottom:653.693333pt;}
.y14{bottom:654.333333pt;}
.yba{bottom:654.493333pt;}
.ye2{bottom:655.133333pt;}
.y10a{bottom:665.213333pt;}
.y6f{bottom:665.853333pt;}
.y13{bottom:668.093333pt;}
.y8b{bottom:669.693333pt;}
.y125{bottom:670.333333pt;}
.yb9{bottom:670.653333pt;}
.ye1{bottom:671.293333pt;}
.y46{bottom:672.253333pt;}
.y109{bottom:681.373333pt;}
.y6e{bottom:681.853333pt;}
.y12{bottom:682.013333pt;}
.y8a{bottom:685.853333pt;}
.y124{bottom:686.493333pt;}
.yb8{bottom:686.653333pt;}
.ye0{bottom:687.293333pt;}
.y45{bottom:688.253333pt;}
.y11{bottom:695.773333pt;}
.y108{bottom:697.373333pt;}
.y6d{bottom:698.013333pt;}
.y123{bottom:702.653333pt;}
.yb7{bottom:702.813333pt;}
.ydf{bottom:703.453333pt;}
.y43{bottom:704.253333pt;}
.y89{bottom:706.493333pt;}
.y10{bottom:709.533333pt;}
.y6c{bottom:714.173333pt;}
.y107{bottom:718.173333pt;}
.y122{bottom:718.653333pt;}
.yb6{bottom:718.973333pt;}
.yde{bottom:719.613333pt;}
.yf{bottom:723.293333pt;}
.y6b{bottom:730.213333pt;}
.y121{bottom:734.853333pt;}
.yb5{bottom:735.013333pt;}
.y42{bottom:735.653333pt;}
.ye{bottom:737.253333pt;}
.y88{bottom:739.333333pt;}
.y6a{bottom:746.373333pt;}
.y106{bottom:750.853333pt;}
.yd{bottom:751.013333pt;}
.yb4{bottom:751.173333pt;}
.y41{bottom:751.653333pt;}
.y87{bottom:755.493333pt;}
.ydd{bottom:756.453333pt;}
.y69{bottom:762.373333pt;}
.yc{bottom:764.773333pt;}
.y105{bottom:767.013333pt;}
.yb3{bottom:767.333333pt;}
.y40{bottom:767.653333pt;}
.y86{bottom:771.493333pt;}
.y157{bottom:776.133333pt;}
.yb{bottom:778.533333pt;}
.yb0{bottom:779.813333pt;}
.y104{bottom:783.173333pt;}
.y3e{bottom:783.653333pt;}
.y85{bottom:784.773333pt;}
.ydc{bottom:789.093333pt;}
.ya{bottom:792.453333pt;}
.y68{bottom:794.693333pt;}
.y103{bottom:799.173333pt;}
.y3d{bottom:803.333333pt;}
.ydb{bottom:805.253333pt;}
.y9{bottom:806.213333pt;}
.y156{bottom:807.013333pt;}
.y67{bottom:810.693333pt;}
.y102{bottom:815.333333pt;}
.yd9{bottom:817.733333pt;}
.y3c{bottom:819.333333pt;}
.y8{bottom:819.973333pt;}
.y66{bottom:826.853333pt;}
.y101{bottom:831.333333pt;}
.y155{bottom:831.493333pt;}
.y3b{bottom:835.493333pt;}
.y7{bottom:835.973333pt;}
.y65{bottom:843.013333pt;}
.y154{bottom:843.813333pt;}
.y100{bottom:847.493333pt;}
.y153{bottom:856.133333pt;}
.y64{bottom:859.013333pt;}
.yff{bottom:863.653333pt;}
.y152{bottom:868.293333pt;}
.y6{bottom:872.453333pt;}
.y63{bottom:875.173333pt;}
.yfe{bottom:879.653333pt;}
.y151{bottom:880.613333pt;}
.y5{bottom:889.413333pt;}
.y62{bottom:891.173333pt;}
.y150{bottom:892.933333pt;}
.yfd{bottom:895.813333pt;}
.y14f{bottom:905.093333pt;}
.y61{bottom:907.333333pt;}
.y4{bottom:911.813333pt;}
.yfc{bottom:911.973333pt;}
.y14e{bottom:917.413333pt;}
.y60{bottom:923.493333pt;}
.yfb{bottom:927.973333pt;}
.y14d{bottom:929.733333pt;}
.y5f{bottom:939.493333pt;}
.y14c{bottom:941.893333pt;}
.yd8{bottom:944.133333pt;}
.y3{bottom:950.373333pt;}
.y14b{bottom:954.240000pt;}
.y5e{bottom:955.680000pt;}
.yd7{bottom:960.160000pt;}
.y14a{bottom:966.560000pt;}
.y5d{bottom:976.320000pt;}
.y149{bottom:978.720000pt;}
.y2{bottom:999.360000pt;}
.y1{bottom:1014.720000pt;}
.y5b{bottom:1036.000000pt;}
.y5a{bottom:1049.333333pt;}
.hb{height:15.200000pt;}
.h8{height:15.360000pt;}
.ha{height:30.560000pt;}
.h9{height:30.752000pt;}
.h1b{height:31.343437pt;}
.h4{height:33.328125pt;}
.he{height:33.375000pt;}
.h5{height:33.867188pt;}
.h6{height:34.781250pt;}
.h1c{height:36.883125pt;}
.h11{height:37.479688pt;}
.h7{height:38.441250pt;}
.h1a{height:38.828437pt;}
.h1{height:47.621250pt;}
.hc{height:48.352000pt;}
.h12{height:49.542500pt;}
.h3{height:52.785000pt;}
.h2{height:114.750000pt;}
.h15{height:122.720000pt;}
.h17{height:125.280000pt;}
.hf{height:125.760000pt;}
.h16{height:126.912000pt;}
.h10{height:130.912000pt;}
.h18{height:139.200000pt;}
.h19{height:145.306667pt;}
.h14{height:164.800000pt;}
.h13{height:208.986667pt;}
.hd{height:231.795000pt;}
.h0{height:1056.000000pt;}
.w5{width:37.952000pt;}
.w4{width:61.440000pt;}
.w3{width:115.552000pt;}
.w9{width:124.992000pt;}
.w7{width:139.546667pt;}
.we{width:154.400000pt;}
.w2{width:156.506667pt;}
.wb{width:161.466667pt;}
.wf{width:162.746667pt;}
.w10{width:172.666667pt;}
.wc{width:174.586667pt;}
.wd{width:181.666667pt;}
.w8{width:196.506667pt;}
.wa{width:198.106667pt;}
.w6{width:336.066667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:1.920000pt;}
.xe{left:6.880000pt;}
.x15{left:60.480000pt;}
.x2{left:62.399988pt;}
.x23{left:71.840000pt;}
.x7{left:75.839988pt;}
.x38{left:80.479988pt;}
.x9{left:98.431988pt;}
.x5{left:99.551988pt;}
.x24{left:117.786667pt;}
.x3{left:127.551988pt;}
.x30{left:137.946655pt;}
.x20{left:139.226667pt;}
.x19{left:142.266655pt;}
.x2d{left:151.680000pt;}
.x17{left:154.666667pt;}
.x2f{left:156.480000pt;}
.x32{left:159.400000pt;}
.x27{left:163.546667pt;}
.x2e{left:169.146667pt;}
.x4{left:172.506655pt;}
.x8{left:174.746655pt;}
.x29{left:179.560000pt;}
.x2b{left:183.586667pt;}
.x26{left:193.160000pt;}
.x25{left:196.826667pt;}
.x22{left:199.240000pt;}
.x21{left:201.946667pt;}
.x31{left:225.146667pt;}
.x1b{left:237.146655pt;}
.x6{left:239.546655pt;}
.x18{left:248.000000pt;}
.x1a{left:329.186667pt;}
.x1d{left:412.706655pt;}
.xd{left:418.306667pt;}
.x1e{left:425.346655pt;}
.x34{left:427.293321pt;}
.x14{left:431.133321pt;}
.x12{left:433.693321pt;}
.x37{left:435.773321pt;}
.x13{left:451.933321pt;}
.x33{left:490.493321pt;}
.x2a{left:529.693321pt;}
.x35{left:531.293321pt;}
.xb{left:532.573321pt;}
.x36{left:551.293321pt;}
.x1f{left:565.053321pt;}
.xa{left:566.973321pt;}
.xf{left:575.453333pt;}
.x28{left:579.133333pt;}
.xc{left:592.413321pt;}
.x2c{left:599.333333pt;}
.x10{left:691.653333pt;}
.x11{left:734.533321pt;}
.x1c{left:741.893321pt;}
.x1{left:747.013321pt;}
}




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