
    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_fcc03aadbde19f5e9d802cfd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_bdd8942d8ba3117a4b34f682.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_2e39a490621623e290742a38.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_9e6911a097b1d25f846aa8c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_fef3c61103b5ebf36a3ad603.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_ba2ee7b1456f33995c42f3bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.063477;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_43fef599bd2adc76a06b3061.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937500;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.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.880000px;}
.v1{vertical-align:24.120000px;}
.v6{vertical-align:36.360000px;}
.v5{vertical-align:42.120000px;}
.ls12{letter-spacing:-0.828000px;}
.ls24{letter-spacing:-0.618000px;}
.ls10{letter-spacing:-0.469800px;}
.ls23{letter-spacing:-0.387000px;}
.ls13{letter-spacing:-0.161400px;}
.ls1{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.109800px;}
.ls21{letter-spacing:-0.078600px;}
.ls16{letter-spacing:-0.048240px;}
.ls2d{letter-spacing:-0.043560px;}
.ls5{letter-spacing:-0.041760px;}
.ls4{letter-spacing:-0.032400px;}
.ls3{letter-spacing:-0.027000px;}
.ls7{letter-spacing:-0.015840px;}
.ls0{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.000720px;}
.ls2c{letter-spacing:0.001080px;}
.ls28{letter-spacing:0.015480px;}
.ls20{letter-spacing:0.046800px;}
.ls2a{letter-spacing:0.050400px;}
.ls22{letter-spacing:0.054000px;}
.ls1b{letter-spacing:0.055800px;}
.ls19{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.078600px;}
.lsc{letter-spacing:0.078840px;}
.ls6{letter-spacing:0.090000px;}
.ls1c{letter-spacing:0.094800px;}
.ls14{letter-spacing:0.123600px;}
.lsf{letter-spacing:0.160800px;}
.ls17{letter-spacing:0.198600px;}
.ls26{letter-spacing:0.201000px;}
.lsd{letter-spacing:0.231120px;}
.ls1f{letter-spacing:0.281400px;}
.lsb{letter-spacing:0.312000px;}
.ls8{letter-spacing:0.318000px;}
.lse{letter-spacing:0.318240px;}
.ls27{letter-spacing:0.327600px;}
.ls2b{letter-spacing:0.361200px;}
.ls11{letter-spacing:0.438600px;}
.lsa{letter-spacing:0.450000px;}
.ls15{letter-spacing:0.483600px;}
.ls1d{letter-spacing:0.591120px;}
.ls25{letter-spacing:2.391120px;}
.ls1e{letter-spacing:11.031120px;}
.ls18{letter-spacing:19.800000px;}
.ls1a{letter-spacing:200.196000px;}
.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;}
}
.ws4{word-spacing:-18.956880px;}
.ws1{word-spacing:-16.272000px;}
.ws2{word-spacing:-16.128000px;}
.ws14{word-spacing:-15.912000px;}
.ws12{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.327480px;}
.ws21{word-spacing:-15.250080px;}
.ws19{word-spacing:-15.206880px;}
.ws17{word-spacing:-15.170280px;}
.ws1f{word-spacing:-15.089880px;}
.ws10{word-spacing:-15.087480px;}
.ws11{word-spacing:-15.012480px;}
.ws16{word-spacing:-14.983680px;}
.ws8{word-spacing:-14.967480px;}
.ws15{word-spacing:-14.944680px;}
.ws22{word-spacing:-14.939280px;}
.ws20{word-spacing:-14.904360px;}
.ws24{word-spacing:-14.889960px;}
.ws23{word-spacing:-14.889600px;}
.ws7{word-spacing:-14.888880px;}
.ws6{word-spacing:-14.861880px;}
.ws5{word-spacing:-14.856480px;}
.ws18{word-spacing:-14.847120px;}
.ws25{word-spacing:-14.845320px;}
.wse{word-spacing:-14.840640px;}
.ws1a{word-spacing:-14.810280px;}
.ws9{word-spacing:-14.779080px;}
.wsd{word-spacing:-14.727480px;}
.ws1d{word-spacing:-14.501880px;}
.wsa{word-spacing:-14.419080px;}
.ws1e{word-spacing:-14.270880px;}
.wsc{word-spacing:-14.060880px;}
.ws1b{word-spacing:-12.258000px;}
.ws1c{word-spacing:-12.204000px;}
.ws0{word-spacing:-10.820880px;}
.wsf{word-spacing:-9.519120px;}
.ws3{word-spacing:0.000000px;}
.ws13{word-spacing:71.298000px;}
._17{margin-left:-75.509520px;}
._18{margin-left:-6.868200px;}
._3{margin-left:-5.555160px;}
._6{margin-left:-3.855600px;}
._2{margin-left:-2.531160px;}
._1{margin-left:-1.008000px;}
._0{width:1.022760px;}
._4{width:2.291160px;}
._7{width:3.384000px;}
._b{width:4.456800px;}
._a{width:5.461200px;}
._9{width:6.615720px;}
._8{width:8.300880px;}
._c{width:9.523080px;}
._16{width:11.202000px;}
._10{width:12.363600px;}
._d{width:13.545000px;}
._15{width:16.074720px;}
._14{width:17.787600px;}
._f{width:18.954720px;}
._e{width:20.027520px;}
._1a{width:21.278160px;}
._19{width:24.151680px;}
._13{width:25.627320px;}
._11{width:26.813160px;}
._12{width:28.038600px;}
._5{width:845.043120px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.120000px;}
.fs3{font-size:47.880000px;}
.fs5{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y98{bottom:14.400000px;}
.y9b{bottom:14.490000px;}
.y3d{bottom:111.510000px;}
.y1a{bottom:113.310000px;}
.y14b{bottom:114.390000px;}
.yb8{bottom:117.450000px;}
.yee{bottom:119.790000px;}
.y5d{bottom:121.230000px;}
.yc7{bottom:123.840000px;}
.y144{bottom:126.360000px;}
.y132{bottom:132.570000px;}
.y116{bottom:136.350000px;}
.yd8{bottom:136.620000px;}
.y7c{bottom:138.690000px;}
.y3c{bottom:141.750000px;}
.y14a{bottom:144.630000px;}
.yb7{bottom:147.690000px;}
.yed{bottom:149.940000px;}
.y5c{bottom:151.380000px;}
.yfd{bottom:152.370000px;}
.y143{bottom:156.600000px;}
.yc6{bottom:157.590000px;}
.y19{bottom:161.100000px;}
.yd7{bottom:166.860000px;}
.y15d{bottom:168.570000px;}
.y7b{bottom:168.930000px;}
.y3b{bottom:171.900000px;}
.y131{bottom:174.780000px;}
.yb6{bottom:177.930000px;}
.y115{bottom:178.560000px;}
.yec{bottom:180.180000px;}
.y5b{bottom:181.620000px;}
.y142{bottom:186.840000px;}
.yc5{bottom:191.340000px;}
.y94{bottom:194.040000px;}
.yfc{bottom:198.810000px;}
.y7a{bottom:199.080000px;}
.y3a{bottom:202.140000px;}
.y130{bottom:205.020000px;}
.yb5{bottom:208.080000px;}
.y114{bottom:208.800000px;}
.yd6{bottom:209.070000px;}
.yeb{bottom:210.420000px;}
.y5a{bottom:211.860000px;}
.y18{bottom:216.990000px;}
.yc4{bottom:225.660000px;}
.y93{bottom:227.820000px;}
.y15c{bottom:229.080000px;}
.y79{bottom:229.350000px;}
.y39{bottom:232.410000px;}
.y12f{bottom:235.290000px;}
.yb4{bottom:238.350000px;}
.y113{bottom:239.070000px;}
.yd5{bottom:239.340000px;}
.yea{bottom:240.600000px;}
.yfb{bottom:241.050000px;}
.y59{bottom:242.040000px;}
.y149{bottom:247.260000px;}
.yc3{bottom:257.160000px;}
.y141{bottom:259.230000px;}
.y78{bottom:259.590000px;}
.y38{bottom:262.650000px;}
.yb3{bottom:268.590000px;}
.yd4{bottom:269.490000px;}
.y92{bottom:270.030000px;}
.ye9{bottom:270.840000px;}
.y15b{bottom:271.290000px;}
.y58{bottom:272.280000px;}
.y17{bottom:273.000000px;}
.yc2{bottom:273.630000px;}
.y12e{bottom:277.500000px;}
.y112{bottom:281.280000px;}
.yfa{bottom:283.260000px;}
.y140{bottom:289.470000px;}
.y77{bottom:289.740000px;}
.yc1{bottom:290.100000px;}
.y37{bottom:292.800000px;}
.yb2{bottom:298.740000px;}
.yd3{bottom:299.730000px;}
.y91{bottom:300.270000px;}
.ye8{bottom:301.080000px;}
.y15a{bottom:301.440000px;}
.y57{bottom:302.520000px;}
.yc0{bottom:306.570000px;}
.y12d{bottom:307.740000px;}
.y111{bottom:311.430000px;}
.y13f{bottom:319.710000px;}
.y76{bottom:319.980000px;}
.y36{bottom:323.040000px;}
.ybf{bottom:323.130000px;}
.yf9{bottom:325.470000px;}
.y16{bottom:328.980000px;}
.yd2{bottom:329.970000px;}
.y90{bottom:330.420000px;}
.ye7{bottom:331.230000px;}
.y159{bottom:331.680000px;}
.y56{bottom:332.670000px;}
.y12c{bottom:337.890000px;}
.y110{bottom:341.670000px;}
.ybe{bottom:349.590000px;}
.y148{bottom:349.950000px;}
.y75{bottom:350.220000px;}
.y35{bottom:353.280000px;}
.yb1{bottom:359.220000px;}
.yd1{bottom:360.210000px;}
.y8f{bottom:360.660000px;}
.ye6{bottom:361.470000px;}
.y13e{bottom:361.920000px;}
.y55{bottom:362.910000px;}
.yf8{bottom:367.680000px;}
.y158{bottom:373.890000px;}
.y12b{bottom:380.100000px;}
.y74{bottom:380.460000px;}
.y34{bottom:383.430000px;}
.y10f{bottom:383.880000px;}
.y15{bottom:384.870000px;}
.yb0{bottom:389.370000px;}
.yd0{bottom:390.360000px;}
.ye5{bottom:391.710000px;}
.y13d{bottom:392.160000px;}
.y54{bottom:393.150000px;}
.yf0{bottom:403.680000px;}
.y157{bottom:404.130000px;}
.y8e{bottom:406.920000px;}
.yf7{bottom:409.890000px;}
.y12a{bottom:410.340000px;}
.y73{bottom:410.610000px;}
.y33{bottom:413.670000px;}
.y10e{bottom:414.120000px;}
.yaf{bottom:419.610000px;}
.ye4{bottom:421.950000px;}
.y13c{bottom:422.310000px;}
.y53{bottom:423.390000px;}
.ycf{bottom:425.820000px;}
.y14{bottom:429.870000px;}
.yef{bottom:433.920000px;}
.y156{bottom:434.370000px;}
.y72{bottom:440.850000px;}
.y32{bottom:443.910000px;}
.y10d{bottom:444.270000px;}
.yae{bottom:449.850000px;}
.yf6{bottom:452.100000px;}
.y129{bottom:452.550000px;}
.y8d{bottom:453.360000px;}
.yce{bottom:463.800000px;}
.ye3{bottom:464.160000px;}
.y13b{bottom:464.520000px;}
.y52{bottom:465.600000px;}
.y71{bottom:471.090000px;}
.y13{bottom:474.780000px;}
.y155{bottom:476.580000px;}
.yad{bottom:480.000000px;}
.yf5{bottom:482.340000px;}
.y128{bottom:482.790000px;}
.y31{bottom:486.120000px;}
.y10c{bottom:486.480000px;}
.ye2{bottom:494.310000px;}
.y13a{bottom:494.760000px;}
.y8c{bottom:495.570000px;}
.y51{bottom:495.750000px;}
.y70{bottom:501.240000px;}
.ycd{bottom:506.010000px;}
.y154{bottom:506.730000px;}
.yac{bottom:510.240000px;}
.yf4{bottom:512.580000px;}
.y15f{bottom:512.940000px;}
.y30{bottom:516.270000px;}
.y10b{bottom:516.720000px;}
.y12{bottom:519.780000px;}
.ye1{bottom:524.550000px;}
.y127{bottom:525.000000px;}
.y8b{bottom:525.720000px;}
.y50{bottom:525.990000px;}
.y6f{bottom:531.480000px;}
.y153{bottom:536.970000px;}
.ycc{bottom:540.390000px;}
.yab{bottom:540.480000px;}
.yf3{bottom:542.730000px;}
.y2f{bottom:546.510000px;}
.y10a{bottom:546.960000px;}
.y2c{bottom:548.490000px;}
.ye0{bottom:554.790000px;}
.y126{bottom:555.150000px;}
.y8a{bottom:555.960000px;}
.y4f{bottom:556.230000px;}
.ycb{bottom:556.860000px;}
.y6e{bottom:561.720000px;}
.y11{bottom:564.690000px;}
.y152{bottom:567.210000px;}
.yaa{bottom:570.720000px;}
.yf2{bottom:572.970000px;}
.yca{bottom:573.330000px;}
.y2e{bottom:576.750000px;}
.y109{bottom:577.200000px;}
.ydf{bottom:584.940000px;}
.y125{bottom:585.390000px;}
.y89{bottom:586.200000px;}
.y4e{bottom:586.380000px;}
.yc9{bottom:589.800000px;}
.y2b{bottom:594.930000px;}
.y139{bottom:597.360000px;}
.ya9{bottom:600.870000px;}
.yf1{bottom:603.210000px;}
.y6d{bottom:605.190000px;}
.y2d{bottom:606.900000px;}
.y108{bottom:607.350000px;}
.y151{bottom:609.420000px;}
.yde{bottom:615.180000px;}
.y147{bottom:615.630000px;}
.yc8{bottom:616.260000px;}
.y88{bottom:616.440000px;}
.y4d{bottom:616.620000px;}
.y10{bottom:620.670000px;}
.y124{bottom:627.600000px;}
.ya8{bottom:634.620000px;}
.y2a{bottom:637.140000px;}
.y150{bottom:639.570000px;}
.ydd{bottom:645.450000px;}
.y87{bottom:646.620000px;}
.y6c{bottom:648.870000px;}
.y107{bottom:649.590000px;}
.y123{bottom:657.870000px;}
.y4c{bottom:660.210000px;}
.yf{bottom:664.710000px;}
.y29{bottom:667.410000px;}
.ya7{bottom:668.400000px;}
.y14f{bottom:669.840000px;}
.ydc{bottom:675.600000px;}
.y86{bottom:679.830000px;}
.ya6{bottom:684.870000px;}
.y122{bottom:688.020000px;}
.y85{bottom:688.920000px;}
.y6b{bottom:691.080000px;}
.y28{bottom:697.650000px;}
.y138{bottom:700.080000px;}
.ybd{bottom:705.840000px;}
.y4b{bottom:707.820000px;}
.ye{bottom:708.720000px;}
.y106{bottom:710.070000px;}
.yd{bottom:714.750000px;}
.ya5{bottom:715.110000px;}
.y146{bottom:718.260000px;}
.y6a{bottom:721.320000px;}
.y27{bottom:727.800000px;}
.y121{bottom:730.320000px;}
.ybc{bottom:736.080000px;}
.y84{bottom:736.800000px;}
.y14e{bottom:742.290000px;}
.ya4{bottom:745.350000px;}
.y69{bottom:751.560000px;}
.y105{bottom:752.280000px;}
.yc{bottom:752.640000px;}
.y4a{bottom:754.260000px;}
.y26{bottom:758.040000px;}
.y120{bottom:760.470000px;}
.ybb{bottom:766.320000px;}
.y83{bottom:767.040000px;}
.y137{bottom:772.530000px;}
.ya3{bottom:775.500000px;}
.y68{bottom:781.710000px;}
.y104{bottom:782.430000px;}
.y25{bottom:788.280000px;}
.y11f{bottom:790.710000px;}
.y49{bottom:796.470000px;}
.yb{bottom:796.560000px;}
.y82{bottom:797.190000px;}
.ya{bottom:802.590000px;}
.y136{bottom:802.680000px;}
.ya2{bottom:805.740000px;}
.ydb{bottom:808.530000px;}
.y67{bottom:811.950000px;}
.y24{bottom:818.430000px;}
.y145{bottom:820.950000px;}
.y103{bottom:824.640000px;}
.y48{bottom:826.710000px;}
.y81{bottom:827.430000px;}
.y11e{bottom:832.920000px;}
.ya1{bottom:835.980000px;}
.yda{bottom:838.680000px;}
.y66{bottom:842.190000px;}
.y14d{bottom:844.890000px;}
.y23{bottom:848.670000px;}
.y9{bottom:852.450000px;}
.y102{bottom:854.880000px;}
.y47{bottom:856.950000px;}
.y80{bottom:857.670000px;}
.y11d{bottom:863.160000px;}
.ya0{bottom:866.130000px;}
.yd9{bottom:868.920000px;}
.y65{bottom:872.340000px;}
.y14c{bottom:875.130000px;}
.y22{bottom:878.910000px;}
.y101{bottom:885.120000px;}
.yba{bottom:887.100000px;}
.y7f{bottom:887.820000px;}
.y11c{bottom:893.310000px;}
.y9f{bottom:896.370000px;}
.y8{bottom:896.460000px;}
.y46{bottom:899.160000px;}
.y7{bottom:902.490000px;}
.y64{bottom:902.580000px;}
.y135{bottom:905.370000px;}
.y21{bottom:909.060000px;}
.yb9{bottom:917.340000px;}
.y9e{bottom:926.610000px;}
.y100{bottom:927.330000px;}
.y45{bottom:929.310000px;}
.y7e{bottom:931.380000px;}
.y63{bottom:932.820000px;}
.y11b{bottom:935.520000px;}
.y20{bottom:939.300000px;}
.y6{bottom:952.350000px;}
.y9d{bottom:956.760000px;}
.yff{bottom:957.480000px;}
.y5{bottom:958.380000px;}
.y44{bottom:959.550000px;}
.y62{bottom:963.060000px;}
.y11a{bottom:965.760000px;}
.y1f{bottom:969.540000px;}
.y7d{bottom:976.290000px;}
.y134{bottom:977.730000px;}
.y9c{bottom:987.000000px;}
.yfe{bottom:987.720000px;}
.y43{bottom:989.790000px;}
.y61{bottom:993.210000px;}
.y119{bottom:996.000000px;}
.y1e{bottom:999.780000px;}
.y133{bottom:1007.970000px;}
.y4{bottom:1008.240000px;}
.y9a{bottom:1017.240000px;}
.y42{bottom:1019.940000px;}
.y60{bottom:1023.450000px;}
.y1d{bottom:1029.930000px;}
.y118{bottom:1038.210000px;}
.y99{bottom:1047.480000px;}
.y41{bottom:1050.180000px;}
.y3{bottom:1051.890000px;}
.y5f{bottom:1053.690000px;}
.y1c{bottom:1060.170000px;}
.y117{bottom:1068.390000px;}
.y97{bottom:1078.470000px;}
.y40{bottom:1080.450000px;}
.y1b{bottom:1090.440000px;}
.y5e{bottom:1097.190000px;}
.y2{bottom:1098.180000px;}
.y15e{bottom:1098.630000px;}
.y3f{bottom:1110.600000px;}
.y96{bottom:1127.250000px;}
.y1{bottom:1136.610000px;}
.y3e{bottom:1140.840000px;}
.y95{bottom:1143.720000px;}
.hf{height:30.150000px;}
.h10{height:30.180000px;}
.h11{height:30.240000px;}
.h12{height:41.000977px;}
.h6{height:47.622832px;}
.he{height:53.709961px;}
.h8{height:54.667969px;}
.hd{height:55.291992px;}
.h3{height:65.526152px;}
.ha{height:66.013770px;}
.h4{height:67.456230px;}
.h7{height:71.613281px;}
.h5{height:71.742832px;}
.h9{height:73.722656px;}
.hb{height:85.202578px;}
.h2{height:85.886895px;}
.hc{height:101.886152px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:191.730000px;}
.w4{width:212.310000px;}
.w6{width:233.040000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:9.990000px;}
.x16{left:13.860000px;}
.x15{left:18.090000px;}
.x12{left:20.790000px;}
.x18{left:22.230000px;}
.x11{left:26.550000px;}
.xf{left:28.800000px;}
.x17{left:31.590000px;}
.x13{left:33.030000px;}
.x1b{left:35.190000px;}
.x14{left:36.450000px;}
.x10{left:38.970000px;}
.x19{left:44.280000px;}
.xa{left:57.450000px;}
.xe{left:58.800000px;}
.x1a{left:62.940000px;}
.x5{left:75.509973px;}
.x4{left:83.879973px;}
.x2{left:92.249973px;}
.xc{left:96.690000px;}
.x3{left:100.619987px;}
.x8{left:106.020000px;}
.x1{left:127.649987px;}
.x1d{left:163.649987px;}
.x9{left:339.960000px;}
.x6{left:371.669987px;}
.x7{left:495.959987px;}
.xb{left:531.690000px;}
.x1c{left:765.449987px;}
@media print{
.v2{vertical-align:-21.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v1{vertical-align:21.440000pt;}
.v6{vertical-align:32.320000pt;}
.v5{vertical-align:37.440000pt;}
.ls12{letter-spacing:-0.736000pt;}
.ls24{letter-spacing:-0.549333pt;}
.ls10{letter-spacing:-0.417600pt;}
.ls23{letter-spacing:-0.344000pt;}
.ls13{letter-spacing:-0.143467pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.097600pt;}
.ls21{letter-spacing:-0.069867pt;}
.ls16{letter-spacing:-0.042880pt;}
.ls2d{letter-spacing:-0.038720pt;}
.ls5{letter-spacing:-0.037120pt;}
.ls4{letter-spacing:-0.028800pt;}
.ls3{letter-spacing:-0.024000pt;}
.ls7{letter-spacing:-0.014080pt;}
.ls0{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.000640pt;}
.ls2c{letter-spacing:0.000960pt;}
.ls28{letter-spacing:0.013760pt;}
.ls20{letter-spacing:0.041600pt;}
.ls2a{letter-spacing:0.044800pt;}
.ls22{letter-spacing:0.048000pt;}
.ls1b{letter-spacing:0.049600pt;}
.ls19{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.069867pt;}
.lsc{letter-spacing:0.070080pt;}
.ls6{letter-spacing:0.080000pt;}
.ls1c{letter-spacing:0.084267pt;}
.ls14{letter-spacing:0.109867pt;}
.lsf{letter-spacing:0.142933pt;}
.ls17{letter-spacing:0.176533pt;}
.ls26{letter-spacing:0.178667pt;}
.lsd{letter-spacing:0.205440pt;}
.ls1f{letter-spacing:0.250133pt;}
.lsb{letter-spacing:0.277333pt;}
.ls8{letter-spacing:0.282667pt;}
.lse{letter-spacing:0.282880pt;}
.ls27{letter-spacing:0.291200pt;}
.ls2b{letter-spacing:0.321067pt;}
.ls11{letter-spacing:0.389867pt;}
.lsa{letter-spacing:0.400000pt;}
.ls15{letter-spacing:0.429867pt;}
.ls1d{letter-spacing:0.525440pt;}
.ls25{letter-spacing:2.125440pt;}
.ls1e{letter-spacing:9.805440pt;}
.ls18{letter-spacing:17.600000pt;}
.ls1a{letter-spacing:177.952000pt;}
.ws4{word-spacing:-16.850560pt;}
.ws1{word-spacing:-14.464000pt;}
.ws2{word-spacing:-14.336000pt;}
.ws14{word-spacing:-14.144000pt;}
.ws12{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.624427pt;}
.ws21{word-spacing:-13.555627pt;}
.ws19{word-spacing:-13.517227pt;}
.ws17{word-spacing:-13.484693pt;}
.ws1f{word-spacing:-13.413227pt;}
.ws10{word-spacing:-13.411093pt;}
.ws11{word-spacing:-13.344427pt;}
.ws16{word-spacing:-13.318827pt;}
.ws8{word-spacing:-13.304427pt;}
.ws15{word-spacing:-13.284160pt;}
.ws22{word-spacing:-13.279360pt;}
.ws20{word-spacing:-13.248320pt;}
.ws24{word-spacing:-13.235520pt;}
.ws23{word-spacing:-13.235200pt;}
.ws7{word-spacing:-13.234560pt;}
.ws6{word-spacing:-13.210560pt;}
.ws5{word-spacing:-13.205760pt;}
.ws18{word-spacing:-13.197440pt;}
.ws25{word-spacing:-13.195840pt;}
.wse{word-spacing:-13.191680pt;}
.ws1a{word-spacing:-13.164693pt;}
.ws9{word-spacing:-13.136960pt;}
.wsd{word-spacing:-13.091093pt;}
.ws1d{word-spacing:-12.890560pt;}
.wsa{word-spacing:-12.816960pt;}
.ws1e{word-spacing:-12.685227pt;}
.wsc{word-spacing:-12.498560pt;}
.ws1b{word-spacing:-10.896000pt;}
.ws1c{word-spacing:-10.848000pt;}
.ws0{word-spacing:-9.618560pt;}
.wsf{word-spacing:-8.461440pt;}
.ws3{word-spacing:0.000000pt;}
.ws13{word-spacing:63.376000pt;}
._17{margin-left:-67.119573pt;}
._18{margin-left:-6.105067pt;}
._3{margin-left:-4.937920pt;}
._6{margin-left:-3.427200pt;}
._2{margin-left:-2.249920pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.909120pt;}
._4{width:2.036587pt;}
._7{width:3.008000pt;}
._b{width:3.961600pt;}
._a{width:4.854400pt;}
._9{width:5.880640pt;}
._8{width:7.378560pt;}
._c{width:8.464960pt;}
._16{width:9.957333pt;}
._10{width:10.989867pt;}
._d{width:12.040000pt;}
._15{width:14.288640pt;}
._14{width:15.811200pt;}
._f{width:16.848640pt;}
._e{width:17.802240pt;}
._1a{width:18.913920pt;}
._19{width:21.468160pt;}
._13{width:22.779840pt;}
._11{width:23.833920pt;}
._12{width:24.923200pt;}
._5{width:751.149440pt;}
.fs4{font-size:37.440000pt;}
.fs3{font-size:42.560000pt;}
.fs5{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:12.800000pt;}
.y9b{bottom:12.880000pt;}
.y3d{bottom:99.120000pt;}
.y1a{bottom:100.720000pt;}
.y14b{bottom:101.680000pt;}
.yb8{bottom:104.400000pt;}
.yee{bottom:106.480000pt;}
.y5d{bottom:107.760000pt;}
.yc7{bottom:110.080000pt;}
.y144{bottom:112.320000pt;}
.y132{bottom:117.840000pt;}
.y116{bottom:121.200000pt;}
.yd8{bottom:121.440000pt;}
.y7c{bottom:123.280000pt;}
.y3c{bottom:126.000000pt;}
.y14a{bottom:128.560000pt;}
.yb7{bottom:131.280000pt;}
.yed{bottom:133.280000pt;}
.y5c{bottom:134.560000pt;}
.yfd{bottom:135.440000pt;}
.y143{bottom:139.200000pt;}
.yc6{bottom:140.080000pt;}
.y19{bottom:143.200000pt;}
.yd7{bottom:148.320000pt;}
.y15d{bottom:149.840000pt;}
.y7b{bottom:150.160000pt;}
.y3b{bottom:152.800000pt;}
.y131{bottom:155.360000pt;}
.yb6{bottom:158.160000pt;}
.y115{bottom:158.720000pt;}
.yec{bottom:160.160000pt;}
.y5b{bottom:161.440000pt;}
.y142{bottom:166.080000pt;}
.yc5{bottom:170.080000pt;}
.y94{bottom:172.480000pt;}
.yfc{bottom:176.720000pt;}
.y7a{bottom:176.960000pt;}
.y3a{bottom:179.680000pt;}
.y130{bottom:182.240000pt;}
.yb5{bottom:184.960000pt;}
.y114{bottom:185.600000pt;}
.yd6{bottom:185.840000pt;}
.yeb{bottom:187.040000pt;}
.y5a{bottom:188.320000pt;}
.y18{bottom:192.880000pt;}
.yc4{bottom:200.586667pt;}
.y93{bottom:202.506667pt;}
.y15c{bottom:203.626667pt;}
.y79{bottom:203.866667pt;}
.y39{bottom:206.586667pt;}
.y12f{bottom:209.146667pt;}
.yb4{bottom:211.866667pt;}
.y113{bottom:212.506667pt;}
.yd5{bottom:212.746667pt;}
.yea{bottom:213.866667pt;}
.yfb{bottom:214.266667pt;}
.y59{bottom:215.146667pt;}
.y149{bottom:219.786667pt;}
.yc3{bottom:228.586667pt;}
.y141{bottom:230.426667pt;}
.y78{bottom:230.746667pt;}
.y38{bottom:233.466667pt;}
.yb3{bottom:238.746667pt;}
.yd4{bottom:239.546667pt;}
.y92{bottom:240.026667pt;}
.ye9{bottom:240.746667pt;}
.y15b{bottom:241.146667pt;}
.y58{bottom:242.026667pt;}
.y17{bottom:242.666667pt;}
.yc2{bottom:243.226667pt;}
.y12e{bottom:246.666667pt;}
.y112{bottom:250.026667pt;}
.yfa{bottom:251.786667pt;}
.y140{bottom:257.306667pt;}
.y77{bottom:257.546667pt;}
.yc1{bottom:257.866667pt;}
.y37{bottom:260.266667pt;}
.yb2{bottom:265.546667pt;}
.yd3{bottom:266.426667pt;}
.y91{bottom:266.906667pt;}
.ye8{bottom:267.626667pt;}
.y15a{bottom:267.946667pt;}
.y57{bottom:268.906667pt;}
.yc0{bottom:272.506667pt;}
.y12d{bottom:273.546667pt;}
.y111{bottom:276.826667pt;}
.y13f{bottom:284.186667pt;}
.y76{bottom:284.426667pt;}
.y36{bottom:287.146667pt;}
.ybf{bottom:287.226667pt;}
.yf9{bottom:289.306667pt;}
.y16{bottom:292.426667pt;}
.yd2{bottom:293.306667pt;}
.y90{bottom:293.706667pt;}
.ye7{bottom:294.426667pt;}
.y159{bottom:294.826667pt;}
.y56{bottom:295.706667pt;}
.y12c{bottom:300.346667pt;}
.y110{bottom:303.706667pt;}
.ybe{bottom:310.746667pt;}
.y148{bottom:311.066667pt;}
.y75{bottom:311.306667pt;}
.y35{bottom:314.026667pt;}
.yb1{bottom:319.306667pt;}
.yd1{bottom:320.186667pt;}
.y8f{bottom:320.586667pt;}
.ye6{bottom:321.306667pt;}
.y13e{bottom:321.706667pt;}
.y55{bottom:322.586667pt;}
.yf8{bottom:326.826667pt;}
.y158{bottom:332.346667pt;}
.y12b{bottom:337.866667pt;}
.y74{bottom:338.186667pt;}
.y34{bottom:340.826667pt;}
.y10f{bottom:341.226667pt;}
.y15{bottom:342.106667pt;}
.yb0{bottom:346.106667pt;}
.yd0{bottom:346.986667pt;}
.ye5{bottom:348.186667pt;}
.y13d{bottom:348.586667pt;}
.y54{bottom:349.466667pt;}
.yf0{bottom:358.826667pt;}
.y157{bottom:359.226667pt;}
.y8e{bottom:361.706667pt;}
.yf7{bottom:364.346667pt;}
.y12a{bottom:364.746667pt;}
.y73{bottom:364.986667pt;}
.y33{bottom:367.706667pt;}
.y10e{bottom:368.106667pt;}
.yaf{bottom:372.986667pt;}
.ye4{bottom:375.066667pt;}
.y13c{bottom:375.386667pt;}
.y53{bottom:376.346667pt;}
.ycf{bottom:378.506667pt;}
.y14{bottom:382.106667pt;}
.yef{bottom:385.706667pt;}
.y156{bottom:386.106667pt;}
.y72{bottom:391.866667pt;}
.y32{bottom:394.586667pt;}
.y10d{bottom:394.906667pt;}
.yae{bottom:399.866667pt;}
.yf6{bottom:401.866667pt;}
.y129{bottom:402.266667pt;}
.y8d{bottom:402.986667pt;}
.yce{bottom:412.266667pt;}
.ye3{bottom:412.586667pt;}
.y13b{bottom:412.906667pt;}
.y52{bottom:413.866667pt;}
.y71{bottom:418.746667pt;}
.y13{bottom:422.026667pt;}
.y155{bottom:423.626667pt;}
.yad{bottom:426.666667pt;}
.yf5{bottom:428.746667pt;}
.y128{bottom:429.146667pt;}
.y31{bottom:432.106667pt;}
.y10c{bottom:432.426667pt;}
.ye2{bottom:439.386667pt;}
.y13a{bottom:439.786667pt;}
.y8c{bottom:440.506667pt;}
.y51{bottom:440.666667pt;}
.y70{bottom:445.546667pt;}
.ycd{bottom:449.786667pt;}
.y154{bottom:450.426667pt;}
.yac{bottom:453.546667pt;}
.yf4{bottom:455.626667pt;}
.y15f{bottom:455.946667pt;}
.y30{bottom:458.906667pt;}
.y10b{bottom:459.306667pt;}
.y12{bottom:462.026667pt;}
.ye1{bottom:466.266667pt;}
.y127{bottom:466.666667pt;}
.y8b{bottom:467.306667pt;}
.y50{bottom:467.546667pt;}
.y6f{bottom:472.426667pt;}
.y153{bottom:477.306667pt;}
.ycc{bottom:480.346667pt;}
.yab{bottom:480.426667pt;}
.yf3{bottom:482.426667pt;}
.y2f{bottom:485.786667pt;}
.y10a{bottom:486.186667pt;}
.y2c{bottom:487.546667pt;}
.ye0{bottom:493.146667pt;}
.y126{bottom:493.466667pt;}
.y8a{bottom:494.186667pt;}
.y4f{bottom:494.426667pt;}
.ycb{bottom:494.986667pt;}
.y6e{bottom:499.306667pt;}
.y11{bottom:501.946667pt;}
.y152{bottom:504.186667pt;}
.yaa{bottom:507.306667pt;}
.yf2{bottom:509.306667pt;}
.yca{bottom:509.626667pt;}
.y2e{bottom:512.666667pt;}
.y109{bottom:513.066667pt;}
.ydf{bottom:519.946667pt;}
.y125{bottom:520.346667pt;}
.y89{bottom:521.066667pt;}
.y4e{bottom:521.226667pt;}
.yc9{bottom:524.266667pt;}
.y2b{bottom:528.826667pt;}
.y139{bottom:530.986667pt;}
.ya9{bottom:534.106667pt;}
.yf1{bottom:536.186667pt;}
.y6d{bottom:537.946667pt;}
.y2d{bottom:539.466667pt;}
.y108{bottom:539.866667pt;}
.y151{bottom:541.706667pt;}
.yde{bottom:546.826667pt;}
.y147{bottom:547.226667pt;}
.yc8{bottom:547.786667pt;}
.y88{bottom:547.946667pt;}
.y4d{bottom:548.106667pt;}
.y10{bottom:551.706667pt;}
.y124{bottom:557.866667pt;}
.ya8{bottom:564.106667pt;}
.y2a{bottom:566.346667pt;}
.y150{bottom:568.506667pt;}
.ydd{bottom:573.733333pt;}
.y87{bottom:574.773333pt;}
.y6c{bottom:576.773333pt;}
.y107{bottom:577.413333pt;}
.y123{bottom:584.773333pt;}
.y4c{bottom:586.853333pt;}
.yf{bottom:590.853333pt;}
.y29{bottom:593.253333pt;}
.ya7{bottom:594.133333pt;}
.y14f{bottom:595.413333pt;}
.ydc{bottom:600.533333pt;}
.y86{bottom:604.293333pt;}
.ya6{bottom:608.773333pt;}
.y122{bottom:611.573333pt;}
.y85{bottom:612.373333pt;}
.y6b{bottom:614.293333pt;}
.y28{bottom:620.133333pt;}
.y138{bottom:622.293333pt;}
.ybd{bottom:627.413333pt;}
.y4b{bottom:629.173333pt;}
.ye{bottom:629.973333pt;}
.y106{bottom:631.173333pt;}
.yd{bottom:635.333333pt;}
.ya5{bottom:635.653333pt;}
.y146{bottom:638.453333pt;}
.y6a{bottom:641.173333pt;}
.y27{bottom:646.933333pt;}
.y121{bottom:649.173333pt;}
.ybc{bottom:654.293333pt;}
.y84{bottom:654.933333pt;}
.y14e{bottom:659.813333pt;}
.ya4{bottom:662.533333pt;}
.y69{bottom:668.053333pt;}
.y105{bottom:668.693333pt;}
.yc{bottom:669.013333pt;}
.y4a{bottom:670.453333pt;}
.y26{bottom:673.813333pt;}
.y120{bottom:675.973333pt;}
.ybb{bottom:681.173333pt;}
.y83{bottom:681.813333pt;}
.y137{bottom:686.693333pt;}
.ya3{bottom:689.333333pt;}
.y68{bottom:694.853333pt;}
.y104{bottom:695.493333pt;}
.y25{bottom:700.693333pt;}
.y11f{bottom:702.853333pt;}
.y49{bottom:707.973333pt;}
.yb{bottom:708.053333pt;}
.y82{bottom:708.613333pt;}
.ya{bottom:713.413333pt;}
.y136{bottom:713.493333pt;}
.ya2{bottom:716.213333pt;}
.ydb{bottom:718.693333pt;}
.y67{bottom:721.733333pt;}
.y24{bottom:727.493333pt;}
.y145{bottom:729.733333pt;}
.y103{bottom:733.013333pt;}
.y48{bottom:734.853333pt;}
.y81{bottom:735.493333pt;}
.y11e{bottom:740.373333pt;}
.ya1{bottom:743.093333pt;}
.yda{bottom:745.493333pt;}
.y66{bottom:748.613333pt;}
.y14d{bottom:751.013333pt;}
.y23{bottom:754.373333pt;}
.y9{bottom:757.733333pt;}
.y102{bottom:759.893333pt;}
.y47{bottom:761.733333pt;}
.y80{bottom:762.373333pt;}
.y11d{bottom:767.253333pt;}
.ya0{bottom:769.893333pt;}
.yd9{bottom:772.373333pt;}
.y65{bottom:775.413333pt;}
.y14c{bottom:777.893333pt;}
.y22{bottom:781.253333pt;}
.y101{bottom:786.773333pt;}
.yba{bottom:788.533333pt;}
.y7f{bottom:789.173333pt;}
.y11c{bottom:794.053333pt;}
.y9f{bottom:796.773333pt;}
.y8{bottom:796.853333pt;}
.y46{bottom:799.253333pt;}
.y7{bottom:802.213333pt;}
.y64{bottom:802.293333pt;}
.y135{bottom:804.773333pt;}
.y21{bottom:808.053333pt;}
.yb9{bottom:815.413333pt;}
.y9e{bottom:823.653333pt;}
.y100{bottom:824.293333pt;}
.y45{bottom:826.053333pt;}
.y7e{bottom:827.893333pt;}
.y63{bottom:829.173333pt;}
.y11b{bottom:831.573333pt;}
.y20{bottom:834.933333pt;}
.y6{bottom:846.533333pt;}
.y9d{bottom:850.453333pt;}
.yff{bottom:851.093333pt;}
.y5{bottom:851.893333pt;}
.y44{bottom:852.933333pt;}
.y62{bottom:856.053333pt;}
.y11a{bottom:858.453333pt;}
.y1f{bottom:861.813333pt;}
.y7d{bottom:867.813333pt;}
.y134{bottom:869.093333pt;}
.y9c{bottom:877.333333pt;}
.yfe{bottom:877.973333pt;}
.y43{bottom:879.813333pt;}
.y61{bottom:882.853333pt;}
.y119{bottom:885.333333pt;}
.y1e{bottom:888.693333pt;}
.y133{bottom:895.973333pt;}
.y4{bottom:896.213333pt;}
.y9a{bottom:904.213333pt;}
.y42{bottom:906.613333pt;}
.y60{bottom:909.733333pt;}
.y1d{bottom:915.493333pt;}
.y118{bottom:922.853333pt;}
.y99{bottom:931.093333pt;}
.y41{bottom:933.493333pt;}
.y3{bottom:935.013333pt;}
.y5f{bottom:936.613333pt;}
.y1c{bottom:942.373333pt;}
.y117{bottom:949.680000pt;}
.y97{bottom:958.640000pt;}
.y40{bottom:960.400000pt;}
.y1b{bottom:969.280000pt;}
.y5e{bottom:975.280000pt;}
.y2{bottom:976.160000pt;}
.y15e{bottom:976.560000pt;}
.y3f{bottom:987.200000pt;}
.y96{bottom:1002.000000pt;}
.y1{bottom:1010.320000pt;}
.y3e{bottom:1014.080000pt;}
.y95{bottom:1016.640000pt;}
.hf{height:26.800000pt;}
.h10{height:26.826667pt;}
.h11{height:26.880000pt;}
.h12{height:36.445312pt;}
.h6{height:42.331406pt;}
.he{height:47.742188pt;}
.h8{height:48.593750pt;}
.hd{height:49.148438pt;}
.h3{height:58.245469pt;}
.ha{height:58.678906pt;}
.h4{height:59.961094pt;}
.h7{height:63.656250pt;}
.h5{height:63.771406pt;}
.h9{height:65.531250pt;}
.hb{height:75.735625pt;}
.h2{height:76.343906pt;}
.hc{height:90.565469pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:170.426667pt;}
.w4{width:188.720000pt;}
.w6{width:207.146667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:8.880000pt;}
.x16{left:12.320000pt;}
.x15{left:16.080000pt;}
.x12{left:18.480000pt;}
.x18{left:19.760000pt;}
.x11{left:23.600000pt;}
.xf{left:25.600000pt;}
.x17{left:28.080000pt;}
.x13{left:29.360000pt;}
.x1b{left:31.280000pt;}
.x14{left:32.400000pt;}
.x10{left:34.640000pt;}
.x19{left:39.360000pt;}
.xa{left:51.066667pt;}
.xe{left:52.266667pt;}
.x1a{left:55.946667pt;}
.x5{left:67.119976pt;}
.x4{left:74.559976pt;}
.x2{left:81.999976pt;}
.xc{left:85.946667pt;}
.x3{left:89.439988pt;}
.x8{left:94.240000pt;}
.x1{left:113.466655pt;}
.x1d{left:145.466655pt;}
.x9{left:302.186667pt;}
.x6{left:330.373322pt;}
.x7{left:440.853322pt;}
.xb{left:472.613333pt;}
.x1c{left:680.399988pt;}
}




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