
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_c9125810dc0d10ca27d3cec0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a19ae0fca0d995cf56146fd3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_24fc8ad7228b9f912fda1c19.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_59abd1a41da9d0410e1c0bff.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_ea5141027e26d2bdee0c7c38.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_09e51745c5ee05ea4257cd1b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_352ffdd87c610aa13f59154a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsd{letter-spacing:-0.186600px;}
.ls1b{letter-spacing:-0.178800px;}
.lsa{letter-spacing:-0.156000px;}
.ls17{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls1c{letter-spacing:-0.007560px;}
.ls9{letter-spacing:-0.002400px;}
.ls5{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.023040px;}
.ls13{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.060480px;}
.ls11{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls18{letter-spacing:0.068400px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.098400px;}
.ls16{letter-spacing:0.113400px;}
.ls6{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:47.726640px;}
.ls12{letter-spacing:63.566640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.453600px;}
.ws9{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.324800px;}
.wsf{word-spacing:-13.294800px;}
.wsb{word-spacing:-13.275360px;}
.ws5{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.218840px;}
.wse{word-spacing:-13.072800px;}
.ws4{word-spacing:-13.070400px;}
.ws10{word-spacing:-13.047600px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.wsa{word-spacing:0.000000px;}
.ws8{word-spacing:4.304880px;}
._7{margin-left:-4.090801px;}
._6{margin-left:-2.825400px;}
._0{margin-left:-1.140000px;}
._4{width:1.258680px;}
._13{width:2.280960px;}
._3{width:3.284520px;}
._5{width:5.006946px;}
._8{width:6.293515px;}
._c{width:7.394760px;}
._a{width:8.837640px;}
._b{width:10.581120px;}
._9{width:11.784840px;}
._15{width:14.756160px;}
._17{width:15.779040px;}
._16{width:16.953840px;}
._18{width:18.527880px;}
._d{width:20.741400px;}
._10{width:26.212320px;}
._2{width:32.458792px;}
._1{width:33.720012px;}
._e{width:64.328400px;}
._11{width:170.139600px;}
._14{width:178.977240px;}
._12{width:207.834840px;}
._f{width:312.383520px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y89{bottom:7.830000px;}
.y8c{bottom:7.920000px;}
.yba{bottom:12.330000px;}
.yce{bottom:12.360000px;}
.yd0{bottom:16.830000px;}
.yc9{bottom:16.860000px;}
.yda{bottom:16.920000px;}
.yb3{bottom:25.470000px;}
.ycc{bottom:29.910000px;}
.y94{bottom:29.970000px;}
.y8b{bottom:30.000000px;}
.ycd{bottom:34.410000px;}
.yb9{bottom:34.470000px;}
.yc8{bottom:38.910000px;}
.yc1{bottom:38.970000px;}
.y93{bottom:52.020000px;}
.y9e{bottom:52.050000px;}
.y98{bottom:52.110000px;}
.yb8{bottom:56.520000px;}
.yc0{bottom:61.020000px;}
.yc7{bottom:61.050000px;}
.yd9{bottom:61.110000px;}
.y2{bottom:73.380000px;}
.ya9{bottom:74.070000px;}
.ycb{bottom:74.100000px;}
.y92{bottom:74.160000px;}
.y2a{bottom:74.190000px;}
.yb7{bottom:78.570000px;}
.ydc{bottom:83.070000px;}
.yc6{bottom:83.100000px;}
.ybf{bottom:83.160000px;}
.yca{bottom:96.150000px;}
.y91{bottom:96.210000px;}
.y9d{bottom:96.240000px;}
.yc5{bottom:100.650000px;}
.yb6{bottom:100.710000px;}
.y1{bottom:101.640000px;}
.ybe{bottom:105.210000px;}
.y90{bottom:118.260000px;}
.y9c{bottom:118.290000px;}
.y97{bottom:118.350000px;}
.y13d{bottom:121.440000px;}
.yb5{bottom:122.760000px;}
.yc4{bottom:122.790000px;}
.yd8{bottom:122.850000px;}
.y112{bottom:126.930000px;}
.y13c{bottom:139.080000px;}
.yc3{bottom:140.340000px;}
.y8f{bottom:140.400000px;}
.y9b{bottom:140.430000px;}
.y5b{bottom:143.130000px;}
.ybd{bottom:144.900000px;}
.y28{bottom:157.440000px;}
.y8e{bottom:162.450000px;}
.y9a{bottom:162.480000px;}
.y96{bottom:162.540000px;}
.y111{bottom:162.570000px;}
.y13b{bottom:165.630000px;}
.ya4{bottom:168.780000px;}
.yd6{bottom:173.190000px;}
.y27{bottom:175.080000px;}
.y5a{bottom:178.680000px;}
.y110{bottom:180.120000px;}
.ybc{bottom:184.590000px;}
.ya3{bottom:186.330000px;}
.yd5{bottom:190.830000px;}
.y13a{bottom:192.180000px;}
.yb1{bottom:192.270000px;}
.y26{bottom:192.630000px;}
.y59{bottom:196.320000px;}
.y10f{bottom:197.670000px;}
.ye2{bottom:198.030000px;}
.ya2{bottom:203.970000px;}
.yd4{bottom:208.380000px;}
.y139{bottom:209.820000px;}
.y25{bottom:210.180000px;}
.y84{bottom:213.420000px;}
.y58{bottom:213.870000px;}
.y10e{bottom:215.310000px;}
.ye1{bottom:215.580000px;}
.ya1{bottom:221.520000px;}
.yd3{bottom:225.930000px;}
.y24{bottom:227.820000px;}
.yb0{bottom:230.430000px;}
.y83{bottom:230.970000px;}
.y10d{bottom:232.860000px;}
.ye0{bottom:233.130000px;}
.y138{bottom:236.370000px;}
.ya0{bottom:239.610000px;}
.yd2{bottom:243.570000px;}
.y23{bottom:245.370000px;}
.yaf{bottom:248.070000px;}
.y57{bottom:249.510000px;}
.y10c{bottom:250.500000px;}
.ydf{bottom:250.770000px;}
.y9f{bottom:257.160000px;}
.yd1{bottom:261.660000px;}
.y137{bottom:263.010000px;}
.yae{bottom:265.620000px;}
.y82{bottom:266.610000px;}
.y56{bottom:267.060000px;}
.y10b{bottom:268.050000px;}
.yde{bottom:268.320000px;}
.y22{bottom:272.280000px;}
.ycf{bottom:279.210000px;}
.y136{bottom:280.560000px;}
.yad{bottom:283.260000px;}
.y81{bottom:284.160000px;}
.y55{bottom:284.610000px;}
.y10a{bottom:285.600000px;}
.ydd{bottom:301.260000px;}
.yac{bottom:301.350000px;}
.y80{bottom:301.710000px;}
.y54{bottom:302.250000px;}
.y109{bottom:303.240000px;}
.y135{bottom:307.110000px;}
.yab{bottom:318.900000px;}
.y7f{bottom:319.350000px;}
.y53{bottom:319.800000px;}
.y21{bottom:320.880000px;}
.y134{bottom:324.750000px;}
.y108{bottom:330.150000px;}
.y52{bottom:337.440000px;}
.y133{bottom:342.300000px;}
.y7e{bottom:354.900000px;}
.y20{bottom:357.870000px;}
.y132{bottom:368.940000px;}
.y7d{bottom:372.540000px;}
.y51{bottom:372.990000px;}
.y1f{bottom:375.510000px;}
.y107{bottom:378.390000px;}
.y131{bottom:386.490000px;}
.y7c{bottom:390.090000px;}
.y50{bottom:390.540000px;}
.y1e{bottom:393.060000px;}
.y106{bottom:395.940000px;}
.y7b{bottom:407.640000px;}
.y4f{bottom:408.180000px;}
.y1d{bottom:410.700000px;}
.y130{bottom:413.040000px;}
.y105{bottom:413.580000px;}
.y7a{bottom:425.280000px;}
.y4e{bottom:425.730000px;}
.y1c{bottom:428.250000px;}
.y12f{bottom:430.680000px;}
.y104{bottom:431.130000px;}
.y99{bottom:439.140000px;}
.y79{bottom:442.830000px;}
.y4d{bottom:443.370000px;}
.y1b{bottom:445.800000px;}
.y103{bottom:448.770000px;}
.y12e{bottom:457.230000px;}
.y4c{bottom:460.920000px;}
.yc2{bottom:461.190000px;}
.y1a{bottom:463.440000px;}
.y102{bottom:466.320000px;}
.y12d{bottom:474.900000px;}
.y4b{bottom:478.500000px;}
.y19{bottom:481.020000px;}
.ydb{bottom:483.270000px;}
.y101{bottom:483.900000px;}
.y78{bottom:496.050000px;}
.y18{bottom:498.660000px;}
.yaa{bottom:500.820000px;}
.y12c{bottom:501.450000px;}
.y100{bottom:501.540000px;}
.y77{bottom:513.600000px;}
.y4a{bottom:514.140000px;}
.y17{bottom:516.210000px;}
.y12b{bottom:519.000000px;}
.yff{bottom:519.090000px;}
.y76{bottom:531.240000px;}
.y49{bottom:531.690000px;}
.y16{bottom:533.760000px;}
.yfe{bottom:536.730000px;}
.y12a{bottom:545.640000px;}
.y75{bottom:548.790000px;}
.y48{bottom:549.330000px;}
.y15{bottom:551.400000px;}
.y74{bottom:566.340000px;}
.y47{bottom:566.880000px;}
.y14{bottom:568.950000px;}
.yfd{bottom:572.280000px;}
.y129{bottom:572.550000px;}
.y73{bottom:583.980000px;}
.y46{bottom:584.430000px;}
.y13{bottom:586.590000px;}
.yfc{bottom:589.830000px;}
.y45{bottom:602.070000px;}
.y12{bottom:604.140000px;}
.yfb{bottom:607.470000px;}
.y72{bottom:619.530000px;}
.y44{bottom:619.620000px;}
.y128{bottom:620.790000px;}
.y95{bottom:621.060000px;}
.y11{bottom:621.690000px;}
.yfa{bottom:625.020000px;}
.y71{bottom:637.170000px;}
.y127{bottom:638.340000px;}
.y10{bottom:639.330000px;}
.yf9{bottom:642.660000px;}
.ybb{bottom:643.110000px;}
.y70{bottom:654.720000px;}
.y43{bottom:655.260000px;}
.yf{bottom:656.880000px;}
.yf8{bottom:660.210000px;}
.yd7{bottom:665.160000px;}
.y126{bottom:665.250000px;}
.y6f{bottom:672.270000px;}
.y42{bottom:672.810000px;}
.yf7{bottom:677.760000px;}
.ya8{bottom:682.800000px;}
.ye{bottom:683.790000px;}
.y6e{bottom:689.910000px;}
.y41{bottom:690.360000px;}
.yf6{bottom:695.400000px;}
.y125{bottom:702.330000px;}
.y6d{bottom:707.460000px;}
.y40{bottom:708.000000px;}
.yf5{bottom:712.950000px;}
.y3f{bottom:725.550000px;}
.y124{bottom:729.240000px;}
.yf4{bottom:730.590000px;}
.yd{bottom:732.030000px;}
.y6c{bottom:734.370000px;}
.y3e{bottom:743.190000px;}
.yf3{bottom:748.140000px;}
.y3d{bottom:760.740000px;}
.yf2{bottom:765.690000px;}
.y123{bottom:766.230000px;}
.yc{bottom:767.850000px;}
.y3c{bottom:778.290000px;}
.y6b{bottom:782.610000px;}
.yf1{bottom:783.330000px;}
.y122{bottom:783.780000px;}
.y3b{bottom:795.930000px;}
.yf0{bottom:800.880000px;}
.y6a{bottom:801.060000px;}
.y8d{bottom:803.040000px;}
.yb{bottom:803.850000px;}
.y121{bottom:810.690000px;}
.y3a{bottom:813.480000px;}
.y69{bottom:819.420000px;}
.yef{bottom:836.520000px;}
.y39{bottom:840.030000px;}
.ya{bottom:843.630000px;}
.yb4{bottom:847.140000px;}
.y120{bottom:848.040000px;}
.yee{bottom:854.070000px;}
.y68{bottom:855.870000px;}
.y9{bottom:861.630000px;}
.ya7{bottom:864.690000px;}
.yed{bottom:871.620000px;}
.y67{bottom:873.510000px;}
.y38{bottom:875.670000px;}
.y8{bottom:875.850000px;}
.yec{bottom:889.260000px;}
.y37{bottom:893.220000px;}
.y11f{bottom:896.370000px;}
.y7{bottom:897.630000px;}
.y66{bottom:900.420000px;}
.yeb{bottom:906.810000px;}
.y36{bottom:910.860000px;}
.y11e{bottom:913.920000px;}
.yea{bottom:924.450000px;}
.y35{bottom:928.410000px;}
.y6{bottom:929.940000px;}
.y11d{bottom:932.370000px;}
.y65{bottom:937.410000px;}
.y5{bottom:949.290000px;}
.y11c{bottom:949.920000px;}
.y64{bottom:954.960000px;}
.ye9{bottom:960.000000px;}
.y34{bottom:963.960000px;}
.y11b{bottom:968.370000px;}
.y63{bottom:972.600000px;}
.ye8{bottom:977.550000px;}
.y33{bottom:981.600000px;}
.y8a{bottom:984.930000px;}
.y11a{bottom:985.920000px;}
.y4{bottom:987.630000px;}
.ye7{bottom:995.190000px;}
.y32{bottom:999.150000px;}
.y119{bottom:1004.370000px;}
.y62{bottom:1008.150000px;}
.y3{bottom:1012.320000px;}
.ye6{bottom:1012.770000px;}
.y31{bottom:1016.820000px;}
.y118{bottom:1021.950000px;}
.y61{bottom:1025.820000px;}
.yb2{bottom:1029.060000px;}
.ye5{bottom:1030.320000px;}
.y30{bottom:1034.370000px;}
.y88{bottom:1034.460000px;}
.y117{bottom:1039.500000px;}
.y60{bottom:1043.370000px;}
.ya6{bottom:1046.700000px;}
.ye4{bottom:1047.960000px;}
.y2f{bottom:1051.920000px;}
.y116{bottom:1057.950000px;}
.y5f{bottom:1060.920000px;}
.ye3{bottom:1065.510000px;}
.y2e{bottom:1069.560000px;}
.ya5{bottom:1073.970000px;}
.y115{bottom:1075.500000px;}
.y5e{bottom:1078.560000px;}
.y87{bottom:1083.150000px;}
.y2d{bottom:1087.110000px;}
.y5d{bottom:1096.110000px;}
.y86{bottom:1100.700000px;}
.y114{bottom:1111.950000px;}
.y5c{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y85{bottom:1127.610000px;}
.y113{bottom:1138.860000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h15{height:26.640000px;}
.h2{height:30.022383px;}
.h7{height:37.191445px;}
.h3{height:38.100586px;}
.h16{height:44.190000px;}
.h10{height:48.720000px;}
.h9{height:50.902383px;}
.h8{height:52.311445px;}
.h6{height:55.779258px;}
.hc{height:57.323320px;}
.ha{height:60.960938px;}
.hd{height:61.793886px;}
.hb{height:62.585859px;}
.he{height:68.582109px;}
.h4{height:71.019492px;}
.h5{height:72.985430px;}
.h14{height:74.953125px;}
.h11{height:181.170000px;}
.h13{height:181.200000px;}
.h12{height:181.260000px;}
.h18{height:181.290000px;}
.h17{height:203.310000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.we{width:89.550000px;}
.w4{width:91.290000px;}
.wa{width:93.270000px;}
.w5{width:105.390000px;}
.wd{width:117.630000px;}
.w12{width:119.520000px;}
.w7{width:128.820000px;}
.w11{width:129.000000px;}
.wb{width:137.970000px;}
.wf{width:144.390000px;}
.w10{width:151.830000px;}
.w6{width:164.160000px;}
.w8{width:203.850000px;}
.wc{width:637.350000px;}
.w3{width:696.570000px;}
.w9{width:731.220000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.650000px;}
.x1{left:68.040000px;}
.xb{left:81.000000px;}
.x4{left:95.039987px;}
.x5{left:98.370000px;}
.x16{left:111.239987px;}
.x15{left:122.039987px;}
.x11{left:159.120000px;}
.xc{left:175.080000px;}
.x7{left:190.380000px;}
.x2{left:202.799987px;}
.x8{left:296.490000px;}
.x12{left:304.230000px;}
.xd{left:313.770000px;}
.x13{left:456.780000px;}
.x9{left:461.460000px;}
.xe{left:478.740000px;}
.x14{left:586.590000px;}
.xa{left:591.090000px;}
.xf{left:608.370000px;}
.x10{left:706.830000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls1b{letter-spacing:-0.158933pt;}
.lsa{letter-spacing:-0.138667pt;}
.ls17{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls1c{letter-spacing:-0.006720pt;}
.ls9{letter-spacing:-0.002133pt;}
.ls5{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.020480pt;}
.ls13{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.053760pt;}
.ls11{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls18{letter-spacing:0.060800pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.087467pt;}
.ls16{letter-spacing:0.100800pt;}
.ls6{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls12{letter-spacing:56.503680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.403200pt;}
.ws9{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.844267pt;}
.wsf{word-spacing:-11.817600pt;}
.wsb{word-spacing:-11.800320pt;}
.ws5{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.750080pt;}
.wse{word-spacing:-11.620267pt;}
.ws4{word-spacing:-11.618133pt;}
.ws10{word-spacing:-11.597867pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.wsa{word-spacing:0.000000pt;}
.ws8{word-spacing:3.826560pt;}
._7{margin-left:-3.636267pt;}
._6{margin-left:-2.511466pt;}
._0{margin-left:-1.013333pt;}
._4{width:1.118827pt;}
._13{width:2.027520pt;}
._3{width:2.919573pt;}
._5{width:4.450619pt;}
._8{width:5.594236pt;}
._c{width:6.573120pt;}
._a{width:7.855680pt;}
._b{width:9.405440pt;}
._9{width:10.475414pt;}
._15{width:13.116587pt;}
._17{width:14.025813pt;}
._16{width:15.070080pt;}
._18{width:16.469227pt;}
._d{width:18.436800pt;}
._10{width:23.299840pt;}
._2{width:28.852260pt;}
._1{width:29.973344pt;}
._e{width:57.180800pt;}
._11{width:151.235200pt;}
._14{width:159.090880pt;}
._12{width:184.742080pt;}
._f{width:277.674240pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:6.960000pt;}
.y8c{bottom:7.040000pt;}
.yba{bottom:10.960000pt;}
.yce{bottom:10.986667pt;}
.yd0{bottom:14.960000pt;}
.yc9{bottom:14.986667pt;}
.yda{bottom:15.040000pt;}
.yb3{bottom:22.640000pt;}
.ycc{bottom:26.586667pt;}
.y94{bottom:26.640000pt;}
.y8b{bottom:26.666667pt;}
.ycd{bottom:30.586667pt;}
.yb9{bottom:30.640000pt;}
.yc8{bottom:34.586667pt;}
.yc1{bottom:34.640000pt;}
.y93{bottom:46.240000pt;}
.y9e{bottom:46.266667pt;}
.y98{bottom:46.320000pt;}
.yb8{bottom:50.240000pt;}
.yc0{bottom:54.240000pt;}
.yc7{bottom:54.266667pt;}
.yd9{bottom:54.320000pt;}
.y2{bottom:65.226667pt;}
.ya9{bottom:65.840000pt;}
.ycb{bottom:65.866667pt;}
.y92{bottom:65.920000pt;}
.y2a{bottom:65.946667pt;}
.yb7{bottom:69.840000pt;}
.ydc{bottom:73.840000pt;}
.yc6{bottom:73.866667pt;}
.ybf{bottom:73.920000pt;}
.yca{bottom:85.466667pt;}
.y91{bottom:85.520000pt;}
.y9d{bottom:85.546667pt;}
.yc5{bottom:89.466667pt;}
.yb6{bottom:89.520000pt;}
.y1{bottom:90.346667pt;}
.ybe{bottom:93.520000pt;}
.y90{bottom:105.120000pt;}
.y9c{bottom:105.146667pt;}
.y97{bottom:105.200000pt;}
.y13d{bottom:107.946667pt;}
.yb5{bottom:109.120000pt;}
.yc4{bottom:109.146667pt;}
.yd8{bottom:109.200000pt;}
.y112{bottom:112.826667pt;}
.y13c{bottom:123.626667pt;}
.yc3{bottom:124.746667pt;}
.y8f{bottom:124.800000pt;}
.y9b{bottom:124.826667pt;}
.y5b{bottom:127.226667pt;}
.ybd{bottom:128.800000pt;}
.y28{bottom:139.946667pt;}
.y8e{bottom:144.400000pt;}
.y9a{bottom:144.426667pt;}
.y96{bottom:144.480000pt;}
.y111{bottom:144.506667pt;}
.y13b{bottom:147.226667pt;}
.ya4{bottom:150.026667pt;}
.yd6{bottom:153.946667pt;}
.y27{bottom:155.626667pt;}
.y5a{bottom:158.826667pt;}
.y110{bottom:160.106667pt;}
.ybc{bottom:164.080000pt;}
.ya3{bottom:165.626667pt;}
.yd5{bottom:169.626667pt;}
.y13a{bottom:170.826667pt;}
.yb1{bottom:170.906667pt;}
.y26{bottom:171.226667pt;}
.y59{bottom:174.506667pt;}
.y10f{bottom:175.706667pt;}
.ye2{bottom:176.026667pt;}
.ya2{bottom:181.306667pt;}
.yd4{bottom:185.226667pt;}
.y139{bottom:186.506667pt;}
.y25{bottom:186.826667pt;}
.y84{bottom:189.706667pt;}
.y58{bottom:190.106667pt;}
.y10e{bottom:191.386667pt;}
.ye1{bottom:191.626667pt;}
.ya1{bottom:196.906667pt;}
.yd3{bottom:200.826667pt;}
.y24{bottom:202.506667pt;}
.yb0{bottom:204.826667pt;}
.y83{bottom:205.306667pt;}
.y10d{bottom:206.986667pt;}
.ye0{bottom:207.226667pt;}
.y138{bottom:210.106667pt;}
.ya0{bottom:212.986667pt;}
.yd2{bottom:216.506667pt;}
.y23{bottom:218.106667pt;}
.yaf{bottom:220.506667pt;}
.y57{bottom:221.786667pt;}
.y10c{bottom:222.666667pt;}
.ydf{bottom:222.906667pt;}
.y9f{bottom:228.586667pt;}
.yd1{bottom:232.586667pt;}
.y137{bottom:233.786667pt;}
.yae{bottom:236.106667pt;}
.y82{bottom:236.986667pt;}
.y56{bottom:237.386667pt;}
.y10b{bottom:238.266667pt;}
.yde{bottom:238.506667pt;}
.y22{bottom:242.026667pt;}
.ycf{bottom:248.186667pt;}
.y136{bottom:249.386667pt;}
.yad{bottom:251.786667pt;}
.y81{bottom:252.586667pt;}
.y55{bottom:252.986667pt;}
.y10a{bottom:253.866667pt;}
.ydd{bottom:267.786667pt;}
.yac{bottom:267.866667pt;}
.y80{bottom:268.186667pt;}
.y54{bottom:268.666667pt;}
.y109{bottom:269.546667pt;}
.y135{bottom:272.986667pt;}
.yab{bottom:283.466667pt;}
.y7f{bottom:283.866667pt;}
.y53{bottom:284.266667pt;}
.y21{bottom:285.226667pt;}
.y134{bottom:288.666667pt;}
.y108{bottom:293.466667pt;}
.y52{bottom:299.946667pt;}
.y133{bottom:304.266667pt;}
.y7e{bottom:315.466667pt;}
.y20{bottom:318.106667pt;}
.y132{bottom:327.946667pt;}
.y7d{bottom:331.146667pt;}
.y51{bottom:331.546667pt;}
.y1f{bottom:333.786667pt;}
.y107{bottom:336.346667pt;}
.y131{bottom:343.546667pt;}
.y7c{bottom:346.746667pt;}
.y50{bottom:347.146667pt;}
.y1e{bottom:349.386667pt;}
.y106{bottom:351.946667pt;}
.y7b{bottom:362.346667pt;}
.y4f{bottom:362.826667pt;}
.y1d{bottom:365.066667pt;}
.y130{bottom:367.146667pt;}
.y105{bottom:367.626667pt;}
.y7a{bottom:378.026667pt;}
.y4e{bottom:378.426667pt;}
.y1c{bottom:380.666667pt;}
.y12f{bottom:382.826667pt;}
.y104{bottom:383.226667pt;}
.y99{bottom:390.346667pt;}
.y79{bottom:393.626667pt;}
.y4d{bottom:394.106667pt;}
.y1b{bottom:396.266667pt;}
.y103{bottom:398.906667pt;}
.y12e{bottom:406.426667pt;}
.y4c{bottom:409.706667pt;}
.yc2{bottom:409.946667pt;}
.y1a{bottom:411.946667pt;}
.y102{bottom:414.506667pt;}
.y12d{bottom:422.133333pt;}
.y4b{bottom:425.333333pt;}
.y19{bottom:427.573333pt;}
.ydb{bottom:429.573333pt;}
.y101{bottom:430.133333pt;}
.y78{bottom:440.933333pt;}
.y18{bottom:443.253333pt;}
.yaa{bottom:445.173333pt;}
.y12c{bottom:445.733333pt;}
.y100{bottom:445.813333pt;}
.y77{bottom:456.533333pt;}
.y4a{bottom:457.013333pt;}
.y17{bottom:458.853333pt;}
.y12b{bottom:461.333333pt;}
.yff{bottom:461.413333pt;}
.y76{bottom:472.213333pt;}
.y49{bottom:472.613333pt;}
.y16{bottom:474.453333pt;}
.yfe{bottom:477.093333pt;}
.y12a{bottom:485.013333pt;}
.y75{bottom:487.813333pt;}
.y48{bottom:488.293333pt;}
.y15{bottom:490.133333pt;}
.y74{bottom:503.413333pt;}
.y47{bottom:503.893333pt;}
.y14{bottom:505.733333pt;}
.yfd{bottom:508.693333pt;}
.y129{bottom:508.933333pt;}
.y73{bottom:519.093333pt;}
.y46{bottom:519.493333pt;}
.y13{bottom:521.413333pt;}
.yfc{bottom:524.293333pt;}
.y45{bottom:535.173333pt;}
.y12{bottom:537.013333pt;}
.yfb{bottom:539.973333pt;}
.y72{bottom:550.693333pt;}
.y44{bottom:550.773333pt;}
.y128{bottom:551.813333pt;}
.y95{bottom:552.053333pt;}
.y11{bottom:552.613333pt;}
.yfa{bottom:555.573333pt;}
.y71{bottom:566.373333pt;}
.y127{bottom:567.413333pt;}
.y10{bottom:568.293333pt;}
.yf9{bottom:571.253333pt;}
.ybb{bottom:571.653333pt;}
.y70{bottom:581.973333pt;}
.y43{bottom:582.453333pt;}
.yf{bottom:583.893333pt;}
.yf8{bottom:586.853333pt;}
.yd7{bottom:591.253333pt;}
.y126{bottom:591.333333pt;}
.y6f{bottom:597.573333pt;}
.y42{bottom:598.053333pt;}
.yf7{bottom:602.453333pt;}
.ya8{bottom:606.933333pt;}
.ye{bottom:607.813333pt;}
.y6e{bottom:613.253333pt;}
.y41{bottom:613.653333pt;}
.yf6{bottom:618.133333pt;}
.y125{bottom:624.293333pt;}
.y6d{bottom:628.853333pt;}
.y40{bottom:629.333333pt;}
.yf5{bottom:633.733333pt;}
.y3f{bottom:644.933333pt;}
.y124{bottom:648.213333pt;}
.yf4{bottom:649.413333pt;}
.yd{bottom:650.693333pt;}
.y6c{bottom:652.773333pt;}
.y3e{bottom:660.613333pt;}
.yf3{bottom:665.013333pt;}
.y3d{bottom:676.213333pt;}
.yf2{bottom:680.613333pt;}
.y123{bottom:681.093333pt;}
.yc{bottom:682.533333pt;}
.y3c{bottom:691.813333pt;}
.y6b{bottom:695.653333pt;}
.yf1{bottom:696.293333pt;}
.y122{bottom:696.693333pt;}
.y3b{bottom:707.493333pt;}
.yf0{bottom:711.893333pt;}
.y6a{bottom:712.053333pt;}
.y8d{bottom:713.813333pt;}
.yb{bottom:714.533333pt;}
.y121{bottom:720.613333pt;}
.y3a{bottom:723.093333pt;}
.y69{bottom:728.373333pt;}
.yef{bottom:743.573333pt;}
.y39{bottom:746.693333pt;}
.ya{bottom:749.893333pt;}
.yb4{bottom:753.013333pt;}
.y120{bottom:753.813333pt;}
.yee{bottom:759.173333pt;}
.y68{bottom:760.773333pt;}
.y9{bottom:765.893333pt;}
.ya7{bottom:768.613333pt;}
.yed{bottom:774.773333pt;}
.y67{bottom:776.453333pt;}
.y38{bottom:778.373333pt;}
.y8{bottom:778.533333pt;}
.yec{bottom:790.453333pt;}
.y37{bottom:793.973333pt;}
.y11f{bottom:796.773333pt;}
.y7{bottom:797.893333pt;}
.y66{bottom:800.373333pt;}
.yeb{bottom:806.053333pt;}
.y36{bottom:809.653333pt;}
.y11e{bottom:812.373333pt;}
.yea{bottom:821.733333pt;}
.y35{bottom:825.253333pt;}
.y6{bottom:826.613333pt;}
.y11d{bottom:828.773333pt;}
.y65{bottom:833.253333pt;}
.y5{bottom:843.813333pt;}
.y11c{bottom:844.373333pt;}
.y64{bottom:848.853333pt;}
.ye9{bottom:853.333333pt;}
.y34{bottom:856.853333pt;}
.y11b{bottom:860.773333pt;}
.y63{bottom:864.533333pt;}
.ye8{bottom:868.933333pt;}
.y33{bottom:872.533333pt;}
.y8a{bottom:875.493333pt;}
.y11a{bottom:876.373333pt;}
.y4{bottom:877.893333pt;}
.ye7{bottom:884.613333pt;}
.y32{bottom:888.133333pt;}
.y119{bottom:892.773333pt;}
.y62{bottom:896.133333pt;}
.y3{bottom:899.840000pt;}
.ye6{bottom:900.240000pt;}
.y31{bottom:903.840000pt;}
.y118{bottom:908.400000pt;}
.y61{bottom:911.840000pt;}
.yb2{bottom:914.720000pt;}
.ye5{bottom:915.840000pt;}
.y30{bottom:919.440000pt;}
.y88{bottom:919.520000pt;}
.y117{bottom:924.000000pt;}
.y60{bottom:927.440000pt;}
.ya6{bottom:930.400000pt;}
.ye4{bottom:931.520000pt;}
.y2f{bottom:935.040000pt;}
.y116{bottom:940.400000pt;}
.y5f{bottom:943.040000pt;}
.ye3{bottom:947.120000pt;}
.y2e{bottom:950.720000pt;}
.ya5{bottom:954.640000pt;}
.y115{bottom:956.000000pt;}
.y5e{bottom:958.720000pt;}
.y87{bottom:962.800000pt;}
.y2d{bottom:966.320000pt;}
.y5d{bottom:974.320000pt;}
.y86{bottom:978.400000pt;}
.y114{bottom:988.400000pt;}
.y5c{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y85{bottom:1002.320000pt;}
.y113{bottom:1012.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h15{height:23.680000pt;}
.h2{height:26.686562pt;}
.h7{height:33.059063pt;}
.h3{height:33.867188pt;}
.h16{height:39.280000pt;}
.h10{height:43.306667pt;}
.h9{height:45.246562pt;}
.h8{height:46.499062pt;}
.h6{height:49.581562pt;}
.hc{height:50.954062pt;}
.ha{height:54.187500pt;}
.hd{height:54.927899pt;}
.hb{height:55.631875pt;}
.he{height:60.961875pt;}
.h4{height:63.128437pt;}
.h5{height:64.875937pt;}
.h14{height:66.625000pt;}
.h11{height:161.040000pt;}
.h13{height:161.066667pt;}
.h12{height:161.120000pt;}
.h18{height:161.146667pt;}
.h17{height:180.720000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.we{width:79.600000pt;}
.w4{width:81.146667pt;}
.wa{width:82.906667pt;}
.w5{width:93.680000pt;}
.wd{width:104.560000pt;}
.w12{width:106.240000pt;}
.w7{width:114.506667pt;}
.w11{width:114.666667pt;}
.wb{width:122.640000pt;}
.wf{width:128.346667pt;}
.w10{width:134.960000pt;}
.w6{width:145.920000pt;}
.w8{width:181.200000pt;}
.wc{width:566.533333pt;}
.w3{width:619.173333pt;}
.w9{width:649.973333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.800000pt;}
.x1{left:60.480000pt;}
.xb{left:72.000000pt;}
.x4{left:84.479988pt;}
.x5{left:87.440000pt;}
.x16{left:98.879988pt;}
.x15{left:108.479988pt;}
.x11{left:141.440000pt;}
.xc{left:155.626667pt;}
.x7{left:169.226667pt;}
.x2{left:180.266655pt;}
.x8{left:263.546667pt;}
.x12{left:270.426667pt;}
.xd{left:278.906667pt;}
.x13{left:406.026667pt;}
.x9{left:410.186667pt;}
.xe{left:425.546667pt;}
.x14{left:521.413333pt;}
.xa{left:525.413333pt;}
.xf{left:540.773333pt;}
.x10{left:628.293333pt;}
.x3{left:704.053322pt;}
}




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