
    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_1b114fdadee473933f9b9004.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_9ec22815c0e3879aabd8fb86.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_9f9f283ce74af25142968530.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_dcf59e84bd73abcde2305a18.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5e7da7adecce820d5d14787f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.767578;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_6193fc93719873dbca485474.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_9f61092c3628041efd2249c3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.957031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.738770;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.480000px;}
.v4{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls16{letter-spacing:-1.896000px;}
.ls1b{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-1.134000px;}
.ls8{letter-spacing:-0.972000px;}
.ls15{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.507000px;}
.ls5{letter-spacing:-0.498000px;}
.ls11{letter-spacing:-0.486600px;}
.ls17{letter-spacing:-0.457800px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.020160px;}
.lse{letter-spacing:0.213120px;}
.lsa{letter-spacing:0.225120px;}
.ls6{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.498240px;}
.ls1a{letter-spacing:0.507000px;}
.ls1{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.840000px;}
.ls19{letter-spacing:16.306560px;}
.lsc{letter-spacing:20.770560px;}
.ls9{letter-spacing:37.906560px;}
.ls10{letter-spacing:46.397280px;}
.ls18{letter-spacing:46.558560px;}
.lsb{letter-spacing:49.426560px;}
.lsf{letter-spacing:49.438560px;}
.lsd{letter-spacing:60.958560px;}
.ls13{letter-spacing:72.478560px;}
.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;}
}
.ws7{word-spacing:-15.627000px;}
.ws2{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.633400px;}
.ws6{word-spacing:-14.184000px;}
.ws8{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.182000px;}
.ws1{word-spacing:-9.720000px;}
.ws5{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-4.460640px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._8{width:4.061280px;}
._b{width:5.080320px;}
._a{width:6.350400px;}
._10{width:7.499520px;}
._11{width:9.313920px;}
._d{width:11.007360px;}
._c{width:12.156480px;}
._12{width:14.079840px;}
._e{width:16.994880px;}
._f{width:18.092160px;}
._13{width:20.077440px;}
._7{width:198.156000px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fsb{font-size:5.760000px;}
.fsd{font-size:11.520000px;}
.fsc{font-size:18.720000px;}
.fs6{font-size:24.480000px;}
.fs8{font-size:30.240000px;}
.fs4{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fsa{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y9d{bottom:-16.200000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:1.440000px;}
.yd{bottom:2.880000px;}
.y39{bottom:3.240000px;}
.yc6{bottom:7.560000px;}
.yc3{bottom:9.000000px;}
.yc8{bottom:11.880000px;}
.yc4{bottom:12.600000px;}
.yca{bottom:13.005000px;}
.yae{bottom:14.760000px;}
.yb2{bottom:15.120000px;}
.yb0{bottom:15.840000px;}
.y38{bottom:20.514000px;}
.y37{bottom:37.794000px;}
.ye{bottom:43.560000px;}
.y36{bottom:55.074000px;}
.yc{bottom:68.400000px;}
.y35{bottom:72.399000px;}
.y34{bottom:89.679000px;}
.ya{bottom:94.716000px;}
.y33{bottom:106.599000px;}
.y32{bottom:123.879000px;}
.yec{bottom:131.076000px;}
.y1b{bottom:135.396000px;}
.yeb{bottom:139.716000px;}
.y72{bottom:144.756000px;}
.y31{bottom:150.159000px;}
.y116{bottom:158.070000px;}
.yea{bottom:159.510000px;}
.y71{bottom:164.550000px;}
.y30{bottom:176.439000px;}
.y115{bottom:177.870000px;}
.ye9{bottom:179.310000px;}
.y70{bottom:184.710000px;}
.y2f{bottom:193.749000px;}
.y114{bottom:197.715000px;}
.ye8{bottom:199.155000px;}
.y6f{bottom:200.235000px;}
.y2e{bottom:211.029000px;}
.y6e{bottom:211.395000px;}
.y113{bottom:217.875000px;}
.ye7{bottom:218.955000px;}
.y2d{bottom:228.309000px;}
.y112{bottom:237.675000px;}
.ye6{bottom:238.755000px;}
.y6d{bottom:243.435000px;}
.yb6{bottom:244.515000px;}
.y2c{bottom:245.589000px;}
.y111{bottom:257.475000px;}
.ye5{bottom:258.555000px;}
.yb5{bottom:261.795000px;}
.y2b{bottom:262.869000px;}
.y6c{bottom:263.235000px;}
.y9b{bottom:270.435000px;}
.y110{bottom:274.755000px;}
.ye4{bottom:278.715000px;}
.y2a{bottom:280.149000px;}
.yb4{bottom:280.515000px;}
.y6b{bottom:283.395000px;}
.y10f{bottom:292.035000px;}
.y29{bottom:297.429000px;}
.ye3{bottom:298.515000px;}
.y6a{bottom:303.555000px;}
.y28{bottom:314.394000px;}
.ye2{bottom:318.315000px;}
.y69{bottom:323.385000px;}
.y10e{bottom:326.625000px;}
.yb3{bottom:328.065000px;}
.y27{bottom:331.674000px;}
.y68{bottom:343.545000px;}
.y10d{bottom:346.425000px;}
.ycf{bottom:346.785000px;}
.y26{bottom:348.954000px;}
.ye1{bottom:353.265000px;}
.y67{bottom:364.065000px;}
.yce{bottom:366.585000px;}
.y25{bottom:375.234000px;}
.yb1{bottom:377.385000px;}
.ye0{bottom:377.745000px;}
.y9a{bottom:380.625000px;}
.y66{bottom:383.865000px;}
.ycd{bottom:386.385000px;}
.ydf{bottom:387.825000px;}
.y99{bottom:397.905000px;}
.y24{bottom:401.514000px;}
.y65{bottom:404.385000px;}
.ycc{bottom:406.185000px;}
.yde{bottom:407.625000px;}
.y98{bottom:415.185000px;}
.y23{bottom:418.794000px;}
.ycb{bottom:423.465000px;}
.y64{bottom:424.185000px;}
.yaf{bottom:425.265000px;}
.y10c{bottom:425.985000px;}
.ydd{bottom:427.425000px;}
.y97{bottom:432.465000px;}
.y22{bottom:436.074000px;}
.yc9{bottom:441.825000px;}
.y63{bottom:442.185000px;}
.y10b{bottom:445.785000px;}
.ydc{bottom:447.585000px;}
.y96{bottom:449.790000px;}
.y21{bottom:453.384000px;}
.y62{bottom:456.630000px;}
.y10a{bottom:465.630000px;}
.y95{bottom:467.070000px;}
.ydb{bottom:467.430000px;}
.y20{bottom:470.664000px;}
.yad{bottom:474.630000px;}
.y61{bottom:478.590000px;}
.y94{bottom:484.350000px;}
.yc7{bottom:485.070000px;}
.y109{bottom:485.430000px;}
.yda{bottom:487.230000px;}
.y1f{bottom:487.944000px;}
.y60{bottom:498.750000px;}
.y93{bottom:501.630000px;}
.y1e{bottom:505.224000px;}
.yd9{bottom:507.030000px;}
.y108{bottom:514.230000px;}
.y5f{bottom:518.550000px;}
.yac{bottom:521.790000px;}
.y1d{bottom:522.504000px;}
.yc5{bottom:526.470000px;}
.yab{bottom:533.670000px;}
.y92{bottom:535.830000px;}
.y5e{bottom:539.070000px;}
.y1c{bottom:539.424000px;}
.yd8{bottom:541.950000px;}
.y107{bottom:549.150000px;}
.yaa{bottom:550.590000px;}
.y91{bottom:553.110000px;}
.y5d{bottom:558.870000px;}
.ya9{bottom:567.870000px;}
.y90{bottom:570.390000px;}
.y5c{bottom:574.710000px;}
.y106{bottom:577.620000px;}
.y5b{bottom:584.820000px;}
.y8f{bottom:587.700000px;}
.y105{bottom:589.140000px;}
.yd7{bottom:596.700000px;}
.yc2{bottom:601.380000px;}
.y5a{bottom:602.100000px;}
.ya8{bottom:602.820000px;}
.y8e{bottom:604.980000px;}
.y104{bottom:608.940000px;}
.yd6{bottom:616.500000px;}
.y59{bottom:619.380000px;}
.y8d{bottom:622.260000px;}
.y103{bottom:629.100000px;}
.ya7{bottom:634.860000px;}
.yc1{bottom:636.300000px;}
.y58{bottom:639.180000px;}
.y8c{bottom:639.540000px;}
.yc0{bottom:644.940000px;}
.y102{bottom:648.900000px;}
.ya6{bottom:654.660000px;}
.y57{bottom:655.380000px;}
.yd5{bottom:656.460000px;}
.y8b{bottom:656.820000px;}
.ybf{bottom:662.220000px;}
.y101{bottom:668.700000px;}
.y56{bottom:671.220000px;}
.y8a{bottom:674.100000px;}
.ya5{bottom:675.180000px;}
.yd4{bottom:676.260000px;}
.ybe{bottom:679.500000px;}
.y12a{bottom:686.340000px;}
.y100{bottom:688.860000px;}
.y55{bottom:691.020000px;}
.y89{bottom:691.380000px;}
.ya4{bottom:694.980000px;}
.ybd{bottom:696.780000px;}
.y1a{bottom:703.650000px;}
.y129{bottom:706.170000px;}
.y88{bottom:708.330000px;}
.yff{bottom:708.690000px;}
.y54{bottom:710.850000px;}
.yd3{bottom:711.210000px;}
.ybc{bottom:714.090000px;}
.ya3{bottom:715.530000px;}
.y19{bottom:720.570000px;}
.y87{bottom:725.610000px;}
.y128{bottom:725.970000px;}
.yfe{bottom:728.850000px;}
.y53{bottom:730.650000px;}
.ybb{bottom:731.370000px;}
.ya2{bottom:735.330000px;}
.yd2{bottom:740.370000px;}
.y18{bottom:741.810000px;}
.y86{bottom:742.890000px;}
.y127{bottom:745.770000px;}
.y52{bottom:746.490000px;}
.yba{bottom:748.650000px;}
.yd1{bottom:758.010000px;}
.y51{bottom:759.090000px;}
.y17{bottom:760.170000px;}
.y126{bottom:765.570000px;}
.yb9{bottom:765.930000px;}
.yfd{bottom:768.450000px;}
.ya1{bottom:770.610000px;}
.y16{bottom:777.090000px;}
.y85{bottom:777.450000px;}
.yb8{bottom:784.650000px;}
.y50{bottom:785.010000px;}
.y125{bottom:785.730000px;}
.y15{bottom:786.090000px;}
.yfc{bottom:788.610000px;}
.yd0{bottom:789.690000px;}
.y84{bottom:794.730000px;}
.ya0{bottom:796.530000px;}
.yb7{bottom:798.690000px;}
.y14{bottom:803.370000px;}
.y4f{bottom:803.730000px;}
.y124{bottom:805.530000px;}
.yfb{bottom:808.410000px;}
.y83{bottom:812.010000px;}
.y13{bottom:819.210000px;}
.y4e{bottom:820.650000px;}
.y123{bottom:822.810000px;}
.y9f{bottom:823.170000px;}
.yfa{bottom:828.255000px;}
.y82{bottom:829.335000px;}
.y12{bottom:832.575000px;}
.y9e{bottom:839.775000px;}
.y122{bottom:840.135000px;}
.y4d{bottom:840.495000px;}
.y81{bottom:843.735000px;}
.yf9{bottom:848.055000px;}
.y80{bottom:850.935000px;}
.y11{bottom:860.295000px;}
.yf8{bottom:867.855000px;}
.y7f{bottom:870.735000px;}
.y121{bottom:874.695000px;}
.y4c{bottom:880.455000px;}
.yf7{bottom:887.655000px;}
.y10{bottom:888.015000px;}
.y7e{bottom:890.535000px;}
.y120{bottom:894.495000px;}
.y4b{bottom:900.255000px;}
.yf6{bottom:907.455000px;}
.y7d{bottom:910.335000px;}
.y11f{bottom:914.295000px;}
.yf{bottom:915.375000px;}
.y4a{bottom:920.055000px;}
.yf5{bottom:927.615000px;}
.y7c{bottom:930.495000px;}
.y11e{bottom:934.455000px;}
.y49{bottom:935.535000px;}
.y9{bottom:941.295000px;}
.y48{bottom:946.695000px;}
.y7b{bottom:950.295000px;}
.y11d{bottom:954.285000px;}
.y8{bottom:958.605000px;}
.yf4{bottom:962.205000px;}
.y47{bottom:966.885000px;}
.y7a{bottom:970.485000px;}
.y7{bottom:972.645000px;}
.y11c{bottom:974.085000px;}
.y46{bottom:987.045000px;}
.yf3{bottom:988.485000px;}
.y79{bottom:990.645000px;}
.y11b{bottom:993.885000px;}
.y45{bottom:1003.245000px;}
.yf2{bottom:1008.285000px;}
.y78{bottom:1010.805000px;}
.y11a{bottom:1011.165000px;}
.y44{bottom:1017.285000px;}
.y6{bottom:1027.365000px;}
.yf1{bottom:1028.445000px;}
.y77{bottom:1030.605000px;}
.y43{bottom:1037.445000px;}
.yf0{bottom:1048.245000px;}
.y76{bottom:1050.405000px;}
.y5{bottom:1052.205000px;}
.y42{bottom:1057.245000px;}
.y119{bottom:1063.005000px;}
.yef{bottom:1068.045000px;}
.y4{bottom:1072.725000px;}
.y41{bottom:1077.045000px;}
.y118{bottom:1082.850000px;}
.y75{bottom:1085.370000px;}
.yee{bottom:1087.890000px;}
.y3{bottom:1094.010000px;}
.y40{bottom:1096.890000px;}
.y117{bottom:1103.010000px;}
.yed{bottom:1107.690000px;}
.y74{bottom:1110.210000px;}
.y2{bottom:1114.530000px;}
.y3f{bottom:1116.690000px;}
.y73{bottom:1122.810000px;}
.y1{bottom:1131.450000px;}
.y3e{bottom:1142.610000px;}
.y3d{bottom:1166.370000px;}
.y3c{bottom:1180.410000px;}
.y3b{bottom:1201.290000px;}
.y3a{bottom:1227.600000px;}
.h14{height:5.054063px;}
.h6{height:8.640000px;}
.h20{height:10.108125px;}
.h8{height:15.516000px;}
.h16{height:16.425703px;}
.h15{height:16.920000px;}
.h22{height:18.144844px;}
.hc{height:21.479766px;}
.h1d{height:25.920000px;}
.h11{height:26.533828px;}
.ha{height:26.683594px;}
.h1b{height:28.800000px;}
.hf{height:31.587891px;}
.h1e{height:34.560000px;}
.h10{height:35.222344px;}
.h1c{height:36.036000px;}
.h1f{height:36.396000px;}
.h12{height:36.641953px;}
.h5{height:39.997969px;}
.h17{height:40.680000px;}
.h21{height:40.959844px;}
.h19{height:41.040000px;}
.hd{height:41.696016px;}
.h1a{height:42.480000px;}
.h18{height:42.516000px;}
.h2{height:44.828437px;}
.h7{height:48.013594px;}
.h4{height:53.067656px;}
.hb{height:53.298281px;}
.h3{height:53.367188px;}
.h23{height:55.714922px;}
.h13{height:58.121719px;}
.h9{height:71.512031px;}
.he{height:562.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:59.400000px;}
.w9{width:75.240000px;}
.wd{width:132.912000px;}
.wa{width:166.710000px;}
.wb{width:270.465000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w8{width:545.250000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x24{left:1.080000px;}
.x9{left:8.640000px;}
.x1a{left:10.800000px;}
.x21{left:13.680000px;}
.x19{left:15.480000px;}
.x30{left:21.960000px;}
.x25{left:26.280000px;}
.x23{left:28.800000px;}
.x27{left:29.880000px;}
.x31{left:52.965000px;}
.x32{left:56.925000px;}
.x1f{left:66.240000px;}
.x26{left:70.200000px;}
.x29{left:73.800000px;}
.x28{left:75.600000px;}
.x7{left:106.235987px;}
.xb{left:108.395987px;}
.xc{left:112.355987px;}
.xd{left:114.515987px;}
.x34{left:132.911987px;}
.x15{left:138.311987px;}
.x16{left:140.831987px;}
.x13{left:148.751987px;}
.x1e{left:151.275000px;}
.x14{left:159.554987px;}
.x17{left:167.834987px;}
.x35{left:169.994987px;}
.x18{left:171.075000px;}
.x11{left:180.794987px;}
.xf{left:208.514987px;}
.x2d{left:211.035000px;}
.x33{left:231.584987px;}
.x2b{left:247.064987px;}
.x2{left:254.264987px;}
.x6{left:274.064987px;}
.xe{left:284.144987px;}
.xa{left:304.350000px;}
.x1d{left:311.549987px;}
.x1c{left:314.789987px;}
.x2c{left:324.509987px;}
.x10{left:339.984000px;}
.x5{left:355.829987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.x12{left:447.660000px;}
.x2e{left:485.850000px;}
.x20{left:495.570000px;}
.x2f{left:549.570000px;}
.x22{left:575.535000px;}
.x1b{left:702.284987px;}
.x2a{left:743.684987px;}
.x1{left:786.929987px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v4{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls16{letter-spacing:-1.685333pt;}
.ls1b{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-1.008000pt;}
.ls8{letter-spacing:-0.864000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.450667pt;}
.ls5{letter-spacing:-0.442667pt;}
.ls11{letter-spacing:-0.432533pt;}
.ls17{letter-spacing:-0.406933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.017920pt;}
.lse{letter-spacing:0.189440pt;}
.lsa{letter-spacing:0.200107pt;}
.ls6{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.442880pt;}
.ls1a{letter-spacing:0.450667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.746667pt;}
.ls19{letter-spacing:14.494720pt;}
.lsc{letter-spacing:18.462720pt;}
.ls9{letter-spacing:33.694720pt;}
.ls10{letter-spacing:41.242027pt;}
.ls18{letter-spacing:41.385387pt;}
.lsb{letter-spacing:43.934720pt;}
.lsf{letter-spacing:43.945387pt;}
.lsd{letter-spacing:54.185387pt;}
.ls13{letter-spacing:64.425387pt;}
.ws7{word-spacing:-13.890667pt;}
.ws2{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.007467pt;}
.ws6{word-spacing:-12.608000pt;}
.ws8{word-spacing:-12.160000pt;}
.ws0{word-spacing:-11.717333pt;}
.ws1{word-spacing:-8.640000pt;}
.ws5{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-3.965013pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._8{width:3.610027pt;}
._b{width:4.515840pt;}
._a{width:5.644800pt;}
._10{width:6.666240pt;}
._11{width:8.279040pt;}
._d{width:9.784320pt;}
._c{width:10.805760pt;}
._12{width:12.515413pt;}
._e{width:15.106560pt;}
._f{width:16.081920pt;}
._13{width:17.846613pt;}
._7{width:176.138667pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fsb{font-size:5.120000pt;}
.fsd{font-size:10.240000pt;}
.fsc{font-size:16.640000pt;}
.fs6{font-size:21.760000pt;}
.fs8{font-size:26.880000pt;}
.fs4{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fsa{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y9d{bottom:-14.400000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:1.280000pt;}
.yd{bottom:2.560000pt;}
.y39{bottom:2.880000pt;}
.yc6{bottom:6.720000pt;}
.yc3{bottom:8.000000pt;}
.yc8{bottom:10.560000pt;}
.yc4{bottom:11.200000pt;}
.yca{bottom:11.560000pt;}
.yae{bottom:13.120000pt;}
.yb2{bottom:13.440000pt;}
.yb0{bottom:14.080000pt;}
.y38{bottom:18.234667pt;}
.y37{bottom:33.594667pt;}
.ye{bottom:38.720000pt;}
.y36{bottom:48.954667pt;}
.yc{bottom:60.800000pt;}
.y35{bottom:64.354667pt;}
.y34{bottom:79.714667pt;}
.ya{bottom:84.192000pt;}
.y33{bottom:94.754667pt;}
.y32{bottom:110.114667pt;}
.yec{bottom:116.512000pt;}
.y1b{bottom:120.352000pt;}
.yeb{bottom:124.192000pt;}
.y72{bottom:128.672000pt;}
.y31{bottom:133.474667pt;}
.y116{bottom:140.506667pt;}
.yea{bottom:141.786667pt;}
.y71{bottom:146.266667pt;}
.y30{bottom:156.834667pt;}
.y115{bottom:158.106667pt;}
.ye9{bottom:159.386667pt;}
.y70{bottom:164.186667pt;}
.y2f{bottom:172.221333pt;}
.y114{bottom:175.746667pt;}
.ye8{bottom:177.026667pt;}
.y6f{bottom:177.986667pt;}
.y2e{bottom:187.581333pt;}
.y6e{bottom:187.906667pt;}
.y113{bottom:193.666667pt;}
.ye7{bottom:194.626667pt;}
.y2d{bottom:202.941333pt;}
.y112{bottom:211.266667pt;}
.ye6{bottom:212.226667pt;}
.y6d{bottom:216.386667pt;}
.yb6{bottom:217.346667pt;}
.y2c{bottom:218.301333pt;}
.y111{bottom:228.866667pt;}
.ye5{bottom:229.826667pt;}
.yb5{bottom:232.706667pt;}
.y2b{bottom:233.661333pt;}
.y6c{bottom:233.986667pt;}
.y9b{bottom:240.386667pt;}
.y110{bottom:244.226667pt;}
.ye4{bottom:247.746667pt;}
.y2a{bottom:249.021333pt;}
.yb4{bottom:249.346667pt;}
.y6b{bottom:251.906667pt;}
.y10f{bottom:259.586667pt;}
.y29{bottom:264.381333pt;}
.ye3{bottom:265.346667pt;}
.y6a{bottom:269.826667pt;}
.y28{bottom:279.461333pt;}
.ye2{bottom:282.946667pt;}
.y69{bottom:287.453333pt;}
.y10e{bottom:290.333333pt;}
.yb3{bottom:291.613333pt;}
.y27{bottom:294.821333pt;}
.y68{bottom:305.373333pt;}
.y10d{bottom:307.933333pt;}
.ycf{bottom:308.253333pt;}
.y26{bottom:310.181333pt;}
.ye1{bottom:314.013333pt;}
.y67{bottom:323.613333pt;}
.yce{bottom:325.853333pt;}
.y25{bottom:333.541333pt;}
.yb1{bottom:335.453333pt;}
.ye0{bottom:335.773333pt;}
.y9a{bottom:338.333333pt;}
.y66{bottom:341.213333pt;}
.ycd{bottom:343.453333pt;}
.ydf{bottom:344.733333pt;}
.y99{bottom:353.693333pt;}
.y24{bottom:356.901333pt;}
.y65{bottom:359.453333pt;}
.ycc{bottom:361.053333pt;}
.yde{bottom:362.333333pt;}
.y98{bottom:369.053333pt;}
.y23{bottom:372.261333pt;}
.ycb{bottom:376.413333pt;}
.y64{bottom:377.053333pt;}
.yaf{bottom:378.013333pt;}
.y10c{bottom:378.653333pt;}
.ydd{bottom:379.933333pt;}
.y97{bottom:384.413333pt;}
.y22{bottom:387.621333pt;}
.yc9{bottom:392.733333pt;}
.y63{bottom:393.053333pt;}
.y10b{bottom:396.253333pt;}
.ydc{bottom:397.853333pt;}
.y96{bottom:399.813333pt;}
.y21{bottom:403.008000pt;}
.y62{bottom:405.893333pt;}
.y10a{bottom:413.893333pt;}
.y95{bottom:415.173333pt;}
.ydb{bottom:415.493333pt;}
.y20{bottom:418.368000pt;}
.yad{bottom:421.893333pt;}
.y61{bottom:425.413333pt;}
.y94{bottom:430.533333pt;}
.yc7{bottom:431.173333pt;}
.y109{bottom:431.493333pt;}
.yda{bottom:433.093333pt;}
.y1f{bottom:433.728000pt;}
.y60{bottom:443.333333pt;}
.y93{bottom:445.893333pt;}
.y1e{bottom:449.088000pt;}
.yd9{bottom:450.693333pt;}
.y108{bottom:457.093333pt;}
.y5f{bottom:460.933333pt;}
.yac{bottom:463.813333pt;}
.y1d{bottom:464.448000pt;}
.yc5{bottom:467.973333pt;}
.yab{bottom:474.373333pt;}
.y92{bottom:476.293333pt;}
.y5e{bottom:479.173333pt;}
.y1c{bottom:479.488000pt;}
.yd8{bottom:481.733333pt;}
.y107{bottom:488.133333pt;}
.yaa{bottom:489.413333pt;}
.y91{bottom:491.653333pt;}
.y5d{bottom:496.773333pt;}
.ya9{bottom:504.773333pt;}
.y90{bottom:507.013333pt;}
.y5c{bottom:510.853333pt;}
.y106{bottom:513.440000pt;}
.y5b{bottom:519.840000pt;}
.y8f{bottom:522.400000pt;}
.y105{bottom:523.680000pt;}
.yd7{bottom:530.400000pt;}
.yc2{bottom:534.560000pt;}
.y5a{bottom:535.200000pt;}
.ya8{bottom:535.840000pt;}
.y8e{bottom:537.760000pt;}
.y104{bottom:541.280000pt;}
.yd6{bottom:548.000000pt;}
.y59{bottom:550.560000pt;}
.y8d{bottom:553.120000pt;}
.y103{bottom:559.200000pt;}
.ya7{bottom:564.320000pt;}
.yc1{bottom:565.600000pt;}
.y58{bottom:568.160000pt;}
.y8c{bottom:568.480000pt;}
.yc0{bottom:573.280000pt;}
.y102{bottom:576.800000pt;}
.ya6{bottom:581.920000pt;}
.y57{bottom:582.560000pt;}
.yd5{bottom:583.520000pt;}
.y8b{bottom:583.840000pt;}
.ybf{bottom:588.640000pt;}
.y101{bottom:594.400000pt;}
.y56{bottom:596.640000pt;}
.y8a{bottom:599.200000pt;}
.ya5{bottom:600.160000pt;}
.yd4{bottom:601.120000pt;}
.ybe{bottom:604.000000pt;}
.y12a{bottom:610.080000pt;}
.y100{bottom:612.320000pt;}
.y55{bottom:614.240000pt;}
.y89{bottom:614.560000pt;}
.ya4{bottom:617.760000pt;}
.ybd{bottom:619.360000pt;}
.y1a{bottom:625.466667pt;}
.y129{bottom:627.706667pt;}
.y88{bottom:629.626667pt;}
.yff{bottom:629.946667pt;}
.y54{bottom:631.866667pt;}
.yd3{bottom:632.186667pt;}
.ybc{bottom:634.746667pt;}
.ya3{bottom:636.026667pt;}
.y19{bottom:640.506667pt;}
.y87{bottom:644.986667pt;}
.y128{bottom:645.306667pt;}
.yfe{bottom:647.866667pt;}
.y53{bottom:649.466667pt;}
.ybb{bottom:650.106667pt;}
.ya2{bottom:653.626667pt;}
.yd2{bottom:658.106667pt;}
.y18{bottom:659.386667pt;}
.y86{bottom:660.346667pt;}
.y127{bottom:662.906667pt;}
.y52{bottom:663.546667pt;}
.yba{bottom:665.466667pt;}
.yd1{bottom:673.786667pt;}
.y51{bottom:674.746667pt;}
.y17{bottom:675.706667pt;}
.y126{bottom:680.506667pt;}
.yb9{bottom:680.826667pt;}
.yfd{bottom:683.066667pt;}
.ya1{bottom:684.986667pt;}
.y16{bottom:690.746667pt;}
.y85{bottom:691.066667pt;}
.yb8{bottom:697.466667pt;}
.y50{bottom:697.786667pt;}
.y125{bottom:698.426667pt;}
.y15{bottom:698.746667pt;}
.yfc{bottom:700.986667pt;}
.yd0{bottom:701.946667pt;}
.y84{bottom:706.426667pt;}
.ya0{bottom:708.026667pt;}
.yb7{bottom:709.946667pt;}
.y14{bottom:714.106667pt;}
.y4f{bottom:714.426667pt;}
.y124{bottom:716.026667pt;}
.yfb{bottom:718.586667pt;}
.y83{bottom:721.786667pt;}
.y13{bottom:728.186667pt;}
.y4e{bottom:729.466667pt;}
.y123{bottom:731.386667pt;}
.y9f{bottom:731.706667pt;}
.yfa{bottom:736.226667pt;}
.y82{bottom:737.186667pt;}
.y12{bottom:740.066667pt;}
.y9e{bottom:746.466667pt;}
.y122{bottom:746.786667pt;}
.y4d{bottom:747.106667pt;}
.y81{bottom:749.986667pt;}
.yf9{bottom:753.826667pt;}
.y80{bottom:756.386667pt;}
.y11{bottom:764.706667pt;}
.yf8{bottom:771.426667pt;}
.y7f{bottom:773.986667pt;}
.y121{bottom:777.506667pt;}
.y4c{bottom:782.626667pt;}
.yf7{bottom:789.026667pt;}
.y10{bottom:789.346667pt;}
.y7e{bottom:791.586667pt;}
.y120{bottom:795.106667pt;}
.y4b{bottom:800.226667pt;}
.yf6{bottom:806.626667pt;}
.y7d{bottom:809.186667pt;}
.y11f{bottom:812.706667pt;}
.yf{bottom:813.666667pt;}
.y4a{bottom:817.826667pt;}
.yf5{bottom:824.546667pt;}
.y7c{bottom:827.106667pt;}
.y11e{bottom:830.626667pt;}
.y49{bottom:831.586667pt;}
.y9{bottom:836.706667pt;}
.y48{bottom:841.506667pt;}
.y7b{bottom:844.706667pt;}
.y11d{bottom:848.253333pt;}
.y8{bottom:852.093333pt;}
.yf4{bottom:855.293333pt;}
.y47{bottom:859.453333pt;}
.y7a{bottom:862.653333pt;}
.y7{bottom:864.573333pt;}
.y11c{bottom:865.853333pt;}
.y46{bottom:877.373333pt;}
.yf3{bottom:878.653333pt;}
.y79{bottom:880.573333pt;}
.y11b{bottom:883.453333pt;}
.y45{bottom:891.773333pt;}
.yf2{bottom:896.253333pt;}
.y78{bottom:898.493333pt;}
.y11a{bottom:898.813333pt;}
.y44{bottom:904.253333pt;}
.y6{bottom:913.213333pt;}
.yf1{bottom:914.173333pt;}
.y77{bottom:916.093333pt;}
.y43{bottom:922.173333pt;}
.yf0{bottom:931.773333pt;}
.y76{bottom:933.693333pt;}
.y5{bottom:935.293333pt;}
.y42{bottom:939.773333pt;}
.y119{bottom:944.893333pt;}
.yef{bottom:949.373333pt;}
.y4{bottom:953.533333pt;}
.y41{bottom:957.373333pt;}
.y118{bottom:962.533333pt;}
.y75{bottom:964.773333pt;}
.yee{bottom:967.013333pt;}
.y3{bottom:972.453333pt;}
.y40{bottom:975.013333pt;}
.y117{bottom:980.453333pt;}
.yed{bottom:984.613333pt;}
.y74{bottom:986.853333pt;}
.y2{bottom:990.693333pt;}
.y3f{bottom:992.613333pt;}
.y73{bottom:998.053333pt;}
.y1{bottom:1005.733333pt;}
.y3e{bottom:1015.653333pt;}
.y3d{bottom:1036.773333pt;}
.y3c{bottom:1049.253333pt;}
.y3b{bottom:1067.813333pt;}
.y3a{bottom:1091.200000pt;}
.h14{height:4.492500pt;}
.h6{height:7.680000pt;}
.h20{height:8.985000pt;}
.h8{height:13.792000pt;}
.h16{height:14.600625pt;}
.h15{height:15.040000pt;}
.h22{height:16.128750pt;}
.hc{height:19.093125pt;}
.h1d{height:23.040000pt;}
.h11{height:23.585625pt;}
.ha{height:23.718750pt;}
.h1b{height:25.600000pt;}
.hf{height:28.078125pt;}
.h1e{height:30.720000pt;}
.h10{height:31.308750pt;}
.h1c{height:32.032000pt;}
.h1f{height:32.352000pt;}
.h12{height:32.570625pt;}
.h5{height:35.553750pt;}
.h17{height:36.160000pt;}
.h21{height:36.408750pt;}
.h19{height:36.480000pt;}
.hd{height:37.063125pt;}
.h1a{height:37.760000pt;}
.h18{height:37.792000pt;}
.h2{height:39.847500pt;}
.h7{height:42.678750pt;}
.h4{height:47.171250pt;}
.hb{height:47.376250pt;}
.h3{height:47.437500pt;}
.h23{height:49.524375pt;}
.h13{height:51.663750pt;}
.h9{height:63.566250pt;}
.he{height:499.973333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:52.800000pt;}
.w9{width:66.880000pt;}
.wd{width:118.144000pt;}
.wa{width:148.186667pt;}
.wb{width:240.413333pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w8{width:484.666667pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x24{left:0.960000pt;}
.x9{left:7.680000pt;}
.x1a{left:9.600000pt;}
.x21{left:12.160000pt;}
.x19{left:13.760000pt;}
.x30{left:19.520000pt;}
.x25{left:23.360000pt;}
.x23{left:25.600000pt;}
.x27{left:26.560000pt;}
.x31{left:47.080000pt;}
.x32{left:50.600000pt;}
.x1f{left:58.880000pt;}
.x26{left:62.400000pt;}
.x29{left:65.600000pt;}
.x28{left:67.200000pt;}
.x7{left:94.431988pt;}
.xb{left:96.351988pt;}
.xc{left:99.871988pt;}
.xd{left:101.791988pt;}
.x34{left:118.143988pt;}
.x15{left:122.943988pt;}
.x16{left:125.183988pt;}
.x13{left:132.223988pt;}
.x1e{left:134.466667pt;}
.x14{left:141.826655pt;}
.x17{left:149.186655pt;}
.x35{left:151.106655pt;}
.x18{left:152.066667pt;}
.x11{left:160.706655pt;}
.xf{left:185.346655pt;}
.x2d{left:187.586667pt;}
.x33{left:205.853322pt;}
.x2b{left:219.613322pt;}
.x2{left:226.013322pt;}
.x6{left:243.613322pt;}
.xe{left:252.573322pt;}
.xa{left:270.533333pt;}
.x1d{left:276.933322pt;}
.x1c{left:279.813322pt;}
.x2c{left:288.453322pt;}
.x10{left:302.208000pt;}
.x5{left:316.293322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.x12{left:397.920000pt;}
.x2e{left:431.866667pt;}
.x20{left:440.506667pt;}
.x2f{left:488.506667pt;}
.x22{left:511.586667pt;}
.x1b{left:624.253322pt;}
.x2a{left:661.053322pt;}
.x1{left:699.493322pt;}
}




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