
    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_c1ff0bda1dd3bf4aded5c44d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8288c0f88f9d920bfe18d99c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e02ff4bb9ac9931041454ea8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_3b61cad560f71cc7e874b40a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_69765dde05943cd4cd48b985.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_305f09ee5380521b08d2fb88.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a0f2c52316edce6d766fe726.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_73d5439841928b9b39621244.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_dd249ef3034eeef08f0deb73.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_81a60a1e2588fa0bf38a89fc.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0300db0b99baed92c5f078dc.woff')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.lsc{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.018000px;}
.ls9{letter-spacing:-0.017280px;}
.lsb{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.ls17{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.513600px;}
.ls7{letter-spacing:0.666000px;}
.ls13{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.792000px;}
.lsf{letter-spacing:57.024000px;}
.ls15{letter-spacing:77.904000px;}
.ls14{letter-spacing:82.385280px;}
.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;}
}
.ws10{word-spacing:-72.000000px;}
.wsf{word-spacing:-66.240000px;}
.ws3{word-spacing:-19.457280px;}
.ws9{word-spacing:-19.448640px;}
.ws7{word-spacing:-19.431360px;}
.ws4{word-spacing:-19.422720px;}
.ws8{word-spacing:-18.000000px;}
.wse{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.568000px;}
.ws1{word-spacing:-15.606000px;}
.ws0{word-spacing:-15.453600px;}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.wsc{word-spacing:-0.786000px;}
.ws6{word-spacing:0.000000px;}
.wsb{word-spacing:12.858000px;}
._14{margin-left:-4.807440px;}
._d{margin-left:-3.797280px;}
._3{margin-left:-2.165760px;}
._6{margin-left:-1.080720px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._c{width:3.992880px;}
._5{width:5.174160px;}
._7{width:6.696000px;}
._8{width:8.136000px;}
._b{width:9.648000px;}
._19{width:10.649520px;}
._10{width:11.664000px;}
._11{width:12.664080px;}
._f{width:14.111280px;}
._e{width:15.768720px;}
._15{width:16.776000px;}
._16{width:19.224000px;}
._17{width:20.232000px;}
._18{width:21.660000px;}
._1a{width:23.544000px;}
._1b{width:24.708000px;}
._9{width:32.112000px;}
._a{width:33.246000px;}
._1e{width:37.447440px;}
._12{width:38.862000px;}
._1c{width:62.064000px;}
._1d{width:63.264000px;}
._13{width:429.877920px;}
._2{width:532.260000px;}
._4{width:1523.640000px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:40.982709px;}
.fs8{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.ya9{bottom:-2.595000px;}
.yac{bottom:-1.650000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:3.750000px;}
.y97{bottom:4.485000px;}
.y90{bottom:4.500000px;}
.yb9{bottom:4.545000px;}
.yb5{bottom:5.400000px;}
.ya4{bottom:6.765000px;}
.ya2{bottom:6.810000px;}
.yae{bottom:6.990000px;}
.yb7{bottom:7.020000px;}
.ybc{bottom:7.365000px;}
.yc1{bottom:7.560000px;}
.ya6{bottom:7.710000px;}
.ya0{bottom:7.890000px;}
.y55{bottom:14.220000px;}
.ya8{bottom:17.205000px;}
.yab{bottom:18.330000px;}
.y7{bottom:39.276000px;}
.y54{bottom:49.395000px;}
.y6{bottom:58.536000px;}
.y4d{bottom:66.930000px;}
.y4e{bottom:99.795000px;}
.y2e{bottom:131.076000px;}
.y4f{bottom:132.690000px;}
.y2d{bottom:136.296000px;}
.y79{bottom:136.476000px;}
.y9c{bottom:143.316000px;}
.y2c{bottom:149.256000px;}
.y4b{bottom:152.850000px;}
.yd4{bottom:154.830000px;}
.y78{bottom:157.170000px;}
.yf5{bottom:160.770000px;}
.y9b{bottom:164.010000px;}
.y50{bottom:165.570000px;}
.y4a{bottom:173.550000px;}
.yd3{bottom:175.530000px;}
.y77{bottom:177.870000px;}
.y2b{bottom:180.210000px;}
.yf4{bottom:181.470000px;}
.y49{bottom:194.250000px;}
.yd2{bottom:196.230000px;}
.y2a{bottom:197.490000px;}
.y51{bottom:198.435000px;}
.y76{bottom:198.570000px;}
.y9a{bottom:198.945000px;}
.y29{bottom:214.590000px;}
.y75{bottom:219.270000px;}
.yf3{bottom:220.170000px;}
.y99{bottom:220.365000px;}
.y52{bottom:231.330000px;}
.y48{bottom:232.950000px;}
.yd1{bottom:234.570000px;}
.y74{bottom:239.970000px;}
.yf2{bottom:240.870000px;}
.y98{bottom:241.785000px;}
.y28{bottom:250.590000px;}
.y73{bottom:260.670000px;}
.yf1{bottom:261.570000px;}
.y96{bottom:263.205000px;}
.y53{bottom:264.210000px;}
.y4c{bottom:267.300000px;}
.y27{bottom:271.290000px;}
.yd0{bottom:275.295000px;}
.yf0{bottom:282.315000px;}
.y95{bottom:284.835000px;}
.ycf{bottom:295.995000px;}
.y72{bottom:299.235000px;}
.y94{bottom:306.255000px;}
.y26{bottom:311.835000px;}
.yce{bottom:316.695000px;}
.yef{bottom:321.015000px;}
.y93{bottom:327.675000px;}
.y25{bottom:332.535000px;}
.y71{bottom:339.915000px;}
.yee{bottom:341.715000px;}
.y92{bottom:349.095000px;}
.y24{bottom:353.235000px;}
.ycd{bottom:355.395000px;}
.y70{bottom:360.615000px;}
.yed{bottom:362.415000px;}
.y91{bottom:370.515000px;}
.y23{bottom:373.935000px;}
.y6f{bottom:381.315000px;}
.y8f{bottom:391.935000px;}
.ycc{bottom:394.095000px;}
.y22{bottom:394.635000px;}
.yec{bottom:400.935000px;}
.y6e{bottom:402.015000px;}
.ycb{bottom:414.795000px;}
.y21{bottom:415.335000px;}
.y8e{bottom:417.855000px;}
.yca{bottom:435.495000px;}
.y20{bottom:436.035000px;}
.y6d{bottom:440.715000px;}
.yeb{bottom:441.615000px;}
.y8d{bottom:456.555000px;}
.y1f{bottom:456.735000px;}
.y6c{bottom:461.415000px;}
.yea{bottom:462.315000px;}
.yc9{bottom:474.195000px;}
.y8c{bottom:477.255000px;}
.y1e{bottom:477.435000px;}
.ye9{bottom:483.015000px;}
.y47{bottom:494.895000px;}
.y8b{bottom:497.955000px;}
.y1d{bottom:498.135000px;}
.y6b{bottom:500.115000px;}
.ye8{bottom:503.715000px;}
.yc8{bottom:515.595000px;}
.y8a{bottom:518.655000px;}
.y1c{bottom:518.835000px;}
.y6a{bottom:520.815000px;}
.ye7{bottom:524.415000px;}
.y46{bottom:535.395000px;}
.y89{bottom:539.355000px;}
.y1b{bottom:539.535000px;}
.yc7{bottom:554.295000px;}
.y69{bottom:559.725000px;}
.y88{bottom:560.085000px;}
.y1a{bottom:560.265000px;}
.ye6{bottom:562.965000px;}
.yc6{bottom:575.025000px;}
.y45{bottom:575.565000px;}
.y19{bottom:580.965000px;}
.yc5{bottom:595.725000px;}
.y44{bottom:596.265000px;}
.y87{bottom:598.785000px;}
.y68{bottom:599.865000px;}
.y18{bottom:601.665000px;}
.ye5{bottom:603.105000px;}
.yc4{bottom:616.425000px;}
.y43{bottom:616.965000px;}
.y86{bottom:619.485000px;}
.y67{bottom:620.565000px;}
.y17{bottom:622.365000px;}
.ye4{bottom:623.805000px;}
.y42{bottom:637.665000px;}
.y66{bottom:641.265000px;}
.y16{bottom:643.065000px;}
.ye3{bottom:644.505000px;}
.yc3{bottom:651.345000px;}
.y85{bottom:658.005000px;}
.y41{bottom:658.365000px;}
.y65{bottom:661.965000px;}
.yc2{bottom:672.765000px;}
.y40{bottom:679.065000px;}
.y15{bottom:681.405000px;}
.y64{bottom:682.665000px;}
.ye2{bottom:683.025000px;}
.yc0{bottom:694.185000px;}
.y84{bottom:698.685000px;}
.y3f{bottom:699.765000px;}
.y63{bottom:703.365000px;}
.y3e{bottom:720.465000px;}
.ybf{bottom:721.545000px;}
.y14{bottom:721.905000px;}
.ye1{bottom:723.165000px;}
.y62{bottom:724.065000px;}
.y83{bottom:737.385000px;}
.y3d{bottom:741.165000px;}
.ybe{bottom:742.965000px;}
.ye0{bottom:743.865000px;}
.yfe{bottom:745.485000px;}
.ya7{bottom:747.900000px;}
.y13{bottom:762.945000px;}
.y61{bottom:763.125000px;}
.ybd{bottom:764.385000px;}
.ydf{bottom:764.565000px;}
.yfd{bottom:766.185000px;}
.y82{bottom:775.905000px;}
.y3c{bottom:780.045000px;}
.y12{bottom:785.265000px;}
.ybb{bottom:786.000000px;}
.ya3{bottom:802.620000px;}
.y60{bottom:803.265000px;}
.yfc{bottom:804.885000px;}
.yde{bottom:805.965000px;}
.y11{bottom:808.125000px;}
.yba{bottom:813.165000px;}
.y81{bottom:814.785000px;}
.y3b{bottom:820.185000px;}
.y5f{bottom:823.965000px;}
.yfb{bottom:825.585000px;}
.yb8{bottom:834.585000px;}
.y3a{bottom:840.930000px;}
.ydd{bottom:844.530000px;}
.y5e{bottom:844.710000px;}
.yfa{bottom:846.330000px;}
.ya5{bottom:847.800000px;}
.y10{bottom:849.930000px;}
.y80{bottom:853.530000px;}
.yb6{bottom:856.230000px;}
.y39{bottom:861.630000px;}
.y5d{bottom:865.410000px;}
.yf{bottom:872.250000px;}
.y38{bottom:882.330000px;}
.yb4{bottom:882.690000px;}
.ydc{bottom:884.670000px;}
.yf9{bottom:885.030000px;}
.yaa{bottom:891.900000px;}
.y7f{bottom:892.230000px;}
.yd{bottom:895.110000px;}
.yad{bottom:901.440000px;}
.ye{bottom:902.670000px;}
.y37{bottom:903.030000px;}
.y5c{bottom:903.750000px;}
.ydb{bottom:905.370000px;}
.yf8{bottom:905.730000px;}
.y36{bottom:923.730000px;}
.yb3{bottom:925.350000px;}
.yda{bottom:926.070000px;}
.yf7{bottom:926.430000px;}
.y7e{bottom:930.930000px;}
.yc{bottom:938.670000px;}
.y35{bottom:944.430000px;}
.yd9{bottom:946.770000px;}
.y9f{bottom:947.880000px;}
.yb2{bottom:964.230000px;}
.y5b{bottom:965.130000px;}
.yd8{bottom:967.470000px;}
.y7d{bottom:969.630000px;}
.yb{bottom:973.230000px;}
.y34{bottom:983.130000px;}
.yb1{bottom:984.930000px;}
.y5a{bottom:985.830000px;}
.yd7{bottom:988.170000px;}
.ya1{bottom:992.880000px;}
.y33{bottom:1003.830000px;}
.yb0{bottom:1005.630000px;}
.y59{bottom:1006.530000px;}
.ya{bottom:1007.790000px;}
.y7c{bottom:1008.330000px;}
.yd6{bottom:1008.870000px;}
.y32{bottom:1024.530000px;}
.yaf{bottom:1026.330000px;}
.y9d{bottom:1037.520000px;}
.y9{bottom:1042.170000px;}
.yf6{bottom:1045.050000px;}
.y31{bottom:1045.230000px;}
.y58{bottom:1045.590000px;}
.y7b{bottom:1047.030000px;}
.yd5{bottom:1047.210000px;}
.y30{bottom:1065.930000px;}
.y7a{bottom:1085.550000px;}
.y57{bottom:1085.730000px;}
.y8{bottom:1094.730000px;}
.y2f{bottom:1104.450000px;}
.y56{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h19{height:17.460000px;}
.h1b{height:20.520000px;}
.h17{height:20.685000px;}
.h1f{height:20.700000px;}
.h18{height:20.721000px;}
.h23{height:20.722500px;}
.h1c{height:21.420000px;}
.h1a{height:21.600000px;}
.h20{height:22.485000px;}
.h21{height:25.725000px;}
.h24{height:26.445000px;}
.h25{height:26.640000px;}
.h10{height:28.455767px;}
.h1d{height:30.960000px;}
.h1e{height:32.040000px;}
.h14{height:36.834961px;}
.ha{height:37.494141px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.hf{height:50.027344px;}
.h5{height:53.640000px;}
.h11{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h15{height:65.010937px;}
.h27{height:68.084282px;}
.he{height:70.664062px;}
.h26{height:72.562500px;}
.h16{height:74.004654px;}
.h22{height:74.704922px;}
.h12{height:76.279219px;}
.hb{height:76.317188px;}
.hd{height:78.367500px;}
.h8{height:82.676953px;}
.hc{height:83.238047px;}
.h7{height:121.179375px;}
.h13{height:284.760000px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:57.585000px;}
.w7{width:70.416000px;}
.w6{width:73.800000px;}
.w9{width:78.465000px;}
.w15{width:91.425000px;}
.w14{width:103.536000px;}
.w10{width:106.740000px;}
.wd{width:119.160000px;}
.we{width:121.140000px;}
.wb{width:122.220000px;}
.wc{width:122.580000px;}
.wa{width:123.840000px;}
.wf{width:124.560000px;}
.w2{width:125.460000px;}
.w5{width:168.315000px;}
.w13{width:195.690000px;}
.w12{width:199.455000px;}
.w11{width:395.880000px;}
.w4{width:567.000000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.740000px;}
.x15{left:9.795000px;}
.x29{left:10.830000px;}
.x21{left:12.945000px;}
.x22{left:14.385000px;}
.x14{left:16.635000px;}
.x20{left:19.440000px;}
.x1f{left:21.240000px;}
.x33{left:22.500000px;}
.x25{left:26.310000px;}
.x34{left:29.865000px;}
.x35{left:31.500000px;}
.x1e{left:33.465000px;}
.x26{left:35.985000px;}
.x13{left:37.155000px;}
.x23{left:45.345000px;}
.x27{left:48.945000px;}
.x2{left:50.399998px;}
.x36{left:51.510000px;}
.x16{left:55.830000px;}
.x32{left:61.770000px;}
.x30{left:65.190000px;}
.x24{left:66.765000px;}
.x2f{left:77.610000px;}
.x2d{left:106.050000px;}
.x1{left:127.656000px;}
.xf{left:132.516000px;}
.x10{left:148.896000px;}
.x4{left:151.410000px;}
.x5{left:158.970000px;}
.x12{left:175.500000px;}
.x28{left:178.200000px;}
.xd{left:180.750000px;}
.xa{left:189.930000px;}
.xb{left:215.490000px;}
.x19{left:220.725000px;}
.x2c{left:248.625000px;}
.x11{left:250.230000px;}
.xc{left:304.635000px;}
.x7{left:313.815000px;}
.x2b{left:315.615000px;}
.x6{left:334.515000px;}
.xe{left:343.695000px;}
.x17{left:344.955000px;}
.x18{left:373.395000px;}
.x1a{left:389.955000px;}
.x2a{left:401.040000px;}
.x2e{left:448.815000px;}
.x3{left:457.275000px;}
.x1b{left:464.655000px;}
.x1d{left:535.800000px;}
.x31{left:553.080000px;}
.x8{left:593.722500px;}
.x9{left:600.585000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:-0.015360pt;}
.lsb{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.ls17{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.456533pt;}
.ls7{letter-spacing:0.592000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.704000pt;}
.lsf{letter-spacing:50.688000pt;}
.ls15{letter-spacing:69.248000pt;}
.ls14{letter-spacing:73.231360pt;}
.ws10{word-spacing:-64.000000pt;}
.wsf{word-spacing:-58.880000pt;}
.ws3{word-spacing:-17.295360pt;}
.ws9{word-spacing:-17.287680pt;}
.ws7{word-spacing:-17.272320pt;}
.ws4{word-spacing:-17.264640pt;}
.ws8{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.616000pt;}
.ws1{word-spacing:-13.872000pt;}
.ws0{word-spacing:-13.736533pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.wsc{word-spacing:-0.698667pt;}
.ws6{word-spacing:0.000000pt;}
.wsb{word-spacing:11.429333pt;}
._14{margin-left:-4.273280pt;}
._d{margin-left:-3.375360pt;}
._3{margin-left:-1.925120pt;}
._6{margin-left:-0.960640pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._c{width:3.549227pt;}
._5{width:4.599253pt;}
._7{width:5.952000pt;}
._8{width:7.232000pt;}
._b{width:8.576000pt;}
._19{width:9.466240pt;}
._10{width:10.368000pt;}
._11{width:11.256960pt;}
._f{width:12.543360pt;}
._e{width:14.016640pt;}
._15{width:14.912000pt;}
._16{width:17.088000pt;}
._17{width:17.984000pt;}
._18{width:19.253333pt;}
._1a{width:20.928000pt;}
._1b{width:21.962667pt;}
._9{width:28.544000pt;}
._a{width:29.552000pt;}
._1e{width:33.286613pt;}
._12{width:34.544000pt;}
._1c{width:55.168000pt;}
._1d{width:56.234667pt;}
._13{width:382.113707pt;}
._2{width:473.120000pt;}
._4{width:1354.346667pt;}
.fs7{font-size:36.429074pt;}
.fs8{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.ya9{bottom:-2.306667pt;}
.yac{bottom:-1.466667pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:3.333333pt;}
.y97{bottom:3.986667pt;}
.y90{bottom:4.000000pt;}
.yb9{bottom:4.040000pt;}
.yb5{bottom:4.800000pt;}
.ya4{bottom:6.013333pt;}
.ya2{bottom:6.053333pt;}
.yae{bottom:6.213333pt;}
.yb7{bottom:6.240000pt;}
.ybc{bottom:6.546667pt;}
.yc1{bottom:6.720000pt;}
.ya6{bottom:6.853333pt;}
.ya0{bottom:7.013333pt;}
.y55{bottom:12.640000pt;}
.ya8{bottom:15.293333pt;}
.yab{bottom:16.293333pt;}
.y7{bottom:34.912000pt;}
.y54{bottom:43.906667pt;}
.y6{bottom:52.032000pt;}
.y4d{bottom:59.493333pt;}
.y4e{bottom:88.706667pt;}
.y2e{bottom:116.512000pt;}
.y4f{bottom:117.946667pt;}
.y2d{bottom:121.152000pt;}
.y79{bottom:121.312000pt;}
.y9c{bottom:127.392000pt;}
.y2c{bottom:132.672000pt;}
.y4b{bottom:135.866667pt;}
.yd4{bottom:137.626667pt;}
.y78{bottom:139.706667pt;}
.yf5{bottom:142.906667pt;}
.y9b{bottom:145.786667pt;}
.y50{bottom:147.173333pt;}
.y4a{bottom:154.266667pt;}
.yd3{bottom:156.026667pt;}
.y77{bottom:158.106667pt;}
.y2b{bottom:160.186667pt;}
.yf4{bottom:161.306667pt;}
.y49{bottom:172.666667pt;}
.yd2{bottom:174.426667pt;}
.y2a{bottom:175.546667pt;}
.y51{bottom:176.386667pt;}
.y76{bottom:176.506667pt;}
.y9a{bottom:176.840000pt;}
.y29{bottom:190.746667pt;}
.y75{bottom:194.906667pt;}
.yf3{bottom:195.706667pt;}
.y99{bottom:195.880000pt;}
.y52{bottom:205.626667pt;}
.y48{bottom:207.066667pt;}
.yd1{bottom:208.506667pt;}
.y74{bottom:213.306667pt;}
.yf2{bottom:214.106667pt;}
.y98{bottom:214.920000pt;}
.y28{bottom:222.746667pt;}
.y73{bottom:231.706667pt;}
.yf1{bottom:232.506667pt;}
.y96{bottom:233.960000pt;}
.y53{bottom:234.853333pt;}
.y4c{bottom:237.600000pt;}
.y27{bottom:241.146667pt;}
.yd0{bottom:244.706667pt;}
.yf0{bottom:250.946667pt;}
.y95{bottom:253.186667pt;}
.ycf{bottom:263.106667pt;}
.y72{bottom:265.986667pt;}
.y94{bottom:272.226667pt;}
.y26{bottom:277.186667pt;}
.yce{bottom:281.506667pt;}
.yef{bottom:285.346667pt;}
.y93{bottom:291.266667pt;}
.y25{bottom:295.586667pt;}
.y71{bottom:302.146667pt;}
.yee{bottom:303.746667pt;}
.y92{bottom:310.306667pt;}
.y24{bottom:313.986667pt;}
.ycd{bottom:315.906667pt;}
.y70{bottom:320.546667pt;}
.yed{bottom:322.146667pt;}
.y91{bottom:329.346667pt;}
.y23{bottom:332.386667pt;}
.y6f{bottom:338.946667pt;}
.y8f{bottom:348.386667pt;}
.ycc{bottom:350.306667pt;}
.y22{bottom:350.786667pt;}
.yec{bottom:356.386667pt;}
.y6e{bottom:357.346667pt;}
.ycb{bottom:368.706667pt;}
.y21{bottom:369.186667pt;}
.y8e{bottom:371.426667pt;}
.yca{bottom:387.106667pt;}
.y20{bottom:387.586667pt;}
.y6d{bottom:391.746667pt;}
.yeb{bottom:392.546667pt;}
.y8d{bottom:405.826667pt;}
.y1f{bottom:405.986667pt;}
.y6c{bottom:410.146667pt;}
.yea{bottom:410.946667pt;}
.yc9{bottom:421.506667pt;}
.y8c{bottom:424.226667pt;}
.y1e{bottom:424.386667pt;}
.ye9{bottom:429.346667pt;}
.y47{bottom:439.906667pt;}
.y8b{bottom:442.626667pt;}
.y1d{bottom:442.786667pt;}
.y6b{bottom:444.546667pt;}
.ye8{bottom:447.746667pt;}
.yc8{bottom:458.306667pt;}
.y8a{bottom:461.026667pt;}
.y1c{bottom:461.186667pt;}
.y6a{bottom:462.946667pt;}
.ye7{bottom:466.146667pt;}
.y46{bottom:475.906667pt;}
.y89{bottom:479.426667pt;}
.y1b{bottom:479.586667pt;}
.yc7{bottom:492.706667pt;}
.y69{bottom:497.533333pt;}
.y88{bottom:497.853333pt;}
.y1a{bottom:498.013333pt;}
.ye6{bottom:500.413333pt;}
.yc6{bottom:511.133333pt;}
.y45{bottom:511.613333pt;}
.y19{bottom:516.413333pt;}
.yc5{bottom:529.533333pt;}
.y44{bottom:530.013333pt;}
.y87{bottom:532.253333pt;}
.y68{bottom:533.213333pt;}
.y18{bottom:534.813333pt;}
.ye5{bottom:536.093333pt;}
.yc4{bottom:547.933333pt;}
.y43{bottom:548.413333pt;}
.y86{bottom:550.653333pt;}
.y67{bottom:551.613333pt;}
.y17{bottom:553.213333pt;}
.ye4{bottom:554.493333pt;}
.y42{bottom:566.813333pt;}
.y66{bottom:570.013333pt;}
.y16{bottom:571.613333pt;}
.ye3{bottom:572.893333pt;}
.yc3{bottom:578.973333pt;}
.y85{bottom:584.893333pt;}
.y41{bottom:585.213333pt;}
.y65{bottom:588.413333pt;}
.yc2{bottom:598.013333pt;}
.y40{bottom:603.613333pt;}
.y15{bottom:605.693333pt;}
.y64{bottom:606.813333pt;}
.ye2{bottom:607.133333pt;}
.yc0{bottom:617.053333pt;}
.y84{bottom:621.053333pt;}
.y3f{bottom:622.013333pt;}
.y63{bottom:625.213333pt;}
.y3e{bottom:640.413333pt;}
.ybf{bottom:641.373333pt;}
.y14{bottom:641.693333pt;}
.ye1{bottom:642.813333pt;}
.y62{bottom:643.613333pt;}
.y83{bottom:655.453333pt;}
.y3d{bottom:658.813333pt;}
.ybe{bottom:660.413333pt;}
.ye0{bottom:661.213333pt;}
.yfe{bottom:662.653333pt;}
.ya7{bottom:664.800000pt;}
.y13{bottom:678.173333pt;}
.y61{bottom:678.333333pt;}
.ybd{bottom:679.453333pt;}
.ydf{bottom:679.613333pt;}
.yfd{bottom:681.053333pt;}
.y82{bottom:689.693333pt;}
.y3c{bottom:693.373333pt;}
.y12{bottom:698.013333pt;}
.ybb{bottom:698.666667pt;}
.ya3{bottom:713.440000pt;}
.y60{bottom:714.013333pt;}
.yfc{bottom:715.453333pt;}
.yde{bottom:716.413333pt;}
.y11{bottom:718.333333pt;}
.yba{bottom:722.813333pt;}
.y81{bottom:724.253333pt;}
.y3b{bottom:729.053333pt;}
.y5f{bottom:732.413333pt;}
.yfb{bottom:733.853333pt;}
.yb8{bottom:741.853333pt;}
.y3a{bottom:747.493333pt;}
.ydd{bottom:750.693333pt;}
.y5e{bottom:750.853333pt;}
.yfa{bottom:752.293333pt;}
.ya5{bottom:753.600000pt;}
.y10{bottom:755.493333pt;}
.y80{bottom:758.693333pt;}
.yb6{bottom:761.093333pt;}
.y39{bottom:765.893333pt;}
.y5d{bottom:769.253333pt;}
.yf{bottom:775.333333pt;}
.y38{bottom:784.293333pt;}
.yb4{bottom:784.613333pt;}
.ydc{bottom:786.373333pt;}
.yf9{bottom:786.693333pt;}
.yaa{bottom:792.800000pt;}
.y7f{bottom:793.093333pt;}
.yd{bottom:795.653333pt;}
.yad{bottom:801.280000pt;}
.ye{bottom:802.373333pt;}
.y37{bottom:802.693333pt;}
.y5c{bottom:803.333333pt;}
.ydb{bottom:804.773333pt;}
.yf8{bottom:805.093333pt;}
.y36{bottom:821.093333pt;}
.yb3{bottom:822.533333pt;}
.yda{bottom:823.173333pt;}
.yf7{bottom:823.493333pt;}
.y7e{bottom:827.493333pt;}
.yc{bottom:834.373333pt;}
.y35{bottom:839.493333pt;}
.yd9{bottom:841.573333pt;}
.y9f{bottom:842.560000pt;}
.yb2{bottom:857.093333pt;}
.y5b{bottom:857.893333pt;}
.yd8{bottom:859.973333pt;}
.y7d{bottom:861.893333pt;}
.yb{bottom:865.093333pt;}
.y34{bottom:873.893333pt;}
.yb1{bottom:875.493333pt;}
.y5a{bottom:876.293333pt;}
.yd7{bottom:878.373333pt;}
.ya1{bottom:882.560000pt;}
.y33{bottom:892.293333pt;}
.yb0{bottom:893.893333pt;}
.y59{bottom:894.693333pt;}
.ya{bottom:895.813333pt;}
.y7c{bottom:896.293333pt;}
.yd6{bottom:896.773333pt;}
.y32{bottom:910.693333pt;}
.yaf{bottom:912.293333pt;}
.y9d{bottom:922.240000pt;}
.y9{bottom:926.373333pt;}
.yf6{bottom:928.933333pt;}
.y31{bottom:929.093333pt;}
.y58{bottom:929.413333pt;}
.y7b{bottom:930.693333pt;}
.yd5{bottom:930.853333pt;}
.y30{bottom:947.493333pt;}
.y7a{bottom:964.933333pt;}
.y57{bottom:965.093333pt;}
.y8{bottom:973.093333pt;}
.y2f{bottom:981.733333pt;}
.y56{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h19{height:15.520000pt;}
.h1b{height:18.240000pt;}
.h17{height:18.386667pt;}
.h1f{height:18.400000pt;}
.h18{height:18.418667pt;}
.h23{height:18.420000pt;}
.h1c{height:19.040000pt;}
.h1a{height:19.200000pt;}
.h20{height:19.986667pt;}
.h21{height:22.866667pt;}
.h24{height:23.506667pt;}
.h25{height:23.680000pt;}
.h10{height:25.294016pt;}
.h1d{height:27.520000pt;}
.h1e{height:28.480000pt;}
.h14{height:32.742188pt;}
.ha{height:33.328125pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.hf{height:44.468750pt;}
.h5{height:47.680000pt;}
.h11{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h15{height:57.787500pt;}
.h27{height:60.519362pt;}
.he{height:62.812500pt;}
.h26{height:64.500000pt;}
.h16{height:65.781915pt;}
.h22{height:66.404375pt;}
.h12{height:67.803750pt;}
.hb{height:67.837500pt;}
.hd{height:69.660000pt;}
.h8{height:73.490625pt;}
.hc{height:73.989375pt;}
.h7{height:107.715000pt;}
.h13{height:253.120000pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:51.186667pt;}
.w7{width:62.592000pt;}
.w6{width:65.600000pt;}
.w9{width:69.746667pt;}
.w15{width:81.266667pt;}
.w14{width:92.032000pt;}
.w10{width:94.880000pt;}
.wd{width:105.920000pt;}
.we{width:107.680000pt;}
.wb{width:108.640000pt;}
.wc{width:108.960000pt;}
.wa{width:110.080000pt;}
.wf{width:110.720000pt;}
.w2{width:111.520000pt;}
.w5{width:149.613333pt;}
.w13{width:173.946667pt;}
.w12{width:177.293333pt;}
.w11{width:351.893333pt;}
.w4{width:504.000000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.880000pt;}
.x15{left:8.706667pt;}
.x29{left:9.626667pt;}
.x21{left:11.506667pt;}
.x22{left:12.786667pt;}
.x14{left:14.786667pt;}
.x20{left:17.280000pt;}
.x1f{left:18.880000pt;}
.x33{left:20.000000pt;}
.x25{left:23.386667pt;}
.x34{left:26.546667pt;}
.x35{left:28.000000pt;}
.x1e{left:29.746667pt;}
.x26{left:31.986667pt;}
.x13{left:33.026667pt;}
.x23{left:40.306667pt;}
.x27{left:43.506667pt;}
.x2{left:44.799998pt;}
.x36{left:45.786667pt;}
.x16{left:49.626667pt;}
.x32{left:54.906667pt;}
.x30{left:57.946667pt;}
.x24{left:59.346667pt;}
.x2f{left:68.986667pt;}
.x2d{left:94.266667pt;}
.x1{left:113.472000pt;}
.xf{left:117.792000pt;}
.x10{left:132.352000pt;}
.x4{left:134.586667pt;}
.x5{left:141.306667pt;}
.x12{left:156.000000pt;}
.x28{left:158.400000pt;}
.xd{left:160.666667pt;}
.xa{left:168.826667pt;}
.xb{left:191.546667pt;}
.x19{left:196.200000pt;}
.x2c{left:221.000000pt;}
.x11{left:222.426667pt;}
.xc{left:270.786667pt;}
.x7{left:278.946667pt;}
.x2b{left:280.546667pt;}
.x6{left:297.346667pt;}
.xe{left:305.506667pt;}
.x17{left:306.626667pt;}
.x18{left:331.906667pt;}
.x1a{left:346.626667pt;}
.x2a{left:356.480000pt;}
.x2e{left:398.946667pt;}
.x3{left:406.466667pt;}
.x1b{left:413.026667pt;}
.x1d{left:476.266667pt;}
.x31{left:491.626667pt;}
.x8{left:527.753333pt;}
.x9{left:533.853333pt;}
}




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