
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_eb0d0ce459a9703c2075a3fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_18cd4f5d67b3d76d2bb95e69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_093d8a215db5cac95b234619.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c71dbefa841052f564237b44.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_79cbea3618175dce0d50ccf9.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_681537d949c03fe8fd1e7d26.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2507da8e038cad1c83d0baae.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_389b166a5db92450a2bd72d1.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3bcbda77e58bf010e5df7dde.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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v4{vertical-align:-94.920000px;}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.lsb{letter-spacing:-1.176000px;}
.ls9{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.567600px;}
.ls7{letter-spacing:-0.457800px;}
.ls5{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.315600px;}
.ls8{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.274800px;}
.ls1e{letter-spacing:-0.262200px;}
.ls1d{letter-spacing:-0.109200px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.109200px;}
.ls14{letter-spacing:0.152400px;}
.ls12{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.262200px;}
.ls15{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.720000px;}
.ls10{letter-spacing:2.880000px;}
.ls1a{letter-spacing:3.600000px;}
.ls1b{letter-spacing:5.040000px;}
.ls17{letter-spacing:6.480000px;}
.ls20{letter-spacing:6.785280px;}
.ls18{letter-spacing:7.920000px;}
.ls19{letter-spacing:12.240000px;}
.ls13{letter-spacing:15.840000px;}
.ls1c{letter-spacing:39.600000px;}
.ls1f{letter-spacing:39.905280px;}
.ls11{letter-spacing:59.345280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.wsd{word-spacing:-66.240000px;}
.ws1{word-spacing:-59.760000px;}
.ws1b{word-spacing:-28.987200px;}
.wsb{word-spacing:-28.712400px;}
.ws14{word-spacing:-20.056032px;}
.ws12{word-spacing:-20.016000px;}
.ws3{word-spacing:-18.000000px;}
.ws10{word-spacing:-16.865400px;}
.ws18{word-spacing:-16.712400px;}
.ws7{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.ws19{word-spacing:-16.450800px;}
.ws1a{word-spacing:-16.297800px;}
.ws5{word-spacing:-16.254600px;}
.ws17{word-spacing:-16.102200px;}
.ws11{word-spacing:-15.948000px;}
.wsf{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.ws0{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.939200px;}
.ws9{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.wsc{word-spacing:-10.124400px;}
.ws8{word-spacing:0.000000px;}
.ws15{word-spacing:108.432000px;}
.ws16{word-spacing:108.972000px;}
.ws13{word-spacing:759.456000px;}
._9{margin-left:-7.197120px;}
._7{margin-left:-5.449680px;}
._5{margin-left:-3.908160px;}
._8{margin-left:-2.081040px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._c{width:2.718720px;}
._d{width:3.794880px;}
._4{width:4.832640px;}
._3{width:6.099840px;}
._6{width:7.750080px;}
._26{width:9.036480px;}
._16{width:10.134720px;}
._b{width:12.034560px;}
._a{width:13.726080px;}
._e{width:15.021120px;}
._2a{width:16.137120px;}
._18{width:17.686080px;}
._17{width:18.946320px;}
._14{width:20.865600px;}
._15{width:22.284240px;}
._27{width:23.940240px;}
._1a{width:25.104960px;}
._10{width:26.619600px;}
._f{width:27.820800px;}
._2d{width:28.938000px;}
._2e{width:30.130320px;}
._31{width:31.213440px;}
._36{width:32.376960px;}
._25{width:33.649920px;}
._19{width:34.776000px;}
._1f{width:36.763200px;}
._12{width:38.154240px;}
._13{width:39.172080px;}
._1d{width:40.803840px;}
._1c{width:42.421200px;}
._1e{width:43.878480px;}
._24{width:44.904000px;}
._22{width:46.036800px;}
._23{width:47.389200px;}
._2f{width:49.150080px;}
._1b{width:50.541120px;}
._32{width:51.546720px;}
._20{width:52.660800px;}
._42{width:53.663280px;}
._41{width:55.036560px;}
._28{width:56.933520px;}
._29{width:58.318800px;}
._4c{width:64.962000px;}
._11{width:66.240000px;}
._2c{width:68.521920px;}
._2b{width:69.712080px;}
._30{width:71.023680px;}
._47{width:74.784960px;}
._48{width:76.336080px;}
._37{width:77.633280px;}
._4b{width:79.242960px;}
._35{width:80.680320px;}
._34{width:82.421280px;}
._49{width:89.622720px;}
._4a{width:90.724560px;}
._21{width:92.753280px;}
._44{width:97.836480px;}
._45{width:99.360000px;}
._46{width:115.218960px;}
._3a{width:129.660000px;}
._33{width:386.696400px;}
._40{width:586.440000px;}
._3f{width:598.524000px;}
._39{width:600.240000px;}
._38{width:612.204000px;}
._3e{width:619.800000px;}
._3c{width:621.120000px;}
._3d{width:631.824000px;}
._3b{width:633.144000px;}
._2{width:961.680000px;}
._43{width:1061.664000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc9{color:rgb(33,33,33);}
.fc8{color:rgb(27,27,27);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:72.144000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.yb3{bottom:12.240000px;}
.yb6{bottom:12.270000px;}
.y98{bottom:12.420000px;}
.ya2{bottom:12.465000px;}
.y10d{bottom:13.494000px;}
.y109{bottom:13.500000px;}
.y13d{bottom:13.530000px;}
.y102{bottom:17.385000px;}
.yec{bottom:17.490000px;}
.y166{bottom:17.535000px;}
.ya{bottom:20.880000px;}
.yb1{bottom:23.580000px;}
.y10e{bottom:28.260000px;}
.y37{bottom:30.600000px;}
.yae{bottom:34.014000px;}
.y9d{bottom:34.020000px;}
.yaf{bottom:34.740000px;}
.yb2{bottom:36.540000px;}
.y97{bottom:38.340000px;}
.ya7{bottom:40.500000px;}
.y10b{bottom:42.834000px;}
.y36{bottom:46.980000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.yb0{bottom:49.494000px;}
.y100{bottom:51.120000px;}
.y139{bottom:51.150000px;}
.yea{bottom:51.225000px;}
.y164{bottom:51.300000px;}
.y6{bottom:51.660000px;}
.ya8{bottom:52.380000px;}
.y7{bottom:53.280000px;}
.y141{bottom:57.240000px;}
.yac{bottom:60.654000px;}
.y35{bottom:63.000000px;}
.y9e{bottom:63.225000px;}
.ya6{bottom:66.420000px;}
.y5{bottom:68.976000px;}
.yfa{bottom:72.570000px;}
.y12f{bottom:72.615000px;}
.ye5{bottom:72.690000px;}
.y15c{bottom:72.720000px;}
.y34{bottom:79.056000px;}
.y9f{bottom:88.245000px;}
.ya4{bottom:92.340000px;}
.y30{bottom:97.596000px;}
.y8d{bottom:99.216000px;}
.y13f{bottom:101.160000px;}
.y130{bottom:104.685000px;}
.y152{bottom:104.976000px;}
.y69{bottom:105.156000px;}
.yab{bottom:106.776000px;}
.y168{bottom:109.476000px;}
.y5e{bottom:109.836000px;}
.y9b{bottom:113.985000px;}
.y10a{bottom:116.676000px;}
.y13a{bottom:117.750000px;}
.y11b{bottom:119.445000px;}
.y15d{bottom:122.430000px;}
.yfb{bottom:125.250000px;}
.y159{bottom:125.565000px;}
.y2f{bottom:126.036000px;}
.y8c{bottom:127.656000px;}
.y15b{bottom:131.835000px;}
.yad{bottom:133.416000px;}
.y68{bottom:133.776000px;}
.y131{bottom:136.770000px;}
.y5c{bottom:138.456000px;}
.ye6{bottom:140.790000px;}
.y10c{bottom:146.016000px;}
.y101{bottom:148.500000px;}
.y122{bottom:149.610000px;}
.y157{bottom:152.025000px;}
.y2e{bottom:154.470000px;}
.y8b{bottom:156.090000px;}
.y150{bottom:162.030000px;}
.y67{bottom:163.290000px;}
.y165{bottom:163.620000px;}
.yf9{bottom:165.855000px;}
.y11c{bottom:166.215000px;}
.y5b{bottom:166.890000px;}
.y132{bottom:168.870000px;}
.yf3{bottom:168.990000px;}
.y155{bottom:169.530000px;}
.y15e{bottom:172.155000px;}
.yf0{bottom:174.270000px;}
.y108{bottom:175.170000px;}
.yfc{bottom:177.945000px;}
.yf6{bottom:178.485000px;}
.ya3{bottom:181.650000px;}
.y2d{bottom:182.910000px;}
.y8a{bottom:184.710000px;}
.y14f{bottom:190.470000px;}
.y66{bottom:191.730000px;}
.yeb{bottom:193.065000px;}
.y5a{bottom:195.330000px;}
.y133{bottom:200.955000px;}
.yaa{bottom:208.290000px;}
.ye7{bottom:208.905000px;}
.y2c{bottom:211.350000px;}
.y11d{bottom:212.970000px;}
.y89{bottom:213.150000px;}
.y107{bottom:217.830000px;}
.y14e{bottom:218.910000px;}
.ye4{bottom:219.390000px;}
.y65{bottom:220.350000px;}
.y15f{bottom:221.865000px;}
.y59{bottom:223.770000px;}
.yf8{bottom:223.815000px;}
.yd4{bottom:226.650000px;}
.yfd{bottom:230.655000px;}
.y134{bottom:233.070000px;}
.ya9{bottom:234.930000px;}
.yf5{bottom:235.410000px;}
.yf2{bottom:239.610000px;}
.y2b{bottom:239.790000px;}
.ye1{bottom:241.170000px;}
.y88{bottom:241.590000px;}
.yde{bottom:243.540000px;}
.y106{bottom:246.270000px;}
.y14d{bottom:247.350000px;}
.y64{bottom:249.870000px;}
.y11a{bottom:250.845000px;}
.y167{bottom:251.850000px;}
.y58{bottom:252.210000px;}
.y112{bottom:254.595000px;}
.yd3{bottom:255.090000px;}
.y115{bottom:255.990000px;}
.yef{bottom:259.635000px;}
.y11e{bottom:259.740000px;}
.yd8{bottom:259.770000px;}
.ydb{bottom:260.250000px;}
.ya5{bottom:261.570000px;}
.y118{bottom:262.515000px;}
.ye3{bottom:264.525000px;}
.y135{bottom:265.140000px;}
.y12e{bottom:266.400000px;}
.y12c{bottom:267.375000px;}
.y2a{bottom:268.230000px;}
.y129{bottom:268.635000px;}
.y87{bottom:270.030000px;}
.y105{bottom:270.930000px;}
.y160{bottom:271.590000px;}
.y123{bottom:273.060000px;}
.y126{bottom:275.070000px;}
.y14c{bottom:275.790000px;}
.ye8{bottom:276.990000px;}
.y63{bottom:278.490000px;}
.y8e{bottom:280.290000px;}
.y57{bottom:280.650000px;}
.yfe{bottom:283.350000px;}
.yd2{bottom:283.530000px;}
.yd7{bottom:284.430000px;}
.ydd{bottom:284.760000px;}
.yed{bottom:284.940000px;}
.y9a{bottom:288.210000px;}
.y15a{bottom:288.825000px;}
.ye0{bottom:289.440000px;}
.y29{bottom:296.850000px;}
.y136{bottom:297.210000px;}
.y86{bottom:298.470000px;}
.y128{bottom:300.090000px;}
.y12b{bottom:301.350000px;}
.y125{bottom:302.655000px;}
.y14b{bottom:304.230000px;}
.y111{bottom:304.635000px;}
.y158{bottom:305.025000px;}
.y11f{bottom:306.510000px;}
.y114{bottom:306.975000px;}
.y62{bottom:308.010000px;}
.y56{bottom:309.090000px;}
.yd1{bottom:311.970000px;}
.yee{bottom:312.330000px;}
.y117{bottom:314.430000px;}
.ya1{bottom:314.850000px;}
.yf4{bottom:315.465000px;}
.y161{bottom:321.300000px;}
.y28{bottom:325.335000px;}
.yf7{bottom:326.010000px;}
.y85{bottom:326.955000px;}
.y12a{bottom:328.650000px;}
.y154{bottom:328.785000px;}
.y137{bottom:329.325000px;}
.y124{bottom:330.915000px;}
.y14a{bottom:332.715000px;}
.y12d{bottom:332.820000px;}
.y127{bottom:333.465000px;}
.yf1{bottom:334.440000px;}
.yff{bottom:336.030000px;}
.y61{bottom:337.215000px;}
.y55{bottom:337.575000px;}
.ydf{bottom:338.070000px;}
.yd0{bottom:340.635000px;}
.ya0{bottom:341.535000px;}
.yda{bottom:345.090000px;}
.y110{bottom:348.585000px;}
.y120{bottom:353.310000px;}
.y27{bottom:353.775000px;}
.y113{bottom:354.675000px;}
.y119{bottom:355.140000px;}
.y84{bottom:355.395000px;}
.y116{bottom:357.015000px;}
.y151{bottom:360.795000px;}
.y149{bottom:361.155000px;}
.y138{bottom:361.410000px;}
.ydc{bottom:362.595000px;}
.y54{bottom:366.015000px;}
.ye2{bottom:367.275000px;}
.y9c{bottom:368.175000px;}
.ycf{bottom:369.075000px;}
.y162{bottom:371.010000px;}
.y26{bottom:382.215000px;}
.y83{bottom:383.835000px;}
.y148{bottom:389.595000px;}
.y156{bottom:394.020000px;}
.y53{bottom:394.635000px;}
.yce{bottom:397.515000px;}
.y121{bottom:400.065000px;}
.y25{bottom:410.655000px;}
.y82{bottom:412.275000px;}
.ye9{bottom:413.205000px;}
.y99{bottom:416.415000px;}
.y147{bottom:418.215000px;}
.y163{bottom:420.735000px;}
.y52{bottom:423.075000px;}
.ycd{bottom:425.955000px;}
.y24{bottom:439.095000px;}
.y81{bottom:440.895000px;}
.y96{bottom:443.055000px;}
.y146{bottom:446.655000px;}
.y16a{bottom:451.155000px;}
.y51{bottom:451.515000px;}
.ycc{bottom:454.395000px;}
.y23{bottom:467.535000px;}
.y80{bottom:469.335000px;}
.y145{bottom:471.135000px;}
.y153{bottom:472.500000px;}
.y50{bottom:479.955000px;}
.ycb{bottom:482.835000px;}
.y22{bottom:495.615000px;}
.y31{bottom:495.975000px;}
.y7f{bottom:497.775000px;}
.y4f{bottom:508.395000px;}
.y95{bottom:509.115000px;}
.yca{bottom:511.275000px;}
.y7e{bottom:526.215000px;}
.y21{bottom:528.195000px;}
.y4e{bottom:536.835000px;}
.y94{bottom:537.195000px;}
.yc9{bottom:539.715000px;}
.y7d{bottom:554.655000px;}
.y20{bottom:556.635000px;}
.y4d{bottom:565.275000px;}
.y90{bottom:565.635000px;}
.yc8{bottom:568.185000px;}
.y7c{bottom:583.125000px;}
.y1f{bottom:585.105000px;}
.y8f{bottom:590.685000px;}
.y4c{bottom:593.745000px;}
.yc7{bottom:596.805000px;}
.y7b{bottom:611.565000px;}
.y1e{bottom:613.725000px;}
.y4b{bottom:622.185000px;}
.yc6{bottom:625.245000px;}
.y7a{bottom:640.005000px;}
.y1d{bottom:642.165000px;}
.y4a{bottom:650.805000px;}
.yc5{bottom:653.685000px;}
.yd6{bottom:657.825000px;}
.y79{bottom:668.445000px;}
.y1c{bottom:670.605000px;}
.y104{bottom:671.325000px;}
.y169{bottom:678.885000px;}
.y49{bottom:679.245000px;}
.yc4{bottom:682.125000px;}
.yd5{bottom:682.305000px;}
.yd9{bottom:684.540000px;}
.y103{bottom:695.805000px;}
.y78{bottom:696.705000px;}
.y10f{bottom:697.680000px;}
.y1b{bottom:699.045000px;}
.y48{bottom:707.325000px;}
.y5d{bottom:707.685000px;}
.yc3{bottom:710.565000px;}
.y77{bottom:725.505000px;}
.y1a{bottom:727.485000px;}
.y47{bottom:736.125000px;}
.yc2{bottom:739.005000px;}
.y76{bottom:753.945000px;}
.y19{bottom:755.925000px;}
.y46{bottom:764.565000px;}
.yc1{bottom:767.445000px;}
.y75{bottom:783.645000px;}
.y18{bottom:784.365000px;}
.y45{bottom:793.005000px;}
.yc0{bottom:795.885000px;}
.y17{bottom:812.805000px;}
.y74{bottom:813.345000px;}
.y93{bottom:821.130000px;}
.y44{bottom:821.490000px;}
.ybf{bottom:824.370000px;}
.y73{bottom:842.910000px;}
.y16{bottom:847.230000px;}
.y43{bottom:849.930000px;}
.ybe{bottom:852.990000px;}
.y15{bottom:869.910000px;}
.y72{bottom:872.610000px;}
.y42{bottom:878.370000px;}
.ybd{bottom:881.430000px;}
.y71{bottom:902.130000px;}
.y14{bottom:904.290000px;}
.y41{bottom:906.990000px;}
.ybc{bottom:909.870000px;}
.y13{bottom:926.790000px;}
.y144{bottom:930.210000px;}
.y70{bottom:930.750000px;}
.y40{bottom:935.430000px;}
.ybb{bottom:938.310000px;}
.y13e{bottom:945.870000px;}
.y6f{bottom:959.910000px;}
.y12{bottom:961.170000px;}
.y3f{bottom:963.870000px;}
.yba{bottom:966.750000px;}
.y143{bottom:975.030000px;}
.y11{bottom:983.310000px;}
.y6e{bottom:988.710000px;}
.y3e{bottom:992.310000px;}
.yb9{bottom:995.190000px;}
.y142{bottom:1004.190000px;}
.y10{bottom:1011.750000px;}
.y6d{bottom:1017.330000px;}
.y60{bottom:1020.390000px;}
.y3d{bottom:1020.750000px;}
.yb8{bottom:1023.630000px;}
.y4{bottom:1032.810000px;}
.y140{bottom:1033.530000px;}
.y6c{bottom:1046.850000px;}
.y5f{bottom:1048.830000px;}
.y3c{bottom:1049.190000px;}
.yb7{bottom:1052.070000px;}
.y3{bottom:1052.790000px;}
.y13c{bottom:1062.690000px;}
.yb5{bottom:1067.910000px;}
.y2{bottom:1072.620000px;}
.y6b{bottom:1075.500000px;}
.y92{bottom:1077.300000px;}
.y3b{bottom:1077.660000px;}
.y13b{bottom:1091.880000px;}
.yb4{bottom:1094.400000px;}
.y6a{bottom:1105.020000px;}
.y91{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h1c{height:25.740000px;}
.h1d{height:25.776000px;}
.h16{height:25.920000px;}
.h19{height:25.956000px;}
.h22{height:28.440000px;}
.h26{height:28.476000px;}
.hc{height:29.158594px;}
.h6{height:33.480000px;}
.h12{height:46.251562px;}
.ha{height:46.736719px;}
.h18{height:47.520000px;}
.h1{height:48.045938px;}
.h14{height:51.840000px;}
.he{height:52.971680px;}
.hd{height:53.709961px;}
.h7{height:54.421875px;}
.h23{height:57.780000px;}
.h2{height:58.621992px;}
.h15{height:58.651172px;}
.h11{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.hb{height:66.757500px;}
.h13{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h1b{height:74.160000px;}
.h1f{height:75.093750px;}
.h20{height:75.243937px;}
.h1a{height:105.840000px;}
.h29{height:111.043849px;}
.h10{height:111.043854px;}
.h27{height:116.100000px;}
.h17{height:127.476000px;}
.h4{height:167.250000px;}
.hf{height:268.635000px;}
.h21{height:359.460000px;}
.h25{height:384.840000px;}
.h24{height:423.360000px;}
.h1e{height:436.500000px;}
.h28{height:444.060000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.wf{width:59.940000px;}
.w15{width:66.780000px;}
.w13{width:66.816000px;}
.w11{width:73.440000px;}
.w14{width:80.280000px;}
.we{width:80.316000px;}
.w12{width:86.940000px;}
.w10{width:86.976000px;}
.w8{width:93.816000px;}
.w9{width:107.280000px;}
.wa{width:140.976000px;}
.wd{width:147.780000px;}
.wc{width:154.470000px;}
.w18{width:159.870000px;}
.wb{width:161.130000px;}
.w1a{width:202.170000px;}
.w19{width:216.390000px;}
.w3{width:361.335000px;}
.w1b{width:790.560000px;}
.w16{width:801.000000px;}
.w1c{width:805.680000px;}
.w17{width:806.580000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x28{left:35.676000px;}
.x26{left:43.992000px;}
.x2{left:53.999986px;}
.x34{left:59.004000px;}
.x38{left:61.200000px;}
.xd{left:80.999986px;}
.x3b{left:105.195000px;}
.x2a{left:120.315000px;}
.x1{left:122.435986px;}
.x1b{left:129.165000px;}
.x6{left:130.860000px;}
.x10{left:148.896000px;}
.x46{left:149.940000px;}
.x52{left:160.095000px;}
.x2d{left:163.080000px;}
.x35{left:165.090000px;}
.x49{left:169.530000px;}
.x1d{left:171.000000px;}
.x27{left:172.515000px;}
.x40{left:190.620000px;}
.x2f{left:205.845000px;}
.x4c{left:210.750000px;}
.x20{left:212.835000px;}
.x47{left:216.720000px;}
.x29{left:221.910000px;}
.x36{left:224.715000px;}
.x43{left:233.355000px;}
.x58{left:238.710000px;}
.x32{left:248.655000px;}
.x4f{left:251.925000px;}
.x23{left:254.670000px;}
.x11{left:256.890000px;}
.x55{left:284.070000px;}
.x15{left:337.935000px;}
.x3c{left:340.170000px;}
.x56{left:346.350000px;}
.x2b{left:355.575000px;}
.x1c{left:359.250000px;}
.x3e{left:382.860000px;}
.x4a{left:396.150000px;}
.x12{left:398.775000px;}
.x1e{left:401.040000px;}
.x41{left:425.595000px;}
.xe{left:435.854986px;}
.x4d{left:437.370000px;}
.x39{left:438.915000px;}
.x30{left:441.150000px;}
.x21{left:442.875000px;}
.x44{left:468.330000px;}
.x50{left:478.545000px;}
.x8{left:482.144986px;}
.x24{left:484.710000px;}
.x16{left:486.465000px;}
.x53{left:507.030000px;}
.xc{left:509.144986px;}
.x5{left:521.025000px;}
.x13{left:560.805000px;}
.x54{left:569.265000px;}
.x3d{left:575.130000px;}
.x48{left:581.580000px;}
.x2c{left:590.865000px;}
.x3f{left:617.835000px;}
.x4b{left:622.770000px;}
.x1f{left:631.110000px;}
.x2e{left:633.630000px;}
.x17{left:648.465000px;}
.x3a{left:656.205000px;}
.x42{left:660.570000px;}
.x4e{left:663.990000px;}
.x22{left:672.945000px;}
.x31{left:676.440000px;}
.x57{left:693.795000px;}
.x45{left:703.290000px;}
.x51{left:705.165000px;}
.x25{left:714.780000px;}
.x14{left:716.010000px;}
.x33{left:719.205000px;}
.x18{left:797.010000px;}
.x37{left:846.149986px;}
.x19{left:857.309986px;}
.x1a{left:861.809986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v4{vertical-align:-84.373333pt;}
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.lsb{letter-spacing:-1.045333pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.504533pt;}
.ls7{letter-spacing:-0.406933pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.280533pt;}
.ls8{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.244267pt;}
.ls1e{letter-spacing:-0.233067pt;}
.ls1d{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.097067pt;}
.ls14{letter-spacing:0.135467pt;}
.ls12{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.233067pt;}
.ls15{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls10{letter-spacing:2.560000pt;}
.ls1a{letter-spacing:3.200000pt;}
.ls1b{letter-spacing:4.480000pt;}
.ls17{letter-spacing:5.760000pt;}
.ls20{letter-spacing:6.031360pt;}
.ls18{letter-spacing:7.040000pt;}
.ls19{letter-spacing:10.880000pt;}
.ls13{letter-spacing:14.080000pt;}
.ls1c{letter-spacing:35.200000pt;}
.ls1f{letter-spacing:35.471360pt;}
.ls11{letter-spacing:52.751360pt;}
.ls0{letter-spacing:184.370347pt;}
.wsd{word-spacing:-58.880000pt;}
.ws1{word-spacing:-53.120000pt;}
.ws1b{word-spacing:-25.766400pt;}
.wsb{word-spacing:-25.522133pt;}
.ws14{word-spacing:-17.827584pt;}
.ws12{word-spacing:-17.792000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws10{word-spacing:-14.991467pt;}
.ws18{word-spacing:-14.855467pt;}
.ws7{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.ws19{word-spacing:-14.622933pt;}
.ws1a{word-spacing:-14.486933pt;}
.ws5{word-spacing:-14.448533pt;}
.ws17{word-spacing:-14.313067pt;}
.ws11{word-spacing:-14.176000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.ws0{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.390400pt;}
.ws9{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.999467pt;}
.ws8{word-spacing:0.000000pt;}
.ws15{word-spacing:96.384000pt;}
.ws16{word-spacing:96.864000pt;}
.ws13{word-spacing:675.072000pt;}
._9{margin-left:-6.397440pt;}
._7{margin-left:-4.844160pt;}
._5{margin-left:-3.473920pt;}
._8{margin-left:-1.849813pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._c{width:2.416640pt;}
._d{width:3.373227pt;}
._4{width:4.295680pt;}
._3{width:5.422080pt;}
._6{width:6.888960pt;}
._26{width:8.032427pt;}
._16{width:9.008640pt;}
._b{width:10.697387pt;}
._a{width:12.200960pt;}
._e{width:13.352107pt;}
._2a{width:14.344107pt;}
._18{width:15.720960pt;}
._17{width:16.841173pt;}
._14{width:18.547200pt;}
._15{width:19.808213pt;}
._27{width:21.280213pt;}
._1a{width:22.315520pt;}
._10{width:23.661867pt;}
._f{width:24.729600pt;}
._2d{width:25.722667pt;}
._2e{width:26.782507pt;}
._31{width:27.745280pt;}
._36{width:28.779520pt;}
._25{width:29.911040pt;}
._19{width:30.912000pt;}
._1f{width:32.678400pt;}
._12{width:33.914880pt;}
._13{width:34.819627pt;}
._1d{width:36.270080pt;}
._1c{width:37.707733pt;}
._1e{width:39.003093pt;}
._24{width:39.914667pt;}
._22{width:40.921600pt;}
._23{width:42.123733pt;}
._2f{width:43.688960pt;}
._1b{width:44.925440pt;}
._32{width:45.819307pt;}
._20{width:46.809600pt;}
._42{width:47.700693pt;}
._41{width:48.921387pt;}
._28{width:50.607573pt;}
._29{width:51.838933pt;}
._4c{width:57.744000pt;}
._11{width:58.880000pt;}
._2c{width:60.908373pt;}
._2b{width:61.966293pt;}
._30{width:63.132160pt;}
._47{width:66.475520pt;}
._48{width:67.854293pt;}
._37{width:69.007360pt;}
._4b{width:70.438187pt;}
._35{width:71.715840pt;}
._34{width:73.263360pt;}
._49{width:79.664640pt;}
._4a{width:80.644053pt;}
._21{width:82.447360pt;}
._44{width:86.965760pt;}
._45{width:88.320000pt;}
._46{width:102.416853pt;}
._3a{width:115.253333pt;}
._33{width:343.730133pt;}
._40{width:521.280000pt;}
._3f{width:532.021333pt;}
._39{width:533.546667pt;}
._38{width:544.181333pt;}
._3e{width:550.933333pt;}
._3c{width:552.106667pt;}
._3d{width:561.621333pt;}
._3b{width:562.794667pt;}
._2{width:854.826667pt;}
._43{width:943.701333pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:64.128000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.yb3{bottom:10.880000pt;}
.yb6{bottom:10.906667pt;}
.y98{bottom:11.040000pt;}
.ya2{bottom:11.080000pt;}
.y10d{bottom:11.994667pt;}
.y109{bottom:12.000000pt;}
.y13d{bottom:12.026667pt;}
.y102{bottom:15.453333pt;}
.yec{bottom:15.546667pt;}
.y166{bottom:15.586667pt;}
.ya{bottom:18.560000pt;}
.yb1{bottom:20.960000pt;}
.y10e{bottom:25.120000pt;}
.y37{bottom:27.200000pt;}
.yae{bottom:30.234667pt;}
.y9d{bottom:30.240000pt;}
.yaf{bottom:30.880000pt;}
.yb2{bottom:32.480000pt;}
.y97{bottom:34.080000pt;}
.ya7{bottom:36.000000pt;}
.y10b{bottom:38.074667pt;}
.y36{bottom:41.760000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.yb0{bottom:43.994667pt;}
.y100{bottom:45.440000pt;}
.y139{bottom:45.466667pt;}
.yea{bottom:45.533333pt;}
.y164{bottom:45.600000pt;}
.y6{bottom:45.920000pt;}
.ya8{bottom:46.560000pt;}
.y7{bottom:47.360000pt;}
.y141{bottom:50.880000pt;}
.yac{bottom:53.914667pt;}
.y35{bottom:56.000000pt;}
.y9e{bottom:56.200000pt;}
.ya6{bottom:59.040000pt;}
.y5{bottom:61.312000pt;}
.yfa{bottom:64.506667pt;}
.y12f{bottom:64.546667pt;}
.ye5{bottom:64.613333pt;}
.y15c{bottom:64.640000pt;}
.y34{bottom:70.272000pt;}
.y9f{bottom:78.440000pt;}
.ya4{bottom:82.080000pt;}
.y30{bottom:86.752000pt;}
.y8d{bottom:88.192000pt;}
.y13f{bottom:89.920000pt;}
.y130{bottom:93.053333pt;}
.y152{bottom:93.312000pt;}
.y69{bottom:93.472000pt;}
.yab{bottom:94.912000pt;}
.y168{bottom:97.312000pt;}
.y5e{bottom:97.632000pt;}
.y9b{bottom:101.320000pt;}
.y10a{bottom:103.712000pt;}
.y13a{bottom:104.666667pt;}
.y11b{bottom:106.173333pt;}
.y15d{bottom:108.826667pt;}
.yfb{bottom:111.333333pt;}
.y159{bottom:111.613333pt;}
.y2f{bottom:112.032000pt;}
.y8c{bottom:113.472000pt;}
.y15b{bottom:117.186667pt;}
.yad{bottom:118.592000pt;}
.y68{bottom:118.912000pt;}
.y131{bottom:121.573333pt;}
.y5c{bottom:123.072000pt;}
.ye6{bottom:125.146667pt;}
.y10c{bottom:129.792000pt;}
.y101{bottom:132.000000pt;}
.y122{bottom:132.986667pt;}
.y157{bottom:135.133333pt;}
.y2e{bottom:137.306667pt;}
.y8b{bottom:138.746667pt;}
.y150{bottom:144.026667pt;}
.y67{bottom:145.146667pt;}
.y165{bottom:145.440000pt;}
.yf9{bottom:147.426667pt;}
.y11c{bottom:147.746667pt;}
.y5b{bottom:148.346667pt;}
.y132{bottom:150.106667pt;}
.yf3{bottom:150.213333pt;}
.y155{bottom:150.693333pt;}
.y15e{bottom:153.026667pt;}
.yf0{bottom:154.906667pt;}
.y108{bottom:155.706667pt;}
.yfc{bottom:158.173333pt;}
.yf6{bottom:158.653333pt;}
.ya3{bottom:161.466667pt;}
.y2d{bottom:162.586667pt;}
.y8a{bottom:164.186667pt;}
.y14f{bottom:169.306667pt;}
.y66{bottom:170.426667pt;}
.yeb{bottom:171.613333pt;}
.y5a{bottom:173.626667pt;}
.y133{bottom:178.626667pt;}
.yaa{bottom:185.146667pt;}
.ye7{bottom:185.693333pt;}
.y2c{bottom:187.866667pt;}
.y11d{bottom:189.306667pt;}
.y89{bottom:189.466667pt;}
.y107{bottom:193.626667pt;}
.y14e{bottom:194.586667pt;}
.ye4{bottom:195.013333pt;}
.y65{bottom:195.866667pt;}
.y15f{bottom:197.213333pt;}
.y59{bottom:198.906667pt;}
.yf8{bottom:198.946667pt;}
.yd4{bottom:201.466667pt;}
.yfd{bottom:205.026667pt;}
.y134{bottom:207.173333pt;}
.ya9{bottom:208.826667pt;}
.yf5{bottom:209.253333pt;}
.yf2{bottom:212.986667pt;}
.y2b{bottom:213.146667pt;}
.ye1{bottom:214.373333pt;}
.y88{bottom:214.746667pt;}
.yde{bottom:216.480000pt;}
.y106{bottom:218.906667pt;}
.y14d{bottom:219.866667pt;}
.y64{bottom:222.106667pt;}
.y11a{bottom:222.973333pt;}
.y167{bottom:223.866667pt;}
.y58{bottom:224.186667pt;}
.y112{bottom:226.306667pt;}
.yd3{bottom:226.746667pt;}
.y115{bottom:227.546667pt;}
.yef{bottom:230.786667pt;}
.y11e{bottom:230.880000pt;}
.yd8{bottom:230.906667pt;}
.ydb{bottom:231.333333pt;}
.ya5{bottom:232.506667pt;}
.y118{bottom:233.346667pt;}
.ye3{bottom:235.133333pt;}
.y135{bottom:235.680000pt;}
.y12e{bottom:236.800000pt;}
.y12c{bottom:237.666667pt;}
.y2a{bottom:238.426667pt;}
.y129{bottom:238.786667pt;}
.y87{bottom:240.026667pt;}
.y105{bottom:240.826667pt;}
.y160{bottom:241.413333pt;}
.y123{bottom:242.720000pt;}
.y126{bottom:244.506667pt;}
.y14c{bottom:245.146667pt;}
.ye8{bottom:246.213333pt;}
.y63{bottom:247.546667pt;}
.y8e{bottom:249.146667pt;}
.y57{bottom:249.466667pt;}
.yfe{bottom:251.866667pt;}
.yd2{bottom:252.026667pt;}
.yd7{bottom:252.826667pt;}
.ydd{bottom:253.120000pt;}
.yed{bottom:253.280000pt;}
.y9a{bottom:256.186667pt;}
.y15a{bottom:256.733333pt;}
.ye0{bottom:257.280000pt;}
.y29{bottom:263.866667pt;}
.y136{bottom:264.186667pt;}
.y86{bottom:265.306667pt;}
.y128{bottom:266.746667pt;}
.y12b{bottom:267.866667pt;}
.y125{bottom:269.026667pt;}
.y14b{bottom:270.426667pt;}
.y111{bottom:270.786667pt;}
.y158{bottom:271.133333pt;}
.y11f{bottom:272.453333pt;}
.y114{bottom:272.866667pt;}
.y62{bottom:273.786667pt;}
.y56{bottom:274.746667pt;}
.yd1{bottom:277.306667pt;}
.yee{bottom:277.626667pt;}
.y117{bottom:279.493333pt;}
.ya1{bottom:279.866667pt;}
.yf4{bottom:280.413333pt;}
.y161{bottom:285.600000pt;}
.y28{bottom:289.186667pt;}
.yf7{bottom:289.786667pt;}
.y85{bottom:290.626667pt;}
.y12a{bottom:292.133333pt;}
.y154{bottom:292.253333pt;}
.y137{bottom:292.733333pt;}
.y124{bottom:294.146667pt;}
.y14a{bottom:295.746667pt;}
.y12d{bottom:295.840000pt;}
.y127{bottom:296.413333pt;}
.yf1{bottom:297.280000pt;}
.yff{bottom:298.693333pt;}
.y61{bottom:299.746667pt;}
.y55{bottom:300.066667pt;}
.ydf{bottom:300.506667pt;}
.yd0{bottom:302.786667pt;}
.ya0{bottom:303.586667pt;}
.yda{bottom:306.746667pt;}
.y110{bottom:309.853333pt;}
.y120{bottom:314.053333pt;}
.y27{bottom:314.466667pt;}
.y113{bottom:315.266667pt;}
.y119{bottom:315.680000pt;}
.y84{bottom:315.906667pt;}
.y116{bottom:317.346667pt;}
.y151{bottom:320.706667pt;}
.y149{bottom:321.026667pt;}
.y138{bottom:321.253333pt;}
.ydc{bottom:322.306667pt;}
.y54{bottom:325.346667pt;}
.ye2{bottom:326.466667pt;}
.y9c{bottom:327.266667pt;}
.ycf{bottom:328.066667pt;}
.y162{bottom:329.786667pt;}
.y26{bottom:339.746667pt;}
.y83{bottom:341.186667pt;}
.y148{bottom:346.306667pt;}
.y156{bottom:350.240000pt;}
.y53{bottom:350.786667pt;}
.yce{bottom:353.346667pt;}
.y121{bottom:355.613333pt;}
.y25{bottom:365.026667pt;}
.y82{bottom:366.466667pt;}
.ye9{bottom:367.293333pt;}
.y99{bottom:370.146667pt;}
.y147{bottom:371.746667pt;}
.y163{bottom:373.986667pt;}
.y52{bottom:376.066667pt;}
.ycd{bottom:378.626667pt;}
.y24{bottom:390.306667pt;}
.y81{bottom:391.906667pt;}
.y96{bottom:393.826667pt;}
.y146{bottom:397.026667pt;}
.y16a{bottom:401.026667pt;}
.y51{bottom:401.346667pt;}
.ycc{bottom:403.906667pt;}
.y23{bottom:415.586667pt;}
.y80{bottom:417.186667pt;}
.y145{bottom:418.786667pt;}
.y153{bottom:420.000000pt;}
.y50{bottom:426.626667pt;}
.ycb{bottom:429.186667pt;}
.y22{bottom:440.546667pt;}
.y31{bottom:440.866667pt;}
.y7f{bottom:442.466667pt;}
.y4f{bottom:451.906667pt;}
.y95{bottom:452.546667pt;}
.yca{bottom:454.466667pt;}
.y7e{bottom:467.746667pt;}
.y21{bottom:469.506667pt;}
.y4e{bottom:477.186667pt;}
.y94{bottom:477.506667pt;}
.yc9{bottom:479.746667pt;}
.y7d{bottom:493.026667pt;}
.y20{bottom:494.786667pt;}
.y4d{bottom:502.466667pt;}
.y90{bottom:502.786667pt;}
.yc8{bottom:505.053333pt;}
.y7c{bottom:518.333333pt;}
.y1f{bottom:520.093333pt;}
.y8f{bottom:525.053333pt;}
.y4c{bottom:527.773333pt;}
.yc7{bottom:530.493333pt;}
.y7b{bottom:543.613333pt;}
.y1e{bottom:545.533333pt;}
.y4b{bottom:553.053333pt;}
.yc6{bottom:555.773333pt;}
.y7a{bottom:568.893333pt;}
.y1d{bottom:570.813333pt;}
.y4a{bottom:578.493333pt;}
.yc5{bottom:581.053333pt;}
.yd6{bottom:584.733333pt;}
.y79{bottom:594.173333pt;}
.y1c{bottom:596.093333pt;}
.y104{bottom:596.733333pt;}
.y169{bottom:603.453333pt;}
.y49{bottom:603.773333pt;}
.yc4{bottom:606.333333pt;}
.yd5{bottom:606.493333pt;}
.yd9{bottom:608.480000pt;}
.y103{bottom:618.493333pt;}
.y78{bottom:619.293333pt;}
.y10f{bottom:620.160000pt;}
.y1b{bottom:621.373333pt;}
.y48{bottom:628.733333pt;}
.y5d{bottom:629.053333pt;}
.yc3{bottom:631.613333pt;}
.y77{bottom:644.893333pt;}
.y1a{bottom:646.653333pt;}
.y47{bottom:654.333333pt;}
.yc2{bottom:656.893333pt;}
.y76{bottom:670.173333pt;}
.y19{bottom:671.933333pt;}
.y46{bottom:679.613333pt;}
.yc1{bottom:682.173333pt;}
.y75{bottom:696.573333pt;}
.y18{bottom:697.213333pt;}
.y45{bottom:704.893333pt;}
.yc0{bottom:707.453333pt;}
.y17{bottom:722.493333pt;}
.y74{bottom:722.973333pt;}
.y93{bottom:729.893333pt;}
.y44{bottom:730.213333pt;}
.ybf{bottom:732.773333pt;}
.y73{bottom:749.253333pt;}
.y16{bottom:753.093333pt;}
.y43{bottom:755.493333pt;}
.ybe{bottom:758.213333pt;}
.y15{bottom:773.253333pt;}
.y72{bottom:775.653333pt;}
.y42{bottom:780.773333pt;}
.ybd{bottom:783.493333pt;}
.y71{bottom:801.893333pt;}
.y14{bottom:803.813333pt;}
.y41{bottom:806.213333pt;}
.ybc{bottom:808.773333pt;}
.y13{bottom:823.813333pt;}
.y144{bottom:826.853333pt;}
.y70{bottom:827.333333pt;}
.y40{bottom:831.493333pt;}
.ybb{bottom:834.053333pt;}
.y13e{bottom:840.773333pt;}
.y6f{bottom:853.253333pt;}
.y12{bottom:854.373333pt;}
.y3f{bottom:856.773333pt;}
.yba{bottom:859.333333pt;}
.y143{bottom:866.693333pt;}
.y11{bottom:874.053333pt;}
.y6e{bottom:878.853333pt;}
.y3e{bottom:882.053333pt;}
.yb9{bottom:884.613333pt;}
.y142{bottom:892.613333pt;}
.y10{bottom:899.333333pt;}
.y6d{bottom:904.293333pt;}
.y60{bottom:907.013333pt;}
.y3d{bottom:907.333333pt;}
.yb8{bottom:909.893333pt;}
.y4{bottom:918.053333pt;}
.y140{bottom:918.693333pt;}
.y6c{bottom:930.533333pt;}
.y5f{bottom:932.293333pt;}
.y3c{bottom:932.613333pt;}
.yb7{bottom:935.173333pt;}
.y3{bottom:935.813333pt;}
.y13c{bottom:944.613333pt;}
.yb5{bottom:949.253333pt;}
.y2{bottom:953.440000pt;}
.y6b{bottom:956.000000pt;}
.y92{bottom:957.600000pt;}
.y3b{bottom:957.920000pt;}
.y13b{bottom:970.560000pt;}
.yb4{bottom:972.800000pt;}
.y6a{bottom:982.240000pt;}
.y91{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h1c{height:22.880000pt;}
.h1d{height:22.912000pt;}
.h16{height:23.040000pt;}
.h19{height:23.072000pt;}
.h22{height:25.280000pt;}
.h26{height:25.312000pt;}
.hc{height:25.918750pt;}
.h6{height:29.760000pt;}
.h12{height:41.112500pt;}
.ha{height:41.543750pt;}
.h18{height:42.240000pt;}
.h1{height:42.707500pt;}
.h14{height:46.080000pt;}
.he{height:47.085938pt;}
.hd{height:47.742188pt;}
.h7{height:48.375000pt;}
.h23{height:51.360000pt;}
.h2{height:52.108438pt;}
.h15{height:52.134375pt;}
.h11{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.hb{height:59.340000pt;}
.h13{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h1b{height:65.920000pt;}
.h1f{height:66.750000pt;}
.h20{height:66.883500pt;}
.h1a{height:94.080000pt;}
.h29{height:98.705643pt;}
.h10{height:98.705648pt;}
.h27{height:103.200000pt;}
.h17{height:113.312000pt;}
.h4{height:148.666667pt;}
.hf{height:238.786667pt;}
.h21{height:319.520000pt;}
.h25{height:342.080000pt;}
.h24{height:376.320000pt;}
.h1e{height:388.000000pt;}
.h28{height:394.720000pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.wf{width:53.280000pt;}
.w15{width:59.360000pt;}
.w13{width:59.392000pt;}
.w11{width:65.280000pt;}
.w14{width:71.360000pt;}
.we{width:71.392000pt;}
.w12{width:77.280000pt;}
.w10{width:77.312000pt;}
.w8{width:83.392000pt;}
.w9{width:95.360000pt;}
.wa{width:125.312000pt;}
.wd{width:131.360000pt;}
.wc{width:137.306667pt;}
.w18{width:142.106667pt;}
.wb{width:143.226667pt;}
.w1a{width:179.706667pt;}
.w19{width:192.346667pt;}
.w3{width:321.186667pt;}
.w1b{width:702.720000pt;}
.w16{width:712.000000pt;}
.w1c{width:716.160000pt;}
.w17{width:716.960000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x28{left:31.712000pt;}
.x26{left:39.104000pt;}
.x2{left:47.999988pt;}
.x34{left:52.448000pt;}
.x38{left:54.400000pt;}
.xd{left:71.999988pt;}
.x3b{left:93.506667pt;}
.x2a{left:106.946667pt;}
.x1{left:108.831988pt;}
.x1b{left:114.813333pt;}
.x6{left:116.320000pt;}
.x10{left:132.352000pt;}
.x46{left:133.280000pt;}
.x52{left:142.306667pt;}
.x2d{left:144.960000pt;}
.x35{left:146.746667pt;}
.x49{left:150.693333pt;}
.x1d{left:152.000000pt;}
.x27{left:153.346667pt;}
.x40{left:169.440000pt;}
.x2f{left:182.973333pt;}
.x4c{left:187.333333pt;}
.x20{left:189.186667pt;}
.x47{left:192.640000pt;}
.x29{left:197.253333pt;}
.x36{left:199.746667pt;}
.x43{left:207.426667pt;}
.x58{left:212.186667pt;}
.x32{left:221.026667pt;}
.x4f{left:223.933333pt;}
.x23{left:226.373333pt;}
.x11{left:228.346667pt;}
.x55{left:252.506667pt;}
.x15{left:300.386667pt;}
.x3c{left:302.373333pt;}
.x56{left:307.866667pt;}
.x2b{left:316.066667pt;}
.x1c{left:319.333333pt;}
.x3e{left:340.320000pt;}
.x4a{left:352.133333pt;}
.x12{left:354.466667pt;}
.x1e{left:356.480000pt;}
.x41{left:378.306667pt;}
.xe{left:387.426655pt;}
.x4d{left:388.773333pt;}
.x39{left:390.146667pt;}
.x30{left:392.133333pt;}
.x21{left:393.666667pt;}
.x44{left:416.293333pt;}
.x50{left:425.373333pt;}
.x8{left:428.573321pt;}
.x24{left:430.853333pt;}
.x16{left:432.413333pt;}
.x53{left:450.693333pt;}
.xc{left:452.573321pt;}
.x5{left:463.133333pt;}
.x13{left:498.493333pt;}
.x54{left:506.013333pt;}
.x3d{left:511.226667pt;}
.x48{left:516.960000pt;}
.x2c{left:525.213333pt;}
.x3f{left:549.186667pt;}
.x4b{left:553.573333pt;}
.x1f{left:560.986667pt;}
.x2e{left:563.226667pt;}
.x17{left:576.413333pt;}
.x3a{left:583.293333pt;}
.x42{left:587.173333pt;}
.x4e{left:590.213333pt;}
.x22{left:598.173333pt;}
.x31{left:601.280000pt;}
.x57{left:616.706667pt;}
.x45{left:625.146667pt;}
.x51{left:626.813333pt;}
.x25{left:635.360000pt;}
.x14{left:636.453333pt;}
.x33{left:639.293333pt;}
.x18{left:708.453333pt;}
.x37{left:752.133321pt;}
.x19{left:762.053321pt;}
.x1a{left:766.053321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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