
    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_80c6c54d3b4e9c29c3f2d286.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_2117f19f273bbca327fd7cf6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_af8b0832c595151faf135838.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_56c4a5e488b012860920fc00.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_65cc21cf05f624f530d3e187.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b7f5d2a0d6f7cb7a5ed74a9c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_feb6d13180a129aeef91e07c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064453;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_375a1347de05dd008a86e2ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999023;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);}
.v4{vertical-align:-71.280000px;}
.v2{vertical-align:-69.300000px;}
.v7{vertical-align:-65.520000px;}
.v3{vertical-align:-63.360000px;}
.v5{vertical-align:-59.760000px;}
.v6{vertical-align:-57.600000px;}
.v1{vertical-align:-52.560000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.800000px;}
.ls2a{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.206400px;}
.ls26{letter-spacing:-0.121200px;}
.lse{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.828000px;}
.ls28{letter-spacing:0.900000px;}
.ls1c{letter-spacing:2.160000px;}
.ls20{letter-spacing:4.320000px;}
.ls24{letter-spacing:5.220000px;}
.ls18{letter-spacing:6.480000px;}
.ls1e{letter-spacing:7.200000px;}
.ls22{letter-spacing:7.380000px;}
.ls23{letter-spacing:9.540000px;}
.ls17{letter-spacing:10.080000px;}
.ls25{letter-spacing:13.626720px;}
.ls16{letter-spacing:13.680000px;}
.ls12{letter-spacing:14.580000px;}
.ls1b{letter-spacing:15.120000px;}
.ls1a{letter-spacing:15.840000px;}
.ls19{letter-spacing:23.760000px;}
.ls7{letter-spacing:30.600000px;}
.ls1d{letter-spacing:32.400000px;}
.ls6{letter-spacing:36.900000px;}
.ls13{letter-spacing:42.660000px;}
.ls21{letter-spacing:43.146720px;}
.ls14{letter-spacing:158.004000px;}
.ls29{letter-spacing:823.320000px;}
.ls27{letter-spacing:2009.256000px;}
.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;}
}
.wse{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.254600px;}
.ws9{word-spacing:-15.768000px;}
.ws0{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.818800px;}
.ws7{word-spacing:-14.733600px;}
.ws2{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.328000px;}
.ws4{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.140000px;}
.wsd{word-spacing:0.000000px;}
._b{margin-left:-3.389040px;}
._8{margin-left:-2.228400px;}
._4{margin-left:-1.177920px;}
._0{width:1.015920px;}
._1{width:2.160000px;}
._5{width:3.735600px;}
._3{width:5.084160px;}
._2{width:6.489120px;}
._9{width:8.025120px;}
._15{width:9.160560px;}
._16{width:10.401840px;}
._19{width:11.772720px;}
._1a{width:13.711200px;}
._1c{width:14.743920px;}
._11{width:16.073760px;}
._12{width:17.748720px;}
._1d{width:19.143360px;}
._34{width:20.144880px;}
._e{width:21.155040px;}
._d{width:22.553280px;}
._17{width:23.609280px;}
._18{width:24.677280px;}
._1f{width:25.962960px;}
._23{width:27.930240px;}
._22{width:29.476800px;}
._7{width:31.486560px;}
._6{width:32.715840px;}
._24{width:33.747840px;}
._21{width:34.914240px;}
._20{width:36.100800px;}
._1e{width:38.286720px;}
._25{width:40.903680px;}
._26{width:41.989680px;}
._10{width:43.116720px;}
._c{width:44.616000px;}
._30{width:47.509200px;}
._a{width:48.936000px;}
._2d{width:51.453360px;}
._2a{width:54.377520px;}
._13{width:55.999200px;}
._14{width:57.282000px;}
._32{width:68.903280px;}
._31{width:70.397280px;}
._2c{width:95.240160px;}
._2f{width:104.938560px;}
._29{width:128.364480px;}
._2b{width:140.017680px;}
._2e{width:144.141120px;}
._28{width:239.279040px;}
._f{width:744.342480px;}
._33{width:774.405840px;}
._27{width:803.056560px;}
._1b{width:971.196000px;}
.fc2{color:transparent;}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:3.420000px;}
.y6{bottom:3.600000px;}
.ybc{bottom:3.780000px;}
.yb8{bottom:3.960000px;}
.yb2{bottom:20.520000px;}
.ybb{bottom:20.925000px;}
.ybf{bottom:21.060000px;}
.yb7{bottom:21.240000px;}
.yba{bottom:38.205000px;}
.ybe{bottom:38.340000px;}
.yb6{bottom:38.520000px;}
.yb5{bottom:55.800000px;}
.y4{bottom:56.700000px;}
.y43{bottom:88.236000px;}
.yc6{bottom:98.136000px;}
.y100{bottom:98.676000px;}
.y76{bottom:99.396000px;}
.yae{bottom:102.816000px;}
.y136{bottom:103.536000px;}
.y42{bottom:103.716000px;}
.yff{bottom:115.596000px;}
.yc5{bottom:117.036000px;}
.y75{bottom:118.296000px;}
.y41{bottom:118.476000px;}
.y135{bottom:119.016000px;}
.yad{bottom:121.716000px;}
.yfe{bottom:130.176000px;}
.y40{bottom:131.796000px;}
.y134{bottom:133.776000px;}
.yc4{bottom:136.116000px;}
.y74{bottom:137.196000px;}
.yac{bottom:140.796000px;}
.yfd{bottom:147.276000px;}
.y3f{bottom:149.076000px;}
.yc3{bottom:155.010000px;}
.y73{bottom:156.270000px;}
.yab{bottom:159.690000px;}
.yfc{bottom:164.550000px;}
.y3e{bottom:166.350000px;}
.yc2{bottom:174.090000px;}
.y72{bottom:175.170000px;}
.yaa{bottom:178.590000px;}
.yfb{bottom:181.830000px;}
.y3d{bottom:182.370000px;}
.y133{bottom:185.250000px;}
.yc1{bottom:191.910000px;}
.y71{bottom:194.250000px;}
.y3c{bottom:195.690000px;}
.ya9{bottom:197.670000px;}
.yfa{bottom:199.110000px;}
.yc0{bottom:203.430000px;}
.y132{bottom:204.330000px;}
.y3b{bottom:212.970000px;}
.y70{bottom:213.150000px;}
.yf9{bottom:216.390000px;}
.ya8{bottom:216.570000px;}
.y131{bottom:223.230000px;}
.y3a{bottom:230.070000px;}
.y6f{bottom:232.230000px;}
.yf8{bottom:233.670000px;}
.ya7{bottom:235.650000px;}
.y130{bottom:242.310000px;}
.y39{bottom:247.350000px;}
.yf7{bottom:250.770000px;}
.y6e{bottom:251.130000px;}
.ya6{bottom:254.550000px;}
.ybd{bottom:255.990000px;}
.y12f{bottom:261.210000px;}
.yf6{bottom:268.050000px;}
.y6d{bottom:270.030000px;}
.ya5{bottom:273.630000px;}
.y12e{bottom:280.110000px;}
.y38{bottom:280.470000px;}
.yf5{bottom:285.330000px;}
.y6c{bottom:289.110000px;}
.ya4{bottom:292.530000px;}
.y37{bottom:293.610000px;}
.y12d{bottom:299.190000px;}
.yf4{bottom:302.610000px;}
.y6b{bottom:308.010000px;}
.yb9{bottom:308.550000px;}
.ya3{bottom:311.430000px;}
.y12c{bottom:318.090000px;}
.yf3{bottom:319.890000px;}
.y6a{bottom:327.090000px;}
.y36{bottom:328.215000px;}
.ya2{bottom:330.555000px;}
.yf2{bottom:337.035000px;}
.y12b{bottom:337.215000px;}
.y35{bottom:344.415000px;}
.y69{bottom:346.035000px;}
.ya1{bottom:349.455000px;}
.yf1{bottom:354.315000px;}
.y12a{bottom:356.115000px;}
.y34{bottom:357.735000px;}
.yb4{bottom:360.975000px;}
.y68{bottom:364.935000px;}
.ya0{bottom:368.535000px;}
.yf0{bottom:371.595000px;}
.y33{bottom:375.015000px;}
.y67{bottom:384.015000px;}
.y9f{bottom:387.435000px;}
.yef{bottom:388.875000px;}
.y32{bottom:392.295000px;}
.y129{bottom:393.735000px;}
.y66{bottom:402.915000px;}
.yee{bottom:406.155000px;}
.y9e{bottom:406.335000px;}
.y128{bottom:411.015000px;}
.y31{bottom:421.635000px;}
.y65{bottom:421.995000px;}
.yed{bottom:423.435000px;}
.y9d{bottom:425.415000px;}
.y127{bottom:428.295000px;}
.yb1{bottom:430.995000px;}
.y30{bottom:438.915000px;}
.yec{bottom:440.535000px;}
.y64{bottom:440.895000px;}
.y9c{bottom:444.315000px;}
.y126{bottom:445.575000px;}
.y2f{bottom:456.195000px;}
.yeb{bottom:457.815000px;}
.y63{bottom:459.795000px;}
.y125{bottom:462.855000px;}
.y9b{bottom:463.395000px;}
.yb0{bottom:469.515000px;}
.y2e{bottom:473.475000px;}
.yea{bottom:475.095000px;}
.y62{bottom:478.875000px;}
.y124{bottom:479.955000px;}
.y9a{bottom:482.295000px;}
.yaf{bottom:487.515000px;}
.y2d{bottom:490.575000px;}
.ye9{bottom:492.375000px;}
.y123{bottom:497.235000px;}
.y61{bottom:497.775000px;}
.y99{bottom:501.195000px;}
.y2c{bottom:507.855000px;}
.ye8{bottom:509.655000px;}
.y122{bottom:514.515000px;}
.y60{bottom:516.855000px;}
.y98{bottom:520.275000px;}
.y2b{bottom:525.135000px;}
.ye7{bottom:526.935000px;}
.y121{bottom:531.795000px;}
.y5f{bottom:535.755000px;}
.y97{bottom:539.175000px;}
.y2a{bottom:542.415000px;}
.ye6{bottom:544.035000px;}
.y120{bottom:549.075000px;}
.y5e{bottom:554.655000px;}
.y96{bottom:558.255000px;}
.y29{bottom:559.695000px;}
.ye5{bottom:561.315000px;}
.y11f{bottom:566.175000px;}
.y5d{bottom:573.735000px;}
.y28{bottom:576.795000px;}
.y95{bottom:577.155000px;}
.ye4{bottom:578.235000px;}
.y11e{bottom:583.455000px;}
.y5c{bottom:592.635000px;}
.y27{bottom:594.075000px;}
.ye3{bottom:595.005000px;}
.y94{bottom:596.085000px;}
.y11d{bottom:600.765000px;}
.ye2{bottom:609.765000px;}
.y26{bottom:611.385000px;}
.y5b{bottom:611.745000px;}
.y93{bottom:615.165000px;}
.y11c{bottom:618.045000px;}
.ye1{bottom:626.865000px;}
.y25{bottom:628.665000px;}
.y5a{bottom:630.645000px;}
.y92{bottom:634.065000px;}
.y11b{bottom:635.325000px;}
.ye0{bottom:644.145000px;}
.y24{bottom:645.945000px;}
.y59{bottom:649.725000px;}
.y11a{bottom:651.345000px;}
.y91{bottom:653.145000px;}
.ydf{bottom:661.425000px;}
.y23{bottom:663.225000px;}
.y119{bottom:664.665000px;}
.y58{bottom:668.625000px;}
.y90{bottom:672.045000px;}
.yde{bottom:678.705000px;}
.y22{bottom:680.325000px;}
.y118{bottom:681.765000px;}
.y57{bottom:687.525000px;}
.y8f{bottom:690.945000px;}
.ydd{bottom:695.985000px;}
.y21{bottom:697.605000px;}
.y117{bottom:699.045000px;}
.y56{bottom:706.605000px;}
.y8e{bottom:710.025000px;}
.ydc{bottom:713.085000px;}
.y20{bottom:714.885000px;}
.y116{bottom:716.325000px;}
.y55{bottom:725.505000px;}
.y8d{bottom:728.925000px;}
.ydb{bottom:730.365000px;}
.y1f{bottom:732.165000px;}
.y54{bottom:744.585000px;}
.yda{bottom:747.645000px;}
.y8c{bottom:748.005000px;}
.y1e{bottom:749.445000px;}
.y115{bottom:749.985000px;}
.y53{bottom:763.485000px;}
.y114{bottom:764.205000px;}
.yd9{bottom:764.925000px;}
.y1d{bottom:766.725000px;}
.y8b{bottom:766.905000px;}
.y113{bottom:781.485000px;}
.yd8{bottom:782.205000px;}
.y52{bottom:782.385000px;}
.y1c{bottom:783.825000px;}
.y8a{bottom:785.985000px;}
.y112{bottom:798.765000px;}
.yd7{bottom:799.485000px;}
.y1b{bottom:799.845000px;}
.y51{bottom:801.465000px;}
.y89{bottom:804.885000px;}
.y1a{bottom:813.165000px;}
.y111{bottom:815.325000px;}
.yd6{bottom:816.585000px;}
.y50{bottom:820.365000px;}
.y88{bottom:823.785000px;}
.y19{bottom:830.445000px;}
.yd5{bottom:833.865000px;}
.y4f{bottom:839.445000px;}
.y87{bottom:842.865000px;}
.y18{bottom:847.725000px;}
.yd4{bottom:851.145000px;}
.y4e{bottom:858.345000px;}
.y86{bottom:861.765000px;}
.y17{bottom:865.050000px;}
.yd3{bottom:868.470000px;}
.y4d{bottom:877.290000px;}
.y85{bottom:880.890000px;}
.y110{bottom:881.430000px;}
.yd2{bottom:885.750000px;}
.y16{bottom:894.030000px;}
.y10f{bottom:896.010000px;}
.y4c{bottom:896.370000px;}
.y84{bottom:899.790000px;}
.yd1{bottom:903.030000px;}
.y15{bottom:911.130000px;}
.y10e{bottom:913.290000px;}
.y4b{bottom:915.270000px;}
.y83{bottom:918.690000px;}
.yd0{bottom:920.130000px;}
.y14{bottom:928.410000px;}
.y10d{bottom:930.570000px;}
.y4a{bottom:934.350000px;}
.ycf{bottom:937.410000px;}
.y82{bottom:937.770000px;}
.y13{bottom:944.790000px;}
.y10c{bottom:947.850000px;}
.y49{bottom:953.250000px;}
.yce{bottom:954.690000px;}
.y81{bottom:956.670000px;}
.y12{bottom:958.110000px;}
.y10b{bottom:965.130000px;}
.ycd{bottom:971.970000px;}
.y48{bottom:972.150000px;}
.y11{bottom:975.390000px;}
.y80{bottom:975.750000px;}
.y10a{bottom:982.230000px;}
.ycc{bottom:989.250000px;}
.y47{bottom:991.230000px;}
.y10{bottom:992.670000px;}
.y7f{bottom:994.650000px;}
.y109{bottom:999.510000px;}
.ycb{bottom:1006.530000px;}
.yf{bottom:1009.950000px;}
.y46{bottom:1010.130000px;}
.y7e{bottom:1013.550000px;}
.y108{bottom:1016.790000px;}
.yca{bottom:1023.630000px;}
.ye{bottom:1027.050000px;}
.y7d{bottom:1032.630000px;}
.y107{bottom:1034.070000px;}
.yc9{bottom:1040.910000px;}
.yd{bottom:1044.330000px;}
.y45{bottom:1047.030000px;}
.y106{bottom:1050.450000px;}
.y7c{bottom:1051.530000px;}
.yc8{bottom:1057.830000px;}
.yc{bottom:1061.610000px;}
.y105{bottom:1065.030000px;}
.y7b{bottom:1070.610000px;}
.yc7{bottom:1074.570000px;}
.yb{bottom:1078.890000px;}
.y104{bottom:1082.310000px;}
.y7a{bottom:1089.510000px;}
.ya{bottom:1096.170000px;}
.y79{bottom:1108.410000px;}
.y103{bottom:1113.090000px;}
.y9{bottom:1113.450000px;}
.y78{bottom:1127.490000px;}
.y102{bottom:1130.220000px;}
.y8{bottom:1130.580000px;}
.y77{bottom:1146.420000px;}
.y101{bottom:1147.500000px;}
.y7{bottom:1147.860000px;}
.y3{bottom:1164.240000px;}
.y2{bottom:1179.000000px;}
.y5{bottom:1189.260000px;}
.y44{bottom:1192.320000px;}
.y1{bottom:1196.280000px;}
.h4{height:17.280000px;}
.h10{height:34.380000px;}
.h16{height:40.843828px;}
.h5{height:40.985156px;}
.h7{height:42.086250px;}
.hc{height:47.344922px;}
.h15{height:48.616875px;}
.h3{height:49.583118px;}
.h11{height:51.677227px;}
.h13{height:51.696000px;}
.h14{height:51.840000px;}
.h9{height:52.998047px;}
.h8{height:53.252930px;}
.h2{height:58.651172px;}
.hd{height:59.027344px;}
.h6{height:60.226875px;}
.hb{height:61.423863px;}
.hf{height:64.978594px;}
.ha{height:65.010937px;}
.he{height:66.757500px;}
.h12{height:69.300000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:14.940000px;}
.w3{width:16.920000px;}
.w5{width:169.020000px;}
.w6{width:169.410000px;}
.w7{width:180.030000px;}
.w8{width:188.850000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.740000px;}
.x17{left:63.900000px;}
.x21{left:90.719987px;}
.x1a{left:98.676000px;}
.x1{left:106.415987px;}
.x29{left:131.255987px;}
.x3{left:133.235987px;}
.x4{left:148.895987px;}
.xe{left:157.349987px;}
.x2b{left:159.509987px;}
.x25{left:160.589987px;}
.x23{left:210.269987px;}
.x2a{left:231.869987px;}
.x19{left:237.809987px;}
.x5{left:250.049987px;}
.xf{left:258.869987px;}
.x14{left:262.109987px;}
.x1c{left:268.410000px;}
.x2c{left:297.974987px;}
.x24{left:303.554987px;}
.xd{left:330.014987px;}
.x20{left:334.334987px;}
.x6{left:338.294987px;}
.x9{left:361.694987px;}
.x22{left:390.314987px;}
.x1f{left:425.234987px;}
.x1d{left:438.555000px;}
.x15{left:441.254987px;}
.x7{left:461.054987px;}
.x28{left:467.714987px;}
.xa{left:537.944987px;}
.x26{left:562.964987px;}
.x10{left:593.924987px;}
.x1e{left:619.305000px;}
.x27{left:621.644987px;}
.x8{left:629.024987px;}
.xb{left:646.844987px;}
.x2e{left:660.884987px;}
.xc{left:665.429987px;}
.x12{left:680.009987px;}
.x18{left:755.609987px;}
.x16{left:786.749987px;}
.x2d{left:802.589987px;}
.x11{left:810.149987px;}
.x2{left:819.150000px;}
.x13{left:829.229987px;}
@media print{
.v4{vertical-align:-63.360000pt;}
.v2{vertical-align:-61.600000pt;}
.v7{vertical-align:-58.240000pt;}
.v3{vertical-align:-56.320000pt;}
.v5{vertical-align:-53.120000pt;}
.v6{vertical-align:-51.200000pt;}
.v1{vertical-align:-46.720000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.600000pt;}
.ls2a{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls26{letter-spacing:-0.107733pt;}
.lse{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.736000pt;}
.ls28{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:1.920000pt;}
.ls20{letter-spacing:3.840000pt;}
.ls24{letter-spacing:4.640000pt;}
.ls18{letter-spacing:5.760000pt;}
.ls1e{letter-spacing:6.400000pt;}
.ls22{letter-spacing:6.560000pt;}
.ls23{letter-spacing:8.480000pt;}
.ls17{letter-spacing:8.960000pt;}
.ls25{letter-spacing:12.112640pt;}
.ls16{letter-spacing:12.160000pt;}
.ls12{letter-spacing:12.960000pt;}
.ls1b{letter-spacing:13.440000pt;}
.ls1a{letter-spacing:14.080000pt;}
.ls19{letter-spacing:21.120000pt;}
.ls7{letter-spacing:27.200000pt;}
.ls1d{letter-spacing:28.800000pt;}
.ls6{letter-spacing:32.800000pt;}
.ls13{letter-spacing:37.920000pt;}
.ls21{letter-spacing:38.352640pt;}
.ls14{letter-spacing:140.448000pt;}
.ls29{letter-spacing:731.840000pt;}
.ls27{letter-spacing:1786.005333pt;}
.wse{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.448533pt;}
.ws9{word-spacing:-14.016000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws10{word-spacing:-13.172267pt;}
.ws7{word-spacing:-13.096533pt;}
.ws2{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.736000pt;}
.ws4{word-spacing:-12.320000pt;}
.ws5{word-spacing:-11.680000pt;}
.wsd{word-spacing:0.000000pt;}
._b{margin-left:-3.012480pt;}
._8{margin-left:-1.980800pt;}
._4{margin-left:-1.047040pt;}
._0{width:0.903040pt;}
._1{width:1.920000pt;}
._5{width:3.320533pt;}
._3{width:4.519253pt;}
._2{width:5.768107pt;}
._9{width:7.133440pt;}
._15{width:8.142720pt;}
._16{width:9.246080pt;}
._19{width:10.464640pt;}
._1a{width:12.187733pt;}
._1c{width:13.105707pt;}
._11{width:14.287787pt;}
._12{width:15.776640pt;}
._1d{width:17.016320pt;}
._34{width:17.906560pt;}
._e{width:18.804480pt;}
._d{width:20.047360pt;}
._17{width:20.986027pt;}
._18{width:21.935360pt;}
._1f{width:23.078187pt;}
._23{width:24.826880pt;}
._22{width:26.201600pt;}
._7{width:27.988053pt;}
._6{width:29.080747pt;}
._24{width:29.998080pt;}
._21{width:31.034880pt;}
._20{width:32.089600pt;}
._1e{width:34.032640pt;}
._25{width:36.358827pt;}
._26{width:37.324160pt;}
._10{width:38.325973pt;}
._c{width:39.658667pt;}
._30{width:42.230400pt;}
._a{width:43.498667pt;}
._2d{width:45.736320pt;}
._2a{width:48.335573pt;}
._13{width:49.777067pt;}
._14{width:50.917333pt;}
._32{width:61.247360pt;}
._31{width:62.575360pt;}
._2c{width:84.657920pt;}
._2f{width:93.278720pt;}
._29{width:114.101760pt;}
._2b{width:124.460160pt;}
._2e{width:128.125440pt;}
._28{width:212.692480pt;}
._f{width:661.637760pt;}
._33{width:688.360747pt;}
._27{width:713.828053pt;}
._1b{width:863.285333pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:3.040000pt;}
.y6{bottom:3.200000pt;}
.ybc{bottom:3.360000pt;}
.yb8{bottom:3.520000pt;}
.yb2{bottom:18.240000pt;}
.ybb{bottom:18.600000pt;}
.ybf{bottom:18.720000pt;}
.yb7{bottom:18.880000pt;}
.yba{bottom:33.960000pt;}
.ybe{bottom:34.080000pt;}
.yb6{bottom:34.240000pt;}
.yb5{bottom:49.600000pt;}
.y4{bottom:50.400000pt;}
.y43{bottom:78.432000pt;}
.yc6{bottom:87.232000pt;}
.y100{bottom:87.712000pt;}
.y76{bottom:88.352000pt;}
.yae{bottom:91.392000pt;}
.y136{bottom:92.032000pt;}
.y42{bottom:92.192000pt;}
.yff{bottom:102.752000pt;}
.yc5{bottom:104.032000pt;}
.y75{bottom:105.152000pt;}
.y41{bottom:105.312000pt;}
.y135{bottom:105.792000pt;}
.yad{bottom:108.192000pt;}
.yfe{bottom:115.712000pt;}
.y40{bottom:117.152000pt;}
.y134{bottom:118.912000pt;}
.yc4{bottom:120.992000pt;}
.y74{bottom:121.952000pt;}
.yac{bottom:125.152000pt;}
.yfd{bottom:130.912000pt;}
.y3f{bottom:132.512000pt;}
.yc3{bottom:137.786667pt;}
.y73{bottom:138.906667pt;}
.yab{bottom:141.946667pt;}
.yfc{bottom:146.266667pt;}
.y3e{bottom:147.866667pt;}
.yc2{bottom:154.746667pt;}
.y72{bottom:155.706667pt;}
.yaa{bottom:158.746667pt;}
.yfb{bottom:161.626667pt;}
.y3d{bottom:162.106667pt;}
.y133{bottom:164.666667pt;}
.yc1{bottom:170.586667pt;}
.y71{bottom:172.666667pt;}
.y3c{bottom:173.946667pt;}
.ya9{bottom:175.706667pt;}
.yfa{bottom:176.986667pt;}
.yc0{bottom:180.826667pt;}
.y132{bottom:181.626667pt;}
.y3b{bottom:189.306667pt;}
.y70{bottom:189.466667pt;}
.yf9{bottom:192.346667pt;}
.ya8{bottom:192.506667pt;}
.y131{bottom:198.426667pt;}
.y3a{bottom:204.506667pt;}
.y6f{bottom:206.426667pt;}
.yf8{bottom:207.706667pt;}
.ya7{bottom:209.466667pt;}
.y130{bottom:215.386667pt;}
.y39{bottom:219.866667pt;}
.yf7{bottom:222.906667pt;}
.y6e{bottom:223.226667pt;}
.ya6{bottom:226.266667pt;}
.ybd{bottom:227.546667pt;}
.y12f{bottom:232.186667pt;}
.yf6{bottom:238.266667pt;}
.y6d{bottom:240.026667pt;}
.ya5{bottom:243.226667pt;}
.y12e{bottom:248.986667pt;}
.y38{bottom:249.306667pt;}
.yf5{bottom:253.626667pt;}
.y6c{bottom:256.986667pt;}
.ya4{bottom:260.026667pt;}
.y37{bottom:260.986667pt;}
.y12d{bottom:265.946667pt;}
.yf4{bottom:268.986667pt;}
.y6b{bottom:273.786667pt;}
.yb9{bottom:274.266667pt;}
.ya3{bottom:276.826667pt;}
.y12c{bottom:282.746667pt;}
.yf3{bottom:284.346667pt;}
.y6a{bottom:290.746667pt;}
.y36{bottom:291.746667pt;}
.ya2{bottom:293.826667pt;}
.yf2{bottom:299.586667pt;}
.y12b{bottom:299.746667pt;}
.y35{bottom:306.146667pt;}
.y69{bottom:307.586667pt;}
.ya1{bottom:310.626667pt;}
.yf1{bottom:314.946667pt;}
.y12a{bottom:316.546667pt;}
.y34{bottom:317.986667pt;}
.yb4{bottom:320.866667pt;}
.y68{bottom:324.386667pt;}
.ya0{bottom:327.586667pt;}
.yf0{bottom:330.306667pt;}
.y33{bottom:333.346667pt;}
.y67{bottom:341.346667pt;}
.y9f{bottom:344.386667pt;}
.yef{bottom:345.666667pt;}
.y32{bottom:348.706667pt;}
.y129{bottom:349.986667pt;}
.y66{bottom:358.146667pt;}
.yee{bottom:361.026667pt;}
.y9e{bottom:361.186667pt;}
.y128{bottom:365.346667pt;}
.y31{bottom:374.786667pt;}
.y65{bottom:375.106667pt;}
.yed{bottom:376.386667pt;}
.y9d{bottom:378.146667pt;}
.y127{bottom:380.706667pt;}
.yb1{bottom:383.106667pt;}
.y30{bottom:390.146667pt;}
.yec{bottom:391.586667pt;}
.y64{bottom:391.906667pt;}
.y9c{bottom:394.946667pt;}
.y126{bottom:396.066667pt;}
.y2f{bottom:405.506667pt;}
.yeb{bottom:406.946667pt;}
.y63{bottom:408.706667pt;}
.y125{bottom:411.426667pt;}
.y9b{bottom:411.906667pt;}
.yb0{bottom:417.346667pt;}
.y2e{bottom:420.866667pt;}
.yea{bottom:422.306667pt;}
.y62{bottom:425.666667pt;}
.y124{bottom:426.626667pt;}
.y9a{bottom:428.706667pt;}
.yaf{bottom:433.346667pt;}
.y2d{bottom:436.066667pt;}
.ye9{bottom:437.666667pt;}
.y123{bottom:441.986667pt;}
.y61{bottom:442.466667pt;}
.y99{bottom:445.506667pt;}
.y2c{bottom:451.426667pt;}
.ye8{bottom:453.026667pt;}
.y122{bottom:457.346667pt;}
.y60{bottom:459.426667pt;}
.y98{bottom:462.466667pt;}
.y2b{bottom:466.786667pt;}
.ye7{bottom:468.386667pt;}
.y121{bottom:472.706667pt;}
.y5f{bottom:476.226667pt;}
.y97{bottom:479.266667pt;}
.y2a{bottom:482.146667pt;}
.ye6{bottom:483.586667pt;}
.y120{bottom:488.066667pt;}
.y5e{bottom:493.026667pt;}
.y96{bottom:496.226667pt;}
.y29{bottom:497.506667pt;}
.ye5{bottom:498.946667pt;}
.y11f{bottom:503.266667pt;}
.y5d{bottom:509.986667pt;}
.y28{bottom:512.706667pt;}
.y95{bottom:513.026667pt;}
.ye4{bottom:513.986667pt;}
.y11e{bottom:518.626667pt;}
.y5c{bottom:526.786667pt;}
.y27{bottom:528.066667pt;}
.ye3{bottom:528.893333pt;}
.y94{bottom:529.853333pt;}
.y11d{bottom:534.013333pt;}
.ye2{bottom:542.013333pt;}
.y26{bottom:543.453333pt;}
.y5b{bottom:543.773333pt;}
.y93{bottom:546.813333pt;}
.y11c{bottom:549.373333pt;}
.ye1{bottom:557.213333pt;}
.y25{bottom:558.813333pt;}
.y5a{bottom:560.573333pt;}
.y92{bottom:563.613333pt;}
.y11b{bottom:564.733333pt;}
.ye0{bottom:572.573333pt;}
.y24{bottom:574.173333pt;}
.y59{bottom:577.533333pt;}
.y11a{bottom:578.973333pt;}
.y91{bottom:580.573333pt;}
.ydf{bottom:587.933333pt;}
.y23{bottom:589.533333pt;}
.y119{bottom:590.813333pt;}
.y58{bottom:594.333333pt;}
.y90{bottom:597.373333pt;}
.yde{bottom:603.293333pt;}
.y22{bottom:604.733333pt;}
.y118{bottom:606.013333pt;}
.y57{bottom:611.133333pt;}
.y8f{bottom:614.173333pt;}
.ydd{bottom:618.653333pt;}
.y21{bottom:620.093333pt;}
.y117{bottom:621.373333pt;}
.y56{bottom:628.093333pt;}
.y8e{bottom:631.133333pt;}
.ydc{bottom:633.853333pt;}
.y20{bottom:635.453333pt;}
.y116{bottom:636.733333pt;}
.y55{bottom:644.893333pt;}
.y8d{bottom:647.933333pt;}
.ydb{bottom:649.213333pt;}
.y1f{bottom:650.813333pt;}
.y54{bottom:661.853333pt;}
.yda{bottom:664.573333pt;}
.y8c{bottom:664.893333pt;}
.y1e{bottom:666.173333pt;}
.y115{bottom:666.653333pt;}
.y53{bottom:678.653333pt;}
.y114{bottom:679.293333pt;}
.yd9{bottom:679.933333pt;}
.y1d{bottom:681.533333pt;}
.y8b{bottom:681.693333pt;}
.y113{bottom:694.653333pt;}
.yd8{bottom:695.293333pt;}
.y52{bottom:695.453333pt;}
.y1c{bottom:696.733333pt;}
.y8a{bottom:698.653333pt;}
.y112{bottom:710.013333pt;}
.yd7{bottom:710.653333pt;}
.y1b{bottom:710.973333pt;}
.y51{bottom:712.413333pt;}
.y89{bottom:715.453333pt;}
.y1a{bottom:722.813333pt;}
.y111{bottom:724.733333pt;}
.yd6{bottom:725.853333pt;}
.y50{bottom:729.213333pt;}
.y88{bottom:732.253333pt;}
.y19{bottom:738.173333pt;}
.yd5{bottom:741.213333pt;}
.y4f{bottom:746.173333pt;}
.y87{bottom:749.213333pt;}
.y18{bottom:753.533333pt;}
.yd4{bottom:756.573333pt;}
.y4e{bottom:762.973333pt;}
.y86{bottom:766.013333pt;}
.y17{bottom:768.933333pt;}
.yd3{bottom:771.973333pt;}
.y4d{bottom:779.813333pt;}
.y85{bottom:783.013333pt;}
.y110{bottom:783.493333pt;}
.yd2{bottom:787.333333pt;}
.y16{bottom:794.693333pt;}
.y10f{bottom:796.453333pt;}
.y4c{bottom:796.773333pt;}
.y84{bottom:799.813333pt;}
.yd1{bottom:802.693333pt;}
.y15{bottom:809.893333pt;}
.y10e{bottom:811.813333pt;}
.y4b{bottom:813.573333pt;}
.y83{bottom:816.613333pt;}
.yd0{bottom:817.893333pt;}
.y14{bottom:825.253333pt;}
.y10d{bottom:827.173333pt;}
.y4a{bottom:830.533333pt;}
.ycf{bottom:833.253333pt;}
.y82{bottom:833.573333pt;}
.y13{bottom:839.813333pt;}
.y10c{bottom:842.533333pt;}
.y49{bottom:847.333333pt;}
.yce{bottom:848.613333pt;}
.y81{bottom:850.373333pt;}
.y12{bottom:851.653333pt;}
.y10b{bottom:857.893333pt;}
.ycd{bottom:863.973333pt;}
.y48{bottom:864.133333pt;}
.y11{bottom:867.013333pt;}
.y80{bottom:867.333333pt;}
.y10a{bottom:873.093333pt;}
.ycc{bottom:879.333333pt;}
.y47{bottom:881.093333pt;}
.y10{bottom:882.373333pt;}
.y7f{bottom:884.133333pt;}
.y109{bottom:888.453333pt;}
.ycb{bottom:894.693333pt;}
.yf{bottom:897.733333pt;}
.y46{bottom:897.893333pt;}
.y7e{bottom:900.933333pt;}
.y108{bottom:903.813333pt;}
.yca{bottom:909.893333pt;}
.ye{bottom:912.933333pt;}
.y7d{bottom:917.893333pt;}
.y107{bottom:919.173333pt;}
.yc9{bottom:925.253333pt;}
.yd{bottom:928.293333pt;}
.y45{bottom:930.693333pt;}
.y106{bottom:933.733333pt;}
.y7c{bottom:934.693333pt;}
.yc8{bottom:940.293333pt;}
.yc{bottom:943.653333pt;}
.y105{bottom:946.693333pt;}
.y7b{bottom:951.653333pt;}
.yc7{bottom:955.173333pt;}
.yb{bottom:959.013333pt;}
.y104{bottom:962.053333pt;}
.y7a{bottom:968.453333pt;}
.ya{bottom:974.373333pt;}
.y79{bottom:985.253333pt;}
.y103{bottom:989.413333pt;}
.y9{bottom:989.733333pt;}
.y78{bottom:1002.213333pt;}
.y102{bottom:1004.640000pt;}
.y8{bottom:1004.960000pt;}
.y77{bottom:1019.040000pt;}
.y101{bottom:1020.000000pt;}
.y7{bottom:1020.320000pt;}
.y3{bottom:1034.880000pt;}
.y2{bottom:1048.000000pt;}
.y5{bottom:1057.120000pt;}
.y44{bottom:1059.840000pt;}
.y1{bottom:1063.360000pt;}
.h4{height:15.360000pt;}
.h10{height:30.560000pt;}
.h16{height:36.305625pt;}
.h5{height:36.431250pt;}
.h7{height:37.410000pt;}
.hc{height:42.084375pt;}
.h15{height:43.215000pt;}
.h3{height:44.073883pt;}
.h11{height:45.935313pt;}
.h13{height:45.952000pt;}
.h14{height:46.080000pt;}
.h9{height:47.109375pt;}
.h8{height:47.335938pt;}
.h2{height:52.134375pt;}
.hd{height:52.468750pt;}
.h6{height:53.535000pt;}
.hb{height:54.598989pt;}
.hf{height:57.758750pt;}
.ha{height:57.787500pt;}
.he{height:59.340000pt;}
.h12{height:61.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:13.280000pt;}
.w3{width:15.040000pt;}
.w5{width:150.240000pt;}
.w6{width:150.586667pt;}
.w7{width:160.026667pt;}
.w8{width:167.866667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.880000pt;}
.x17{left:56.800000pt;}
.x21{left:80.639988pt;}
.x1a{left:87.712000pt;}
.x1{left:94.591988pt;}
.x29{left:116.671988pt;}
.x3{left:118.431988pt;}
.x4{left:132.351988pt;}
.xe{left:139.866655pt;}
.x2b{left:141.786655pt;}
.x25{left:142.746655pt;}
.x23{left:186.906655pt;}
.x2a{left:206.106655pt;}
.x19{left:211.386655pt;}
.x5{left:222.266655pt;}
.xf{left:230.106655pt;}
.x14{left:232.986655pt;}
.x1c{left:238.586667pt;}
.x2c{left:264.866655pt;}
.x24{left:269.826655pt;}
.xd{left:293.346655pt;}
.x20{left:297.186655pt;}
.x6{left:300.706655pt;}
.x9{left:321.506655pt;}
.x22{left:346.946655pt;}
.x1f{left:377.986655pt;}
.x1d{left:389.826667pt;}
.x15{left:392.226655pt;}
.x7{left:409.826655pt;}
.x28{left:415.746655pt;}
.xa{left:478.173322pt;}
.x26{left:500.413322pt;}
.x10{left:527.933322pt;}
.x1e{left:550.493333pt;}
.x27{left:552.573322pt;}
.x8{left:559.133322pt;}
.xb{left:574.973322pt;}
.x2e{left:587.453322pt;}
.xc{left:591.493322pt;}
.x12{left:604.453322pt;}
.x18{left:671.653322pt;}
.x16{left:699.333322pt;}
.x2d{left:713.413322pt;}
.x11{left:720.133322pt;}
.x2{left:728.133333pt;}
.x13{left:737.093322pt;}
}




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