
    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_9e3a3678c2372db492cb2d6b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4a2905ecfb64119e080b0948.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_775298bd32097cf88f5da7d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_b1713226b2a30446f233d6d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_7b831f3a3f75697db727be28.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_4eca3fc3213a7659ffb28063.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006836;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fc7184d4272c6cf78ea989ac.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_187db9270daa0d79273d6668.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7da33a5ec663512d28ed5fb4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_be873f1344c4b9249ea32e23.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.241699;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5fb2655610ab9d489bc92f8f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.241699;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_7953bbaaf4f18460563a9573.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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:-33.120000px;}
.v3{vertical-align:-20.880000px;}
.v6{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.160000px;}
.vb{vertical-align:3.600000px;}
.v5{vertical-align:12.240000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:33.120000px;}
.v8{vertical-align:40.320000px;}
.v7{vertical-align:46.080000px;}
.v9{vertical-align:48.240000px;}
.vc{vertical-align:55.440000px;}
.lsa{letter-spacing:-0.924000px;}
.lsb{letter-spacing:-0.612000px;}
.ls14{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.513600px;}
.ls18{letter-spacing:-0.277200px;}
.ls25{letter-spacing:-0.106800px;}
.lsf{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.192960px;}
.ls24{letter-spacing:0.197280px;}
.ls9{letter-spacing:0.206400px;}
.ls28{letter-spacing:0.206640px;}
.ls22{letter-spacing:0.238320px;}
.ls27{letter-spacing:0.259800px;}
.ls26{letter-spacing:0.259920px;}
.ls2a{letter-spacing:0.282720px;}
.ls10{letter-spacing:0.350640px;}
.ls5{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.399600px;}
.ls3{letter-spacing:1.330560px;}
.ls7{letter-spacing:1.386000px;}
.ls2{letter-spacing:1.698000px;}
.ls0{letter-spacing:2.052000px;}
.ls8{letter-spacing:2.106000px;}
.ls1{letter-spacing:2.448000px;}
.ls4{letter-spacing:2.520000px;}
.ls12{letter-spacing:3.548160px;}
.ls13{letter-spacing:3.555360px;}
.ls11{letter-spacing:3.828960px;}
.ls1e{letter-spacing:12.959280px;}
.ls1c{letter-spacing:13.491360px;}
.ls17{letter-spacing:13.679280px;}
.ls1b{letter-spacing:17.279280px;}
.ls15{letter-spacing:46.026720px;}
.ls2d{letter-spacing:64.026720px;}
.ls2b{letter-spacing:64.746720px;}
.ls1f{letter-spacing:89.279280px;}
.ls19{letter-spacing:90.119280px;}
.ls20{letter-spacing:92.999280px;}
.ls1d{letter-spacing:93.599280px;}
.ls1a{letter-spacing:94.439280px;}
.ls16{letter-spacing:166.319280px;}
.ls21{letter-spacing:283.679280px;}
.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;}
}
.ws16{word-spacing:-59.966400px;}
.ws10{word-spacing:-59.760000px;}
.ws23{word-spacing:-59.482800px;}
.ws1d{word-spacing:-46.787040px;}
.ws28{word-spacing:-46.280400px;}
.ws15{word-spacing:-45.383760px;}
.ws22{word-spacing:-45.263760px;}
.ws25{word-spacing:-44.756880px;}
.ws19{word-spacing:-44.296800px;}
.ws2a{word-spacing:-43.909920px;}
.ws14{word-spacing:-43.789920px;}
.ws13{word-spacing:-43.696800px;}
.ws12{word-spacing:-43.576800px;}
.ws29{word-spacing:-43.189920px;}
.ws0{word-spacing:-18.665280px;}
.ws3{word-spacing:-17.418240px;}
.ws4{word-spacing:-16.668240px;}
.ws1{word-spacing:-16.613280px;}
.wsa{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.ws2b{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.146400px;}
.ws2{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws1b{word-spacing:-14.833200px;}
.wse{word-spacing:-14.426400px;}
.ws8{word-spacing:-14.220000px;}
.wsb{word-spacing:-13.860000px;}
.wsc{word-spacing:-12.060000px;}
.ws9{word-spacing:-10.440000px;}
.ws1f{word-spacing:-1.385520px;}
.ws1e{word-spacing:-0.665520px;}
.wsd{word-spacing:0.000000px;}
.ws1c{word-spacing:1.828080px;}
.ws27{word-spacing:1.973520px;}
.ws18{word-spacing:1.987920px;}
.ws24{word-spacing:2.026800px;}
.ws11{word-spacing:2.242800px;}
.ws21{word-spacing:2.294160px;}
.ws26{word-spacing:2.340000px;}
.ws17{word-spacing:2.814480px;}
.ws1a{word-spacing:2.841840px;}
.ws20{word-spacing:35.827920px;}
._3{margin-left:-10.100880px;}
._9{margin-left:-5.086560px;}
._4{margin-left:-3.644400px;}
._d{margin-left:-2.595840px;}
._2{margin-left:-1.331520px;}
._0{width:1.374480px;}
._1{width:3.016800px;}
._7{width:4.393680px;}
._a{width:5.704080px;}
._8{width:6.852960px;}
._b{width:7.990320px;}
._c{width:9.936000px;}
._e{width:11.653200px;}
._12{width:12.682080px;}
._f{width:13.685040px;}
._13{width:16.652880px;}
._10{width:17.775360px;}
._11{width:20.318400px;}
._14{width:21.812400px;}
._15{width:25.876080px;}
._16{width:27.011520px;}
._6{width:42.644160px;}
._18{width:58.445280px;}
._17{width:59.700240px;}
._5{width:201.060000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:23.760000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:108.000000px;}
.fs4{font-size:144.000000px;}
.fs5{font-size:149.760000px;}
.y0{bottom:0.000000px;}
.y115{bottom:3.240000px;}
.y7{bottom:25.560000px;}
.y6{bottom:45.900000px;}
.yda{bottom:86.976000px;}
.y14f{bottom:90.756000px;}
.y3f{bottom:91.656000px;}
.y7a{bottom:92.916000px;}
.yb1{bottom:95.616000px;}
.yd9{bottom:97.056000px;}
.y112{bottom:102.276000px;}
.y14e{bottom:108.756000px;}
.y3e{bottom:108.936000px;}
.y79{bottom:110.016000px;}
.yb0{bottom:112.896000px;}
.y15f{bottom:117.036000px;}
.y111{bottom:119.556000px;}
.yd8{bottom:123.696000px;}
.y3d{bottom:126.216000px;}
.y14d{bottom:126.756000px;}
.y78{bottom:127.296000px;}
.yaf{bottom:130.176000px;}
.y15e{bottom:134.316000px;}
.y110{bottom:136.836000px;}
.yd7{bottom:140.976000px;}
.y3c{bottom:143.496000px;}
.y77{bottom:144.576000px;}
.y14c{bottom:144.756000px;}
.yae{bottom:147.276000px;}
.y15d{bottom:151.410000px;}
.y10f{bottom:154.110000px;}
.yd6{bottom:158.250000px;}
.y3b{bottom:160.770000px;}
.y76{bottom:161.850000px;}
.y14b{bottom:164.370000px;}
.yad{bottom:164.550000px;}
.y15c{bottom:168.690000px;}
.y10e{bottom:171.390000px;}
.yd5{bottom:173.550000px;}
.y14a{bottom:174.630000px;}
.y3a{bottom:177.870000px;}
.y75{bottom:179.130000px;}
.yac{bottom:181.830000px;}
.yd4{bottom:182.370000px;}
.y15b{bottom:185.970000px;}
.y10d{bottom:188.670000px;}
.y149{bottom:191.010000px;}
.y39{bottom:195.150000px;}
.y74{bottom:196.410000px;}
.yab{bottom:199.110000px;}
.yd3{bottom:199.650000px;}
.y15a{bottom:203.250000px;}
.y148{bottom:203.970000px;}
.y10c{bottom:205.770000px;}
.y38{bottom:212.430000px;}
.y73{bottom:213.510000px;}
.yd2{bottom:216.030000px;}
.yaa{bottom:216.390000px;}
.y147{bottom:220.530000px;}
.y10b{bottom:223.050000px;}
.yd1{bottom:228.990000px;}
.y37{bottom:229.710000px;}
.y72{bottom:230.790000px;}
.ya9{bottom:233.670000px;}
.y146{bottom:234.930000px;}
.y159{bottom:237.810000px;}
.y10a{bottom:240.330000px;}
.yd0{bottom:246.270000px;}
.y36{bottom:246.990000px;}
.y71{bottom:248.070000px;}
.ya8{bottom:250.950000px;}
.y145{bottom:252.210000px;}
.y158{bottom:254.910000px;}
.y109{bottom:257.610000px;}
.ycf{bottom:263.550000px;}
.y35{bottom:264.270000px;}
.y70{bottom:265.350000px;}
.ya7{bottom:265.530000px;}
.ya6{bottom:268.590000px;}
.y144{bottom:269.490000px;}
.y157{bottom:272.190000px;}
.y108{bottom:274.890000px;}
.yce{bottom:280.650000px;}
.y34{bottom:281.370000px;}
.y6f{bottom:282.630000px;}
.ya5{bottom:286.050000px;}
.y143{bottom:286.770000px;}
.y156{bottom:289.470000px;}
.y107{bottom:291.990000px;}
.ycd{bottom:297.930000px;}
.y33{bottom:298.650000px;}
.y6e{bottom:299.730000px;}
.ya4{bottom:303.330000px;}
.y142{bottom:304.050000px;}
.y155{bottom:306.750000px;}
.y106{bottom:309.270000px;}
.ycc{bottom:315.210000px;}
.y32{bottom:315.930000px;}
.y6d{bottom:317.010000px;}
.ya3{bottom:320.430000px;}
.y141{bottom:321.330000px;}
.y154{bottom:324.030000px;}
.y105{bottom:326.550000px;}
.ycb{bottom:332.490000px;}
.y31{bottom:333.210000px;}
.y6c{bottom:334.290000px;}
.ya2{bottom:337.755000px;}
.y140{bottom:338.475000px;}
.y153{bottom:341.175000px;}
.y104{bottom:343.875000px;}
.yca{bottom:349.815000px;}
.y30{bottom:350.535000px;}
.y6b{bottom:351.615000px;}
.y13f{bottom:353.235000px;}
.ya1{bottom:355.035000px;}
.y152{bottom:358.455000px;}
.y103{bottom:361.155000px;}
.yc9{bottom:367.095000px;}
.y2f{bottom:367.635000px;}
.y6a{bottom:368.895000px;}
.y13e{bottom:371.235000px;}
.ya0{bottom:372.315000px;}
.y151{bottom:375.015000px;}
.y102{bottom:378.435000px;}
.yc8{bottom:384.195000px;}
.y2e{bottom:384.915000px;}
.y69{bottom:386.175000px;}
.y13d{bottom:389.235000px;}
.y9f{bottom:389.595000px;}
.y101{bottom:395.535000px;}
.yc7{bottom:401.475000px;}
.y2d{bottom:402.195000px;}
.y68{bottom:403.275000px;}
.y9e{bottom:406.875000px;}
.y13c{bottom:407.235000px;}
.y100{bottom:413.355000px;}
.yc6{bottom:418.755000px;}
.y2c{bottom:419.475000px;}
.y67{bottom:420.555000px;}
.y150{bottom:423.255000px;}
.y9d{bottom:423.975000px;}
.y13b{bottom:425.235000px;}
.yff{bottom:427.215000px;}
.yc5{bottom:436.035000px;}
.y2b{bottom:436.755000px;}
.y66{bottom:437.835000px;}
.y9c{bottom:441.255000px;}
.y13a{bottom:443.235000px;}
.yc4{bottom:453.315000px;}
.y2a{bottom:454.035000px;}
.y65{bottom:455.115000px;}
.yfe{bottom:455.295000px;}
.y9b{bottom:458.535000px;}
.y139{bottom:461.235000px;}
.yc3{bottom:470.595000px;}
.y29{bottom:471.135000px;}
.y64{bottom:472.395000px;}
.yfd{bottom:472.575000px;}
.y9a{bottom:475.815000px;}
.y138{bottom:479.235000px;}
.y28{bottom:488.415000px;}
.y63{bottom:489.675000px;}
.yfc{bottom:489.855000px;}
.y99{bottom:493.095000px;}
.y137{bottom:497.235000px;}
.yc2{bottom:501.015000px;}
.y27{bottom:505.695000px;}
.y62{bottom:506.775000px;}
.yfb{bottom:507.135000px;}
.y98{bottom:510.375000px;}
.y136{bottom:515.235000px;}
.yc1{bottom:516.675000px;}
.yfa{bottom:521.535000px;}
.y26{bottom:522.975000px;}
.yc0{bottom:523.695000px;}
.y61{bottom:524.055000px;}
.y97{bottom:527.475000px;}
.yf9{bottom:531.615000px;}
.y135{bottom:535.395000px;}
.y25{bottom:540.255000px;}
.y60{bottom:541.335000px;}
.y96{bottom:544.755000px;}
.y134{bottom:546.915000px;}
.y24{bottom:557.535000px;}
.yf8{bottom:558.255000px;}
.y5f{bottom:558.615000px;}
.y95{bottom:562.035000px;}
.y133{bottom:564.195000px;}
.y23{bottom:574.635000px;}
.yf7{bottom:575.535000px;}
.y5e{bottom:575.895000px;}
.y94{bottom:579.315000px;}
.y132{bottom:581.475000px;}
.y22{bottom:591.915000px;}
.yf6{bottom:592.815000px;}
.y5d{bottom:593.175000px;}
.y93{bottom:596.595000px;}
.y131{bottom:598.575000px;}
.yf5{bottom:607.245000px;}
.y21{bottom:609.225000px;}
.y5c{bottom:610.305000px;}
.y92{bottom:613.725000px;}
.y130{bottom:615.885000px;}
.yf4{bottom:617.325000px;}
.y20{bottom:626.505000px;}
.y5b{bottom:627.585000px;}
.y91{bottom:631.005000px;}
.y12f{bottom:633.165000px;}
.y1f{bottom:643.785000px;}
.yf3{bottom:644.145000px;}
.y5a{bottom:644.865000px;}
.y90{bottom:648.285000px;}
.y12e{bottom:650.445000px;}
.y1e{bottom:660.705000px;}
.yf2{bottom:661.425000px;}
.y59{bottom:662.145000px;}
.y8f{bottom:665.565000px;}
.y12d{bottom:667.725000px;}
.y1d{bottom:676.185000px;}
.yf1{bottom:678.525000px;}
.y58{bottom:679.425000px;}
.y8e{bottom:682.845000px;}
.y12c{bottom:684.825000px;}
.y1c{bottom:691.665000px;}
.yf0{bottom:692.925000px;}
.y57{bottom:696.525000px;}
.y8d{bottom:700.125000px;}
.y12b{bottom:702.105000px;}
.yef{bottom:703.005000px;}
.y1b{bottom:707.145000px;}
.y56{bottom:713.805000px;}
.y12a{bottom:716.865000px;}
.y8c{bottom:717.225000px;}
.y1a{bottom:722.805000px;}
.yee{bottom:729.825000px;}
.y55{bottom:731.085000px;}
.y8b{bottom:734.505000px;}
.y129{bottom:734.865000px;}
.y19{bottom:738.285000px;}
.yed{bottom:747.105000px;}
.y54{bottom:748.365000px;}
.y8a{bottom:751.785000px;}
.y128{bottom:752.865000px;}
.y18{bottom:753.765000px;}
.yec{bottom:764.385000px;}
.y53{bottom:765.645000px;}
.y89{bottom:769.065000px;}
.y17{bottom:769.245000px;}
.y127{bottom:770.865000px;}
.yeb{bottom:781.665000px;}
.y52{bottom:782.925000px;}
.y16{bottom:784.905000px;}
.y88{bottom:786.345000px;}
.ybf{bottom:786.885000px;}
.y126{bottom:788.865000px;}
.yea{bottom:791.745000px;}
.ybe{bottom:798.405000px;}
.y51{bottom:800.025000px;}
.y15{bottom:800.385000px;}
.y87{bottom:803.625000px;}
.y125{bottom:809.025000px;}
.ybd{bottom:815.685000px;}
.y14{bottom:815.865000px;}
.y50{bottom:817.305000px;}
.ye9{bottom:818.925000px;}
.y124{bottom:820.545000px;}
.y86{bottom:820.725000px;}
.y13{bottom:831.345000px;}
.ybc{bottom:832.065000px;}
.y4f{bottom:834.585000px;}
.ye8{bottom:836.025000px;}
.y123{bottom:837.825000px;}
.y85{bottom:838.005000px;}
.ybb{bottom:845.025000px;}
.y12{bottom:847.005000px;}
.y4e{bottom:851.865000px;}
.ye7{bottom:853.305000px;}
.y122{bottom:854.925000px;}
.y84{bottom:855.285000px;}
.yba{bottom:862.125000px;}
.y11{bottom:862.485000px;}
.ye6{bottom:867.705000px;}
.y4d{bottom:869.145000px;}
.y121{bottom:872.250000px;}
.y83{bottom:872.610000px;}
.ye5{bottom:877.830000px;}
.y10{bottom:878.730000px;}
.yb9{bottom:879.450000px;}
.y4c{bottom:886.470000px;}
.y120{bottom:889.530000px;}
.y82{bottom:889.890000px;}
.yb8{bottom:896.730000px;}
.yf{bottom:902.670000px;}
.y4b{bottom:903.570000px;}
.ye4{bottom:904.650000px;}
.y11f{bottom:906.810000px;}
.y81{bottom:907.170000px;}
.yb7{bottom:914.010000px;}
.ye{bottom:920.850000px;}
.ye3{bottom:921.930000px;}
.y11e{bottom:924.090000px;}
.y80{bottom:924.270000px;}
.yb6{bottom:931.290000px;}
.yd{bottom:933.810000px;}
.y4a{bottom:938.130000px;}
.ye2{bottom:939.210000px;}
.y11d{bottom:941.370000px;}
.y7f{bottom:941.550000px;}
.yb5{bottom:948.570000px;}
.yc{bottom:951.810000px;}
.ye1{bottom:953.430000px;}
.y49{bottom:955.410000px;}
.y11c{bottom:958.470000px;}
.y7e{bottom:958.830000px;}
.ye0{bottom:963.510000px;}
.yb4{bottom:964.770000px;}
.y48{bottom:972.690000px;}
.y11b{bottom:975.750000px;}
.y7d{bottom:976.110000px;}
.yb3{bottom:977.730000px;}
.yb{bottom:980.610000px;}
.y47{bottom:989.790000px;}
.ydf{bottom:990.330000px;}
.y11a{bottom:993.030000px;}
.y7c{bottom:993.390000px;}
.yb2{bottom:994.110000px;}
.y46{bottom:1007.070000px;}
.yde{bottom:1007.610000px;}
.y7b{bottom:1009.770000px;}
.y119{bottom:1010.310000px;}
.ya{bottom:1011.750000px;}
.y45{bottom:1024.350000px;}
.ydd{bottom:1024.890000px;}
.y118{bottom:1025.070000px;}
.ydc{bottom:1039.290000px;}
.y44{bottom:1041.630000px;}
.y117{bottom:1043.070000px;}
.y9{bottom:1049.010000px;}
.ydb{bottom:1049.370000px;}
.y43{bottom:1058.910000px;}
.y116{bottom:1061.070000px;}
.y42{bottom:1076.190000px;}
.y114{bottom:1079.070000px;}
.y8{bottom:1090.950000px;}
.y41{bottom:1093.290000px;}
.y113{bottom:1099.050000px;}
.y40{bottom:1110.570000px;}
.y5{bottom:1140.120000px;}
.y4{bottom:1160.280000px;}
.y3{bottom:1179.180000px;}
.y2{bottom:1196.460000px;}
.y1{bottom:1215.360000px;}
.h18{height:16.590234px;}
.h1f{height:17.280000px;}
.h17{height:21.114844px;}
.h16{height:25.136719px;}
.h1e{height:25.400391px;}
.hb{height:29.158594px;}
.h14{height:29.464453px;}
.h10{height:33.683203px;}
.h20{height:34.036523px;}
.hd{height:37.705078px;}
.hc{height:38.100586px;}
.hf{height:41.726953px;}
.he{height:42.164648px;}
.h9{height:42.290156px;}
.h15{height:43.506914px;}
.h3{height:43.681992px;}
.ha{height:44.240625px;}
.h2{height:46.251562px;}
.h6{height:48.774375px;}
.h21{height:49.255313px;}
.h13{height:53.966953px;}
.h11{height:57.571523px;}
.h5{height:63.070312px;}
.h7{height:65.884219px;}
.h12{height:69.811523px;}
.h1a{height:97.891523px;}
.h1b{height:98.071523px;}
.h19{height:103.651523px;}
.h4{height:105.257812px;}
.h8{height:105.665625px;}
.h1c{height:105.811523px;}
.h1d{height:113.011523px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:57.420000px;}
.wc{width:57.456000px;}
.w12{width:63.360000px;}
.w9{width:75.276000px;}
.we{width:75.456000px;}
.w7{width:77.076000px;}
.w6{width:78.300000px;}
.w13{width:81.396000px;}
.wb{width:82.800000px;}
.wa{width:82.980000px;}
.w11{width:83.196000px;}
.w10{width:84.240000px;}
.w14{width:88.920000px;}
.w15{width:88.956000px;}
.wf{width:109.620000px;}
.w5{width:134.136000px;}
.wd{width:180.000000px;}
.w4{width:206.310000px;}
.w3{width:210.810000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3b{left:6.660000px;}
.x24{left:8.100000px;}
.x2e{left:10.845000px;}
.x30{left:17.865000px;}
.x29{left:20.160000px;}
.x2f{left:26.100000px;}
.x6{left:63.899987px;}
.xd{left:85.139987px;}
.x43{left:86.219987px;}
.x10{left:90.935987px;}
.x41{left:93.635987px;}
.x8{left:113.435987px;}
.x11{left:117.935987px;}
.x7{left:119.915987px;}
.x42{left:131.435987px;}
.xc{left:134.315987px;}
.x44{left:144.935987px;}
.x9{left:168.149987px;}
.xb{left:172.469987px;}
.x3a{left:175.170000px;}
.x23{left:176.250000px;}
.x1{left:183.089987px;}
.x26{left:196.230000px;}
.x2{left:223.409987px;}
.x38{left:243.389987px;}
.x3c{left:259.410000px;}
.x32{left:270.570000px;}
.x27{left:274.530000px;}
.x31{left:278.174987px;}
.x21{left:281.054987px;}
.x22{left:288.434987px;}
.x13{left:313.274987px;}
.x1a{left:334.334987px;}
.x3d{left:342.615000px;}
.x3{left:344.774987px;}
.x14{left:347.474987px;}
.x28{left:351.615000px;}
.x4{left:363.134987px;}
.x18{left:381.674987px;}
.x16{left:386.534987px;}
.x20{left:397.874987px;}
.x1e{left:399.134987px;}
.x1c{left:400.394987px;}
.x33{left:405.075000px;}
.x2a{left:409.035000px;}
.x1b{left:419.114987px;}
.x15{left:424.514987px;}
.x1d{left:446.654987px;}
.x1f{left:447.734987px;}
.x39{left:451.874987px;}
.x17{left:461.954987px;}
.x19{left:465.374987px;}
.xa{left:478.904987px;}
.x34{left:480.525000px;}
.x2b{left:484.305000px;}
.x3e{left:487.365000px;}
.x5{left:494.564987px;}
.x35{left:563.325000px;}
.x2c{left:567.285000px;}
.x3f{left:576.285000px;}
.x25{left:593.385000px;}
.x36{left:646.305000px;}
.x2d{left:650.085000px;}
.x40{left:665.250000px;}
.x37{left:703.770000px;}
.x12{left:728.789987px;}
.xe{left:809.609987px;}
.xf{left:830.489987px;}
@media print{
.v1{vertical-align:-29.440000pt;}
.v3{vertical-align:-18.560000pt;}
.v6{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.920000pt;}
.vb{vertical-align:3.200000pt;}
.v5{vertical-align:10.880000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:29.440000pt;}
.v8{vertical-align:35.840000pt;}
.v7{vertical-align:40.960000pt;}
.v9{vertical-align:42.880000pt;}
.vc{vertical-align:49.280000pt;}
.lsa{letter-spacing:-0.821333pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls14{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.456533pt;}
.ls18{letter-spacing:-0.246400pt;}
.ls25{letter-spacing:-0.094933pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.171520pt;}
.ls24{letter-spacing:0.175360pt;}
.ls9{letter-spacing:0.183467pt;}
.ls28{letter-spacing:0.183680pt;}
.ls22{letter-spacing:0.211840pt;}
.ls27{letter-spacing:0.230933pt;}
.ls26{letter-spacing:0.231040pt;}
.ls2a{letter-spacing:0.251307pt;}
.ls10{letter-spacing:0.311680pt;}
.ls5{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.355200pt;}
.ls3{letter-spacing:1.182720pt;}
.ls7{letter-spacing:1.232000pt;}
.ls2{letter-spacing:1.509333pt;}
.ls0{letter-spacing:1.824000pt;}
.ls8{letter-spacing:1.872000pt;}
.ls1{letter-spacing:2.176000pt;}
.ls4{letter-spacing:2.240000pt;}
.ls12{letter-spacing:3.153920pt;}
.ls13{letter-spacing:3.160320pt;}
.ls11{letter-spacing:3.403520pt;}
.ls1e{letter-spacing:11.519360pt;}
.ls1c{letter-spacing:11.992320pt;}
.ls17{letter-spacing:12.159360pt;}
.ls1b{letter-spacing:15.359360pt;}
.ls15{letter-spacing:40.912640pt;}
.ls2d{letter-spacing:56.912640pt;}
.ls2b{letter-spacing:57.552640pt;}
.ls1f{letter-spacing:79.359360pt;}
.ls19{letter-spacing:80.106027pt;}
.ls20{letter-spacing:82.666027pt;}
.ls1d{letter-spacing:83.199360pt;}
.ls1a{letter-spacing:83.946027pt;}
.ls16{letter-spacing:147.839360pt;}
.ls21{letter-spacing:252.159360pt;}
.ws16{word-spacing:-53.303467pt;}
.ws10{word-spacing:-53.120000pt;}
.ws23{word-spacing:-52.873600pt;}
.ws1d{word-spacing:-41.588480pt;}
.ws28{word-spacing:-41.138133pt;}
.ws15{word-spacing:-40.341120pt;}
.ws22{word-spacing:-40.234453pt;}
.ws25{word-spacing:-39.783893pt;}
.ws19{word-spacing:-39.374933pt;}
.ws2a{word-spacing:-39.031040pt;}
.ws14{word-spacing:-38.924373pt;}
.ws13{word-spacing:-38.841600pt;}
.ws12{word-spacing:-38.734933pt;}
.ws29{word-spacing:-38.391040pt;}
.ws0{word-spacing:-16.591360pt;}
.ws3{word-spacing:-15.482880pt;}
.ws4{word-spacing:-14.816213pt;}
.ws1{word-spacing:-14.767360pt;}
.wsa{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws2b{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.463467pt;}
.ws2{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws1b{word-spacing:-13.185067pt;}
.wse{word-spacing:-12.823467pt;}
.ws8{word-spacing:-12.640000pt;}
.wsb{word-spacing:-12.320000pt;}
.wsc{word-spacing:-10.720000pt;}
.ws9{word-spacing:-9.280000pt;}
.ws1f{word-spacing:-1.231573pt;}
.ws1e{word-spacing:-0.591573pt;}
.wsd{word-spacing:0.000000pt;}
.ws1c{word-spacing:1.624960pt;}
.ws27{word-spacing:1.754240pt;}
.ws18{word-spacing:1.767040pt;}
.ws24{word-spacing:1.801600pt;}
.ws11{word-spacing:1.993600pt;}
.ws21{word-spacing:2.039253pt;}
.ws26{word-spacing:2.080000pt;}
.ws17{word-spacing:2.501760pt;}
.ws1a{word-spacing:2.526080pt;}
.ws20{word-spacing:31.847040pt;}
._3{margin-left:-8.978560pt;}
._9{margin-left:-4.521387pt;}
._4{margin-left:-3.239467pt;}
._d{margin-left:-2.307413pt;}
._2{margin-left:-1.183573pt;}
._0{width:1.221760pt;}
._1{width:2.681600pt;}
._7{width:3.905493pt;}
._a{width:5.070293pt;}
._8{width:6.091520pt;}
._b{width:7.102507pt;}
._c{width:8.832000pt;}
._e{width:10.358400pt;}
._12{width:11.272960pt;}
._f{width:12.164480pt;}
._13{width:14.802560pt;}
._10{width:15.800320pt;}
._11{width:18.060800pt;}
._14{width:19.388800pt;}
._15{width:23.000960pt;}
._16{width:24.010240pt;}
._6{width:37.905920pt;}
._18{width:51.951360pt;}
._17{width:53.066880pt;}
._5{width:178.720000pt;}
.fsc{font-size:21.120000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:96.000000pt;}
.fs4{font-size:128.000000pt;}
.fs5{font-size:133.120000pt;}
.y0{bottom:0.000000pt;}
.y115{bottom:2.880000pt;}
.y7{bottom:22.720000pt;}
.y6{bottom:40.800000pt;}
.yda{bottom:77.312000pt;}
.y14f{bottom:80.672000pt;}
.y3f{bottom:81.472000pt;}
.y7a{bottom:82.592000pt;}
.yb1{bottom:84.992000pt;}
.yd9{bottom:86.272000pt;}
.y112{bottom:90.912000pt;}
.y14e{bottom:96.672000pt;}
.y3e{bottom:96.832000pt;}
.y79{bottom:97.792000pt;}
.yb0{bottom:100.352000pt;}
.y15f{bottom:104.032000pt;}
.y111{bottom:106.272000pt;}
.yd8{bottom:109.952000pt;}
.y3d{bottom:112.192000pt;}
.y14d{bottom:112.672000pt;}
.y78{bottom:113.152000pt;}
.yaf{bottom:115.712000pt;}
.y15e{bottom:119.392000pt;}
.y110{bottom:121.632000pt;}
.yd7{bottom:125.312000pt;}
.y3c{bottom:127.552000pt;}
.y77{bottom:128.512000pt;}
.y14c{bottom:128.672000pt;}
.yae{bottom:130.912000pt;}
.y15d{bottom:134.586667pt;}
.y10f{bottom:136.986667pt;}
.yd6{bottom:140.666667pt;}
.y3b{bottom:142.906667pt;}
.y76{bottom:143.866667pt;}
.y14b{bottom:146.106667pt;}
.yad{bottom:146.266667pt;}
.y15c{bottom:149.946667pt;}
.y10e{bottom:152.346667pt;}
.yd5{bottom:154.266667pt;}
.y14a{bottom:155.226667pt;}
.y3a{bottom:158.106667pt;}
.y75{bottom:159.226667pt;}
.yac{bottom:161.626667pt;}
.yd4{bottom:162.106667pt;}
.y15b{bottom:165.306667pt;}
.y10d{bottom:167.706667pt;}
.y149{bottom:169.786667pt;}
.y39{bottom:173.466667pt;}
.y74{bottom:174.586667pt;}
.yab{bottom:176.986667pt;}
.yd3{bottom:177.466667pt;}
.y15a{bottom:180.666667pt;}
.y148{bottom:181.306667pt;}
.y10c{bottom:182.906667pt;}
.y38{bottom:188.826667pt;}
.y73{bottom:189.786667pt;}
.yd2{bottom:192.026667pt;}
.yaa{bottom:192.346667pt;}
.y147{bottom:196.026667pt;}
.y10b{bottom:198.266667pt;}
.yd1{bottom:203.546667pt;}
.y37{bottom:204.186667pt;}
.y72{bottom:205.146667pt;}
.ya9{bottom:207.706667pt;}
.y146{bottom:208.826667pt;}
.y159{bottom:211.386667pt;}
.y10a{bottom:213.626667pt;}
.yd0{bottom:218.906667pt;}
.y36{bottom:219.546667pt;}
.y71{bottom:220.506667pt;}
.ya8{bottom:223.066667pt;}
.y145{bottom:224.186667pt;}
.y158{bottom:226.586667pt;}
.y109{bottom:228.986667pt;}
.ycf{bottom:234.266667pt;}
.y35{bottom:234.906667pt;}
.y70{bottom:235.866667pt;}
.ya7{bottom:236.026667pt;}
.ya6{bottom:238.746667pt;}
.y144{bottom:239.546667pt;}
.y157{bottom:241.946667pt;}
.y108{bottom:244.346667pt;}
.yce{bottom:249.466667pt;}
.y34{bottom:250.106667pt;}
.y6f{bottom:251.226667pt;}
.ya5{bottom:254.266667pt;}
.y143{bottom:254.906667pt;}
.y156{bottom:257.306667pt;}
.y107{bottom:259.546667pt;}
.ycd{bottom:264.826667pt;}
.y33{bottom:265.466667pt;}
.y6e{bottom:266.426667pt;}
.ya4{bottom:269.626667pt;}
.y142{bottom:270.266667pt;}
.y155{bottom:272.666667pt;}
.y106{bottom:274.906667pt;}
.ycc{bottom:280.186667pt;}
.y32{bottom:280.826667pt;}
.y6d{bottom:281.786667pt;}
.ya3{bottom:284.826667pt;}
.y141{bottom:285.626667pt;}
.y154{bottom:288.026667pt;}
.y105{bottom:290.266667pt;}
.ycb{bottom:295.546667pt;}
.y31{bottom:296.186667pt;}
.y6c{bottom:297.146667pt;}
.ya2{bottom:300.226667pt;}
.y140{bottom:300.866667pt;}
.y153{bottom:303.266667pt;}
.y104{bottom:305.666667pt;}
.yca{bottom:310.946667pt;}
.y30{bottom:311.586667pt;}
.y6b{bottom:312.546667pt;}
.y13f{bottom:313.986667pt;}
.ya1{bottom:315.586667pt;}
.y152{bottom:318.626667pt;}
.y103{bottom:321.026667pt;}
.yc9{bottom:326.306667pt;}
.y2f{bottom:326.786667pt;}
.y6a{bottom:327.906667pt;}
.y13e{bottom:329.986667pt;}
.ya0{bottom:330.946667pt;}
.y151{bottom:333.346667pt;}
.y102{bottom:336.386667pt;}
.yc8{bottom:341.506667pt;}
.y2e{bottom:342.146667pt;}
.y69{bottom:343.266667pt;}
.y13d{bottom:345.986667pt;}
.y9f{bottom:346.306667pt;}
.y101{bottom:351.586667pt;}
.yc7{bottom:356.866667pt;}
.y2d{bottom:357.506667pt;}
.y68{bottom:358.466667pt;}
.y9e{bottom:361.666667pt;}
.y13c{bottom:361.986667pt;}
.y100{bottom:367.426667pt;}
.yc6{bottom:372.226667pt;}
.y2c{bottom:372.866667pt;}
.y67{bottom:373.826667pt;}
.y150{bottom:376.226667pt;}
.y9d{bottom:376.866667pt;}
.y13b{bottom:377.986667pt;}
.yff{bottom:379.746667pt;}
.yc5{bottom:387.586667pt;}
.y2b{bottom:388.226667pt;}
.y66{bottom:389.186667pt;}
.y9c{bottom:392.226667pt;}
.y13a{bottom:393.986667pt;}
.yc4{bottom:402.946667pt;}
.y2a{bottom:403.586667pt;}
.y65{bottom:404.546667pt;}
.yfe{bottom:404.706667pt;}
.y9b{bottom:407.586667pt;}
.y139{bottom:409.986667pt;}
.yc3{bottom:418.306667pt;}
.y29{bottom:418.786667pt;}
.y64{bottom:419.906667pt;}
.yfd{bottom:420.066667pt;}
.y9a{bottom:422.946667pt;}
.y138{bottom:425.986667pt;}
.y28{bottom:434.146667pt;}
.y63{bottom:435.266667pt;}
.yfc{bottom:435.426667pt;}
.y99{bottom:438.306667pt;}
.y137{bottom:441.986667pt;}
.yc2{bottom:445.346667pt;}
.y27{bottom:449.506667pt;}
.y62{bottom:450.466667pt;}
.yfb{bottom:450.786667pt;}
.y98{bottom:453.666667pt;}
.y136{bottom:457.986667pt;}
.yc1{bottom:459.266667pt;}
.yfa{bottom:463.586667pt;}
.y26{bottom:464.866667pt;}
.yc0{bottom:465.506667pt;}
.y61{bottom:465.826667pt;}
.y97{bottom:468.866667pt;}
.yf9{bottom:472.546667pt;}
.y135{bottom:475.906667pt;}
.y25{bottom:480.226667pt;}
.y60{bottom:481.186667pt;}
.y96{bottom:484.226667pt;}
.y134{bottom:486.146667pt;}
.y24{bottom:495.586667pt;}
.yf8{bottom:496.226667pt;}
.y5f{bottom:496.546667pt;}
.y95{bottom:499.586667pt;}
.y133{bottom:501.506667pt;}
.y23{bottom:510.786667pt;}
.yf7{bottom:511.586667pt;}
.y5e{bottom:511.906667pt;}
.y94{bottom:514.946667pt;}
.y132{bottom:516.866667pt;}
.y22{bottom:526.146667pt;}
.yf6{bottom:526.946667pt;}
.y5d{bottom:527.266667pt;}
.y93{bottom:530.306667pt;}
.y131{bottom:532.066667pt;}
.yf5{bottom:539.773333pt;}
.y21{bottom:541.533333pt;}
.y5c{bottom:542.493333pt;}
.y92{bottom:545.533333pt;}
.y130{bottom:547.453333pt;}
.yf4{bottom:548.733333pt;}
.y20{bottom:556.893333pt;}
.y5b{bottom:557.853333pt;}
.y91{bottom:560.893333pt;}
.y12f{bottom:562.813333pt;}
.y1f{bottom:572.253333pt;}
.yf3{bottom:572.573333pt;}
.y5a{bottom:573.213333pt;}
.y90{bottom:576.253333pt;}
.y12e{bottom:578.173333pt;}
.y1e{bottom:587.293333pt;}
.yf2{bottom:587.933333pt;}
.y59{bottom:588.573333pt;}
.y8f{bottom:591.613333pt;}
.y12d{bottom:593.533333pt;}
.y1d{bottom:601.053333pt;}
.yf1{bottom:603.133333pt;}
.y58{bottom:603.933333pt;}
.y8e{bottom:606.973333pt;}
.y12c{bottom:608.733333pt;}
.y1c{bottom:614.813333pt;}
.yf0{bottom:615.933333pt;}
.y57{bottom:619.133333pt;}
.y8d{bottom:622.333333pt;}
.y12b{bottom:624.093333pt;}
.yef{bottom:624.893333pt;}
.y1b{bottom:628.573333pt;}
.y56{bottom:634.493333pt;}
.y12a{bottom:637.213333pt;}
.y8c{bottom:637.533333pt;}
.y1a{bottom:642.493333pt;}
.yee{bottom:648.733333pt;}
.y55{bottom:649.853333pt;}
.y8b{bottom:652.893333pt;}
.y129{bottom:653.213333pt;}
.y19{bottom:656.253333pt;}
.yed{bottom:664.093333pt;}
.y54{bottom:665.213333pt;}
.y8a{bottom:668.253333pt;}
.y128{bottom:669.213333pt;}
.y18{bottom:670.013333pt;}
.yec{bottom:679.453333pt;}
.y53{bottom:680.573333pt;}
.y89{bottom:683.613333pt;}
.y17{bottom:683.773333pt;}
.y127{bottom:685.213333pt;}
.yeb{bottom:694.813333pt;}
.y52{bottom:695.933333pt;}
.y16{bottom:697.693333pt;}
.y88{bottom:698.973333pt;}
.ybf{bottom:699.453333pt;}
.y126{bottom:701.213333pt;}
.yea{bottom:703.773333pt;}
.ybe{bottom:709.693333pt;}
.y51{bottom:711.133333pt;}
.y15{bottom:711.453333pt;}
.y87{bottom:714.333333pt;}
.y125{bottom:719.133333pt;}
.ybd{bottom:725.053333pt;}
.y14{bottom:725.213333pt;}
.y50{bottom:726.493333pt;}
.ye9{bottom:727.933333pt;}
.y124{bottom:729.373333pt;}
.y86{bottom:729.533333pt;}
.y13{bottom:738.973333pt;}
.ybc{bottom:739.613333pt;}
.y4f{bottom:741.853333pt;}
.ye8{bottom:743.133333pt;}
.y123{bottom:744.733333pt;}
.y85{bottom:744.893333pt;}
.ybb{bottom:751.133333pt;}
.y12{bottom:752.893333pt;}
.y4e{bottom:757.213333pt;}
.ye7{bottom:758.493333pt;}
.y122{bottom:759.933333pt;}
.y84{bottom:760.253333pt;}
.yba{bottom:766.333333pt;}
.y11{bottom:766.653333pt;}
.ye6{bottom:771.293333pt;}
.y4d{bottom:772.573333pt;}
.y121{bottom:775.333333pt;}
.y83{bottom:775.653333pt;}
.ye5{bottom:780.293333pt;}
.y10{bottom:781.093333pt;}
.yb9{bottom:781.733333pt;}
.y4c{bottom:787.973333pt;}
.y120{bottom:790.693333pt;}
.y82{bottom:791.013333pt;}
.yb8{bottom:797.093333pt;}
.yf{bottom:802.373333pt;}
.y4b{bottom:803.173333pt;}
.ye4{bottom:804.133333pt;}
.y11f{bottom:806.053333pt;}
.y81{bottom:806.373333pt;}
.yb7{bottom:812.453333pt;}
.ye{bottom:818.533333pt;}
.ye3{bottom:819.493333pt;}
.y11e{bottom:821.413333pt;}
.y80{bottom:821.573333pt;}
.yb6{bottom:827.813333pt;}
.yd{bottom:830.053333pt;}
.y4a{bottom:833.893333pt;}
.ye2{bottom:834.853333pt;}
.y11d{bottom:836.773333pt;}
.y7f{bottom:836.933333pt;}
.yb5{bottom:843.173333pt;}
.yc{bottom:846.053333pt;}
.ye1{bottom:847.493333pt;}
.y49{bottom:849.253333pt;}
.y11c{bottom:851.973333pt;}
.y7e{bottom:852.293333pt;}
.ye0{bottom:856.453333pt;}
.yb4{bottom:857.573333pt;}
.y48{bottom:864.613333pt;}
.y11b{bottom:867.333333pt;}
.y7d{bottom:867.653333pt;}
.yb3{bottom:869.093333pt;}
.yb{bottom:871.653333pt;}
.y47{bottom:879.813333pt;}
.ydf{bottom:880.293333pt;}
.y11a{bottom:882.693333pt;}
.y7c{bottom:883.013333pt;}
.yb2{bottom:883.653333pt;}
.y46{bottom:895.173333pt;}
.yde{bottom:895.653333pt;}
.y7b{bottom:897.573333pt;}
.y119{bottom:898.053333pt;}
.ya{bottom:899.333333pt;}
.y45{bottom:910.533333pt;}
.ydd{bottom:911.013333pt;}
.y118{bottom:911.173333pt;}
.ydc{bottom:923.813333pt;}
.y44{bottom:925.893333pt;}
.y117{bottom:927.173333pt;}
.y9{bottom:932.453333pt;}
.ydb{bottom:932.773333pt;}
.y43{bottom:941.253333pt;}
.y116{bottom:943.173333pt;}
.y42{bottom:956.613333pt;}
.y114{bottom:959.173333pt;}
.y8{bottom:969.733333pt;}
.y41{bottom:971.813333pt;}
.y113{bottom:976.933333pt;}
.y40{bottom:987.173333pt;}
.y5{bottom:1013.440000pt;}
.y4{bottom:1031.360000pt;}
.y3{bottom:1048.160000pt;}
.y2{bottom:1063.520000pt;}
.y1{bottom:1080.320000pt;}
.h18{height:14.746875pt;}
.h1f{height:15.360000pt;}
.h17{height:18.768750pt;}
.h16{height:22.343750pt;}
.h1e{height:22.578125pt;}
.hb{height:25.918750pt;}
.h14{height:26.190625pt;}
.h10{height:29.940625pt;}
.h20{height:30.254687pt;}
.hd{height:33.515625pt;}
.hc{height:33.867188pt;}
.hf{height:37.090625pt;}
.he{height:37.479688pt;}
.h9{height:37.591250pt;}
.h15{height:38.672812pt;}
.h3{height:38.828437pt;}
.ha{height:39.325000pt;}
.h2{height:41.112500pt;}
.h6{height:43.355000pt;}
.h21{height:43.782500pt;}
.h13{height:47.970625pt;}
.h11{height:51.174688pt;}
.h5{height:56.062500pt;}
.h7{height:58.563750pt;}
.h12{height:62.054688pt;}
.h1a{height:87.014688pt;}
.h1b{height:87.174688pt;}
.h19{height:92.134687pt;}
.h4{height:93.562500pt;}
.h8{height:93.925000pt;}
.h1c{height:94.054688pt;}
.h1d{height:100.454688pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:51.040000pt;}
.wc{width:51.072000pt;}
.w12{width:56.320000pt;}
.w9{width:66.912000pt;}
.we{width:67.072000pt;}
.w7{width:68.512000pt;}
.w6{width:69.600000pt;}
.w13{width:72.352000pt;}
.wb{width:73.600000pt;}
.wa{width:73.760000pt;}
.w11{width:73.952000pt;}
.w10{width:74.880000pt;}
.w14{width:79.040000pt;}
.w15{width:79.072000pt;}
.wf{width:97.440000pt;}
.w5{width:119.232000pt;}
.wd{width:160.000000pt;}
.w4{width:183.386667pt;}
.w3{width:187.386667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:5.920000pt;}
.x24{left:7.200000pt;}
.x2e{left:9.640000pt;}
.x30{left:15.880000pt;}
.x29{left:17.920000pt;}
.x2f{left:23.200000pt;}
.x6{left:56.799988pt;}
.xd{left:75.679988pt;}
.x43{left:76.639988pt;}
.x10{left:80.831988pt;}
.x41{left:83.231988pt;}
.x8{left:100.831988pt;}
.x11{left:104.831988pt;}
.x7{left:106.591988pt;}
.x42{left:116.831988pt;}
.xc{left:119.391988pt;}
.x44{left:128.831988pt;}
.x9{left:149.466655pt;}
.xb{left:153.306655pt;}
.x3a{left:155.706667pt;}
.x23{left:156.666667pt;}
.x1{left:162.746655pt;}
.x26{left:174.426667pt;}
.x2{left:198.586655pt;}
.x38{left:216.346655pt;}
.x3c{left:230.586667pt;}
.x32{left:240.506667pt;}
.x27{left:244.026667pt;}
.x31{left:247.266655pt;}
.x21{left:249.826655pt;}
.x22{left:256.386655pt;}
.x13{left:278.466655pt;}
.x1a{left:297.186655pt;}
.x3d{left:304.546667pt;}
.x3{left:306.466655pt;}
.x14{left:308.866655pt;}
.x28{left:312.546667pt;}
.x4{left:322.786655pt;}
.x18{left:339.266655pt;}
.x16{left:343.586655pt;}
.x20{left:353.666655pt;}
.x1e{left:354.786655pt;}
.x1c{left:355.906655pt;}
.x33{left:360.066667pt;}
.x2a{left:363.586667pt;}
.x1b{left:372.546655pt;}
.x15{left:377.346655pt;}
.x1d{left:397.026655pt;}
.x1f{left:397.986655pt;}
.x39{left:401.666655pt;}
.x17{left:410.626655pt;}
.x19{left:413.666655pt;}
.xa{left:425.693322pt;}
.x34{left:427.133333pt;}
.x2b{left:430.493333pt;}
.x3e{left:433.213333pt;}
.x5{left:439.613322pt;}
.x35{left:500.733333pt;}
.x2c{left:504.253333pt;}
.x3f{left:512.253333pt;}
.x25{left:527.453333pt;}
.x36{left:574.493333pt;}
.x2d{left:577.853333pt;}
.x40{left:591.333333pt;}
.x37{left:625.573333pt;}
.x12{left:647.813322pt;}
.xe{left:719.653322pt;}
.xf{left:738.213322pt;}
}




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