
    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_c782e3cfb364f544737e0072.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_e7bdcffb202d7c1f3148c906.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_661e3da5c86d66a1225fefdc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_90eeaebe18036e2ab45221c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_df0c23a9cab3b077aa1a9bc9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_f74760e035ea5ecb469b263d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e64fbf3695051c936e524ba5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_f181147029160c9e95707e88.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.142090;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_9980dc200c26f64886515883.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-82.080000px;}
.v2{vertical-align:-80.640000px;}
.v1{vertical-align:-77.760000px;}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-1.440000px;}
.ls2d{letter-spacing:-1.008000px;}
.ls16{letter-spacing:-0.720000px;}
.ls2e{letter-spacing:-0.648000px;}
.lsc{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.567600px;}
.ls13{letter-spacing:-0.501000px;}
.ls30{letter-spacing:-0.432000px;}
.ls24{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.305400px;}
.ls18{letter-spacing:-0.288000px;}
.ls36{letter-spacing:-0.262200px;}
.ls2b{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.152400px;}
.ls22{letter-spacing:-0.144000px;}
.ls2c{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.040320px;}
.ls8{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.017280px;}
.ls11{letter-spacing:0.018720px;}
.ls0{letter-spacing:0.025920px;}
.ls19{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.086400px;}
.lsb{letter-spacing:0.109200px;}
.ls2f{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.152400px;}
.ls12{letter-spacing:0.158400px;}
.ls23{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.262080px;}
.ls1a{letter-spacing:0.288000px;}
.ls35{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.720000px;}
.ls34{letter-spacing:0.846000px;}
.ls29{letter-spacing:1.080000px;}
.ls27{letter-spacing:1.440000px;}
.ls5{letter-spacing:2.160000px;}
.ls1e{letter-spacing:3.600000px;}
.ls20{letter-spacing:5.040000px;}
.ls1f{letter-spacing:5.760000px;}
.ls1b{letter-spacing:7.920000px;}
.ls1c{letter-spacing:8.040000px;}
.lsf{letter-spacing:9.360000px;}
.ls26{letter-spacing:12.240000px;}
.ls28{letter-spacing:18.000000px;}
.ls32{letter-spacing:34.841280px;}
.ls21{letter-spacing:56.280000px;}
.ls10{letter-spacing:56.880000px;}
.ls31{letter-spacing:67.961280px;}
.ls1d{letter-spacing:76.440000px;}
.lse{letter-spacing:82.080000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws3{word-spacing:-19.448640px;}
.ws0{word-spacing:-19.440000px;}
.ws2{word-spacing:-19.431360px;}
.wsa{word-spacing:-19.080000px;}
.wsb{word-spacing:-18.360000px;}
.ws8{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws7{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.407600px;}
.wsf{word-spacing:-16.297800px;}
.wse{word-spacing:-16.254600px;}
.ws6{word-spacing:0.000000px;}
._f{margin-left:-2.312160px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._6{width:2.940000px;}
._9{width:3.969120px;}
._8{width:5.034240px;}
._b{width:6.094080px;}
._c{width:7.197120px;}
._7{width:8.412480px;}
._a{width:10.188480px;}
._d{width:12.125280px;}
._e{width:13.189440px;}
._11{width:14.760000px;}
._10{width:15.912000px;}
._12{width:16.971840px;}
._14{width:19.131840px;}
._13{width:23.256000px;}
._18{width:27.132000px;}
._17{width:36.864000px;}
._16{width:38.232000px;}
._15{width:74.088000px;}
._19{width:331.228080px;}
._1{width:480.335520px;}
._4{width:756.300000px;}
._2{width:822.540000px;}
._3{width:831.888480px;}
._1a{width:846.300000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.yf2{bottom:4.305000px;}
.y67{bottom:4.320000px;}
.yd7{bottom:4.365000px;}
.y174{bottom:4.485000px;}
.y12f{bottom:4.500000px;}
.ycd{bottom:14.580000px;}
.y9{bottom:21.240000px;}
.y130{bottom:24.660000px;}
.yf4{bottom:24.825000px;}
.yd0{bottom:24.840000px;}
.yf0{bottom:25.185000px;}
.y12d{bottom:25.380000px;}
.ya{bottom:31.140000px;}
.ycc{bottom:35.100000px;}
.y8{bottom:41.940000px;}
.yf3{bottom:45.345000px;}
.ycf{bottom:45.360000px;}
.yef{bottom:45.705000px;}
.yc9{bottom:45.720000px;}
.y176{bottom:45.885000px;}
.ycb{bottom:55.620000px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.yce{bottom:65.880000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.y97{bottom:140.796000px;}
.y15a{bottom:142.956000px;}
.y178{bottom:144.216000px;}
.yfc{bottom:146.016000px;}
.y128{bottom:146.736000px;}
.y35{bottom:151.410000px;}
.yfb{bottom:161.685000px;}
.y96{bottom:162.930000px;}
.y159{bottom:163.110000px;}
.y177{bottom:164.910000px;}
.yc6{bottom:165.450000px;}
.y65{bottom:166.710000px;}
.y127{bottom:167.070000px;}
.y34{bottom:170.310000px;}
.y175{bottom:181.125000px;}
.yfa{bottom:182.925000px;}
.y158{bottom:183.450000px;}
.y95{bottom:183.630000px;}
.yc5{bottom:186.150000px;}
.y64{bottom:187.410000px;}
.y33{bottom:189.210000px;}
.y157{bottom:203.610000px;}
.yf9{bottom:204.165000px;}
.y94{bottom:204.330000px;}
.yc4{bottom:206.850000px;}
.y126{bottom:207.570000px;}
.y63{bottom:208.110000px;}
.y32{bottom:208.290000px;}
.y173{bottom:222.525000px;}
.y156{bottom:223.950000px;}
.y93{bottom:225.030000px;}
.yf8{bottom:225.405000px;}
.y31{bottom:227.190000px;}
.yc3{bottom:227.550000px;}
.y125{bottom:227.910000px;}
.y62{bottom:228.810000px;}
.y155{bottom:244.290000px;}
.y92{bottom:245.550000px;}
.yf7{bottom:246.645000px;}
.y30{bottom:246.990000px;}
.y124{bottom:248.070000px;}
.yc2{bottom:248.250000px;}
.y61{bottom:249.510000px;}
.y154{bottom:264.450000px;}
.y91{bottom:266.250000px;}
.y172{bottom:268.050000px;}
.yf6{bottom:268.065000px;}
.y123{bottom:268.410000px;}
.yc1{bottom:268.950000px;}
.y2f{bottom:269.310000px;}
.y60{bottom:270.210000px;}
.y153{bottom:284.790000px;}
.y90{bottom:286.950000px;}
.y122{bottom:288.750000px;}
.yf5{bottom:289.305000px;}
.yc0{bottom:289.650000px;}
.y5f{bottom:290.910000px;}
.y2e{bottom:291.810000px;}
.y152{bottom:304.950000px;}
.y171{bottom:306.030000px;}
.y8f{bottom:307.650000px;}
.y121{bottom:308.910000px;}
.ybf{bottom:310.350000px;}
.yee{bottom:310.545000px;}
.y5e{bottom:311.610000px;}
.y2d{bottom:313.590000px;}
.y170{bottom:324.930000px;}
.y151{bottom:325.290000px;}
.y8e{bottom:328.350000px;}
.y120{bottom:329.250000px;}
.ybe{bottom:331.050000px;}
.y5d{bottom:332.310000px;}
.y2c{bottom:336.630000px;}
.y16f{bottom:343.830000px;}
.y150{bottom:345.630000px;}
.y8d{bottom:349.050000px;}
.y11f{bottom:349.410000px;}
.ybd{bottom:351.750000px;}
.y5c{bottom:353.010000px;}
.y2b{bottom:359.130000px;}
.y16e{bottom:362.910000px;}
.y14f{bottom:365.790000px;}
.y8c{bottom:369.750000px;}
.ybc{bottom:372.090000px;}
.yf1{bottom:372.825000px;}
.y5b{bottom:373.710000px;}
.y2a{bottom:380.955000px;}
.y16d{bottom:381.855000px;}
.y14e{bottom:386.175000px;}
.y11e{bottom:390.135000px;}
.y8b{bottom:390.495000px;}
.ybb{bottom:393.195000px;}
.y5a{bottom:394.455000px;}
.yed{bottom:398.415000px;}
.y16c{bottom:400.935000px;}
.y29{bottom:403.995000px;}
.y14d{bottom:406.335000px;}
.y11d{bottom:410.295000px;}
.y8a{bottom:411.195000px;}
.yba{bottom:413.895000px;}
.y59{bottom:415.155000px;}
.yec{bottom:419.115000px;}
.y16b{bottom:419.835000px;}
.y28{bottom:425.775000px;}
.y14c{bottom:426.675000px;}
.y11c{bottom:430.635000px;}
.y89{bottom:431.895000px;}
.yb9{bottom:434.595000px;}
.y58{bottom:435.855000px;}
.y16a{bottom:438.915000px;}
.yeb{bottom:439.275000px;}
.y14b{bottom:447.015000px;}
.y27{bottom:448.815000px;}
.y11b{bottom:450.795000px;}
.y88{bottom:452.595000px;}
.yb8{bottom:455.295000px;}
.y57{bottom:456.555000px;}
.y169{bottom:457.815000px;}
.yea{bottom:458.355000px;}
.y14a{bottom:467.175000px;}
.y26{bottom:471.135000px;}
.y87{bottom:473.295000px;}
.yb7{bottom:475.995000px;}
.y168{bottom:476.715000px;}
.y56{bottom:477.255000px;}
.ye9{bottom:478.875000px;}
.y149{bottom:487.515000px;}
.y11a{bottom:491.475000px;}
.y25{bottom:493.095000px;}
.y86{bottom:493.995000px;}
.y167{bottom:495.795000px;}
.yb6{bottom:496.695000px;}
.y55{bottom:497.955000px;}
.ye8{bottom:499.395000px;}
.y148{bottom:507.675000px;}
.y119{bottom:511.635000px;}
.y85{bottom:514.695000px;}
.y24{bottom:516.135000px;}
.yb5{bottom:517.395000px;}
.y54{bottom:518.655000px;}
.ye7{bottom:519.915000px;}
.y147{bottom:528.015000px;}
.y118{bottom:531.975000px;}
.y166{bottom:533.775000px;}
.y84{bottom:535.395000px;}
.yb4{bottom:538.095000px;}
.y23{bottom:538.455000px;}
.y53{bottom:539.355000px;}
.ye6{bottom:540.435000px;}
.y146{bottom:548.175000px;}
.y117{bottom:552.135000px;}
.y165{bottom:552.675000px;}
.y83{bottom:556.095000px;}
.yb3{bottom:558.795000px;}
.y52{bottom:560.055000px;}
.y22{bottom:560.415000px;}
.ye5{bottom:560.955000px;}
.y145{bottom:568.515000px;}
.y164{bottom:571.575000px;}
.y116{bottom:572.475000px;}
.y82{bottom:576.795000px;}
.yb2{bottom:579.495000px;}
.y51{bottom:580.755000px;}
.ye4{bottom:581.475000px;}
.y21{bottom:582.735000px;}
.y144{bottom:588.855000px;}
.y163{bottom:590.655000px;}
.y115{bottom:592.815000px;}
.y81{bottom:597.495000px;}
.yb1{bottom:600.195000px;}
.y50{bottom:601.455000px;}
.ye3{bottom:601.995000px;}
.y20{bottom:605.775000px;}
.y143{bottom:609.015000px;}
.y162{bottom:609.555000px;}
.y114{bottom:612.975000px;}
.y80{bottom:618.195000px;}
.yb0{bottom:620.895000px;}
.y4f{bottom:622.155000px;}
.ye2{bottom:622.515000px;}
.y1f{bottom:628.095000px;}
.y161{bottom:628.635000px;}
.y142{bottom:629.355000px;}
.y113{bottom:633.345000px;}
.y66{bottom:638.385000px;}
.y7f{bottom:638.925000px;}
.yaf{bottom:641.625000px;}
.y4e{bottom:642.885000px;}
.y160{bottom:647.565000px;}
.y141{bottom:649.545000px;}
.y1e{bottom:650.085000px;}
.y112{bottom:653.505000px;}
.y7e{bottom:659.625000px;}
.yae{bottom:662.325000px;}
.y4d{bottom:663.585000px;}
.y15f{bottom:666.465000px;}
.y140{bottom:669.885000px;}
.y1d{bottom:673.125000px;}
.y111{bottom:673.845000px;}
.y7d{bottom:680.325000px;}
.yad{bottom:683.025000px;}
.ye1{bottom:684.105000px;}
.y15e{bottom:685.545000px;}
.y13f{bottom:690.225000px;}
.y110{bottom:694.185000px;}
.y1c{bottom:695.445000px;}
.y7c{bottom:701.025000px;}
.yac{bottom:703.725000px;}
.y4c{bottom:704.445000px;}
.ye0{bottom:704.625000px;}
.y13e{bottom:710.385000px;}
.y10f{bottom:714.345000px;}
.y1b{bottom:717.405000px;}
.y7b{bottom:721.725000px;}
.y4b{bottom:723.525000px;}
.yab{bottom:724.425000px;}
.ydf{bottom:725.145000px;}
.y13d{bottom:730.725000px;}
.y10e{bottom:734.685000px;}
.y1a{bottom:740.265000px;}
.y4a{bottom:742.425000px;}
.yaa{bottom:745.125000px;}
.yde{bottom:745.845000px;}
.y13c{bottom:750.885000px;}
.y10d{bottom:754.845000px;}
.y49{bottom:761.325000px;}
.y19{bottom:762.225000px;}
.y7a{bottom:763.125000px;}
.ya9{bottom:765.825000px;}
.ydd{bottom:766.365000px;}
.y13b{bottom:770.865000px;}
.y10c{bottom:775.185000px;}
.y48{bottom:780.405000px;}
.y79{bottom:783.825000px;}
.y18{bottom:785.085000px;}
.ydc{bottom:786.165000px;}
.ya8{bottom:786.525000px;}
.y13a{bottom:791.025000px;}
.y10b{bottom:795.345000px;}
.y15d{bottom:799.305000px;}
.ydb{bottom:803.625000px;}
.y78{bottom:804.525000px;}
.ya7{bottom:807.225000px;}
.y17{bottom:807.585000px;}
.y139{bottom:809.565000px;}
.y10a{bottom:815.685000px;}
.y47{bottom:818.385000px;}
.yda{bottom:819.105000px;}
.y138{bottom:825.045000px;}
.y77{bottom:825.225000px;}
.ya6{bottom:827.925000px;}
.y16{bottom:829.545000px;}
.y109{bottom:836.025000px;}
.y46{bottom:837.285000px;}
.yd9{bottom:840.345000px;}
.y76{bottom:845.745000px;}
.y137{bottom:845.925000px;}
.ya5{bottom:848.625000px;}
.y15{bottom:852.405000px;}
.y45{bottom:856.185000px;}
.yd8{bottom:861.765000px;}
.y136{bottom:866.985000px;}
.y75{bottom:867.885000px;}
.ya4{bottom:869.325000px;}
.y14{bottom:874.905000px;}
.y44{bottom:875.265000px;}
.y108{bottom:876.525000px;}
.yd6{bottom:883.005000px;}
.y135{bottom:888.090000px;}
.y74{bottom:890.070000px;}
.y43{bottom:894.210000px;}
.y13{bottom:896.730000px;}
.yd5{bottom:904.290000px;}
.y134{bottom:909.150000px;}
.y73{bottom:910.590000px;}
.ya3{bottom:910.770000px;}
.y42{bottom:913.290000px;}
.y107{bottom:917.070000px;}
.y12{bottom:919.050000px;}
.yd4{bottom:925.530000px;}
.y133{bottom:930.030000px;}
.ya2{bottom:931.470000px;}
.y41{bottom:932.190000px;}
.y72{bottom:932.730000px;}
.y11{bottom:940.470000px;}
.yd3{bottom:946.770000px;}
.y132{bottom:951.090000px;}
.y40{bottom:951.270000px;}
.ya1{bottom:952.170000px;}
.y71{bottom:953.430000px;}
.y106{bottom:957.570000px;}
.y10{bottom:964.590000px;}
.yd2{bottom:968.190000px;}
.y3f{bottom:970.170000px;}
.y131{bottom:972.150000px;}
.ya0{bottom:972.870000px;}
.y70{bottom:974.130000px;}
.y105{bottom:977.910000px;}
.yf{bottom:988.710000px;}
.y3e{bottom:989.070000px;}
.yd1{bottom:989.430000px;}
.y12c{bottom:993.210000px;}
.y9f{bottom:993.570000px;}
.y6f{bottom:994.830000px;}
.y104{bottom:998.070000px;}
.y3d{bottom:1008.150000px;}
.yc8{bottom:1010.670000px;}
.ye{bottom:1012.830000px;}
.y9e{bottom:1014.090000px;}
.y6e{bottom:1015.530000px;}
.y103{bottom:1018.410000px;}
.y3c{bottom:1026.690000px;}
.y15c{bottom:1027.050000px;}
.y12e{bottom:1034.430000px;}
.y9d{bottom:1034.790000px;}
.y6d{bottom:1035.870000px;}
.yd{bottom:1036.950000px;}
.y102{bottom:1038.750000px;}
.y3b{bottom:1046.130000px;}
.y9c{bottom:1055.490000px;}
.y6c{bottom:1056.930000px;}
.y101{bottom:1058.910000px;}
.yc{bottom:1060.890000px;}
.y3a{bottom:1065.030000px;}
.y9b{bottom:1076.190000px;}
.y6{bottom:1077.090000px;}
.y6b{bottom:1077.630000px;}
.y100{bottom:1079.250000px;}
.y12b{bottom:1080.870000px;}
.y39{bottom:1083.930000px;}
.yca{bottom:1093.470000px;}
.y9a{bottom:1096.890000px;}
.y6a{bottom:1098.330000px;}
.yff{bottom:1099.410000px;}
.y12a{bottom:1101.210000px;}
.y38{bottom:1103.010000px;}
.y99{bottom:1117.590000px;}
.y69{bottom:1119.030000px;}
.yc7{bottom:1119.210000px;}
.yfe{bottom:1119.750000px;}
.y129{bottom:1121.010000px;}
.y15b{bottom:1121.730000px;}
.y37{bottom:1121.910000px;}
.y98{bottom:1138.320000px;}
.y68{bottom:1139.760000px;}
.yfd{bottom:1140.120000px;}
.y36{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h1c{height:20.145000px;}
.h21{height:20.160000px;}
.h1d{height:20.325000px;}
.h20{height:20.340000px;}
.h1f{height:20.362500px;}
.h13{height:20.505000px;}
.h16{height:20.520000px;}
.h19{height:20.541000px;}
.h15{height:20.542500px;}
.h25{height:20.685000px;}
.h1e{height:40.485000px;}
.h27{height:41.385000px;}
.h3{height:45.184219px;}
.hb{height:56.278125px;}
.h17{height:58.621992px;}
.h22{height:58.651172px;}
.h24{height:59.383125px;}
.h1a{height:61.545000px;}
.h26{height:62.085000px;}
.he{height:62.100000px;}
.hd{height:64.546875px;}
.hc{height:64.978594px;}
.h4{height:65.010937px;}
.h23{height:68.084282px;}
.h11{height:70.628906px;}
.h7{height:70.664062px;}
.h9{height:72.562500px;}
.h10{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.ha{height:78.367500px;}
.h6{height:78.870000px;}
.h14{height:82.065000px;}
.h1b{height:82.425000px;}
.h18{height:82.821000px;}
.h8{height:84.898125px;}
.h12{height:103.305000px;}
.hf{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:60.874500px;}
.w4{width:82.470000px;}
.wb{width:94.881000px;}
.wa{width:105.465000px;}
.w9{width:116.136000px;}
.w11{width:116.265000px;}
.w10{width:116.316000px;}
.wc{width:124.230000px;}
.w8{width:126.741000px;}
.w18{width:127.656000px;}
.w19{width:127.821000px;}
.w12{width:134.850000px;}
.wd{width:134.854500px;}
.wf{width:137.541000px;}
.w13{width:149.974500px;}
.w17{width:153.555000px;}
.w6{width:166.888500px;}
.w16{width:176.430000px;}
.w3{width:180.735000px;}
.w1a{width:337.753500px;}
.w1b{width:401.325000px;}
.w15{width:410.490000px;}
.w2{width:475.843500px;}
.w7{width:570.735000px;}
.w14{width:587.655000px;}
.we{width:602.775000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.918500px;}
.x2e{left:11.520000px;}
.x31{left:16.005000px;}
.x2b{left:17.085000px;}
.x33{left:19.065000px;}
.x54{left:20.325000px;}
.x2c{left:21.405000px;}
.x3c{left:22.665000px;}
.x2f{left:24.300000px;}
.x41{left:26.265000px;}
.x29{left:27.754500px;}
.x2d{left:29.910000px;}
.x32{left:31.665000px;}
.x37{left:32.940000px;}
.x39{left:34.005000px;}
.x43{left:35.494500px;}
.x40{left:36.900000px;}
.x3a{left:38.010000px;}
.x3b{left:39.240000px;}
.x53{left:40.500000px;}
.x36{left:43.560000px;}
.x38{left:44.670000px;}
.x3f{left:49.170000px;}
.x55{left:51.330000px;}
.x3e{left:53.460000px;}
.x49{left:54.525000px;}
.x3d{left:58.890000px;}
.x51{left:62.670000px;}
.x52{left:64.980000px;}
.x50{left:69.660000px;}
.x2{left:77.041500px;}
.x56{left:83.700000px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x27{left:88.200000px;}
.x4c{left:90.210000px;}
.x9{left:103.356000px;}
.x4a{left:112.356000px;}
.x5a{left:123.690000px;}
.x25{left:127.476000px;}
.xc{left:132.516000px;}
.x59{left:137.910000px;}
.x26{left:145.836000px;}
.x45{left:148.530000px;}
.x5{left:172.650000px;}
.xd{left:184.890000px;}
.xa{left:194.430000px;}
.x44{left:212.985000px;}
.x4b{left:228.105000px;}
.x5b{left:241.995000px;}
.x2a{left:245.025000px;}
.x11{left:273.495000px;}
.x16{left:292.035000px;}
.x21{left:322.095000px;}
.x57{left:346.935000px;}
.x46{left:351.255000px;}
.x28{left:372.315000px;}
.x4e{left:382.395000px;}
.x42{left:383.475000px;}
.x19{left:387.255000px;}
.x1a{left:408.675000px;}
.x15{left:410.295000px;}
.x10{left:412.815000px;}
.x58{left:414.795000px;}
.xf{left:416.595000px;}
.x1f{left:425.955000px;}
.x1b{left:434.775000px;}
.x14{left:437.475000px;}
.xb{left:446.505000px;}
.x20{left:451.005000px;}
.xe{left:467.745000px;}
.x24{left:471.525000px;}
.x30{left:489.540000px;}
.x4f{left:510.780000px;}
.x1e{left:518.145000px;}
.x17{left:525.345000px;}
.x22{left:541.905000px;}
.x12{left:549.825000px;}
.x4{left:552.900000px;}
.x1c{left:559.365000px;}
.x18{left:568.905000px;}
.x47{left:585.300000px;}
.x34{left:595.920000px;}
.x23{left:598.785000px;}
.x4d{left:639.330000px;}
.x1d{left:656.250000px;}
.x48{left:680.910000px;}
.x35{left:691.530000px;}
.x13{left:711.150000px;}
.x6{left:733.650000px;}
.x8{left:808.020000px;}
@media print{
.v3{vertical-align:-72.960000pt;}
.v2{vertical-align:-71.680000pt;}
.v1{vertical-align:-69.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-1.280000pt;}
.ls2d{letter-spacing:-0.896000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls2e{letter-spacing:-0.576000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.504533pt;}
.ls13{letter-spacing:-0.445333pt;}
.ls30{letter-spacing:-0.384000pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.271467pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls36{letter-spacing:-0.233067pt;}
.ls2b{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.135467pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls2c{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.035840pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.015360pt;}
.ls11{letter-spacing:0.016640pt;}
.ls0{letter-spacing:0.023040pt;}
.ls19{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.076800pt;}
.lsb{letter-spacing:0.097067pt;}
.ls2f{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.135467pt;}
.ls12{letter-spacing:0.140800pt;}
.ls23{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.232960pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls35{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls34{letter-spacing:0.752000pt;}
.ls29{letter-spacing:0.960000pt;}
.ls27{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.920000pt;}
.ls1e{letter-spacing:3.200000pt;}
.ls20{letter-spacing:4.480000pt;}
.ls1f{letter-spacing:5.120000pt;}
.ls1b{letter-spacing:7.040000pt;}
.ls1c{letter-spacing:7.146667pt;}
.lsf{letter-spacing:8.320000pt;}
.ls26{letter-spacing:10.880000pt;}
.ls28{letter-spacing:16.000000pt;}
.ls32{letter-spacing:30.970027pt;}
.ls21{letter-spacing:50.026667pt;}
.ls10{letter-spacing:50.560000pt;}
.ls31{letter-spacing:60.410027pt;}
.ls1d{letter-spacing:67.946667pt;}
.lse{letter-spacing:72.960000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws3{word-spacing:-17.287680pt;}
.ws0{word-spacing:-17.280000pt;}
.ws2{word-spacing:-17.272320pt;}
.wsa{word-spacing:-16.960000pt;}
.wsb{word-spacing:-16.320000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws7{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.584533pt;}
.wsf{word-spacing:-14.486933pt;}
.wse{word-spacing:-14.448533pt;}
.ws6{word-spacing:0.000000pt;}
._f{margin-left:-2.055253pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._6{width:2.613333pt;}
._9{width:3.528107pt;}
._8{width:4.474880pt;}
._b{width:5.416960pt;}
._c{width:6.397440pt;}
._7{width:7.477760pt;}
._a{width:9.056427pt;}
._d{width:10.778027pt;}
._e{width:11.723947pt;}
._11{width:13.120000pt;}
._10{width:14.144000pt;}
._12{width:15.086080pt;}
._14{width:17.006080pt;}
._13{width:20.672000pt;}
._18{width:24.117333pt;}
._17{width:32.768000pt;}
._16{width:33.984000pt;}
._15{width:65.856000pt;}
._19{width:294.424960pt;}
._1{width:426.964907pt;}
._4{width:672.266667pt;}
._2{width:731.146667pt;}
._3{width:739.456427pt;}
._1a{width:752.266667pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.yf2{bottom:3.826667pt;}
.y67{bottom:3.840000pt;}
.yd7{bottom:3.880000pt;}
.y174{bottom:3.986667pt;}
.y12f{bottom:4.000000pt;}
.ycd{bottom:12.960000pt;}
.y9{bottom:18.880000pt;}
.y130{bottom:21.920000pt;}
.yf4{bottom:22.066667pt;}
.yd0{bottom:22.080000pt;}
.yf0{bottom:22.386667pt;}
.y12d{bottom:22.560000pt;}
.ya{bottom:27.680000pt;}
.ycc{bottom:31.200000pt;}
.y8{bottom:37.280000pt;}
.yf3{bottom:40.306667pt;}
.ycf{bottom:40.320000pt;}
.yef{bottom:40.626667pt;}
.yc9{bottom:40.640000pt;}
.y176{bottom:40.786667pt;}
.ycb{bottom:49.440000pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.yce{bottom:58.560000pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.y97{bottom:125.152000pt;}
.y15a{bottom:127.072000pt;}
.y178{bottom:128.192000pt;}
.yfc{bottom:129.792000pt;}
.y128{bottom:130.432000pt;}
.y35{bottom:134.586667pt;}
.yfb{bottom:143.720000pt;}
.y96{bottom:144.826667pt;}
.y159{bottom:144.986667pt;}
.y177{bottom:146.586667pt;}
.yc6{bottom:147.066667pt;}
.y65{bottom:148.186667pt;}
.y127{bottom:148.506667pt;}
.y34{bottom:151.386667pt;}
.y175{bottom:161.000000pt;}
.yfa{bottom:162.600000pt;}
.y158{bottom:163.066667pt;}
.y95{bottom:163.226667pt;}
.yc5{bottom:165.466667pt;}
.y64{bottom:166.586667pt;}
.y33{bottom:168.186667pt;}
.y157{bottom:180.986667pt;}
.yf9{bottom:181.480000pt;}
.y94{bottom:181.626667pt;}
.yc4{bottom:183.866667pt;}
.y126{bottom:184.506667pt;}
.y63{bottom:184.986667pt;}
.y32{bottom:185.146667pt;}
.y173{bottom:197.800000pt;}
.y156{bottom:199.066667pt;}
.y93{bottom:200.026667pt;}
.yf8{bottom:200.360000pt;}
.y31{bottom:201.946667pt;}
.yc3{bottom:202.266667pt;}
.y125{bottom:202.586667pt;}
.y62{bottom:203.386667pt;}
.y155{bottom:217.146667pt;}
.y92{bottom:218.266667pt;}
.yf7{bottom:219.240000pt;}
.y30{bottom:219.546667pt;}
.y124{bottom:220.506667pt;}
.yc2{bottom:220.666667pt;}
.y61{bottom:221.786667pt;}
.y154{bottom:235.066667pt;}
.y91{bottom:236.666667pt;}
.y172{bottom:238.266667pt;}
.yf6{bottom:238.280000pt;}
.y123{bottom:238.586667pt;}
.yc1{bottom:239.066667pt;}
.y2f{bottom:239.386667pt;}
.y60{bottom:240.186667pt;}
.y153{bottom:253.146667pt;}
.y90{bottom:255.066667pt;}
.y122{bottom:256.666667pt;}
.yf5{bottom:257.160000pt;}
.yc0{bottom:257.466667pt;}
.y5f{bottom:258.586667pt;}
.y2e{bottom:259.386667pt;}
.y152{bottom:271.066667pt;}
.y171{bottom:272.026667pt;}
.y8f{bottom:273.466667pt;}
.y121{bottom:274.586667pt;}
.ybf{bottom:275.866667pt;}
.yee{bottom:276.040000pt;}
.y5e{bottom:276.986667pt;}
.y2d{bottom:278.746667pt;}
.y170{bottom:288.826667pt;}
.y151{bottom:289.146667pt;}
.y8e{bottom:291.866667pt;}
.y120{bottom:292.666667pt;}
.ybe{bottom:294.266667pt;}
.y5d{bottom:295.386667pt;}
.y2c{bottom:299.226667pt;}
.y16f{bottom:305.626667pt;}
.y150{bottom:307.226667pt;}
.y8d{bottom:310.266667pt;}
.y11f{bottom:310.586667pt;}
.ybd{bottom:312.666667pt;}
.y5c{bottom:313.786667pt;}
.y2b{bottom:319.226667pt;}
.y16e{bottom:322.586667pt;}
.y14f{bottom:325.146667pt;}
.y8c{bottom:328.666667pt;}
.ybc{bottom:330.746667pt;}
.yf1{bottom:331.400000pt;}
.y5b{bottom:332.186667pt;}
.y2a{bottom:338.626667pt;}
.y16d{bottom:339.426667pt;}
.y14e{bottom:343.266667pt;}
.y11e{bottom:346.786667pt;}
.y8b{bottom:347.106667pt;}
.ybb{bottom:349.506667pt;}
.y5a{bottom:350.626667pt;}
.yed{bottom:354.146667pt;}
.y16c{bottom:356.386667pt;}
.y29{bottom:359.106667pt;}
.y14d{bottom:361.186667pt;}
.y11d{bottom:364.706667pt;}
.y8a{bottom:365.506667pt;}
.yba{bottom:367.906667pt;}
.y59{bottom:369.026667pt;}
.yec{bottom:372.546667pt;}
.y16b{bottom:373.186667pt;}
.y28{bottom:378.466667pt;}
.y14c{bottom:379.266667pt;}
.y11c{bottom:382.786667pt;}
.y89{bottom:383.906667pt;}
.yb9{bottom:386.306667pt;}
.y58{bottom:387.426667pt;}
.y16a{bottom:390.146667pt;}
.yeb{bottom:390.466667pt;}
.y14b{bottom:397.346667pt;}
.y27{bottom:398.946667pt;}
.y11b{bottom:400.706667pt;}
.y88{bottom:402.306667pt;}
.yb8{bottom:404.706667pt;}
.y57{bottom:405.826667pt;}
.y169{bottom:406.946667pt;}
.yea{bottom:407.426667pt;}
.y14a{bottom:415.266667pt;}
.y26{bottom:418.786667pt;}
.y87{bottom:420.706667pt;}
.yb7{bottom:423.106667pt;}
.y168{bottom:423.746667pt;}
.y56{bottom:424.226667pt;}
.ye9{bottom:425.666667pt;}
.y149{bottom:433.346667pt;}
.y11a{bottom:436.866667pt;}
.y25{bottom:438.306667pt;}
.y86{bottom:439.106667pt;}
.y167{bottom:440.706667pt;}
.yb6{bottom:441.506667pt;}
.y55{bottom:442.626667pt;}
.ye8{bottom:443.906667pt;}
.y148{bottom:451.266667pt;}
.y119{bottom:454.786667pt;}
.y85{bottom:457.506667pt;}
.y24{bottom:458.786667pt;}
.yb5{bottom:459.906667pt;}
.y54{bottom:461.026667pt;}
.ye7{bottom:462.146667pt;}
.y147{bottom:469.346667pt;}
.y118{bottom:472.866667pt;}
.y166{bottom:474.466667pt;}
.y84{bottom:475.906667pt;}
.yb4{bottom:478.306667pt;}
.y23{bottom:478.626667pt;}
.y53{bottom:479.426667pt;}
.ye6{bottom:480.386667pt;}
.y146{bottom:487.266667pt;}
.y117{bottom:490.786667pt;}
.y165{bottom:491.266667pt;}
.y83{bottom:494.306667pt;}
.yb3{bottom:496.706667pt;}
.y52{bottom:497.826667pt;}
.y22{bottom:498.146667pt;}
.ye5{bottom:498.626667pt;}
.y145{bottom:505.346667pt;}
.y164{bottom:508.066667pt;}
.y116{bottom:508.866667pt;}
.y82{bottom:512.706667pt;}
.yb2{bottom:515.106667pt;}
.y51{bottom:516.226667pt;}
.ye4{bottom:516.866667pt;}
.y21{bottom:517.986667pt;}
.y144{bottom:523.426667pt;}
.y163{bottom:525.026667pt;}
.y115{bottom:526.946667pt;}
.y81{bottom:531.106667pt;}
.yb1{bottom:533.506667pt;}
.y50{bottom:534.626667pt;}
.ye3{bottom:535.106667pt;}
.y20{bottom:538.466667pt;}
.y143{bottom:541.346667pt;}
.y162{bottom:541.826667pt;}
.y114{bottom:544.866667pt;}
.y80{bottom:549.506667pt;}
.yb0{bottom:551.906667pt;}
.y4f{bottom:553.026667pt;}
.ye2{bottom:553.346667pt;}
.y1f{bottom:558.306667pt;}
.y161{bottom:558.786667pt;}
.y142{bottom:559.426667pt;}
.y113{bottom:562.973333pt;}
.y66{bottom:567.453333pt;}
.y7f{bottom:567.933333pt;}
.yaf{bottom:570.333333pt;}
.y4e{bottom:571.453333pt;}
.y160{bottom:575.613333pt;}
.y141{bottom:577.373333pt;}
.y1e{bottom:577.853333pt;}
.y112{bottom:580.893333pt;}
.y7e{bottom:586.333333pt;}
.yae{bottom:588.733333pt;}
.y4d{bottom:589.853333pt;}
.y15f{bottom:592.413333pt;}
.y140{bottom:595.453333pt;}
.y1d{bottom:598.333333pt;}
.y111{bottom:598.973333pt;}
.y7d{bottom:604.733333pt;}
.yad{bottom:607.133333pt;}
.ye1{bottom:608.093333pt;}
.y15e{bottom:609.373333pt;}
.y13f{bottom:613.533333pt;}
.y110{bottom:617.053333pt;}
.y1c{bottom:618.173333pt;}
.y7c{bottom:623.133333pt;}
.yac{bottom:625.533333pt;}
.y4c{bottom:626.173333pt;}
.ye0{bottom:626.333333pt;}
.y13e{bottom:631.453333pt;}
.y10f{bottom:634.973333pt;}
.y1b{bottom:637.693333pt;}
.y7b{bottom:641.533333pt;}
.y4b{bottom:643.133333pt;}
.yab{bottom:643.933333pt;}
.ydf{bottom:644.573333pt;}
.y13d{bottom:649.533333pt;}
.y10e{bottom:653.053333pt;}
.y1a{bottom:658.013333pt;}
.y4a{bottom:659.933333pt;}
.yaa{bottom:662.333333pt;}
.yde{bottom:662.973333pt;}
.y13c{bottom:667.453333pt;}
.y10d{bottom:670.973333pt;}
.y49{bottom:676.733333pt;}
.y19{bottom:677.533333pt;}
.y7a{bottom:678.333333pt;}
.ya9{bottom:680.733333pt;}
.ydd{bottom:681.213333pt;}
.y13b{bottom:685.213333pt;}
.y10c{bottom:689.053333pt;}
.y48{bottom:693.693333pt;}
.y79{bottom:696.733333pt;}
.y18{bottom:697.853333pt;}
.ydc{bottom:698.813333pt;}
.ya8{bottom:699.133333pt;}
.y13a{bottom:703.133333pt;}
.y10b{bottom:706.973333pt;}
.y15d{bottom:710.493333pt;}
.ydb{bottom:714.333333pt;}
.y78{bottom:715.133333pt;}
.ya7{bottom:717.533333pt;}
.y17{bottom:717.853333pt;}
.y139{bottom:719.613333pt;}
.y10a{bottom:725.053333pt;}
.y47{bottom:727.453333pt;}
.yda{bottom:728.093333pt;}
.y138{bottom:733.373333pt;}
.y77{bottom:733.533333pt;}
.ya6{bottom:735.933333pt;}
.y16{bottom:737.373333pt;}
.y109{bottom:743.133333pt;}
.y46{bottom:744.253333pt;}
.yd9{bottom:746.973333pt;}
.y76{bottom:751.773333pt;}
.y137{bottom:751.933333pt;}
.ya5{bottom:754.333333pt;}
.y15{bottom:757.693333pt;}
.y45{bottom:761.053333pt;}
.yd8{bottom:766.013333pt;}
.y136{bottom:770.653333pt;}
.y75{bottom:771.453333pt;}
.ya4{bottom:772.733333pt;}
.y14{bottom:777.693333pt;}
.y44{bottom:778.013333pt;}
.y108{bottom:779.133333pt;}
.yd6{bottom:784.893333pt;}
.y135{bottom:789.413333pt;}
.y74{bottom:791.173333pt;}
.y43{bottom:794.853333pt;}
.y13{bottom:797.093333pt;}
.yd5{bottom:803.813333pt;}
.y134{bottom:808.133333pt;}
.y73{bottom:809.413333pt;}
.ya3{bottom:809.573333pt;}
.y42{bottom:811.813333pt;}
.y107{bottom:815.173333pt;}
.y12{bottom:816.933333pt;}
.yd4{bottom:822.693333pt;}
.y133{bottom:826.693333pt;}
.ya2{bottom:827.973333pt;}
.y41{bottom:828.613333pt;}
.y72{bottom:829.093333pt;}
.y11{bottom:835.973333pt;}
.yd3{bottom:841.573333pt;}
.y132{bottom:845.413333pt;}
.y40{bottom:845.573333pt;}
.ya1{bottom:846.373333pt;}
.y71{bottom:847.493333pt;}
.y106{bottom:851.173333pt;}
.y10{bottom:857.413333pt;}
.yd2{bottom:860.613333pt;}
.y3f{bottom:862.373333pt;}
.y131{bottom:864.133333pt;}
.ya0{bottom:864.773333pt;}
.y70{bottom:865.893333pt;}
.y105{bottom:869.253333pt;}
.yf{bottom:878.853333pt;}
.y3e{bottom:879.173333pt;}
.yd1{bottom:879.493333pt;}
.y12c{bottom:882.853333pt;}
.y9f{bottom:883.173333pt;}
.y6f{bottom:884.293333pt;}
.y104{bottom:887.173333pt;}
.y3d{bottom:896.133333pt;}
.yc8{bottom:898.373333pt;}
.ye{bottom:900.293333pt;}
.y9e{bottom:901.413333pt;}
.y6e{bottom:902.693333pt;}
.y103{bottom:905.253333pt;}
.y3c{bottom:912.613333pt;}
.y15c{bottom:912.933333pt;}
.y12e{bottom:919.493333pt;}
.y9d{bottom:919.813333pt;}
.y6d{bottom:920.773333pt;}
.yd{bottom:921.733333pt;}
.y102{bottom:923.333333pt;}
.y3b{bottom:929.893333pt;}
.y9c{bottom:938.213333pt;}
.y6c{bottom:939.493333pt;}
.y101{bottom:941.253333pt;}
.yc{bottom:943.013333pt;}
.y3a{bottom:946.693333pt;}
.y9b{bottom:956.613333pt;}
.y6{bottom:957.413333pt;}
.y6b{bottom:957.893333pt;}
.y100{bottom:959.333333pt;}
.y12b{bottom:960.773333pt;}
.y39{bottom:963.493333pt;}
.yca{bottom:971.973333pt;}
.y9a{bottom:975.013333pt;}
.y6a{bottom:976.293333pt;}
.yff{bottom:977.253333pt;}
.y12a{bottom:978.853333pt;}
.y38{bottom:980.453333pt;}
.y99{bottom:993.413333pt;}
.y69{bottom:994.693333pt;}
.yc7{bottom:994.853333pt;}
.yfe{bottom:995.333333pt;}
.y129{bottom:996.453333pt;}
.y15b{bottom:997.093333pt;}
.y37{bottom:997.253333pt;}
.y98{bottom:1011.840000pt;}
.y68{bottom:1013.120000pt;}
.yfd{bottom:1013.440000pt;}
.y36{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h1c{height:17.906667pt;}
.h21{height:17.920000pt;}
.h1d{height:18.066667pt;}
.h20{height:18.080000pt;}
.h1f{height:18.100000pt;}
.h13{height:18.226667pt;}
.h16{height:18.240000pt;}
.h19{height:18.258667pt;}
.h15{height:18.260000pt;}
.h25{height:18.386667pt;}
.h1e{height:35.986667pt;}
.h27{height:36.786667pt;}
.h3{height:40.163750pt;}
.hb{height:50.025000pt;}
.h17{height:52.108438pt;}
.h22{height:52.134375pt;}
.h24{height:52.785000pt;}
.h1a{height:54.706667pt;}
.h26{height:55.186667pt;}
.he{height:55.200000pt;}
.hd{height:57.375000pt;}
.hc{height:57.758750pt;}
.h4{height:57.787500pt;}
.h23{height:60.519362pt;}
.h11{height:62.781250pt;}
.h7{height:62.812500pt;}
.h9{height:64.500000pt;}
.h10{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.ha{height:69.660000pt;}
.h6{height:70.106667pt;}
.h14{height:72.946667pt;}
.h1b{height:73.266667pt;}
.h18{height:73.618667pt;}
.h8{height:75.465000pt;}
.h12{height:91.826667pt;}
.hf{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:54.110667pt;}
.w4{width:73.306667pt;}
.wb{width:84.338667pt;}
.wa{width:93.746667pt;}
.w9{width:103.232000pt;}
.w11{width:103.346667pt;}
.w10{width:103.392000pt;}
.wc{width:110.426667pt;}
.w8{width:112.658667pt;}
.w18{width:113.472000pt;}
.w19{width:113.618667pt;}
.w12{width:119.866667pt;}
.wd{width:119.870667pt;}
.wf{width:122.258667pt;}
.w13{width:133.310667pt;}
.w17{width:136.493333pt;}
.w6{width:148.345333pt;}
.w16{width:156.826667pt;}
.w3{width:160.653333pt;}
.w1a{width:300.225333pt;}
.w1b{width:356.733333pt;}
.w15{width:364.880000pt;}
.w2{width:422.972000pt;}
.w7{width:507.320000pt;}
.w14{width:522.360000pt;}
.we{width:535.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.038667pt;}
.x2e{left:10.240000pt;}
.x31{left:14.226667pt;}
.x2b{left:15.186667pt;}
.x33{left:16.946667pt;}
.x54{left:18.066667pt;}
.x2c{left:19.026667pt;}
.x3c{left:20.146667pt;}
.x2f{left:21.600000pt;}
.x41{left:23.346667pt;}
.x29{left:24.670667pt;}
.x2d{left:26.586667pt;}
.x32{left:28.146667pt;}
.x37{left:29.280000pt;}
.x39{left:30.226667pt;}
.x43{left:31.550667pt;}
.x40{left:32.800000pt;}
.x3a{left:33.786667pt;}
.x3b{left:34.880000pt;}
.x53{left:36.000000pt;}
.x36{left:38.720000pt;}
.x38{left:39.706667pt;}
.x3f{left:43.706667pt;}
.x55{left:45.626667pt;}
.x3e{left:47.520000pt;}
.x49{left:48.466667pt;}
.x3d{left:52.346667pt;}
.x51{left:55.706667pt;}
.x52{left:57.760000pt;}
.x50{left:61.920000pt;}
.x2{left:68.481333pt;}
.x56{left:74.400000pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x27{left:78.400000pt;}
.x4c{left:80.186667pt;}
.x9{left:91.872000pt;}
.x4a{left:99.872000pt;}
.x5a{left:109.946667pt;}
.x25{left:113.312000pt;}
.xc{left:117.792000pt;}
.x59{left:122.586667pt;}
.x26{left:129.632000pt;}
.x45{left:132.026667pt;}
.x5{left:153.466667pt;}
.xd{left:164.346667pt;}
.xa{left:172.826667pt;}
.x44{left:189.320000pt;}
.x4b{left:202.760000pt;}
.x5b{left:215.106667pt;}
.x2a{left:217.800000pt;}
.x11{left:243.106667pt;}
.x16{left:259.586667pt;}
.x21{left:286.306667pt;}
.x57{left:308.386667pt;}
.x46{left:312.226667pt;}
.x28{left:330.946667pt;}
.x4e{left:339.906667pt;}
.x42{left:340.866667pt;}
.x19{left:344.226667pt;}
.x1a{left:363.266667pt;}
.x15{left:364.706667pt;}
.x10{left:366.946667pt;}
.x58{left:368.706667pt;}
.xf{left:370.306667pt;}
.x1f{left:378.626667pt;}
.x1b{left:386.466667pt;}
.x14{left:388.866667pt;}
.xb{left:396.893333pt;}
.x20{left:400.893333pt;}
.xe{left:415.773333pt;}
.x24{left:419.133333pt;}
.x30{left:435.146667pt;}
.x4f{left:454.026667pt;}
.x1e{left:460.573333pt;}
.x17{left:466.973333pt;}
.x22{left:481.693333pt;}
.x12{left:488.733333pt;}
.x4{left:491.466667pt;}
.x1c{left:497.213333pt;}
.x18{left:505.693333pt;}
.x47{left:520.266667pt;}
.x34{left:529.706667pt;}
.x23{left:532.253333pt;}
.x4d{left:568.293333pt;}
.x1d{left:583.333333pt;}
.x48{left:605.253333pt;}
.x35{left:614.693333pt;}
.x13{left:632.133333pt;}
.x6{left:652.133333pt;}
.x8{left:718.240000pt;}
}




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