
    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_8aabc6c23e35629035cb7ff1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_2c378f70f6dcd6684180f332.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893066;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_2251da1e1d923c1e9eda5663.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_17905061dbbe51c7b6ca1a47.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_70a25ffde4f7c92371bb8445.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:24.120000px;}
.v1{vertical-align:29.856600px;}
.ls21{letter-spacing:-0.486000px;}
.ls1d{letter-spacing:-0.378000px;}
.ls11{letter-spacing:-0.324000px;}
.ls13{letter-spacing:-0.240480px;}
.ls12{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.197640px;}
.lse{letter-spacing:-0.162000px;}
.lsc{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.065880px;}
.lsa{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.065880px;}
.ls39{letter-spacing:0.070200px;}
.lsd{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.108000px;}
.ls23{letter-spacing:0.118800px;}
.lsb{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.167760px;}
.ls2{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.197640px;}
.ls3b{letter-spacing:0.198000px;}
.ls38{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.232200px;}
.ls7{letter-spacing:0.405000px;}
.ls34{letter-spacing:0.459000px;}
.ls30{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.772200px;}
.ls15{letter-spacing:1.668600px;}
.ls22{letter-spacing:1.701000px;}
.ls31{letter-spacing:1.787400px;}
.ls1e{letter-spacing:1.792800px;}
.ls2c{letter-spacing:1.906200px;}
.ls28{letter-spacing:1.992600px;}
.ls36{letter-spacing:1.998000px;}
.ls14{letter-spacing:2.322000px;}
.ls2b{letter-spacing:2.721600px;}
.ls20{letter-spacing:2.764800px;}
.ls17{letter-spacing:3.078000px;}
.ls33{letter-spacing:3.774600px;}
.ls16{letter-spacing:4.006800px;}
.ls1b{letter-spacing:4.482000px;}
.ls19{letter-spacing:4.541400px;}
.ls32{letter-spacing:4.854600px;}
.ls29{letter-spacing:5.238000px;}
.ls2e{letter-spacing:5.853600px;}
.ls2f{letter-spacing:5.940000px;}
.ls27{letter-spacing:6.642000px;}
.ls2a{letter-spacing:7.020000px;}
.ls25{letter-spacing:7.398000px;}
.ls1c{letter-spacing:8.100000px;}
.ls24{letter-spacing:8.802000px;}
.ls35{letter-spacing:9.180000px;}
.ls2d{letter-spacing:9.433800px;}
.ls1f{letter-spacing:10.260000px;}
.ls26{letter-spacing:10.962000px;}
.ls3a{letter-spacing:25.326000px;}
.ls37{letter-spacing:52.326000px;}
.ls6{letter-spacing:185.922000px;}
.ls5{letter-spacing:1456.650000px;}
.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;}
}
.ws2{word-spacing:-18.072000px;}
.ws1{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.667640px;}
.ws22{word-spacing:-16.470000px;}
.ws5{word-spacing:-16.404120px;}
.ws21{word-spacing:-16.272360px;}
.wsd{word-spacing:-14.789520px;}
.ws3{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.662000px;}
.ws8{word-spacing:-13.608000px;}
.ws7{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.392000px;}
.wsc{word-spacing:-13.338000px;}
.wsb{word-spacing:-13.284000px;}
.ws5e{word-spacing:-13.176000px;}
.ws3d{word-spacing:-13.122000px;}
.ws4{word-spacing:-10.530000px;}
.ws6{word-spacing:-9.000000px;}
.ws60{word-spacing:-0.324000px;}
.ws4a{word-spacing:-0.270000px;}
.ws14{word-spacing:-0.251640px;}
.ws10{word-spacing:-0.243000px;}
.ws23{word-spacing:-0.197640px;}
.ws19{word-spacing:-0.162000px;}
.wsf{word-spacing:-0.144000px;}
.ws24{word-spacing:-0.131760px;}
.ws1b{word-spacing:-0.108000px;}
.ws15{word-spacing:-0.065880px;}
.wse{word-spacing:0.000000px;}
.ws1d{word-spacing:0.054000px;}
.ws12{word-spacing:0.081000px;}
.ws16{word-spacing:0.108000px;}
.ws11{word-spacing:0.162000px;}
.ws13{word-spacing:0.170640px;}
.ws31{word-spacing:0.216000px;}
.ws42{word-spacing:0.270000px;}
.ws17{word-spacing:0.324000px;}
.ws1e{word-spacing:0.378000px;}
.ws2d{word-spacing:0.432000px;}
.ws4d{word-spacing:0.486000px;}
.ws2c{word-spacing:0.540000px;}
.ws49{word-spacing:0.756000px;}
.ws1f{word-spacing:0.918000px;}
.ws1c{word-spacing:1.134000px;}
.ws1a{word-spacing:1.242000px;}
.ws46{word-spacing:1.458000px;}
.ws39{word-spacing:1.620000px;}
.ws38{word-spacing:1.728000px;}
.ws4c{word-spacing:1.782000px;}
.ws68{word-spacing:1.836000px;}
.ws6a{word-spacing:1.890000px;}
.ws28{word-spacing:1.998000px;}
.ws67{word-spacing:2.106000px;}
.ws29{word-spacing:2.160000px;}
.ws27{word-spacing:2.322000px;}
.ws2a{word-spacing:2.538000px;}
.ws4b{word-spacing:2.592000px;}
.ws20{word-spacing:2.700000px;}
.ws45{word-spacing:2.916000px;}
.ws3c{word-spacing:3.078000px;}
.ws66{word-spacing:3.186000px;}
.ws3e{word-spacing:3.240000px;}
.ws2b{word-spacing:3.402000px;}
.ws4f{word-spacing:3.510000px;}
.ws69{word-spacing:3.618000px;}
.ws2e{word-spacing:3.780000px;}
.ws43{word-spacing:3.996000px;}
.ws18{word-spacing:4.158000px;}
.ws3f{word-spacing:4.482000px;}
.ws5f{word-spacing:4.752000px;}
.ws40{word-spacing:4.860000px;}
.ws4e{word-spacing:5.076000px;}
.ws6e{word-spacing:5.130000px;}
.ws2f{word-spacing:5.238000px;}
.ws65{word-spacing:5.400000px;}
.ws32{word-spacing:5.562000px;}
.ws64{word-spacing:5.778000px;}
.ws5d{word-spacing:5.832000px;}
.ws34{word-spacing:5.940000px;}
.ws63{word-spacing:6.048000px;}
.ws57{word-spacing:6.318000px;}
.ws56{word-spacing:6.426000px;}
.ws6b{word-spacing:6.480000px;}
.ws52{word-spacing:6.642000px;}
.ws55{word-spacing:6.750000px;}
.ws54{word-spacing:7.020000px;}
.ws30{word-spacing:7.398000px;}
.ws53{word-spacing:7.722000px;}
.ws6c{word-spacing:8.100000px;}
.ws41{word-spacing:8.316000px;}
.ws37{word-spacing:8.478000px;}
.ws3a{word-spacing:8.802000px;}
.ws36{word-spacing:9.018000px;}
.ws70{word-spacing:9.072000px;}
.ws35{word-spacing:9.180000px;}
.ws6f{word-spacing:9.288000px;}
.ws5b{word-spacing:9.396000px;}
.ws5c{word-spacing:9.558000px;}
.ws3b{word-spacing:9.882000px;}
.ws44{word-spacing:10.260000px;}
.ws6d{word-spacing:10.476000px;}
.ws51{word-spacing:10.638000px;}
.ws48{word-spacing:10.962000px;}
.ws50{word-spacing:11.070000px;}
.ws47{word-spacing:11.340000px;}
.ws61{word-spacing:12.042000px;}
.ws25{word-spacing:12.420000px;}
.ws26{word-spacing:12.528000px;}
.ws62{word-spacing:15.282000px;}
.ws59{word-spacing:16.956000px;}
.ws5a{word-spacing:17.118000px;}
.ws58{word-spacing:17.226000px;}
.ws33{word-spacing:18.198000px;}
._0{margin-left:-1.368000px;}
._1{width:1.182600px;}
._9{width:2.592000px;}
._4{width:4.392000px;}
._8{width:6.966000px;}
._7{width:9.455400px;}
._6{width:13.767480px;}
._3{width:816.912720px;}
._5{width:1549.172160px;}
._2{width:1867.039200px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,113,187);}
.fc1{color:rgb(23,111,184);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs7{font-size:42.120000px;}
.fs4{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.000000px;}
.fs6{font-size:83.880000px;}
.y35{bottom:-17.370000px;}
.y0{bottom:0.000000px;}
.y34{bottom:1.440000px;}
.y30{bottom:5.040000px;}
.y2f{bottom:38.700000px;}
.y2{bottom:58.320090px;}
.y32{bottom:61.920000px;}
.yb3{bottom:72.265500px;}
.y94{bottom:72.270000px;}
.y1{bottom:77.310000px;}
.y64{bottom:91.440000px;}
.ya8{bottom:95.310000px;}
.y93{bottom:95.580000px;}
.y2e{bottom:98.370000px;}
.y63{bottom:114.750000px;}
.y92{bottom:118.620000px;}
.ya7{bottom:118.890000px;}
.y2d{bottom:121.590000px;}
.y62{bottom:138.240000px;}
.y91{bottom:142.200000px;}
.y2c{bottom:149.760000px;}
.y61{bottom:161.550000px;}
.ya6{bottom:165.150000px;}
.y90{bottom:165.420000px;}
.y2b{bottom:176.850000px;}
.y60{bottom:184.860000px;}
.y8f{bottom:188.460000px;}
.ya5{bottom:188.730000px;}
.y2a{bottom:203.364000px;}
.y5f{bottom:208.080000px;}
.y8e{bottom:211.770000px;}
.ya4{bottom:212.040000px;}
.y29{bottom:226.948500px;}
.y5e{bottom:231.390000px;}
.ya3{bottom:235.080000px;}
.y8d{bottom:235.350000px;}
.y28{bottom:250.614000px;}
.y5d{bottom:254.430000px;}
.yb6{bottom:258.300000px;}
.y8c{bottom:258.570000px;}
.y27{bottom:273.928500px;}
.y5c{bottom:278.010000px;}
.yb2{bottom:281.610000px;}
.y8b{bottom:281.880000px;}
.y26{bottom:297.243000px;}
.y5b{bottom:301.230000px;}
.ya2{bottom:304.920000px;}
.y8a{bottom:305.190000px;}
.y25{bottom:320.463000px;}
.y5a{bottom:324.270000px;}
.y89{bottom:328.140000px;}
.ya1{bottom:328.410000px;}
.y24{bottom:343.777500px;}
.y59{bottom:347.850000px;}
.yb1{bottom:351.450000px;}
.y88{bottom:351.720000px;}
.y23{bottom:367.092000px;}
.y58{bottom:371.160000px;}
.ya0{bottom:374.760000px;}
.y87{bottom:375.030000px;}
.y22{bottom:390.406500px;}
.y57{bottom:394.110000px;}
.y86{bottom:398.340000px;}
.y21{bottom:413.626500px;}
.y56{bottom:417.690000px;}
.y85{bottom:421.290000px;}
.y9f{bottom:421.560000px;}
.y20{bottom:436.941000px;}
.y55{bottom:441.000000px;}
.yb5{bottom:444.600000px;}
.y84{bottom:444.870000px;}
.y1f{bottom:460.255500px;}
.y54{bottom:463.950000px;}
.y83{bottom:467.910000px;}
.yb0{bottom:468.180000px;}
.y1e{bottom:483.475500px;}
.y53{bottom:487.260000px;}
.yaf{bottom:491.220000px;}
.y82{bottom:491.490000px;}
.y1d{bottom:506.790000px;}
.y52{bottom:510.570000px;}
.y81{bottom:514.440000px;}
.y9e{bottom:514.710000px;}
.y1c{bottom:530.010000px;}
.y51{bottom:533.704500px;}
.y80{bottom:538.020000px;}
.y1b{bottom:553.410000px;}
.yae{bottom:561.060000px;}
.y50{bottom:561.244500px;}
.y7f{bottom:561.330000px;}
.y7e{bottom:584.280000px;}
.y4f{bottom:584.464500px;}
.yad{bottom:584.550000px;}
.y1a{bottom:585.621000px;}
.y4e{bottom:607.779000px;}
.y7d{bottom:607.860000px;}
.y19{bottom:608.935500px;}
.yac{bottom:630.900000px;}
.y4d{bottom:631.093500px;}
.y7c{bottom:631.170000px;}
.y18{bottom:632.250000px;}
.y7b{bottom:654.210000px;}
.y4c{bottom:654.408000px;}
.yab{bottom:654.480000px;}
.y17{bottom:657.540000px;}
.y4b{bottom:677.628000px;}
.y7a{bottom:677.700000px;}
.y16{bottom:683.995500px;}
.y79{bottom:700.740000px;}
.y4a{bottom:700.942500px;}
.y9d{bottom:701.010000px;}
.y15{bottom:707.310000px;}
.y78{bottom:724.050000px;}
.y49{bottom:724.257000px;}
.yb9{bottom:724.320000px;}
.y14{bottom:736.560000px;}
.yba{bottom:747.360000px;}
.y48{bottom:747.571500px;}
.y77{bottom:747.630000px;}
.y13{bottom:759.870000px;}
.yb8{bottom:770.580000px;}
.y47{bottom:770.791500px;}
.y76{bottom:770.850000px;}
.y12{bottom:783.180000px;}
.y9c{bottom:793.890000px;}
.y46{bottom:794.106000px;}
.y75{bottom:794.160000px;}
.y11{bottom:802.436310px;}
.ybd{bottom:817.200000px;}
.y45{bottom:817.420500px;}
.y74{bottom:817.470000px;}
.y10{bottom:830.885850px;}
.y73{bottom:840.420000px;}
.y44{bottom:840.640500px;}
.y9b{bottom:840.690000px;}
.yf{bottom:862.920000px;}
.y9a{bottom:863.729850px;}
.y43{bottom:863.955000px;}
.y72{bottom:864.000000px;}
.yb7{bottom:887.040000px;}
.y42{bottom:887.269500px;}
.y71{bottom:887.310000px;}
.ye{bottom:897.030000px;}
.y70{bottom:910.350000px;}
.y41{bottom:910.584000px;}
.y99{bottom:910.620000px;}
.yd{bottom:929.700000px;}
.yaa{bottom:933.570000px;}
.y40{bottom:933.804000px;}
.y6f{bottom:933.840000px;}
.y98{bottom:956.880000px;}
.y3f{bottom:957.118500px;}
.y6e{bottom:957.150000px;}
.y9{bottom:963.369000px;}
.yc{bottom:964.703160px;}
.y6d{bottom:980.190000px;}
.y3e{bottom:980.433000px;}
.y97{bottom:980.460000px;}
.yb{bottom:989.190000px;}
.y8{bottom:998.280000px;}
.ya9{bottom:1003.500000px;}
.y3d{bottom:1003.747500px;}
.y6c{bottom:1003.770000px;}
.ya{bottom:1012.140000px;}
.yb4{bottom:1026.720000px;}
.y3c{bottom:1026.967500px;}
.y6b{bottom:1026.990000px;}
.y7{bottom:1036.979850px;}
.ybc{bottom:1050.030000px;}
.y3b{bottom:1050.282000px;}
.y6a{bottom:1050.300000px;}
.y6{bottom:1064.881260px;}
.y69{bottom:1073.340000px;}
.y3a{bottom:1073.596500px;}
.y96{bottom:1073.610000px;}
.y5{bottom:1094.670720px;}
.y95{bottom:1096.560000px;}
.y39{bottom:1096.816500px;}
.y68{bottom:1096.830000px;}
.y38{bottom:1120.131000px;}
.y67{bottom:1120.140000px;}
.y4{bottom:1124.370000px;}
.ybb{bottom:1143.180000px;}
.y37{bottom:1143.445500px;}
.y66{bottom:1143.450000px;}
.y3{bottom:1156.500000px;}
.y65{bottom:1166.490000px;}
.y36{bottom:1166.760000px;}
.y31{bottom:1193.670000px;}
.y33{bottom:1194.750000px;}
.h15{height:16.740000px;}
.h13{height:21.240000px;}
.hf{height:24.996094px;}
.h7{height:32.449922px;}
.h16{height:36.597656px;}
.h10{height:37.494141px;}
.h12{height:37.520508px;}
.h8{height:38.549531px;}
.h9{height:39.493828px;}
.h4{height:40.745391px;}
.ha{height:41.743477px;}
.h14{height:41.772832px;}
.h11{height:44.616973px;}
.h5{height:44.649141px;}
.he{height:44.663901px;}
.h2{height:45.775020px;}
.h3{height:48.796875px;}
.hb{height:50.027344px;}
.h6{height:54.896484px;}
.hc{height:56.848359px;}
.hd{height:58.402772px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w2{width:24.750000px;}
.w3{width:340.651500px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x19{left:4.500000px;}
.x1b{left:10.800000px;}
.x2{left:37.524330px;}
.xe{left:47.257020px;}
.x16{left:53.991000px;}
.xf{left:55.530000px;}
.x11{left:60.484500px;}
.x13{left:62.806500px;}
.x12{left:64.426500px;}
.x10{left:67.950000px;}
.xc{left:71.460000px;}
.x14{left:72.796500px;}
.x1f{left:74.250000px;}
.xd{left:242.099100px;}
.x7{left:244.086750px;}
.x3{left:270.000000px;}
.x6{left:290.520000px;}
.x15{left:307.332000px;}
.x1d{left:343.890000px;}
.x17{left:388.800000px;}
.x1e{left:403.470000px;}
.x1c{left:410.926500px;}
.x18{left:433.980000px;}
.x1{left:438.750000px;}
.x4{left:450.360000px;}
.xb{left:452.250000px;}
.xa{left:506.340180px;}
.x1a{left:523.170000px;}
.x9{left:527.400000px;}
.x8{left:671.850000px;}
.x5{left:856.530720px;}
@media print{
.v2{vertical-align:-21.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.440000pt;}
.v1{vertical-align:26.539200pt;}
.ls21{letter-spacing:-0.432000pt;}
.ls1d{letter-spacing:-0.336000pt;}
.ls11{letter-spacing:-0.288000pt;}
.ls13{letter-spacing:-0.213760pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.175680pt;}
.lse{letter-spacing:-0.144000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.058560pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.058560pt;}
.ls39{letter-spacing:0.062400pt;}
.lsd{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.096000pt;}
.ls23{letter-spacing:0.105600pt;}
.lsb{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.149120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.175680pt;}
.ls3b{letter-spacing:0.176000pt;}
.ls38{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.206400pt;}
.ls7{letter-spacing:0.360000pt;}
.ls34{letter-spacing:0.408000pt;}
.ls30{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.686400pt;}
.ls15{letter-spacing:1.483200pt;}
.ls22{letter-spacing:1.512000pt;}
.ls31{letter-spacing:1.588800pt;}
.ls1e{letter-spacing:1.593600pt;}
.ls2c{letter-spacing:1.694400pt;}
.ls28{letter-spacing:1.771200pt;}
.ls36{letter-spacing:1.776000pt;}
.ls14{letter-spacing:2.064000pt;}
.ls2b{letter-spacing:2.419200pt;}
.ls20{letter-spacing:2.457600pt;}
.ls17{letter-spacing:2.736000pt;}
.ls33{letter-spacing:3.355200pt;}
.ls16{letter-spacing:3.561600pt;}
.ls1b{letter-spacing:3.984000pt;}
.ls19{letter-spacing:4.036800pt;}
.ls32{letter-spacing:4.315200pt;}
.ls29{letter-spacing:4.656000pt;}
.ls2e{letter-spacing:5.203200pt;}
.ls2f{letter-spacing:5.280000pt;}
.ls27{letter-spacing:5.904000pt;}
.ls2a{letter-spacing:6.240000pt;}
.ls25{letter-spacing:6.576000pt;}
.ls1c{letter-spacing:7.200000pt;}
.ls24{letter-spacing:7.824000pt;}
.ls35{letter-spacing:8.160000pt;}
.ls2d{letter-spacing:8.385600pt;}
.ls1f{letter-spacing:9.120000pt;}
.ls26{letter-spacing:9.744000pt;}
.ls3a{letter-spacing:22.512000pt;}
.ls37{letter-spacing:46.512000pt;}
.ls6{letter-spacing:165.264000pt;}
.ls5{letter-spacing:1294.800000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.815680pt;}
.ws22{word-spacing:-14.640000pt;}
.ws5{word-spacing:-14.581440pt;}
.ws21{word-spacing:-14.464320pt;}
.wsd{word-spacing:-13.146240pt;}
.ws3{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.144000pt;}
.ws8{word-spacing:-12.096000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.904000pt;}
.wsc{word-spacing:-11.856000pt;}
.wsb{word-spacing:-11.808000pt;}
.ws5e{word-spacing:-11.712000pt;}
.ws3d{word-spacing:-11.664000pt;}
.ws4{word-spacing:-9.360000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws60{word-spacing:-0.288000pt;}
.ws4a{word-spacing:-0.240000pt;}
.ws14{word-spacing:-0.223680pt;}
.ws10{word-spacing:-0.216000pt;}
.ws23{word-spacing:-0.175680pt;}
.ws19{word-spacing:-0.144000pt;}
.wsf{word-spacing:-0.128000pt;}
.ws24{word-spacing:-0.117120pt;}
.ws1b{word-spacing:-0.096000pt;}
.ws15{word-spacing:-0.058560pt;}
.wse{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.048000pt;}
.ws12{word-spacing:0.072000pt;}
.ws16{word-spacing:0.096000pt;}
.ws11{word-spacing:0.144000pt;}
.ws13{word-spacing:0.151680pt;}
.ws31{word-spacing:0.192000pt;}
.ws42{word-spacing:0.240000pt;}
.ws17{word-spacing:0.288000pt;}
.ws1e{word-spacing:0.336000pt;}
.ws2d{word-spacing:0.384000pt;}
.ws4d{word-spacing:0.432000pt;}
.ws2c{word-spacing:0.480000pt;}
.ws49{word-spacing:0.672000pt;}
.ws1f{word-spacing:0.816000pt;}
.ws1c{word-spacing:1.008000pt;}
.ws1a{word-spacing:1.104000pt;}
.ws46{word-spacing:1.296000pt;}
.ws39{word-spacing:1.440000pt;}
.ws38{word-spacing:1.536000pt;}
.ws4c{word-spacing:1.584000pt;}
.ws68{word-spacing:1.632000pt;}
.ws6a{word-spacing:1.680000pt;}
.ws28{word-spacing:1.776000pt;}
.ws67{word-spacing:1.872000pt;}
.ws29{word-spacing:1.920000pt;}
.ws27{word-spacing:2.064000pt;}
.ws2a{word-spacing:2.256000pt;}
.ws4b{word-spacing:2.304000pt;}
.ws20{word-spacing:2.400000pt;}
.ws45{word-spacing:2.592000pt;}
.ws3c{word-spacing:2.736000pt;}
.ws66{word-spacing:2.832000pt;}
.ws3e{word-spacing:2.880000pt;}
.ws2b{word-spacing:3.024000pt;}
.ws4f{word-spacing:3.120000pt;}
.ws69{word-spacing:3.216000pt;}
.ws2e{word-spacing:3.360000pt;}
.ws43{word-spacing:3.552000pt;}
.ws18{word-spacing:3.696000pt;}
.ws3f{word-spacing:3.984000pt;}
.ws5f{word-spacing:4.224000pt;}
.ws40{word-spacing:4.320000pt;}
.ws4e{word-spacing:4.512000pt;}
.ws6e{word-spacing:4.560000pt;}
.ws2f{word-spacing:4.656000pt;}
.ws65{word-spacing:4.800000pt;}
.ws32{word-spacing:4.944000pt;}
.ws64{word-spacing:5.136000pt;}
.ws5d{word-spacing:5.184000pt;}
.ws34{word-spacing:5.280000pt;}
.ws63{word-spacing:5.376000pt;}
.ws57{word-spacing:5.616000pt;}
.ws56{word-spacing:5.712000pt;}
.ws6b{word-spacing:5.760000pt;}
.ws52{word-spacing:5.904000pt;}
.ws55{word-spacing:6.000000pt;}
.ws54{word-spacing:6.240000pt;}
.ws30{word-spacing:6.576000pt;}
.ws53{word-spacing:6.864000pt;}
.ws6c{word-spacing:7.200000pt;}
.ws41{word-spacing:7.392000pt;}
.ws37{word-spacing:7.536000pt;}
.ws3a{word-spacing:7.824000pt;}
.ws36{word-spacing:8.016000pt;}
.ws70{word-spacing:8.064000pt;}
.ws35{word-spacing:8.160000pt;}
.ws6f{word-spacing:8.256000pt;}
.ws5b{word-spacing:8.352000pt;}
.ws5c{word-spacing:8.496000pt;}
.ws3b{word-spacing:8.784000pt;}
.ws44{word-spacing:9.120000pt;}
.ws6d{word-spacing:9.312000pt;}
.ws51{word-spacing:9.456000pt;}
.ws48{word-spacing:9.744000pt;}
.ws50{word-spacing:9.840000pt;}
.ws47{word-spacing:10.080000pt;}
.ws61{word-spacing:10.704000pt;}
.ws25{word-spacing:11.040000pt;}
.ws26{word-spacing:11.136000pt;}
.ws62{word-spacing:13.584000pt;}
.ws59{word-spacing:15.072000pt;}
.ws5a{word-spacing:15.216000pt;}
.ws58{word-spacing:15.312000pt;}
.ws33{word-spacing:16.176000pt;}
._0{margin-left:-1.216000pt;}
._1{width:1.051200pt;}
._9{width:2.304000pt;}
._4{width:3.904000pt;}
._8{width:6.192000pt;}
._7{width:8.404800pt;}
._6{width:12.237760pt;}
._3{width:726.144640pt;}
._5{width:1377.041920pt;}
._2{width:1659.590400pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:37.440000pt;}
.fs4{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.000000pt;}
.fs6{font-size:74.560000pt;}
.y35{bottom:-15.440000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:1.280000pt;}
.y30{bottom:4.480000pt;}
.y2f{bottom:34.400000pt;}
.y2{bottom:51.840080pt;}
.y32{bottom:55.040000pt;}
.yb3{bottom:64.236000pt;}
.y94{bottom:64.240000pt;}
.y1{bottom:68.720000pt;}
.y64{bottom:81.280000pt;}
.ya8{bottom:84.720000pt;}
.y93{bottom:84.960000pt;}
.y2e{bottom:87.440000pt;}
.y63{bottom:102.000000pt;}
.y92{bottom:105.440000pt;}
.ya7{bottom:105.680000pt;}
.y2d{bottom:108.080000pt;}
.y62{bottom:122.880000pt;}
.y91{bottom:126.400000pt;}
.y2c{bottom:133.120000pt;}
.y61{bottom:143.600000pt;}
.ya6{bottom:146.800000pt;}
.y90{bottom:147.040000pt;}
.y2b{bottom:157.200000pt;}
.y60{bottom:164.320000pt;}
.y8f{bottom:167.520000pt;}
.ya5{bottom:167.760000pt;}
.y2a{bottom:180.768000pt;}
.y5f{bottom:184.960000pt;}
.y8e{bottom:188.240000pt;}
.ya4{bottom:188.480000pt;}
.y29{bottom:201.732000pt;}
.y5e{bottom:205.680000pt;}
.ya3{bottom:208.960000pt;}
.y8d{bottom:209.200000pt;}
.y28{bottom:222.768000pt;}
.y5d{bottom:226.160000pt;}
.yb6{bottom:229.600000pt;}
.y8c{bottom:229.840000pt;}
.y27{bottom:243.492000pt;}
.y5c{bottom:247.120000pt;}
.yb2{bottom:250.320000pt;}
.y8b{bottom:250.560000pt;}
.y26{bottom:264.216000pt;}
.y5b{bottom:267.760000pt;}
.ya2{bottom:271.040000pt;}
.y8a{bottom:271.280000pt;}
.y25{bottom:284.856000pt;}
.y5a{bottom:288.240000pt;}
.y89{bottom:291.680000pt;}
.ya1{bottom:291.920000pt;}
.y24{bottom:305.580000pt;}
.y59{bottom:309.200000pt;}
.yb1{bottom:312.400000pt;}
.y88{bottom:312.640000pt;}
.y23{bottom:326.304000pt;}
.y58{bottom:329.920000pt;}
.ya0{bottom:333.120000pt;}
.y87{bottom:333.360000pt;}
.y22{bottom:347.028000pt;}
.y57{bottom:350.320000pt;}
.y86{bottom:354.080000pt;}
.y21{bottom:367.668000pt;}
.y56{bottom:371.280000pt;}
.y85{bottom:374.480000pt;}
.y9f{bottom:374.720000pt;}
.y20{bottom:388.392000pt;}
.y55{bottom:392.000000pt;}
.yb5{bottom:395.200000pt;}
.y84{bottom:395.440000pt;}
.y1f{bottom:409.116000pt;}
.y54{bottom:412.400000pt;}
.y83{bottom:415.920000pt;}
.yb0{bottom:416.160000pt;}
.y1e{bottom:429.756000pt;}
.y53{bottom:433.120000pt;}
.yaf{bottom:436.640000pt;}
.y82{bottom:436.880000pt;}
.y1d{bottom:450.480000pt;}
.y52{bottom:453.840000pt;}
.y81{bottom:457.280000pt;}
.y9e{bottom:457.520000pt;}
.y1c{bottom:471.120000pt;}
.y51{bottom:474.404000pt;}
.y80{bottom:478.240000pt;}
.y1b{bottom:491.920000pt;}
.yae{bottom:498.720000pt;}
.y50{bottom:498.884000pt;}
.y7f{bottom:498.960000pt;}
.y7e{bottom:519.360000pt;}
.y4f{bottom:519.524000pt;}
.yad{bottom:519.600000pt;}
.y1a{bottom:520.552000pt;}
.y4e{bottom:540.248000pt;}
.y7d{bottom:540.320000pt;}
.y19{bottom:541.276000pt;}
.yac{bottom:560.800000pt;}
.y4d{bottom:560.972000pt;}
.y7c{bottom:561.040000pt;}
.y18{bottom:562.000000pt;}
.y7b{bottom:581.520000pt;}
.y4c{bottom:581.696000pt;}
.yab{bottom:581.760000pt;}
.y17{bottom:584.480000pt;}
.y4b{bottom:602.336000pt;}
.y7a{bottom:602.400000pt;}
.y16{bottom:607.996000pt;}
.y79{bottom:622.880000pt;}
.y4a{bottom:623.060000pt;}
.y9d{bottom:623.120000pt;}
.y15{bottom:628.720000pt;}
.y78{bottom:643.600000pt;}
.y49{bottom:643.784000pt;}
.yb9{bottom:643.840000pt;}
.y14{bottom:654.720000pt;}
.yba{bottom:664.320000pt;}
.y48{bottom:664.508000pt;}
.y77{bottom:664.560000pt;}
.y13{bottom:675.440000pt;}
.yb8{bottom:684.960000pt;}
.y47{bottom:685.148000pt;}
.y76{bottom:685.200000pt;}
.y12{bottom:696.160000pt;}
.y9c{bottom:705.680000pt;}
.y46{bottom:705.872000pt;}
.y75{bottom:705.920000pt;}
.y11{bottom:713.276720pt;}
.ybd{bottom:726.400000pt;}
.y45{bottom:726.596000pt;}
.y74{bottom:726.640000pt;}
.y10{bottom:738.565200pt;}
.y73{bottom:747.040000pt;}
.y44{bottom:747.236000pt;}
.y9b{bottom:747.280000pt;}
.yf{bottom:767.040000pt;}
.y9a{bottom:767.759867pt;}
.y43{bottom:767.960000pt;}
.y72{bottom:768.000000pt;}
.yb7{bottom:788.480000pt;}
.y42{bottom:788.684000pt;}
.y71{bottom:788.720000pt;}
.ye{bottom:797.360000pt;}
.y70{bottom:809.200000pt;}
.y41{bottom:809.408000pt;}
.y99{bottom:809.440000pt;}
.yd{bottom:826.400000pt;}
.yaa{bottom:829.840000pt;}
.y40{bottom:830.048000pt;}
.y6f{bottom:830.080000pt;}
.y98{bottom:850.560000pt;}
.y3f{bottom:850.772000pt;}
.y6e{bottom:850.800000pt;}
.y9{bottom:856.328000pt;}
.yc{bottom:857.513920pt;}
.y6d{bottom:871.280000pt;}
.y3e{bottom:871.496000pt;}
.y97{bottom:871.520000pt;}
.yb{bottom:879.280000pt;}
.y8{bottom:887.360000pt;}
.ya9{bottom:892.000000pt;}
.y3d{bottom:892.220000pt;}
.y6c{bottom:892.240000pt;}
.ya{bottom:899.680000pt;}
.yb4{bottom:912.640000pt;}
.y3c{bottom:912.860000pt;}
.y6b{bottom:912.880000pt;}
.y7{bottom:921.759867pt;}
.ybc{bottom:933.360000pt;}
.y3b{bottom:933.584000pt;}
.y6a{bottom:933.600000pt;}
.y6{bottom:946.561120pt;}
.y69{bottom:954.080000pt;}
.y3a{bottom:954.308000pt;}
.y96{bottom:954.320000pt;}
.y5{bottom:973.040640pt;}
.y95{bottom:974.720000pt;}
.y39{bottom:974.948000pt;}
.y68{bottom:974.960000pt;}
.y38{bottom:995.672000pt;}
.y67{bottom:995.680000pt;}
.y4{bottom:999.440000pt;}
.ybb{bottom:1016.160000pt;}
.y37{bottom:1016.396000pt;}
.y66{bottom:1016.400000pt;}
.y3{bottom:1028.000000pt;}
.y65{bottom:1036.880000pt;}
.y36{bottom:1037.120000pt;}
.y31{bottom:1061.040000pt;}
.y33{bottom:1062.000000pt;}
.h15{height:14.880000pt;}
.h13{height:18.880000pt;}
.hf{height:22.218750pt;}
.h7{height:28.844375pt;}
.h16{height:32.531250pt;}
.h10{height:33.328125pt;}
.h12{height:33.351562pt;}
.h8{height:34.266250pt;}
.h9{height:35.105625pt;}
.h4{height:36.218125pt;}
.ha{height:37.105312pt;}
.h14{height:37.131406pt;}
.h11{height:39.659531pt;}
.h5{height:39.688125pt;}
.he{height:39.701245pt;}
.h2{height:40.688906pt;}
.h3{height:43.375000pt;}
.hb{height:44.468750pt;}
.h6{height:48.796875pt;}
.hc{height:50.531875pt;}
.hd{height:51.913575pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w2{width:22.000000pt;}
.w3{width:302.801333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x19{left:4.000000pt;}
.x1b{left:9.600000pt;}
.x2{left:33.354960pt;}
.xe{left:42.006240pt;}
.x16{left:47.992000pt;}
.xf{left:49.360000pt;}
.x11{left:53.764000pt;}
.x13{left:55.828000pt;}
.x12{left:57.268000pt;}
.x10{left:60.400000pt;}
.xc{left:63.520000pt;}
.x14{left:64.708000pt;}
.x1f{left:66.000000pt;}
.xd{left:215.199200pt;}
.x7{left:216.966000pt;}
.x3{left:240.000000pt;}
.x6{left:258.240000pt;}
.x15{left:273.184000pt;}
.x1d{left:305.680000pt;}
.x17{left:345.600000pt;}
.x1e{left:358.640000pt;}
.x1c{left:365.268000pt;}
.x18{left:385.760000pt;}
.x1{left:390.000000pt;}
.x4{left:400.320000pt;}
.xb{left:402.000000pt;}
.xa{left:450.080160pt;}
.x1a{left:465.040000pt;}
.x9{left:468.800000pt;}
.x8{left:597.200000pt;}
.x5{left:761.360640pt;}
}




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