
    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_beb0230bdb3b9a8daf9dc6da.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_fd6b16ec349b456e5515cc86.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856445;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_16ee73bc91fc4ba5f2ffaa7a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.986816;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_f922892d3d16b01c97f575a1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_1089fe2fce473d4e88f141e1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.700195;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_344bf757421ba5407807b071.woff')format("woff");}.ff6{font-family:ff6;line-height:0.869141;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_327e029d53fbb2d28f7cec1e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.982910;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_7c78e66522b6d8de6a9102c2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_4d37cc700954150b653b77d6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.089355;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7b2f404226adaa5bb87a160a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_46d0b4ab73bf6b3b425e568c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.986816;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:-81.666600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:39.600000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:17.172000px;}
.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;}
}
.ws27{word-spacing:-18.216000px;}
.ws2{word-spacing:-14.904000px;}
.ws3{word-spacing:-14.796000px;}
.ws53{word-spacing:-7.920000px;}
.ws2f{word-spacing:-5.214000px;}
.ws4f{word-spacing:-4.020000px;}
.ws4b{word-spacing:-3.900000px;}
.ws37{word-spacing:-3.366000px;}
.ws56{word-spacing:-3.120000px;}
.ws7{word-spacing:-2.646000px;}
.ws17{word-spacing:-2.640000px;}
.ws40{word-spacing:-2.580000px;}
.ws3e{word-spacing:-2.340000px;}
.ws16{word-spacing:-1.980000px;}
.wsb{word-spacing:-1.914000px;}
.ws49{word-spacing:-1.680000px;}
.ws52{word-spacing:-1.380000px;}
.ws12{word-spacing:-1.122000px;}
.ws3f{word-spacing:-0.660000px;}
.ws1{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws43{word-spacing:0.600000px;}
.ws4a{word-spacing:0.840000px;}
.ws20{word-spacing:1.452000px;}
.ws4e{word-spacing:1.800000px;}
.ws21{word-spacing:2.046000px;}
.ws41{word-spacing:2.520000px;}
.ws4c{word-spacing:2.640000px;}
.ws13{word-spacing:3.102000px;}
.ws50{word-spacing:3.180000px;}
.ws23{word-spacing:3.696000px;}
.ws1b{word-spacing:3.960000px;}
.ws45{word-spacing:5.880000px;}
.ws11{word-spacing:6.336000px;}
.ws3a{word-spacing:6.420000px;}
.ws55{word-spacing:6.540000px;}
.wsf{word-spacing:6.930000px;}
.ws4d{word-spacing:7.680000px;}
.ws44{word-spacing:9.300000px;}
.ws26{word-spacing:10.164000px;}
.ws6{word-spacing:10.206000px;}
.ws5{word-spacing:10.314000px;}
.ws14{word-spacing:10.956000px;}
.ws46{word-spacing:11.220000px;}
.ws54{word-spacing:11.760000px;}
.ws1c{word-spacing:11.814000px;}
.ws30{word-spacing:12.012000px;}
.ws2e{word-spacing:12.210000px;}
.ws51{word-spacing:12.840000px;}
.ws2d{word-spacing:13.926000px;}
.ws3d{word-spacing:14.760000px;}
.ws3c{word-spacing:16.080000px;}
.ws33{word-spacing:16.236000px;}
.ws34{word-spacing:16.302000px;}
.ws47{word-spacing:16.440000px;}
.ws10{word-spacing:16.632000px;}
.ws24{word-spacing:17.292000px;}
.ws36{word-spacing:17.754000px;}
.ws35{word-spacing:17.886000px;}
.wsd{word-spacing:18.084000px;}
.ws42{word-spacing:18.300000px;}
.ws38{word-spacing:18.960000px;}
.ws31{word-spacing:19.338000px;}
.ws1f{word-spacing:21.318000px;}
.ws39{word-spacing:21.720000px;}
.ws32{word-spacing:23.364000px;}
.ws48{word-spacing:23.460000px;}
.ws22{word-spacing:24.882000px;}
.ws2c{word-spacing:28.380000px;}
.ws25{word-spacing:35.640000px;}
.ws3b{word-spacing:36.660000px;}
.ws9{word-spacing:38.082000px;}
.wse{word-spacing:42.966000px;}
.ws15{word-spacing:43.758000px;}
.ws2a{word-spacing:44.682000px;}
.ws1a{word-spacing:49.368000px;}
.ws1e{word-spacing:51.942000px;}
.ws2b{word-spacing:53.196000px;}
.wsa{word-spacing:55.770000px;}
.ws18{word-spacing:62.172000px;}
.ws1d{word-spacing:73.656000px;}
.ws19{word-spacing:85.734000px;}
.wsc{word-spacing:96.690000px;}
.ws8{word-spacing:100.848000px;}
.ws28{word-spacing:188.720400px;}
.ws0{word-spacing:373.471200px;}
.ws29{word-spacing:784.410000px;}
._7{margin-left:-65.664000px;}
._2d{margin-left:-14.538000px;}
._19{margin-left:-10.560000px;}
._2b{margin-left:-8.316000px;}
._6{margin-left:-7.095600px;}
._22{margin-left:-5.835959px;}
._e{margin-left:-4.779959px;}
._0{margin-left:-3.486000px;}
._c{margin-left:-2.295241px;}
._5{margin-left:-1.275241px;}
._1{width:1.587241px;}
._8{width:3.510841px;}
._f{width:5.014441px;}
._18{width:6.256800px;}
._b{width:7.662600px;}
._31{width:9.090000px;}
._30{width:10.248000px;}
._13{width:11.655600px;}
._17{width:13.147200px;}
._12{width:14.500200px;}
._15{width:16.168441px;}
._32{width:18.370800px;}
._16{width:19.879200px;}
._1b{width:21.042359px;}
._1a{width:22.940041px;}
._4{width:24.576000px;}
._a{width:25.713959px;}
._33{width:26.826483px;}
._2e{width:28.609559px;}
._11{width:29.757841px;}
._20{width:31.587600px;}
._1f{width:32.615641px;}
._10{width:34.405800px;}
._1e{width:37.415400px;}
._2c{width:40.680000px;}
._21{width:42.141000px;}
._1c{width:43.358883px;}
._14{width:45.295800px;}
._d{width:46.569600px;}
._2f{width:57.449159px;}
._1d{width:85.258800px;}
._24{width:117.795241px;}
._9{width:146.429041px;}
._2{width:153.107843px;}
._2a{width:179.652000px;}
._3{width:183.490826px;}
._28{width:220.689241px;}
._27{width:230.934000px;}
._29{width:321.207241px;}
._25{width:380.675159px;}
._26{width:389.743200px;}
._23{width:430.914000px;}
.fc4{color:transparent;}
.fc2{color:rgb(54,108,190);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:62.872800px;}
.fs7{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:56.880900px;}
.y23{bottom:73.080900px;}
.y3{bottom:81.772500px;}
.yca{bottom:143.200350px;}
.yd{bottom:144.050400px;}
.y8b{bottom:145.083750px;}
.yc{bottom:160.250400px;}
.yc9{bottom:161.950350px;}
.yc8{bottom:180.700350px;}
.y8a{bottom:180.839250px;}
.y76{bottom:194.270250px;}
.yc7{bottom:199.450350px;}
.y5e{bottom:208.273500px;}
.y75{bottom:213.014250px;}
.y89{bottom:216.594750px;}
.yc6{bottom:218.200350px;}
.y5d{bottom:227.017500px;}
.y74{bottom:231.758250px;}
.y88{bottom:235.338750px;}
.yc5{bottom:236.950350px;}
.y5c{bottom:245.761500px;}
.y73{bottom:250.502250px;}
.y40{bottom:250.530000px;}
.y87{bottom:254.082750px;}
.yc4{bottom:262.075350px;}
.y5b{bottom:264.505500px;}
.y72{bottom:269.246250px;}
.y3f{bottom:271.534500px;}
.yc3{bottom:280.825350px;}
.y5a{bottom:283.249500px;}
.y71{bottom:287.990250px;}
.y86{bottom:289.838250px;}
.y3e{bottom:292.539000px;}
.yc2{bottom:299.575350px;}
.y59{bottom:301.993500px;}
.y70{bottom:306.734250px;}
.y3d{bottom:313.543500px;}
.yc1{bottom:318.325350px;}
.y58{bottom:320.737500px;}
.y6f{bottom:325.478250px;}
.y85{bottom:325.593750px;}
.y3c{bottom:334.548000px;}
.yc0{bottom:337.075350px;}
.y57{bottom:339.481500px;}
.y6e{bottom:344.222250px;}
.y84{bottom:344.337750px;}
.yf2{bottom:348.706200px;}
.y3b{bottom:355.552500px;}
.y56{bottom:358.225500px;}
.ybf{bottom:362.200350px;}
.y6d{bottom:362.966250px;}
.yf1{bottom:368.506200px;}
.y3a{bottom:376.557000px;}
.y55{bottom:376.969500px;}
.ybe{bottom:380.950350px;}
.y6c{bottom:381.710250px;}
.yf0{bottom:388.306200px;}
.y54{bottom:395.713500px;}
.y39{bottom:397.561500px;}
.ybd{bottom:399.700350px;}
.y53{bottom:414.457500px;}
.y83{bottom:415.848750px;}
.y6b{bottom:417.465750px;}
.ybc{bottom:418.450350px;}
.y38{bottom:418.566000px;}
.y52{bottom:433.201500px;}
.yef{bottom:434.320350px;}
.y82{bottom:434.592750px;}
.y37{bottom:439.570500px;}
.ybb{bottom:443.575350px;}
.y22{bottom:451.742400px;}
.y51{bottom:451.945500px;}
.yee{bottom:453.070350px;}
.y6a{bottom:453.221250px;}
.y81{bottom:453.336750px;}
.y36{bottom:460.575000px;}
.yba{bottom:462.325350px;}
.yed{bottom:471.820350px;}
.y69{bottom:471.965250px;}
.y80{bottom:472.080750px;}
.y21{bottom:472.194900px;}
.yb9{bottom:481.075350px;}
.y35{bottom:481.579500px;}
.y50{bottom:487.701000px;}
.yec{bottom:490.570350px;}
.y68{bottom:490.709250px;}
.y7f{bottom:490.824750px;}
.yb8{bottom:499.825350px;}
.y34{bottom:502.584000px;}
.y67{bottom:509.453250px;}
.y7e{bottom:509.568750px;}
.y20{bottom:513.099900px;}
.yeb{bottom:515.695350px;}
.y4f{bottom:523.456500px;}
.y33{bottom:523.588500px;}
.yb7{bottom:524.950350px;}
.y66{bottom:528.197250px;}
.y7d{bottom:528.312750px;}
.y1f{bottom:533.552400px;}
.yea{bottom:534.445350px;}
.yb6{bottom:543.700350px;}
.y4e{bottom:544.461000px;}
.y32{bottom:544.593000px;}
.y65{bottom:546.941250px;}
.y7c{bottom:547.056750px;}
.ye9{bottom:553.195350px;}
.y1e{bottom:554.004900px;}
.yb5{bottom:562.450350px;}
.y4d{bottom:565.465500px;}
.y31{bottom:565.597500px;}
.y64{bottom:565.685250px;}
.y7b{bottom:565.800750px;}
.y1d{bottom:570.204900px;}
.ye8{bottom:578.320350px;}
.yb4{bottom:581.200350px;}
.y63{bottom:584.429250px;}
.y7a{bottom:584.544750px;}
.y4c{bottom:586.470000px;}
.y30{bottom:586.602000px;}
.y1c{bottom:590.657400px;}
.ye7{bottom:597.070350px;}
.y62{bottom:603.173250px;}
.y79{bottom:603.288750px;}
.yb3{bottom:606.325350px;}
.y4b{bottom:607.474500px;}
.y2f{bottom:607.606500px;}
.y1b{bottom:611.109900px;}
.ye6{bottom:615.820350px;}
.y61{bottom:621.917250px;}
.y78{bottom:622.032750px;}
.yb2{bottom:625.075350px;}
.y4a{bottom:628.479000px;}
.y2e{bottom:628.611000px;}
.y1a{bottom:631.562400px;}
.ye5{bottom:640.945350px;}
.yb1{bottom:643.825350px;}
.y49{bottom:649.483500px;}
.y2d{bottom:649.615500px;}
.y60{bottom:657.672750px;}
.y77{bottom:657.788250px;}
.ye4{bottom:659.695350px;}
.yb0{bottom:662.575350px;}
.y48{bottom:670.488000px;}
.y2c{bottom:670.620000px;}
.y19{bottom:672.467400px;}
.ye3{bottom:678.445350px;}
.yaf{bottom:689.873400px;}
.y47{bottom:691.492500px;}
.y2b{bottom:691.624500px;}
.y18{bottom:692.919900px;}
.ye2{bottom:697.195350px;}
.y46{bottom:712.497000px;}
.y2a{bottom:712.629000px;}
.y17{bottom:713.372400px;}
.ye1{bottom:715.945350px;}
.ya0{bottom:731.416650px;}
.y45{bottom:733.501500px;}
.y29{bottom:733.633500px;}
.y16{bottom:733.824900px;}
.ye0{bottom:741.070350px;}
.y9f{bottom:751.216650px;}
.y44{bottom:754.506000px;}
.y28{bottom:754.638000px;}
.ydf{bottom:759.820350px;}
.y9c{bottom:761.116650px;}
.yae{bottom:762.440400px;}
.y9e{bottom:771.016650px;}
.y15{bottom:774.729900px;}
.y43{bottom:775.510500px;}
.y27{bottom:775.642500px;}
.yde{bottom:778.570350px;}
.yad{bottom:781.184400px;}
.y9d{bottom:790.816650px;}
.y14{bottom:795.182400px;}
.y42{bottom:796.515000px;}
.y26{bottom:796.647000px;}
.ydd{bottom:797.320350px;}
.y13{bottom:815.634900px;}
.yac{bottom:816.939900px;}
.y9b{bottom:819.840150px;}
.ydc{bottom:822.445350px;}
.y41{bottom:834.531000px;}
.y25{bottom:834.663000px;}
.y12{bottom:836.087400px;}
.y99{bottom:839.640150px;}
.ydb{bottom:841.195350px;}
.y11{bottom:852.287400px;}
.yab{bottom:852.695400px;}
.y9a{bottom:859.440150px;}
.yda{bottom:859.945350px;}
.y10{bottom:868.487400px;}
.yd9{bottom:878.695350px;}
.yf{bottom:884.687400px;}
.yaa{bottom:888.450900px;}
.y98{bottom:888.463650px;}
.yb{bottom:889.875300px;}
.yd8{bottom:903.820350px;}
.ye{bottom:905.139900px;}
.y97{bottom:908.263650px;}
.yd7{bottom:922.570350px;}
.ya9{bottom:924.206400px;}
.ya{bottom:929.957400px;}
.y96{bottom:937.287150px;}
.yd6{bottom:941.320350px;}
.y95{bottom:957.087150px;}
.ya8{bottom:959.961900px;}
.yd5{bottom:960.070350px;}
.y92{bottom:966.987150px;}
.y8{bottom:968.329800px;}
.y94{bottom:976.887150px;}
.yd4{bottom:978.820350px;}
.ya7{bottom:995.717400px;}
.y93{bottom:996.687150px;}
.y7{bottom:1000.729800px;}
.yd3{bottom:1003.945350px;}
.yd2{bottom:1022.695350px;}
.y91{bottom:1025.710650px;}
.ya6{bottom:1031.472900px;}
.yd1{bottom:1041.445350px;}
.y8f{bottom:1045.510650px;}
.y6{bottom:1053.546450px;}
.yd0{bottom:1060.195350px;}
.y90{bottom:1065.310650px;}
.ya5{bottom:1067.228400px;}
.y5{bottom:1069.746450px;}
.ycf{bottom:1085.320350px;}
.ya4{bottom:1085.972400px;}
.y8e{bottom:1093.954650px;}
.y8d{bottom:1103.854650px;}
.yce{bottom:1104.070350px;}
.ya3{bottom:1104.716400px;}
.ycd{bottom:1122.820350px;}
.y9{bottom:1123.179750px;}
.ya2{bottom:1140.471900px;}
.ycc{bottom:1141.570350px;}
.y8c{bottom:1157.490750px;}
.ya1{bottom:1159.215900px;}
.ycb{bottom:1160.320350px;}
.y4{bottom:1172.255700px;}
.y2{bottom:1191.347400px;}
.y5f{bottom:1197.407400px;}
.y1{bottom:1207.755900px;}
.ha{height:36.093750px;}
.h6{height:39.972656px;}
.hc{height:40.394531px;}
.hb{height:40.605469px;}
.h3{height:44.414062px;}
.h15{height:44.882812px;}
.h4{height:45.117188px;}
.hd{height:46.142578px;}
.h5{height:47.277398px;}
.he{height:49.371094px;}
.h10{height:49.628906px;}
.h8{height:50.414062px;}
.h16{height:51.269531px;}
.h9{height:51.445312px;}
.h11{height:54.140625px;}
.hf{height:56.396484px;}
.h7{height:81.210938px;}
.h12{height:89.228906px;}
.h2{height:90.234375px;}
.h14{height:95.996484px;}
.h13{height:128.571094px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:6.108300px;}
.xc{left:20.188800px;}
.x11{left:21.862800px;}
.x15{left:23.158800px;}
.xe{left:25.318800px;}
.xd{left:30.259800px;}
.x13{left:35.875800px;}
.x5{left:39.594300px;}
.x14{left:48.592800px;}
.xb{left:53.587800px;}
.x6{left:60.883800px;}
.x19{left:63.779550px;}
.x1d{left:64.890900px;}
.x16{left:66.655800px;}
.x18{left:72.283350px;}
.x10{left:85.069800px;}
.x21{left:90.779550px;}
.xf{left:101.404800px;}
.x1b{left:150.987900px;}
.x2{left:208.546950px;}
.x7{left:211.181100px;}
.x9{left:212.774700px;}
.xa{left:232.786800px;}
.x4{left:308.436300px;}
.x1{left:408.040350px;}
.x1a{left:461.545050px;}
.x22{left:488.339550px;}
.x17{left:536.042700px;}
.x1e{left:581.505900px;}
.x1c{left:621.617400px;}
.x1f{left:732.447900px;}
.x8{left:764.209050px;}
.x3{left:798.829500px;}
.x20{left:800.565300px;}
@media print{
.v1{vertical-align:-72.592533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:35.200000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:15.264000pt;}
.ws27{word-spacing:-16.192000pt;}
.ws2{word-spacing:-13.248000pt;}
.ws3{word-spacing:-13.152000pt;}
.ws53{word-spacing:-7.040000pt;}
.ws2f{word-spacing:-4.634667pt;}
.ws4f{word-spacing:-3.573333pt;}
.ws4b{word-spacing:-3.466667pt;}
.ws37{word-spacing:-2.992000pt;}
.ws56{word-spacing:-2.773333pt;}
.ws7{word-spacing:-2.352000pt;}
.ws17{word-spacing:-2.346667pt;}
.ws40{word-spacing:-2.293333pt;}
.ws3e{word-spacing:-2.080000pt;}
.ws16{word-spacing:-1.760000pt;}
.wsb{word-spacing:-1.701333pt;}
.ws49{word-spacing:-1.493333pt;}
.ws52{word-spacing:-1.226667pt;}
.ws12{word-spacing:-0.997333pt;}
.ws3f{word-spacing:-0.586667pt;}
.ws1{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws43{word-spacing:0.533333pt;}
.ws4a{word-spacing:0.746667pt;}
.ws20{word-spacing:1.290667pt;}
.ws4e{word-spacing:1.600000pt;}
.ws21{word-spacing:1.818667pt;}
.ws41{word-spacing:2.240000pt;}
.ws4c{word-spacing:2.346667pt;}
.ws13{word-spacing:2.757333pt;}
.ws50{word-spacing:2.826667pt;}
.ws23{word-spacing:3.285333pt;}
.ws1b{word-spacing:3.520000pt;}
.ws45{word-spacing:5.226667pt;}
.ws11{word-spacing:5.632000pt;}
.ws3a{word-spacing:5.706667pt;}
.ws55{word-spacing:5.813333pt;}
.wsf{word-spacing:6.160000pt;}
.ws4d{word-spacing:6.826667pt;}
.ws44{word-spacing:8.266667pt;}
.ws26{word-spacing:9.034667pt;}
.ws6{word-spacing:9.072000pt;}
.ws5{word-spacing:9.168000pt;}
.ws14{word-spacing:9.738667pt;}
.ws46{word-spacing:9.973333pt;}
.ws54{word-spacing:10.453333pt;}
.ws1c{word-spacing:10.501333pt;}
.ws30{word-spacing:10.677333pt;}
.ws2e{word-spacing:10.853333pt;}
.ws51{word-spacing:11.413333pt;}
.ws2d{word-spacing:12.378667pt;}
.ws3d{word-spacing:13.120000pt;}
.ws3c{word-spacing:14.293333pt;}
.ws33{word-spacing:14.432000pt;}
.ws34{word-spacing:14.490667pt;}
.ws47{word-spacing:14.613333pt;}
.ws10{word-spacing:14.784000pt;}
.ws24{word-spacing:15.370667pt;}
.ws36{word-spacing:15.781333pt;}
.ws35{word-spacing:15.898667pt;}
.wsd{word-spacing:16.074667pt;}
.ws42{word-spacing:16.266667pt;}
.ws38{word-spacing:16.853333pt;}
.ws31{word-spacing:17.189333pt;}
.ws1f{word-spacing:18.949333pt;}
.ws39{word-spacing:19.306667pt;}
.ws32{word-spacing:20.768000pt;}
.ws48{word-spacing:20.853333pt;}
.ws22{word-spacing:22.117333pt;}
.ws2c{word-spacing:25.226667pt;}
.ws25{word-spacing:31.680000pt;}
.ws3b{word-spacing:32.586667pt;}
.ws9{word-spacing:33.850667pt;}
.wse{word-spacing:38.192000pt;}
.ws15{word-spacing:38.896000pt;}
.ws2a{word-spacing:39.717333pt;}
.ws1a{word-spacing:43.882667pt;}
.ws1e{word-spacing:46.170667pt;}
.ws2b{word-spacing:47.285333pt;}
.wsa{word-spacing:49.573333pt;}
.ws18{word-spacing:55.264000pt;}
.ws1d{word-spacing:65.472000pt;}
.ws19{word-spacing:76.208000pt;}
.wsc{word-spacing:85.946667pt;}
.ws8{word-spacing:89.642667pt;}
.ws28{word-spacing:167.751467pt;}
.ws0{word-spacing:331.974400pt;}
.ws29{word-spacing:697.253333pt;}
._7{margin-left:-58.368000pt;}
._2d{margin-left:-12.922667pt;}
._19{margin-left:-9.386667pt;}
._2b{margin-left:-7.392000pt;}
._6{margin-left:-6.307200pt;}
._22{margin-left:-5.187519pt;}
._e{margin-left:-4.248852pt;}
._0{margin-left:-3.098667pt;}
._c{margin-left:-2.040215pt;}
._5{margin-left:-1.133548pt;}
._1{width:1.410881pt;}
._8{width:3.120748pt;}
._f{width:4.457281pt;}
._18{width:5.561600pt;}
._b{width:6.811200pt;}
._31{width:8.080000pt;}
._30{width:9.109333pt;}
._13{width:10.360533pt;}
._17{width:11.686400pt;}
._12{width:12.889067pt;}
._15{width:14.371948pt;}
._32{width:16.329600pt;}
._16{width:17.670400pt;}
._1b{width:18.704319pt;}
._1a{width:20.391148pt;}
._4{width:21.845333pt;}
._a{width:22.856852pt;}
._33{width:23.845763pt;}
._2e{width:25.430719pt;}
._11{width:26.451415pt;}
._20{width:28.077867pt;}
._1f{width:28.991681pt;}
._10{width:30.582933pt;}
._1e{width:33.258133pt;}
._2c{width:36.160000pt;}
._21{width:37.458667pt;}
._1c{width:38.541229pt;}
._14{width:40.262933pt;}
._d{width:41.395200pt;}
._2f{width:51.065919pt;}
._1d{width:75.785600pt;}
._24{width:104.706881pt;}
._9{width:130.159148pt;}
._2{width:136.095860pt;}
._2a{width:159.690667pt;}
._3{width:163.102957pt;}
._28{width:196.168215pt;}
._27{width:205.274667pt;}
._29{width:285.517548pt;}
._25{width:338.377919pt;}
._26{width:346.438400pt;}
._23{width:383.034667pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:55.886933pt;}
.fs7{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:50.560800pt;}
.y23{bottom:64.960800pt;}
.y3{bottom:72.686667pt;}
.yca{bottom:127.289200pt;}
.yd{bottom:128.044800pt;}
.y8b{bottom:128.963333pt;}
.yc{bottom:142.444800pt;}
.yc9{bottom:143.955867pt;}
.yc8{bottom:160.622533pt;}
.y8a{bottom:160.746000pt;}
.y76{bottom:172.684667pt;}
.yc7{bottom:177.289200pt;}
.y5e{bottom:185.132000pt;}
.y75{bottom:189.346000pt;}
.y89{bottom:192.528667pt;}
.yc6{bottom:193.955867pt;}
.y5d{bottom:201.793333pt;}
.y74{bottom:206.007333pt;}
.y88{bottom:209.190000pt;}
.yc5{bottom:210.622533pt;}
.y5c{bottom:218.454667pt;}
.y73{bottom:222.668667pt;}
.y40{bottom:222.693333pt;}
.y87{bottom:225.851333pt;}
.yc4{bottom:232.955867pt;}
.y5b{bottom:235.116000pt;}
.y72{bottom:239.330000pt;}
.y3f{bottom:241.364000pt;}
.yc3{bottom:249.622533pt;}
.y5a{bottom:251.777333pt;}
.y71{bottom:255.991333pt;}
.y86{bottom:257.634000pt;}
.y3e{bottom:260.034667pt;}
.yc2{bottom:266.289200pt;}
.y59{bottom:268.438667pt;}
.y70{bottom:272.652667pt;}
.y3d{bottom:278.705333pt;}
.yc1{bottom:282.955867pt;}
.y58{bottom:285.100000pt;}
.y6f{bottom:289.314000pt;}
.y85{bottom:289.416667pt;}
.y3c{bottom:297.376000pt;}
.yc0{bottom:299.622533pt;}
.y57{bottom:301.761333pt;}
.y6e{bottom:305.975333pt;}
.y84{bottom:306.078000pt;}
.yf2{bottom:309.961067pt;}
.y3b{bottom:316.046667pt;}
.y56{bottom:318.422667pt;}
.ybf{bottom:321.955867pt;}
.y6d{bottom:322.636667pt;}
.yf1{bottom:327.561067pt;}
.y3a{bottom:334.717333pt;}
.y55{bottom:335.084000pt;}
.ybe{bottom:338.622533pt;}
.y6c{bottom:339.298000pt;}
.yf0{bottom:345.161067pt;}
.y54{bottom:351.745333pt;}
.y39{bottom:353.388000pt;}
.ybd{bottom:355.289200pt;}
.y53{bottom:368.406667pt;}
.y83{bottom:369.643333pt;}
.y6b{bottom:371.080667pt;}
.ybc{bottom:371.955867pt;}
.y38{bottom:372.058667pt;}
.y52{bottom:385.068000pt;}
.yef{bottom:386.062533pt;}
.y82{bottom:386.304667pt;}
.y37{bottom:390.729333pt;}
.ybb{bottom:394.289200pt;}
.y22{bottom:401.548800pt;}
.y51{bottom:401.729333pt;}
.yee{bottom:402.729200pt;}
.y6a{bottom:402.863333pt;}
.y81{bottom:402.966000pt;}
.y36{bottom:409.400000pt;}
.yba{bottom:410.955867pt;}
.yed{bottom:419.395867pt;}
.y69{bottom:419.524667pt;}
.y80{bottom:419.627333pt;}
.y21{bottom:419.728800pt;}
.yb9{bottom:427.622533pt;}
.y35{bottom:428.070667pt;}
.y50{bottom:433.512000pt;}
.yec{bottom:436.062533pt;}
.y68{bottom:436.186000pt;}
.y7f{bottom:436.288667pt;}
.yb8{bottom:444.289200pt;}
.y34{bottom:446.741333pt;}
.y67{bottom:452.847333pt;}
.y7e{bottom:452.950000pt;}
.y20{bottom:456.088800pt;}
.yeb{bottom:458.395867pt;}
.y4f{bottom:465.294667pt;}
.y33{bottom:465.412000pt;}
.yb7{bottom:466.622533pt;}
.y66{bottom:469.508667pt;}
.y7d{bottom:469.611333pt;}
.y1f{bottom:474.268800pt;}
.yea{bottom:475.062533pt;}
.yb6{bottom:483.289200pt;}
.y4e{bottom:483.965333pt;}
.y32{bottom:484.082667pt;}
.y65{bottom:486.170000pt;}
.y7c{bottom:486.272667pt;}
.ye9{bottom:491.729200pt;}
.y1e{bottom:492.448800pt;}
.yb5{bottom:499.955867pt;}
.y4d{bottom:502.636000pt;}
.y31{bottom:502.753333pt;}
.y64{bottom:502.831333pt;}
.y7b{bottom:502.934000pt;}
.y1d{bottom:506.848800pt;}
.ye8{bottom:514.062533pt;}
.yb4{bottom:516.622533pt;}
.y63{bottom:519.492667pt;}
.y7a{bottom:519.595333pt;}
.y4c{bottom:521.306667pt;}
.y30{bottom:521.424000pt;}
.y1c{bottom:525.028800pt;}
.ye7{bottom:530.729200pt;}
.y62{bottom:536.154000pt;}
.y79{bottom:536.256667pt;}
.yb3{bottom:538.955867pt;}
.y4b{bottom:539.977333pt;}
.y2f{bottom:540.094667pt;}
.y1b{bottom:543.208800pt;}
.ye6{bottom:547.395867pt;}
.y61{bottom:552.815333pt;}
.y78{bottom:552.918000pt;}
.yb2{bottom:555.622533pt;}
.y4a{bottom:558.648000pt;}
.y2e{bottom:558.765333pt;}
.y1a{bottom:561.388800pt;}
.ye5{bottom:569.729200pt;}
.yb1{bottom:572.289200pt;}
.y49{bottom:577.318667pt;}
.y2d{bottom:577.436000pt;}
.y60{bottom:584.598000pt;}
.y77{bottom:584.700667pt;}
.ye4{bottom:586.395867pt;}
.yb0{bottom:588.955867pt;}
.y48{bottom:595.989333pt;}
.y2c{bottom:596.106667pt;}
.y19{bottom:597.748800pt;}
.ye3{bottom:603.062533pt;}
.yaf{bottom:613.220800pt;}
.y47{bottom:614.660000pt;}
.y2b{bottom:614.777333pt;}
.y18{bottom:615.928800pt;}
.ye2{bottom:619.729200pt;}
.y46{bottom:633.330667pt;}
.y2a{bottom:633.448000pt;}
.y17{bottom:634.108800pt;}
.ye1{bottom:636.395867pt;}
.ya0{bottom:650.148133pt;}
.y45{bottom:652.001333pt;}
.y29{bottom:652.118667pt;}
.y16{bottom:652.288800pt;}
.ye0{bottom:658.729200pt;}
.y9f{bottom:667.748133pt;}
.y44{bottom:670.672000pt;}
.y28{bottom:670.789333pt;}
.ydf{bottom:675.395867pt;}
.y9c{bottom:676.548133pt;}
.yae{bottom:677.724800pt;}
.y9e{bottom:685.348133pt;}
.y15{bottom:688.648800pt;}
.y43{bottom:689.342667pt;}
.y27{bottom:689.460000pt;}
.yde{bottom:692.062533pt;}
.yad{bottom:694.386133pt;}
.y9d{bottom:702.948133pt;}
.y14{bottom:706.828800pt;}
.y42{bottom:708.013333pt;}
.y26{bottom:708.130667pt;}
.ydd{bottom:708.729200pt;}
.y13{bottom:725.008800pt;}
.yac{bottom:726.168800pt;}
.y9b{bottom:728.746800pt;}
.ydc{bottom:731.062533pt;}
.y41{bottom:741.805333pt;}
.y25{bottom:741.922667pt;}
.y12{bottom:743.188800pt;}
.y99{bottom:746.346800pt;}
.ydb{bottom:747.729200pt;}
.y11{bottom:757.588800pt;}
.yab{bottom:757.951467pt;}
.y9a{bottom:763.946800pt;}
.yda{bottom:764.395867pt;}
.y10{bottom:771.988800pt;}
.yd9{bottom:781.062533pt;}
.yf{bottom:786.388800pt;}
.yaa{bottom:789.734133pt;}
.y98{bottom:789.745467pt;}
.yb{bottom:791.000267pt;}
.yd8{bottom:803.395867pt;}
.ye{bottom:804.568800pt;}
.y97{bottom:807.345467pt;}
.yd7{bottom:820.062533pt;}
.ya9{bottom:821.516800pt;}
.ya{bottom:826.628800pt;}
.y96{bottom:833.144133pt;}
.yd6{bottom:836.729200pt;}
.y95{bottom:850.744133pt;}
.ya8{bottom:853.299467pt;}
.yd5{bottom:853.395867pt;}
.y92{bottom:859.544133pt;}
.y8{bottom:860.737600pt;}
.y94{bottom:868.344133pt;}
.yd4{bottom:870.062533pt;}
.ya7{bottom:885.082133pt;}
.y93{bottom:885.944133pt;}
.y7{bottom:889.537600pt;}
.yd3{bottom:892.395867pt;}
.yd2{bottom:909.062533pt;}
.y91{bottom:911.742800pt;}
.ya6{bottom:916.864800pt;}
.yd1{bottom:925.729200pt;}
.y8f{bottom:929.342800pt;}
.y6{bottom:936.485733pt;}
.yd0{bottom:942.395867pt;}
.y90{bottom:946.942800pt;}
.ya5{bottom:948.647467pt;}
.y5{bottom:950.885733pt;}
.ycf{bottom:964.729200pt;}
.ya4{bottom:965.308800pt;}
.y8e{bottom:972.404133pt;}
.y8d{bottom:981.204133pt;}
.yce{bottom:981.395867pt;}
.ya3{bottom:981.970133pt;}
.ycd{bottom:998.062533pt;}
.y9{bottom:998.382000pt;}
.ya2{bottom:1013.752800pt;}
.ycc{bottom:1014.729200pt;}
.y8c{bottom:1028.880667pt;}
.ya1{bottom:1030.414133pt;}
.ycb{bottom:1031.395867pt;}
.y4{bottom:1042.005067pt;}
.y2{bottom:1058.975467pt;}
.y5f{bottom:1064.362133pt;}
.y1{bottom:1073.560800pt;}
.ha{height:32.083333pt;}
.h6{height:35.531250pt;}
.hc{height:35.906250pt;}
.hb{height:36.093750pt;}
.h3{height:39.479167pt;}
.h15{height:39.895833pt;}
.h4{height:40.104167pt;}
.hd{height:41.015625pt;}
.h5{height:42.024354pt;}
.he{height:43.885417pt;}
.h10{height:44.114583pt;}
.h8{height:44.812500pt;}
.h16{height:45.572917pt;}
.h9{height:45.729167pt;}
.h11{height:48.125000pt;}
.hf{height:50.130208pt;}
.h7{height:72.187500pt;}
.h12{height:79.314583pt;}
.h2{height:80.208333pt;}
.h14{height:85.330208pt;}
.h13{height:114.285417pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.429600pt;}
.xc{left:17.945600pt;}
.x11{left:19.433600pt;}
.x15{left:20.585600pt;}
.xe{left:22.505600pt;}
.xd{left:26.897600pt;}
.x13{left:31.889600pt;}
.x5{left:35.194933pt;}
.x14{left:43.193600pt;}
.xb{left:47.633600pt;}
.x6{left:54.118933pt;}
.x19{left:56.692933pt;}
.x1d{left:57.680800pt;}
.x16{left:59.249600pt;}
.x18{left:64.251867pt;}
.x10{left:75.617600pt;}
.x21{left:80.692933pt;}
.xf{left:90.137600pt;}
.x1b{left:134.211467pt;}
.x2{left:185.375067pt;}
.x7{left:187.716533pt;}
.x9{left:189.133067pt;}
.xa{left:206.921600pt;}
.x4{left:274.165600pt;}
.x1{left:362.702533pt;}
.x1a{left:410.262267pt;}
.x22{left:434.079600pt;}
.x17{left:476.482400pt;}
.x1e{left:516.894133pt;}
.x1c{left:552.548800pt;}
.x1f{left:651.064800pt;}
.x8{left:679.296933pt;}
.x3{left:710.070667pt;}
.x20{left:711.613600pt;}
}




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