
    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_ee7dd5f48ba55a245581249c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_08d64093929cf1eb94211d80.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_392a06885542379790712b61.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_55d9375c3a3fa1555fe749b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dfa748fd9ff1852f0bf60cb1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_f814e8e8a5fce2330e66eb82.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_b41b879fc8b8d1513d0ec5f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:26.640000px;}
.ls14{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.226200px;}
.ls16{letter-spacing:-0.220800px;}
.lsb{letter-spacing:-0.219000px;}
.ls8{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.166800px;}
.ls11{letter-spacing:-0.051840px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.027360px;}
.lsc{letter-spacing:0.051840px;}
.ls2{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.166800px;}
.lsa{letter-spacing:0.167040px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.219000px;}
.ls6{letter-spacing:0.220800px;}
.ls10{letter-spacing:0.334200px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:1.440000px;}
.ls12{letter-spacing:2.520000px;}
.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;}
}
.ws7{word-spacing:-38.394000px;}
.ws0{word-spacing:-18.000000px;}
.ws12{word-spacing:-16.174200px;}
.ws10{word-spacing:-16.059000px;}
.wsf{word-spacing:-16.006800px;}
.wse{word-spacing:-15.891840px;}
.wsc{word-spacing:-15.840000px;}
.ws14{word-spacing:-15.788160px;}
.ws11{word-spacing:-15.673200px;}
.wsd{word-spacing:-15.621000px;}
.wsa{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.440800px;}
.ws18{word-spacing:-14.247360px;}
.ws6{word-spacing:-14.220000px;}
.ws17{word-spacing:-13.999200px;}
.ws16{word-spacing:-13.860000px;}
.wsb{word-spacing:-10.440000px;}
.ws13{word-spacing:-10.213800px;}
.ws1{word-spacing:-9.720000px;}
.ws15{word-spacing:-9.072000px;}
.ws5{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._9{margin-left:-3.784800px;}
._8{margin-left:-2.583360px;}
._0{margin-left:-1.324800px;}
._1{width:1.500000px;}
._2{width:2.587920px;}
._5{width:3.870720px;}
._14{width:5.127120px;}
._6{width:6.199920px;}
._b{width:7.223760px;}
._7{width:8.930160px;}
._10{width:10.067760px;}
._19{width:11.912400px;}
._1a{width:13.101120px;}
._17{width:14.258160px;}
._a{width:15.642000px;}
._12{width:17.725440px;}
._13{width:18.848400px;}
._18{width:20.782080px;}
._15{width:21.966720px;}
._16{width:23.037120px;}
._f{width:24.268800px;}
._e{width:25.311600px;}
._4{width:27.416160px;}
._3{width:28.724400px;}
._11{width:30.146400px;}
._d{width:35.618880px;}
._c{width:37.313280px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.000000px;}
.fs8{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs7{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs9{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y36{bottom:3.240000px;}
.y8b{bottom:3.420000px;}
.y117{bottom:5.940000px;}
.y115{bottom:6.120000px;}
.y121{bottom:6.840000px;}
.yfb{bottom:12.420000px;}
.ya2{bottom:12.450000px;}
.y11{bottom:14.400000px;}
.y11a{bottom:20.700000px;}
.y118{bottom:20.745000px;}
.y18{bottom:21.240000px;}
.yef{bottom:21.420000px;}
.ya1{bottom:21.450000px;}
.yfc{bottom:21.600000px;}
.y35{bottom:29.340000px;}
.yfa{bottom:30.600000px;}
.y17{bottom:38.520000px;}
.yee{bottom:39.600000px;}
.y34{bottom:45.720000px;}
.y16{bottom:55.830000px;}
.y33{bottom:62.100000px;}
.y15{bottom:72.930000px;}
.y32{bottom:78.480000px;}
.y14{bottom:90.210000px;}
.y31{bottom:94.860000px;}
.y19{bottom:95.430000px;}
.y13{bottom:105.150000px;}
.y30{bottom:111.240000px;}
.y2f{bottom:127.620000px;}
.y2e{bottom:144.180000px;}
.y101{bottom:154.800000px;}
.y154{bottom:155.160000px;}
.y91{bottom:157.680000px;}
.yd8{bottom:158.220000px;}
.ybb{bottom:160.230000px;}
.y2d{bottom:160.605000px;}
.y140{bottom:168.690000px;}
.y123{bottom:171.030000px;}
.y100{bottom:172.830000px;}
.y75{bottom:173.370000px;}
.yd7{bottom:176.430000px;}
.y2c{bottom:176.985000px;}
.y42{bottom:180.210000px;}
.y186{bottom:181.110000px;}
.y90{bottom:185.610000px;}
.yba{bottom:187.410000px;}
.yff{bottom:191.010000px;}
.y153{bottom:192.090000px;}
.y2b{bottom:193.365000px;}
.yd6{bottom:194.430000px;}
.y13f{bottom:195.870000px;}
.y185{bottom:197.490000px;}
.y122{bottom:199.110000px;}
.y41{bottom:199.290000px;}
.y74{bottom:200.550000px;}
.yb9{bottom:205.590000px;}
.yfe{bottom:209.190000px;}
.y2a{bottom:209.745000px;}
.yd5{bottom:212.610000px;}
.y8f{bottom:213.510000px;}
.y184{bottom:213.870000px;}
.y73{bottom:218.730000px;}
.y152{bottom:219.990000px;}
.y13e{bottom:223.050000px;}
.yb8{bottom:223.590000px;}
.y29{bottom:226.125000px;}
.y40{bottom:227.010000px;}
.yfd{bottom:227.190000px;}
.yd4{bottom:230.610000px;}
.y183{bottom:234.750000px;}
.y72{bottom:236.730000px;}
.y8e{bottom:238.890000px;}
.y3d{bottom:240.525000px;}
.yb7{bottom:241.770000px;}
.y28{bottom:242.505000px;}
.y120{bottom:245.190000px;}
.y3f{bottom:245.730000px;}
.y151{bottom:248.070000px;}
.yd3{bottom:248.790000px;}
.y13d{bottom:250.050000px;}
.y182{bottom:251.130000px;}
.yf9{bottom:251.670000px;}
.y71{bottom:254.910000px;}
.y8d{bottom:256.890000px;}
.y3c{bottom:257.805000px;}
.y27{bottom:258.885000px;}
.yb6{bottom:259.950000px;}
.y1a{bottom:261.930000px;}
.y11f{bottom:265.890000px;}
.yd2{bottom:266.970000px;}
.y181{bottom:267.510000px;}
.y3b{bottom:274.905000px;}
.y26{bottom:275.265000px;}
.y8c{bottom:275.790000px;}
.y150{bottom:275.970000px;}
.y13c{bottom:277.230000px;}
.yb5{bottom:277.950000px;}
.y70{bottom:282.090000px;}
.y1b1{bottom:283.170000px;}
.yd1{bottom:284.970000px;}
.y11e{bottom:286.590000px;}
.y180{bottom:288.570000px;}
.y25{bottom:291.645000px;}
.y3a{bottom:292.185000px;}
.y8a{bottom:293.970000px;}
.y14f{bottom:294.870000px;}
.yb4{bottom:296.130000px;}
.y13b{bottom:304.230000px;}
.y17f{bottom:304.950000px;}
.yf8{bottom:306.750000px;}
.y11d{bottom:307.290000px;}
.y1b0{bottom:307.470000px;}
.y24{bottom:308.025000px;}
.y39{bottom:309.465000px;}
.y6f{bottom:309.990000px;}
.yd0{bottom:312.150000px;}
.y14e{bottom:313.050000px;}
.yb3{bottom:314.130000px;}
.y13a{bottom:322.410000px;}
.y1af{bottom:323.850000px;}
.y23{bottom:324.405000px;}
.yf7{bottom:324.930000px;}
.y89{bottom:325.110000px;}
.y17e{bottom:325.830000px;}
.y38{bottom:326.745000px;}
.y11c{bottom:327.990000px;}
.y6e{bottom:328.170000px;}
.y14d{bottom:331.050000px;}
.y3e{bottom:331.965000px;}
.yb2{bottom:332.310000px;}
.ycf{bottom:340.050000px;}
.y139{bottom:340.590000px;}
.y22{bottom:340.785000px;}
.y37{bottom:341.685000px;}
.y17d{bottom:342.210000px;}
.yf6{bottom:342.930000px;}
.y1ae{bottom:344.730000px;}
.y6d{bottom:346.170000px;}
.y11b{bottom:348.690000px;}
.y14c{bottom:349.230000px;}
.yb1{bottom:350.490000px;}
.y88{bottom:352.290000px;}
.y21{bottom:357.165000px;}
.yce{bottom:358.230000px;}
.y17c{bottom:358.590000px;}
.y138{bottom:358.770000px;}
.yf5{bottom:361.110000px;}
.y6c{bottom:364.350000px;}
.y14b{bottom:367.410000px;}
.yb0{bottom:368.490000px;}
.y119{bottom:369.390000px;}
.y87{bottom:370.470000px;}
.y20{bottom:373.545000px;}
.ycd{bottom:376.230000px;}
.y137{bottom:376.770000px;}
.y1ad{bottom:377.490000px;}
.yf4{bottom:379.110000px;}
.y17b{bottom:379.470000px;}
.y6b{bottom:382.350000px;}
.y14a{bottom:385.410000px;}
.yaf{bottom:386.670000px;}
.y86{bottom:388.470000px;}
.y1f{bottom:389.925000px;}
.y116{bottom:390.090000px;}
.ycc{bottom:394.410000px;}
.y136{bottom:394.950000px;}
.y17a{bottom:395.850000px;}
.yf3{bottom:397.290000px;}
.y1ac{bottom:398.370000px;}
.y6a{bottom:400.530000px;}
.y149{bottom:403.590000px;}
.yae{bottom:404.850000px;}
.y1e{bottom:406.335000px;}
.y85{bottom:406.695000px;}
.y114{bottom:411.555000px;}
.y179{bottom:412.275000px;}
.ycb{bottom:412.635000px;}
.y135{bottom:412.995000px;}
.y1ab{bottom:414.795000px;}
.yf2{bottom:415.515000px;}
.y69{bottom:418.755000px;}
.y148{bottom:421.815000px;}
.y1d{bottom:422.715000px;}
.y84{bottom:424.695000px;}
.yca{bottom:430.635000px;}
.y134{bottom:431.175000px;}
.yad{bottom:432.075000px;}
.y178{bottom:433.155000px;}
.yf1{bottom:433.515000px;}
.y1aa{bottom:435.675000px;}
.y68{bottom:436.755000px;}
.y1c{bottom:439.095000px;}
.y147{bottom:439.815000px;}
.y83{bottom:442.875000px;}
.y113{bottom:444.675000px;}
.yc9{bottom:448.815000px;}
.y133{bottom:449.355000px;}
.y177{bottom:449.535000px;}
.yf0{bottom:451.695000px;}
.y1a9{bottom:452.055000px;}
.y1b{bottom:453.315000px;}
.y67{bottom:454.935000px;}
.y146{bottom:457.995000px;}
.yac{bottom:459.975000px;}
.y176{bottom:465.915000px;}
.y132{bottom:467.355000px;}
.y1a8{bottom:468.435000px;}
.y82{bottom:470.055000px;}
.yed{bottom:470.595000px;}
.y112{bottom:471.675000px;}
.y66{bottom:473.115000px;}
.yc8{bottom:475.995000px;}
.yab{bottom:485.175000px;}
.y175{bottom:486.795000px;}
.y1a7{bottom:489.315000px;}
.y111{bottom:489.855000px;}
.y145{bottom:494.175000px;}
.y131{bottom:494.535000px;}
.y81{bottom:497.955000px;}
.y65{bottom:500.295000px;}
.yc7{bottom:500.475000px;}
.y174{bottom:503.175000px;}
.yaa{bottom:503.355000px;}
.y110{bottom:508.035000px;}
.y1a6{bottom:510.195000px;}
.y130{bottom:512.715000px;}
.y80{bottom:516.135000px;}
.y173{bottom:519.555000px;}
.y144{bottom:521.175000px;}
.ya9{bottom:521.355000px;}
.yec{bottom:525.675000px;}
.y10f{bottom:526.215000px;}
.y1a5{bottom:526.575000px;}
.y64{bottom:528.015000px;}
.y12f{bottom:530.715000px;}
.y7f{bottom:534.135000px;}
.ya8{bottom:539.535000px;}
.y172{bottom:540.435000px;}
.y10e{bottom:544.215000px;}
.y143{bottom:544.935000px;}
.y63{bottom:546.195000px;}
.y1a4{bottom:547.455000px;}
.yeb{bottom:547.815000px;}
.y12e{bottom:548.895000px;}
.y7e{bottom:552.315000px;}
.y171{bottom:556.815000px;}
.ya7{bottom:557.715000px;}
.y10d{bottom:562.395000px;}
.y62{bottom:564.375000px;}
.y12d{bottom:566.895000px;}
.y1a3{bottom:568.335000px;}
.yea{bottom:574.995000px;}
.ya6{bottom:575.715000px;}
.y170{bottom:577.695000px;}
.y7d{bottom:579.495000px;}
.y10c{bottom:580.395000px;}
.y61{bottom:582.375000px;}
.y1a2{bottom:584.715000px;}
.ye9{bottom:593.175000px;}
.ya5{bottom:593.895000px;}
.y12c{bottom:594.075000px;}
.y10b{bottom:598.575000px;}
.y60{bottom:600.555000px;}
.y1a1{bottom:601.095000px;}
.y7c{bottom:607.395000px;}
.y12{bottom:610.095000px;}
.ye8{bottom:611.175000px;}
.ya4{bottom:611.895000px;}
.y16f{bottom:614.955000px;}
.y10a{bottom:616.755000px;}
.y5f{bottom:618.735000px;}
.y12b{bottom:621.975000px;}
.ye7{bottom:629.355000px;}
.ya3{bottom:630.075000px;}
.y7b{bottom:631.155000px;}
.y16e{bottom:631.335000px;}
.y109{bottom:634.755000px;}
.y1a0{bottom:638.535000px;}
.y12a{bottom:645.735000px;}
.y5e{bottom:645.915000px;}
.ye6{bottom:647.535000px;}
.ya0{bottom:648.975000px;}
.y16d{bottom:652.215000px;}
.y108{bottom:652.935000px;}
.y19f{bottom:659.445000px;}
.ye5{bottom:665.565000px;}
.y16c{bottom:668.625000px;}
.y107{bottom:671.145000px;}
.y5d{bottom:673.845000px;}
.y19e{bottom:675.825000px;}
.ye4{bottom:683.745000px;}
.y16b{bottom:685.005000px;}
.y106{bottom:689.145000px;}
.y19d{bottom:696.705000px;}
.y9f{bottom:698.325000px;}
.ye3{bottom:701.745000px;}
.y16a{bottom:705.885000px;}
.y5c{bottom:710.745000px;}
.y19c{bottom:713.085000px;}
.y105{bottom:716.325000px;}
.y10{bottom:721.725000px;}
.y9e{bottom:722.085000px;}
.y169{bottom:722.265000px;}
.yc6{bottom:728.925000px;}
.y19b{bottom:729.465000px;}
.y5b{bottom:730.005000px;}
.y168{bottom:743.145000px;}
.y104{bottom:744.405000px;}
.y5a{bottom:748.905000px;}
.y19a{bottom:750.345000px;}
.ye2{bottom:753.405000px;}
.yc5{bottom:755.925000px;}
.y167{bottom:759.525000px;}
.yf{bottom:766.185000px;}
.y59{bottom:767.985000px;}
.y142{bottom:768.885000px;}
.y199{bottom:771.225000px;}
.y103{bottom:772.305000px;}
.yc4{bottom:774.105000px;}
.y166{bottom:775.905000px;}
.ye{bottom:783.465000px;}
.y58{bottom:786.885000px;}
.y198{bottom:787.605000px;}
.yc3{bottom:792.285000px;}
.y141{bottom:792.645000px;}
.y102{bottom:796.785000px;}
.yd{bottom:800.745000px;}
.y57{bottom:805.965000px;}
.y197{bottom:808.485000px;}
.yc2{bottom:810.285000px;}
.y165{bottom:813.165000px;}
.yc{bottom:818.025000px;}
.y56{bottom:824.865000px;}
.yc1{bottom:828.465000px;}
.y164{bottom:829.725000px;}
.yb{bottom:840.345000px;}
.y196{bottom:841.245000px;}
.y55{bottom:843.765000px;}
.yc0{bottom:846.645000px;}
.y163{bottom:850.605000px;}
.ya{bottom:852.405000px;}
.y195{bottom:862.125000px;}
.y54{bottom:862.845000px;}
.ybf{bottom:864.645000px;}
.y162{bottom:866.985000px;}
.y9{bottom:874.905000px;}
.y53{bottom:881.745000px;}
.y194{bottom:883.005000px;}
.y161{bottom:883.365000px;}
.y9d{bottom:887.325000px;}
.ybe{bottom:891.825000px;}
.y193{bottom:899.385000px;}
.y52{bottom:900.870000px;}
.y160{bottom:904.290000px;}
.y8{bottom:905.730000px;}
.y9c{bottom:914.550000px;}
.y192{bottom:915.810000px;}
.ybd{bottom:916.350000px;}
.y51{bottom:919.770000px;}
.y15f{bottom:920.670000px;}
.y9b{bottom:932.730000px;}
.y191{bottom:936.690000px;}
.y50{bottom:938.670000px;}
.y15e{bottom:941.550000px;}
.y7{bottom:944.430000px;}
.y9a{bottom:950.910000px;}
.y190{bottom:953.070000px;}
.y4f{bottom:957.750000px;}
.y15d{bottom:957.930000px;}
.y129{bottom:960.630000px;}
.y6{bottom:965.130000px;}
.y99{bottom:968.910000px;}
.y18f{bottom:969.450000px;}
.y15c{bottom:974.310000px;}
.y4e{bottom:976.650000px;}
.y128{bottom:978.810000px;}
.ye1{bottom:979.710000px;}
.y98{bottom:987.090000px;}
.y18e{bottom:990.330000px;}
.y15b{bottom:995.190000px;}
.y4d{bottom:995.730000px;}
.y127{bottom:996.990000px;}
.y5{bottom:1003.830000px;}
.y97{bottom:1005.270000px;}
.ye0{bottom:1006.710000px;}
.y15a{bottom:1011.570000px;}
.y4c{bottom:1014.630000px;}
.y126{bottom:1014.990000px;}
.y18d{bottom:1023.090000px;}
.y96{bottom:1023.270000px;}
.ydf{bottom:1024.890000px;}
.y159{bottom:1027.950000px;}
.y125{bottom:1033.170000px;}
.y4b{bottom:1033.530000px;}
.y4{bottom:1038.570000px;}
.y95{bottom:1041.450000px;}
.yde{bottom:1043.070000px;}
.y18c{bottom:1043.970000px;}
.y158{bottom:1044.330000px;}
.y7a{bottom:1051.170000px;}
.y124{bottom:1051.350000px;}
.y4a{bottom:1052.610000px;}
.y94{bottom:1059.450000px;}
.ydd{bottom:1061.070000px;}
.y18b{bottom:1064.850000px;}
.y157{bottom:1065.210000px;}
.y79{bottom:1069.350000px;}
.y49{bottom:1071.510000px;}
.y93{bottom:1077.630000px;}
.ydc{bottom:1079.250000px;}
.y18a{bottom:1081.230000px;}
.y156{bottom:1081.590000px;}
.y78{bottom:1087.530000px;}
.y48{bottom:1090.590000px;}
.ydb{bottom:1097.430000px;}
.y189{bottom:1097.610000px;}
.y155{bottom:1097.970000px;}
.y92{bottom:1104.810000px;}
.y77{bottom:1105.530000px;}
.y47{bottom:1113.810000px;}
.yda{bottom:1115.430000px;}
.y188{bottom:1118.490000px;}
.y76{bottom:1132.710000px;}
.y46{bottom:1132.890000px;}
.ybc{bottom:1133.430000px;}
.yd9{bottom:1133.610000px;}
.y187{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y45{bottom:1169.460000px;}
.y44{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y43{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hc{height:17.657227px;}
.h18{height:18.000000px;}
.h19{height:18.180000px;}
.h1c{height:18.216000px;}
.h1e{height:20.700000px;}
.h1f{height:20.736000px;}
.h20{height:21.600000px;}
.h1a{height:36.216000px;}
.h7{height:38.158594px;}
.h5{height:39.346875px;}
.h9{height:40.500000px;}
.h17{height:45.818438px;}
.h14{height:47.901094px;}
.h1b{height:54.180000px;}
.h1d{height:54.360000px;}
.hf{height:55.796836px;}
.h21{height:55.824609px;}
.h10{height:56.194453px;}
.h22{height:57.324375px;}
.hd{height:58.621992px;}
.h8{height:58.651172px;}
.h6{height:60.226875px;}
.h16{height:62.184375px;}
.h15{height:63.855000px;}
.h2{height:65.010937px;}
.ha{height:66.757500px;}
.h12{height:70.664062px;}
.h4{height:72.562500px;}
.h3{height:96.508125px;}
.hb{height:109.476000px;}
.h13{height:153.341016px;}
.h11{height:345.810000px;}
.he{height:457.635000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w14{width:37.836000px;}
.w1c{width:45.000000px;}
.w1b{width:45.720000px;}
.w11{width:61.560000px;}
.w12{width:61.596000px;}
.w13{width:61.740000px;}
.w1a{width:74.520000px;}
.wf{width:76.320000px;}
.w15{width:81.360000px;}
.w19{width:81.540000px;}
.w16{width:81.576000px;}
.w17{width:81.720000px;}
.w18{width:81.756000px;}
.w10{width:86.256000px;}
.wc{width:108.036000px;}
.w7{width:111.276000px;}
.w9{width:111.456000px;}
.w6{width:112.140000px;}
.w8{width:113.220000px;}
.wa{width:114.120000px;}
.wb{width:210.090000px;}
.w3{width:237.810000px;}
.wd{width:255.810000px;}
.w5{width:407.055000px;}
.we{width:702.150000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x19{left:10.080000px;}
.x15{left:12.420000px;}
.x46{left:14.040000px;}
.x47{left:16.380000px;}
.x3c{left:17.994000px;}
.x3a{left:19.440000px;}
.x49{left:20.880000px;}
.x11{left:24.480000px;}
.x17{left:26.130000px;}
.x13{left:27.360000px;}
.x22{left:29.340000px;}
.x39{left:30.420000px;}
.x2a{left:31.500000px;}
.x21{left:33.330000px;}
.x48{left:35.136000px;}
.x1b{left:36.900000px;}
.x20{left:37.980000px;}
.x24{left:39.060000px;}
.x23{left:40.500000px;}
.x1f{left:43.200000px;}
.x1e{left:47.730000px;}
.x1d{left:51.120000px;}
.x1c{left:52.920000px;}
.x25{left:56.880000px;}
.x2b{left:79.560000px;}
.x4b{left:81.540000px;}
.x33{left:93.960000px;}
.x32{left:95.760000px;}
.x2f{left:97.020000px;}
.x5{left:108.035987px;}
.x2e{left:109.440000px;}
.x34{left:116.100000px;}
.x30{left:118.080000px;}
.x31{left:119.880000px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.xc{left:135.215987px;}
.x3b{left:143.676000px;}
.x54{left:149.975987px;}
.x29{left:159.690000px;}
.x37{left:171.929987px;}
.x38{left:175.350000px;}
.x36{left:178.409987px;}
.xa{left:185.430000px;}
.x28{left:191.729987px;}
.x26{left:197.669987px;}
.x4c{left:201.450000px;}
.x3d{left:205.230000px;}
.x10{left:215.309987px;}
.x12{left:220.890000px;}
.x4a{left:224.129987px;}
.x3e{left:266.790000px;}
.x4d{left:283.035000px;}
.x3{left:314.354987px;}
.x55{left:325.874987px;}
.x3f{left:328.395000px;}
.x14{left:333.075000px;}
.xf{left:334.694987px;}
.x8{left:360.615000px;}
.x4e{left:364.755000px;}
.x2c{left:369.795000px;}
.xd{left:375.374987px;}
.x9{left:378.255000px;}
.x40{left:389.955000px;}
.x16{left:447.015000px;}
.x41{left:451.695000px;}
.x2d{left:477.825000px;}
.x42{left:513.285000px;}
.x4f{left:528.225000px;}
.x18{left:559.005000px;}
.x43{left:574.845000px;}
.x50{left:609.765000px;}
.x53{left:634.424987px;}
.x44{left:636.405000px;}
.x1a{left:671.190000px;}
.x51{left:691.530000px;}
.x45{left:698.010000px;}
.xe{left:718.349987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x52{left:766.050000px;}
.x4{left:781.349987px;}
.x27{left:785.309987px;}
.x56{left:808.709987px;}
.x35{left:810.149987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:23.680000pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.201067pt;}
.ls16{letter-spacing:-0.196267pt;}
.lsb{letter-spacing:-0.194667pt;}
.ls8{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.148267pt;}
.ls11{letter-spacing:-0.046080pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.024320pt;}
.lsc{letter-spacing:0.046080pt;}
.ls2{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.148267pt;}
.lsa{letter-spacing:0.148480pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.194667pt;}
.ls6{letter-spacing:0.196267pt;}
.ls10{letter-spacing:0.297067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:1.280000pt;}
.ls12{letter-spacing:2.240000pt;}
.ws7{word-spacing:-34.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws12{word-spacing:-14.377067pt;}
.ws10{word-spacing:-14.274667pt;}
.wsf{word-spacing:-14.228267pt;}
.wse{word-spacing:-14.126080pt;}
.wsc{word-spacing:-14.080000pt;}
.ws14{word-spacing:-14.033920pt;}
.ws11{word-spacing:-13.931733pt;}
.wsd{word-spacing:-13.885333pt;}
.wsa{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.836267pt;}
.ws18{word-spacing:-12.664320pt;}
.ws6{word-spacing:-12.640000pt;}
.ws17{word-spacing:-12.443733pt;}
.ws16{word-spacing:-12.320000pt;}
.wsb{word-spacing:-9.280000pt;}
.ws13{word-spacing:-9.078933pt;}
.ws1{word-spacing:-8.640000pt;}
.ws15{word-spacing:-8.064000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._9{margin-left:-3.364267pt;}
._8{margin-left:-2.296320pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.333333pt;}
._2{width:2.300373pt;}
._5{width:3.440640pt;}
._14{width:4.557440pt;}
._6{width:5.511040pt;}
._b{width:6.421120pt;}
._7{width:7.937920pt;}
._10{width:8.949120pt;}
._19{width:10.588800pt;}
._1a{width:11.645440pt;}
._17{width:12.673920pt;}
._a{width:13.904000pt;}
._12{width:15.755947pt;}
._13{width:16.754133pt;}
._18{width:18.472960pt;}
._15{width:19.525973pt;}
._16{width:20.477440pt;}
._f{width:21.572267pt;}
._e{width:22.499200pt;}
._4{width:24.369920pt;}
._3{width:25.532800pt;}
._11{width:26.796800pt;}
._d{width:31.661227pt;}
._c{width:33.167360pt;}
.fs6{font-size:16.000000pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs7{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs9{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:2.880000pt;}
.y8b{bottom:3.040000pt;}
.y117{bottom:5.280000pt;}
.y115{bottom:5.440000pt;}
.y121{bottom:6.080000pt;}
.yfb{bottom:11.040000pt;}
.ya2{bottom:11.066667pt;}
.y11{bottom:12.800000pt;}
.y11a{bottom:18.400000pt;}
.y118{bottom:18.440000pt;}
.y18{bottom:18.880000pt;}
.yef{bottom:19.040000pt;}
.ya1{bottom:19.066667pt;}
.yfc{bottom:19.200000pt;}
.y35{bottom:26.080000pt;}
.yfa{bottom:27.200000pt;}
.y17{bottom:34.240000pt;}
.yee{bottom:35.200000pt;}
.y34{bottom:40.640000pt;}
.y16{bottom:49.626667pt;}
.y33{bottom:55.200000pt;}
.y15{bottom:64.826667pt;}
.y32{bottom:69.760000pt;}
.y14{bottom:80.186667pt;}
.y31{bottom:84.320000pt;}
.y19{bottom:84.826667pt;}
.y13{bottom:93.466667pt;}
.y30{bottom:98.880000pt;}
.y2f{bottom:113.440000pt;}
.y2e{bottom:128.160000pt;}
.y101{bottom:137.600000pt;}
.y154{bottom:137.920000pt;}
.y91{bottom:140.160000pt;}
.yd8{bottom:140.640000pt;}
.ybb{bottom:142.426667pt;}
.y2d{bottom:142.760000pt;}
.y140{bottom:149.946667pt;}
.y123{bottom:152.026667pt;}
.y100{bottom:153.626667pt;}
.y75{bottom:154.106667pt;}
.yd7{bottom:156.826667pt;}
.y2c{bottom:157.320000pt;}
.y42{bottom:160.186667pt;}
.y186{bottom:160.986667pt;}
.y90{bottom:164.986667pt;}
.yba{bottom:166.586667pt;}
.yff{bottom:169.786667pt;}
.y153{bottom:170.746667pt;}
.y2b{bottom:171.880000pt;}
.yd6{bottom:172.826667pt;}
.y13f{bottom:174.106667pt;}
.y185{bottom:175.546667pt;}
.y122{bottom:176.986667pt;}
.y41{bottom:177.146667pt;}
.y74{bottom:178.266667pt;}
.yb9{bottom:182.746667pt;}
.yfe{bottom:185.946667pt;}
.y2a{bottom:186.440000pt;}
.yd5{bottom:188.986667pt;}
.y8f{bottom:189.786667pt;}
.y184{bottom:190.106667pt;}
.y73{bottom:194.426667pt;}
.y152{bottom:195.546667pt;}
.y13e{bottom:198.266667pt;}
.yb8{bottom:198.746667pt;}
.y29{bottom:201.000000pt;}
.y40{bottom:201.786667pt;}
.yfd{bottom:201.946667pt;}
.yd4{bottom:204.986667pt;}
.y183{bottom:208.666667pt;}
.y72{bottom:210.426667pt;}
.y8e{bottom:212.346667pt;}
.y3d{bottom:213.800000pt;}
.yb7{bottom:214.906667pt;}
.y28{bottom:215.560000pt;}
.y120{bottom:217.946667pt;}
.y3f{bottom:218.426667pt;}
.y151{bottom:220.506667pt;}
.yd3{bottom:221.146667pt;}
.y13d{bottom:222.266667pt;}
.y182{bottom:223.226667pt;}
.yf9{bottom:223.706667pt;}
.y71{bottom:226.586667pt;}
.y8d{bottom:228.346667pt;}
.y3c{bottom:229.160000pt;}
.y27{bottom:230.120000pt;}
.yb6{bottom:231.066667pt;}
.y1a{bottom:232.826667pt;}
.y11f{bottom:236.346667pt;}
.yd2{bottom:237.306667pt;}
.y181{bottom:237.786667pt;}
.y3b{bottom:244.360000pt;}
.y26{bottom:244.680000pt;}
.y8c{bottom:245.146667pt;}
.y150{bottom:245.306667pt;}
.y13c{bottom:246.426667pt;}
.yb5{bottom:247.066667pt;}
.y70{bottom:250.746667pt;}
.y1b1{bottom:251.706667pt;}
.yd1{bottom:253.306667pt;}
.y11e{bottom:254.746667pt;}
.y180{bottom:256.506667pt;}
.y25{bottom:259.240000pt;}
.y3a{bottom:259.720000pt;}
.y8a{bottom:261.306667pt;}
.y14f{bottom:262.106667pt;}
.yb4{bottom:263.226667pt;}
.y13b{bottom:270.426667pt;}
.y17f{bottom:271.066667pt;}
.yf8{bottom:272.666667pt;}
.y11d{bottom:273.146667pt;}
.y1b0{bottom:273.306667pt;}
.y24{bottom:273.800000pt;}
.y39{bottom:275.080000pt;}
.y6f{bottom:275.546667pt;}
.yd0{bottom:277.466667pt;}
.y14e{bottom:278.266667pt;}
.yb3{bottom:279.226667pt;}
.y13a{bottom:286.586667pt;}
.y1af{bottom:287.866667pt;}
.y23{bottom:288.360000pt;}
.yf7{bottom:288.826667pt;}
.y89{bottom:288.986667pt;}
.y17e{bottom:289.626667pt;}
.y38{bottom:290.440000pt;}
.y11c{bottom:291.546667pt;}
.y6e{bottom:291.706667pt;}
.y14d{bottom:294.266667pt;}
.y3e{bottom:295.080000pt;}
.yb2{bottom:295.386667pt;}
.ycf{bottom:302.266667pt;}
.y139{bottom:302.746667pt;}
.y22{bottom:302.920000pt;}
.y37{bottom:303.720000pt;}
.y17d{bottom:304.186667pt;}
.yf6{bottom:304.826667pt;}
.y1ae{bottom:306.426667pt;}
.y6d{bottom:307.706667pt;}
.y11b{bottom:309.946667pt;}
.y14c{bottom:310.426667pt;}
.yb1{bottom:311.546667pt;}
.y88{bottom:313.146667pt;}
.y21{bottom:317.480000pt;}
.yce{bottom:318.426667pt;}
.y17c{bottom:318.746667pt;}
.y138{bottom:318.906667pt;}
.yf5{bottom:320.986667pt;}
.y6c{bottom:323.866667pt;}
.y14b{bottom:326.586667pt;}
.yb0{bottom:327.546667pt;}
.y119{bottom:328.346667pt;}
.y87{bottom:329.306667pt;}
.y20{bottom:332.040000pt;}
.ycd{bottom:334.426667pt;}
.y137{bottom:334.906667pt;}
.y1ad{bottom:335.546667pt;}
.yf4{bottom:336.986667pt;}
.y17b{bottom:337.306667pt;}
.y6b{bottom:339.866667pt;}
.y14a{bottom:342.586667pt;}
.yaf{bottom:343.706667pt;}
.y86{bottom:345.306667pt;}
.y1f{bottom:346.600000pt;}
.y116{bottom:346.746667pt;}
.ycc{bottom:350.586667pt;}
.y136{bottom:351.066667pt;}
.y17a{bottom:351.866667pt;}
.yf3{bottom:353.146667pt;}
.y1ac{bottom:354.106667pt;}
.y6a{bottom:356.026667pt;}
.y149{bottom:358.746667pt;}
.yae{bottom:359.866667pt;}
.y1e{bottom:361.186667pt;}
.y85{bottom:361.506667pt;}
.y114{bottom:365.826667pt;}
.y179{bottom:366.466667pt;}
.ycb{bottom:366.786667pt;}
.y135{bottom:367.106667pt;}
.y1ab{bottom:368.706667pt;}
.yf2{bottom:369.346667pt;}
.y69{bottom:372.226667pt;}
.y148{bottom:374.946667pt;}
.y1d{bottom:375.746667pt;}
.y84{bottom:377.506667pt;}
.yca{bottom:382.786667pt;}
.y134{bottom:383.266667pt;}
.yad{bottom:384.066667pt;}
.y178{bottom:385.026667pt;}
.yf1{bottom:385.346667pt;}
.y1aa{bottom:387.266667pt;}
.y68{bottom:388.226667pt;}
.y1c{bottom:390.306667pt;}
.y147{bottom:390.946667pt;}
.y83{bottom:393.666667pt;}
.y113{bottom:395.266667pt;}
.yc9{bottom:398.946667pt;}
.y133{bottom:399.426667pt;}
.y177{bottom:399.586667pt;}
.yf0{bottom:401.506667pt;}
.y1a9{bottom:401.826667pt;}
.y1b{bottom:402.946667pt;}
.y67{bottom:404.386667pt;}
.y146{bottom:407.106667pt;}
.yac{bottom:408.866667pt;}
.y176{bottom:414.146667pt;}
.y132{bottom:415.426667pt;}
.y1a8{bottom:416.386667pt;}
.y82{bottom:417.826667pt;}
.yed{bottom:418.306667pt;}
.y112{bottom:419.266667pt;}
.y66{bottom:420.546667pt;}
.yc8{bottom:423.106667pt;}
.yab{bottom:431.266667pt;}
.y175{bottom:432.706667pt;}
.y1a7{bottom:434.946667pt;}
.y111{bottom:435.426667pt;}
.y145{bottom:439.266667pt;}
.y131{bottom:439.586667pt;}
.y81{bottom:442.626667pt;}
.y65{bottom:444.706667pt;}
.yc7{bottom:444.866667pt;}
.y174{bottom:447.266667pt;}
.yaa{bottom:447.426667pt;}
.y110{bottom:451.586667pt;}
.y1a6{bottom:453.506667pt;}
.y130{bottom:455.746667pt;}
.y80{bottom:458.786667pt;}
.y173{bottom:461.826667pt;}
.y144{bottom:463.266667pt;}
.ya9{bottom:463.426667pt;}
.yec{bottom:467.266667pt;}
.y10f{bottom:467.746667pt;}
.y1a5{bottom:468.066667pt;}
.y64{bottom:469.346667pt;}
.y12f{bottom:471.746667pt;}
.y7f{bottom:474.786667pt;}
.ya8{bottom:479.586667pt;}
.y172{bottom:480.386667pt;}
.y10e{bottom:483.746667pt;}
.y143{bottom:484.386667pt;}
.y63{bottom:485.506667pt;}
.y1a4{bottom:486.626667pt;}
.yeb{bottom:486.946667pt;}
.y12e{bottom:487.906667pt;}
.y7e{bottom:490.946667pt;}
.y171{bottom:494.946667pt;}
.ya7{bottom:495.746667pt;}
.y10d{bottom:499.906667pt;}
.y62{bottom:501.666667pt;}
.y12d{bottom:503.906667pt;}
.y1a3{bottom:505.186667pt;}
.yea{bottom:511.106667pt;}
.ya6{bottom:511.746667pt;}
.y170{bottom:513.506667pt;}
.y7d{bottom:515.106667pt;}
.y10c{bottom:515.906667pt;}
.y61{bottom:517.666667pt;}
.y1a2{bottom:519.746667pt;}
.ye9{bottom:527.266667pt;}
.ya5{bottom:527.906667pt;}
.y12c{bottom:528.066667pt;}
.y10b{bottom:532.066667pt;}
.y60{bottom:533.826667pt;}
.y1a1{bottom:534.306667pt;}
.y7c{bottom:539.906667pt;}
.y12{bottom:542.306667pt;}
.ye8{bottom:543.266667pt;}
.ya4{bottom:543.906667pt;}
.y16f{bottom:546.626667pt;}
.y10a{bottom:548.226667pt;}
.y5f{bottom:549.986667pt;}
.y12b{bottom:552.866667pt;}
.ye7{bottom:559.426667pt;}
.ya3{bottom:560.066667pt;}
.y7b{bottom:561.026667pt;}
.y16e{bottom:561.186667pt;}
.y109{bottom:564.226667pt;}
.y1a0{bottom:567.586667pt;}
.y12a{bottom:573.986667pt;}
.y5e{bottom:574.146667pt;}
.ye6{bottom:575.586667pt;}
.ya0{bottom:576.866667pt;}
.y16d{bottom:579.746667pt;}
.y108{bottom:580.386667pt;}
.y19f{bottom:586.173333pt;}
.ye5{bottom:591.613333pt;}
.y16c{bottom:594.333333pt;}
.y107{bottom:596.573333pt;}
.y5d{bottom:598.973333pt;}
.y19e{bottom:600.733333pt;}
.ye4{bottom:607.773333pt;}
.y16b{bottom:608.893333pt;}
.y106{bottom:612.573333pt;}
.y19d{bottom:619.293333pt;}
.y9f{bottom:620.733333pt;}
.ye3{bottom:623.773333pt;}
.y16a{bottom:627.453333pt;}
.y5c{bottom:631.773333pt;}
.y19c{bottom:633.853333pt;}
.y105{bottom:636.733333pt;}
.y10{bottom:641.533333pt;}
.y9e{bottom:641.853333pt;}
.y169{bottom:642.013333pt;}
.yc6{bottom:647.933333pt;}
.y19b{bottom:648.413333pt;}
.y5b{bottom:648.893333pt;}
.y168{bottom:660.573333pt;}
.y104{bottom:661.693333pt;}
.y5a{bottom:665.693333pt;}
.y19a{bottom:666.973333pt;}
.ye2{bottom:669.693333pt;}
.yc5{bottom:671.933333pt;}
.y167{bottom:675.133333pt;}
.yf{bottom:681.053333pt;}
.y59{bottom:682.653333pt;}
.y142{bottom:683.453333pt;}
.y199{bottom:685.533333pt;}
.y103{bottom:686.493333pt;}
.yc4{bottom:688.093333pt;}
.y166{bottom:689.693333pt;}
.ye{bottom:696.413333pt;}
.y58{bottom:699.453333pt;}
.y198{bottom:700.093333pt;}
.yc3{bottom:704.253333pt;}
.y141{bottom:704.573333pt;}
.y102{bottom:708.253333pt;}
.yd{bottom:711.773333pt;}
.y57{bottom:716.413333pt;}
.y197{bottom:718.653333pt;}
.yc2{bottom:720.253333pt;}
.y165{bottom:722.813333pt;}
.yc{bottom:727.133333pt;}
.y56{bottom:733.213333pt;}
.yc1{bottom:736.413333pt;}
.y164{bottom:737.533333pt;}
.yb{bottom:746.973333pt;}
.y196{bottom:747.773333pt;}
.y55{bottom:750.013333pt;}
.yc0{bottom:752.573333pt;}
.y163{bottom:756.093333pt;}
.ya{bottom:757.693333pt;}
.y195{bottom:766.333333pt;}
.y54{bottom:766.973333pt;}
.ybf{bottom:768.573333pt;}
.y162{bottom:770.653333pt;}
.y9{bottom:777.693333pt;}
.y53{bottom:783.773333pt;}
.y194{bottom:784.893333pt;}
.y161{bottom:785.213333pt;}
.y9d{bottom:788.733333pt;}
.ybe{bottom:792.733333pt;}
.y193{bottom:799.453333pt;}
.y52{bottom:800.773333pt;}
.y160{bottom:803.813333pt;}
.y8{bottom:805.093333pt;}
.y9c{bottom:812.933333pt;}
.y192{bottom:814.053333pt;}
.ybd{bottom:814.533333pt;}
.y51{bottom:817.573333pt;}
.y15f{bottom:818.373333pt;}
.y9b{bottom:829.093333pt;}
.y191{bottom:832.613333pt;}
.y50{bottom:834.373333pt;}
.y15e{bottom:836.933333pt;}
.y7{bottom:839.493333pt;}
.y9a{bottom:845.253333pt;}
.y190{bottom:847.173333pt;}
.y4f{bottom:851.333333pt;}
.y15d{bottom:851.493333pt;}
.y129{bottom:853.893333pt;}
.y6{bottom:857.893333pt;}
.y99{bottom:861.253333pt;}
.y18f{bottom:861.733333pt;}
.y15c{bottom:866.053333pt;}
.y4e{bottom:868.133333pt;}
.y128{bottom:870.053333pt;}
.ye1{bottom:870.853333pt;}
.y98{bottom:877.413333pt;}
.y18e{bottom:880.293333pt;}
.y15b{bottom:884.613333pt;}
.y4d{bottom:885.093333pt;}
.y127{bottom:886.213333pt;}
.y5{bottom:892.293333pt;}
.y97{bottom:893.573333pt;}
.ye0{bottom:894.853333pt;}
.y15a{bottom:899.173333pt;}
.y4c{bottom:901.893333pt;}
.y126{bottom:902.213333pt;}
.y18d{bottom:909.413333pt;}
.y96{bottom:909.573333pt;}
.ydf{bottom:911.013333pt;}
.y159{bottom:913.733333pt;}
.y125{bottom:918.373333pt;}
.y4b{bottom:918.693333pt;}
.y4{bottom:923.173333pt;}
.y95{bottom:925.733333pt;}
.yde{bottom:927.173333pt;}
.y18c{bottom:927.973333pt;}
.y158{bottom:928.293333pt;}
.y7a{bottom:934.373333pt;}
.y124{bottom:934.533333pt;}
.y4a{bottom:935.653333pt;}
.y94{bottom:941.733333pt;}
.ydd{bottom:943.173333pt;}
.y18b{bottom:946.533333pt;}
.y157{bottom:946.853333pt;}
.y79{bottom:950.533333pt;}
.y49{bottom:952.453333pt;}
.y93{bottom:957.893333pt;}
.ydc{bottom:959.333333pt;}
.y18a{bottom:961.093333pt;}
.y156{bottom:961.413333pt;}
.y78{bottom:966.693333pt;}
.y48{bottom:969.413333pt;}
.ydb{bottom:975.493333pt;}
.y189{bottom:975.653333pt;}
.y155{bottom:975.973333pt;}
.y92{bottom:982.053333pt;}
.y77{bottom:982.693333pt;}
.y47{bottom:990.053333pt;}
.yda{bottom:991.493333pt;}
.y188{bottom:994.213333pt;}
.y76{bottom:1006.853333pt;}
.y46{bottom:1007.013333pt;}
.ybc{bottom:1007.493333pt;}
.yd9{bottom:1007.653333pt;}
.y187{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y45{bottom:1039.520000pt;}
.y44{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y43{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hc{height:15.695312pt;}
.h18{height:16.000000pt;}
.h19{height:16.160000pt;}
.h1c{height:16.192000pt;}
.h1e{height:18.400000pt;}
.h1f{height:18.432000pt;}
.h20{height:19.200000pt;}
.h1a{height:32.192000pt;}
.h7{height:33.918750pt;}
.h5{height:34.975000pt;}
.h9{height:36.000000pt;}
.h17{height:40.727500pt;}
.h14{height:42.578750pt;}
.h1b{height:48.160000pt;}
.h1d{height:48.320000pt;}
.hf{height:49.597187pt;}
.h21{height:49.621875pt;}
.h10{height:49.950625pt;}
.h22{height:50.955000pt;}
.hd{height:52.108438pt;}
.h8{height:52.134375pt;}
.h6{height:53.535000pt;}
.h16{height:55.275000pt;}
.h15{height:56.760000pt;}
.h2{height:57.787500pt;}
.ha{height:59.340000pt;}
.h12{height:62.812500pt;}
.h4{height:64.500000pt;}
.h3{height:85.785000pt;}
.hb{height:97.312000pt;}
.h13{height:136.303125pt;}
.h11{height:307.386667pt;}
.he{height:406.786667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w14{width:33.632000pt;}
.w1c{width:40.000000pt;}
.w1b{width:40.640000pt;}
.w11{width:54.720000pt;}
.w12{width:54.752000pt;}
.w13{width:54.880000pt;}
.w1a{width:66.240000pt;}
.wf{width:67.840000pt;}
.w15{width:72.320000pt;}
.w19{width:72.480000pt;}
.w16{width:72.512000pt;}
.w17{width:72.640000pt;}
.w18{width:72.672000pt;}
.w10{width:76.672000pt;}
.wc{width:96.032000pt;}
.w7{width:98.912000pt;}
.w9{width:99.072000pt;}
.w6{width:99.680000pt;}
.w8{width:100.640000pt;}
.wa{width:101.440000pt;}
.wb{width:186.746667pt;}
.w3{width:211.386667pt;}
.wd{width:227.386667pt;}
.w5{width:361.826667pt;}
.we{width:624.133333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x19{left:8.960000pt;}
.x15{left:11.040000pt;}
.x46{left:12.480000pt;}
.x47{left:14.560000pt;}
.x3c{left:15.994667pt;}
.x3a{left:17.280000pt;}
.x49{left:18.560000pt;}
.x11{left:21.760000pt;}
.x17{left:23.226667pt;}
.x13{left:24.320000pt;}
.x22{left:26.080000pt;}
.x39{left:27.040000pt;}
.x2a{left:28.000000pt;}
.x21{left:29.626667pt;}
.x48{left:31.232000pt;}
.x1b{left:32.800000pt;}
.x20{left:33.760000pt;}
.x24{left:34.720000pt;}
.x23{left:36.000000pt;}
.x1f{left:38.400000pt;}
.x1e{left:42.426667pt;}
.x1d{left:45.440000pt;}
.x1c{left:47.040000pt;}
.x25{left:50.560000pt;}
.x2b{left:70.720000pt;}
.x4b{left:72.480000pt;}
.x33{left:83.520000pt;}
.x32{left:85.120000pt;}
.x2f{left:86.240000pt;}
.x5{left:96.031988pt;}
.x2e{left:97.280000pt;}
.x34{left:103.200000pt;}
.x30{left:104.960000pt;}
.x31{left:106.560000pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.xc{left:120.191988pt;}
.x3b{left:127.712000pt;}
.x54{left:133.311988pt;}
.x29{left:141.946667pt;}
.x37{left:152.826655pt;}
.x38{left:155.866667pt;}
.x36{left:158.586655pt;}
.xa{left:164.826667pt;}
.x28{left:170.426655pt;}
.x26{left:175.706655pt;}
.x4c{left:179.066667pt;}
.x3d{left:182.426667pt;}
.x10{left:191.386655pt;}
.x12{left:196.346667pt;}
.x4a{left:199.226655pt;}
.x3e{left:237.146667pt;}
.x4d{left:251.586667pt;}
.x3{left:279.426655pt;}
.x55{left:289.666655pt;}
.x3f{left:291.906667pt;}
.x14{left:296.066667pt;}
.xf{left:297.506655pt;}
.x8{left:320.546667pt;}
.x4e{left:324.226667pt;}
.x2c{left:328.706667pt;}
.xd{left:333.666655pt;}
.x9{left:336.226667pt;}
.x40{left:346.626667pt;}
.x16{left:397.346667pt;}
.x41{left:401.506667pt;}
.x2d{left:424.733333pt;}
.x42{left:456.253333pt;}
.x4f{left:469.533333pt;}
.x18{left:496.893333pt;}
.x43{left:510.973333pt;}
.x50{left:542.013333pt;}
.x53{left:563.933322pt;}
.x44{left:565.693333pt;}
.x1a{left:596.613333pt;}
.x51{left:614.693333pt;}
.x45{left:620.453333pt;}
.xe{left:638.533322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x52{left:680.933333pt;}
.x4{left:694.533322pt;}
.x27{left:698.053322pt;}
.x56{left:718.853322pt;}
.x35{left:720.133322pt;}
}




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