
    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_fca33adcaf4c66023094c3a5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.118000;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_2c672a8d5d1b082fab84e515.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f2d89f756480faa36561895f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_502211c16ad6e2026630def7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_407beb9bea640a454619073c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_167ee3d1d6e9b3838cb5389d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_42b1dd3a46b1e826a8950cf2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_3421bd19d8692e2e24c1c072.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_6da5d4dc032162ee9608a8a0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.714355;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_4adef60c6c779b0dbea5866e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.148926;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_d982bd032e654fdf0d000a49.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.139648;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.660000px;}
.ls2{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.300000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000540px;}
.ls8{letter-spacing:0.007320px;}
.ls3{letter-spacing:0.011700px;}
.ls5{letter-spacing:0.330000px;}
.ls7{letter-spacing:1.047660px;}
.lsb{letter-spacing:2.308620px;}
.ls6{letter-spacing:2.948460px;}
.ls9{letter-spacing:256.792800px;}
.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;}
}
.ws5{word-spacing:-40.500000px;}
.ws6{word-spacing:-17.850000px;}
.ws1d{word-spacing:-16.830000px;}
.ws8{word-spacing:-16.500000px;}
.ws7{word-spacing:-15.000000px;}
.ws6d{word-spacing:-14.700000px;}
.ws2{word-spacing:-12.750000px;}
.ws9{word-spacing:-12.600000px;}
.ws40{word-spacing:-12.000000px;}
.ws0{word-spacing:-11.676000px;}
.ws3{word-spacing:-10.500000px;}
.ws1{word-spacing:-8.173200px;}
.ws24{word-spacing:-3.234000px;}
.ws48{word-spacing:-3.168000px;}
.ws25{word-spacing:-2.970000px;}
.ws2e{word-spacing:-2.838000px;}
.ws2d{word-spacing:-2.706000px;}
.ws31{word-spacing:-2.574000px;}
.ws23{word-spacing:-2.376000px;}
.ws2c{word-spacing:-2.244000px;}
.ws21{word-spacing:-2.112000px;}
.wsf{word-spacing:-2.046000px;}
.ws3b{word-spacing:-1.914000px;}
.ws1a{word-spacing:-1.716000px;}
.ws29{word-spacing:-1.650000px;}
.ws1e{word-spacing:-1.584000px;}
.ws1f{word-spacing:-1.518000px;}
.ws6c{word-spacing:-1.440000px;}
.ws2a{word-spacing:-1.320000px;}
.ws34{word-spacing:-1.254000px;}
.ws33{word-spacing:-1.188000px;}
.ws65{word-spacing:-1.056000px;}
.ws64{word-spacing:-0.924000px;}
.ws17{word-spacing:-0.858000px;}
.ws2f{word-spacing:-0.792000px;}
.ws5c{word-spacing:-0.726000px;}
.ws66{word-spacing:-0.594000px;}
.ws54{word-spacing:-0.462000px;}
.ws70{word-spacing:-0.360000px;}
.ws49{word-spacing:-0.330000px;}
.ws4c{word-spacing:-0.132000px;}
.ws6b{word-spacing:-0.120000px;}
.ws59{word-spacing:-0.066000px;}
.ws4{word-spacing:0.000000px;}
.ws5f{word-spacing:0.132000px;}
.ws30{word-spacing:0.264000px;}
.ws6f{word-spacing:0.300000px;}
.ws27{word-spacing:0.594000px;}
.ws6e{word-spacing:0.660000px;}
.ws15{word-spacing:0.726000px;}
.wsb{word-spacing:0.792000px;}
.ws1b{word-spacing:0.924000px;}
.ws4a{word-spacing:1.122000px;}
.ws1c{word-spacing:1.254000px;}
.ws3a{word-spacing:1.320000px;}
.ws28{word-spacing:1.386000px;}
.ws6a{word-spacing:1.560000px;}
.ws10{word-spacing:1.584000px;}
.ws62{word-spacing:1.782000px;}
.ws3f{word-spacing:1.914000px;}
.ws16{word-spacing:1.980000px;}
.ws20{word-spacing:2.046000px;}
.ws4f{word-spacing:2.178000px;}
.ws63{word-spacing:2.244000px;}
.ws58{word-spacing:2.442000px;}
.ws35{word-spacing:2.508000px;}
.ws14{word-spacing:2.574000px;}
.ws2b{word-spacing:2.640000px;}
.ws3e{word-spacing:2.706000px;}
.ws61{word-spacing:2.838000px;}
.ws32{word-spacing:2.904000px;}
.ws60{word-spacing:2.970000px;}
.ws56{word-spacing:3.036000px;}
.ws11{word-spacing:3.168000px;}
.ws19{word-spacing:3.300000px;}
.ws51{word-spacing:3.432000px;}
.wsa{word-spacing:3.498000px;}
.wse{word-spacing:3.630000px;}
.ws37{word-spacing:3.762000px;}
.ws13{word-spacing:3.828000px;}
.ws3d{word-spacing:3.960000px;}
.ws39{word-spacing:4.092000px;}
.ws22{word-spacing:4.158000px;}
.ws50{word-spacing:4.224000px;}
.ws5d{word-spacing:4.422000px;}
.ws53{word-spacing:4.950000px;}
.ws38{word-spacing:5.016000px;}
.ws5a{word-spacing:5.082000px;}
.wsd{word-spacing:5.280000px;}
.ws67{word-spacing:5.412000px;}
.ws36{word-spacing:5.610000px;}
.ws69{word-spacing:5.742000px;}
.ws4b{word-spacing:5.808000px;}
.ws57{word-spacing:5.940000px;}
.ws71{word-spacing:6.000000px;}
.ws26{word-spacing:6.072000px;}
.ws4e{word-spacing:6.204000px;}
.ws3c{word-spacing:6.468000px;}
.wsc{word-spacing:6.798000px;}
.ws12{word-spacing:7.062000px;}
.ws5b{word-spacing:7.128000px;}
.ws4d{word-spacing:7.524000px;}
.ws5e{word-spacing:7.590000px;}
.ws52{word-spacing:7.656000px;}
.ws18{word-spacing:8.844000px;}
.ws55{word-spacing:9.108000px;}
.ws68{word-spacing:9.702000px;}
.ws42{word-spacing:197.527680px;}
.ws47{word-spacing:206.146539px;}
.ws41{word-spacing:212.439600px;}
.ws44{word-spacing:229.487619px;}
.ws43{word-spacing:232.408800px;}
.ws45{word-spacing:232.792800px;}
.ws46{word-spacing:241.487619px;}
._c{margin-left:-829.868819px;}
._1d{margin-left:-11.819932px;}
._1c{margin-left:-10.573787px;}
._7{margin-left:-9.318644px;}
._a{margin-left:-8.221864px;}
._6{margin-left:-6.581948px;}
._2{margin-left:-5.163908px;}
._9{margin-left:-3.948037px;}
._3{margin-left:-2.932616px;}
._0{margin-left:-1.618321px;}
._1{width:1.762061px;}
._b{width:3.637641px;}
._e{width:4.990808px;}
._8{width:6.406841px;}
._11{width:7.435448px;}
._f{width:8.445201px;}
._10{width:9.484581px;}
._d{width:10.844262px;}
._1e{width:14.334141px;}
._15{width:104.901000px;}
._13{width:112.937413px;}
._14{width:117.908871px;}
._4{width:125.767547px;}
._19{width:184.086000px;}
._5{width:204.750000px;}
._18{width:221.412000px;}
._17{width:232.821950px;}
._1b{width:253.157369px;}
._12{width:276.315716px;}
._16{width:288.754200px;}
._1a{width:291.433800px;}
.fc2{color:rgb(146,76,60);}
.fc1{color:rgb(44,41,42);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:29.400000px;}
.fs6{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsd{font-size:50.400000px;}
.fs3{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs9{font-size:71.400000px;}
.fsc{font-size:72.000000px;}
.fsa{font-size:102.000000px;}
.fs8{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:55.505250px;}
.y1d{bottom:106.505400px;}
.y7e{bottom:107.247150px;}
.yd1{bottom:107.928750px;}
.y42{bottom:109.467000px;}
.yb2{bottom:111.961950px;}
.y10d{bottom:112.935300px;}
.y1c{bottom:117.755400px;}
.ya3{bottom:124.197000px;}
.y7d{bottom:125.247150px;}
.yd0{bottom:125.928750px;}
.y41{bottom:127.692000px;}
.y10c{bottom:129.435300px;}
.yb1{bottom:129.961950px;}
.ye6{bottom:136.953300px;}
.ya2{bottom:142.197000px;}
.ycf{bottom:143.928750px;}
.y40{bottom:145.917000px;}
.y10b{bottom:150.187500px;}
.y7c{bottom:151.751400px;}
.ye5{bottom:154.953300px;}
.y68{bottom:155.946000px;}
.y1b{bottom:159.006000px;}
.ya1{bottom:160.197000px;}
.yce{bottom:161.928750px;}
.y3f{bottom:164.142000px;}
.y10a{bottom:166.687500px;}
.ye4{bottom:172.953300px;}
.y67{bottom:173.946000px;}
.ya0{bottom:178.197000px;}
.y7b{bottom:178.255050px;}
.ycd{bottom:179.928750px;}
.y3e{bottom:182.367000px;}
.yb0{bottom:182.970000px;}
.y109{bottom:183.187500px;}
.y1a{bottom:189.006000px;}
.ye3{bottom:190.953300px;}
.y66{bottom:191.946000px;}
.y9f{bottom:196.197000px;}
.y7a{bottom:196.255050px;}
.y108{bottom:199.687500px;}
.y3d{bottom:200.592000px;}
.yaf{bottom:200.970000px;}
.y19{bottom:204.006000px;}
.ycc{bottom:206.433000px;}
.ye2{bottom:208.953300px;}
.y65{bottom:209.946000px;}
.y9e{bottom:214.197000px;}
.y79{bottom:214.255050px;}
.y3c{bottom:218.817000px;}
.yae{bottom:218.970000px;}
.y18{bottom:219.006000px;}
.y107{bottom:220.439700px;}
.ycb{bottom:224.433000px;}
.ye1{bottom:226.953300px;}
.y64{bottom:227.946000px;}
.y9d{bottom:232.197000px;}
.y78{bottom:232.255050px;}
.y17{bottom:234.006000px;}
.y106{bottom:236.939700px;}
.y3b{bottom:237.042000px;}
.yca{bottom:242.433000px;}
.ye0{bottom:244.953300px;}
.yad{bottom:245.475000px;}
.y63{bottom:245.946000px;}
.y9c{bottom:250.197000px;}
.y77{bottom:250.255050px;}
.y16{bottom:253.257600px;}
.y105{bottom:253.439700px;}
.yc9{bottom:260.433000px;}
.ydf{bottom:262.953300px;}
.y3a{bottom:263.770500px;}
.y15{bottom:266.757600px;}
.y9b{bottom:268.197000px;}
.y62{bottom:272.448750px;}
.y104{bottom:274.191300px;}
.y76{bottom:276.758700px;}
.yc8{bottom:278.433000px;}
.y14{bottom:280.257600px;}
.y9a{bottom:286.197000px;}
.yde{bottom:289.456950px;}
.y103{bottom:290.691300px;}
.y13{bottom:295.257600px;}
.yc7{bottom:296.433000px;}
.y61{bottom:298.953000px;}
.y102{bottom:307.191300px;}
.ydd{bottom:307.456950px;}
.y39{bottom:308.724000px;}
.y12{bottom:310.257600px;}
.y99{bottom:312.701850px;}
.yc6{bottom:314.433000px;}
.ydc{bottom:325.456950px;}
.y38{bottom:326.949000px;}
.y101{bottom:327.943500px;}
.y11{bottom:329.509800px;}
.yc5{bottom:332.433000px;}
.y12c{bottom:336.489300px;}
.y98{bottom:339.205500px;}
.y10{bottom:343.009800px;}
.y60{bottom:343.456950px;}
.y100{bottom:344.443500px;}
.yc4{bottom:350.433000px;}
.y12b{bottom:352.989300px;}
.y37{bottom:353.679000px;}
.yf{bottom:358.009800px;}
.yff{bottom:360.943500px;}
.y5f{bottom:361.456950px;}
.y12a{bottom:369.489300px;}
.y36{bottom:371.904000px;}
.ye{bottom:373.009800px;}
.yc3{bottom:376.936500px;}
.y5e{bottom:379.456950px;}
.yfe{bottom:381.695700px;}
.y97{bottom:383.709000px;}
.ydb{bottom:387.961200px;}
.yd{bottom:388.009800px;}
.y35{bottom:390.129000px;}
.y129{bottom:390.241500px;}
.y5d{bottom:397.456950px;}
.yfd{bottom:398.195700px;}
.y96{bottom:401.709000px;}
.yda{bottom:405.961200px;}
.y128{bottom:406.741500px;}
.yc{bottom:407.262000px;}
.y34{bottom:408.354000px;}
.y5c{bottom:415.456950px;}
.yfc{bottom:418.947900px;}
.y95{bottom:419.709000px;}
.yc2{bottom:421.442250px;}
.y127{bottom:423.241500px;}
.yd9{bottom:423.961200px;}
.yb{bottom:426.513600px;}
.y33{bottom:426.579000px;}
.yfb{bottom:435.447900px;}
.y94{bottom:437.709000px;}
.yc1{bottom:439.442250px;}
.ya{bottom:441.513600px;}
.y5b{bottom:441.961200px;}
.y126{bottom:443.993700px;}
.y32{bottom:444.804000px;}
.yfa{bottom:451.947900px;}
.y93{bottom:455.709000px;}
.y9{bottom:456.513600px;}
.yc0{bottom:457.442250px;}
.y5a{bottom:459.961200px;}
.y125{bottom:460.493700px;}
.y31{bottom:463.029000px;}
.y8{bottom:471.513600px;}
.yf9{bottom:472.699500px;}
.y92{bottom:473.709000px;}
.ybf{bottom:475.442250px;}
.y124{bottom:476.993700px;}
.y59{bottom:477.961200px;}
.y30{bottom:481.254000px;}
.y7{bottom:486.513600px;}
.yf8{bottom:489.199500px;}
.y91{bottom:491.709000px;}
.y58{bottom:495.961200px;}
.y123{bottom:497.745300px;}
.y2f{bottom:499.479000px;}
.yd8{bottom:504.464850px;}
.y90{bottom:509.709000px;}
.y57{bottom:513.961200px;}
.yf7{bottom:514.203000px;}
.y122{bottom:514.245300px;}
.y2e{bottom:517.704000px;}
.yd7{bottom:522.464850px;}
.yb9{bottom:526.387500px;}
.y8f{bottom:527.709000px;}
.y121{bottom:530.745300px;}
.y56{bottom:531.961200px;}
.y2d{bottom:535.929000px;}
.yd6{bottom:540.464850px;}
.y8e{bottom:545.709000px;}
.y55{bottom:549.961200px;}
.y120{bottom:551.497500px;}
.y2c{bottom:554.154000px;}
.yd5{bottom:558.464850px;}
.yf6{bottom:558.706500px;}
.yac{bottom:563.521500px;}
.y8d{bottom:563.709000px;}
.y6{bottom:564.789000px;}
.y54{bottom:567.961200px;}
.y11f{bottom:567.997500px;}
.y2b{bottom:572.379000px;}
.yd4{bottom:576.464850px;}
.yf5{bottom:576.706500px;}
.y5{bottom:579.789000px;}
.yab{bottom:581.521500px;}
.y11e{bottom:584.497500px;}
.y53{bottom:585.961200px;}
.y8c{bottom:590.212650px;}
.y2a{bottom:590.604000px;}
.yd3{bottom:594.464850px;}
.yf4{bottom:594.706500px;}
.y4{bottom:594.789000px;}
.yaa{bottom:599.521500px;}
.y52{bottom:603.961200px;}
.y11d{bottom:605.249700px;}
.y29{bottom:608.829000px;}
.y75{bottom:609.263700px;}
.yd2{bottom:612.464850px;}
.ya9{bottom:617.521500px;}
.y8b{bottom:620.968500px;}
.yf3{bottom:621.211500px;}
.y11c{bottom:621.749700px;}
.y3{bottom:624.789000px;}
.y28{bottom:627.054000px;}
.y51{bottom:630.464850px;}
.ya8{bottom:635.521500px;}
.y11b{bottom:638.249700px;}
.y8a{bottom:638.968500px;}
.y2{bottom:639.789000px;}
.y74{bottom:640.019550px;}
.y27{bottom:645.279000px;}
.y50{bottom:648.464850px;}
.ya7{bottom:653.521500px;}
.y89{bottom:656.968500px;}
.y73{bottom:658.019550px;}
.y11a{bottom:659.001900px;}
.y26{bottom:663.504000px;}
.yf2{bottom:665.715000px;}
.y4f{bottom:666.464850px;}
.ya6{bottom:671.521500px;}
.y88{bottom:674.968500px;}
.y119{bottom:675.501900px;}
.y72{bottom:676.019550px;}
.y25{bottom:681.727800px;}
.yf1{bottom:683.715000px;}
.y4e{bottom:684.464850px;}
.ya5{bottom:689.521500px;}
.y118{bottom:692.001900px;}
.y87{bottom:692.968500px;}
.y71{bottom:694.019550px;}
.yf0{bottom:701.715000px;}
.y4d{bottom:702.464850px;}
.y86{bottom:710.968500px;}
.y70{bottom:712.019550px;}
.y117{bottom:712.753500px;}
.yef{bottom:719.715000px;}
.y4c{bottom:720.464850px;}
.y24{bottom:725.464500px;}
.yb8{bottom:726.931537px;}
.y85{bottom:728.968500px;}
.y116{bottom:729.253500px;}
.yee{bottom:737.715000px;}
.y4b{bottom:738.464850px;}
.y6f{bottom:738.523200px;}
.y23{bottom:743.217300px;}
.y115{bottom:745.753500px;}
.y84{bottom:746.968500px;}
.yb7{bottom:750.316828px;}
.yed{bottom:755.715000px;}
.y4a{bottom:756.464850px;}
.y22{bottom:760.969500px;}
.y83{bottom:764.968500px;}
.y6e{bottom:765.026850px;}
.y114{bottom:766.505700px;}
.yb6{bottom:773.703319px;}
.yec{bottom:773.715000px;}
.y49{bottom:774.464850px;}
.y82{bottom:782.968500px;}
.y113{bottom:783.005700px;}
.y6d{bottom:783.026850px;}
.yeb{bottom:791.715000px;}
.y48{bottom:792.464850px;}
.yb5{bottom:797.088609px;}
.ybe{bottom:798.449250px;}
.y112{bottom:799.505700px;}
.y81{bottom:800.968500px;}
.y6c{bottom:801.026850px;}
.y21{bottom:802.981500px;}
.yea{bottom:809.715000px;}
.y47{bottom:810.464850px;}
.ybd{bottom:813.449250px;}
.y80{bottom:818.968500px;}
.y6b{bottom:819.026850px;}
.y111{bottom:820.257900px;}
.yb4{bottom:820.474500px;}
.ye9{bottom:827.715000px;}
.y46{bottom:828.464850px;}
.y20{bottom:829.981500px;}
.y110{bottom:836.757900px;}
.ybc{bottom:836.953500px;}
.y7f{bottom:836.968500px;}
.yb3{bottom:843.526500px;}
.y6a{bottom:845.530500px;}
.ye8{bottom:845.715000px;}
.ybb{bottom:854.953500px;}
.y45{bottom:854.968500px;}
.y1f{bottom:856.981500px;}
.y10f{bottom:857.509500px;}
.y69{bottom:872.034150px;}
.ye7{bottom:872.218800px;}
.yba{bottom:872.953500px;}
.y44{bottom:872.968500px;}
.y10e{bottom:874.009500px;}
.ya4{bottom:875.049000px;}
.y43{bottom:928.692000px;}
.y1{bottom:940.692000px;}
.h9{height:31.587891px;}
.h7{height:36.852539px;}
.h2{height:38.304000px;}
.h8{height:39.594727px;}
.h5{height:42.117188px;}
.hd{height:42.234375px;}
.h13{height:44.203125px;}
.h4{height:44.749512px;}
.h6{height:44.874023px;}
.h3{height:47.381836px;}
.ha{height:52.646484px;}
.h14{height:52.792969px;}
.hf{height:57.911133px;}
.he{height:57.915933px;}
.h11{height:58.072266px;}
.h12{height:60.779297px;}
.h10{height:63.949219px;}
.hc{height:90.594727px;}
.hb{height:143.885742px;}
.h0{height:990.705000px;}
.h1{height:990.750000px;}
.w1{width:680.250000px;}
.w0{width:680.310000px;}
.x0{left:0.000000px;}
.x1{left:85.039500px;}
.x6{left:87.237345px;}
.xc{left:91.986600px;}
.x2{left:97.795365px;}
.xa{left:105.892950px;}
.x9{left:115.221300px;}
.x4{left:132.572400px;}
.x7{left:137.463300px;}
.x8{left:143.874600px;}
.xb{left:154.258500px;}
.x5{left:195.129000px;}
.x3{left:328.906500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.586667pt;}
.ls2{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000480pt;}
.ls8{letter-spacing:0.006507pt;}
.ls3{letter-spacing:0.010400pt;}
.ls5{letter-spacing:0.293333pt;}
.ls7{letter-spacing:0.931253pt;}
.lsb{letter-spacing:2.052107pt;}
.ls6{letter-spacing:2.620853pt;}
.ls9{letter-spacing:228.260267pt;}
.ws5{word-spacing:-36.000000pt;}
.ws6{word-spacing:-15.866667pt;}
.ws1d{word-spacing:-14.960000pt;}
.ws8{word-spacing:-14.666667pt;}
.ws7{word-spacing:-13.333333pt;}
.ws6d{word-spacing:-13.066667pt;}
.ws2{word-spacing:-11.333333pt;}
.ws9{word-spacing:-11.200000pt;}
.ws40{word-spacing:-10.666667pt;}
.ws0{word-spacing:-10.378667pt;}
.ws3{word-spacing:-9.333333pt;}
.ws1{word-spacing:-7.265067pt;}
.ws24{word-spacing:-2.874667pt;}
.ws48{word-spacing:-2.816000pt;}
.ws25{word-spacing:-2.640000pt;}
.ws2e{word-spacing:-2.522667pt;}
.ws2d{word-spacing:-2.405333pt;}
.ws31{word-spacing:-2.288000pt;}
.ws23{word-spacing:-2.112000pt;}
.ws2c{word-spacing:-1.994667pt;}
.ws21{word-spacing:-1.877333pt;}
.wsf{word-spacing:-1.818667pt;}
.ws3b{word-spacing:-1.701333pt;}
.ws1a{word-spacing:-1.525333pt;}
.ws29{word-spacing:-1.466667pt;}
.ws1e{word-spacing:-1.408000pt;}
.ws1f{word-spacing:-1.349333pt;}
.ws6c{word-spacing:-1.280000pt;}
.ws2a{word-spacing:-1.173333pt;}
.ws34{word-spacing:-1.114667pt;}
.ws33{word-spacing:-1.056000pt;}
.ws65{word-spacing:-0.938667pt;}
.ws64{word-spacing:-0.821333pt;}
.ws17{word-spacing:-0.762667pt;}
.ws2f{word-spacing:-0.704000pt;}
.ws5c{word-spacing:-0.645333pt;}
.ws66{word-spacing:-0.528000pt;}
.ws54{word-spacing:-0.410667pt;}
.ws70{word-spacing:-0.320000pt;}
.ws49{word-spacing:-0.293333pt;}
.ws4c{word-spacing:-0.117333pt;}
.ws6b{word-spacing:-0.106667pt;}
.ws59{word-spacing:-0.058667pt;}
.ws4{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.117333pt;}
.ws30{word-spacing:0.234667pt;}
.ws6f{word-spacing:0.266667pt;}
.ws27{word-spacing:0.528000pt;}
.ws6e{word-spacing:0.586667pt;}
.ws15{word-spacing:0.645333pt;}
.wsb{word-spacing:0.704000pt;}
.ws1b{word-spacing:0.821333pt;}
.ws4a{word-spacing:0.997333pt;}
.ws1c{word-spacing:1.114667pt;}
.ws3a{word-spacing:1.173333pt;}
.ws28{word-spacing:1.232000pt;}
.ws6a{word-spacing:1.386667pt;}
.ws10{word-spacing:1.408000pt;}
.ws62{word-spacing:1.584000pt;}
.ws3f{word-spacing:1.701333pt;}
.ws16{word-spacing:1.760000pt;}
.ws20{word-spacing:1.818667pt;}
.ws4f{word-spacing:1.936000pt;}
.ws63{word-spacing:1.994667pt;}
.ws58{word-spacing:2.170667pt;}
.ws35{word-spacing:2.229333pt;}
.ws14{word-spacing:2.288000pt;}
.ws2b{word-spacing:2.346667pt;}
.ws3e{word-spacing:2.405333pt;}
.ws61{word-spacing:2.522667pt;}
.ws32{word-spacing:2.581333pt;}
.ws60{word-spacing:2.640000pt;}
.ws56{word-spacing:2.698667pt;}
.ws11{word-spacing:2.816000pt;}
.ws19{word-spacing:2.933333pt;}
.ws51{word-spacing:3.050667pt;}
.wsa{word-spacing:3.109333pt;}
.wse{word-spacing:3.226667pt;}
.ws37{word-spacing:3.344000pt;}
.ws13{word-spacing:3.402667pt;}
.ws3d{word-spacing:3.520000pt;}
.ws39{word-spacing:3.637333pt;}
.ws22{word-spacing:3.696000pt;}
.ws50{word-spacing:3.754667pt;}
.ws5d{word-spacing:3.930667pt;}
.ws53{word-spacing:4.400000pt;}
.ws38{word-spacing:4.458667pt;}
.ws5a{word-spacing:4.517333pt;}
.wsd{word-spacing:4.693333pt;}
.ws67{word-spacing:4.810667pt;}
.ws36{word-spacing:4.986667pt;}
.ws69{word-spacing:5.104000pt;}
.ws4b{word-spacing:5.162667pt;}
.ws57{word-spacing:5.280000pt;}
.ws71{word-spacing:5.333333pt;}
.ws26{word-spacing:5.397333pt;}
.ws4e{word-spacing:5.514667pt;}
.ws3c{word-spacing:5.749333pt;}
.wsc{word-spacing:6.042667pt;}
.ws12{word-spacing:6.277333pt;}
.ws5b{word-spacing:6.336000pt;}
.ws4d{word-spacing:6.688000pt;}
.ws5e{word-spacing:6.746667pt;}
.ws52{word-spacing:6.805333pt;}
.ws18{word-spacing:7.861333pt;}
.ws55{word-spacing:8.096000pt;}
.ws68{word-spacing:8.624000pt;}
.ws42{word-spacing:175.580160pt;}
.ws47{word-spacing:183.241368pt;}
.ws41{word-spacing:188.835200pt;}
.ws44{word-spacing:203.988995pt;}
.ws43{word-spacing:206.585600pt;}
.ws45{word-spacing:206.926933pt;}
.ws46{word-spacing:214.655661pt;}
._c{margin-left:-737.661173pt;}
._1d{margin-left:-10.506606pt;}
._1c{margin-left:-9.398922pt;}
._7{margin-left:-8.283239pt;}
._a{margin-left:-7.308324pt;}
._6{margin-left:-5.850620pt;}
._2{margin-left:-4.590141pt;}
._9{margin-left:-3.509366pt;}
._3{margin-left:-2.606770pt;}
._0{margin-left:-1.438507pt;}
._1{width:1.566276pt;}
._b{width:3.233458pt;}
._e{width:4.436273pt;}
._8{width:5.694970pt;}
._11{width:6.609287pt;}
._f{width:7.506845pt;}
._10{width:8.430738pt;}
._d{width:9.639344pt;}
._1e{width:12.741458pt;}
._15{width:93.245333pt;}
._13{width:100.388812pt;}
._14{width:104.807885pt;}
._4{width:111.793375pt;}
._19{width:163.632000pt;}
._5{width:182.000000pt;}
._18{width:196.810667pt;}
._17{width:206.952845pt;}
._1b{width:225.028772pt;}
._12{width:245.613970pt;}
._16{width:256.670400pt;}
._1a{width:259.052267pt;}
.fs1{font-size:26.133333pt;}
.fs6{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsd{font-size:44.800000pt;}
.fs3{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs9{font-size:63.466667pt;}
.fsc{font-size:64.000000pt;}
.fsa{font-size:90.666667pt;}
.fs8{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:49.338000pt;}
.y1d{bottom:94.671467pt;}
.y7e{bottom:95.330800pt;}
.yd1{bottom:95.936667pt;}
.y42{bottom:97.304000pt;}
.yb2{bottom:99.521733pt;}
.y10d{bottom:100.386933pt;}
.y1c{bottom:104.671467pt;}
.ya3{bottom:110.397333pt;}
.y7d{bottom:111.330800pt;}
.yd0{bottom:111.936667pt;}
.y41{bottom:113.504000pt;}
.y10c{bottom:115.053600pt;}
.yb1{bottom:115.521733pt;}
.ye6{bottom:121.736267pt;}
.ya2{bottom:126.397333pt;}
.ycf{bottom:127.936667pt;}
.y40{bottom:129.704000pt;}
.y10b{bottom:133.500000pt;}
.y7c{bottom:134.890133pt;}
.ye5{bottom:137.736267pt;}
.y68{bottom:138.618667pt;}
.y1b{bottom:141.338667pt;}
.ya1{bottom:142.397333pt;}
.yce{bottom:143.936667pt;}
.y3f{bottom:145.904000pt;}
.y10a{bottom:148.166667pt;}
.ye4{bottom:153.736267pt;}
.y67{bottom:154.618667pt;}
.ya0{bottom:158.397333pt;}
.y7b{bottom:158.448933pt;}
.ycd{bottom:159.936667pt;}
.y3e{bottom:162.104000pt;}
.yb0{bottom:162.640000pt;}
.y109{bottom:162.833333pt;}
.y1a{bottom:168.005333pt;}
.ye3{bottom:169.736267pt;}
.y66{bottom:170.618667pt;}
.y9f{bottom:174.397333pt;}
.y7a{bottom:174.448933pt;}
.y108{bottom:177.500000pt;}
.y3d{bottom:178.304000pt;}
.yaf{bottom:178.640000pt;}
.y19{bottom:181.338667pt;}
.ycc{bottom:183.496000pt;}
.ye2{bottom:185.736267pt;}
.y65{bottom:186.618667pt;}
.y9e{bottom:190.397333pt;}
.y79{bottom:190.448933pt;}
.y3c{bottom:194.504000pt;}
.yae{bottom:194.640000pt;}
.y18{bottom:194.672000pt;}
.y107{bottom:195.946400pt;}
.ycb{bottom:199.496000pt;}
.ye1{bottom:201.736267pt;}
.y64{bottom:202.618667pt;}
.y9d{bottom:206.397333pt;}
.y78{bottom:206.448933pt;}
.y17{bottom:208.005333pt;}
.y106{bottom:210.613067pt;}
.y3b{bottom:210.704000pt;}
.yca{bottom:215.496000pt;}
.ye0{bottom:217.736267pt;}
.yad{bottom:218.200000pt;}
.y63{bottom:218.618667pt;}
.y9c{bottom:222.397333pt;}
.y77{bottom:222.448933pt;}
.y16{bottom:225.117867pt;}
.y105{bottom:225.279733pt;}
.yc9{bottom:231.496000pt;}
.ydf{bottom:233.736267pt;}
.y3a{bottom:234.462667pt;}
.y15{bottom:237.117867pt;}
.y9b{bottom:238.397333pt;}
.y62{bottom:242.176667pt;}
.y104{bottom:243.725600pt;}
.y76{bottom:246.007733pt;}
.yc8{bottom:247.496000pt;}
.y14{bottom:249.117867pt;}
.y9a{bottom:254.397333pt;}
.yde{bottom:257.295067pt;}
.y103{bottom:258.392267pt;}
.y13{bottom:262.451200pt;}
.yc7{bottom:263.496000pt;}
.y61{bottom:265.736000pt;}
.y102{bottom:273.058933pt;}
.ydd{bottom:273.295067pt;}
.y39{bottom:274.421333pt;}
.y12{bottom:275.784533pt;}
.y99{bottom:277.957200pt;}
.yc6{bottom:279.496000pt;}
.ydc{bottom:289.295067pt;}
.y38{bottom:290.621333pt;}
.y101{bottom:291.505333pt;}
.y11{bottom:292.897600pt;}
.yc5{bottom:295.496000pt;}
.y12c{bottom:299.101600pt;}
.y98{bottom:301.516000pt;}
.y10{bottom:304.897600pt;}
.y60{bottom:305.295067pt;}
.y100{bottom:306.172000pt;}
.yc4{bottom:311.496000pt;}
.y12b{bottom:313.768267pt;}
.y37{bottom:314.381333pt;}
.yf{bottom:318.230933pt;}
.yff{bottom:320.838667pt;}
.y5f{bottom:321.295067pt;}
.y12a{bottom:328.434933pt;}
.y36{bottom:330.581333pt;}
.ye{bottom:331.564267pt;}
.yc3{bottom:335.054667pt;}
.y5e{bottom:337.295067pt;}
.yfe{bottom:339.285067pt;}
.y97{bottom:341.074667pt;}
.ydb{bottom:344.854400pt;}
.yd{bottom:344.897600pt;}
.y35{bottom:346.781333pt;}
.y129{bottom:346.881333pt;}
.y5d{bottom:353.295067pt;}
.yfd{bottom:353.951733pt;}
.y96{bottom:357.074667pt;}
.yda{bottom:360.854400pt;}
.y128{bottom:361.548000pt;}
.yc{bottom:362.010667pt;}
.y34{bottom:362.981333pt;}
.y5c{bottom:369.295067pt;}
.yfc{bottom:372.398133pt;}
.y95{bottom:373.074667pt;}
.yc2{bottom:374.615333pt;}
.y127{bottom:376.214667pt;}
.yd9{bottom:376.854400pt;}
.yb{bottom:379.123200pt;}
.y33{bottom:379.181333pt;}
.yfb{bottom:387.064800pt;}
.y94{bottom:389.074667pt;}
.yc1{bottom:390.615333pt;}
.ya{bottom:392.456533pt;}
.y5b{bottom:392.854400pt;}
.y126{bottom:394.661067pt;}
.y32{bottom:395.381333pt;}
.yfa{bottom:401.731467pt;}
.y93{bottom:405.074667pt;}
.y9{bottom:405.789867pt;}
.yc0{bottom:406.615333pt;}
.y5a{bottom:408.854400pt;}
.y125{bottom:409.327733pt;}
.y31{bottom:411.581333pt;}
.y8{bottom:419.123200pt;}
.yf9{bottom:420.177333pt;}
.y92{bottom:421.074667pt;}
.ybf{bottom:422.615333pt;}
.y124{bottom:423.994400pt;}
.y59{bottom:424.854400pt;}
.y30{bottom:427.781333pt;}
.y7{bottom:432.456533pt;}
.yf8{bottom:434.844000pt;}
.y91{bottom:437.074667pt;}
.y58{bottom:440.854400pt;}
.y123{bottom:442.440267pt;}
.y2f{bottom:443.981333pt;}
.yd8{bottom:448.413200pt;}
.y90{bottom:453.074667pt;}
.y57{bottom:456.854400pt;}
.yf7{bottom:457.069333pt;}
.y122{bottom:457.106933pt;}
.y2e{bottom:460.181333pt;}
.yd7{bottom:464.413200pt;}
.yb9{bottom:467.900000pt;}
.y8f{bottom:469.074667pt;}
.y121{bottom:471.773600pt;}
.y56{bottom:472.854400pt;}
.y2d{bottom:476.381333pt;}
.yd6{bottom:480.413200pt;}
.y8e{bottom:485.074667pt;}
.y55{bottom:488.854400pt;}
.y120{bottom:490.220000pt;}
.y2c{bottom:492.581333pt;}
.yd5{bottom:496.413200pt;}
.yf6{bottom:496.628000pt;}
.yac{bottom:500.908000pt;}
.y8d{bottom:501.074667pt;}
.y6{bottom:502.034667pt;}
.y54{bottom:504.854400pt;}
.y11f{bottom:504.886667pt;}
.y2b{bottom:508.781333pt;}
.yd4{bottom:512.413200pt;}
.yf5{bottom:512.628000pt;}
.y5{bottom:515.368000pt;}
.yab{bottom:516.908000pt;}
.y11e{bottom:519.553333pt;}
.y53{bottom:520.854400pt;}
.y8c{bottom:524.633467pt;}
.y2a{bottom:524.981333pt;}
.yd3{bottom:528.413200pt;}
.yf4{bottom:528.628000pt;}
.y4{bottom:528.701333pt;}
.yaa{bottom:532.908000pt;}
.y52{bottom:536.854400pt;}
.y11d{bottom:537.999733pt;}
.y29{bottom:541.181333pt;}
.y75{bottom:541.567733pt;}
.yd2{bottom:544.413200pt;}
.ya9{bottom:548.908000pt;}
.y8b{bottom:551.972000pt;}
.yf3{bottom:552.188000pt;}
.y11c{bottom:552.666400pt;}
.y3{bottom:555.368000pt;}
.y28{bottom:557.381333pt;}
.y51{bottom:560.413200pt;}
.ya8{bottom:564.908000pt;}
.y11b{bottom:567.333067pt;}
.y8a{bottom:567.972000pt;}
.y2{bottom:568.701333pt;}
.y74{bottom:568.906267pt;}
.y27{bottom:573.581333pt;}
.y50{bottom:576.413200pt;}
.ya7{bottom:580.908000pt;}
.y89{bottom:583.972000pt;}
.y73{bottom:584.906267pt;}
.y11a{bottom:585.779467pt;}
.y26{bottom:589.781333pt;}
.yf2{bottom:591.746667pt;}
.y4f{bottom:592.413200pt;}
.ya6{bottom:596.908000pt;}
.y88{bottom:599.972000pt;}
.y119{bottom:600.446133pt;}
.y72{bottom:600.906267pt;}
.y25{bottom:605.980267pt;}
.yf1{bottom:607.746667pt;}
.y4e{bottom:608.413200pt;}
.ya5{bottom:612.908000pt;}
.y118{bottom:615.112800pt;}
.y87{bottom:615.972000pt;}
.y71{bottom:616.906267pt;}
.yf0{bottom:623.746667pt;}
.y4d{bottom:624.413200pt;}
.y86{bottom:631.972000pt;}
.y70{bottom:632.906267pt;}
.y117{bottom:633.558667pt;}
.yef{bottom:639.746667pt;}
.y4c{bottom:640.413200pt;}
.y24{bottom:644.857333pt;}
.yb8{bottom:646.161367pt;}
.y85{bottom:647.972000pt;}
.y116{bottom:648.225333pt;}
.yee{bottom:655.746667pt;}
.y4b{bottom:656.413200pt;}
.y6f{bottom:656.465067pt;}
.y23{bottom:660.637600pt;}
.y115{bottom:662.892000pt;}
.y84{bottom:663.972000pt;}
.yb7{bottom:666.948292pt;}
.yed{bottom:671.746667pt;}
.y4a{bottom:672.413200pt;}
.y22{bottom:676.417333pt;}
.y83{bottom:679.972000pt;}
.y6e{bottom:680.023867pt;}
.y114{bottom:681.338400pt;}
.yb6{bottom:687.736283pt;}
.yec{bottom:687.746667pt;}
.y49{bottom:688.413200pt;}
.y82{bottom:695.972000pt;}
.y113{bottom:696.005067pt;}
.y6d{bottom:696.023867pt;}
.yeb{bottom:703.746667pt;}
.y48{bottom:704.413200pt;}
.yb5{bottom:708.523208pt;}
.ybe{bottom:709.732667pt;}
.y112{bottom:710.671733pt;}
.y81{bottom:711.972000pt;}
.y6c{bottom:712.023867pt;}
.y21{bottom:713.761333pt;}
.yea{bottom:719.746667pt;}
.y47{bottom:720.413200pt;}
.ybd{bottom:723.066000pt;}
.y80{bottom:727.972000pt;}
.y6b{bottom:728.023867pt;}
.y111{bottom:729.118133pt;}
.yb4{bottom:729.310667pt;}
.ye9{bottom:735.746667pt;}
.y46{bottom:736.413200pt;}
.y20{bottom:737.761333pt;}
.y110{bottom:743.784800pt;}
.ybc{bottom:743.958667pt;}
.y7f{bottom:743.972000pt;}
.yb3{bottom:749.801333pt;}
.y6a{bottom:751.582667pt;}
.ye8{bottom:751.746667pt;}
.ybb{bottom:759.958667pt;}
.y45{bottom:759.972000pt;}
.y1f{bottom:761.761333pt;}
.y10f{bottom:762.230667pt;}
.y69{bottom:775.141467pt;}
.ye7{bottom:775.305600pt;}
.yba{bottom:775.958667pt;}
.y44{bottom:775.972000pt;}
.y10e{bottom:776.897333pt;}
.ya4{bottom:777.821333pt;}
.y43{bottom:825.504000pt;}
.y1{bottom:836.170667pt;}
.h9{height:28.078125pt;}
.h7{height:32.757813pt;}
.h2{height:34.048000pt;}
.h8{height:35.195313pt;}
.h5{height:37.437500pt;}
.hd{height:37.541667pt;}
.h13{height:39.291667pt;}
.h4{height:39.777344pt;}
.h6{height:39.888021pt;}
.h3{height:42.117188pt;}
.ha{height:46.796875pt;}
.h14{height:46.927083pt;}
.hf{height:51.476563pt;}
.he{height:51.480829pt;}
.h11{height:51.619792pt;}
.h12{height:54.026042pt;}
.h10{height:56.843750pt;}
.hc{height:80.528646pt;}
.hb{height:127.898438pt;}
.h0{height:880.626667pt;}
.h1{height:880.666667pt;}
.w1{width:604.666667pt;}
.w0{width:604.720000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590667pt;}
.x6{left:77.544307pt;}
.xc{left:81.765867pt;}
.x2{left:86.929213pt;}
.xa{left:94.127067pt;}
.x9{left:102.418933pt;}
.x4{left:117.842133pt;}
.x7{left:122.189600pt;}
.x8{left:127.888533pt;}
.xb{left:137.118667pt;}
.x5{left:173.448000pt;}
.x3{left:292.361333pt;}
}




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