
    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_e142329b78e0ac128e4d7746.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_37455901d30a67e4a56fe671.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_9e8f3da223b5ecde5a952c2d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_2b62f6afec793d6d1592d527.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_b034829f80e399bb186cd29e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_fba084435132b48db41d27d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.311760px;}
.ls9{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.864000px;}
.ls4{letter-spacing:6.101280px;}
.ls8{letter-spacing:24.101280px;}
.ls2{letter-spacing:62.981280px;}
.ls0{letter-spacing:64.397280px;}
.lsd{letter-spacing:374.346720px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws2{word-spacing:-21.060000px;}
.ws7{word-spacing:-18.864000px;}
.ws6{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
._29{margin-left:-4.386240px;}
._b{margin-left:-3.384000px;}
._0{margin-left:-1.589760px;}
._1{width:1.149120px;}
._4{width:2.247360px;}
._8{width:3.816960px;}
._c{width:5.688000px;}
._10{width:7.032000px;}
._9{width:8.688000px;}
._a{width:9.770880px;}
._1f{width:10.842240px;}
._14{width:12.024000px;}
._18{width:13.192560px;}
._6{width:14.268240px;}
._7{width:15.800400px;}
._f{width:16.986000px;}
._12{width:19.872000px;}
._11{width:20.880000px;}
._13{width:21.938880px;}
._1c{width:23.421120px;}
._20{width:24.696000px;}
._21{width:26.280000px;}
._17{width:28.085760px;}
._15{width:29.136000px;}
._16{width:30.288000px;}
._1d{width:31.385760px;}
._d{width:33.336000px;}
._e{width:34.490880px;}
._2b{width:51.120000px;}
._23{width:61.632000px;}
._2{width:68.468400px;}
._3{width:69.713280px;}
._1e{width:152.148000px;}
._24{width:194.904000px;}
._1b{width:246.071760px;}
._1a{width:259.380000px;}
._22{width:319.487520px;}
._28{width:391.828080px;}
._19{width:521.976000px;}
._27{width:903.240000px;}
._2c{width:1138.476000px;}
._25{width:1515.156000px;}
._2a{width:1868.700000px;}
._5{width:2010.336000px;}
._26{width:2357.016000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yba{bottom:11.700000px;}
.yb6{bottom:11.880000px;}
.yf2{bottom:11.910000px;}
.yc2{bottom:11.925000px;}
.y65{bottom:14.040000px;}
.y6d{bottom:14.085000px;}
.y6a{bottom:14.220000px;}
.y6e{bottom:23.220000px;}
.y69{bottom:39.960000px;}
.y68{bottom:65.925000px;}
.y5{bottom:82.116000px;}
.y67{bottom:91.845000px;}
.y4{bottom:108.396000px;}
.y3{bottom:127.476000px;}
.y2{bottom:152.850000px;}
.yce{bottom:175.710000px;}
.y61{bottom:175.890000px;}
.y117{bottom:179.850000px;}
.y2f{bottom:183.990000px;}
.ycf{bottom:184.905000px;}
.ydc{bottom:202.350000px;}
.y85{bottom:202.530000px;}
.y4b{bottom:204.870000px;}
.y60{bottom:207.030000px;}
.y8b{bottom:208.650000px;}
.yb4{bottom:209.730000px;}
.y116{bottom:210.990000px;}
.ye3{bottom:211.530000px;}
.yb7{bottom:211.545000px;}
.ya1{bottom:213.150000px;}
.y2e{bottom:215.130000px;}
.y108{bottom:228.450000px;}
.ydb{bottom:228.810000px;}
.y4a{bottom:236.010000px;}
.y5f{bottom:237.990000px;}
.y115{bottom:241.950000px;}
.y8a{bottom:243.030000px;}
.y7f{bottom:243.750000px;}
.ya0{bottom:244.110000px;}
.y84{bottom:245.550000px;}
.y2d{bottom:246.090000px;}
.yda{bottom:255.450000px;}
.y107{bottom:259.410000px;}
.y49{bottom:266.970000px;}
.y5e{bottom:269.130000px;}
.y114{bottom:273.090000px;}
.y9f{bottom:275.250000px;}
.y83{bottom:280.110000px;}
.yb3{bottom:281.190000px;}
.yd9{bottom:282.090000px;}
.y2c{bottom:285.330000px;}
.y7e{bottom:286.590000px;}
.y106{bottom:290.550000px;}
.y48{bottom:298.110000px;}
.y5d{bottom:300.090000px;}
.y113{bottom:304.050000px;}
.yd8{bottom:308.730000px;}
.y82{bottom:310.530000px;}
.yb2{bottom:312.150000px;}
.y9e{bottom:312.330000px;}
.y89{bottom:317.190000px;}
.y2b{bottom:318.090000px;}
.y105{bottom:321.510000px;}
.y7d{bottom:323.670000px;}
.y13a{bottom:323.850000px;}
.y47{bottom:329.070000px;}
.y112{bottom:335.190000px;}
.yd7{bottom:335.370000px;}
.y2a{bottom:338.835000px;}
.y5c{bottom:339.555000px;}
.y9d{bottom:343.335000px;}
.y139{bottom:344.595000px;}
.yb1{bottom:349.275000px;}
.y88{bottom:354.135000px;}
.y7c{bottom:354.855000px;}
.y104{bottom:358.635000px;}
.y29{bottom:359.535000px;}
.yd6{bottom:362.055000px;}
.y138{bottom:365.295000px;}
.y46{bottom:366.195000px;}
.yf8{bottom:368.175000px;}
.y9c{bottom:374.475000px;}
.y28{bottom:380.235000px;}
.y5b{bottom:382.395000px;}
.y7b{bottom:385.815000px;}
.y137{bottom:385.995000px;}
.yb0{bottom:386.355000px;}
.yd5{bottom:388.695000px;}
.y103{bottom:389.775000px;}
.y87{bottom:391.215000px;}
.y45{bottom:397.155000px;}
.y27{bottom:400.935000px;}
.yf7{bottom:405.075000px;}
.y9b{bottom:405.435000px;}
.y136{bottom:406.695000px;}
.y5a{bottom:413.175000px;}
.yd4{bottom:415.335000px;}
.y7a{bottom:416.955000px;}
.y102{bottom:420.735000px;}
.y26{bottom:421.635000px;}
.yaf{bottom:423.255000px;}
.y135{bottom:427.395000px;}
.y44{bottom:428.295000px;}
.yf6{bottom:436.215000px;}
.y9a{bottom:436.575000px;}
.yd3{bottom:441.975000px;}
.y25{bottom:442.335000px;}
.y59{bottom:443.055000px;}
.y134{bottom:448.095000px;}
.y101{bottom:451.875000px;}
.y79{bottom:456.195000px;}
.y43{bottom:459.255000px;}
.yae{bottom:460.335000px;}
.y24{bottom:463.035000px;}
.yf5{bottom:467.175000px;}
.y99{bottom:467.535000px;}
.yd2{bottom:468.615000px;}
.y133{bottom:468.795000px;}
.y100{bottom:482.835000px;}
.y23{bottom:483.735000px;}
.y132{bottom:489.495000px;}
.y42{bottom:490.395000px;}
.yd1{bottom:495.255000px;}
.yad{bottom:497.415000px;}
.y78{bottom:501.375000px;}
.yf4{bottom:504.075000px;}
.y22{bottom:504.435000px;}
.y98{bottom:504.615000px;}
.y131{bottom:510.195000px;}
.yff{bottom:513.975000px;}
.y41{bottom:521.355000px;}
.yd0{bottom:521.715000px;}
.y21{bottom:525.135000px;}
.y130{bottom:530.895000px;}
.yac{bottom:534.495000px;}
.y97{bottom:535.575000px;}
.y77{bottom:544.395000px;}
.yfe{bottom:544.935000px;}
.y20{bottom:545.835000px;}
.ycd{bottom:548.355000px;}
.y12f{bottom:551.595000px;}
.y111{bottom:552.495000px;}
.y40{bottom:558.435000px;}
.y1f{bottom:566.535000px;}
.y96{bottom:566.715000px;}
.yab{bottom:571.575000px;}
.y12e{bottom:572.295000px;}
.yf3{bottom:574.995000px;}
.yfd{bottom:576.075000px;}
.y76{bottom:581.475000px;}
.y110{bottom:583.455000px;}
.y1e{bottom:587.235000px;}
.ycc{bottom:587.955000px;}
.y3f{bottom:589.575000px;}
.y12d{bottom:592.995000px;}
.y95{bottom:597.675000px;}
.yf1{bottom:601.635000px;}
.y1d{bottom:607.965000px;}
.yaa{bottom:608.685000px;}
.yfc{bottom:610.665000px;}
.y75{bottom:612.465000px;}
.y12c{bottom:613.725000px;}
.y10f{bottom:614.625000px;}
.ycb{bottom:615.345000px;}
.y81{bottom:617.325000px;}
.y3e{bottom:620.565000px;}
.y58{bottom:628.125000px;}
.yf0{bottom:628.305000px;}
.y1c{bottom:628.665000px;}
.y94{bottom:628.845000px;}
.y12b{bottom:634.425000px;}
.yca{bottom:641.265000px;}
.yfb{bottom:642.525000px;}
.y74{bottom:643.605000px;}
.ya9{bottom:645.585000px;}
.y1b{bottom:649.365000px;}
.y3d{bottom:651.705000px;}
.y10e{bottom:653.865000px;}
.yef{bottom:654.945000px;}
.y12a{bottom:655.125000px;}
.yc9{bottom:656.025000px;}
.y93{bottom:659.805000px;}
.y57{bottom:662.505000px;}
.yfa{bottom:668.265000px;}
.y1a{bottom:670.065000px;}
.y73{bottom:674.565000px;}
.y129{bottom:675.825000px;}
.yee{bottom:681.585000px;}
.y3c{bottom:682.665000px;}
.y19{bottom:690.765000px;}
.y92{bottom:690.945000px;}
.y56{bottom:693.645000px;}
.y128{bottom:696.525000px;}
.y10d{bottom:696.885000px;}
.yf9{bottom:698.685000px;}
.y72{bottom:705.705000px;}
.yed{bottom:708.225000px;}
.yc8{bottom:709.305000px;}
.y18{bottom:711.465000px;}
.y3b{bottom:713.805000px;}
.y127{bottom:717.225000px;}
.y91{bottom:721.905000px;}
.y55{bottom:724.605000px;}
.y17{bottom:732.165000px;}
.y10c{bottom:733.965000px;}
.yec{bottom:734.865000px;}
.yc7{bottom:735.945000px;}
.y71{bottom:736.665000px;}
.y126{bottom:737.925000px;}
.ya8{bottom:744.765000px;}
.y16{bottom:752.865000px;}
.y3a{bottom:753.045000px;}
.y54{bottom:755.745000px;}
.y125{bottom:758.625000px;}
.yeb{bottom:761.505000px;}
.yc6{bottom:762.585000px;}
.y10b{bottom:764.925000px;}
.y15{bottom:773.565000px;}
.y70{bottom:773.745000px;}
.ya7{bottom:775.905000px;}
.y124{bottom:781.665000px;}
.y90{bottom:784.005000px;}
.y53{bottom:786.705000px;}
.yea{bottom:787.965000px;}
.yc5{bottom:789.045000px;}
.y14{bottom:794.265000px;}
.y39{bottom:796.065000px;}
.y123{bottom:802.365000px;}
.y6f{bottom:804.525000px;}
.ya6{bottom:806.865000px;}
.ye9{bottom:814.605000px;}
.y13{bottom:814.965000px;}
.yc4{bottom:815.685000px;}
.y122{bottom:823.065000px;}
.y8f{bottom:823.245000px;}
.y52{bottom:823.785000px;}
.y66{bottom:824.685000px;}
.y10a{bottom:827.025000px;}
.y38{bottom:833.145000px;}
.y12{bottom:835.665000px;}
.ya5{bottom:838.005000px;}
.ye8{bottom:841.245000px;}
.yc3{bottom:842.325000px;}
.y51{bottom:854.745000px;}
.y11{bottom:856.365000px;}
.y109{bottom:858.165000px;}
.y8e{bottom:863.745000px;}
.y37{bottom:864.105000px;}
.ye7{bottom:867.885000px;}
.y6c{bottom:868.065000px;}
.yc1{bottom:868.965000px;}
.y121{bottom:870.810000px;}
.ya4{bottom:874.950000px;}
.y10{bottom:877.110000px;}
.y50{bottom:885.930000px;}
.ye6{bottom:894.570000px;}
.y8d{bottom:895.110000px;}
.y36{bottom:895.290000px;}
.yc0{bottom:895.650000px;}
.y120{bottom:897.450000px;}
.yf{bottom:897.810000px;}
.y6b{bottom:902.490000px;}
.ya3{bottom:906.090000px;}
.y11f{bottom:918.150000px;}
.ye{bottom:918.510000px;}
.ye5{bottom:921.210000px;}
.ybf{bottom:922.290000px;}
.y4f{bottom:925.170000px;}
.y8c{bottom:925.530000px;}
.y35{bottom:926.250000px;}
.y64{bottom:936.690000px;}
.ya2{bottom:937.050000px;}
.y11e{bottom:938.850000px;}
.yd{bottom:939.210000px;}
.ye4{bottom:947.850000px;}
.ybe{bottom:948.930000px;}
.y34{bottom:957.210000px;}
.y11d{bottom:959.550000px;}
.yc{bottom:959.910000px;}
.y86{bottom:963.330000px;}
.y4e{bottom:968.190000px;}
.ye2{bottom:974.490000px;}
.ybd{bottom:975.570000px;}
.y11c{bottom:980.250000px;}
.yb{bottom:981.870000px;}
.y63{bottom:985.110000px;}
.y33{bottom:988.350000px;}
.y80{bottom:994.290000px;}
.y11b{bottom:1000.950000px;}
.ybc{bottom:1002.210000px;}
.y4d{bottom:1007.430000px;}
.ya{bottom:1009.410000px;}
.ye1{bottom:1014.090000px;}
.y62{bottom:1019.310000px;}
.y11a{bottom:1021.650000px;}
.y32{bottom:1025.430000px;}
.ybb{bottom:1028.850000px;}
.y9{bottom:1037.130000px;}
.ye0{bottom:1041.450000px;}
.y119{bottom:1048.290000px;}
.y4c{bottom:1050.450000px;}
.yb9{bottom:1055.490000px;}
.ydf{bottom:1056.210000px;}
.y31{bottom:1056.390000px;}
.y8{bottom:1064.670000px;}
.y118{bottom:1075.470000px;}
.yb8{bottom:1081.950000px;}
.yde{bottom:1082.850000px;}
.y30{bottom:1087.530000px;}
.y7{bottom:1092.210000px;}
.yb5{bottom:1108.590000px;}
.ydd{bottom:1109.490000px;}
.y6{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h13{height:25.740000px;}
.h10{height:25.920000px;}
.h14{height:25.956000px;}
.hc{height:33.480000px;}
.he{height:33.516000px;}
.hf{height:42.660000px;}
.h18{height:43.506914px;}
.hb{height:52.417969px;}
.h6{height:52.628906px;}
.h11{height:53.077852px;}
.ha{height:53.573906px;}
.h15{height:58.833281px;}
.h3{height:59.383125px;}
.h7{height:63.949219px;}
.h2{height:64.546875px;}
.h5{height:69.996445px;}
.h8{height:74.820586px;}
.h9{height:75.519844px;}
.h4{height:85.052461px;}
.hd{height:111.276000px;}
.h16{height:371.910000px;}
.h12{height:425.190000px;}
.h17{height:425.415000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:89.460000px;}
.wa{width:90.180000px;}
.wd{width:100.656000px;}
.w7{width:101.376000px;}
.w8{width:109.980000px;}
.we{width:110.340000px;}
.w6{width:140.076000px;}
.wc{width:140.436000px;}
.w3{width:225.750000px;}
.w9{width:236.010000px;}
.w5{width:236.370000px;}
.wb{width:236.730000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x30{left:5.220000px;}
.x12{left:10.440000px;}
.x28{left:12.960000px;}
.x21{left:14.220000px;}
.x24{left:17.850000px;}
.x2c{left:19.260000px;}
.x26{left:21.060000px;}
.x2d{left:23.040000px;}
.x37{left:25.020000px;}
.x13{left:26.454000px;}
.x2a{left:29.340000px;}
.x11{left:33.294000px;}
.x33{left:36.180000px;}
.x31{left:38.340000px;}
.x29{left:40.854000px;}
.x2f{left:44.994000px;}
.x10{left:47.700000px;}
.x2e{left:55.110000px;}
.x2b{left:58.890000px;}
.x35{left:70.230000px;}
.x16{left:71.820000px;}
.xe{left:74.520000px;}
.x36{left:81.945000px;}
.xc{left:84.054000px;}
.x14{left:87.474000px;}
.x15{left:90.720000px;}
.x17{left:99.360000px;}
.x34{left:118.305000px;}
.xa{left:126.035987px;}
.x2{left:127.655987px;}
.x4{left:170.129987px;}
.x5{left:174.269987px;}
.xb{left:191.549987px;}
.x39{left:206.849987px;}
.x32{left:208.649987px;}
.x22{left:218.190000px;}
.x6{left:262.649987px;}
.x7{left:302.294987px;}
.x20{left:329.834987px;}
.xd{left:354.855000px;}
.x1d{left:367.634987px;}
.x9{left:369.974987px;}
.x1b{left:376.634987px;}
.x1f{left:378.434987px;}
.x18{left:379.694987px;}
.x19{left:395.894987px;}
.x23{left:454.935000px;}
.x1c{left:467.924987px;}
.x1{left:489.164987px;}
.xf{left:581.505000px;}
.x25{left:595.545000px;}
.x8{left:626.324987px;}
.x1a{left:666.329987px;}
.x27{left:697.290000px;}
.x1e{left:708.629987px;}
.x38{left:780.629987px;}
.x3{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.277120pt;}
.ls9{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.768000pt;}
.ls4{letter-spacing:5.423360pt;}
.ls8{letter-spacing:21.423360pt;}
.ls2{letter-spacing:55.983360pt;}
.ls0{letter-spacing:57.242027pt;}
.lsd{letter-spacing:332.752640pt;}
.ws0{word-spacing:-64.000000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws7{word-spacing:-16.768000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
._29{margin-left:-3.898880pt;}
._b{margin-left:-3.008000pt;}
._0{margin-left:-1.413120pt;}
._1{width:1.021440pt;}
._4{width:1.997653pt;}
._8{width:3.392853pt;}
._c{width:5.056000pt;}
._10{width:6.250667pt;}
._9{width:7.722667pt;}
._a{width:8.685227pt;}
._1f{width:9.637547pt;}
._14{width:10.688000pt;}
._18{width:11.726720pt;}
._6{width:12.682880pt;}
._7{width:14.044800pt;}
._f{width:15.098667pt;}
._12{width:17.664000pt;}
._11{width:18.560000pt;}
._13{width:19.501227pt;}
._1c{width:20.818773pt;}
._20{width:21.952000pt;}
._21{width:23.360000pt;}
._17{width:24.965120pt;}
._15{width:25.898667pt;}
._16{width:26.922667pt;}
._1d{width:27.898453pt;}
._d{width:29.632000pt;}
._e{width:30.658560pt;}
._2b{width:45.440000pt;}
._23{width:54.784000pt;}
._2{width:60.860800pt;}
._3{width:61.967360pt;}
._1e{width:135.242667pt;}
._24{width:173.248000pt;}
._1b{width:218.730453pt;}
._1a{width:230.560000pt;}
._22{width:283.988907pt;}
._28{width:348.291627pt;}
._19{width:463.978667pt;}
._27{width:802.880000pt;}
._2c{width:1011.978667pt;}
._25{width:1346.805333pt;}
._2a{width:1661.066667pt;}
._5{width:1786.965333pt;}
._26{width:2095.125333pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:10.400000pt;}
.yb6{bottom:10.560000pt;}
.yf2{bottom:10.586667pt;}
.yc2{bottom:10.600000pt;}
.y65{bottom:12.480000pt;}
.y6d{bottom:12.520000pt;}
.y6a{bottom:12.640000pt;}
.y6e{bottom:20.640000pt;}
.y69{bottom:35.520000pt;}
.y68{bottom:58.600000pt;}
.y5{bottom:72.992000pt;}
.y67{bottom:81.640000pt;}
.y4{bottom:96.352000pt;}
.y3{bottom:113.312000pt;}
.y2{bottom:135.866667pt;}
.yce{bottom:156.186667pt;}
.y61{bottom:156.346667pt;}
.y117{bottom:159.866667pt;}
.y2f{bottom:163.546667pt;}
.ycf{bottom:164.360000pt;}
.ydc{bottom:179.866667pt;}
.y85{bottom:180.026667pt;}
.y4b{bottom:182.106667pt;}
.y60{bottom:184.026667pt;}
.y8b{bottom:185.466667pt;}
.yb4{bottom:186.426667pt;}
.y116{bottom:187.546667pt;}
.ye3{bottom:188.026667pt;}
.yb7{bottom:188.040000pt;}
.ya1{bottom:189.466667pt;}
.y2e{bottom:191.226667pt;}
.y108{bottom:203.066667pt;}
.ydb{bottom:203.386667pt;}
.y4a{bottom:209.786667pt;}
.y5f{bottom:211.546667pt;}
.y115{bottom:215.066667pt;}
.y8a{bottom:216.026667pt;}
.y7f{bottom:216.666667pt;}
.ya0{bottom:216.986667pt;}
.y84{bottom:218.266667pt;}
.y2d{bottom:218.746667pt;}
.yda{bottom:227.066667pt;}
.y107{bottom:230.586667pt;}
.y49{bottom:237.306667pt;}
.y5e{bottom:239.226667pt;}
.y114{bottom:242.746667pt;}
.y9f{bottom:244.666667pt;}
.y83{bottom:248.986667pt;}
.yb3{bottom:249.946667pt;}
.yd9{bottom:250.746667pt;}
.y2c{bottom:253.626667pt;}
.y7e{bottom:254.746667pt;}
.y106{bottom:258.266667pt;}
.y48{bottom:264.986667pt;}
.y5d{bottom:266.746667pt;}
.y113{bottom:270.266667pt;}
.yd8{bottom:274.426667pt;}
.y82{bottom:276.026667pt;}
.yb2{bottom:277.466667pt;}
.y9e{bottom:277.626667pt;}
.y89{bottom:281.946667pt;}
.y2b{bottom:282.746667pt;}
.y105{bottom:285.786667pt;}
.y7d{bottom:287.706667pt;}
.y13a{bottom:287.866667pt;}
.y47{bottom:292.506667pt;}
.y112{bottom:297.946667pt;}
.yd7{bottom:298.106667pt;}
.y2a{bottom:301.186667pt;}
.y5c{bottom:301.826667pt;}
.y9d{bottom:305.186667pt;}
.y139{bottom:306.306667pt;}
.yb1{bottom:310.466667pt;}
.y88{bottom:314.786667pt;}
.y7c{bottom:315.426667pt;}
.y104{bottom:318.786667pt;}
.y29{bottom:319.586667pt;}
.yd6{bottom:321.826667pt;}
.y138{bottom:324.706667pt;}
.y46{bottom:325.506667pt;}
.yf8{bottom:327.266667pt;}
.y9c{bottom:332.866667pt;}
.y28{bottom:337.986667pt;}
.y5b{bottom:339.906667pt;}
.y7b{bottom:342.946667pt;}
.y137{bottom:343.106667pt;}
.yb0{bottom:343.426667pt;}
.yd5{bottom:345.506667pt;}
.y103{bottom:346.466667pt;}
.y87{bottom:347.746667pt;}
.y45{bottom:353.026667pt;}
.y27{bottom:356.386667pt;}
.yf7{bottom:360.066667pt;}
.y9b{bottom:360.386667pt;}
.y136{bottom:361.506667pt;}
.y5a{bottom:367.266667pt;}
.yd4{bottom:369.186667pt;}
.y7a{bottom:370.626667pt;}
.y102{bottom:373.986667pt;}
.y26{bottom:374.786667pt;}
.yaf{bottom:376.226667pt;}
.y135{bottom:379.906667pt;}
.y44{bottom:380.706667pt;}
.yf6{bottom:387.746667pt;}
.y9a{bottom:388.066667pt;}
.yd3{bottom:392.866667pt;}
.y25{bottom:393.186667pt;}
.y59{bottom:393.826667pt;}
.y134{bottom:398.306667pt;}
.y101{bottom:401.666667pt;}
.y79{bottom:405.506667pt;}
.y43{bottom:408.226667pt;}
.yae{bottom:409.186667pt;}
.y24{bottom:411.586667pt;}
.yf5{bottom:415.266667pt;}
.y99{bottom:415.586667pt;}
.yd2{bottom:416.546667pt;}
.y133{bottom:416.706667pt;}
.y100{bottom:429.186667pt;}
.y23{bottom:429.986667pt;}
.y132{bottom:435.106667pt;}
.y42{bottom:435.906667pt;}
.yd1{bottom:440.226667pt;}
.yad{bottom:442.146667pt;}
.y78{bottom:445.666667pt;}
.yf4{bottom:448.066667pt;}
.y22{bottom:448.386667pt;}
.y98{bottom:448.546667pt;}
.y131{bottom:453.506667pt;}
.yff{bottom:456.866667pt;}
.y41{bottom:463.426667pt;}
.yd0{bottom:463.746667pt;}
.y21{bottom:466.786667pt;}
.y130{bottom:471.906667pt;}
.yac{bottom:475.106667pt;}
.y97{bottom:476.066667pt;}
.y77{bottom:483.906667pt;}
.yfe{bottom:484.386667pt;}
.y20{bottom:485.186667pt;}
.ycd{bottom:487.426667pt;}
.y12f{bottom:490.306667pt;}
.y111{bottom:491.106667pt;}
.y40{bottom:496.386667pt;}
.y1f{bottom:503.586667pt;}
.y96{bottom:503.746667pt;}
.yab{bottom:508.066667pt;}
.y12e{bottom:508.706667pt;}
.yf3{bottom:511.106667pt;}
.yfd{bottom:512.066667pt;}
.y76{bottom:516.866667pt;}
.y110{bottom:518.626667pt;}
.y1e{bottom:521.986667pt;}
.ycc{bottom:522.626667pt;}
.y3f{bottom:524.066667pt;}
.y12d{bottom:527.106667pt;}
.y95{bottom:531.266667pt;}
.yf1{bottom:534.786667pt;}
.y1d{bottom:540.413333pt;}
.yaa{bottom:541.053333pt;}
.yfc{bottom:542.813333pt;}
.y75{bottom:544.413333pt;}
.y12c{bottom:545.533333pt;}
.y10f{bottom:546.333333pt;}
.ycb{bottom:546.973333pt;}
.y81{bottom:548.733333pt;}
.y3e{bottom:551.613333pt;}
.y58{bottom:558.333333pt;}
.yf0{bottom:558.493333pt;}
.y1c{bottom:558.813333pt;}
.y94{bottom:558.973333pt;}
.y12b{bottom:563.933333pt;}
.yca{bottom:570.013333pt;}
.yfb{bottom:571.133333pt;}
.y74{bottom:572.093333pt;}
.ya9{bottom:573.853333pt;}
.y1b{bottom:577.213333pt;}
.y3d{bottom:579.293333pt;}
.y10e{bottom:581.213333pt;}
.yef{bottom:582.173333pt;}
.y12a{bottom:582.333333pt;}
.yc9{bottom:583.133333pt;}
.y93{bottom:586.493333pt;}
.y57{bottom:588.893333pt;}
.yfa{bottom:594.013333pt;}
.y1a{bottom:595.613333pt;}
.y73{bottom:599.613333pt;}
.y129{bottom:600.733333pt;}
.yee{bottom:605.853333pt;}
.y3c{bottom:606.813333pt;}
.y19{bottom:614.013333pt;}
.y92{bottom:614.173333pt;}
.y56{bottom:616.573333pt;}
.y128{bottom:619.133333pt;}
.y10d{bottom:619.453333pt;}
.yf9{bottom:621.053333pt;}
.y72{bottom:627.293333pt;}
.yed{bottom:629.533333pt;}
.yc8{bottom:630.493333pt;}
.y18{bottom:632.413333pt;}
.y3b{bottom:634.493333pt;}
.y127{bottom:637.533333pt;}
.y91{bottom:641.693333pt;}
.y55{bottom:644.093333pt;}
.y17{bottom:650.813333pt;}
.y10c{bottom:652.413333pt;}
.yec{bottom:653.213333pt;}
.yc7{bottom:654.173333pt;}
.y71{bottom:654.813333pt;}
.y126{bottom:655.933333pt;}
.ya8{bottom:662.013333pt;}
.y16{bottom:669.213333pt;}
.y3a{bottom:669.373333pt;}
.y54{bottom:671.773333pt;}
.y125{bottom:674.333333pt;}
.yeb{bottom:676.893333pt;}
.yc6{bottom:677.853333pt;}
.y10b{bottom:679.933333pt;}
.y15{bottom:687.613333pt;}
.y70{bottom:687.773333pt;}
.ya7{bottom:689.693333pt;}
.y124{bottom:694.813333pt;}
.y90{bottom:696.893333pt;}
.y53{bottom:699.293333pt;}
.yea{bottom:700.413333pt;}
.yc5{bottom:701.373333pt;}
.y14{bottom:706.013333pt;}
.y39{bottom:707.613333pt;}
.y123{bottom:713.213333pt;}
.y6f{bottom:715.133333pt;}
.ya6{bottom:717.213333pt;}
.ye9{bottom:724.093333pt;}
.y13{bottom:724.413333pt;}
.yc4{bottom:725.053333pt;}
.y122{bottom:731.613333pt;}
.y8f{bottom:731.773333pt;}
.y52{bottom:732.253333pt;}
.y66{bottom:733.053333pt;}
.y10a{bottom:735.133333pt;}
.y38{bottom:740.573333pt;}
.y12{bottom:742.813333pt;}
.ya5{bottom:744.893333pt;}
.ye8{bottom:747.773333pt;}
.yc3{bottom:748.733333pt;}
.y51{bottom:759.773333pt;}
.y11{bottom:761.213333pt;}
.y109{bottom:762.813333pt;}
.y8e{bottom:767.773333pt;}
.y37{bottom:768.093333pt;}
.ye7{bottom:771.453333pt;}
.y6c{bottom:771.613333pt;}
.yc1{bottom:772.413333pt;}
.y121{bottom:774.053333pt;}
.ya4{bottom:777.733333pt;}
.y10{bottom:779.653333pt;}
.y50{bottom:787.493333pt;}
.ye6{bottom:795.173333pt;}
.y8d{bottom:795.653333pt;}
.y36{bottom:795.813333pt;}
.yc0{bottom:796.133333pt;}
.y120{bottom:797.733333pt;}
.yf{bottom:798.053333pt;}
.y6b{bottom:802.213333pt;}
.ya3{bottom:805.413333pt;}
.y11f{bottom:816.133333pt;}
.ye{bottom:816.453333pt;}
.ye5{bottom:818.853333pt;}
.ybf{bottom:819.813333pt;}
.y4f{bottom:822.373333pt;}
.y8c{bottom:822.693333pt;}
.y35{bottom:823.333333pt;}
.y64{bottom:832.613333pt;}
.ya2{bottom:832.933333pt;}
.y11e{bottom:834.533333pt;}
.yd{bottom:834.853333pt;}
.ye4{bottom:842.533333pt;}
.ybe{bottom:843.493333pt;}
.y34{bottom:850.853333pt;}
.y11d{bottom:852.933333pt;}
.yc{bottom:853.253333pt;}
.y86{bottom:856.293333pt;}
.y4e{bottom:860.613333pt;}
.ye2{bottom:866.213333pt;}
.ybd{bottom:867.173333pt;}
.y11c{bottom:871.333333pt;}
.yb{bottom:872.773333pt;}
.y63{bottom:875.653333pt;}
.y33{bottom:878.533333pt;}
.y80{bottom:883.813333pt;}
.y11b{bottom:889.733333pt;}
.ybc{bottom:890.853333pt;}
.y4d{bottom:895.493333pt;}
.ya{bottom:897.253333pt;}
.ye1{bottom:901.413333pt;}
.y62{bottom:906.053333pt;}
.y11a{bottom:908.133333pt;}
.y32{bottom:911.493333pt;}
.ybb{bottom:914.533333pt;}
.y9{bottom:921.893333pt;}
.ye0{bottom:925.733333pt;}
.y119{bottom:931.813333pt;}
.y4c{bottom:933.733333pt;}
.yb9{bottom:938.213333pt;}
.ydf{bottom:938.853333pt;}
.y31{bottom:939.013333pt;}
.y8{bottom:946.373333pt;}
.y118{bottom:955.973333pt;}
.yb8{bottom:961.733333pt;}
.yde{bottom:962.533333pt;}
.y30{bottom:966.693333pt;}
.y7{bottom:970.853333pt;}
.yb5{bottom:985.413333pt;}
.ydd{bottom:986.213333pt;}
.y6{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h13{height:22.880000pt;}
.h10{height:23.040000pt;}
.h14{height:23.072000pt;}
.hc{height:29.760000pt;}
.he{height:29.792000pt;}
.hf{height:37.920000pt;}
.h18{height:38.672812pt;}
.hb{height:46.593750pt;}
.h6{height:46.781250pt;}
.h11{height:47.180312pt;}
.ha{height:47.621250pt;}
.h15{height:52.296250pt;}
.h3{height:52.785000pt;}
.h7{height:56.843750pt;}
.h2{height:57.375000pt;}
.h5{height:62.219062pt;}
.h8{height:66.507188pt;}
.h9{height:67.128750pt;}
.h4{height:75.602187pt;}
.hd{height:98.912000pt;}
.h16{height:330.586667pt;}
.h12{height:377.946667pt;}
.h17{height:378.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:79.520000pt;}
.wa{width:80.160000pt;}
.wd{width:89.472000pt;}
.w7{width:90.112000pt;}
.w8{width:97.760000pt;}
.we{width:98.080000pt;}
.w6{width:124.512000pt;}
.wc{width:124.832000pt;}
.w3{width:200.666667pt;}
.w9{width:209.786667pt;}
.w5{width:210.106667pt;}
.wb{width:210.426667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x30{left:4.640000pt;}
.x12{left:9.280000pt;}
.x28{left:11.520000pt;}
.x21{left:12.640000pt;}
.x24{left:15.866667pt;}
.x2c{left:17.120000pt;}
.x26{left:18.720000pt;}
.x2d{left:20.480000pt;}
.x37{left:22.240000pt;}
.x13{left:23.514667pt;}
.x2a{left:26.080000pt;}
.x11{left:29.594667pt;}
.x33{left:32.160000pt;}
.x31{left:34.080000pt;}
.x29{left:36.314667pt;}
.x2f{left:39.994667pt;}
.x10{left:42.400000pt;}
.x2e{left:48.986667pt;}
.x2b{left:52.346667pt;}
.x35{left:62.426667pt;}
.x16{left:63.840000pt;}
.xe{left:66.240000pt;}
.x36{left:72.840000pt;}
.xc{left:74.714667pt;}
.x14{left:77.754667pt;}
.x15{left:80.640000pt;}
.x17{left:88.320000pt;}
.x34{left:105.160000pt;}
.xa{left:112.031988pt;}
.x2{left:113.471988pt;}
.x4{left:151.226655pt;}
.x5{left:154.906655pt;}
.xb{left:170.266655pt;}
.x39{left:183.866655pt;}
.x32{left:185.466655pt;}
.x22{left:193.946667pt;}
.x6{left:233.466655pt;}
.x7{left:268.706655pt;}
.x20{left:293.186655pt;}
.xd{left:315.426667pt;}
.x1d{left:326.786655pt;}
.x9{left:328.866655pt;}
.x1b{left:334.786655pt;}
.x1f{left:336.386655pt;}
.x18{left:337.506655pt;}
.x19{left:351.906655pt;}
.x23{left:404.386667pt;}
.x1c{left:415.933322pt;}
.x1{left:434.813322pt;}
.xf{left:516.893333pt;}
.x25{left:529.373333pt;}
.x8{left:556.733322pt;}
.x1a{left:592.293322pt;}
.x27{left:619.813333pt;}
.x1e{left:629.893322pt;}
.x38{left:693.893322pt;}
.x3{left:718.373322pt;}
}




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