
    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_c87d2c4bf47c3048f6592d2b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ae62bdd1083a1f7b82e43b66.woff')format("woff");}.ff2{font-family:ff2;line-height:0.690430;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_3e571ddf7f48d6b2e0d09163.woff')format("woff");}.ff3{font-family:ff3;line-height:0.690430;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_d39d862ee65d0b0e99070ac7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_a2816982d4812d4096d9987b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ccbb1e1a25b187e4313488ff.woff')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_e7ae61cb9847f36ab0c6233e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bcc2d431974637fe63bc364f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0936aff7a0c2940e5c15c4b6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.703613;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_dc5959f4d1d72d39bf80abf1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_930fb0bc8fec18d876997299.woff')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-89.280000px;}
.v5{vertical-align:-80.640000px;}
.v8{vertical-align:-70.560000px;}
.v9{vertical-align:-69.120000px;}
.v2{vertical-align:-61.920000px;}
.v4{vertical-align:-53.280000px;}
.v6{vertical-align:-27.360000px;}
.v7{vertical-align:-8.640000px;}
.vb{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:8.640000px;}
.v3{vertical-align:27.360000px;}
.ls2e{letter-spacing:-0.972000px;}
.ls12{letter-spacing:-0.954000px;}
.ls10{letter-spacing:-0.792000px;}
.ls23{letter-spacing:-0.466800px;}
.lse{letter-spacing:-0.295200px;}
.ls11{letter-spacing:-0.008640px;}
.lsd{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.020160px;}
.ls8{letter-spacing:0.034560px;}
.ls4{letter-spacing:0.055200px;}
.lsb{letter-spacing:0.118080px;}
.ls19{letter-spacing:0.144000px;}
.ls20{letter-spacing:0.178560px;}
.ls0{letter-spacing:0.190080px;}
.ls13{letter-spacing:0.190560px;}
.ls2{letter-spacing:0.254880px;}
.ls3{letter-spacing:0.275040px;}
.ls15{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.380160px;}
.lsc{letter-spacing:0.642720px;}
.lsf{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.720000px;}
.ls17{letter-spacing:1.746000px;}
.ls18{letter-spacing:1.809120px;}
.ls9{letter-spacing:2.160000px;}
.ls2c{letter-spacing:7.560000px;}
.ls1f{letter-spacing:10.397280px;}
.ls2a{letter-spacing:34.920000px;}
.ls14{letter-spacing:35.280000px;}
.ls1d{letter-spacing:43.505280px;}
.ls2b{letter-spacing:53.758560px;}
.ls16{letter-spacing:68.400000px;}
.ls29{letter-spacing:69.840000px;}
.ls6{letter-spacing:81.504000px;}
.ls28{letter-spacing:82.558560px;}
.ls26{letter-spacing:132.120000px;}
.ls1e{letter-spacing:136.236000px;}
.ls2d{letter-spacing:157.500000px;}
.lsa{letter-spacing:193.836000px;}
.ls1b{letter-spacing:198.876000px;}
.ls24{letter-spacing:201.036000px;}
.ls21{letter-spacing:362.316000px;}
.ls1c{letter-spacing:434.436000px;}
.ls27{letter-spacing:510.756000px;}
.ls25{letter-spacing:525.156000px;}
.ls1a{letter-spacing:904.056000px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.ws0{word-spacing:-29.880000px;}
.ws1{word-spacing:-24.120000px;}
.ws5{word-spacing:-20.880000px;}
.ws3{word-spacing:-19.440000px;}
.ws9{word-spacing:-18.306000px;}
.wsa{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.140160px;}
.wsc{word-spacing:-15.120000px;}
.wse{word-spacing:-14.653200px;}
.ws4{word-spacing:-14.166000px;}
.wsf{word-spacing:-14.148000px;}
.ws2{word-spacing:-12.600000px;}
.ws7{word-spacing:0.000000px;}
._1c{margin-left:-5.293440px;}
._8{margin-left:-3.447360px;}
._0{margin-left:-2.407680px;}
._2{margin-left:-1.313280px;}
._1{width:1.094400px;}
._3{width:2.446080px;}
._5{width:3.589440px;}
._4{width:5.056800px;}
._a{width:6.636000px;}
._d{width:7.904640px;}
._e{width:8.933760px;}
._f{width:10.270080px;}
._15{width:11.701920px;}
._b{width:13.366080px;}
._12{width:14.947200px;}
._2e{width:16.680000px;}
._c{width:17.760000px;}
._13{width:19.046400px;}
._7{width:20.183520px;}
._6{width:21.761280px;}
._9{width:23.025600px;}
._18{width:25.058880px;}
._16{width:26.110080px;}
._17{width:27.446400px;}
._10{width:28.802880px;}
._11{width:29.828160px;}
._29{width:31.176960px;}
._2c{width:33.571200px;}
._2d{width:34.589280px;}
._2b{width:35.997120px;}
._2a{width:37.578240px;}
._1f{width:49.194240px;}
._27{width:62.640000px;}
._1e{width:75.962880px;}
._19{width:91.618560px;}
._20{width:106.394880px;}
._14{width:123.065280px;}
._1a{width:178.942560px;}
._21{width:185.340000px;}
._1d{width:189.528000px;}
._25{width:192.607680px;}
._1b{width:199.596000px;}
._22{width:201.000000px;}
._26{width:213.833280px;}
._28{width:244.073280px;}
._24{width:257.880000px;}
._23{width:288.120000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fse{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:54.720000px;}
.fsd{font-size:57.600000px;}
.fs1{font-size:60.480000px;}
.fs9{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fsb{font-size:69.120000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fsa{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y106{bottom:3.600000px;}
.y10e{bottom:3.630000px;}
.y100{bottom:5.040000px;}
.yb3{bottom:5.760000px;}
.ya3{bottom:6.120000px;}
.y9f{bottom:6.480000px;}
.ya5{bottom:6.840000px;}
.yb0{bottom:7.200000px;}
.ya1{bottom:7.560000px;}
.yfc{bottom:7.920000px;}
.yf8{bottom:8.640000px;}
.yff{bottom:10.080000px;}
.y11a{bottom:12.240000px;}
.yfa{bottom:18.000000px;}
.y115{bottom:20.880000px;}
.y10d{bottom:20.910000px;}
.y102{bottom:20.925000px;}
.y113{bottom:21.600000px;}
.yf6{bottom:24.480000px;}
.y10b{bottom:24.840000px;}
.y105{bottom:25.560000px;}
.yfe{bottom:27.360000px;}
.y10a{bottom:29.520000px;}
.y114{bottom:38.160000px;}
.y112{bottom:38.880000px;}
.yf9{bottom:41.400000px;}
.yf5{bottom:41.760000px;}
.y104{bottom:42.885000px;}
.y109{bottom:46.800000px;}
.y111{bottom:56.190000px;}
.y110{bottom:73.470000px;}
.y2{bottom:111.276000px;}
.y85{bottom:144.432000px;}
.y30{bottom:147.672000px;}
.y130{bottom:149.112000px;}
.y117{bottom:153.435000px;}
.y62{bottom:158.475000px;}
.y84{bottom:163.515000px;}
.ydc{bottom:164.235000px;}
.yb4{bottom:165.315000px;}
.y2f{bottom:166.395000px;}
.y116{bottom:174.315000px;}
.y14d{bottom:175.035000px;}
.y61{bottom:177.195000px;}
.yb2{bottom:181.875000px;}
.y83{bottom:182.595000px;}
.ydb{bottom:182.955000px;}
.y2e{bottom:185.475000px;}
.y14c{bottom:192.315000px;}
.y60{bottom:196.275000px;}
.y12f{bottom:200.595000px;}
.y82{bottom:201.675000px;}
.yda{bottom:202.035000px;}
.yb1{bottom:202.755000px;}
.y2d{bottom:204.555000px;}
.y10f{bottom:209.595000px;}
.y5f{bottom:215.355000px;}
.y81{bottom:220.395000px;}
.yd9{bottom:221.115000px;}
.y2c{bottom:223.635000px;}
.yaf{bottom:224.355000px;}
.y17e{bottom:226.875000px;}
.y14b{bottom:227.235000px;}
.y5e{bottom:234.435000px;}
.y80{bottom:239.475000px;}
.yd8{bottom:240.195000px;}
.y2b{bottom:242.355000px;}
.y17d{bottom:244.155000px;}
.y14a{bottom:246.315000px;}
.yae{bottom:246.675000px;}
.y5d{bottom:253.155000px;}
.y7f{bottom:258.555000px;}
.yd7{bottom:258.915000px;}
.y2a{bottom:261.435000px;}
.y10c{bottom:262.155000px;}
.y149{bottom:266.865000px;}
.yad{bottom:268.305000px;}
.y5c{bottom:272.265000px;}
.y7e{bottom:277.305000px;}
.yd6{bottom:278.025000px;}
.y17c{bottom:278.745000px;}
.y29{bottom:280.545000px;}
.y148{bottom:285.585000px;}
.yac{bottom:290.265000px;}
.y5b{bottom:291.345000px;}
.y17b{bottom:296.025000px;}
.y7d{bottom:296.385000px;}
.yd5{bottom:297.105000px;}
.y108{bottom:297.465000px;}
.y28{bottom:299.265000px;}
.y147{bottom:304.665000px;}
.y5a{bottom:310.065000px;}
.yab{bottom:311.865000px;}
.y17a{bottom:313.305000px;}
.y7c{bottom:315.465000px;}
.yd4{bottom:315.825000px;}
.y27{bottom:318.345000px;}
.y146{bottom:323.745000px;}
.y59{bottom:329.145000px;}
.y179{bottom:330.585000px;}
.yaa{bottom:333.825000px;}
.y7b{bottom:334.185000px;}
.yd3{bottom:334.905000px;}
.y107{bottom:336.705000px;}
.y26{bottom:337.425000px;}
.y145{bottom:342.825000px;}
.y178{bottom:347.865000px;}
.y58{bottom:348.225000px;}
.yd2{bottom:351.825000px;}
.y7a{bottom:353.265000px;}
.ya9{bottom:355.785000px;}
.y25{bottom:356.145000px;}
.y103{bottom:358.665000px;}
.y144{bottom:361.545000px;}
.y177{bottom:365.145000px;}
.y57{bottom:367.305000px;}
.y79{bottom:372.345000px;}
.yd1{bottom:373.065000px;}
.y24{bottom:375.225000px;}
.ya8{bottom:377.745000px;}
.y101{bottom:380.625000px;}
.y176{bottom:382.425000px;}
.y56{bottom:386.025000px;}
.y78{bottom:391.425000px;}
.yd0{bottom:391.785000px;}
.y23{bottom:394.305000px;}
.ya7{bottom:399.750000px;}
.y143{bottom:401.190000px;}
.y55{bottom:405.150000px;}
.y77{bottom:410.190000px;}
.ycf{bottom:410.910000px;}
.y22{bottom:413.430000px;}
.yfd{bottom:415.950000px;}
.y175{bottom:416.670000px;}
.y142{bottom:420.270000px;}
.ya6{bottom:421.350000px;}
.y54{bottom:424.230000px;}
.y76{bottom:429.270000px;}
.yce{bottom:429.990000px;}
.y21{bottom:432.870000px;}
.y174{bottom:433.950000px;}
.yfb{bottom:435.390000px;}
.y141{bottom:439.350000px;}
.y53{bottom:442.950000px;}
.ya4{bottom:443.310000px;}
.y75{bottom:448.350000px;}
.ycd{bottom:448.710000px;}
.y173{bottom:451.230000px;}
.y20{bottom:456.270000px;}
.yf4{bottom:457.710000px;}
.y140{bottom:458.430000px;}
.y52{bottom:462.030000px;}
.y12e{bottom:463.110000px;}
.ya2{bottom:465.270000px;}
.y74{bottom:467.070000px;}
.ycc{bottom:467.790000px;}
.y172{bottom:468.510000px;}
.y1f{bottom:474.990000px;}
.y13f{bottom:477.150000px;}
.y51{bottom:481.110000px;}
.y12d{bottom:482.190000px;}
.y171{bottom:485.790000px;}
.y73{bottom:486.150000px;}
.ycb{bottom:486.870000px;}
.ya0{bottom:487.590000px;}
.yf7{bottom:490.470000px;}
.y1e{bottom:492.630000px;}
.y13e{bottom:496.230000px;}
.y50{bottom:499.830000px;}
.y12c{bottom:501.270000px;}
.y170{bottom:503.070000px;}
.y72{bottom:505.230000px;}
.yca{bottom:505.950000px;}
.y9e{bottom:510.270000px;}
.y1d{bottom:512.070000px;}
.y13d{bottom:515.310000px;}
.yf3{bottom:517.830000px;}
.y4f{bottom:518.910000px;}
.y12b{bottom:519.990000px;}
.y16f{bottom:520.350000px;}
.y71{bottom:523.950000px;}
.yc9{bottom:525.030000px;}
.y1c{bottom:534.060000px;}
.y13c{bottom:534.780000px;}
.y9d{bottom:536.220000px;}
.y16e{bottom:537.660000px;}
.y4e{bottom:538.020000px;}
.y12a{bottom:539.460000px;}
.y70{bottom:543.060000px;}
.yc8{bottom:543.780000px;}
.y1b{bottom:552.780000px;}
.yf2{bottom:554.220000px;}
.y16d{bottom:554.940000px;}
.y4d{bottom:557.100000px;}
.y13b{bottom:558.180000px;}
.y129{bottom:559.980000px;}
.y6f{bottom:562.140000px;}
.yc7{bottom:562.860000px;}
.y1a{bottom:570.060000px;}
.y16c{bottom:572.220000px;}
.y9c{bottom:572.580000px;}
.yf1{bottom:573.300000px;}
.y4c{bottom:575.820000px;}
.y13a{bottom:577.260000px;}
.y128{bottom:578.700000px;}
.y6e{bottom:581.220000px;}
.yc6{bottom:581.940000px;}
.y19{bottom:586.980000px;}
.y16b{bottom:589.500000px;}
.y9b{bottom:591.300000px;}
.yf0{bottom:592.380000px;}
.y4b{bottom:594.900000px;}
.y139{bottom:596.340000px;}
.y127{bottom:597.780000px;}
.y6d{bottom:599.940000px;}
.yc5{bottom:601.020000px;}
.y18{bottom:604.260000px;}
.y16a{bottom:606.780000px;}
.y9a{bottom:610.380000px;}
.yef{bottom:611.100000px;}
.y4a{bottom:613.980000px;}
.y138{bottom:615.420000px;}
.y126{bottom:616.860000px;}
.y6c{bottom:619.020000px;}
.yc4{bottom:620.100000px;}
.y17{bottom:621.540000px;}
.y169{bottom:626.220000px;}
.y99{bottom:629.460000px;}
.yee{bottom:630.900000px;}
.y49{bottom:632.700000px;}
.y137{bottom:634.140000px;}
.y125{bottom:635.580000px;}
.y6b{bottom:638.100000px;}
.y16{bottom:638.820000px;}
.yc3{bottom:639.180000px;}
.y168{bottom:646.740000px;}
.y98{bottom:648.540000px;}
.y48{bottom:651.780000px;}
.y136{bottom:653.220000px;}
.yed{bottom:654.300000px;}
.y124{bottom:654.660000px;}
.y15{bottom:656.100000px;}
.y6a{bottom:656.820000px;}
.yc2{bottom:657.900000px;}
.y167{bottom:665.100000px;}
.y97{bottom:669.090000px;}
.y47{bottom:670.890000px;}
.y135{bottom:671.970000px;}
.y14{bottom:673.410000px;}
.y69{bottom:675.930000px;}
.yc1{bottom:677.010000px;}
.y166{bottom:682.410000px;}
.y96{bottom:688.170000px;}
.y134{bottom:689.250000px;}
.y46{bottom:689.610000px;}
.y13{bottom:690.690000px;}
.y123{bottom:691.050000px;}
.yec{bottom:692.490000px;}
.y68{bottom:695.010000px;}
.yc0{bottom:696.090000px;}
.y165{bottom:699.690000px;}
.y133{bottom:702.570000px;}
.y122{bottom:706.170000px;}
.y95{bottom:706.890000px;}
.y12{bottom:707.970000px;}
.y45{bottom:708.690000px;}
.yeb{bottom:711.570000px;}
.y67{bottom:714.090000px;}
.ybf{bottom:716.610000px;}
.y164{bottom:716.970000px;}
.y11{bottom:725.610000px;}
.y94{bottom:725.970000px;}
.y44{bottom:727.770000px;}
.yea{bottom:730.290000px;}
.y66{bottom:732.810000px;}
.y163{bottom:734.250000px;}
.y10{bottom:745.050000px;}
.y43{bottom:746.850000px;}
.ye9{bottom:749.370000px;}
.y162{bottom:751.530000px;}
.y65{bottom:751.890000px;}
.ybe{bottom:752.610000px;}
.y93{bottom:763.770000px;}
.y42{bottom:765.570000px;}
.ybd{bottom:766.290000px;}
.yf{bottom:767.010000px;}
.ye8{bottom:768.450000px;}
.y161{bottom:768.810000px;}
.y64{bottom:770.970000px;}
.y92{bottom:782.850000px;}
.y41{bottom:785.370000px;}
.y160{bottom:786.090000px;}
.ye{bottom:786.450000px;}
.ye7{bottom:787.530000px;}
.y63{bottom:789.690000px;}
.y91{bottom:801.975000px;}
.y15f{bottom:803.415000px;}
.ye6{bottom:806.655000px;}
.y40{bottom:808.815000px;}
.yd{bottom:813.855000px;}
.y15e{bottom:820.695000px;}
.y90{bottom:821.055000px;}
.ye5{bottom:825.735000px;}
.yc{bottom:827.895000px;}
.y15d{bottom:837.615000px;}
.y8f{bottom:841.575000px;}
.ye4{bottom:844.455000px;}
.y3f{bottom:846.615000px;}
.y15c{bottom:854.895000px;}
.yb{bottom:855.255000px;}
.y8e{bottom:860.655000px;}
.ye3{bottom:863.535000px;}
.y3e{bottom:865.695000px;}
.y15b{bottom:872.175000px;}
.ya{bottom:876.135000px;}
.y8d{bottom:879.375000px;}
.ye2{bottom:882.615000px;}
.y3d{bottom:884.775000px;}
.y15a{bottom:889.455000px;}
.y8c{bottom:898.455000px;}
.ye1{bottom:903.135000px;}
.y3c{bottom:903.855000px;}
.y159{bottom:906.735000px;}
.y9{bottom:909.975000px;}
.y8b{bottom:917.535000px;}
.ye0{bottom:922.215000px;}
.y3b{bottom:922.575000px;}
.y158{bottom:924.015000px;}
.y8{bottom:929.775000px;}
.y121{bottom:931.215000px;}
.y8a{bottom:936.645000px;}
.y132{bottom:939.885000px;}
.ydf{bottom:941.325000px;}
.y3a{bottom:941.685000px;}
.y120{bottom:952.125000px;}
.y89{bottom:955.365000px;}
.y157{bottom:958.605000px;}
.y131{bottom:958.965000px;}
.yde{bottom:960.405000px;}
.y39{bottom:960.765000px;}
.y11f{bottom:971.205000px;}
.y88{bottom:974.445000px;}
.y7{bottom:974.805000px;}
.y156{bottom:975.885000px;}
.ybc{bottom:978.045000px;}
.y38{bottom:979.485000px;}
.y11e{bottom:990.285000px;}
.y155{bottom:993.165000px;}
.y87{bottom:993.525000px;}
.ybb{bottom:996.765000px;}
.y37{bottom:998.565000px;}
.y6{bottom:1000.365000px;}
.y11d{bottom:1009.365000px;}
.y154{bottom:1010.445000px;}
.y86{bottom:1012.965000px;}
.yba{bottom:1015.845000px;}
.y36{bottom:1017.645000px;}
.y153{bottom:1027.725000px;}
.y11c{bottom:1029.885000px;}
.y5{bottom:1034.205000px;}
.yb9{bottom:1034.925000px;}
.y35{bottom:1036.365000px;}
.y152{bottom:1044.645000px;}
.y11b{bottom:1048.965000px;}
.yb8{bottom:1053.645000px;}
.y34{bottom:1055.445000px;}
.y151{bottom:1061.925000px;}
.y4{bottom:1067.730000px;}
.yb7{bottom:1072.770000px;}
.y33{bottom:1074.570000px;}
.y150{bottom:1079.250000px;}
.y119{bottom:1083.570000px;}
.yb6{bottom:1091.850000px;}
.y32{bottom:1093.650000px;}
.y14f{bottom:1096.530000px;}
.y3{bottom:1101.570000px;}
.y118{bottom:1106.610000px;}
.yb5{bottom:1110.930000px;}
.ydd{bottom:1112.010000px;}
.y31{bottom:1112.370000px;}
.y14e{bottom:1113.810000px;}
.y1{bottom:1142.250000px;}
.h20{height:18.720000px;}
.h17{height:19.440000px;}
.h12{height:19.800000px;}
.h13{height:20.160000px;}
.h15{height:20.196000px;}
.hf{height:20.520000px;}
.h14{height:20.556000px;}
.h16{height:20.880000px;}
.h11{height:21.240000px;}
.h1e{height:21.600000px;}
.h29{height:22.320000px;}
.h1c{height:22.680000px;}
.h1d{height:32.040000px;}
.h27{height:34.560000px;}
.h21{height:34.596000px;}
.h24{height:38.520000px;}
.h1f{height:41.040000px;}
.h28{height:43.200000px;}
.h8{height:46.638281px;}
.h2b{height:49.535156px;}
.h26{height:51.840000px;}
.h2{height:53.704687px;}
.h1b{height:55.440000px;}
.h22{height:56.556000px;}
.hb{height:59.328281px;}
.h3{height:59.357813px;}
.h23{height:60.480000px;}
.h10{height:60.952500px;}
.h2c{height:62.163910px;}
.h7{height:65.010937px;}
.he{height:67.837500px;}
.h18{height:68.084282px;}
.h1a{height:68.956875px;}
.h9{height:70.664062px;}
.h19{height:73.650937px;}
.h2a{height:73.770938px;}
.hd{height:74.953125px;}
.h5{height:76.317188px;}
.h6{height:76.944844px;}
.ha{height:78.367500px;}
.h4{height:80.944453px;}
.hc{height:86.945625px;}
.h25{height:87.156000px;}
.h2d{height:94.689844px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:73.080000px;}
.wb{width:84.276000px;}
.wa{width:89.676000px;}
.w6{width:113.112000px;}
.w7{width:116.316000px;}
.w9{width:120.996000px;}
.w8{width:175.035000px;}
.w3{width:219.345000px;}
.w4{width:291.705000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:1.440000px;}
.xf{left:6.840000px;}
.x15{left:10.443000px;}
.x17{left:20.910000px;}
.x20{left:27.720000px;}
.x1a{left:32.760000px;}
.x1f{left:33.840000px;}
.x14{left:37.443000px;}
.x1c{left:50.430000px;}
.x19{left:59.400000px;}
.x1e{left:61.590000px;}
.x22{left:115.275000px;}
.x2{left:123.155987px;}
.x1{left:130.715987px;}
.x9{left:142.631987px;}
.x12{left:144.431987px;}
.x13{left:145.872000px;}
.xb{left:159.914987px;}
.x28{left:165.674987px;}
.x4{left:185.834987px;}
.xe{left:191.235000px;}
.x5{left:203.474987px;}
.x6{left:216.434987px;}
.x16{left:219.675000px;}
.x27{left:271.544987px;}
.x8{left:314.789987px;}
.x18{left:333.510000px;}
.xc{left:377.069987px;}
.xa{left:393.269987px;}
.x10{left:411.300000px;}
.x7{left:417.779987px;}
.x3{left:448.019987px;}
.x1b{left:450.540000px;}
.x21{left:541.290000px;}
.x1d{left:626.295000px;}
.x11{left:665.534987px;}
.x25{left:692.204987px;}
.x26{left:700.124987px;}
.x24{left:722.444987px;}
.xd{left:755.204987px;}
@media print{
.v1{vertical-align:-79.360000pt;}
.v5{vertical-align:-71.680000pt;}
.v8{vertical-align:-62.720000pt;}
.v9{vertical-align:-61.440000pt;}
.v2{vertical-align:-55.040000pt;}
.v4{vertical-align:-47.360000pt;}
.v6{vertical-align:-24.320000pt;}
.v7{vertical-align:-7.680000pt;}
.vb{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:7.680000pt;}
.v3{vertical-align:24.320000pt;}
.ls2e{letter-spacing:-0.864000pt;}
.ls12{letter-spacing:-0.848000pt;}
.ls10{letter-spacing:-0.704000pt;}
.ls23{letter-spacing:-0.414933pt;}
.lse{letter-spacing:-0.262400pt;}
.ls11{letter-spacing:-0.007680pt;}
.lsd{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.017920pt;}
.ls8{letter-spacing:0.030720pt;}
.ls4{letter-spacing:0.049067pt;}
.lsb{letter-spacing:0.104960pt;}
.ls19{letter-spacing:0.128000pt;}
.ls20{letter-spacing:0.158720pt;}
.ls0{letter-spacing:0.168960pt;}
.ls13{letter-spacing:0.169387pt;}
.ls2{letter-spacing:0.226560pt;}
.ls3{letter-spacing:0.244480pt;}
.ls15{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.337920pt;}
.lsc{letter-spacing:0.571307pt;}
.lsf{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls17{letter-spacing:1.552000pt;}
.ls18{letter-spacing:1.608107pt;}
.ls9{letter-spacing:1.920000pt;}
.ls2c{letter-spacing:6.720000pt;}
.ls1f{letter-spacing:9.242027pt;}
.ls2a{letter-spacing:31.040000pt;}
.ls14{letter-spacing:31.360000pt;}
.ls1d{letter-spacing:38.671360pt;}
.ls2b{letter-spacing:47.785387pt;}
.ls16{letter-spacing:60.800000pt;}
.ls29{letter-spacing:62.080000pt;}
.ls6{letter-spacing:72.448000pt;}
.ls28{letter-spacing:73.385387pt;}
.ls26{letter-spacing:117.440000pt;}
.ls1e{letter-spacing:121.098667pt;}
.ls2d{letter-spacing:140.000000pt;}
.lsa{letter-spacing:172.298667pt;}
.ls1b{letter-spacing:176.778667pt;}
.ls24{letter-spacing:178.698667pt;}
.ls21{letter-spacing:322.058667pt;}
.ls1c{letter-spacing:386.165333pt;}
.ls27{letter-spacing:454.005333pt;}
.ls25{letter-spacing:466.805333pt;}
.ls1a{letter-spacing:803.605333pt;}
.wsb{word-spacing:-58.880000pt;}
.ws0{word-spacing:-26.560000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws5{word-spacing:-18.560000pt;}
.ws3{word-spacing:-17.280000pt;}
.ws9{word-spacing:-16.272000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.720000pt;}
.wsd{word-spacing:-13.457920pt;}
.wsc{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.025067pt;}
.ws4{word-spacing:-12.592000pt;}
.wsf{word-spacing:-12.576000pt;}
.ws2{word-spacing:-11.200000pt;}
.ws7{word-spacing:0.000000pt;}
._1c{margin-left:-4.705280pt;}
._8{margin-left:-3.064320pt;}
._0{margin-left:-2.140160pt;}
._2{margin-left:-1.167360pt;}
._1{width:0.972800pt;}
._3{width:2.174293pt;}
._5{width:3.190613pt;}
._4{width:4.494933pt;}
._a{width:5.898667pt;}
._d{width:7.026347pt;}
._e{width:7.941120pt;}
._f{width:9.128960pt;}
._15{width:10.401707pt;}
._b{width:11.880960pt;}
._12{width:13.286400pt;}
._2e{width:14.826667pt;}
._c{width:15.786667pt;}
._13{width:16.930133pt;}
._7{width:17.940907pt;}
._6{width:19.343360pt;}
._9{width:20.467200pt;}
._18{width:22.274560pt;}
._16{width:23.208960pt;}
._17{width:24.396800pt;}
._10{width:25.602560pt;}
._11{width:26.513920pt;}
._29{width:27.712853pt;}
._2c{width:29.841067pt;}
._2d{width:30.746027pt;}
._2b{width:31.997440pt;}
._2a{width:33.402880pt;}
._1f{width:43.728213pt;}
._27{width:55.680000pt;}
._1e{width:67.522560pt;}
._19{width:81.438720pt;}
._20{width:94.573227pt;}
._14{width:109.391360pt;}
._1a{width:159.060053pt;}
._21{width:164.746667pt;}
._1d{width:168.469333pt;}
._25{width:171.206827pt;}
._1b{width:177.418667pt;}
._22{width:178.666667pt;}
._26{width:190.074027pt;}
._28{width:216.954027pt;}
._24{width:229.226667pt;}
._23{width:256.106667pt;}
.fse{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:48.640000pt;}
.fsd{font-size:51.200000pt;}
.fs1{font-size:53.760000pt;}
.fs9{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fsb{font-size:61.440000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fsa{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y106{bottom:3.200000pt;}
.y10e{bottom:3.226667pt;}
.y100{bottom:4.480000pt;}
.yb3{bottom:5.120000pt;}
.ya3{bottom:5.440000pt;}
.y9f{bottom:5.760000pt;}
.ya5{bottom:6.080000pt;}
.yb0{bottom:6.400000pt;}
.ya1{bottom:6.720000pt;}
.yfc{bottom:7.040000pt;}
.yf8{bottom:7.680000pt;}
.yff{bottom:8.960000pt;}
.y11a{bottom:10.880000pt;}
.yfa{bottom:16.000000pt;}
.y115{bottom:18.560000pt;}
.y10d{bottom:18.586667pt;}
.y102{bottom:18.600000pt;}
.y113{bottom:19.200000pt;}
.yf6{bottom:21.760000pt;}
.y10b{bottom:22.080000pt;}
.y105{bottom:22.720000pt;}
.yfe{bottom:24.320000pt;}
.y10a{bottom:26.240000pt;}
.y114{bottom:33.920000pt;}
.y112{bottom:34.560000pt;}
.yf9{bottom:36.800000pt;}
.yf5{bottom:37.120000pt;}
.y104{bottom:38.120000pt;}
.y109{bottom:41.600000pt;}
.y111{bottom:49.946667pt;}
.y110{bottom:65.306667pt;}
.y2{bottom:98.912000pt;}
.y85{bottom:128.384000pt;}
.y30{bottom:131.264000pt;}
.y130{bottom:132.544000pt;}
.y117{bottom:136.386667pt;}
.y62{bottom:140.866667pt;}
.y84{bottom:145.346667pt;}
.ydc{bottom:145.986667pt;}
.yb4{bottom:146.946667pt;}
.y2f{bottom:147.906667pt;}
.y116{bottom:154.946667pt;}
.y14d{bottom:155.586667pt;}
.y61{bottom:157.506667pt;}
.yb2{bottom:161.666667pt;}
.y83{bottom:162.306667pt;}
.ydb{bottom:162.626667pt;}
.y2e{bottom:164.866667pt;}
.y14c{bottom:170.946667pt;}
.y60{bottom:174.466667pt;}
.y12f{bottom:178.306667pt;}
.y82{bottom:179.266667pt;}
.yda{bottom:179.586667pt;}
.yb1{bottom:180.226667pt;}
.y2d{bottom:181.826667pt;}
.y10f{bottom:186.306667pt;}
.y5f{bottom:191.426667pt;}
.y81{bottom:195.906667pt;}
.yd9{bottom:196.546667pt;}
.y2c{bottom:198.786667pt;}
.yaf{bottom:199.426667pt;}
.y17e{bottom:201.666667pt;}
.y14b{bottom:201.986667pt;}
.y5e{bottom:208.386667pt;}
.y80{bottom:212.866667pt;}
.yd8{bottom:213.506667pt;}
.y2b{bottom:215.426667pt;}
.y17d{bottom:217.026667pt;}
.y14a{bottom:218.946667pt;}
.yae{bottom:219.266667pt;}
.y5d{bottom:225.026667pt;}
.y7f{bottom:229.826667pt;}
.yd7{bottom:230.146667pt;}
.y2a{bottom:232.386667pt;}
.y10c{bottom:233.026667pt;}
.y149{bottom:237.213333pt;}
.yad{bottom:238.493333pt;}
.y5c{bottom:242.013333pt;}
.y7e{bottom:246.493333pt;}
.yd6{bottom:247.133333pt;}
.y17c{bottom:247.773333pt;}
.y29{bottom:249.373333pt;}
.y148{bottom:253.853333pt;}
.yac{bottom:258.013333pt;}
.y5b{bottom:258.973333pt;}
.y17b{bottom:263.133333pt;}
.y7d{bottom:263.453333pt;}
.yd5{bottom:264.093333pt;}
.y108{bottom:264.413333pt;}
.y28{bottom:266.013333pt;}
.y147{bottom:270.813333pt;}
.y5a{bottom:275.613333pt;}
.yab{bottom:277.213333pt;}
.y17a{bottom:278.493333pt;}
.y7c{bottom:280.413333pt;}
.yd4{bottom:280.733333pt;}
.y27{bottom:282.973333pt;}
.y146{bottom:287.773333pt;}
.y59{bottom:292.573333pt;}
.y179{bottom:293.853333pt;}
.yaa{bottom:296.733333pt;}
.y7b{bottom:297.053333pt;}
.yd3{bottom:297.693333pt;}
.y107{bottom:299.293333pt;}
.y26{bottom:299.933333pt;}
.y145{bottom:304.733333pt;}
.y178{bottom:309.213333pt;}
.y58{bottom:309.533333pt;}
.yd2{bottom:312.733333pt;}
.y7a{bottom:314.013333pt;}
.ya9{bottom:316.253333pt;}
.y25{bottom:316.573333pt;}
.y103{bottom:318.813333pt;}
.y144{bottom:321.373333pt;}
.y177{bottom:324.573333pt;}
.y57{bottom:326.493333pt;}
.y79{bottom:330.973333pt;}
.yd1{bottom:331.613333pt;}
.y24{bottom:333.533333pt;}
.ya8{bottom:335.773333pt;}
.y101{bottom:338.333333pt;}
.y176{bottom:339.933333pt;}
.y56{bottom:343.133333pt;}
.y78{bottom:347.933333pt;}
.yd0{bottom:348.253333pt;}
.y23{bottom:350.493333pt;}
.ya7{bottom:355.333333pt;}
.y143{bottom:356.613333pt;}
.y55{bottom:360.133333pt;}
.y77{bottom:364.613333pt;}
.ycf{bottom:365.253333pt;}
.y22{bottom:367.493333pt;}
.yfd{bottom:369.733333pt;}
.y175{bottom:370.373333pt;}
.y142{bottom:373.573333pt;}
.ya6{bottom:374.533333pt;}
.y54{bottom:377.093333pt;}
.y76{bottom:381.573333pt;}
.yce{bottom:382.213333pt;}
.y21{bottom:384.773333pt;}
.y174{bottom:385.733333pt;}
.yfb{bottom:387.013333pt;}
.y141{bottom:390.533333pt;}
.y53{bottom:393.733333pt;}
.ya4{bottom:394.053333pt;}
.y75{bottom:398.533333pt;}
.ycd{bottom:398.853333pt;}
.y173{bottom:401.093333pt;}
.y20{bottom:405.573333pt;}
.yf4{bottom:406.853333pt;}
.y140{bottom:407.493333pt;}
.y52{bottom:410.693333pt;}
.y12e{bottom:411.653333pt;}
.ya2{bottom:413.573333pt;}
.y74{bottom:415.173333pt;}
.ycc{bottom:415.813333pt;}
.y172{bottom:416.453333pt;}
.y1f{bottom:422.213333pt;}
.y13f{bottom:424.133333pt;}
.y51{bottom:427.653333pt;}
.y12d{bottom:428.613333pt;}
.y171{bottom:431.813333pt;}
.y73{bottom:432.133333pt;}
.ycb{bottom:432.773333pt;}
.ya0{bottom:433.413333pt;}
.yf7{bottom:435.973333pt;}
.y1e{bottom:437.893333pt;}
.y13e{bottom:441.093333pt;}
.y50{bottom:444.293333pt;}
.y12c{bottom:445.573333pt;}
.y170{bottom:447.173333pt;}
.y72{bottom:449.093333pt;}
.yca{bottom:449.733333pt;}
.y9e{bottom:453.573333pt;}
.y1d{bottom:455.173333pt;}
.y13d{bottom:458.053333pt;}
.yf3{bottom:460.293333pt;}
.y4f{bottom:461.253333pt;}
.y12b{bottom:462.213333pt;}
.y16f{bottom:462.533333pt;}
.y71{bottom:465.733333pt;}
.yc9{bottom:466.693333pt;}
.y1c{bottom:474.720000pt;}
.y13c{bottom:475.360000pt;}
.y9d{bottom:476.640000pt;}
.y16e{bottom:477.920000pt;}
.y4e{bottom:478.240000pt;}
.y12a{bottom:479.520000pt;}
.y70{bottom:482.720000pt;}
.yc8{bottom:483.360000pt;}
.y1b{bottom:491.360000pt;}
.yf2{bottom:492.640000pt;}
.y16d{bottom:493.280000pt;}
.y4d{bottom:495.200000pt;}
.y13b{bottom:496.160000pt;}
.y129{bottom:497.760000pt;}
.y6f{bottom:499.680000pt;}
.yc7{bottom:500.320000pt;}
.y1a{bottom:506.720000pt;}
.y16c{bottom:508.640000pt;}
.y9c{bottom:508.960000pt;}
.yf1{bottom:509.600000pt;}
.y4c{bottom:511.840000pt;}
.y13a{bottom:513.120000pt;}
.y128{bottom:514.400000pt;}
.y6e{bottom:516.640000pt;}
.yc6{bottom:517.280000pt;}
.y19{bottom:521.760000pt;}
.y16b{bottom:524.000000pt;}
.y9b{bottom:525.600000pt;}
.yf0{bottom:526.560000pt;}
.y4b{bottom:528.800000pt;}
.y139{bottom:530.080000pt;}
.y127{bottom:531.360000pt;}
.y6d{bottom:533.280000pt;}
.yc5{bottom:534.240000pt;}
.y18{bottom:537.120000pt;}
.y16a{bottom:539.360000pt;}
.y9a{bottom:542.560000pt;}
.yef{bottom:543.200000pt;}
.y4a{bottom:545.760000pt;}
.y138{bottom:547.040000pt;}
.y126{bottom:548.320000pt;}
.y6c{bottom:550.240000pt;}
.yc4{bottom:551.200000pt;}
.y17{bottom:552.480000pt;}
.y169{bottom:556.640000pt;}
.y99{bottom:559.520000pt;}
.yee{bottom:560.800000pt;}
.y49{bottom:562.400000pt;}
.y137{bottom:563.680000pt;}
.y125{bottom:564.960000pt;}
.y6b{bottom:567.200000pt;}
.y16{bottom:567.840000pt;}
.yc3{bottom:568.160000pt;}
.y168{bottom:574.880000pt;}
.y98{bottom:576.480000pt;}
.y48{bottom:579.360000pt;}
.y136{bottom:580.640000pt;}
.yed{bottom:581.600000pt;}
.y124{bottom:581.920000pt;}
.y15{bottom:583.200000pt;}
.y6a{bottom:583.840000pt;}
.yc2{bottom:584.800000pt;}
.y167{bottom:591.200000pt;}
.y97{bottom:594.746667pt;}
.y47{bottom:596.346667pt;}
.y135{bottom:597.306667pt;}
.y14{bottom:598.586667pt;}
.y69{bottom:600.826667pt;}
.yc1{bottom:601.786667pt;}
.y166{bottom:606.586667pt;}
.y96{bottom:611.706667pt;}
.y134{bottom:612.666667pt;}
.y46{bottom:612.986667pt;}
.y13{bottom:613.946667pt;}
.y123{bottom:614.266667pt;}
.yec{bottom:615.546667pt;}
.y68{bottom:617.786667pt;}
.yc0{bottom:618.746667pt;}
.y165{bottom:621.946667pt;}
.y133{bottom:624.506667pt;}
.y122{bottom:627.706667pt;}
.y95{bottom:628.346667pt;}
.y12{bottom:629.306667pt;}
.y45{bottom:629.946667pt;}
.yeb{bottom:632.506667pt;}
.y67{bottom:634.746667pt;}
.ybf{bottom:636.986667pt;}
.y164{bottom:637.306667pt;}
.y11{bottom:644.986667pt;}
.y94{bottom:645.306667pt;}
.y44{bottom:646.906667pt;}
.yea{bottom:649.146667pt;}
.y66{bottom:651.386667pt;}
.y163{bottom:652.666667pt;}
.y10{bottom:662.266667pt;}
.y43{bottom:663.866667pt;}
.ye9{bottom:666.106667pt;}
.y162{bottom:668.026667pt;}
.y65{bottom:668.346667pt;}
.ybe{bottom:668.986667pt;}
.y93{bottom:678.906667pt;}
.y42{bottom:680.506667pt;}
.ybd{bottom:681.146667pt;}
.yf{bottom:681.786667pt;}
.ye8{bottom:683.066667pt;}
.y161{bottom:683.386667pt;}
.y64{bottom:685.306667pt;}
.y92{bottom:695.866667pt;}
.y41{bottom:698.106667pt;}
.y160{bottom:698.746667pt;}
.ye{bottom:699.066667pt;}
.ye7{bottom:700.026667pt;}
.y63{bottom:701.946667pt;}
.y91{bottom:712.866667pt;}
.y15f{bottom:714.146667pt;}
.ye6{bottom:717.026667pt;}
.y40{bottom:718.946667pt;}
.yd{bottom:723.426667pt;}
.y15e{bottom:729.506667pt;}
.y90{bottom:729.826667pt;}
.ye5{bottom:733.986667pt;}
.yc{bottom:735.906667pt;}
.y15d{bottom:744.546667pt;}
.y8f{bottom:748.066667pt;}
.ye4{bottom:750.626667pt;}
.y3f{bottom:752.546667pt;}
.y15c{bottom:759.906667pt;}
.yb{bottom:760.226667pt;}
.y8e{bottom:765.026667pt;}
.ye3{bottom:767.586667pt;}
.y3e{bottom:769.506667pt;}
.y15b{bottom:775.266667pt;}
.ya{bottom:778.786667pt;}
.y8d{bottom:781.666667pt;}
.ye2{bottom:784.546667pt;}
.y3d{bottom:786.466667pt;}
.y15a{bottom:790.626667pt;}
.y8c{bottom:798.626667pt;}
.ye1{bottom:802.786667pt;}
.y3c{bottom:803.426667pt;}
.y159{bottom:805.986667pt;}
.y9{bottom:808.866667pt;}
.y8b{bottom:815.586667pt;}
.ye0{bottom:819.746667pt;}
.y3b{bottom:820.066667pt;}
.y158{bottom:821.346667pt;}
.y8{bottom:826.466667pt;}
.y121{bottom:827.746667pt;}
.y8a{bottom:832.573333pt;}
.y132{bottom:835.453333pt;}
.ydf{bottom:836.733333pt;}
.y3a{bottom:837.053333pt;}
.y120{bottom:846.333333pt;}
.y89{bottom:849.213333pt;}
.y157{bottom:852.093333pt;}
.y131{bottom:852.413333pt;}
.yde{bottom:853.693333pt;}
.y39{bottom:854.013333pt;}
.y11f{bottom:863.293333pt;}
.y88{bottom:866.173333pt;}
.y7{bottom:866.493333pt;}
.y156{bottom:867.453333pt;}
.ybc{bottom:869.373333pt;}
.y38{bottom:870.653333pt;}
.y11e{bottom:880.253333pt;}
.y155{bottom:882.813333pt;}
.y87{bottom:883.133333pt;}
.ybb{bottom:886.013333pt;}
.y37{bottom:887.613333pt;}
.y6{bottom:889.213333pt;}
.y11d{bottom:897.213333pt;}
.y154{bottom:898.173333pt;}
.y86{bottom:900.413333pt;}
.yba{bottom:902.973333pt;}
.y36{bottom:904.573333pt;}
.y153{bottom:913.533333pt;}
.y11c{bottom:915.453333pt;}
.y5{bottom:919.293333pt;}
.yb9{bottom:919.933333pt;}
.y35{bottom:921.213333pt;}
.y152{bottom:928.573333pt;}
.y11b{bottom:932.413333pt;}
.yb8{bottom:936.573333pt;}
.y34{bottom:938.173333pt;}
.y151{bottom:943.933333pt;}
.y4{bottom:949.093333pt;}
.yb7{bottom:953.573333pt;}
.y33{bottom:955.173333pt;}
.y150{bottom:959.333333pt;}
.y119{bottom:963.173333pt;}
.yb6{bottom:970.533333pt;}
.y32{bottom:972.133333pt;}
.y14f{bottom:974.693333pt;}
.y3{bottom:979.173333pt;}
.y118{bottom:983.653333pt;}
.yb5{bottom:987.493333pt;}
.ydd{bottom:988.453333pt;}
.y31{bottom:988.773333pt;}
.y14e{bottom:990.053333pt;}
.y1{bottom:1015.333333pt;}
.h20{height:16.640000pt;}
.h17{height:17.280000pt;}
.h12{height:17.600000pt;}
.h13{height:17.920000pt;}
.h15{height:17.952000pt;}
.hf{height:18.240000pt;}
.h14{height:18.272000pt;}
.h16{height:18.560000pt;}
.h11{height:18.880000pt;}
.h1e{height:19.200000pt;}
.h29{height:19.840000pt;}
.h1c{height:20.160000pt;}
.h1d{height:28.480000pt;}
.h27{height:30.720000pt;}
.h21{height:30.752000pt;}
.h24{height:34.240000pt;}
.h1f{height:36.480000pt;}
.h28{height:38.400000pt;}
.h8{height:41.456250pt;}
.h2b{height:44.031250pt;}
.h26{height:46.080000pt;}
.h2{height:47.737500pt;}
.h1b{height:49.280000pt;}
.h22{height:50.272000pt;}
.hb{height:52.736250pt;}
.h3{height:52.762500pt;}
.h23{height:53.760000pt;}
.h10{height:54.180000pt;}
.h2c{height:55.256809pt;}
.h7{height:57.787500pt;}
.he{height:60.300000pt;}
.h18{height:60.519362pt;}
.h1a{height:61.295000pt;}
.h9{height:62.812500pt;}
.h19{height:65.467500pt;}
.h2a{height:65.574167pt;}
.hd{height:66.625000pt;}
.h5{height:67.837500pt;}
.h6{height:68.395417pt;}
.ha{height:69.660000pt;}
.h4{height:71.950625pt;}
.hc{height:77.285000pt;}
.h25{height:77.472000pt;}
.h2d{height:84.168750pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:64.960000pt;}
.wb{width:74.912000pt;}
.wa{width:79.712000pt;}
.w6{width:100.544000pt;}
.w7{width:103.392000pt;}
.w9{width:107.552000pt;}
.w8{width:155.586667pt;}
.w3{width:194.973333pt;}
.w4{width:259.293333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:1.280000pt;}
.xf{left:6.080000pt;}
.x15{left:9.282667pt;}
.x17{left:18.586667pt;}
.x20{left:24.640000pt;}
.x1a{left:29.120000pt;}
.x1f{left:30.080000pt;}
.x14{left:33.282667pt;}
.x1c{left:44.826667pt;}
.x19{left:52.800000pt;}
.x1e{left:54.746667pt;}
.x22{left:102.466667pt;}
.x2{left:109.471988pt;}
.x1{left:116.191988pt;}
.x9{left:126.783988pt;}
.x12{left:128.383988pt;}
.x13{left:129.664000pt;}
.xb{left:142.146655pt;}
.x28{left:147.266655pt;}
.x4{left:165.186655pt;}
.xe{left:169.986667pt;}
.x5{left:180.866655pt;}
.x6{left:192.386655pt;}
.x16{left:195.266667pt;}
.x27{left:241.373322pt;}
.x8{left:279.813322pt;}
.x18{left:296.453333pt;}
.xc{left:335.173322pt;}
.xa{left:349.573322pt;}
.x10{left:365.600000pt;}
.x7{left:371.359988pt;}
.x3{left:398.239988pt;}
.x1b{left:400.480000pt;}
.x21{left:481.146667pt;}
.x1d{left:556.706667pt;}
.x11{left:591.586655pt;}
.x25{left:615.293322pt;}
.x26{left:622.333322pt;}
.x24{left:642.173322pt;}
.xd{left:671.293322pt;}
}




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