
    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_6f3febfbb9baf52f6dc5c0c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.774902;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_2dcd654ef32ce8957200c216.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.769531;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_71370cc49b1cbda06edb8dc8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119141;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_068a131c91e95eae2d38f2fd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fefe58f9d4e3dfa2da5a616a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ad77c28b85c515fe9d69c669.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.111816;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_4a21174a0b1dbd998149c61c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107422;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_2f1113b6cdc8df5b7b58c886.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.007324;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_ea047630b147105a6eb4b3a3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.111816;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_7315f511a1d57ef0ff0b1963.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d2b922d2606809d21865d448.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a964f6e09a5e28d41e1b18fd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.107422;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);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.342000px;}
.ls8{letter-spacing:-0.330000px;}
.ls10{letter-spacing:-0.322800px;}
.ls1a{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.262200px;}
.lsf{letter-spacing:-0.241800px;}
.ls14{letter-spacing:-0.162000px;}
.ls11{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.023040px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.084000px;}
.ls3{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.126600px;}
.ls1b{letter-spacing:0.180000px;}
.lse{letter-spacing:0.197400px;}
.ls1{letter-spacing:0.273600px;}
.ls1d{letter-spacing:0.378000px;}
.lsd{letter-spacing:0.397200px;}
.lsa{letter-spacing:0.558600px;}
.ls13{letter-spacing:0.576000px;}
.ls16{letter-spacing:0.648000px;}
.ls2{letter-spacing:0.696960px;}
.ls1c{letter-spacing:0.900000px;}
.ls17{letter-spacing:1.368000px;}
.ls7{letter-spacing:1.590000px;}
.ls6{letter-spacing:2.322000px;}
.ls19{letter-spacing:4.248000px;}
.lsb{letter-spacing:19.200000px;}
.ls18{letter-spacing:198.732000px;}
.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;}
}
.ws13{word-spacing:-12.960000px;}
.ws12{word-spacing:-12.888000px;}
.wse{word-spacing:-12.312000px;}
.ws11{word-spacing:-12.240000px;}
.wsd{word-spacing:-12.168000px;}
.wsf{word-spacing:-12.150000px;}
.ws10{word-spacing:-11.970000px;}
.ws7{word-spacing:-10.998720px;}
.ws8{word-spacing:-9.918480px;}
.ws9{word-spacing:-9.718680px;}
.ws2{word-spacing:-9.609840px;}
.ws6{word-spacing:-9.521280px;}
.wsa{word-spacing:-9.279480px;}
.wsb{word-spacing:-9.198480px;}
.ws3{word-spacing:-8.877840px;}
.ws5{word-spacing:-7.414440px;}
.ws1{word-spacing:-7.287840px;}
.ws0{word-spacing:-7.264800px;}
.ws4{word-spacing:-6.957840px;}
.ws14{word-spacing:-3.816000px;}
.wsc{word-spacing:0.000000px;}
._c{margin-left:-3.276240px;}
._b{margin-left:-2.131920px;}
._2{margin-left:-1.011840px;}
._1{width:1.325760px;}
._3{width:2.523360px;}
._0{width:4.501920px;}
._a{width:5.924640px;}
._9{width:7.030800px;}
._13{width:8.143200px;}
._e{width:9.208080px;}
._14{width:11.008320px;}
._d{width:12.201840px;}
._f{width:13.471920px;}
._7{width:14.556960px;}
._6{width:15.785280px;}
._8{width:17.020080px;}
._11{width:18.203280px;}
._12{width:19.356480px;}
._16{width:20.451840px;}
._17{width:21.501840px;}
._15{width:23.141520px;}
._18{width:24.294960px;}
._10{width:25.687680px;}
._4{width:35.063280px;}
._5{width:36.075120px;}
._1a{width:59.238000px;}
._1b{width:60.888000px;}
._19{width:68.796000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,52,53);}
.fs4{font-size:5.760000px;}
.fs6{font-size:18.000000px;}
.fs3{font-size:30.240000px;}
.fs8{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fsa{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fsb{font-size:56.880000px;}
.fs9{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:2.535000px;}
.y30{bottom:15.495000px;}
.y42{bottom:16.395000px;}
.y2f{bottom:28.455000px;}
.y41{bottom:29.355000px;}
.y2e{bottom:39.795000px;}
.y40{bottom:40.695000px;}
.y3f{bottom:45.915000px;}
.y2d{bottom:46.455000px;}
.y3e{bottom:51.135000px;}
.y3d{bottom:56.175000px;}
.y14e{bottom:58.320000px;}
.y2c{bottom:59.415000px;}
.y17b{bottom:61.200000px;}
.y3c{bottom:61.395000px;}
.y87{bottom:62.100000px;}
.y19e{bottom:62.460000px;}
.y104{bottom:65.160000px;}
.y3b{bottom:66.615000px;}
.y116{bottom:69.516000px;}
.ycb{bottom:70.776000px;}
.yb7{bottom:71.856000px;}
.y2b{bottom:72.375000px;}
.y3a{bottom:73.095000px;}
.y14d{bottom:75.096000px;}
.y86{bottom:78.876000px;}
.y103{bottom:81.756000px;}
.y144{bottom:83.016000px;}
.y17a{bottom:83.556000px;}
.y2a{bottom:85.155000px;}
.y39{bottom:86.055000px;}
.yf7{bottom:86.256000px;}
.yca{bottom:87.336000px;}
.yb6{bottom:88.596000px;}
.y14c{bottom:91.836000px;}
.y85{bottom:95.436000px;}
.y29{bottom:98.115000px;}
.y102{bottom:98.496000px;}
.y38{bottom:99.015000px;}
.y143{bottom:99.756000px;}
.y19d{bottom:101.376000px;}
.yf6{bottom:102.816000px;}
.yc9{bottom:104.076000px;}
.yb5{bottom:105.336000px;}
.y52{bottom:106.776000px;}
.y14b{bottom:108.396000px;}
.y19c{bottom:109.656000px;}
.y28{bottom:111.075000px;}
.y37{bottom:111.975000px;}
.y84{bottom:112.176000px;}
.y101{bottom:115.236000px;}
.y142{bottom:116.496000px;}
.y160{bottom:118.116000px;}
.y51{bottom:118.836000px;}
.yf5{bottom:119.556000px;}
.yc8{bottom:120.816000px;}
.yb4{bottom:122.076000px;}
.y179{bottom:122.436000px;}
.y27{bottom:123.855000px;}
.y36{bottom:124.755000px;}
.y14a{bottom:125.136000px;}
.y15f{bottom:126.396000px;}
.y50{bottom:128.736000px;}
.y83{bottom:128.916000px;}
.y178{bottom:130.716000px;}
.y100{bottom:131.976000px;}
.y141{bottom:133.236000px;}
.yf4{bottom:136.296000px;}
.y26{bottom:136.815000px;}
.yc7{bottom:137.556000px;}
.y35{bottom:137.715000px;}
.yb3{bottom:138.816000px;}
.y149{bottom:141.876000px;}
.y82{bottom:142.956000px;}
.y15e{bottom:143.136000px;}
.y177{bottom:147.456000px;}
.yff{bottom:148.716000px;}
.y25{bottom:149.775000px;}
.y140{bottom:149.976000px;}
.y34{bottom:150.675000px;}
.y4f{bottom:151.050000px;}
.y81{bottom:151.230000px;}
.yf3{bottom:153.030000px;}
.yc6{bottom:154.290000px;}
.yb2{bottom:155.550000px;}
.y19b{bottom:157.170000px;}
.y148{bottom:158.610000px;}
.y15d{bottom:159.870000px;}
.y24{bottom:162.765000px;}
.y4e{bottom:163.110000px;}
.y33{bottom:163.485000px;}
.y176{bottom:164.190000px;}
.yfe{bottom:165.450000px;}
.y13f{bottom:166.710000px;}
.y80{bottom:167.970000px;}
.yf2{bottom:169.770000px;}
.yc5{bottom:171.030000px;}
.yb1{bottom:172.290000px;}
.y4d{bottom:175.170000px;}
.y147{bottom:175.350000px;}
.y23{bottom:175.725000px;}
.y32{bottom:176.445000px;}
.y15c{bottom:176.610000px;}
.y175{bottom:178.230000px;}
.yfd{bottom:182.190000px;}
.y13e{bottom:183.270000px;}
.y7f{bottom:184.710000px;}
.yf1{bottom:186.510000px;}
.y4c{bottom:187.230000px;}
.yc4{bottom:187.770000px;}
.yb0{bottom:188.850000px;}
.y21{bottom:189.570000px;}
.y146{bottom:192.090000px;}
.y15b{bottom:193.350000px;}
.yfc{bottom:196.230000px;}
.y4b{bottom:199.290000px;}
.y13d{bottom:200.010000px;}
.y7e{bottom:201.450000px;}
.yf0{bottom:203.250000px;}
.yc3{bottom:204.330000px;}
.y19a{bottom:204.510000px;}
.yaf{bottom:205.590000px;}
.y145{bottom:208.830000px;}
.y15a{bottom:209.910000px;}
.y4a{bottom:211.350000px;}
.y13c{bottom:216.750000px;}
.yef{bottom:217.290000px;}
.y7d{bottom:218.190000px;}
.y115{bottom:219.990000px;}
.yc2{bottom:221.070000px;}
.yae{bottom:222.330000px;}
.y49{bottom:223.410000px;}
.yee{bottom:225.570000px;}
.y159{bottom:226.650000px;}
.y13b{bottom:233.490000px;}
.y174{bottom:234.030000px;}
.y7c{bottom:234.750000px;}
.y199{bottom:235.110000px;}
.y48{bottom:235.470000px;}
.y114{bottom:236.550000px;}
.yc1{bottom:237.810000px;}
.yad{bottom:239.070000px;}
.yed{bottom:242.130000px;}
.y158{bottom:243.390000px;}
.y47{bottom:247.530000px;}
.y13a{bottom:250.230000px;}
.y7b{bottom:251.490000px;}
.y113{bottom:253.290000px;}
.yc0{bottom:254.550000px;}
.yac{bottom:255.810000px;}
.y173{bottom:256.170000px;}
.yec{bottom:258.870000px;}
.y46{bottom:259.590000px;}
.y157{bottom:260.130000px;}
.y172{bottom:264.450000px;}
.y7a{bottom:265.530000px;}
.y139{bottom:267.015000px;}
.y112{bottom:270.075000px;}
.ybf{bottom:271.335000px;}
.y45{bottom:271.695000px;}
.yab{bottom:272.595000px;}
.y79{bottom:273.855000px;}
.y198{bottom:274.215000px;}
.yeb{bottom:275.655000px;}
.y156{bottom:276.915000px;}
.y171{bottom:281.235000px;}
.y197{bottom:282.495000px;}
.y44{bottom:283.755000px;}
.y111{bottom:286.815000px;}
.yaa{bottom:287.895000px;}
.ybe{bottom:288.075000px;}
.y78{bottom:290.595000px;}
.yea{bottom:292.395000px;}
.y155{bottom:293.655000px;}
.y170{bottom:295.275000px;}
.y43{bottom:295.815000px;}
.y196{bottom:296.535000px;}
.y138{bottom:300.495000px;}
.y110{bottom:303.555000px;}
.ya9{bottom:304.815000px;}
.y77{bottom:307.335000px;}
.y22{bottom:308.760000px;}
.y20{bottom:308.775000px;}
.ye9{bottom:309.135000px;}
.y154{bottom:310.395000px;}
.y137{bottom:317.055000px;}
.y10f{bottom:320.295000px;}
.ya8{bottom:321.555000px;}
.y76{bottom:324.075000px;}
.ye8{bottom:325.875000px;}
.y153{bottom:327.135000px;}
.y136{bottom:333.795000px;}
.y16f{bottom:334.335000px;}
.y195{bottom:335.595000px;}
.y10e{bottom:337.035000px;}
.ya7{bottom:338.115000px;}
.y75{bottom:340.815000px;}
.ye7{bottom:342.615000px;}
.y152{bottom:343.695000px;}
.y135{bottom:350.535000px;}
.y10d{bottom:353.775000px;}
.ya6{bottom:354.855000px;}
.y74{bottom:357.375000px;}
.ye6{bottom:359.355000px;}
.y151{bottom:360.435000px;}
.y134{bottom:364.575000px;}
.y10c{bottom:370.335000px;}
.ya5{bottom:371.595000px;}
.y133{bottom:372.855000px;}
.y16e{bottom:373.215000px;}
.y73{bottom:374.115000px;}
.y194{bottom:374.475000px;}
.ye5{bottom:375.915000px;}
.y150{bottom:377.175000px;}
.y16d{bottom:381.495000px;}
.y193{bottom:382.755000px;}
.y10b{bottom:387.075000px;}
.ya4{bottom:388.335000px;}
.y132{bottom:389.595000px;}
.y72{bottom:390.855000px;}
.ye4{bottom:392.655000px;}
.y14f{bottom:393.915000px;}
.y16c{bottom:398.235000px;}
.y192{bottom:399.495000px;}
.ya3{bottom:402.375000px;}
.y10a{bottom:403.815000px;}
.ybd{bottom:405.075000px;}
.y131{bottom:406.335000px;}
.y71{bottom:407.595000px;}
.ye3{bottom:409.395000px;}
.ya2{bottom:410.655000px;}
.y16b{bottom:412.275000px;}
.y191{bottom:413.535000px;}
.y109{bottom:420.555000px;}
.ybc{bottom:421.815000px;}
.y130{bottom:423.075000px;}
.y70{bottom:424.335000px;}
.ye2{bottom:426.135000px;}
.ya1{bottom:427.395000px;}
.ybb{bottom:435.855000px;}
.y108{bottom:437.295000px;}
.yfb{bottom:438.555000px;}
.y12f{bottom:439.815000px;}
.y6f{bottom:441.075000px;}
.ye1{bottom:442.875000px;}
.ya0{bottom:444.135000px;}
.y16a{bottom:451.335000px;}
.y190{bottom:452.595000px;}
.y107{bottom:454.035000px;}
.yfa{bottom:455.295000px;}
.y12e{bottom:456.375000px;}
.y6e{bottom:457.815000px;}
.ye0{bottom:459.615000px;}
.y9f{bottom:460.875000px;}
.y106{bottom:470.805000px;}
.yf9{bottom:471.885000px;}
.y12d{bottom:473.145000px;}
.y6d{bottom:474.585000px;}
.ydf{bottom:476.385000px;}
.y9e{bottom:477.465000px;}
.y105{bottom:484.845000px;}
.yf8{bottom:485.925000px;}
.y169{bottom:488.625000px;}
.y12c{bottom:489.885000px;}
.y6c{bottom:491.145000px;}
.y18f{bottom:491.505000px;}
.yde{bottom:492.945000px;}
.y9d{bottom:494.205000px;}
.y18e{bottom:499.785000px;}
.y168{bottom:505.365000px;}
.y12b{bottom:506.625000px;}
.y6b{bottom:507.885000px;}
.ydd{bottom:509.685000px;}
.y9c{bottom:510.945000px;}
.y1f{bottom:511.305000px;}
.y18d{bottom:516.525000px;}
.y1e{bottom:522.105000px;}
.y12a{bottom:523.365000px;}
.y6a{bottom:524.625000px;}
.ydc{bottom:526.425000px;}
.y9b{bottom:527.685000px;}
.y18c{bottom:533.265000px;}
.y1d{bottom:535.605000px;}
.y167{bottom:538.845000px;}
.y129{bottom:540.105000px;}
.y69{bottom:541.365000px;}
.ydb{bottom:543.165000px;}
.y9a{bottom:544.425000px;}
.y18b{bottom:547.305000px;}
.y1c{bottom:551.445000px;}
.y166{bottom:555.585000px;}
.y128{bottom:556.845000px;}
.y68{bottom:558.105000px;}
.yda{bottom:559.905000px;}
.y99{bottom:561.165000px;}
.y1b{bottom:563.505000px;}
.y18a{bottom:569.625000px;}
.y165{bottom:572.325000px;}
.y127{bottom:573.585000px;}
.y1a{bottom:574.485000px;}
.y67{bottom:574.845000px;}
.yd9{bottom:576.645000px;}
.y98{bottom:577.905000px;}
.y19{bottom:579.525000px;}
.y18{bottom:584.745000px;}
.y164{bottom:589.065000px;}
.y17{bottom:589.965000px;}
.y126{bottom:590.145000px;}
.y66{bottom:591.585000px;}
.yd8{bottom:593.385000px;}
.y97{bottom:594.645000px;}
.y16{bottom:595.005000px;}
.y15{bottom:600.225000px;}
.y14{bottom:605.445000px;}
.y163{bottom:605.625000px;}
.y125{bottom:606.885000px;}
.y65{bottom:608.325000px;}
.y189{bottom:608.505000px;}
.yd7{bottom:610.125000px;}
.y96{bottom:611.205000px;}
.y13{bottom:612.105000px;}
.y188{bottom:616.785000px;}
.y162{bottom:622.365000px;}
.y124{bottom:623.625000px;}
.y64{bottom:624.885000px;}
.y12{bottom:625.245000px;}
.yd6{bottom:626.685000px;}
.y95{bottom:627.945000px;}
.y187{bottom:633.525000px;}
.y161{bottom:636.405000px;}
.y11{bottom:638.925000px;}
.y123{bottom:640.365000px;}
.y63{bottom:641.625000px;}
.yd5{bottom:643.425000px;}
.y94{bottom:644.685000px;}
.y10{bottom:645.765000px;}
.y186{bottom:647.565000px;}
.y185{bottom:655.845000px;}
.y122{bottom:657.105000px;}
.y62{bottom:658.365000px;}
.yd4{bottom:660.165000px;}
.yf{bottom:661.245000px;}
.y93{bottom:661.425000px;}
.y184{bottom:672.630000px;}
.y121{bottom:673.890000px;}
.y61{bottom:675.150000px;}
.ye{bottom:676.770000px;}
.yd3{bottom:676.950000px;}
.y92{bottom:678.210000px;}
.y183{bottom:686.670000px;}
.y120{bottom:690.630000px;}
.y60{bottom:691.890000px;}
.yd{bottom:692.430000px;}
.yd2{bottom:693.690000px;}
.y91{bottom:694.950000px;}
.yc{bottom:706.110000px;}
.y11f{bottom:707.370000px;}
.y5f{bottom:708.630000px;}
.yd1{bottom:710.430000px;}
.y90{bottom:711.690000px;}
.yb{bottom:714.390000px;}
.y11e{bottom:723.930000px;}
.y5e{bottom:725.370000px;}
.y182{bottom:725.730000px;}
.yd0{bottom:727.170000px;}
.y8f{bottom:728.430000px;}
.y1a4{bottom:732.750000px;}
.y181{bottom:733.830000px;}
.ya{bottom:734.910000px;}
.y11d{bottom:740.670000px;}
.y5d{bottom:742.110000px;}
.ycf{bottom:743.910000px;}
.y8e{bottom:744.990000px;}
.y1a3{bottom:749.490000px;}
.y180{bottom:750.570000px;}
.y9{bottom:756.690000px;}
.y11c{bottom:757.410000px;}
.y5c{bottom:758.670000px;}
.yce{bottom:760.470000px;}
.y8d{bottom:761.730000px;}
.y1a2{bottom:763.350000px;}
.y17f{bottom:764.610000px;}
.y8{bottom:771.630000px;}
.y17e{bottom:772.890000px;}
.y11b{bottom:774.150000px;}
.y5b{bottom:775.410000px;}
.ycd{bottom:777.210000px;}
.y8c{bottom:778.470000px;}
.y7{bottom:787.290000px;}
.y1a1{bottom:788.370000px;}
.y17d{bottom:789.630000px;}
.y11a{bottom:790.890000px;}
.y5a{bottom:792.150000px;}
.y8b{bottom:793.770000px;}
.ycc{bottom:793.950000px;}
.yba{bottom:795.210000px;}
.y6{bottom:797.730000px;}
.y17c{bottom:803.670000px;}
.y1a0{bottom:805.110000px;}
.y59{bottom:806.190000px;}
.y119{bottom:807.630000px;}
.y5{bottom:808.170000px;}
.y8a{bottom:810.690000px;}
.yb9{bottom:811.950000px;}
.y58{bottom:814.470000px;}
.y4{bottom:818.610000px;}
.y19f{bottom:819.150000px;}
.y118{bottom:821.670000px;}
.y89{bottom:827.430000px;}
.y117{bottom:828.510000px;}
.yb8{bottom:828.690000px;}
.y57{bottom:829.770000px;}
.y3{bottom:836.610000px;}
.y56{bottom:843.990000px;}
.y88{bottom:844.170000px;}
.y55{bottom:859.470000px;}
.y2{bottom:866.340000px;}
.y54{bottom:874.980000px;}
.y1{bottom:886.500000px;}
.y53{bottom:890.460000px;}
.h5{height:5.920372px;}
.hb{height:13.104492px;}
.h8{height:16.145508px;}
.hd{height:16.224609px;}
.h19{height:16.417969px;}
.h1b{height:18.738281px;}
.h4{height:27.582188px;}
.h16{height:33.023320px;}
.h14{height:35.120039px;}
.he{height:37.641094px;}
.ha{height:39.313477px;}
.hc{height:40.686680px;}
.h15{height:40.886016px;}
.h12{height:44.000156px;}
.h10{height:46.622932px;}
.h9{height:48.436523px;}
.h1a{height:48.673828px;}
.h18{height:49.253906px;}
.h2{height:50.068125px;}
.h6{height:52.417969px;}
.h17{height:58.463677px;}
.hf{height:61.423863px;}
.h7{height:64.898438px;}
.h3{height:81.632812px;}
.h11{height:200.550000px;}
.h13{height:200.565000px;}
.h1{height:957.000000px;}
.h0{height:957.060000px;}
.w2{width:21.276000px;}
.w3{width:254.535000px;}
.w4{width:254.550000px;}
.w1{width:255.315000px;}
.w0{width:639.000000px;}
.x0{left:0.000000px;}
.xe{left:8.136000px;}
.x10{left:10.620000px;}
.x2{left:54.000000px;}
.x14{left:56.520000px;}
.x3{left:68.616000px;}
.x18{left:75.276000px;}
.x19{left:96.516000px;}
.x12{left:100.065000px;}
.xd{left:102.990000px;}
.x15{left:105.876000px;}
.x1b{left:108.036000px;}
.x4{left:132.696000px;}
.x6{left:134.496000px;}
.x1{left:144.936000px;}
.x17{left:197.535000px;}
.x9{left:200.775000px;}
.x7{left:228.135000px;}
.x8{left:253.155000px;}
.xf{left:309.315000px;}
.x5{left:319.755000px;}
.x11{left:330.600000px;}
.x13{left:346.965000px;}
.xb{left:416.985000px;}
.xa{left:430.485000px;}
.x16{left:490.470000px;}
.x1a{left:566.610000px;}
.xc{left:585.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.304000pt;}
.ls8{letter-spacing:-0.293333pt;}
.ls10{letter-spacing:-0.286933pt;}
.ls1a{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.233067pt;}
.lsf{letter-spacing:-0.214933pt;}
.ls14{letter-spacing:-0.144000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.020480pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.074667pt;}
.ls3{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.112533pt;}
.ls1b{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.175467pt;}
.ls1{letter-spacing:0.243200pt;}
.ls1d{letter-spacing:0.336000pt;}
.lsd{letter-spacing:0.353067pt;}
.lsa{letter-spacing:0.496533pt;}
.ls13{letter-spacing:0.512000pt;}
.ls16{letter-spacing:0.576000pt;}
.ls2{letter-spacing:0.619520pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls17{letter-spacing:1.216000pt;}
.ls7{letter-spacing:1.413333pt;}
.ls6{letter-spacing:2.064000pt;}
.ls19{letter-spacing:3.776000pt;}
.lsb{letter-spacing:17.066667pt;}
.ls18{letter-spacing:176.650667pt;}
.ws13{word-spacing:-11.520000pt;}
.ws12{word-spacing:-11.456000pt;}
.wse{word-spacing:-10.944000pt;}
.ws11{word-spacing:-10.880000pt;}
.wsd{word-spacing:-10.816000pt;}
.wsf{word-spacing:-10.800000pt;}
.ws10{word-spacing:-10.640000pt;}
.ws7{word-spacing:-9.776640pt;}
.ws8{word-spacing:-8.816427pt;}
.ws9{word-spacing:-8.638827pt;}
.ws2{word-spacing:-8.542080pt;}
.ws6{word-spacing:-8.463360pt;}
.wsa{word-spacing:-8.248427pt;}
.wsb{word-spacing:-8.176427pt;}
.ws3{word-spacing:-7.891413pt;}
.ws5{word-spacing:-6.590613pt;}
.ws1{word-spacing:-6.478080pt;}
.ws0{word-spacing:-6.457600pt;}
.ws4{word-spacing:-6.184747pt;}
.ws14{word-spacing:-3.392000pt;}
.wsc{word-spacing:0.000000pt;}
._c{margin-left:-2.912213pt;}
._b{margin-left:-1.895040pt;}
._2{margin-left:-0.899413pt;}
._1{width:1.178453pt;}
._3{width:2.242987pt;}
._0{width:4.001707pt;}
._a{width:5.266347pt;}
._9{width:6.249600pt;}
._13{width:7.238400pt;}
._e{width:8.184960pt;}
._14{width:9.785173pt;}
._d{width:10.846080pt;}
._f{width:11.975040pt;}
._7{width:12.939520pt;}
._6{width:14.031360pt;}
._8{width:15.128960pt;}
._11{width:16.180693pt;}
._12{width:17.205760pt;}
._16{width:18.179413pt;}
._17{width:19.112747pt;}
._15{width:20.570240pt;}
._18{width:21.595520pt;}
._10{width:22.833493pt;}
._4{width:31.167360pt;}
._5{width:32.066773pt;}
._1a{width:52.656000pt;}
._1b{width:54.122667pt;}
._19{width:61.152000pt;}
.fs4{font-size:5.120000pt;}
.fs6{font-size:16.000000pt;}
.fs3{font-size:26.880000pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fsa{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fsb{font-size:50.560000pt;}
.fs9{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:2.253333pt;}
.y30{bottom:13.773333pt;}
.y42{bottom:14.573333pt;}
.y2f{bottom:25.293333pt;}
.y41{bottom:26.093333pt;}
.y2e{bottom:35.373333pt;}
.y40{bottom:36.173333pt;}
.y3f{bottom:40.813333pt;}
.y2d{bottom:41.293333pt;}
.y3e{bottom:45.453333pt;}
.y3d{bottom:49.933333pt;}
.y14e{bottom:51.840000pt;}
.y2c{bottom:52.813333pt;}
.y17b{bottom:54.400000pt;}
.y3c{bottom:54.573333pt;}
.y87{bottom:55.200000pt;}
.y19e{bottom:55.520000pt;}
.y104{bottom:57.920000pt;}
.y3b{bottom:59.213333pt;}
.y116{bottom:61.792000pt;}
.ycb{bottom:62.912000pt;}
.yb7{bottom:63.872000pt;}
.y2b{bottom:64.333333pt;}
.y3a{bottom:64.973333pt;}
.y14d{bottom:66.752000pt;}
.y86{bottom:70.112000pt;}
.y103{bottom:72.672000pt;}
.y144{bottom:73.792000pt;}
.y17a{bottom:74.272000pt;}
.y2a{bottom:75.693333pt;}
.y39{bottom:76.493333pt;}
.yf7{bottom:76.672000pt;}
.yca{bottom:77.632000pt;}
.yb6{bottom:78.752000pt;}
.y14c{bottom:81.632000pt;}
.y85{bottom:84.832000pt;}
.y29{bottom:87.213333pt;}
.y102{bottom:87.552000pt;}
.y38{bottom:88.013333pt;}
.y143{bottom:88.672000pt;}
.y19d{bottom:90.112000pt;}
.yf6{bottom:91.392000pt;}
.yc9{bottom:92.512000pt;}
.yb5{bottom:93.632000pt;}
.y52{bottom:94.912000pt;}
.y14b{bottom:96.352000pt;}
.y19c{bottom:97.472000pt;}
.y28{bottom:98.733333pt;}
.y37{bottom:99.533333pt;}
.y84{bottom:99.712000pt;}
.y101{bottom:102.432000pt;}
.y142{bottom:103.552000pt;}
.y160{bottom:104.992000pt;}
.y51{bottom:105.632000pt;}
.yf5{bottom:106.272000pt;}
.yc8{bottom:107.392000pt;}
.yb4{bottom:108.512000pt;}
.y179{bottom:108.832000pt;}
.y27{bottom:110.093333pt;}
.y36{bottom:110.893333pt;}
.y14a{bottom:111.232000pt;}
.y15f{bottom:112.352000pt;}
.y50{bottom:114.432000pt;}
.y83{bottom:114.592000pt;}
.y178{bottom:116.192000pt;}
.y100{bottom:117.312000pt;}
.y141{bottom:118.432000pt;}
.yf4{bottom:121.152000pt;}
.y26{bottom:121.613333pt;}
.yc7{bottom:122.272000pt;}
.y35{bottom:122.413333pt;}
.yb3{bottom:123.392000pt;}
.y149{bottom:126.112000pt;}
.y82{bottom:127.072000pt;}
.y15e{bottom:127.232000pt;}
.y177{bottom:131.072000pt;}
.yff{bottom:132.192000pt;}
.y25{bottom:133.133333pt;}
.y140{bottom:133.312000pt;}
.y34{bottom:133.933333pt;}
.y4f{bottom:134.266667pt;}
.y81{bottom:134.426667pt;}
.yf3{bottom:136.026667pt;}
.yc6{bottom:137.146667pt;}
.yb2{bottom:138.266667pt;}
.y19b{bottom:139.706667pt;}
.y148{bottom:140.986667pt;}
.y15d{bottom:142.106667pt;}
.y24{bottom:144.680000pt;}
.y4e{bottom:144.986667pt;}
.y33{bottom:145.320000pt;}
.y176{bottom:145.946667pt;}
.yfe{bottom:147.066667pt;}
.y13f{bottom:148.186667pt;}
.y80{bottom:149.306667pt;}
.yf2{bottom:150.906667pt;}
.yc5{bottom:152.026667pt;}
.yb1{bottom:153.146667pt;}
.y4d{bottom:155.706667pt;}
.y147{bottom:155.866667pt;}
.y23{bottom:156.200000pt;}
.y32{bottom:156.840000pt;}
.y15c{bottom:156.986667pt;}
.y175{bottom:158.426667pt;}
.yfd{bottom:161.946667pt;}
.y13e{bottom:162.906667pt;}
.y7f{bottom:164.186667pt;}
.yf1{bottom:165.786667pt;}
.y4c{bottom:166.426667pt;}
.yc4{bottom:166.906667pt;}
.yb0{bottom:167.866667pt;}
.y21{bottom:168.506667pt;}
.y146{bottom:170.746667pt;}
.y15b{bottom:171.866667pt;}
.yfc{bottom:174.426667pt;}
.y4b{bottom:177.146667pt;}
.y13d{bottom:177.786667pt;}
.y7e{bottom:179.066667pt;}
.yf0{bottom:180.666667pt;}
.yc3{bottom:181.626667pt;}
.y19a{bottom:181.786667pt;}
.yaf{bottom:182.746667pt;}
.y145{bottom:185.626667pt;}
.y15a{bottom:186.586667pt;}
.y4a{bottom:187.866667pt;}
.y13c{bottom:192.666667pt;}
.yef{bottom:193.146667pt;}
.y7d{bottom:193.946667pt;}
.y115{bottom:195.546667pt;}
.yc2{bottom:196.506667pt;}
.yae{bottom:197.626667pt;}
.y49{bottom:198.586667pt;}
.yee{bottom:200.506667pt;}
.y159{bottom:201.466667pt;}
.y13b{bottom:207.546667pt;}
.y174{bottom:208.026667pt;}
.y7c{bottom:208.666667pt;}
.y199{bottom:208.986667pt;}
.y48{bottom:209.306667pt;}
.y114{bottom:210.266667pt;}
.yc1{bottom:211.386667pt;}
.yad{bottom:212.506667pt;}
.yed{bottom:215.226667pt;}
.y158{bottom:216.346667pt;}
.y47{bottom:220.026667pt;}
.y13a{bottom:222.426667pt;}
.y7b{bottom:223.546667pt;}
.y113{bottom:225.146667pt;}
.yc0{bottom:226.266667pt;}
.yac{bottom:227.386667pt;}
.y173{bottom:227.706667pt;}
.yec{bottom:230.106667pt;}
.y46{bottom:230.746667pt;}
.y157{bottom:231.226667pt;}
.y172{bottom:235.066667pt;}
.y7a{bottom:236.026667pt;}
.y139{bottom:237.346667pt;}
.y112{bottom:240.066667pt;}
.ybf{bottom:241.186667pt;}
.y45{bottom:241.506667pt;}
.yab{bottom:242.306667pt;}
.y79{bottom:243.426667pt;}
.y198{bottom:243.746667pt;}
.yeb{bottom:245.026667pt;}
.y156{bottom:246.146667pt;}
.y171{bottom:249.986667pt;}
.y197{bottom:251.106667pt;}
.y44{bottom:252.226667pt;}
.y111{bottom:254.946667pt;}
.yaa{bottom:255.906667pt;}
.ybe{bottom:256.066667pt;}
.y78{bottom:258.306667pt;}
.yea{bottom:259.906667pt;}
.y155{bottom:261.026667pt;}
.y170{bottom:262.466667pt;}
.y43{bottom:262.946667pt;}
.y196{bottom:263.586667pt;}
.y138{bottom:267.106667pt;}
.y110{bottom:269.826667pt;}
.ya9{bottom:270.946667pt;}
.y77{bottom:273.186667pt;}
.y22{bottom:274.453333pt;}
.y20{bottom:274.466667pt;}
.ye9{bottom:274.786667pt;}
.y154{bottom:275.906667pt;}
.y137{bottom:281.826667pt;}
.y10f{bottom:284.706667pt;}
.ya8{bottom:285.826667pt;}
.y76{bottom:288.066667pt;}
.ye8{bottom:289.666667pt;}
.y153{bottom:290.786667pt;}
.y136{bottom:296.706667pt;}
.y16f{bottom:297.186667pt;}
.y195{bottom:298.306667pt;}
.y10e{bottom:299.586667pt;}
.ya7{bottom:300.546667pt;}
.y75{bottom:302.946667pt;}
.ye7{bottom:304.546667pt;}
.y152{bottom:305.506667pt;}
.y135{bottom:311.586667pt;}
.y10d{bottom:314.466667pt;}
.ya6{bottom:315.426667pt;}
.y74{bottom:317.666667pt;}
.ye6{bottom:319.426667pt;}
.y151{bottom:320.386667pt;}
.y134{bottom:324.066667pt;}
.y10c{bottom:329.186667pt;}
.ya5{bottom:330.306667pt;}
.y133{bottom:331.426667pt;}
.y16e{bottom:331.746667pt;}
.y73{bottom:332.546667pt;}
.y194{bottom:332.866667pt;}
.ye5{bottom:334.146667pt;}
.y150{bottom:335.266667pt;}
.y16d{bottom:339.106667pt;}
.y193{bottom:340.226667pt;}
.y10b{bottom:344.066667pt;}
.ya4{bottom:345.186667pt;}
.y132{bottom:346.306667pt;}
.y72{bottom:347.426667pt;}
.ye4{bottom:349.026667pt;}
.y14f{bottom:350.146667pt;}
.y16c{bottom:353.986667pt;}
.y192{bottom:355.106667pt;}
.ya3{bottom:357.666667pt;}
.y10a{bottom:358.946667pt;}
.ybd{bottom:360.066667pt;}
.y131{bottom:361.186667pt;}
.y71{bottom:362.306667pt;}
.ye3{bottom:363.906667pt;}
.ya2{bottom:365.026667pt;}
.y16b{bottom:366.466667pt;}
.y191{bottom:367.586667pt;}
.y109{bottom:373.826667pt;}
.ybc{bottom:374.946667pt;}
.y130{bottom:376.066667pt;}
.y70{bottom:377.186667pt;}
.ye2{bottom:378.786667pt;}
.ya1{bottom:379.906667pt;}
.ybb{bottom:387.426667pt;}
.y108{bottom:388.706667pt;}
.yfb{bottom:389.826667pt;}
.y12f{bottom:390.946667pt;}
.y6f{bottom:392.066667pt;}
.ye1{bottom:393.666667pt;}
.ya0{bottom:394.786667pt;}
.y16a{bottom:401.186667pt;}
.y190{bottom:402.306667pt;}
.y107{bottom:403.586667pt;}
.yfa{bottom:404.706667pt;}
.y12e{bottom:405.666667pt;}
.y6e{bottom:406.946667pt;}
.ye0{bottom:408.546667pt;}
.y9f{bottom:409.666667pt;}
.y106{bottom:418.493333pt;}
.yf9{bottom:419.453333pt;}
.y12d{bottom:420.573333pt;}
.y6d{bottom:421.853333pt;}
.ydf{bottom:423.453333pt;}
.y9e{bottom:424.413333pt;}
.y105{bottom:430.973333pt;}
.yf8{bottom:431.933333pt;}
.y169{bottom:434.333333pt;}
.y12c{bottom:435.453333pt;}
.y6c{bottom:436.573333pt;}
.y18f{bottom:436.893333pt;}
.yde{bottom:438.173333pt;}
.y9d{bottom:439.293333pt;}
.y18e{bottom:444.253333pt;}
.y168{bottom:449.213333pt;}
.y12b{bottom:450.333333pt;}
.y6b{bottom:451.453333pt;}
.ydd{bottom:453.053333pt;}
.y9c{bottom:454.173333pt;}
.y1f{bottom:454.493333pt;}
.y18d{bottom:459.133333pt;}
.y1e{bottom:464.093333pt;}
.y12a{bottom:465.213333pt;}
.y6a{bottom:466.333333pt;}
.ydc{bottom:467.933333pt;}
.y9b{bottom:469.053333pt;}
.y18c{bottom:474.013333pt;}
.y1d{bottom:476.093333pt;}
.y167{bottom:478.973333pt;}
.y129{bottom:480.093333pt;}
.y69{bottom:481.213333pt;}
.ydb{bottom:482.813333pt;}
.y9a{bottom:483.933333pt;}
.y18b{bottom:486.493333pt;}
.y1c{bottom:490.173333pt;}
.y166{bottom:493.853333pt;}
.y128{bottom:494.973333pt;}
.y68{bottom:496.093333pt;}
.yda{bottom:497.693333pt;}
.y99{bottom:498.813333pt;}
.y1b{bottom:500.893333pt;}
.y18a{bottom:506.333333pt;}
.y165{bottom:508.733333pt;}
.y127{bottom:509.853333pt;}
.y1a{bottom:510.653333pt;}
.y67{bottom:510.973333pt;}
.yd9{bottom:512.573333pt;}
.y98{bottom:513.693333pt;}
.y19{bottom:515.133333pt;}
.y18{bottom:519.773333pt;}
.y164{bottom:523.613333pt;}
.y17{bottom:524.413333pt;}
.y126{bottom:524.573333pt;}
.y66{bottom:525.853333pt;}
.yd8{bottom:527.453333pt;}
.y97{bottom:528.573333pt;}
.y16{bottom:528.893333pt;}
.y15{bottom:533.533333pt;}
.y14{bottom:538.173333pt;}
.y163{bottom:538.333333pt;}
.y125{bottom:539.453333pt;}
.y65{bottom:540.733333pt;}
.y189{bottom:540.893333pt;}
.yd7{bottom:542.333333pt;}
.y96{bottom:543.293333pt;}
.y13{bottom:544.093333pt;}
.y188{bottom:548.253333pt;}
.y162{bottom:553.213333pt;}
.y124{bottom:554.333333pt;}
.y64{bottom:555.453333pt;}
.y12{bottom:555.773333pt;}
.yd6{bottom:557.053333pt;}
.y95{bottom:558.173333pt;}
.y187{bottom:563.133333pt;}
.y161{bottom:565.693333pt;}
.y11{bottom:567.933333pt;}
.y123{bottom:569.213333pt;}
.y63{bottom:570.333333pt;}
.yd5{bottom:571.933333pt;}
.y94{bottom:573.053333pt;}
.y10{bottom:574.013333pt;}
.y186{bottom:575.613333pt;}
.y185{bottom:582.973333pt;}
.y122{bottom:584.093333pt;}
.y62{bottom:585.213333pt;}
.yd4{bottom:586.813333pt;}
.yf{bottom:587.773333pt;}
.y93{bottom:587.933333pt;}
.y184{bottom:597.893333pt;}
.y121{bottom:599.013333pt;}
.y61{bottom:600.133333pt;}
.ye{bottom:601.573333pt;}
.yd3{bottom:601.733333pt;}
.y92{bottom:602.853333pt;}
.y183{bottom:610.373333pt;}
.y120{bottom:613.893333pt;}
.y60{bottom:615.013333pt;}
.yd{bottom:615.493333pt;}
.yd2{bottom:616.613333pt;}
.y91{bottom:617.733333pt;}
.yc{bottom:627.653333pt;}
.y11f{bottom:628.773333pt;}
.y5f{bottom:629.893333pt;}
.yd1{bottom:631.493333pt;}
.y90{bottom:632.613333pt;}
.yb{bottom:635.013333pt;}
.y11e{bottom:643.493333pt;}
.y5e{bottom:644.773333pt;}
.y182{bottom:645.093333pt;}
.yd0{bottom:646.373333pt;}
.y8f{bottom:647.493333pt;}
.y1a4{bottom:651.333333pt;}
.y181{bottom:652.293333pt;}
.ya{bottom:653.253333pt;}
.y11d{bottom:658.373333pt;}
.y5d{bottom:659.653333pt;}
.ycf{bottom:661.253333pt;}
.y8e{bottom:662.213333pt;}
.y1a3{bottom:666.213333pt;}
.y180{bottom:667.173333pt;}
.y9{bottom:672.613333pt;}
.y11c{bottom:673.253333pt;}
.y5c{bottom:674.373333pt;}
.yce{bottom:675.973333pt;}
.y8d{bottom:677.093333pt;}
.y1a2{bottom:678.533333pt;}
.y17f{bottom:679.653333pt;}
.y8{bottom:685.893333pt;}
.y17e{bottom:687.013333pt;}
.y11b{bottom:688.133333pt;}
.y5b{bottom:689.253333pt;}
.ycd{bottom:690.853333pt;}
.y8c{bottom:691.973333pt;}
.y7{bottom:699.813333pt;}
.y1a1{bottom:700.773333pt;}
.y17d{bottom:701.893333pt;}
.y11a{bottom:703.013333pt;}
.y5a{bottom:704.133333pt;}
.y8b{bottom:705.573333pt;}
.ycc{bottom:705.733333pt;}
.yba{bottom:706.853333pt;}
.y6{bottom:709.093333pt;}
.y17c{bottom:714.373333pt;}
.y1a0{bottom:715.653333pt;}
.y59{bottom:716.613333pt;}
.y119{bottom:717.893333pt;}
.y5{bottom:718.373333pt;}
.y8a{bottom:720.613333pt;}
.yb9{bottom:721.733333pt;}
.y58{bottom:723.973333pt;}
.y4{bottom:727.653333pt;}
.y19f{bottom:728.133333pt;}
.y118{bottom:730.373333pt;}
.y89{bottom:735.493333pt;}
.y117{bottom:736.453333pt;}
.yb8{bottom:736.613333pt;}
.y57{bottom:737.573333pt;}
.y3{bottom:743.653333pt;}
.y56{bottom:750.213333pt;}
.y88{bottom:750.373333pt;}
.y55{bottom:763.973333pt;}
.y2{bottom:770.080000pt;}
.y54{bottom:777.760000pt;}
.y1{bottom:788.000000pt;}
.y53{bottom:791.520000pt;}
.h5{height:5.262553pt;}
.hb{height:11.648438pt;}
.h8{height:14.351562pt;}
.hd{height:14.421875pt;}
.h19{height:14.593750pt;}
.h1b{height:16.656250pt;}
.h4{height:24.517500pt;}
.h16{height:29.354062pt;}
.h14{height:31.217812pt;}
.he{height:33.458750pt;}
.ha{height:34.945312pt;}
.hc{height:36.165937pt;}
.h15{height:36.343125pt;}
.h12{height:39.111250pt;}
.h10{height:41.442606pt;}
.h9{height:43.054688pt;}
.h1a{height:43.265625pt;}
.h18{height:43.781250pt;}
.h2{height:44.505000pt;}
.h6{height:46.593750pt;}
.h17{height:51.967713pt;}
.hf{height:54.598989pt;}
.h7{height:57.687500pt;}
.h3{height:72.562500pt;}
.h11{height:178.266667pt;}
.h13{height:178.280000pt;}
.h1{height:850.666667pt;}
.h0{height:850.720000pt;}
.w2{width:18.912000pt;}
.w3{width:226.253333pt;}
.w4{width:226.266667pt;}
.w1{width:226.946667pt;}
.w0{width:568.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.232000pt;}
.x10{left:9.440000pt;}
.x2{left:48.000000pt;}
.x14{left:50.240000pt;}
.x3{left:60.992000pt;}
.x18{left:66.912000pt;}
.x19{left:85.792000pt;}
.x12{left:88.946667pt;}
.xd{left:91.546667pt;}
.x15{left:94.112000pt;}
.x1b{left:96.032000pt;}
.x4{left:117.952000pt;}
.x6{left:119.552000pt;}
.x1{left:128.832000pt;}
.x17{left:175.586667pt;}
.x9{left:178.466667pt;}
.x7{left:202.786667pt;}
.x8{left:225.026667pt;}
.xf{left:274.946667pt;}
.x5{left:284.226667pt;}
.x11{left:293.866667pt;}
.x13{left:308.413333pt;}
.xb{left:370.653333pt;}
.xa{left:382.653333pt;}
.x16{left:435.973333pt;}
.x1a{left:503.653333pt;}
.xc{left:520.133333pt;}
}




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