
    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_2fa8fe76a333e46c2d9f65e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.979980;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_ab8701fd713ad34aa2d34d7c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_c9559fdb3f5541ebc7555ab8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.758789;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_d87e8b5bb77cd28f24bc04a5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979980;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_9e1205fddc8ca3b1b37b33a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.979980;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_6a2194b98e54b8a7e18eee27.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979980;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_54747398872682c6067a1c11.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.979980;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_7c4217e4fc58eb3180f4367b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979980;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_3a7d90770a9d76cd9929ecfb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.979980;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:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls4{letter-spacing:-1.728000px;}
.lse{letter-spacing:-1.344000px;}
.lsb{letter-spacing:-0.550200px;}
.ls10{letter-spacing:-0.435000px;}
.ls6{letter-spacing:-0.285000px;}
.ls12{letter-spacing:-0.169800px;}
.ls13{letter-spacing:-0.020160px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.020160px;}
.ls11{letter-spacing:0.094800px;}
.ls8{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.250800px;}
.ls7{letter-spacing:0.380400px;}
.lsc{letter-spacing:0.529800px;}
.ls14{letter-spacing:0.624000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.864000px;}
.lsd{letter-spacing:1.906560px;}
.lsa{letter-spacing:7.666560px;}
.ls9{letter-spacing:184.942560px;}
.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;}
}
.ws0{word-spacing:-60.480000px;}
.ws5{word-spacing:-17.533440px;}
.wsb{word-spacing:-17.437440px;}
.ws6{word-spacing:-17.343240px;}
.ws2{word-spacing:-17.193840px;}
.ws7{word-spacing:-16.833600px;}
.ws1{word-spacing:-16.813440px;}
.wsa{word-spacing:-16.793280px;}
.ws9{word-spacing:-16.643640px;}
.ws4{word-spacing:-16.528440px;}
.ws8{word-spacing:-16.378440px;}
.wsc{word-spacing:-15.212160px;}
.ws3{word-spacing:0.000000px;}
._6{margin-left:-2.663040px;}
._0{margin-left:-1.270080px;}
._2{width:1.431840px;}
._1{width:3.108000px;}
._1d{width:4.153440px;}
._d{width:5.261760px;}
._e{width:6.412800px;}
._12{width:7.556160px;}
._f{width:8.648640px;}
._a{width:9.979200px;}
._8{width:11.612160px;}
._7{width:12.640320px;}
._10{width:14.525760px;}
._b{width:15.785280px;}
._c{width:17.868480px;}
._9{width:19.111680px;}
._19{width:20.323200px;}
._18{width:21.651840px;}
._17{width:22.742400px;}
._16{width:24.127680px;}
._1e{width:25.282560px;}
._15{width:26.369280px;}
._1a{width:27.881280px;}
._1f{width:31.268160px;}
._13{width:32.718720px;}
._14{width:34.415040px;}
._23{width:35.570400px;}
._11{width:39.795840px;}
._22{width:43.789440px;}
._4{width:123.878880px;}
._5{width:199.366560px;}
._20{width:748.958880px;}
._3{width:787.797120px;}
._1c{width:872.831520px;}
._1b{width:920.669760px;}
._21{width:1076.566560px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:47.520000px;}
.fs7{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:4.320000px;}
.y12{bottom:5.400000px;}
.yc{bottom:5.760000px;}
.y37{bottom:9.000000px;}
.y3d{bottom:20.880000px;}
.y11{bottom:22.680000px;}
.y30{bottom:23.085000px;}
.y3c{bottom:38.520000px;}
.y10{bottom:40.320000px;}
.y2f{bottom:40.365000px;}
.y3b{bottom:55.800000px;}
.yf{bottom:57.600000px;}
.y2e{bottom:58.005000px;}
.y36{bottom:58.320000px;}
.y3a{bottom:73.110000px;}
.y2d{bottom:75.285000px;}
.ye{bottom:83.880000px;}
.y5{bottom:90.036000px;}
.y39{bottom:90.750000px;}
.y2c{bottom:92.565000px;}
.y2b{bottom:110.205000px;}
.y126{bottom:118.116000px;}
.y15e{bottom:122.076000px;}
.y2a{bottom:127.485000px;}
.y7c{bottom:129.996000px;}
.yb0{bottom:131.796000px;}
.y44{bottom:133.596000px;}
.y125{bottom:136.116000px;}
.ye0{bottom:137.556000px;}
.y15d{bottom:141.876000px;}
.y29{bottom:144.795000px;}
.y7b{bottom:147.996000px;}
.yaf{bottom:149.796000px;}
.y43{bottom:151.590000px;}
.y124{bottom:154.110000px;}
.ydf{bottom:155.550000px;}
.y15c{bottom:162.030000px;}
.y28{bottom:162.435000px;}
.y7a{bottom:165.990000px;}
.yae{bottom:167.790000px;}
.y42{bottom:169.590000px;}
.yef{bottom:172.110000px;}
.yde{bottom:173.550000px;}
.y123{bottom:178.230000px;}
.y27{bottom:179.715000px;}
.y15b{bottom:182.190000px;}
.yad{bottom:185.790000px;}
.y41{bottom:187.590000px;}
.y79{bottom:190.110000px;}
.ydd{bottom:191.550000px;}
.y26{bottom:196.995000px;}
.y122{bottom:202.035000px;}
.yac{bottom:203.835000px;}
.y78{bottom:208.155000px;}
.ydc{bottom:209.595000px;}
.y40{bottom:211.755000px;}
.ycc{bottom:214.275000px;}
.y25{bottom:214.635000px;}
.y121{bottom:220.035000px;}
.yab{bottom:221.835000px;}
.y15a{bottom:222.195000px;}
.y77{bottom:226.155000px;}
.ydb{bottom:227.595000px;}
.y24{bottom:231.915000px;}
.ycb{bottom:232.275000px;}
.y3f{bottom:235.515000px;}
.y120{bottom:238.035000px;}
.yaa{bottom:239.835000px;}
.y159{bottom:241.995000px;}
.y76{bottom:244.155000px;}
.y111{bottom:245.595000px;}
.y23{bottom:249.195000px;}
.yca{bottom:250.275000px;}
.yda{bottom:251.715000px;}
.y38{bottom:252.435000px;}
.yee{bottom:256.035000px;}
.ya9{bottom:257.835000px;}
.y75{bottom:262.155000px;}
.y110{bottom:263.595000px;}
.y22{bottom:266.865000px;}
.yc9{bottom:268.275000px;}
.yd9{bottom:269.715000px;}
.yed{bottom:274.035000px;}
.ya8{bottom:275.835000px;}
.y74{bottom:280.155000px;}
.y10f{bottom:281.595000px;}
.y158{bottom:281.955000px;}
.y21{bottom:284.145000px;}
.yc8{bottom:286.275000px;}
.yd8{bottom:287.715000px;}
.yec{bottom:292.035000px;}
.ya7{bottom:293.835000px;}
.y73{bottom:298.155000px;}
.y10e{bottom:299.595000px;}
.y20{bottom:301.425000px;}
.y157{bottom:302.115000px;}
.yc7{bottom:304.275000px;}
.yd7{bottom:305.715000px;}
.yeb{bottom:310.035000px;}
.y138{bottom:311.835000px;}
.y72{bottom:316.155000px;}
.ya6{bottom:317.595000px;}
.y1f{bottom:318.705000px;}
.y11f{bottom:322.305000px;}
.yd6{bottom:323.745000px;}
.yc6{bottom:328.065000px;}
.y137{bottom:329.865000px;}
.ya5{bottom:335.625000px;}
.y1e{bottom:336.345000px;}
.y71{bottom:340.305000px;}
.yd5{bottom:341.745000px;}
.y156{bottom:342.105000px;}
.yc5{bottom:346.065000px;}
.y1d{bottom:353.625000px;}
.y13{bottom:355.785000px;}
.y70{bottom:358.305000px;}
.y10d{bottom:359.745000px;}
.y155{bottom:362.265000px;}
.yc4{bottom:364.065000px;}
.yd4{bottom:365.865000px;}
.y35{bottom:370.185000px;}
.y1c{bottom:370.905000px;}
.ya4{bottom:371.625000px;}
.y6f{bottom:376.305000px;}
.y10c{bottom:377.745000px;}
.yc3{bottom:382.065000px;}
.yd3{bottom:383.865000px;}
.y34{bottom:387.825000px;}
.y11e{bottom:388.185000px;}
.y1b{bottom:388.545000px;}
.y136{bottom:389.625000px;}
.y6e{bottom:394.305000px;}
.ya3{bottom:395.745000px;}
.yc2{bottom:400.065000px;}
.yd2{bottom:401.865000px;}
.y154{bottom:402.225000px;}
.y33{bottom:405.105000px;}
.y1a{bottom:405.870000px;}
.y11d{bottom:406.185000px;}
.y135{bottom:407.625000px;}
.y6d{bottom:418.065000px;}
.ya2{bottom:419.865000px;}
.y153{bottom:422.025000px;}
.y32{bottom:422.385000px;}
.y19{bottom:423.150000px;}
.y134{bottom:425.625000px;}
.y11c{bottom:430.305000px;}
.y15{bottom:434.985000px;}
.y6c{bottom:436.065000px;}
.ya1{bottom:437.865000px;}
.y18{bottom:440.790000px;}
.yc1{bottom:442.185000px;}
.y10b{bottom:443.625000px;}
.y31{bottom:449.025000px;}
.y6b{bottom:454.110000px;}
.ya0{bottom:455.910000px;}
.y17{bottom:458.070000px;}
.yc0{bottom:460.230000px;}
.y10a{bottom:461.670000px;}
.y152{bottom:462.390000px;}
.y6a{bottom:472.110000px;}
.y9f{bottom:473.910000px;}
.y16{bottom:475.350000px;}
.ybf{bottom:478.230000px;}
.y109{bottom:479.670000px;}
.y151{bottom:482.190000px;}
.y69{bottom:490.110000px;}
.y9e{bottom:491.910000px;}
.ybe{bottom:496.230000px;}
.yd1{bottom:497.670000px;}
.y150{bottom:502.350000px;}
.y133{bottom:503.790000px;}
.y68{bottom:514.230000px;}
.y9d{bottom:515.670000px;}
.yea{bottom:520.350000px;}
.y132{bottom:521.790000px;}
.y14f{bottom:522.150000px;}
.y67{bottom:532.230000px;}
.y9c{bottom:533.670000px;}
.ye9{bottom:538.350000px;}
.y108{bottom:539.790000px;}
.y14e{bottom:542.310000px;}
.y66{bottom:550.230000px;}
.y9b{bottom:551.670000px;}
.y14{bottom:554.550000px;}
.ye8{bottom:556.350000px;}
.y107{bottom:557.790000px;}
.y14d{bottom:562.110000px;}
.y65{bottom:568.230000px;}
.y9a{bottom:569.670000px;}
.ye7{bottom:574.380000px;}
.y106{bottom:575.820000px;}
.y14c{bottom:582.300000px;}
.y64{bottom:586.260000px;}
.y99{bottom:587.700000px;}
.y105{bottom:593.820000px;}
.ye6{bottom:598.140000px;}
.y14b{bottom:602.100000px;}
.y63{bottom:604.260000px;}
.yd0{bottom:605.700000px;}
.y98{bottom:611.820000px;}
.y62{bottom:622.260000px;}
.y97{bottom:629.820000px;}
.y104{bottom:635.940000px;}
.ybd{bottom:640.260000px;}
.y14a{bottom:642.420000px;}
.y61{bottom:646.380000px;}
.y96{bottom:647.820000px;}
.y103{bottom:653.940000px;}
.ybc{bottom:658.260000px;}
.y149{bottom:662.220000px;}
.y95{bottom:665.820000px;}
.y60{bottom:670.140000px;}
.y102{bottom:671.940000px;}
.ybb{bottom:676.260000px;}
.y175{bottom:679.860000px;}
.y11b{bottom:682.380000px;}
.y94{bottom:683.820000px;}
.y5f{bottom:688.140000px;}
.y101{bottom:689.940000px;}
.yba{bottom:694.260000px;}
.ye5{bottom:700.410000px;}
.y93{bottom:701.850000px;}
.y148{bottom:702.210000px;}
.y174{bottom:704.010000px;}
.y5e{bottom:706.170000px;}
.y100{bottom:707.970000px;}
.yb9{bottom:718.410000px;}
.y92{bottom:719.850000px;}
.y173{bottom:722.010000px;}
.y147{bottom:722.370000px;}
.y5d{bottom:724.170000px;}
.yff{bottom:725.970000px;}
.yb8{bottom:736.410000px;}
.y91{bottom:737.850000px;}
.y172{bottom:740.010000px;}
.y5c{bottom:742.170000px;}
.y131{bottom:743.970000px;}
.yfe{bottom:749.730000px;}
.yb7{bottom:754.410000px;}
.y171{bottom:758.010000px;}
.y5b{bottom:760.170000px;}
.y90{bottom:761.970000px;}
.y146{bottom:762.330000px;}
.yb6{bottom:772.410000px;}
.yfd{bottom:773.850000px;}
.y170{bottom:776.010000px;}
.y5a{bottom:778.170000px;}
.y130{bottom:779.970000px;}
.y145{bottom:782.490000px;}
.y8f{bottom:785.730000px;}
.yb5{bottom:790.410000px;}
.yfc{bottom:791.850000px;}
.y16f{bottom:794.010000px;}
.ye4{bottom:796.170000px;}
.y12f{bottom:797.970000px;}
.y59{bottom:802.290000px;}
.y8e{bottom:803.730000px;}
.yb4{bottom:808.410000px;}
.yfb{bottom:809.850000px;}
.y16e{bottom:812.010000px;}
.y11a{bottom:814.170000px;}
.y12e{bottom:815.970000px;}
.y58{bottom:820.290000px;}
.y8d{bottom:821.730000px;}
.y144{bottom:822.450000px;}
.yd{bottom:826.455000px;}
.yfa{bottom:827.895000px;}
.y16d{bottom:830.055000px;}
.yb3{bottom:832.215000px;}
.y12d{bottom:834.015000px;}
.y57{bottom:838.335000px;}
.y8c{bottom:839.775000px;}
.y143{bottom:842.295000px;}
.ye3{bottom:844.455000px;}
.ycf{bottom:845.895000px;}
.y16c{bottom:848.055000px;}
.y12c{bottom:852.015000px;}
.y56{bottom:856.335000px;}
.y8b{bottom:857.775000px;}
.ye2{bottom:862.455000px;}
.yce{bottom:863.895000px;}
.y16b{bottom:866.055000px;}
.yf9{bottom:870.015000px;}
.y55{bottom:874.335000px;}
.yb2{bottom:880.455000px;}
.y8a{bottom:881.895000px;}
.y142{bottom:882.255000px;}
.yf8{bottom:888.015000px;}
.y16a{bottom:889.815000px;}
.y54{bottom:892.335000px;}
.y12b{bottom:893.775000px;}
.yb1{bottom:898.455000px;}
.y89{bottom:899.895000px;}
.y141{bottom:902.415000px;}
.yf7{bottom:906.015000px;}
.y169{bottom:913.935000px;}
.y53{bottom:916.455000px;}
.y88{bottom:917.895000px;}
.y119{bottom:922.215000px;}
.y140{bottom:922.575000px;}
.yf6{bottom:924.015000px;}
.yb{bottom:931.935000px;}
.y52{bottom:934.455000px;}
.y87{bottom:935.895000px;}
.y168{bottom:938.055000px;}
.y118{bottom:940.215000px;}
.yf5{bottom:942.015000px;}
.y13f{bottom:942.375000px;}
.y51{bottom:952.485000px;}
.y86{bottom:953.925000px;}
.y167{bottom:956.085000px;}
.y117{bottom:958.245000px;}
.y13e{bottom:962.565000px;}
.yf4{bottom:965.805000px;}
.ya{bottom:966.165000px;}
.y50{bottom:970.485000px;}
.ycd{bottom:971.925000px;}
.y166{bottom:974.085000px;}
.y116{bottom:976.245000px;}
.y85{bottom:978.045000px;}
.y13d{bottom:982.365000px;}
.y4f{bottom:988.485000px;}
.y9{bottom:989.925000px;}
.y115{bottom:994.245000px;}
.y84{bottom:996.045000px;}
.y165{bottom:997.845000px;}
.y12a{bottom:1001.805000px;}
.y8{bottom:1002.165000px;}
.y13c{bottom:1002.525000px;}
.yf3{bottom:1007.925000px;}
.y4e{bottom:1012.245000px;}
.y83{bottom:1014.045000px;}
.y129{bottom:1019.805000px;}
.y164{bottom:1021.965000px;}
.y13b{bottom:1022.325000px;}
.yf2{bottom:1025.925000px;}
.y4d{bottom:1030.245000px;}
.y82{bottom:1032.045000px;}
.y7{bottom:1038.885000px;}
.y13a{bottom:1042.485000px;}
.y128{bottom:1043.925000px;}
.y163{bottom:1046.085000px;}
.y4c{bottom:1048.245000px;}
.y81{bottom:1050.045000px;}
.y114{bottom:1054.365000px;}
.y139{bottom:1062.645000px;}
.y4b{bottom:1066.245000px;}
.y80{bottom:1068.045000px;}
.y6{bottom:1068.765000px;}
.y162{bottom:1069.845000px;}
.y113{bottom:1072.365000px;}
.yf1{bottom:1073.805000px;}
.y4a{bottom:1084.290000px;}
.y7f{bottom:1086.090000px;}
.y161{bottom:1087.890000px;}
.y112{bottom:1090.410000px;}
.yf0{bottom:1091.850000px;}
.ye1{bottom:1102.290000px;}
.y127{bottom:1104.090000px;}
.y49{bottom:1108.410000px;}
.y7e{bottom:1109.850000px;}
.y160{bottom:1110.210000px;}
.y4{bottom:1113.810000px;}
.y48{bottom:1126.410000px;}
.y7d{bottom:1127.850000px;}
.y15f{bottom:1130.010000px;}
.y3{bottom:1131.090000px;}
.y46{bottom:1146.210000px;}
.y2{bottom:1148.370000px;}
.y47{bottom:1160.250000px;}
.y45{bottom:1165.650000px;}
.y1{bottom:1166.010000px;}
.hf{height:17.640000px;}
.h6{height:26.676000px;}
.h5{height:27.000000px;}
.hd{height:41.040000px;}
.h2{height:45.360000px;}
.h7{height:54.000000px;}
.h4{height:65.880000px;}
.h3{height:72.360000px;}
.hc{height:78.480000px;}
.he{height:102.636000px;}
.h8{height:104.760000px;}
.hb{height:469.950000px;}
.ha{height:496.230000px;}
.h9{height:575.430000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:15.120000px;}
.w8{width:15.156000px;}
.w4{width:21.240000px;}
.w3{width:210.345000px;}
.w5{width:435.780000px;}
.w6{width:667.365000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.920000px;}
.x5{left:119.556000px;}
.x1{left:127.475987px;}
.x3{left:144.071987px;}
.x9{left:152.700000px;}
.xb{left:154.514987px;}
.xe{left:181.514987px;}
.x4{left:220.784987px;}
.x7{left:329.910000px;}
.x8{left:351.150000px;}
.xa{left:427.860000px;}
.xc{left:460.979987px;}
.x2{left:729.284987px;}
.xd{left:771.810000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls4{letter-spacing:-1.536000pt;}
.lse{letter-spacing:-1.194667pt;}
.lsb{letter-spacing:-0.489067pt;}
.ls10{letter-spacing:-0.386667pt;}
.ls6{letter-spacing:-0.253333pt;}
.ls12{letter-spacing:-0.150933pt;}
.ls13{letter-spacing:-0.017920pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.017920pt;}
.ls11{letter-spacing:0.084267pt;}
.ls8{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.222933pt;}
.ls7{letter-spacing:0.338133pt;}
.lsc{letter-spacing:0.470933pt;}
.ls14{letter-spacing:0.554667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.768000pt;}
.lsd{letter-spacing:1.694720pt;}
.lsa{letter-spacing:6.814720pt;}
.ls9{letter-spacing:164.393387pt;}
.ws0{word-spacing:-53.760000pt;}
.ws5{word-spacing:-15.585280pt;}
.wsb{word-spacing:-15.499947pt;}
.ws6{word-spacing:-15.416213pt;}
.ws2{word-spacing:-15.283413pt;}
.ws7{word-spacing:-14.963200pt;}
.ws1{word-spacing:-14.945280pt;}
.wsa{word-spacing:-14.927360pt;}
.ws9{word-spacing:-14.794347pt;}
.ws4{word-spacing:-14.691947pt;}
.ws8{word-spacing:-14.558613pt;}
.wsc{word-spacing:-13.521920pt;}
.ws3{word-spacing:0.000000pt;}
._6{margin-left:-2.367147pt;}
._0{margin-left:-1.128960pt;}
._2{width:1.272747pt;}
._1{width:2.762667pt;}
._1d{width:3.691947pt;}
._d{width:4.677120pt;}
._e{width:5.700267pt;}
._12{width:6.716587pt;}
._f{width:7.687680pt;}
._a{width:8.870400pt;}
._8{width:10.321920pt;}
._7{width:11.235840pt;}
._10{width:12.911787pt;}
._b{width:14.031360pt;}
._c{width:15.883093pt;}
._9{width:16.988160pt;}
._19{width:18.065067pt;}
._18{width:19.246080pt;}
._17{width:20.215467pt;}
._16{width:21.446827pt;}
._1e{width:22.473387pt;}
._15{width:23.439360pt;}
._1a{width:24.783360pt;}
._1f{width:27.793920pt;}
._13{width:29.083307pt;}
._14{width:30.591147pt;}
._23{width:31.618133pt;}
._11{width:35.374080pt;}
._22{width:38.923947pt;}
._4{width:110.114560pt;}
._5{width:177.214720pt;}
._20{width:665.741227pt;}
._3{width:700.264107pt;}
._1c{width:775.850240pt;}
._1b{width:818.373120pt;}
._21{width:956.948053pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.240000pt;}
.fs7{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:3.840000pt;}
.y12{bottom:4.800000pt;}
.yc{bottom:5.120000pt;}
.y37{bottom:8.000000pt;}
.y3d{bottom:18.560000pt;}
.y11{bottom:20.160000pt;}
.y30{bottom:20.520000pt;}
.y3c{bottom:34.240000pt;}
.y10{bottom:35.840000pt;}
.y2f{bottom:35.880000pt;}
.y3b{bottom:49.600000pt;}
.yf{bottom:51.200000pt;}
.y2e{bottom:51.560000pt;}
.y36{bottom:51.840000pt;}
.y3a{bottom:64.986667pt;}
.y2d{bottom:66.920000pt;}
.ye{bottom:74.560000pt;}
.y5{bottom:80.032000pt;}
.y39{bottom:80.666667pt;}
.y2c{bottom:82.280000pt;}
.y2b{bottom:97.960000pt;}
.y126{bottom:104.992000pt;}
.y15e{bottom:108.512000pt;}
.y2a{bottom:113.320000pt;}
.y7c{bottom:115.552000pt;}
.yb0{bottom:117.152000pt;}
.y44{bottom:118.752000pt;}
.y125{bottom:120.992000pt;}
.ye0{bottom:122.272000pt;}
.y15d{bottom:126.112000pt;}
.y29{bottom:128.706667pt;}
.y7b{bottom:131.552000pt;}
.yaf{bottom:133.152000pt;}
.y43{bottom:134.746667pt;}
.y124{bottom:136.986667pt;}
.ydf{bottom:138.266667pt;}
.y15c{bottom:144.026667pt;}
.y28{bottom:144.386667pt;}
.y7a{bottom:147.546667pt;}
.yae{bottom:149.146667pt;}
.y42{bottom:150.746667pt;}
.yef{bottom:152.986667pt;}
.yde{bottom:154.266667pt;}
.y123{bottom:158.426667pt;}
.y27{bottom:159.746667pt;}
.y15b{bottom:161.946667pt;}
.yad{bottom:165.146667pt;}
.y41{bottom:166.746667pt;}
.y79{bottom:168.986667pt;}
.ydd{bottom:170.266667pt;}
.y26{bottom:175.106667pt;}
.y122{bottom:179.586667pt;}
.yac{bottom:181.186667pt;}
.y78{bottom:185.026667pt;}
.ydc{bottom:186.306667pt;}
.y40{bottom:188.226667pt;}
.ycc{bottom:190.466667pt;}
.y25{bottom:190.786667pt;}
.y121{bottom:195.586667pt;}
.yab{bottom:197.186667pt;}
.y15a{bottom:197.506667pt;}
.y77{bottom:201.026667pt;}
.ydb{bottom:202.306667pt;}
.y24{bottom:206.146667pt;}
.ycb{bottom:206.466667pt;}
.y3f{bottom:209.346667pt;}
.y120{bottom:211.586667pt;}
.yaa{bottom:213.186667pt;}
.y159{bottom:215.106667pt;}
.y76{bottom:217.026667pt;}
.y111{bottom:218.306667pt;}
.y23{bottom:221.506667pt;}
.yca{bottom:222.466667pt;}
.yda{bottom:223.746667pt;}
.y38{bottom:224.386667pt;}
.yee{bottom:227.586667pt;}
.ya9{bottom:229.186667pt;}
.y75{bottom:233.026667pt;}
.y110{bottom:234.306667pt;}
.y22{bottom:237.213333pt;}
.yc9{bottom:238.466667pt;}
.yd9{bottom:239.746667pt;}
.yed{bottom:243.586667pt;}
.ya8{bottom:245.186667pt;}
.y74{bottom:249.026667pt;}
.y10f{bottom:250.306667pt;}
.y158{bottom:250.626667pt;}
.y21{bottom:252.573333pt;}
.yc8{bottom:254.466667pt;}
.yd8{bottom:255.746667pt;}
.yec{bottom:259.586667pt;}
.ya7{bottom:261.186667pt;}
.y73{bottom:265.026667pt;}
.y10e{bottom:266.306667pt;}
.y20{bottom:267.933333pt;}
.y157{bottom:268.546667pt;}
.yc7{bottom:270.466667pt;}
.yd7{bottom:271.746667pt;}
.yeb{bottom:275.586667pt;}
.y138{bottom:277.186667pt;}
.y72{bottom:281.026667pt;}
.ya6{bottom:282.306667pt;}
.y1f{bottom:283.293333pt;}
.y11f{bottom:286.493333pt;}
.yd6{bottom:287.773333pt;}
.yc6{bottom:291.613333pt;}
.y137{bottom:293.213333pt;}
.ya5{bottom:298.333333pt;}
.y1e{bottom:298.973333pt;}
.y71{bottom:302.493333pt;}
.yd5{bottom:303.773333pt;}
.y156{bottom:304.093333pt;}
.yc5{bottom:307.613333pt;}
.y1d{bottom:314.333333pt;}
.y13{bottom:316.253333pt;}
.y70{bottom:318.493333pt;}
.y10d{bottom:319.773333pt;}
.y155{bottom:322.013333pt;}
.yc4{bottom:323.613333pt;}
.yd4{bottom:325.213333pt;}
.y35{bottom:329.053333pt;}
.y1c{bottom:329.693333pt;}
.ya4{bottom:330.333333pt;}
.y6f{bottom:334.493333pt;}
.y10c{bottom:335.773333pt;}
.yc3{bottom:339.613333pt;}
.yd3{bottom:341.213333pt;}
.y34{bottom:344.733333pt;}
.y11e{bottom:345.053333pt;}
.y1b{bottom:345.373333pt;}
.y136{bottom:346.333333pt;}
.y6e{bottom:350.493333pt;}
.ya3{bottom:351.773333pt;}
.yc2{bottom:355.613333pt;}
.yd2{bottom:357.213333pt;}
.y154{bottom:357.533333pt;}
.y33{bottom:360.093333pt;}
.y1a{bottom:360.773333pt;}
.y11d{bottom:361.053333pt;}
.y135{bottom:362.333333pt;}
.y6d{bottom:371.613333pt;}
.ya2{bottom:373.213333pt;}
.y153{bottom:375.133333pt;}
.y32{bottom:375.453333pt;}
.y19{bottom:376.133333pt;}
.y134{bottom:378.333333pt;}
.y11c{bottom:382.493333pt;}
.y15{bottom:386.653333pt;}
.y6c{bottom:387.613333pt;}
.ya1{bottom:389.213333pt;}
.y18{bottom:391.813333pt;}
.yc1{bottom:393.053333pt;}
.y10b{bottom:394.333333pt;}
.y31{bottom:399.133333pt;}
.y6b{bottom:403.653333pt;}
.ya0{bottom:405.253333pt;}
.y17{bottom:407.173333pt;}
.yc0{bottom:409.093333pt;}
.y10a{bottom:410.373333pt;}
.y152{bottom:411.013333pt;}
.y6a{bottom:419.653333pt;}
.y9f{bottom:421.253333pt;}
.y16{bottom:422.533333pt;}
.ybf{bottom:425.093333pt;}
.y109{bottom:426.373333pt;}
.y151{bottom:428.613333pt;}
.y69{bottom:435.653333pt;}
.y9e{bottom:437.253333pt;}
.ybe{bottom:441.093333pt;}
.yd1{bottom:442.373333pt;}
.y150{bottom:446.533333pt;}
.y133{bottom:447.813333pt;}
.y68{bottom:457.093333pt;}
.y9d{bottom:458.373333pt;}
.yea{bottom:462.533333pt;}
.y132{bottom:463.813333pt;}
.y14f{bottom:464.133333pt;}
.y67{bottom:473.093333pt;}
.y9c{bottom:474.373333pt;}
.ye9{bottom:478.533333pt;}
.y108{bottom:479.813333pt;}
.y14e{bottom:482.053333pt;}
.y66{bottom:489.093333pt;}
.y9b{bottom:490.373333pt;}
.y14{bottom:492.933333pt;}
.ye8{bottom:494.533333pt;}
.y107{bottom:495.813333pt;}
.y14d{bottom:499.653333pt;}
.y65{bottom:505.093333pt;}
.y9a{bottom:506.373333pt;}
.ye7{bottom:510.560000pt;}
.y106{bottom:511.840000pt;}
.y14c{bottom:517.600000pt;}
.y64{bottom:521.120000pt;}
.y99{bottom:522.400000pt;}
.y105{bottom:527.840000pt;}
.ye6{bottom:531.680000pt;}
.y14b{bottom:535.200000pt;}
.y63{bottom:537.120000pt;}
.yd0{bottom:538.400000pt;}
.y98{bottom:543.840000pt;}
.y62{bottom:553.120000pt;}
.y97{bottom:559.840000pt;}
.y104{bottom:565.280000pt;}
.ybd{bottom:569.120000pt;}
.y14a{bottom:571.040000pt;}
.y61{bottom:574.560000pt;}
.y96{bottom:575.840000pt;}
.y103{bottom:581.280000pt;}
.ybc{bottom:585.120000pt;}
.y149{bottom:588.640000pt;}
.y95{bottom:591.840000pt;}
.y60{bottom:595.680000pt;}
.y102{bottom:597.280000pt;}
.ybb{bottom:601.120000pt;}
.y175{bottom:604.320000pt;}
.y11b{bottom:606.560000pt;}
.y94{bottom:607.840000pt;}
.y5f{bottom:611.680000pt;}
.y101{bottom:613.280000pt;}
.yba{bottom:617.120000pt;}
.ye5{bottom:622.586667pt;}
.y93{bottom:623.866667pt;}
.y148{bottom:624.186667pt;}
.y174{bottom:625.786667pt;}
.y5e{bottom:627.706667pt;}
.y100{bottom:629.306667pt;}
.yb9{bottom:638.586667pt;}
.y92{bottom:639.866667pt;}
.y173{bottom:641.786667pt;}
.y147{bottom:642.106667pt;}
.y5d{bottom:643.706667pt;}
.yff{bottom:645.306667pt;}
.yb8{bottom:654.586667pt;}
.y91{bottom:655.866667pt;}
.y172{bottom:657.786667pt;}
.y5c{bottom:659.706667pt;}
.y131{bottom:661.306667pt;}
.yfe{bottom:666.426667pt;}
.yb7{bottom:670.586667pt;}
.y171{bottom:673.786667pt;}
.y5b{bottom:675.706667pt;}
.y90{bottom:677.306667pt;}
.y146{bottom:677.626667pt;}
.yb6{bottom:686.586667pt;}
.yfd{bottom:687.866667pt;}
.y170{bottom:689.786667pt;}
.y5a{bottom:691.706667pt;}
.y130{bottom:693.306667pt;}
.y145{bottom:695.546667pt;}
.y8f{bottom:698.426667pt;}
.yb5{bottom:702.586667pt;}
.yfc{bottom:703.866667pt;}
.y16f{bottom:705.786667pt;}
.ye4{bottom:707.706667pt;}
.y12f{bottom:709.306667pt;}
.y59{bottom:713.146667pt;}
.y8e{bottom:714.426667pt;}
.yb4{bottom:718.586667pt;}
.yfb{bottom:719.866667pt;}
.y16e{bottom:721.786667pt;}
.y11a{bottom:723.706667pt;}
.y12e{bottom:725.306667pt;}
.y58{bottom:729.146667pt;}
.y8d{bottom:730.426667pt;}
.y144{bottom:731.066667pt;}
.yd{bottom:734.626667pt;}
.yfa{bottom:735.906667pt;}
.y16d{bottom:737.826667pt;}
.yb3{bottom:739.746667pt;}
.y12d{bottom:741.346667pt;}
.y57{bottom:745.186667pt;}
.y8c{bottom:746.466667pt;}
.y143{bottom:748.706667pt;}
.ye3{bottom:750.626667pt;}
.ycf{bottom:751.906667pt;}
.y16c{bottom:753.826667pt;}
.y12c{bottom:757.346667pt;}
.y56{bottom:761.186667pt;}
.y8b{bottom:762.466667pt;}
.ye2{bottom:766.626667pt;}
.yce{bottom:767.906667pt;}
.y16b{bottom:769.826667pt;}
.yf9{bottom:773.346667pt;}
.y55{bottom:777.186667pt;}
.yb2{bottom:782.626667pt;}
.y8a{bottom:783.906667pt;}
.y142{bottom:784.226667pt;}
.yf8{bottom:789.346667pt;}
.y16a{bottom:790.946667pt;}
.y54{bottom:793.186667pt;}
.y12b{bottom:794.466667pt;}
.yb1{bottom:798.626667pt;}
.y89{bottom:799.906667pt;}
.y141{bottom:802.146667pt;}
.yf7{bottom:805.346667pt;}
.y169{bottom:812.386667pt;}
.y53{bottom:814.626667pt;}
.y88{bottom:815.906667pt;}
.y119{bottom:819.746667pt;}
.y140{bottom:820.066667pt;}
.yf6{bottom:821.346667pt;}
.yb{bottom:828.386667pt;}
.y52{bottom:830.626667pt;}
.y87{bottom:831.906667pt;}
.y168{bottom:833.826667pt;}
.y118{bottom:835.746667pt;}
.yf5{bottom:837.346667pt;}
.y13f{bottom:837.666667pt;}
.y51{bottom:846.653333pt;}
.y86{bottom:847.933333pt;}
.y167{bottom:849.853333pt;}
.y117{bottom:851.773333pt;}
.y13e{bottom:855.613333pt;}
.yf4{bottom:858.493333pt;}
.ya{bottom:858.813333pt;}
.y50{bottom:862.653333pt;}
.ycd{bottom:863.933333pt;}
.y166{bottom:865.853333pt;}
.y116{bottom:867.773333pt;}
.y85{bottom:869.373333pt;}
.y13d{bottom:873.213333pt;}
.y4f{bottom:878.653333pt;}
.y9{bottom:879.933333pt;}
.y115{bottom:883.773333pt;}
.y84{bottom:885.373333pt;}
.y165{bottom:886.973333pt;}
.y12a{bottom:890.493333pt;}
.y8{bottom:890.813333pt;}
.y13c{bottom:891.133333pt;}
.yf3{bottom:895.933333pt;}
.y4e{bottom:899.773333pt;}
.y83{bottom:901.373333pt;}
.y129{bottom:906.493333pt;}
.y164{bottom:908.413333pt;}
.y13b{bottom:908.733333pt;}
.yf2{bottom:911.933333pt;}
.y4d{bottom:915.773333pt;}
.y82{bottom:917.373333pt;}
.y7{bottom:923.453333pt;}
.y13a{bottom:926.653333pt;}
.y128{bottom:927.933333pt;}
.y163{bottom:929.853333pt;}
.y4c{bottom:931.773333pt;}
.y81{bottom:933.373333pt;}
.y114{bottom:937.213333pt;}
.y139{bottom:944.573333pt;}
.y4b{bottom:947.773333pt;}
.y80{bottom:949.373333pt;}
.y6{bottom:950.013333pt;}
.y162{bottom:950.973333pt;}
.y113{bottom:953.213333pt;}
.yf1{bottom:954.493333pt;}
.y4a{bottom:963.813333pt;}
.y7f{bottom:965.413333pt;}
.y161{bottom:967.013333pt;}
.y112{bottom:969.253333pt;}
.yf0{bottom:970.533333pt;}
.ye1{bottom:979.813333pt;}
.y127{bottom:981.413333pt;}
.y49{bottom:985.253333pt;}
.y7e{bottom:986.533333pt;}
.y160{bottom:986.853333pt;}
.y4{bottom:990.053333pt;}
.y48{bottom:1001.253333pt;}
.y7d{bottom:1002.533333pt;}
.y15f{bottom:1004.453333pt;}
.y3{bottom:1005.413333pt;}
.y46{bottom:1018.853333pt;}
.y2{bottom:1020.773333pt;}
.y47{bottom:1031.333333pt;}
.y45{bottom:1036.133333pt;}
.y1{bottom:1036.453333pt;}
.hf{height:15.680000pt;}
.h6{height:23.712000pt;}
.h5{height:24.000000pt;}
.hd{height:36.480000pt;}
.h2{height:40.320000pt;}
.h7{height:48.000000pt;}
.h4{height:58.560000pt;}
.h3{height:64.320000pt;}
.hc{height:69.760000pt;}
.he{height:91.232000pt;}
.h8{height:93.120000pt;}
.hb{height:417.733333pt;}
.ha{height:441.093333pt;}
.h9{height:511.493333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:13.440000pt;}
.w8{width:13.472000pt;}
.w4{width:18.880000pt;}
.w3{width:186.973333pt;}
.w5{width:387.360000pt;}
.w6{width:593.213333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.040000pt;}
.x5{left:106.272000pt;}
.x1{left:113.311988pt;}
.x3{left:128.063988pt;}
.x9{left:135.733333pt;}
.xb{left:137.346655pt;}
.xe{left:161.346655pt;}
.x4{left:196.253322pt;}
.x7{left:293.253333pt;}
.x8{left:312.133333pt;}
.xa{left:380.320000pt;}
.xc{left:409.759988pt;}
.x2{left:648.253322pt;}
.xd{left:686.053333pt;}
}




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