
    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_303f17619a1b0b53850df320.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_1a0318ec6dbc092ff57e6f8f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_9a249fcccb75ff5246300d4f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677734;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_4bf2a9bbb5c7350c0752565f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_0f2226794d747d02f4c2e91f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_0402918feeba61ad48c996ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_8e85ad5b0e9bbf2519c85b61.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_12ea8f101917d7007167c233.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b1dd66d639056e0c402c7548.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.896973;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls29{letter-spacing:-1.008000px;}
.ls28{letter-spacing:-0.758160px;}
.ls1d{letter-spacing:-0.720000px;}
.ls2a{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.336960px;}
.lsf{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.264960px;}
.lsb{letter-spacing:-0.252720px;}
.ls9{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.119520px;}
.ls12{letter-spacing:-0.084240px;}
.ls20{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.059760px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.054000px;}
.ls23{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.077760px;}
.lsa{letter-spacing:0.084240px;}
.ls1a{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.132480px;}
.ls10{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.155520px;}
.ls4{letter-spacing:0.179280px;}
.ls15{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.261360px;}
.lsd{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.358560px;}
.ls27{letter-spacing:0.421200px;}
.ls26{letter-spacing:0.504000px;}
.ls22{letter-spacing:0.720000px;}
.ls21{letter-spacing:1.440000px;}
.ls1c{letter-spacing:2.160000px;}
.ls17{letter-spacing:2.880000px;}
.ls16{letter-spacing:3.600000px;}
.ls14{letter-spacing:3.607200px;}
.ls19{letter-spacing:4.320000px;}
.ls24{letter-spacing:5.040000px;}
.ls25{letter-spacing:5.760000px;}
.ls1e{letter-spacing:6.480000px;}
.ls1f{letter-spacing:7.200000px;}
.ls18{letter-spacing:7.920000px;}
.ls2b{letter-spacing:7.934400px;}
.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;}
}
.ws5a{word-spacing:-23.334480px;}
.ws57{word-spacing:-18.216000px;}
.ws1e{word-spacing:-18.144000px;}
.ws4c{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws48{word-spacing:-17.928000px;}
.ws44{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws40{word-spacing:-15.059520px;}
.ws3f{word-spacing:-14.880240px;}
.ws1{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.204000px;}
.ws2{word-spacing:-11.934000px;}
.ws6{word-spacing:-9.720000px;}
.ws3b{word-spacing:-4.464000px;}
.ws31{word-spacing:-4.320000px;}
.ws4f{word-spacing:-3.744000px;}
.ws15{word-spacing:-3.600000px;}
.ws24{word-spacing:-3.312000px;}
.ws56{word-spacing:-3.024000px;}
.ws2b{word-spacing:-2.880000px;}
.ws20{word-spacing:-2.592000px;}
.ws18{word-spacing:-2.160000px;}
.ws2f{word-spacing:-1.872000px;}
.ws50{word-spacing:-1.584000px;}
.ws19{word-spacing:-1.440000px;}
.ws36{word-spacing:-1.152000px;}
.ws3e{word-spacing:-0.864000px;}
.ws59{word-spacing:-0.792000px;}
.wsb{word-spacing:-0.758160px;}
.ws12{word-spacing:-0.720000px;}
.wse{word-spacing:-0.432000px;}
.wsc{word-spacing:-0.421200px;}
.ws41{word-spacing:-0.358560px;}
.ws27{word-spacing:-0.252720px;}
.wsf{word-spacing:-0.179280px;}
.ws1d{word-spacing:-0.144000px;}
.ws52{word-spacing:-0.084240px;}
.wsd{word-spacing:-0.077760px;}
.ws4a{word-spacing:-0.072000px;}
.ws7{word-spacing:0.000000px;}
.wsa{word-spacing:0.054000px;}
.ws42{word-spacing:0.059760px;}
.ws3{word-spacing:0.162000px;}
.ws4b{word-spacing:0.216000px;}
.ws8{word-spacing:0.264960px;}
.ws9{word-spacing:0.270000px;}
.ws10{word-spacing:0.288000px;}
.ws43{word-spacing:0.298800px;}
.ws45{word-spacing:0.421200px;}
.ws55{word-spacing:0.648000px;}
.ws28{word-spacing:0.673920px;}
.ws17{word-spacing:0.720000px;}
.ws32{word-spacing:0.936000px;}
.ws11{word-spacing:1.008000px;}
.ws53{word-spacing:1.095120px;}
.ws3d{word-spacing:1.296000px;}
.ws14{word-spacing:1.440000px;}
.ws1f{word-spacing:1.728000px;}
.ws51{word-spacing:2.016000px;}
.ws4e{word-spacing:2.088000px;}
.ws23{word-spacing:2.160000px;}
.ws2c{word-spacing:2.448000px;}
.ws38{word-spacing:2.736000px;}
.ws16{word-spacing:2.880000px;}
.ws2a{word-spacing:3.168000px;}
.ws13{word-spacing:3.600000px;}
.ws1b{word-spacing:3.888000px;}
.ws5b{word-spacing:4.176000px;}
.ws25{word-spacing:4.320000px;}
.ws2d{word-spacing:4.608000px;}
.ws21{word-spacing:4.896000px;}
.ws1c{word-spacing:5.040000px;}
.ws22{word-spacing:5.328000px;}
.ws3c{word-spacing:5.616000px;}
.ws26{word-spacing:5.760000px;}
.ws2e{word-spacing:6.048000px;}
.ws58{word-spacing:6.336000px;}
.ws33{word-spacing:6.480000px;}
.ws34{word-spacing:6.768000px;}
.ws47{word-spacing:7.056000px;}
.ws30{word-spacing:7.200000px;}
.ws35{word-spacing:7.488000px;}
.ws1a{word-spacing:7.920000px;}
.ws29{word-spacing:8.208000px;}
.ws37{word-spacing:8.640000px;}
.ws3a{word-spacing:8.928000px;}
.ws46{word-spacing:9.360000px;}
.ws39{word-spacing:9.648000px;}
.ws54{word-spacing:10.368000px;}
.ws4d{word-spacing:10.800000px;}
.ws49{word-spacing:11.520000px;}
._6{margin-left:-4.686480px;}
._7{margin-left:-3.472200px;}
._b{margin-left:-2.125656px;}
._2{margin-left:-1.063800px;}
._3{width:1.374480px;}
._8{width:2.545200px;}
._9{width:4.097520px;}
._a{width:6.022080px;}
._4{width:7.285680px;}
._5{width:8.388360px;}
._1{width:94.338000px;}
._0{width:731.538000px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(196,89,17);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fsa{font-size:30.240000px;}
.fs9{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs8{font-size:81.360000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:16.020000px;}
.y7{bottom:79.920000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.760000px;}
.y5{bottom:145.440000px;}
.yb0{bottom:168.120000px;}
.y2d{bottom:170.640000px;}
.y8c{bottom:171.360000px;}
.y13d{bottom:174.600000px;}
.y11e{bottom:176.220000px;}
.y194{bottom:179.280000px;}
.y104{bottom:180.360000px;}
.y143{bottom:183.600000px;}
.yc7{bottom:187.903260px;}
.y161{bottom:188.280000px;}
.y53{bottom:191.520000px;}
.yaf{bottom:191.880000px;}
.yed{bottom:194.580000px;}
.y6e{bottom:195.300000px;}
.y2c{bottom:195.660000px;}
.y13c{bottom:198.360000px;}
.y11d{bottom:200.160000px;}
.y193{bottom:203.040000px;}
.ybd{bottom:204.300000px;}
.yc6{bottom:205.188840px;}
.y177{bottom:206.640000px;}
.y142{bottom:207.360000px;}
.y164{bottom:213.300000px;}
.y52{bottom:215.280000px;}
.yae{bottom:215.640000px;}
.y2b{bottom:216.360000px;}
.yec{bottom:218.340000px;}
.y6d{bottom:219.060000px;}
.y160{bottom:221.220000px;}
.y13b{bottom:222.300000px;}
.yc5{bottom:222.474420px;}
.y11c{bottom:223.920000px;}
.ybc{bottom:228.060000px;}
.y176{bottom:230.400000px;}
.y141{bottom:231.300000px;}
.yfe{bottom:237.060000px;}
.y192{bottom:238.860000px;}
.y51{bottom:239.220000px;}
.yc4{bottom:239.760000px;}
.yeb{bottom:242.100000px;}
.y6c{bottom:242.820000px;}
.y15f{bottom:244.980000px;}
.y13a{bottom:246.060000px;}
.y11b{bottom:247.680000px;}
.yad{bottom:248.400000px;}
.y95{bottom:251.820000px;}
.y175{bottom:254.340000px;}
.y140{bottom:255.060000px;}
.y2a{bottom:255.960000px;}
.yfd{bottom:260.820000px;}
.y191{bottom:262.620000px;}
.y50{bottom:262.980000px;}
.yea{bottom:265.860000px;}
.y6b{bottom:266.580000px;}
.y15e{bottom:268.740000px;}
.y139{bottom:269.820000px;}
.y11a{bottom:271.440000px;}
.yac{bottom:272.340000px;}
.y94{bottom:275.580000px;}
.y174{bottom:278.100000px;}
.y13f{bottom:278.820000px;}
.y29{bottom:279.720000px;}
.yfc{bottom:284.580000px;}
.y4f{bottom:286.740000px;}
.y6a{bottom:290.520000px;}
.y15d{bottom:292.500000px;}
.y148{bottom:293.580000px;}
.y119{bottom:295.380000px;}
.yab{bottom:296.100000px;}
.y190{bottom:298.440000px;}
.ye9{bottom:298.800000px;}
.y8b{bottom:299.520000px;}
.y173{bottom:301.860000px;}
.y138{bottom:302.580000px;}
.ybb{bottom:308.520000px;}
.y4e{bottom:310.500000px;}
.y28{bottom:312.480000px;}
.y69{bottom:314.280000px;}
.y15c{bottom:316.440000px;}
.yfb{bottom:317.520000px;}
.y118{bottom:319.140000px;}
.yaa{bottom:319.860000px;}
.y18f{bottom:322.200000px;}
.ye8{bottom:322.560000px;}
.y8a{bottom:323.280000px;}
.y172{bottom:325.620000px;}
.y137{bottom:326.520000px;}
.yba{bottom:332.280000px;}
.y4d{bottom:334.440000px;}
.y27{bottom:336.240000px;}
.yc3{bottom:338.040000px;}
.yfa{bottom:341.280000px;}
.y117{bottom:342.900000px;}
.ya9{bottom:343.620000px;}
.ye7{bottom:346.320000px;}
.y68{bottom:347.040000px;}
.y15b{bottom:349.200000px;}
.y171{bottom:349.560000px;}
.yf7{bottom:350.100000px;}
.y136{bottom:350.280000px;}
.y93{bottom:356.040000px;}
.y18e{bottom:358.020000px;}
.y26{bottom:360.000000px;}
.yf9{bottom:365.040000px;}
.y116{bottom:366.660000px;}
.y4c{bottom:367.200000px;}
.ya8{bottom:367.560000px;}
.y89{bottom:370.800000px;}
.y15a{bottom:372.960000px;}
.y170{bottom:373.320000px;}
.y135{bottom:374.040000px;}
.ye6{bottom:379.080000px;}
.y67{bottom:379.800000px;}
.y151{bottom:383.040000px;}
.y25{bottom:383.940000px;}
.yf8{bottom:388.800000px;}
.y115{bottom:390.600000px;}
.y4b{bottom:390.960000px;}
.y88{bottom:394.740000px;}
.y159{bottom:396.720000px;}
.y16f{bottom:397.080000px;}
.yf6{bottom:397.800000px;}
.ya7{bottom:400.320000px;}
.y66{bottom:403.740000px;}
.y134{bottom:406.800000px;}
.y24{bottom:407.700000px;}
.ye5{bottom:412.020000px;}
.yb9{bottom:412.740000px;}
.y114{bottom:414.360000px;}
.y4a{bottom:414.720000px;}
.y87{bottom:418.500000px;}
.y158{bottom:420.480000px;}
.y16e{bottom:420.840000px;}
.yf5{bottom:421.740000px;}
.ya6{bottom:424.080000px;}
.y65{bottom:427.500000px;}
.y133{bottom:430.740000px;}
.y23{bottom:431.460000px;}
.ye4{bottom:435.780000px;}
.yb8{bottom:436.500000px;}
.y113{bottom:438.120000px;}
.y49{bottom:438.480000px;}
.y86{bottom:442.260000px;}
.y157{bottom:444.420000px;}
.y16d{bottom:444.780000px;}
.yf4{bottom:445.500000px;}
.ya5{bottom:447.840000px;}
.y64{bottom:451.260000px;}
.y132{bottom:454.500000px;}
.y22{bottom:455.220000px;}
.ye3{bottom:459.540000px;}
.y92{bottom:460.260000px;}
.y112{bottom:461.880000px;}
.y18d{bottom:462.240000px;}
.y48{bottom:462.420000px;}
.y150{bottom:463.500000px;}
.y85{bottom:466.020000px;}
.y16c{bottom:468.540000px;}
.yf3{bottom:469.260000px;}
.ya4{bottom:471.780000px;}
.yc2{bottom:475.020000px;}
.y156{bottom:477.180000px;}
.y131{bottom:478.260000px;}
.y21{bottom:479.160000px;}
.ye2{bottom:483.300000px;}
.y63{bottom:484.020000px;}
.y111{bottom:485.820000px;}
.y47{bottom:486.180000px;}
.y14f{bottom:487.260000px;}
.y84{bottom:489.780000px;}
.y16b{bottom:492.300000px;}
.yf2{bottom:493.020000px;}
.ya3{bottom:495.540000px;}
.y18c{bottom:498.060000px;}
.yc1{bottom:498.780000px;}
.y155{bottom:500.940000px;}
.y130{bottom:502.020000px;}
.y20{bottom:502.920000px;}
.ye1{bottom:507.240000px;}
.y62{bottom:507.780000px;}
.y110{bottom:509.580000px;}
.y14e{bottom:511.020000px;}
.y83{bottom:513.720000px;}
.yb7{bottom:516.780000px;}
.y46{bottom:518.940000px;}
.ya2{bottom:519.300000px;}
.y18b{bottom:522.000000px;}
.y16a{bottom:522.540000px;}
.y154{bottom:524.700000px;}
.y12f{bottom:525.780000px;}
.ye0{bottom:531.000000px;}
.y61{bottom:531.720000px;}
.y10f{bottom:533.340000px;}
.y14d{bottom:534.780000px;}
.y1f{bottom:535.680000px;}
.y82{bottom:537.480000px;}
.yb6{bottom:540.720000px;}
.y45{bottom:542.700000px;}
.ya1{bottom:543.060000px;}
.y153{bottom:548.640000px;}
.y163{bottom:549.720000px;}
.ydf{bottom:554.760000px;}
.y60{bottom:555.480000px;}
.y18a{bottom:557.640000px;}
.y12e{bottom:558.720000px;}
.y81{bottom:561.240000px;}
.yb5{bottom:564.480000px;}
.y10e{bottom:566.100000px;}
.y44{bottom:566.640000px;}
.ya0{bottom:567.000000px;}
.y1e{bottom:568.440000px;}
.y169{bottom:570.240000px;}
.yde{bottom:578.520000px;}
.y152{bottom:578.886300px;}
.y5f{bottom:579.240000px;}
.y189{bottom:581.580000px;}
.y12d{bottom:582.480000px;}
.y80{bottom:585.000000px;}
.yb4{bottom:588.240000px;}
.y43{bottom:590.400000px;}
.y168{bottom:594.000000px;}
.y17b{bottom:597.240000px;}
.y10d{bottom:599.040000px;}
.y9f{bottom:599.760000px;}
.y1d{bottom:601.380000px;}
.ydd{bottom:602.460000px;}
.y5e{bottom:603.000000px;}
.y12c{bottom:606.240000px;}
.y7f{bottom:608.940000px;}
.y91{bottom:612.000000px;}
.y42{bottom:614.160000px;}
.y188{bottom:617.400000px;}
.y167{bottom:617.940000px;}
.y17a{bottom:621.000000px;}
.y9e{bottom:623.520000px;}
.y1c{bottom:625.140000px;}
.ydc{bottom:626.220000px;}
.y5d{bottom:626.940000px;}
.y12b{bottom:630.000000px;}
.y10c{bottom:631.800000px;}
.y1a4{bottom:632.520000px;}
.y7e{bottom:632.700000px;}
.y90{bottom:635.940000px;}
.y41{bottom:637.920000px;}
.y187{bottom:641.160000px;}
.y166{bottom:641.700000px;}
.y179{bottom:644.940000px;}
.y9d{bottom:647.280000px;}
.ydb{bottom:649.980000px;}
.y103{bottom:650.700000px;}
.y12a{bottom:653.940000px;}
.y7d{bottom:656.460000px;}
.y1b{bottom:657.900000px;}
.y5c{bottom:659.700000px;}
.y40{bottom:661.860000px;}
.y10b{bottom:664.560000px;}
.y186{bottom:664.920000px;}
.y1a3{bottom:665.280000px;}
.y178{bottom:668.700000px;}
.y9c{bottom:671.220000px;}
.yda{bottom:673.740000px;}
.y102{bottom:674.460000px;}
.y129{bottom:677.700000px;}
.y7c{bottom:680.220000px;}
.y1a{bottom:681.660000px;}
.y8f{bottom:683.460000px;}
.y3f{bottom:685.620000px;}
.y10a{bottom:688.320000px;}
.y185{bottom:688.680000px;}
.y1a2{bottom:689.040000px;}
.y5b{bottom:692.460000px;}
.y9b{bottom:694.980000px;}
.yd9{bottom:697.680000px;}
.y101{bottom:698.220000px;}
.y128{bottom:701.460000px;}
.y7b{bottom:704.160000px;}
.y19{bottom:705.600000px;}
.y8e{bottom:707.220000px;}
.y109{bottom:712.260000px;}
.y3e{bottom:715.866300px;}
.y5a{bottom:716.220000px;}
.y9a{bottom:718.740000px;}
.yd8{bottom:721.440000px;}
.y1a1{bottom:721.980000px;}
.y14b{bottom:722.160000px;}
.y184{bottom:724.500000px;}
.y127{bottom:725.220000px;}
.y7a{bottom:727.920000px;}
.y18{bottom:729.360000px;}
.yb3{bottom:731.160000px;}
.y108{bottom:736.020000px;}
.y3d{bottom:739.980000px;}
.y59{bottom:740.160000px;}
.yd7{bottom:745.200000px;}
.y1a0{bottom:745.740000px;}
.y14a{bottom:745.920000px;}
.y183{bottom:748.260000px;}
.y99{bottom:748.980000px;}
.y14c{bottom:749.160000px;}
.y79{bottom:751.680000px;}
.y17{bottom:753.120000px;}
.yb2{bottom:754.920000px;}
.y126{bottom:758.160000px;}
.y107{bottom:759.780000px;}
.y58{bottom:763.920000px;}
.yd6{bottom:768.960000px;}
.y19f{bottom:769.500000px;}
.y149{bottom:769.680000px;}
.y13e{bottom:772.920000px;}
.y16{bottom:776.880000px;}
.yb1{bottom:778.680000px;}
.y125{bottom:781.920000px;}
.y106{bottom:783.540000px;}
.y182{bottom:784.080000px;}
.y78{bottom:784.440000px;}
.y3c{bottom:787.680000px;}
.yd5{bottom:792.720000px;}
.y19e{bottom:793.260000px;}
.y165{bottom:793.440000px;}
.y98{bottom:796.680000px;}
.y15{bottom:800.820000px;}
.yf1{bottom:802.440000px;}
.y124{bottom:805.680000px;}
.y181{bottom:808.020000px;}
.y3b{bottom:811.440000px;}
.y105{bottom:812.160000px;}
.yd4{bottom:816.660000px;}
.y77{bottom:817.380000px;}
.y97{bottom:820.440000px;}
.y14{bottom:824.580000px;}
.yf0{bottom:826.380000px;}
.y19d{bottom:829.080000px;}
.y123{bottom:829.440000px;}
.y180{bottom:831.780000px;}
.y3a{bottom:835.380000px;}
.yd3{bottom:840.420000px;}
.y96{bottom:844.380000px;}
.y76{bottom:850.140000px;}
.y19c{bottom:852.840000px;}
.y122{bottom:853.380000px;}
.y13{bottom:857.340000px;}
.y39{bottom:859.140000px;}
.y17f{bottom:867.600000px;}
.y8d{bottom:868.140000px;}
.yd2{bottom:873.180000px;}
.y75{bottom:873.900000px;}
.y121{bottom:877.140000px;}
.y38{bottom:882.900000px;}
.y19b{bottom:888.660000px;}
.y12{bottom:890.100000px;}
.y17e{bottom:891.360000px;}
.y57{bottom:891.900000px;}
.y74{bottom:897.660000px;}
.y120{bottom:900.900000px;}
.yd1{bottom:905.940000px;}
.y37{bottom:906.660000px;}
.y19a{bottom:912.600000px;}
.y11{bottom:913.860000px;}
.y17d{bottom:915.120000px;}
.y56{bottom:915.660000px;}
.yef{bottom:921.600000px;}
.y11f{bottom:924.660000px;}
.y36{bottom:930.600000px;}
.yd0{bottom:938.880000px;}
.y55{bottom:939.600000px;}
.yee{bottom:945.360000px;}
.y10{bottom:946.800000px;}
.y199{bottom:948.240000px;}
.y17c{bottom:948.420000px;}
.yc0{bottom:948.600000px;}
.y73{bottom:954.360000px;}
.ycf{bottom:962.640000px;}
.y35{bottom:963.360000px;}
.y147{bottom:969.120000px;}
.yf{bottom:969.300000px;}
.y198{bottom:972.180000px;}
.ybf{bottom:972.360000px;}
.y72{bottom:978.120000px;}
.yce{bottom:986.400000px;}
.y34{bottom:987.120000px;}
.ye{bottom:991.440000px;}
.y146{bottom:992.880000px;}
.ybe{bottom:996.120000px;}
.y100{bottom:1001.880000px;}
.y197{bottom:1008.000000px;}
.ycd{bottom:1010.160000px;}
.y33{bottom:1010.880000px;}
.y145{bottom:1016.640000px;}
.y54{bottom:1019.880000px;}
.yff{bottom:1025.640000px;}
.y196{bottom:1031.760000px;}
.ycc{bottom:1034.100000px;}
.yd{bottom:1034.280000px;}
.y71{bottom:1034.640000px;}
.y32{bottom:1043.640000px;}
.y144{bottom:1049.580000px;}
.y195{bottom:1055.520000px;}
.ycb{bottom:1057.860000px;}
.yc{bottom:1058.040000px;}
.y70{bottom:1058.580000px;}
.y31{bottom:1067.580000px;}
.yca{bottom:1081.620000px;}
.y6f{bottom:1082.340000px;}
.y30{bottom:1091.340000px;}
.y162{bottom:1106.100000px;}
.yb{bottom:1108.973160px;}
.yc9{bottom:1111.866300px;}
.y2f{bottom:1115.100000px;}
.ya{bottom:1134.540000px;}
.yc8{bottom:1135.980000px;}
.y2e{bottom:1138.860000px;}
.y4{bottom:1171.800000px;}
.y3{bottom:1192.149000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h11{height:26.533828px;}
.h5{height:32.758500px;}
.hb{height:34.114922px;}
.h3{height:38.759766px;}
.h10{height:40.705664px;}
.hf{height:40.909922px;}
.h9{height:48.905156px;}
.hd{height:49.042969px;}
.ha{height:49.289062px;}
.he{height:49.992188px;}
.hc{height:61.329023px;}
.h4{height:63.175781px;}
.h7{height:63.635625px;}
.h8{height:66.581719px;}
.h6{height:68.938594px;}
.h2{height:75.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:29.881500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.629000px;}
.x12{left:129.600000px;}
.x6{left:133.380000px;}
.x13{left:140.043060px;}
.x10{left:148.860000px;}
.x1{left:166.320000px;}
.x7{left:183.418560px;}
.x1b{left:216.720000px;}
.x9{left:221.940000px;}
.x8{left:239.580000px;}
.x18{left:253.080000px;}
.x1a{left:264.780000px;}
.x11{left:291.780000px;}
.x4{left:297.180000px;}
.xf{left:343.620000px;}
.x17{left:356.940000px;}
.x16{left:360.540000px;}
.x19{left:363.780000px;}
.x14{left:457.742160px;}
.x5{left:466.740000px;}
.x15{left:478.260000px;}
.xd{left:520.200000px;}
.x2{left:532.629000px;}
.xa{left:571.500000px;}
.xe{left:593.100000px;}
.xb{left:642.420000px;}
.xc{left:829.080000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls29{letter-spacing:-0.896000pt;}
.ls28{letter-spacing:-0.673920pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls2a{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.299520pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.235520pt;}
.lsb{letter-spacing:-0.224640pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.106240pt;}
.ls12{letter-spacing:-0.074880pt;}
.ls20{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.053120pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.048000pt;}
.ls23{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.069120pt;}
.lsa{letter-spacing:0.074880pt;}
.ls1a{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.117760pt;}
.ls10{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.138240pt;}
.ls4{letter-spacing:0.159360pt;}
.ls15{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.232320pt;}
.lsd{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.318720pt;}
.ls27{letter-spacing:0.374400pt;}
.ls26{letter-spacing:0.448000pt;}
.ls22{letter-spacing:0.640000pt;}
.ls21{letter-spacing:1.280000pt;}
.ls1c{letter-spacing:1.920000pt;}
.ls17{letter-spacing:2.560000pt;}
.ls16{letter-spacing:3.200000pt;}
.ls14{letter-spacing:3.206400pt;}
.ls19{letter-spacing:3.840000pt;}
.ls24{letter-spacing:4.480000pt;}
.ls25{letter-spacing:5.120000pt;}
.ls1e{letter-spacing:5.760000pt;}
.ls1f{letter-spacing:6.400000pt;}
.ls18{letter-spacing:7.040000pt;}
.ls2b{letter-spacing:7.052800pt;}
.ws5a{word-spacing:-20.741760pt;}
.ws57{word-spacing:-16.192000pt;}
.ws1e{word-spacing:-16.128000pt;}
.ws4c{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws48{word-spacing:-15.936000pt;}
.ws44{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws40{word-spacing:-13.386240pt;}
.ws3f{word-spacing:-13.226880pt;}
.ws1{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws3b{word-spacing:-3.968000pt;}
.ws31{word-spacing:-3.840000pt;}
.ws4f{word-spacing:-3.328000pt;}
.ws15{word-spacing:-3.200000pt;}
.ws24{word-spacing:-2.944000pt;}
.ws56{word-spacing:-2.688000pt;}
.ws2b{word-spacing:-2.560000pt;}
.ws20{word-spacing:-2.304000pt;}
.ws18{word-spacing:-1.920000pt;}
.ws2f{word-spacing:-1.664000pt;}
.ws50{word-spacing:-1.408000pt;}
.ws19{word-spacing:-1.280000pt;}
.ws36{word-spacing:-1.024000pt;}
.ws3e{word-spacing:-0.768000pt;}
.ws59{word-spacing:-0.704000pt;}
.wsb{word-spacing:-0.673920pt;}
.ws12{word-spacing:-0.640000pt;}
.wse{word-spacing:-0.384000pt;}
.wsc{word-spacing:-0.374400pt;}
.ws41{word-spacing:-0.318720pt;}
.ws27{word-spacing:-0.224640pt;}
.wsf{word-spacing:-0.159360pt;}
.ws1d{word-spacing:-0.128000pt;}
.ws52{word-spacing:-0.074880pt;}
.wsd{word-spacing:-0.069120pt;}
.ws4a{word-spacing:-0.064000pt;}
.ws7{word-spacing:0.000000pt;}
.wsa{word-spacing:0.048000pt;}
.ws42{word-spacing:0.053120pt;}
.ws3{word-spacing:0.144000pt;}
.ws4b{word-spacing:0.192000pt;}
.ws8{word-spacing:0.235520pt;}
.ws9{word-spacing:0.240000pt;}
.ws10{word-spacing:0.256000pt;}
.ws43{word-spacing:0.265600pt;}
.ws45{word-spacing:0.374400pt;}
.ws55{word-spacing:0.576000pt;}
.ws28{word-spacing:0.599040pt;}
.ws17{word-spacing:0.640000pt;}
.ws32{word-spacing:0.832000pt;}
.ws11{word-spacing:0.896000pt;}
.ws53{word-spacing:0.973440pt;}
.ws3d{word-spacing:1.152000pt;}
.ws14{word-spacing:1.280000pt;}
.ws1f{word-spacing:1.536000pt;}
.ws51{word-spacing:1.792000pt;}
.ws4e{word-spacing:1.856000pt;}
.ws23{word-spacing:1.920000pt;}
.ws2c{word-spacing:2.176000pt;}
.ws38{word-spacing:2.432000pt;}
.ws16{word-spacing:2.560000pt;}
.ws2a{word-spacing:2.816000pt;}
.ws13{word-spacing:3.200000pt;}
.ws1b{word-spacing:3.456000pt;}
.ws5b{word-spacing:3.712000pt;}
.ws25{word-spacing:3.840000pt;}
.ws2d{word-spacing:4.096000pt;}
.ws21{word-spacing:4.352000pt;}
.ws1c{word-spacing:4.480000pt;}
.ws22{word-spacing:4.736000pt;}
.ws3c{word-spacing:4.992000pt;}
.ws26{word-spacing:5.120000pt;}
.ws2e{word-spacing:5.376000pt;}
.ws58{word-spacing:5.632000pt;}
.ws33{word-spacing:5.760000pt;}
.ws34{word-spacing:6.016000pt;}
.ws47{word-spacing:6.272000pt;}
.ws30{word-spacing:6.400000pt;}
.ws35{word-spacing:6.656000pt;}
.ws1a{word-spacing:7.040000pt;}
.ws29{word-spacing:7.296000pt;}
.ws37{word-spacing:7.680000pt;}
.ws3a{word-spacing:7.936000pt;}
.ws46{word-spacing:8.320000pt;}
.ws39{word-spacing:8.576000pt;}
.ws54{word-spacing:9.216000pt;}
.ws4d{word-spacing:9.600000pt;}
.ws49{word-spacing:10.240000pt;}
._6{margin-left:-4.165760pt;}
._7{margin-left:-3.086400pt;}
._b{margin-left:-1.889472pt;}
._2{margin-left:-0.945600pt;}
._3{width:1.221760pt;}
._8{width:2.262400pt;}
._9{width:3.642240pt;}
._a{width:5.352960pt;}
._4{width:6.476160pt;}
._5{width:7.456320pt;}
._1{width:83.856000pt;}
._0{width:650.256000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs8{font-size:72.320000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:14.240000pt;}
.y7{bottom:71.040000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:101.120000pt;}
.y5{bottom:129.280000pt;}
.yb0{bottom:149.440000pt;}
.y2d{bottom:151.680000pt;}
.y8c{bottom:152.320000pt;}
.y13d{bottom:155.200000pt;}
.y11e{bottom:156.640000pt;}
.y194{bottom:159.360000pt;}
.y104{bottom:160.320000pt;}
.y143{bottom:163.200000pt;}
.yc7{bottom:167.025120pt;}
.y161{bottom:167.360000pt;}
.y53{bottom:170.240000pt;}
.yaf{bottom:170.560000pt;}
.yed{bottom:172.960000pt;}
.y6e{bottom:173.600000pt;}
.y2c{bottom:173.920000pt;}
.y13c{bottom:176.320000pt;}
.y11d{bottom:177.920000pt;}
.y193{bottom:180.480000pt;}
.ybd{bottom:181.600000pt;}
.yc6{bottom:182.390080pt;}
.y177{bottom:183.680000pt;}
.y142{bottom:184.320000pt;}
.y164{bottom:189.600000pt;}
.y52{bottom:191.360000pt;}
.yae{bottom:191.680000pt;}
.y2b{bottom:192.320000pt;}
.yec{bottom:194.080000pt;}
.y6d{bottom:194.720000pt;}
.y160{bottom:196.640000pt;}
.y13b{bottom:197.600000pt;}
.yc5{bottom:197.755040pt;}
.y11c{bottom:199.040000pt;}
.ybc{bottom:202.720000pt;}
.y176{bottom:204.800000pt;}
.y141{bottom:205.600000pt;}
.yfe{bottom:210.720000pt;}
.y192{bottom:212.320000pt;}
.y51{bottom:212.640000pt;}
.yc4{bottom:213.120000pt;}
.yeb{bottom:215.200000pt;}
.y6c{bottom:215.840000pt;}
.y15f{bottom:217.760000pt;}
.y13a{bottom:218.720000pt;}
.y11b{bottom:220.160000pt;}
.yad{bottom:220.800000pt;}
.y95{bottom:223.840000pt;}
.y175{bottom:226.080000pt;}
.y140{bottom:226.720000pt;}
.y2a{bottom:227.520000pt;}
.yfd{bottom:231.840000pt;}
.y191{bottom:233.440000pt;}
.y50{bottom:233.760000pt;}
.yea{bottom:236.320000pt;}
.y6b{bottom:236.960000pt;}
.y15e{bottom:238.880000pt;}
.y139{bottom:239.840000pt;}
.y11a{bottom:241.280000pt;}
.yac{bottom:242.080000pt;}
.y94{bottom:244.960000pt;}
.y174{bottom:247.200000pt;}
.y13f{bottom:247.840000pt;}
.y29{bottom:248.640000pt;}
.yfc{bottom:252.960000pt;}
.y4f{bottom:254.880000pt;}
.y6a{bottom:258.240000pt;}
.y15d{bottom:260.000000pt;}
.y148{bottom:260.960000pt;}
.y119{bottom:262.560000pt;}
.yab{bottom:263.200000pt;}
.y190{bottom:265.280000pt;}
.ye9{bottom:265.600000pt;}
.y8b{bottom:266.240000pt;}
.y173{bottom:268.320000pt;}
.y138{bottom:268.960000pt;}
.ybb{bottom:274.240000pt;}
.y4e{bottom:276.000000pt;}
.y28{bottom:277.760000pt;}
.y69{bottom:279.360000pt;}
.y15c{bottom:281.280000pt;}
.yfb{bottom:282.240000pt;}
.y118{bottom:283.680000pt;}
.yaa{bottom:284.320000pt;}
.y18f{bottom:286.400000pt;}
.ye8{bottom:286.720000pt;}
.y8a{bottom:287.360000pt;}
.y172{bottom:289.440000pt;}
.y137{bottom:290.240000pt;}
.yba{bottom:295.360000pt;}
.y4d{bottom:297.280000pt;}
.y27{bottom:298.880000pt;}
.yc3{bottom:300.480000pt;}
.yfa{bottom:303.360000pt;}
.y117{bottom:304.800000pt;}
.ya9{bottom:305.440000pt;}
.ye7{bottom:307.840000pt;}
.y68{bottom:308.480000pt;}
.y15b{bottom:310.400000pt;}
.y171{bottom:310.720000pt;}
.yf7{bottom:311.200000pt;}
.y136{bottom:311.360000pt;}
.y93{bottom:316.480000pt;}
.y18e{bottom:318.240000pt;}
.y26{bottom:320.000000pt;}
.yf9{bottom:324.480000pt;}
.y116{bottom:325.920000pt;}
.y4c{bottom:326.400000pt;}
.ya8{bottom:326.720000pt;}
.y89{bottom:329.600000pt;}
.y15a{bottom:331.520000pt;}
.y170{bottom:331.840000pt;}
.y135{bottom:332.480000pt;}
.ye6{bottom:336.960000pt;}
.y67{bottom:337.600000pt;}
.y151{bottom:340.480000pt;}
.y25{bottom:341.280000pt;}
.yf8{bottom:345.600000pt;}
.y115{bottom:347.200000pt;}
.y4b{bottom:347.520000pt;}
.y88{bottom:350.880000pt;}
.y159{bottom:352.640000pt;}
.y16f{bottom:352.960000pt;}
.yf6{bottom:353.600000pt;}
.ya7{bottom:355.840000pt;}
.y66{bottom:358.880000pt;}
.y134{bottom:361.600000pt;}
.y24{bottom:362.400000pt;}
.ye5{bottom:366.240000pt;}
.yb9{bottom:366.880000pt;}
.y114{bottom:368.320000pt;}
.y4a{bottom:368.640000pt;}
.y87{bottom:372.000000pt;}
.y158{bottom:373.760000pt;}
.y16e{bottom:374.080000pt;}
.yf5{bottom:374.880000pt;}
.ya6{bottom:376.960000pt;}
.y65{bottom:380.000000pt;}
.y133{bottom:382.880000pt;}
.y23{bottom:383.520000pt;}
.ye4{bottom:387.360000pt;}
.yb8{bottom:388.000000pt;}
.y113{bottom:389.440000pt;}
.y49{bottom:389.760000pt;}
.y86{bottom:393.120000pt;}
.y157{bottom:395.040000pt;}
.y16d{bottom:395.360000pt;}
.yf4{bottom:396.000000pt;}
.ya5{bottom:398.080000pt;}
.y64{bottom:401.120000pt;}
.y132{bottom:404.000000pt;}
.y22{bottom:404.640000pt;}
.ye3{bottom:408.480000pt;}
.y92{bottom:409.120000pt;}
.y112{bottom:410.560000pt;}
.y18d{bottom:410.880000pt;}
.y48{bottom:411.040000pt;}
.y150{bottom:412.000000pt;}
.y85{bottom:414.240000pt;}
.y16c{bottom:416.480000pt;}
.yf3{bottom:417.120000pt;}
.ya4{bottom:419.360000pt;}
.yc2{bottom:422.240000pt;}
.y156{bottom:424.160000pt;}
.y131{bottom:425.120000pt;}
.y21{bottom:425.920000pt;}
.ye2{bottom:429.600000pt;}
.y63{bottom:430.240000pt;}
.y111{bottom:431.840000pt;}
.y47{bottom:432.160000pt;}
.y14f{bottom:433.120000pt;}
.y84{bottom:435.360000pt;}
.y16b{bottom:437.600000pt;}
.yf2{bottom:438.240000pt;}
.ya3{bottom:440.480000pt;}
.y18c{bottom:442.720000pt;}
.yc1{bottom:443.360000pt;}
.y155{bottom:445.280000pt;}
.y130{bottom:446.240000pt;}
.y20{bottom:447.040000pt;}
.ye1{bottom:450.880000pt;}
.y62{bottom:451.360000pt;}
.y110{bottom:452.960000pt;}
.y14e{bottom:454.240000pt;}
.y83{bottom:456.640000pt;}
.yb7{bottom:459.360000pt;}
.y46{bottom:461.280000pt;}
.ya2{bottom:461.600000pt;}
.y18b{bottom:464.000000pt;}
.y16a{bottom:464.480000pt;}
.y154{bottom:466.400000pt;}
.y12f{bottom:467.360000pt;}
.ye0{bottom:472.000000pt;}
.y61{bottom:472.640000pt;}
.y10f{bottom:474.080000pt;}
.y14d{bottom:475.360000pt;}
.y1f{bottom:476.160000pt;}
.y82{bottom:477.760000pt;}
.yb6{bottom:480.640000pt;}
.y45{bottom:482.400000pt;}
.ya1{bottom:482.720000pt;}
.y153{bottom:487.680000pt;}
.y163{bottom:488.640000pt;}
.ydf{bottom:493.120000pt;}
.y60{bottom:493.760000pt;}
.y18a{bottom:495.680000pt;}
.y12e{bottom:496.640000pt;}
.y81{bottom:498.880000pt;}
.yb5{bottom:501.760000pt;}
.y10e{bottom:503.200000pt;}
.y44{bottom:503.680000pt;}
.ya0{bottom:504.000000pt;}
.y1e{bottom:505.280000pt;}
.y169{bottom:506.880000pt;}
.yde{bottom:514.240000pt;}
.y152{bottom:514.565600pt;}
.y5f{bottom:514.880000pt;}
.y189{bottom:516.960000pt;}
.y12d{bottom:517.760000pt;}
.y80{bottom:520.000000pt;}
.yb4{bottom:522.880000pt;}
.y43{bottom:524.800000pt;}
.y168{bottom:528.000000pt;}
.y17b{bottom:530.880000pt;}
.y10d{bottom:532.480000pt;}
.y9f{bottom:533.120000pt;}
.y1d{bottom:534.560000pt;}
.ydd{bottom:535.520000pt;}
.y5e{bottom:536.000000pt;}
.y12c{bottom:538.880000pt;}
.y7f{bottom:541.280000pt;}
.y91{bottom:544.000000pt;}
.y42{bottom:545.920000pt;}
.y188{bottom:548.800000pt;}
.y167{bottom:549.280000pt;}
.y17a{bottom:552.000000pt;}
.y9e{bottom:554.240000pt;}
.y1c{bottom:555.680000pt;}
.ydc{bottom:556.640000pt;}
.y5d{bottom:557.280000pt;}
.y12b{bottom:560.000000pt;}
.y10c{bottom:561.600000pt;}
.y1a4{bottom:562.240000pt;}
.y7e{bottom:562.400000pt;}
.y90{bottom:565.280000pt;}
.y41{bottom:567.040000pt;}
.y187{bottom:569.920000pt;}
.y166{bottom:570.400000pt;}
.y179{bottom:573.280000pt;}
.y9d{bottom:575.360000pt;}
.ydb{bottom:577.760000pt;}
.y103{bottom:578.400000pt;}
.y12a{bottom:581.280000pt;}
.y7d{bottom:583.520000pt;}
.y1b{bottom:584.800000pt;}
.y5c{bottom:586.400000pt;}
.y40{bottom:588.320000pt;}
.y10b{bottom:590.720000pt;}
.y186{bottom:591.040000pt;}
.y1a3{bottom:591.360000pt;}
.y178{bottom:594.400000pt;}
.y9c{bottom:596.640000pt;}
.yda{bottom:598.880000pt;}
.y102{bottom:599.520000pt;}
.y129{bottom:602.400000pt;}
.y7c{bottom:604.640000pt;}
.y1a{bottom:605.920000pt;}
.y8f{bottom:607.520000pt;}
.y3f{bottom:609.440000pt;}
.y10a{bottom:611.840000pt;}
.y185{bottom:612.160000pt;}
.y1a2{bottom:612.480000pt;}
.y5b{bottom:615.520000pt;}
.y9b{bottom:617.760000pt;}
.yd9{bottom:620.160000pt;}
.y101{bottom:620.640000pt;}
.y128{bottom:623.520000pt;}
.y7b{bottom:625.920000pt;}
.y19{bottom:627.200000pt;}
.y8e{bottom:628.640000pt;}
.y109{bottom:633.120000pt;}
.y3e{bottom:636.325600pt;}
.y5a{bottom:636.640000pt;}
.y9a{bottom:638.880000pt;}
.yd8{bottom:641.280000pt;}
.y1a1{bottom:641.760000pt;}
.y14b{bottom:641.920000pt;}
.y184{bottom:644.000000pt;}
.y127{bottom:644.640000pt;}
.y7a{bottom:647.040000pt;}
.y18{bottom:648.320000pt;}
.yb3{bottom:649.920000pt;}
.y108{bottom:654.240000pt;}
.y3d{bottom:657.760000pt;}
.y59{bottom:657.920000pt;}
.yd7{bottom:662.400000pt;}
.y1a0{bottom:662.880000pt;}
.y14a{bottom:663.040000pt;}
.y183{bottom:665.120000pt;}
.y99{bottom:665.760000pt;}
.y14c{bottom:665.920000pt;}
.y79{bottom:668.160000pt;}
.y17{bottom:669.440000pt;}
.yb2{bottom:671.040000pt;}
.y126{bottom:673.920000pt;}
.y107{bottom:675.360000pt;}
.y58{bottom:679.040000pt;}
.yd6{bottom:683.520000pt;}
.y19f{bottom:684.000000pt;}
.y149{bottom:684.160000pt;}
.y13e{bottom:687.040000pt;}
.y16{bottom:690.560000pt;}
.yb1{bottom:692.160000pt;}
.y125{bottom:695.040000pt;}
.y106{bottom:696.480000pt;}
.y182{bottom:696.960000pt;}
.y78{bottom:697.280000pt;}
.y3c{bottom:700.160000pt;}
.yd5{bottom:704.640000pt;}
.y19e{bottom:705.120000pt;}
.y165{bottom:705.280000pt;}
.y98{bottom:708.160000pt;}
.y15{bottom:711.840000pt;}
.yf1{bottom:713.280000pt;}
.y124{bottom:716.160000pt;}
.y181{bottom:718.240000pt;}
.y3b{bottom:721.280000pt;}
.y105{bottom:721.920000pt;}
.yd4{bottom:725.920000pt;}
.y77{bottom:726.560000pt;}
.y97{bottom:729.280000pt;}
.y14{bottom:732.960000pt;}
.yf0{bottom:734.560000pt;}
.y19d{bottom:736.960000pt;}
.y123{bottom:737.280000pt;}
.y180{bottom:739.360000pt;}
.y3a{bottom:742.560000pt;}
.yd3{bottom:747.040000pt;}
.y96{bottom:750.560000pt;}
.y76{bottom:755.680000pt;}
.y19c{bottom:758.080000pt;}
.y122{bottom:758.560000pt;}
.y13{bottom:762.080000pt;}
.y39{bottom:763.680000pt;}
.y17f{bottom:771.200000pt;}
.y8d{bottom:771.680000pt;}
.yd2{bottom:776.160000pt;}
.y75{bottom:776.800000pt;}
.y121{bottom:779.680000pt;}
.y38{bottom:784.800000pt;}
.y19b{bottom:789.920000pt;}
.y12{bottom:791.200000pt;}
.y17e{bottom:792.320000pt;}
.y57{bottom:792.800000pt;}
.y74{bottom:797.920000pt;}
.y120{bottom:800.800000pt;}
.yd1{bottom:805.280000pt;}
.y37{bottom:805.920000pt;}
.y19a{bottom:811.200000pt;}
.y11{bottom:812.320000pt;}
.y17d{bottom:813.440000pt;}
.y56{bottom:813.920000pt;}
.yef{bottom:819.200000pt;}
.y11f{bottom:821.920000pt;}
.y36{bottom:827.200000pt;}
.yd0{bottom:834.560000pt;}
.y55{bottom:835.200000pt;}
.yee{bottom:840.320000pt;}
.y10{bottom:841.600000pt;}
.y199{bottom:842.880000pt;}
.y17c{bottom:843.040000pt;}
.yc0{bottom:843.200000pt;}
.y73{bottom:848.320000pt;}
.ycf{bottom:855.680000pt;}
.y35{bottom:856.320000pt;}
.y147{bottom:861.440000pt;}
.yf{bottom:861.600000pt;}
.y198{bottom:864.160000pt;}
.ybf{bottom:864.320000pt;}
.y72{bottom:869.440000pt;}
.yce{bottom:876.800000pt;}
.y34{bottom:877.440000pt;}
.ye{bottom:881.280000pt;}
.y146{bottom:882.560000pt;}
.ybe{bottom:885.440000pt;}
.y100{bottom:890.560000pt;}
.y197{bottom:896.000000pt;}
.ycd{bottom:897.920000pt;}
.y33{bottom:898.560000pt;}
.y145{bottom:903.680000pt;}
.y54{bottom:906.560000pt;}
.yff{bottom:911.680000pt;}
.y196{bottom:917.120000pt;}
.ycc{bottom:919.200000pt;}
.yd{bottom:919.360000pt;}
.y71{bottom:919.680000pt;}
.y32{bottom:927.680000pt;}
.y144{bottom:932.960000pt;}
.y195{bottom:938.240000pt;}
.ycb{bottom:940.320000pt;}
.yc{bottom:940.480000pt;}
.y70{bottom:940.960000pt;}
.y31{bottom:948.960000pt;}
.yca{bottom:961.440000pt;}
.y6f{bottom:962.080000pt;}
.y30{bottom:970.080000pt;}
.y162{bottom:983.200000pt;}
.yb{bottom:985.753920pt;}
.yc9{bottom:988.325600pt;}
.y2f{bottom:991.200000pt;}
.ya{bottom:1008.480000pt;}
.yc8{bottom:1009.760000pt;}
.y2e{bottom:1012.320000pt;}
.y4{bottom:1041.600000pt;}
.y3{bottom:1059.688000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h11{height:23.585625pt;}
.h5{height:29.118667pt;}
.hb{height:30.324375pt;}
.h3{height:34.453125pt;}
.h10{height:36.182813pt;}
.hf{height:36.364375pt;}
.h9{height:43.471250pt;}
.hd{height:43.593750pt;}
.ha{height:43.812500pt;}
.he{height:44.437500pt;}
.hc{height:54.514687pt;}
.h4{height:56.156250pt;}
.h7{height:56.565000pt;}
.h8{height:59.183750pt;}
.h6{height:61.278750pt;}
.h2{height:67.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:26.561333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.448000pt;}
.x12{left:115.200000pt;}
.x6{left:118.560000pt;}
.x13{left:124.482720pt;}
.x10{left:132.320000pt;}
.x1{left:147.840000pt;}
.x7{left:163.038720pt;}
.x1b{left:192.640000pt;}
.x9{left:197.280000pt;}
.x8{left:212.960000pt;}
.x18{left:224.960000pt;}
.x1a{left:235.360000pt;}
.x11{left:259.360000pt;}
.x4{left:264.160000pt;}
.xf{left:305.440000pt;}
.x17{left:317.280000pt;}
.x16{left:320.480000pt;}
.x19{left:323.360000pt;}
.x14{left:406.881920pt;}
.x5{left:414.880000pt;}
.x15{left:425.120000pt;}
.xd{left:462.400000pt;}
.x2{left:473.448000pt;}
.xa{left:508.000000pt;}
.xe{left:527.200000pt;}
.xb{left:571.040000pt;}
.xc{left:736.960000pt;}
}




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