
    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_0854f6da997f476427d20fff.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_031e23707e590f253ccbde9d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a411d8a8c5df19471c63cc3b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0b596ca00d4a28c6a01952a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_ee6a709be0cba86bbcf713e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_aaf402ddb0d015d11f2c40fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_74e39c2b4de4c624267da420.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_d61629501a2b34604e0e669a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.988770;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_f5b9b621a7a38d56d0a8f5cb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.988770;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_44dd751bf8bd6d4f962d886b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_76af49ee3e2fb7c5543d31db.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.850586;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_93510c0c5b5c69a7f667a49f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.854492;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_0a60c183e5223caf7db75ccd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.859375;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_9f4d8e93fb4191f7fbfd5d3f.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;}
.m3{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);}
.m4{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);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.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);}
.v5{vertical-align:-33.120000px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:27.360000px;}
.lsb{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.291419px;}
.ls1d{letter-spacing:-0.288801px;}
.lse{letter-spacing:-0.288000px;}
.ls23{letter-spacing:-0.281591px;}
.ls1f{letter-spacing:-0.279062px;}
.lsc{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.170059px;}
.lsa{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.109991px;}
.ls1e{letter-spacing:-0.109003px;}
.ls13{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.159833px;}
.ls12{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.223800px;}
.ls9{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.792000px;}
.ls6{letter-spacing:0.864000px;}
.ls11{letter-spacing:1.584000px;}
.ls19{letter-spacing:204.154218px;}
.ls17{letter-spacing:297.452643px;}
.ls16{letter-spacing:297.639933px;}
.ls15{letter-spacing:297.729833px;}
.ls1c{letter-spacing:300.148465px;}
.ls1b{letter-spacing:300.337453px;}
.ls1a{letter-spacing:300.428167px;}
.ls14{letter-spacing:848.460000px;}
.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;}
}
.ws11{word-spacing:-72.000000px;}
.ws5{word-spacing:-41.040000px;}
.ws15{word-spacing:-19.584000px;}
.ws7{word-spacing:-18.864000px;}
.ws13{word-spacing:-18.792000px;}
.wsc{word-spacing:-18.504000px;}
.ws12{word-spacing:-18.432000px;}
.wsa{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws14{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.280000px;}
.wsf{word-spacing:-15.552000px;}
.ws1e{word-spacing:-12.624999px;}
.ws1f{word-spacing:-12.515009px;}
.ws19{word-spacing:-12.511606px;}
.ws2{word-spacing:-12.420000px;}
.ws1a{word-spacing:-12.402603px;}
.ws20{word-spacing:-12.343408px;}
.ws1c{word-spacing:-12.341547px;}
.ws9{word-spacing:-12.283800px;}
.ws1b{word-spacing:-12.232544px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.520000px;}
.ws10{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws18{word-spacing:174.406098px;}
.ws1d{word-spacing:179.917683px;}
.ws17{word-spacing:186.126853px;}
._2{margin-left:-2.460000px;}
._0{margin-left:-1.347840px;}
._1{width:1.543200px;}
._3{width:2.885280px;}
._6{width:84.384000px;}
._5{width:120.384000px;}
._8{width:211.239328px;}
._4{width:846.300000px;}
._7{width:848.460000px;}
.fc3{color:rgb(32,31,30);}
.fc2{color:transparent;}
.fc1{color:rgb(49,108,157);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:45.005778px;}
.fs7{font-size:45.413666px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:3.960000px;}
.y120{bottom:3.990000px;}
.y16f{bottom:4.005000px;}
.y2{bottom:4.140000px;}
.y17d{bottom:4.500000px;}
.y179{bottom:4.680000px;}
.y128{bottom:5.220000px;}
.y16d{bottom:5.400000px;}
.y129{bottom:6.660000px;}
.y182{bottom:12.600000px;}
.ya4{bottom:14.214000px;}
.y4d{bottom:14.220000px;}
.y143{bottom:14.265000px;}
.y4f{bottom:14.400000px;}
.y93{bottom:14.430000px;}
.y14d{bottom:14.445000px;}
.yc1{bottom:14.760000px;}
.ybe{bottom:14.940000px;}
.yc4{bottom:14.985000px;}
.yba{bottom:15.480000px;}
.yad{bottom:16.020000px;}
.yb7{bottom:16.050000px;}
.yb2{bottom:16.200000px;}
.yab{bottom:16.785000px;}
.y6b{bottom:17.280000px;}
.y58{bottom:17.460000px;}
.y6c{bottom:18.720000px;}
.y59{bottom:18.900000px;}
.y18e{bottom:19.215014px;}
.y193{bottom:19.389160px;}
.y63{bottom:20.160000px;}
.y64{bottom:21.600000px;}
.y9f{bottom:23.760000px;}
.yb4{bottom:24.120000px;}
.y4b{bottom:24.660000px;}
.ya0{bottom:25.200000px;}
.y49{bottom:25.920000px;}
.y47{bottom:26.640000px;}
.yb0{bottom:27.720000px;}
.ybc{bottom:33.300000px;}
.ya8{bottom:36.540000px;}
.y15b{bottom:37.080000px;}
.y152{bottom:38.880000px;}
.y158{bottom:42.300000px;}
.y18c{bottom:43.903576px;}
.y191{bottom:44.301476px;}
.y88{bottom:46.080000px;}
.y16a{bottom:46.260000px;}
.y8a{bottom:46.305000px;}
.y1{bottom:52.920000px;}
.y18{bottom:57.060000px;}
.y4a{bottom:66.060000px;}
.y46{bottom:68.040000px;}
.y18d{bottom:77.936972px;}
.y192{bottom:78.643317px;}
.y190{bottom:106.335000px;}
.ya5{bottom:108.936000px;}
.y45{bottom:109.440000px;}
.ycb{bottom:110.736000px;}
.y6e{bottom:120.456000px;}
.yca{bottom:128.196000px;}
.y15{bottom:132.516000px;}
.y86{bottom:134.316000px;}
.ya3{bottom:144.576000px;}
.y43{bottom:146.376000px;}
.y6d{bottom:151.410000px;}
.yc9{bottom:159.870000px;}
.ye6{bottom:167.970000px;}
.y109{bottom:170.490000px;}
.ya2{bottom:175.530000px;}
.y85{bottom:175.710000px;}
.y6a{bottom:182.550000px;}
.ye5{bottom:186.870000px;}
.y30{bottom:187.770000px;}
.yc8{bottom:191.550000px;}
.y108{bottom:201.630000px;}
.ye4{bottom:205.770000px;}
.ya1{bottom:206.670000px;}
.y132{bottom:208.470000px;}
.y18f{bottom:209.540009px;}
.y194{bottom:211.439076px;}
.y14{bottom:215.310000px;}
.y84{bottom:217.110000px;}
.y69{bottom:218.010000px;}
.yc7{bottom:223.050000px;}
.ye3{bottom:224.850000px;}
.y2f{bottom:229.170000px;}
.y107{bottom:232.590000px;}
.y9e{bottom:237.630000px;}
.y131{bottom:240.150000px;}
.ye2{bottom:243.750000px;}
.y68{bottom:249.150000px;}
.yc6{bottom:254.730000px;}
.y13{bottom:256.710000px;}
.y83{bottom:258.510000px;}
.y130{bottom:261.210000px;}
.y106{bottom:263.730000px;}
.y2e{bottom:270.570000px;}
.y9d{bottom:279.570000px;}
.y67{bottom:280.110000px;}
.y12f{bottom:282.450000px;}
.yc5{bottom:286.410000px;}
.y105{bottom:294.690000px;}
.y12{bottom:298.110000px;}
.y82{bottom:299.910000px;}
.y168{bottom:301.710000px;}
.y15f{bottom:303.330000px;}
.y12e{bottom:303.510000px;}
.y9c{bottom:310.530000px;}
.y66{bottom:311.250000px;}
.y2d{bottom:311.970000px;}
.yc3{bottom:318.090000px;}
.y12d{bottom:324.570000px;}
.y104{bottom:325.830000px;}
.y15e{bottom:338.835000px;}
.y11{bottom:339.555000px;}
.y81{bottom:341.355000px;}
.y9b{bottom:341.715000px;}
.y65{bottom:342.255000px;}
.y167{bottom:343.155000px;}
.y12c{bottom:345.675000px;}
.yc2{bottom:349.815000px;}
.y2c{bottom:353.415000px;}
.y103{bottom:356.835000px;}
.y166{bottom:363.855000px;}
.y12b{bottom:366.915000px;}
.y15d{bottom:369.975000px;}
.y9a{bottom:372.675000px;}
.y62{bottom:373.395000px;}
.yc0{bottom:381.495000px;}
.y80{bottom:382.755000px;}
.y165{bottom:385.095000px;}
.y102{bottom:387.975000px;}
.y42{bottom:394.095000px;}
.y2b{bottom:394.815000px;}
.y13d{bottom:395.895000px;}
.y15c{bottom:400.935000px;}
.y99{bottom:403.635000px;}
.y164{bottom:406.155000px;}
.y12a{bottom:409.035000px;}
.y61{bottom:411.735000px;}
.ybf{bottom:412.995000px;}
.y13c{bottom:416.955000px;}
.y101{bottom:418.935000px;}
.y7f{bottom:424.155000px;}
.y127{bottom:426.855000px;}
.y163{bottom:427.215000px;}
.y15a{bottom:432.075000px;}
.y98{bottom:434.775000px;}
.y41{bottom:435.495000px;}
.y2a{bottom:436.035000px;}
.yde{bottom:436.215000px;}
.y13b{bottom:437.655000px;}
.y60{bottom:442.875000px;}
.ybd{bottom:444.675000px;}
.y162{bottom:448.275000px;}
.y100{bottom:450.075000px;}
.y126{bottom:450.255000px;}
.y7e{bottom:465.555000px;}
.y97{bottom:465.735000px;}
.y13a{bottom:468.795000px;}
.y125{bottom:470.955000px;}
.y5f{bottom:473.835000px;}
.ybb{bottom:476.355000px;}
.y40{bottom:476.895000px;}
.y29{bottom:477.435000px;}
.ydd{bottom:477.615000px;}
.yff{bottom:481.035000px;}
.y159{bottom:485.895000px;}
.y161{bottom:490.035000px;}
.y124{bottom:491.655000px;}
.y96{bottom:496.875000px;}
.y139{bottom:499.755000px;}
.y5e{bottom:504.975000px;}
.y7d{bottom:506.955000px;}
.y181{bottom:507.675000px;}
.y10{bottom:511.995000px;}
.yfe{bottom:512.175000px;}
.y123{bottom:512.355000px;}
.y157{bottom:516.855000px;}
.y3f{bottom:518.295000px;}
.y28{bottom:518.835000px;}
.ydc{bottom:519.015000px;}
.yb9{bottom:526.395000px;}
.y95{bottom:527.835000px;}
.y138{bottom:530.895000px;}
.y122{bottom:533.055000px;}
.y5d{bottom:535.935000px;}
.y180{bottom:537.015000px;}
.yfd{bottom:543.135000px;}
.y7c{bottom:548.355000px;}
.yf{bottom:553.395000px;}
.y17f{bottom:557.715000px;}
.yb8{bottom:558.615000px;}
.y3e{bottom:559.695000px;}
.y27{bottom:560.235000px;}
.ydb{bottom:560.415000px;}
.y137{bottom:561.855000px;}
.y94{bottom:563.475000px;}
.y5c{bottom:567.075000px;}
.yfc{bottom:574.275000px;}
.y121{bottom:574.455000px;}
.y156{bottom:575.895000px;}
.y17e{bottom:578.415000px;}
.y7b{bottom:589.755000px;}
.y18b{bottom:591.360000px;}
.yb6{bottom:591.375000px;}
.y136{bottom:592.995000px;}
.y92{bottom:594.435000px;}
.ye{bottom:594.795000px;}
.y11f{bottom:595.155000px;}
.y17c{bottom:599.145000px;}
.y3d{bottom:601.125000px;}
.y26{bottom:601.665000px;}
.yda{bottom:601.845000px;}
.yfb{bottom:605.265000px;}
.y155{bottom:606.885000px;}
.y5b{bottom:610.485000px;}
.y11e{bottom:615.885000px;}
.y17b{bottom:620.385000px;}
.y135{bottom:623.985000px;}
.yb5{bottom:624.165000px;}
.y91{bottom:625.605000px;}
.ye1{bottom:630.465000px;}
.y7a{bottom:631.185000px;}
.yd{bottom:636.225000px;}
.yfa{bottom:636.405000px;}
.y11d{bottom:636.585000px;}
.y154{bottom:638.025000px;}
.y17a{bottom:641.085000px;}
.y148{bottom:641.445000px;}
.y5a{bottom:641.625000px;}
.y3c{bottom:642.525000px;}
.y25{bottom:643.065000px;}
.yd9{bottom:643.245000px;}
.ye0{bottom:649.365000px;}
.y90{bottom:656.565000px;}
.y11c{bottom:657.285000px;}
.yb3{bottom:665.025000px;}
.yf9{bottom:667.365000px;}
.y153{bottom:668.985000px;}
.y178{bottom:672.045000px;}
.y57{bottom:672.585000px;}
.yc{bottom:677.625000px;}
.y11b{bottom:677.985000px;}
.y3b{bottom:683.925000px;}
.y24{bottom:684.465000px;}
.yd8{bottom:684.645000px;}
.ydf{bottom:685.545000px;}
.y8f{bottom:687.705000px;}
.y177{bottom:693.465000px;}
.yf8{bottom:698.505000px;}
.y11a{bottom:698.685000px;}
.y151{bottom:700.125000px;}
.y147{bottom:703.545000px;}
.yb1{bottom:705.885000px;}
.y56{bottom:708.225000px;}
.y79{bottom:713.985000px;}
.y176{bottom:714.165000px;}
.y8e{bottom:718.665000px;}
.yb{bottom:719.025000px;}
.y119{bottom:719.385000px;}
.y3a{bottom:725.325000px;}
.y23{bottom:725.865000px;}
.yd7{bottom:726.045000px;}
.yf7{bottom:729.645000px;}
.y146{bottom:734.685000px;}
.y175{bottom:734.865000px;}
.yaf{bottom:738.825000px;}
.y55{bottom:739.185000px;}
.y118{bottom:740.085000px;}
.y8d{bottom:749.805000px;}
.y78{bottom:755.385000px;}
.y174{bottom:755.565000px;}
.y150{bottom:755.745000px;}
.ya{bottom:760.425000px;}
.y117{bottom:760.785000px;}
.yf6{bottom:761.325000px;}
.y145{bottom:765.645000px;}
.y39{bottom:766.725000px;}
.y22{bottom:767.265000px;}
.yd6{bottom:767.445000px;}
.y54{bottom:770.325000px;}
.y184{bottom:771.945000px;}
.y173{bottom:776.265000px;}
.y8c{bottom:780.765000px;}
.y116{bottom:781.485000px;}
.yf5{bottom:782.565000px;}
.yae{bottom:783.285000px;}
.y14f{bottom:786.705000px;}
.y18a{bottom:789.405000px;}
.y77{bottom:796.785000px;}
.y172{bottom:796.965000px;}
.y53{bottom:801.285000px;}
.y115{bottom:802.185000px;}
.yf4{bottom:803.625000px;}
.y38{bottom:808.485000px;}
.y21{bottom:808.665000px;}
.yd5{bottom:808.845000px;}
.y8b{bottom:811.905000px;}
.yac{bottom:816.045000px;}
.y171{bottom:817.665000px;}
.y189{bottom:820.365000px;}
.y14e{bottom:822.345000px;}
.y114{bottom:822.885000px;}
.yf3{bottom:824.685000px;}
.y144{bottom:827.745000px;}
.y52{bottom:832.425000px;}
.y9{bottom:836.385000px;}
.y76{bottom:838.185000px;}
.y170{bottom:838.365000px;}
.y89{bottom:843.585000px;}
.yf2{bottom:845.745000px;}
.yaa{bottom:848.805000px;}
.y37{bottom:849.885000px;}
.y20{bottom:850.065000px;}
.yd4{bottom:850.245000px;}
.y188{bottom:851.505000px;}
.y14c{bottom:853.305000px;}
.y142{bottom:858.885000px;}
.y51{bottom:863.430000px;}
.y113{bottom:864.330000px;}
.yf1{bottom:866.850000px;}
.y8{bottom:877.830000px;}
.y75{bottom:879.450000px;}
.y16e{bottom:879.630000px;}
.y187{bottom:882.510000px;}
.ya9{bottom:883.050000px;}
.y112{bottom:885.030000px;}
.y14b{bottom:885.210000px;}
.yf0{bottom:888.090000px;}
.y141{bottom:889.890000px;}
.y36{bottom:891.330000px;}
.y1f{bottom:891.510000px;}
.yd3{bottom:891.690000px;}
.y50{bottom:894.570000px;}
.y16c{bottom:900.330000px;}
.y111{bottom:905.730000px;}
.y87{bottom:907.350000px;}
.yef{bottom:909.150000px;}
.y186{bottom:913.650000px;}
.y7{bottom:919.230000px;}
.y74{bottom:920.850000px;}
.y140{bottom:921.030000px;}
.y16b{bottom:923.190000px;}
.y4e{bottom:925.530000px;}
.y110{bottom:926.430000px;}
.yee{bottom:930.210000px;}
.y35{bottom:932.730000px;}
.y1e{bottom:932.910000px;}
.yd2{bottom:933.090000px;}
.ya7{bottom:937.050000px;}
.y185{bottom:945.330000px;}
.y10f{bottom:947.130000px;}
.y14a{bottom:948.750000px;}
.yed{bottom:951.270000px;}
.y13f{bottom:951.990000px;}
.y4c{bottom:956.670000px;}
.y73{bottom:962.250000px;}
.y10e{bottom:967.830000px;}
.yec{bottom:972.510000px;}
.ya6{bottom:972.870000px;}
.y34{bottom:974.130000px;}
.y1d{bottom:974.310000px;}
.yd1{bottom:974.490000px;}
.y13e{bottom:983.850000px;}
.y169{bottom:986.730000px;}
.y44{bottom:988.350000px;}
.y10d{bottom:989.250000px;}
.y6{bottom:1002.030000px;}
.y72{bottom:1003.650000px;}
.yeb{bottom:1014.270000px;}
.y33{bottom:1015.530000px;}
.y1c{bottom:1015.710000px;}
.yd0{bottom:1015.890000px;}
.y10c{bottom:1035.330000px;}
.y183{bottom:1036.590000px;}
.y5{bottom:1043.430000px;}
.y71{bottom:1045.050000px;}
.y4{bottom:1046.268000px;}
.y149{bottom:1046.850000px;}
.yea{bottom:1055.670000px;}
.y10b{bottom:1056.390000px;}
.y32{bottom:1056.930000px;}
.y1b{bottom:1057.110000px;}
.ycf{bottom:1057.290000px;}
.y48{bottom:1071.870000px;}
.y10a{bottom:1077.630000px;}
.y134{bottom:1077.990000px;}
.y70{bottom:1091.130000px;}
.y3{bottom:1094.538000px;}
.ye9{bottom:1097.430000px;}
.y31{bottom:1098.330000px;}
.y1a{bottom:1098.510000px;}
.yce{bottom:1098.690000px;}
.y133{bottom:1108.950000px;}
.ye8{bottom:1118.490000px;}
.y160{bottom:1119.390000px;}
.y6f{bottom:1138.500000px;}
.ye7{bottom:1139.760000px;}
.y19{bottom:1139.940000px;}
.ycd{bottom:1140.120000px;}
.y17{bottom:1204.707000px;}
.y16{bottom:1227.327000px;}
.h36{height:20.520000px;}
.h2d{height:20.700000px;}
.h2e{height:20.736000px;}
.h28{height:21.096000px;}
.h38{height:21.240000px;}
.h2{height:21.276000px;}
.h37{height:21.420000px;}
.h35{height:22.140000px;}
.h2f{height:23.400000px;}
.h39{height:29.340000px;}
.he{height:30.960000px;}
.h10{height:30.996000px;}
.hf{height:31.140000px;}
.h1a{height:31.176000px;}
.h26{height:31.500000px;}
.h25{height:31.680000px;}
.h27{height:31.716000px;}
.h23{height:32.220000px;}
.h1e{height:32.760000px;}
.h22{height:32.796000px;}
.h20{height:32.940000px;}
.h1d{height:33.516000px;}
.h14{height:35.460000px;}
.h33{height:35.496000px;}
.h11{height:35.640000px;}
.h13{height:38.340000px;}
.ha{height:39.313477px;}
.h21{height:40.860000px;}
.h2c{height:41.400000px;}
.h1b{height:41.940000px;}
.hc{height:42.660000px;}
.h12{height:43.416000px;}
.h1f{height:44.460000px;}
.h3b{height:46.939620px;}
.h9{height:47.344922px;}
.h3d{height:47.365035px;}
.h24{height:50.040000px;}
.h2b{height:52.066406px;}
.h1c{height:53.280000px;}
.h32{height:53.820000px;}
.h16{height:55.141665px;}
.h30{height:55.620000px;}
.h31{height:59.040000px;}
.h2a{height:60.679688px;}
.h3{height:60.960938px;}
.h18{height:62.820000px;}
.h34{height:63.000000px;}
.h19{height:63.036000px;}
.h29{height:65.010937px;}
.h15{height:70.628906px;}
.h7{height:70.664062px;}
.h6{height:72.562500px;}
.h8{height:74.704922px;}
.h17{height:74.824922px;}
.hd{height:82.800000px;}
.h5{height:84.898125px;}
.hb{height:126.180000px;}
.h3a{height:471.905152px;}
.h3c{height:476.182042px;}
.h4{height:1220.538006px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:10.116000px;}
.w5{width:20.016000px;}
.w9{width:95.760000px;}
.w7{width:117.036000px;}
.wb{width:127.476000px;}
.wa{width:127.620000px;}
.w16{width:138.240000px;}
.wf{width:159.510000px;}
.w14{width:170.100000px;}
.we{width:170.130000px;}
.w10{width:201.990000px;}
.w13{width:202.035000px;}
.wc{width:210.135000px;}
.w1f{width:223.275000px;}
.w1e{width:237.450000px;}
.w15{width:241.995000px;}
.w1b{width:244.470000px;}
.w1a{width:247.170000px;}
.w6{width:252.615000px;}
.w8{width:255.090000px;}
.w1c{width:259.815000px;}
.w20{width:305.715000px;}
.w11{width:348.375000px;}
.w18{width:350.895000px;}
.w17{width:361.515000px;}
.w12{width:372.135000px;}
.w21{width:404.175000px;}
.w1d{width:460.725000px;}
.w22{width:471.905152px;}
.w23{width:476.182042px;}
.w19{width:491.655000px;}
.wd{width:531.645000px;}
.w3{width:890.864652px;}
.w4{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:1.575348px;}
.x7{left:7.920000px;}
.x14{left:9.000000px;}
.x57{left:12.157928px;}
.xf{left:13.500000px;}
.x11{left:18.720000px;}
.x27{left:21.240000px;}
.x15{left:22.500000px;}
.x12{left:23.940000px;}
.x25{left:26.460000px;}
.x13{left:27.540000px;}
.xa{left:28.800000px;}
.x1a{left:30.780000px;}
.x1b{left:32.940000px;}
.x40{left:34.200000px;}
.x32{left:35.850000px;}
.xb{left:37.440000px;}
.x35{left:39.996000px;}
.x9{left:41.040000px;}
.x28{left:42.480000px;}
.x16{left:45.000000px;}
.x19{left:47.880000px;}
.x3b{left:49.725000px;}
.x3f{left:53.460000px;}
.x3c{left:56.520000px;}
.x17{left:58.500000px;}
.x4d{left:60.120000px;}
.x3d{left:61.785000px;}
.x18{left:63.720000px;}
.x46{left:64.980000px;}
.x2a{left:66.780000px;}
.x3e{left:69.120000px;}
.x44{left:74.520000px;}
.x6{left:77.040000px;}
.x29{left:79.740000px;}
.x4b{left:82.440000px;}
.x3{left:84.959652px;}
.x55{left:87.292105px;}
.x54{left:91.800000px;}
.x26{left:97.920000px;}
.x34{left:100.830000px;}
.xd{left:105.120000px;}
.x4e{left:108.585000px;}
.x49{left:110.520000px;}
.x42{left:116.850000px;}
.x48{left:119.025000px;}
.x47{left:120.420000px;}
.x56{left:124.716385px;}
.x36{left:133.055987px;}
.x53{left:134.490000px;}
.x52{left:138.990000px;}
.x51{left:143.490000px;}
.x43{left:175.350000px;}
.x4{left:182.729987px;}
.x50{left:186.330000px;}
.x58{left:199.088751px;}
.x1e{left:233.849987px;}
.x1f{left:242.849987px;}
.x22{left:295.275000px;}
.x38{left:319.035000px;}
.x8{left:329.655000px;}
.x4a{left:344.955000px;}
.x2b{left:362.054987px;}
.x2c{left:371.054987px;}
.x20{left:372.134987px;}
.x21{left:381.134987px;}
.x4f{left:390.855000px;}
.x31{left:425.415000px;}
.x41{left:438.555000px;}
.xc{left:446.685000px;}
.x23{left:465.405000px;}
.x39{left:478.545000px;}
.x45{left:542.445000px;}
.x2f{left:551.444987px;}
.x30{left:560.444987px;}
.x10{left:574.305000px;}
.x4c{left:582.405000px;}
.x3a{left:616.785000px;}
.x24{left:624.930000px;}
.x33{left:627.450000px;}
.xe{left:701.790000px;}
.x1c{left:750.029987px;}
.x2d{left:752.549987px;}
.x1d{left:759.029987px;}
.x2e{left:761.549987px;}
.x5{left:787.650000px;}
.x1{left:797.550000px;}
.x37{left:807.479987px;}
@media print{
.v5{vertical-align:-29.440000pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:24.320000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.259039pt;}
.ls1d{letter-spacing:-0.256712pt;}
.lse{letter-spacing:-0.256000pt;}
.ls23{letter-spacing:-0.250303pt;}
.ls1f{letter-spacing:-0.248055pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.151164pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.097769pt;}
.ls1e{letter-spacing:-0.096891pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.142074pt;}
.ls12{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.198933pt;}
.ls9{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.704000pt;}
.ls6{letter-spacing:0.768000pt;}
.ls11{letter-spacing:1.408000pt;}
.ls19{letter-spacing:181.470416pt;}
.ls17{letter-spacing:264.402350pt;}
.ls16{letter-spacing:264.568830pt;}
.ls15{letter-spacing:264.648740pt;}
.ls1c{letter-spacing:266.798636pt;}
.ls1b{letter-spacing:266.966625pt;}
.ls1a{letter-spacing:267.047259pt;}
.ls14{letter-spacing:754.186667pt;}
.ws11{word-spacing:-64.000000pt;}
.ws5{word-spacing:-36.480000pt;}
.ws15{word-spacing:-17.408000pt;}
.ws7{word-spacing:-16.768000pt;}
.ws13{word-spacing:-16.704000pt;}
.wsc{word-spacing:-16.448000pt;}
.ws12{word-spacing:-16.384000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws14{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.360000pt;}
.wsf{word-spacing:-13.824000pt;}
.ws1e{word-spacing:-11.222222pt;}
.ws1f{word-spacing:-11.124452pt;}
.ws19{word-spacing:-11.121428pt;}
.ws2{word-spacing:-11.040000pt;}
.ws1a{word-spacing:-11.024536pt;}
.ws20{word-spacing:-10.971918pt;}
.ws1c{word-spacing:-10.970264pt;}
.ws9{word-spacing:-10.918933pt;}
.ws1b{word-spacing:-10.873373pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.240000pt;}
.ws10{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws18{word-spacing:155.027643pt;}
.ws1d{word-spacing:159.926829pt;}
.ws17{word-spacing:165.446092pt;}
._2{margin-left:-2.186667pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.371733pt;}
._3{width:2.564693pt;}
._6{width:75.008000pt;}
._5{width:107.008000pt;}
._8{width:187.768292pt;}
._4{width:752.266667pt;}
._7{width:754.186667pt;}
.fs6{font-size:40.005136pt;}
.fs7{font-size:40.367704pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:3.520000pt;}
.y120{bottom:3.546667pt;}
.y16f{bottom:3.560000pt;}
.y2{bottom:3.680000pt;}
.y17d{bottom:4.000000pt;}
.y179{bottom:4.160000pt;}
.y128{bottom:4.640000pt;}
.y16d{bottom:4.800000pt;}
.y129{bottom:5.920000pt;}
.y182{bottom:11.200000pt;}
.ya4{bottom:12.634667pt;}
.y4d{bottom:12.640000pt;}
.y143{bottom:12.680000pt;}
.y4f{bottom:12.800000pt;}
.y93{bottom:12.826667pt;}
.y14d{bottom:12.840000pt;}
.yc1{bottom:13.120000pt;}
.ybe{bottom:13.280000pt;}
.yc4{bottom:13.320000pt;}
.yba{bottom:13.760000pt;}
.yad{bottom:14.240000pt;}
.yb7{bottom:14.266667pt;}
.yb2{bottom:14.400000pt;}
.yab{bottom:14.920000pt;}
.y6b{bottom:15.360000pt;}
.y58{bottom:15.520000pt;}
.y6c{bottom:16.640000pt;}
.y59{bottom:16.800000pt;}
.y18e{bottom:17.080012pt;}
.y193{bottom:17.234809pt;}
.y63{bottom:17.920000pt;}
.y64{bottom:19.200000pt;}
.y9f{bottom:21.120000pt;}
.yb4{bottom:21.440000pt;}
.y4b{bottom:21.920000pt;}
.ya0{bottom:22.400000pt;}
.y49{bottom:23.040000pt;}
.y47{bottom:23.680000pt;}
.yb0{bottom:24.640000pt;}
.ybc{bottom:29.600000pt;}
.ya8{bottom:32.480000pt;}
.y15b{bottom:32.960000pt;}
.y152{bottom:34.560000pt;}
.y158{bottom:37.600000pt;}
.y18c{bottom:39.025401pt;}
.y191{bottom:39.379090pt;}
.y88{bottom:40.960000pt;}
.y16a{bottom:41.120000pt;}
.y8a{bottom:41.160000pt;}
.y1{bottom:47.040000pt;}
.y18{bottom:50.720000pt;}
.y4a{bottom:58.720000pt;}
.y46{bottom:60.480000pt;}
.y18d{bottom:69.277308pt;}
.y192{bottom:69.905170pt;}
.y190{bottom:94.520000pt;}
.ya5{bottom:96.832000pt;}
.y45{bottom:97.280000pt;}
.ycb{bottom:98.432000pt;}
.y6e{bottom:107.072000pt;}
.yca{bottom:113.952000pt;}
.y15{bottom:117.792000pt;}
.y86{bottom:119.392000pt;}
.ya3{bottom:128.512000pt;}
.y43{bottom:130.112000pt;}
.y6d{bottom:134.586667pt;}
.yc9{bottom:142.106667pt;}
.ye6{bottom:149.306667pt;}
.y109{bottom:151.546667pt;}
.ya2{bottom:156.026667pt;}
.y85{bottom:156.186667pt;}
.y6a{bottom:162.266667pt;}
.ye5{bottom:166.106667pt;}
.y30{bottom:166.906667pt;}
.yc8{bottom:170.266667pt;}
.y108{bottom:179.226667pt;}
.ye4{bottom:182.906667pt;}
.ya1{bottom:183.706667pt;}
.y132{bottom:185.306667pt;}
.y18f{bottom:186.257786pt;}
.y194{bottom:187.945846pt;}
.y14{bottom:191.386667pt;}
.y84{bottom:192.986667pt;}
.y69{bottom:193.786667pt;}
.yc7{bottom:198.266667pt;}
.ye3{bottom:199.866667pt;}
.y2f{bottom:203.706667pt;}
.y107{bottom:206.746667pt;}
.y9e{bottom:211.226667pt;}
.y131{bottom:213.466667pt;}
.ye2{bottom:216.666667pt;}
.y68{bottom:221.466667pt;}
.yc6{bottom:226.426667pt;}
.y13{bottom:228.186667pt;}
.y83{bottom:229.786667pt;}
.y130{bottom:232.186667pt;}
.y106{bottom:234.426667pt;}
.y2e{bottom:240.506667pt;}
.y9d{bottom:248.506667pt;}
.y67{bottom:248.986667pt;}
.y12f{bottom:251.066667pt;}
.yc5{bottom:254.586667pt;}
.y105{bottom:261.946667pt;}
.y12{bottom:264.986667pt;}
.y82{bottom:266.586667pt;}
.y168{bottom:268.186667pt;}
.y15f{bottom:269.626667pt;}
.y12e{bottom:269.786667pt;}
.y9c{bottom:276.026667pt;}
.y66{bottom:276.666667pt;}
.y2d{bottom:277.306667pt;}
.yc3{bottom:282.746667pt;}
.y12d{bottom:288.506667pt;}
.y104{bottom:289.626667pt;}
.y15e{bottom:301.186667pt;}
.y11{bottom:301.826667pt;}
.y81{bottom:303.426667pt;}
.y9b{bottom:303.746667pt;}
.y65{bottom:304.226667pt;}
.y167{bottom:305.026667pt;}
.y12c{bottom:307.266667pt;}
.yc2{bottom:310.946667pt;}
.y2c{bottom:314.146667pt;}
.y103{bottom:317.186667pt;}
.y166{bottom:323.426667pt;}
.y12b{bottom:326.146667pt;}
.y15d{bottom:328.866667pt;}
.y9a{bottom:331.266667pt;}
.y62{bottom:331.906667pt;}
.yc0{bottom:339.106667pt;}
.y80{bottom:340.226667pt;}
.y165{bottom:342.306667pt;}
.y102{bottom:344.866667pt;}
.y42{bottom:350.306667pt;}
.y2b{bottom:350.946667pt;}
.y13d{bottom:351.906667pt;}
.y15c{bottom:356.386667pt;}
.y99{bottom:358.786667pt;}
.y164{bottom:361.026667pt;}
.y12a{bottom:363.586667pt;}
.y61{bottom:365.986667pt;}
.ybf{bottom:367.106667pt;}
.y13c{bottom:370.626667pt;}
.y101{bottom:372.386667pt;}
.y7f{bottom:377.026667pt;}
.y127{bottom:379.426667pt;}
.y163{bottom:379.746667pt;}
.y15a{bottom:384.066667pt;}
.y98{bottom:386.466667pt;}
.y41{bottom:387.106667pt;}
.y2a{bottom:387.586667pt;}
.yde{bottom:387.746667pt;}
.y13b{bottom:389.026667pt;}
.y60{bottom:393.666667pt;}
.ybd{bottom:395.266667pt;}
.y162{bottom:398.466667pt;}
.y100{bottom:400.066667pt;}
.y126{bottom:400.226667pt;}
.y7e{bottom:413.826667pt;}
.y97{bottom:413.986667pt;}
.y13a{bottom:416.706667pt;}
.y125{bottom:418.626667pt;}
.y5f{bottom:421.186667pt;}
.ybb{bottom:423.426667pt;}
.y40{bottom:423.906667pt;}
.y29{bottom:424.386667pt;}
.ydd{bottom:424.546667pt;}
.yff{bottom:427.586667pt;}
.y159{bottom:431.906667pt;}
.y161{bottom:435.586667pt;}
.y124{bottom:437.026667pt;}
.y96{bottom:441.666667pt;}
.y139{bottom:444.226667pt;}
.y5e{bottom:448.866667pt;}
.y7d{bottom:450.626667pt;}
.y181{bottom:451.266667pt;}
.y10{bottom:455.106667pt;}
.yfe{bottom:455.266667pt;}
.y123{bottom:455.426667pt;}
.y157{bottom:459.426667pt;}
.y3f{bottom:460.706667pt;}
.y28{bottom:461.186667pt;}
.ydc{bottom:461.346667pt;}
.yb9{bottom:467.906667pt;}
.y95{bottom:469.186667pt;}
.y138{bottom:471.906667pt;}
.y122{bottom:473.826667pt;}
.y5d{bottom:476.386667pt;}
.y180{bottom:477.346667pt;}
.yfd{bottom:482.786667pt;}
.y7c{bottom:487.426667pt;}
.yf{bottom:491.906667pt;}
.y17f{bottom:495.746667pt;}
.yb8{bottom:496.546667pt;}
.y3e{bottom:497.506667pt;}
.y27{bottom:497.986667pt;}
.ydb{bottom:498.146667pt;}
.y137{bottom:499.426667pt;}
.y94{bottom:500.866667pt;}
.y5c{bottom:504.066667pt;}
.yfc{bottom:510.466667pt;}
.y121{bottom:510.626667pt;}
.y156{bottom:511.906667pt;}
.y17e{bottom:514.146667pt;}
.y7b{bottom:524.226667pt;}
.y18b{bottom:525.653333pt;}
.yb6{bottom:525.666667pt;}
.y136{bottom:527.106667pt;}
.y92{bottom:528.386667pt;}
.ye{bottom:528.706667pt;}
.y11f{bottom:529.026667pt;}
.y17c{bottom:532.573333pt;}
.y3d{bottom:534.333333pt;}
.y26{bottom:534.813333pt;}
.yda{bottom:534.973333pt;}
.yfb{bottom:538.013333pt;}
.y155{bottom:539.453333pt;}
.y5b{bottom:542.653333pt;}
.y11e{bottom:547.453333pt;}
.y17b{bottom:551.453333pt;}
.y135{bottom:554.653333pt;}
.yb5{bottom:554.813333pt;}
.y91{bottom:556.093333pt;}
.ye1{bottom:560.413333pt;}
.y7a{bottom:561.053333pt;}
.yd{bottom:565.533333pt;}
.yfa{bottom:565.693333pt;}
.y11d{bottom:565.853333pt;}
.y154{bottom:567.133333pt;}
.y17a{bottom:569.853333pt;}
.y148{bottom:570.173333pt;}
.y5a{bottom:570.333333pt;}
.y3c{bottom:571.133333pt;}
.y25{bottom:571.613333pt;}
.yd9{bottom:571.773333pt;}
.ye0{bottom:577.213333pt;}
.y90{bottom:583.613333pt;}
.y11c{bottom:584.253333pt;}
.yb3{bottom:591.133333pt;}
.yf9{bottom:593.213333pt;}
.y153{bottom:594.653333pt;}
.y178{bottom:597.373333pt;}
.y57{bottom:597.853333pt;}
.yc{bottom:602.333333pt;}
.y11b{bottom:602.653333pt;}
.y3b{bottom:607.933333pt;}
.y24{bottom:608.413333pt;}
.yd8{bottom:608.573333pt;}
.ydf{bottom:609.373333pt;}
.y8f{bottom:611.293333pt;}
.y177{bottom:616.413333pt;}
.yf8{bottom:620.893333pt;}
.y11a{bottom:621.053333pt;}
.y151{bottom:622.333333pt;}
.y147{bottom:625.373333pt;}
.yb1{bottom:627.453333pt;}
.y56{bottom:629.533333pt;}
.y79{bottom:634.653333pt;}
.y176{bottom:634.813333pt;}
.y8e{bottom:638.813333pt;}
.yb{bottom:639.133333pt;}
.y119{bottom:639.453333pt;}
.y3a{bottom:644.733333pt;}
.y23{bottom:645.213333pt;}
.yd7{bottom:645.373333pt;}
.yf7{bottom:648.573333pt;}
.y146{bottom:653.053333pt;}
.y175{bottom:653.213333pt;}
.yaf{bottom:656.733333pt;}
.y55{bottom:657.053333pt;}
.y118{bottom:657.853333pt;}
.y8d{bottom:666.493333pt;}
.y78{bottom:671.453333pt;}
.y174{bottom:671.613333pt;}
.y150{bottom:671.773333pt;}
.ya{bottom:675.933333pt;}
.y117{bottom:676.253333pt;}
.yf6{bottom:676.733333pt;}
.y145{bottom:680.573333pt;}
.y39{bottom:681.533333pt;}
.y22{bottom:682.013333pt;}
.yd6{bottom:682.173333pt;}
.y54{bottom:684.733333pt;}
.y184{bottom:686.173333pt;}
.y173{bottom:690.013333pt;}
.y8c{bottom:694.013333pt;}
.y116{bottom:694.653333pt;}
.yf5{bottom:695.613333pt;}
.yae{bottom:696.253333pt;}
.y14f{bottom:699.293333pt;}
.y18a{bottom:701.693333pt;}
.y77{bottom:708.253333pt;}
.y172{bottom:708.413333pt;}
.y53{bottom:712.253333pt;}
.y115{bottom:713.053333pt;}
.yf4{bottom:714.333333pt;}
.y38{bottom:718.653333pt;}
.y21{bottom:718.813333pt;}
.yd5{bottom:718.973333pt;}
.y8b{bottom:721.693333pt;}
.yac{bottom:725.373333pt;}
.y171{bottom:726.813333pt;}
.y189{bottom:729.213333pt;}
.y14e{bottom:730.973333pt;}
.y114{bottom:731.453333pt;}
.yf3{bottom:733.053333pt;}
.y144{bottom:735.773333pt;}
.y52{bottom:739.933333pt;}
.y9{bottom:743.453333pt;}
.y76{bottom:745.053333pt;}
.y170{bottom:745.213333pt;}
.y89{bottom:749.853333pt;}
.yf2{bottom:751.773333pt;}
.yaa{bottom:754.493333pt;}
.y37{bottom:755.453333pt;}
.y20{bottom:755.613333pt;}
.yd4{bottom:755.773333pt;}
.y188{bottom:756.893333pt;}
.y14c{bottom:758.493333pt;}
.y142{bottom:763.453333pt;}
.y51{bottom:767.493333pt;}
.y113{bottom:768.293333pt;}
.yf1{bottom:770.533333pt;}
.y8{bottom:780.293333pt;}
.y75{bottom:781.733333pt;}
.y16e{bottom:781.893333pt;}
.y187{bottom:784.453333pt;}
.ya9{bottom:784.933333pt;}
.y112{bottom:786.693333pt;}
.y14b{bottom:786.853333pt;}
.yf0{bottom:789.413333pt;}
.y141{bottom:791.013333pt;}
.y36{bottom:792.293333pt;}
.y1f{bottom:792.453333pt;}
.yd3{bottom:792.613333pt;}
.y50{bottom:795.173333pt;}
.y16c{bottom:800.293333pt;}
.y111{bottom:805.093333pt;}
.y87{bottom:806.533333pt;}
.yef{bottom:808.133333pt;}
.y186{bottom:812.133333pt;}
.y7{bottom:817.093333pt;}
.y74{bottom:818.533333pt;}
.y140{bottom:818.693333pt;}
.y16b{bottom:820.613333pt;}
.y4e{bottom:822.693333pt;}
.y110{bottom:823.493333pt;}
.yee{bottom:826.853333pt;}
.y35{bottom:829.093333pt;}
.y1e{bottom:829.253333pt;}
.yd2{bottom:829.413333pt;}
.ya7{bottom:832.933333pt;}
.y185{bottom:840.293333pt;}
.y10f{bottom:841.893333pt;}
.y14a{bottom:843.333333pt;}
.yed{bottom:845.573333pt;}
.y13f{bottom:846.213333pt;}
.y4c{bottom:850.373333pt;}
.y73{bottom:855.333333pt;}
.y10e{bottom:860.293333pt;}
.yec{bottom:864.453333pt;}
.ya6{bottom:864.773333pt;}
.y34{bottom:865.893333pt;}
.y1d{bottom:866.053333pt;}
.yd1{bottom:866.213333pt;}
.y13e{bottom:874.533333pt;}
.y169{bottom:877.093333pt;}
.y44{bottom:878.533333pt;}
.y10d{bottom:879.333333pt;}
.y6{bottom:890.693333pt;}
.y72{bottom:892.133333pt;}
.yeb{bottom:901.573333pt;}
.y33{bottom:902.693333pt;}
.y1c{bottom:902.853333pt;}
.yd0{bottom:903.013333pt;}
.y10c{bottom:920.293333pt;}
.y183{bottom:921.413333pt;}
.y5{bottom:927.493333pt;}
.y71{bottom:928.933333pt;}
.y4{bottom:930.016000pt;}
.y149{bottom:930.533333pt;}
.yea{bottom:938.373333pt;}
.y10b{bottom:939.013333pt;}
.y32{bottom:939.493333pt;}
.y1b{bottom:939.653333pt;}
.ycf{bottom:939.813333pt;}
.y48{bottom:952.773333pt;}
.y10a{bottom:957.893333pt;}
.y134{bottom:958.213333pt;}
.y70{bottom:969.893333pt;}
.y3{bottom:972.922667pt;}
.ye9{bottom:975.493333pt;}
.y31{bottom:976.293333pt;}
.y1a{bottom:976.453333pt;}
.yce{bottom:976.613333pt;}
.y133{bottom:985.733333pt;}
.ye8{bottom:994.213333pt;}
.y160{bottom:995.013333pt;}
.y6f{bottom:1012.000000pt;}
.ye7{bottom:1013.120000pt;}
.y19{bottom:1013.280000pt;}
.ycd{bottom:1013.440000pt;}
.y17{bottom:1070.850667pt;}
.y16{bottom:1090.957333pt;}
.h36{height:18.240000pt;}
.h2d{height:18.400000pt;}
.h2e{height:18.432000pt;}
.h28{height:18.752000pt;}
.h38{height:18.880000pt;}
.h2{height:18.912000pt;}
.h37{height:19.040000pt;}
.h35{height:19.680000pt;}
.h2f{height:20.800000pt;}
.h39{height:26.080000pt;}
.he{height:27.520000pt;}
.h10{height:27.552000pt;}
.hf{height:27.680000pt;}
.h1a{height:27.712000pt;}
.h26{height:28.000000pt;}
.h25{height:28.160000pt;}
.h27{height:28.192000pt;}
.h23{height:28.640000pt;}
.h1e{height:29.120000pt;}
.h22{height:29.152000pt;}
.h20{height:29.280000pt;}
.h1d{height:29.792000pt;}
.h14{height:31.520000pt;}
.h33{height:31.552000pt;}
.h11{height:31.680000pt;}
.h13{height:34.080000pt;}
.ha{height:34.945312pt;}
.h21{height:36.320000pt;}
.h2c{height:36.800000pt;}
.h1b{height:37.280000pt;}
.hc{height:37.920000pt;}
.h12{height:38.592000pt;}
.h1f{height:39.520000pt;}
.h3b{height:41.724106pt;}
.h9{height:42.084375pt;}
.h3d{height:42.102253pt;}
.h24{height:44.480000pt;}
.h2b{height:46.281250pt;}
.h1c{height:47.360000pt;}
.h32{height:47.840000pt;}
.h16{height:49.014814pt;}
.h30{height:49.440000pt;}
.h31{height:52.480000pt;}
.h2a{height:53.937500pt;}
.h3{height:54.187500pt;}
.h18{height:55.840000pt;}
.h34{height:56.000000pt;}
.h19{height:56.032000pt;}
.h29{height:57.787500pt;}
.h15{height:62.781250pt;}
.h7{height:62.812500pt;}
.h6{height:64.500000pt;}
.h8{height:66.404375pt;}
.h17{height:66.511042pt;}
.hd{height:73.600000pt;}
.h5{height:75.465000pt;}
.hb{height:112.160000pt;}
.h3a{height:419.471246pt;}
.h3c{height:423.272926pt;}
.h4{height:1084.922672pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:8.992000pt;}
.w5{width:17.792000pt;}
.w9{width:85.120000pt;}
.w7{width:104.032000pt;}
.wb{width:113.312000pt;}
.wa{width:113.440000pt;}
.w16{width:122.880000pt;}
.wf{width:141.786667pt;}
.w14{width:151.200000pt;}
.we{width:151.226667pt;}
.w10{width:179.546667pt;}
.w13{width:179.586667pt;}
.wc{width:186.786667pt;}
.w1f{width:198.466667pt;}
.w1e{width:211.066667pt;}
.w15{width:215.106667pt;}
.w1b{width:217.306667pt;}
.w1a{width:219.706667pt;}
.w6{width:224.546667pt;}
.w8{width:226.746667pt;}
.w1c{width:230.946667pt;}
.w20{width:271.746667pt;}
.w11{width:309.666667pt;}
.w18{width:311.906667pt;}
.w17{width:321.346667pt;}
.w12{width:330.786667pt;}
.w21{width:359.266667pt;}
.w1d{width:409.533333pt;}
.w22{width:419.471246pt;}
.w23{width:423.272926pt;}
.w19{width:437.026667pt;}
.wd{width:472.573333pt;}
.w3{width:791.879691pt;}
.w4{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:1.400309pt;}
.x7{left:7.040000pt;}
.x14{left:8.000000pt;}
.x57{left:10.807047pt;}
.xf{left:12.000000pt;}
.x11{left:16.640000pt;}
.x27{left:18.880000pt;}
.x15{left:20.000000pt;}
.x12{left:21.280000pt;}
.x25{left:23.520000pt;}
.x13{left:24.480000pt;}
.xa{left:25.600000pt;}
.x1a{left:27.360000pt;}
.x1b{left:29.280000pt;}
.x40{left:30.400000pt;}
.x32{left:31.866667pt;}
.xb{left:33.280000pt;}
.x35{left:35.552000pt;}
.x9{left:36.480000pt;}
.x28{left:37.760000pt;}
.x16{left:40.000000pt;}
.x19{left:42.560000pt;}
.x3b{left:44.200000pt;}
.x3f{left:47.520000pt;}
.x3c{left:50.240000pt;}
.x17{left:52.000000pt;}
.x4d{left:53.440000pt;}
.x3d{left:54.920000pt;}
.x18{left:56.640000pt;}
.x46{left:57.760000pt;}
.x2a{left:59.360000pt;}
.x3e{left:61.440000pt;}
.x44{left:66.240000pt;}
.x6{left:68.480000pt;}
.x29{left:70.880000pt;}
.x4b{left:73.280000pt;}
.x3{left:75.519691pt;}
.x55{left:77.592982pt;}
.x54{left:81.600000pt;}
.x26{left:87.040000pt;}
.x34{left:89.626667pt;}
.xd{left:93.440000pt;}
.x4e{left:96.520000pt;}
.x49{left:98.240000pt;}
.x42{left:103.866667pt;}
.x48{left:105.800000pt;}
.x47{left:107.040000pt;}
.x56{left:110.859009pt;}
.x36{left:118.271988pt;}
.x53{left:119.546667pt;}
.x52{left:123.546667pt;}
.x51{left:127.546667pt;}
.x43{left:155.866667pt;}
.x4{left:162.426655pt;}
.x50{left:165.626667pt;}
.x58{left:176.967779pt;}
.x1e{left:207.866655pt;}
.x1f{left:215.866655pt;}
.x22{left:262.466667pt;}
.x38{left:283.586667pt;}
.x8{left:293.026667pt;}
.x4a{left:306.626667pt;}
.x2b{left:321.826655pt;}
.x2c{left:329.826655pt;}
.x20{left:330.786655pt;}
.x21{left:338.786655pt;}
.x4f{left:347.426667pt;}
.x31{left:378.146667pt;}
.x41{left:389.826667pt;}
.xc{left:397.053333pt;}
.x23{left:413.693333pt;}
.x39{left:425.373333pt;}
.x45{left:482.173333pt;}
.x2f{left:490.173322pt;}
.x30{left:498.173322pt;}
.x10{left:510.493333pt;}
.x4c{left:517.693333pt;}
.x3a{left:548.253333pt;}
.x24{left:555.493333pt;}
.x33{left:557.733333pt;}
.xe{left:623.813333pt;}
.x1c{left:666.693322pt;}
.x2d{left:668.933322pt;}
.x1d{left:674.693322pt;}
.x2e{left:676.933322pt;}
.x5{left:700.133333pt;}
.x1{left:708.933333pt;}
.x37{left:717.759988pt;}
}




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