
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_40ee399ae3c9d9a8858f618a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bb754e399c60cd8bf381be4d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_d27a6a2491b2f9eb7bf4637a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_e1b852ce09647b9ad9d1e645.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_18701834a42dc68773c9206f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.966309;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_73c8e1ade5c5af8637943b42.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6073512274f08a3c53d6cc8e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;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:ffc;src:url('chunks/assets/font_ccc57a7b298d7d084b360161.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;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:ffd;src:url('chunks/assets/font_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.lsa{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.226200px;}
.ls1d{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.089400px;}
.lsb{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.014400px;}
.ls19{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.379920px;}
.ls8{letter-spacing:0.720000px;}
.ls11{letter-spacing:1.620000px;}
.lsf{letter-spacing:4.500000px;}
.ls10{letter-spacing:7.380000px;}
.ls3{letter-spacing:8.094240px;}
.ls12{letter-spacing:8.820000px;}
.lse{letter-spacing:10.980000px;}
.ls1c{letter-spacing:16.506720px;}
.ls13{letter-spacing:18.180000px;}
.ls17{letter-spacing:23.220000px;}
.ls2{letter-spacing:24.654240px;}
.lsd{letter-spacing:46.026720px;}
.ls15{letter-spacing:64.026720px;}
.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:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsc{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.733600px;}
.ws9{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.392000px;}
.ws3{word-spacing:-11.160000px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.ws7{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.015920px;}
._2{width:2.038800px;}
._4{width:3.834000px;}
._c{width:4.836960px;}
._6{width:5.913360px;}
._5{width:7.128000px;}
._8{width:8.146800px;}
._e{width:9.314640px;}
._9{width:10.368000px;}
._d{width:11.738160px;}
._f{width:13.471920px;}
._3{width:14.590080px;}
._7{width:16.200000px;}
._11{width:18.107280px;}
._b{width:19.116000px;}
._a{width:20.844000px;}
._14{width:22.123440px;}
._15{width:23.127120px;}
._13{width:24.262560px;}
._10{width:25.457760px;}
._12{width:27.250560px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(13,13,13);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs8{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:2.160000px;}
.y43{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y5b{bottom:5.010000px;}
.y2{bottom:9.900000px;}
.y4d{bottom:10.260000px;}
.y42{bottom:20.340000px;}
.y59{bottom:20.880000px;}
.y4{bottom:22.710000px;}
.y41{bottom:37.620000px;}
.y4c{bottom:39.960000px;}
.y3{bottom:47.910000px;}
.y4b{bottom:51.120000px;}
.y40{bottom:54.900000px;}
.y58{bottom:55.440000px;}
.y7{bottom:57.060000px;}
.y4a{bottom:62.820000px;}
.y57{bottom:70.920000px;}
.y3f{bottom:72.180000px;}
.y49{bottom:75.960000px;}
.y56{bottom:86.400000px;}
.y48{bottom:88.920000px;}
.y3e{bottom:89.460000px;}
.ye8{bottom:93.240000px;}
.y55{bottom:99.390000px;}
.y11c{bottom:105.120000px;}
.y54{bottom:105.870000px;}
.y95{bottom:106.200000px;}
.y3d{bottom:106.740000px;}
.yb8{bottom:107.280000px;}
.y44{bottom:108.720000px;}
.y47{bottom:110.910000px;}
.ye7{bottom:111.600000px;}
.y53{bottom:121.530000px;}
.y11b{bottom:122.220000px;}
.y94{bottom:123.300000px;}
.y3c{bottom:123.885000px;}
.yb7{bottom:125.460000px;}
.ye6{bottom:129.780000px;}
.y52{bottom:137.010000px;}
.y11a{bottom:139.500000px;}
.y93{bottom:140.580000px;}
.y3b{bottom:141.165000px;}
.yb6{bottom:143.820000px;}
.ye5{bottom:147.060000px;}
.y51{bottom:152.490000px;}
.y119{bottom:156.780000px;}
.y92{bottom:157.860000px;}
.y3a{bottom:158.445000px;}
.yb5{bottom:161.100000px;}
.ye4{bottom:164.340000px;}
.y50{bottom:167.970000px;}
.y46{bottom:173.010000px;}
.y118{bottom:174.060000px;}
.y91{bottom:175.140000px;}
.y39{bottom:175.725000px;}
.yb4{bottom:178.380000px;}
.ye3{bottom:181.620000px;}
.y45{bottom:183.450000px;}
.y4f{bottom:183.630000px;}
.y117{bottom:191.340000px;}
.y90{bottom:192.420000px;}
.y38{bottom:193.005000px;}
.yb3{bottom:195.660000px;}
.ye2{bottom:198.900000px;}
.y116{bottom:208.650000px;}
.y8f{bottom:209.550000px;}
.y37{bottom:210.105000px;}
.yb2{bottom:214.050000px;}
.ye1{bottom:217.110000px;}
.y115{bottom:225.750000px;}
.y8e{bottom:226.830000px;}
.y36{bottom:227.385000px;}
.yb1{bottom:232.230000px;}
.ye0{bottom:235.470000px;}
.y114{bottom:243.030000px;}
.y8d{bottom:244.110000px;}
.y35{bottom:244.665000px;}
.yb0{bottom:250.590000px;}
.ydf{bottom:253.830000px;}
.y113{bottom:260.310000px;}
.y8c{bottom:261.390000px;}
.y34{bottom:261.945000px;}
.yaf{bottom:267.870000px;}
.yde{bottom:271.110000px;}
.y112{bottom:277.590000px;}
.y8b{bottom:278.670000px;}
.y33{bottom:279.225000px;}
.y1e{bottom:279.945000px;}
.yae{bottom:285.150000px;}
.ydd{bottom:288.390000px;}
.y111{bottom:294.870000px;}
.y8a{bottom:295.950000px;}
.y32{bottom:296.145000px;}
.yad{bottom:302.430000px;}
.y1d{bottom:304.245000px;}
.ydc{bottom:305.670000px;}
.y31{bottom:311.625000px;}
.y110{bottom:311.970000px;}
.y89{bottom:313.050000px;}
.yac{bottom:320.610000px;}
.y10{bottom:322.410000px;}
.ydb{bottom:322.770000px;}
.y30{bottom:327.105000px;}
.y1c{bottom:328.365000px;}
.y10f{bottom:329.250000px;}
.y88{bottom:330.330000px;}
.yab{bottom:337.890000px;}
.yda{bottom:341.130000px;}
.y2f{bottom:342.765000px;}
.y10e{bottom:346.530000px;}
.y87{bottom:347.610000px;}
.y1b{bottom:352.515000px;}
.yaa{bottom:356.250000px;}
.y2e{bottom:358.275000px;}
.yd9{bottom:359.490000px;}
.y10d{bottom:363.810000px;}
.y86{bottom:364.890000px;}
.y2d{bottom:373.755000px;}
.ya9{bottom:374.610000px;}
.y1a{bottom:376.635000px;}
.yd8{bottom:377.850000px;}
.y10c{bottom:381.090000px;}
.y85{bottom:382.170000px;}
.y2c{bottom:389.235000px;}
.ya8{bottom:391.890000px;}
.yd7{bottom:395.130000px;}
.y10b{bottom:398.370000px;}
.y84{bottom:399.450000px;}
.y19{bottom:400.755000px;}
.y2b{bottom:404.895000px;}
.ya7{bottom:409.170000px;}
.yd6{bottom:412.230000px;}
.y10a{bottom:415.470000px;}
.y83{bottom:416.550000px;}
.y2a{bottom:420.375000px;}
.y18{bottom:424.875000px;}
.ya6{bottom:426.270000px;}
.yd5{bottom:429.510000px;}
.y109{bottom:432.750000px;}
.y82{bottom:433.830000px;}
.y29{bottom:435.855000px;}
.ya5{bottom:443.595000px;}
.yd4{bottom:446.835000px;}
.y17{bottom:449.175000px;}
.y108{bottom:450.075000px;}
.y81{bottom:451.155000px;}
.y28{bottom:451.335000px;}
.ya4{bottom:461.955000px;}
.yd3{bottom:464.115000px;}
.y27{bottom:466.995000px;}
.y107{bottom:467.355000px;}
.y80{bottom:468.435000px;}
.y16{bottom:473.295000px;}
.ya3{bottom:480.315000px;}
.yd2{bottom:481.395000px;}
.y26{bottom:482.475000px;}
.y106{bottom:484.635000px;}
.y7f{bottom:485.715000px;}
.y15{bottom:497.415000px;}
.y25{bottom:497.955000px;}
.ya2{bottom:498.675000px;}
.y105{bottom:501.915000px;}
.y7e{bottom:502.995000px;}
.y24{bottom:513.435000px;}
.ya1{bottom:515.775000px;}
.y104{bottom:519.015000px;}
.y7d{bottom:520.095000px;}
.y14{bottom:521.535000px;}
.y23{bottom:528.915000px;}
.ya0{bottom:533.055000px;}
.y103{bottom:536.295000px;}
.y7c{bottom:537.375000px;}
.y22{bottom:544.575000px;}
.y13{bottom:545.655000px;}
.y9f{bottom:550.335000px;}
.y102{bottom:553.575000px;}
.y7b{bottom:554.655000px;}
.y21{bottom:560.055000px;}
.y9e{bottom:567.615000px;}
.y12{bottom:569.775000px;}
.y101{bottom:570.855000px;}
.y7a{bottom:571.935000px;}
.y20{bottom:575.535000px;}
.y9d{bottom:584.895000px;}
.y100{bottom:588.135000px;}
.y79{bottom:589.215000px;}
.y1f{bottom:591.060000px;}
.y11{bottom:593.940000px;}
.y9c{bottom:602.175000px;}
.yff{bottom:605.235000px;}
.y78{bottom:606.315000px;}
.y9b{bottom:619.275000px;}
.yfe{bottom:622.515000px;}
.y77{bottom:623.595000px;}
.y9a{bottom:636.555000px;}
.yfd{bottom:639.795000px;}
.y76{bottom:640.875000px;}
.y99{bottom:653.835000px;}
.yfc{bottom:657.075000px;}
.y75{bottom:658.155000px;}
.yd1{bottom:671.115000px;}
.y98{bottom:672.195000px;}
.yfb{bottom:674.385000px;}
.y74{bottom:675.465000px;}
.yd0{bottom:688.425000px;}
.y97{bottom:690.585000px;}
.yfa{bottom:691.665000px;}
.y73{bottom:692.745000px;}
.ycf{bottom:705.525000px;}
.y96{bottom:708.765000px;}
.y72{bottom:709.845000px;}
.yce{bottom:722.805000px;}
.yf9{bottom:726.045000px;}
.y71{bottom:727.125000px;}
.ycd{bottom:740.085000px;}
.yf8{bottom:743.325000px;}
.y70{bottom:744.405000px;}
.ycc{bottom:757.365000px;}
.yf7{bottom:760.605000px;}
.y6f{bottom:761.685000px;}
.ycb{bottom:774.645000px;}
.yf6{bottom:777.885000px;}
.y6e{bottom:778.965000px;}
.yca{bottom:791.925000px;}
.yf5{bottom:795.165000px;}
.y6d{bottom:796.245000px;}
.yc9{bottom:809.025000px;}
.yf4{bottom:812.265000px;}
.y6c{bottom:813.345000px;}
.yc8{bottom:826.305000px;}
.yf3{bottom:829.545000px;}
.y6b{bottom:830.625000px;}
.yc7{bottom:843.585000px;}
.yf2{bottom:846.825000px;}
.y6a{bottom:847.905000px;}
.yc6{bottom:860.865000px;}
.yf1{bottom:864.105000px;}
.y69{bottom:865.185000px;}
.yc5{bottom:878.145000px;}
.yf0{bottom:881.385000px;}
.y68{bottom:882.465000px;}
.yc4{bottom:895.425000px;}
.yef{bottom:898.665000px;}
.y67{bottom:899.565000px;}
.yc3{bottom:912.570000px;}
.yee{bottom:915.810000px;}
.y66{bottom:916.890000px;}
.yc2{bottom:929.850000px;}
.yf{bottom:931.650000px;}
.yed{bottom:933.090000px;}
.y65{bottom:934.170000px;}
.yc1{bottom:947.130000px;}
.ye{bottom:948.930000px;}
.yec{bottom:950.370000px;}
.y64{bottom:951.450000px;}
.yc0{bottom:964.410000px;}
.yd{bottom:966.210000px;}
.yeb{bottom:967.650000px;}
.y63{bottom:968.730000px;}
.ybf{bottom:982.770000px;}
.yc{bottom:983.310000px;}
.yea{bottom:984.930000px;}
.y62{bottom:986.010000px;}
.yb{bottom:1000.590000px;}
.ybe{bottom:1000.950000px;}
.ye9{bottom:1002.030000px;}
.y61{bottom:1003.110000px;}
.ya{bottom:1019.130000px;}
.ybd{bottom:1019.310000px;}
.y60{bottom:1020.390000px;}
.ybc{bottom:1036.590000px;}
.y5f{bottom:1037.670000px;}
.y9{bottom:1043.250000px;}
.ybb{bottom:1053.870000px;}
.y5e{bottom:1054.950000px;}
.yba{bottom:1071.150000px;}
.y8{bottom:1071.870000px;}
.y5d{bottom:1072.230000px;}
.y5a{bottom:1075.140000px;}
.yb9{bottom:1088.430000px;}
.y5c{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.h15{height:4.747500px;}
.h12{height:27.109688px;}
.h16{height:27.720000px;}
.h10{height:29.464453px;}
.h11{height:32.273438px;}
.hc{height:37.437188px;}
.h14{height:38.100586px;}
.h13{height:38.997070px;}
.h7{height:40.132617px;}
.ha{height:42.164648px;}
.h18{height:43.156758px;}
.hd{height:44.507812px;}
.h6{height:53.573906px;}
.h5{height:59.383125px;}
.h8{height:59.436914px;}
.he{height:59.439023px;}
.h17{height:64.002656px;}
.h3{height:65.884219px;}
.h9{height:75.519844px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.hf{height:212.790000px;}
.hb{height:603.645000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:132.696000px;}
.w7{width:162.900000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.056000px;}
.x19{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:18.720000px;}
.x17{left:22.536000px;}
.x16{left:29.016000px;}
.x10{left:43.776000px;}
.x1b{left:47.736000px;}
.x11{left:50.796000px;}
.xf{left:54.936000px;}
.x1c{left:57.096000px;}
.x15{left:67.170000px;}
.x13{left:75.270000px;}
.x1{left:78.300000px;}
.x14{left:83.730000px;}
.x9{left:86.399987px;}
.x2{left:95.790000px;}
.x1d{left:102.810000px;}
.x1a{left:106.770000px;}
.x1f{left:113.435987px;}
.x12{left:124.590000px;}
.x5{left:141.345000px;}
.x3{left:182.370000px;}
.x18{left:219.090000px;}
.xc{left:411.194987px;}
.xd{left:565.664987px;}
.xa{left:627.809987px;}
.xb{left:653.549987px;}
.x8{left:766.049987px;}
.x7{left:791.969987px;}
.xe{left:806.939987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.201067pt;}
.ls1d{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.079467pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.012800pt;}
.ls19{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.337707pt;}
.ls8{letter-spacing:0.640000pt;}
.ls11{letter-spacing:1.440000pt;}
.lsf{letter-spacing:4.000000pt;}
.ls10{letter-spacing:6.560000pt;}
.ls3{letter-spacing:7.194880pt;}
.ls12{letter-spacing:7.840000pt;}
.lse{letter-spacing:9.760000pt;}
.ls1c{letter-spacing:14.672640pt;}
.ls13{letter-spacing:16.160000pt;}
.ls17{letter-spacing:20.640000pt;}
.ls2{letter-spacing:21.914880pt;}
.lsd{letter-spacing:40.912640pt;}
.ls15{letter-spacing:56.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.185067pt;}
.wsd{word-spacing:-13.096533pt;}
.ws9{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.ws7{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.903040pt;}
._2{width:1.812267pt;}
._4{width:3.408000pt;}
._c{width:4.299520pt;}
._6{width:5.256320pt;}
._5{width:6.336000pt;}
._8{width:7.241600pt;}
._e{width:8.279680pt;}
._9{width:9.216000pt;}
._d{width:10.433920pt;}
._f{width:11.975040pt;}
._3{width:12.968960pt;}
._7{width:14.400000pt;}
._11{width:16.095360pt;}
._b{width:16.992000pt;}
._a{width:18.528000pt;}
._14{width:19.665280pt;}
._15{width:20.557440pt;}
._13{width:21.566720pt;}
._10{width:22.629120pt;}
._12{width:24.222720pt;}
.fs9{font-size:5.120000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:1.920000pt;}
.y43{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y5b{bottom:4.453333pt;}
.y2{bottom:8.800000pt;}
.y4d{bottom:9.120000pt;}
.y42{bottom:18.080000pt;}
.y59{bottom:18.560000pt;}
.y4{bottom:20.186667pt;}
.y41{bottom:33.440000pt;}
.y4c{bottom:35.520000pt;}
.y3{bottom:42.586667pt;}
.y4b{bottom:45.440000pt;}
.y40{bottom:48.800000pt;}
.y58{bottom:49.280000pt;}
.y7{bottom:50.720000pt;}
.y4a{bottom:55.840000pt;}
.y57{bottom:63.040000pt;}
.y3f{bottom:64.160000pt;}
.y49{bottom:67.520000pt;}
.y56{bottom:76.800000pt;}
.y48{bottom:79.040000pt;}
.y3e{bottom:79.520000pt;}
.ye8{bottom:82.880000pt;}
.y55{bottom:88.346667pt;}
.y11c{bottom:93.440000pt;}
.y54{bottom:94.106667pt;}
.y95{bottom:94.400000pt;}
.y3d{bottom:94.880000pt;}
.yb8{bottom:95.360000pt;}
.y44{bottom:96.640000pt;}
.y47{bottom:98.586667pt;}
.ye7{bottom:99.200000pt;}
.y53{bottom:108.026667pt;}
.y11b{bottom:108.640000pt;}
.y94{bottom:109.600000pt;}
.y3c{bottom:110.120000pt;}
.yb7{bottom:111.520000pt;}
.ye6{bottom:115.360000pt;}
.y52{bottom:121.786667pt;}
.y11a{bottom:124.000000pt;}
.y93{bottom:124.960000pt;}
.y3b{bottom:125.480000pt;}
.yb6{bottom:127.840000pt;}
.ye5{bottom:130.720000pt;}
.y51{bottom:135.546667pt;}
.y119{bottom:139.360000pt;}
.y92{bottom:140.320000pt;}
.y3a{bottom:140.840000pt;}
.yb5{bottom:143.200000pt;}
.ye4{bottom:146.080000pt;}
.y50{bottom:149.306667pt;}
.y46{bottom:153.786667pt;}
.y118{bottom:154.720000pt;}
.y91{bottom:155.680000pt;}
.y39{bottom:156.200000pt;}
.yb4{bottom:158.560000pt;}
.ye3{bottom:161.440000pt;}
.y45{bottom:163.066667pt;}
.y4f{bottom:163.226667pt;}
.y117{bottom:170.080000pt;}
.y90{bottom:171.040000pt;}
.y38{bottom:171.560000pt;}
.yb3{bottom:173.920000pt;}
.ye2{bottom:176.800000pt;}
.y116{bottom:185.466667pt;}
.y8f{bottom:186.266667pt;}
.y37{bottom:186.760000pt;}
.yb2{bottom:190.266667pt;}
.ye1{bottom:192.986667pt;}
.y115{bottom:200.666667pt;}
.y8e{bottom:201.626667pt;}
.y36{bottom:202.120000pt;}
.yb1{bottom:206.426667pt;}
.ye0{bottom:209.306667pt;}
.y114{bottom:216.026667pt;}
.y8d{bottom:216.986667pt;}
.y35{bottom:217.480000pt;}
.yb0{bottom:222.746667pt;}
.ydf{bottom:225.626667pt;}
.y113{bottom:231.386667pt;}
.y8c{bottom:232.346667pt;}
.y34{bottom:232.840000pt;}
.yaf{bottom:238.106667pt;}
.yde{bottom:240.986667pt;}
.y112{bottom:246.746667pt;}
.y8b{bottom:247.706667pt;}
.y33{bottom:248.200000pt;}
.y1e{bottom:248.840000pt;}
.yae{bottom:253.466667pt;}
.ydd{bottom:256.346667pt;}
.y111{bottom:262.106667pt;}
.y8a{bottom:263.066667pt;}
.y32{bottom:263.240000pt;}
.yad{bottom:268.826667pt;}
.y1d{bottom:270.440000pt;}
.ydc{bottom:271.706667pt;}
.y31{bottom:277.000000pt;}
.y110{bottom:277.306667pt;}
.y89{bottom:278.266667pt;}
.yac{bottom:284.986667pt;}
.y10{bottom:286.586667pt;}
.ydb{bottom:286.906667pt;}
.y30{bottom:290.760000pt;}
.y1c{bottom:291.880000pt;}
.y10f{bottom:292.666667pt;}
.y88{bottom:293.626667pt;}
.yab{bottom:300.346667pt;}
.yda{bottom:303.226667pt;}
.y2f{bottom:304.680000pt;}
.y10e{bottom:308.026667pt;}
.y87{bottom:308.986667pt;}
.y1b{bottom:313.346667pt;}
.yaa{bottom:316.666667pt;}
.y2e{bottom:318.466667pt;}
.yd9{bottom:319.546667pt;}
.y10d{bottom:323.386667pt;}
.y86{bottom:324.346667pt;}
.y2d{bottom:332.226667pt;}
.ya9{bottom:332.986667pt;}
.y1a{bottom:334.786667pt;}
.yd8{bottom:335.866667pt;}
.y10c{bottom:338.746667pt;}
.y85{bottom:339.706667pt;}
.y2c{bottom:345.986667pt;}
.ya8{bottom:348.346667pt;}
.yd7{bottom:351.226667pt;}
.y10b{bottom:354.106667pt;}
.y84{bottom:355.066667pt;}
.y19{bottom:356.226667pt;}
.y2b{bottom:359.906667pt;}
.ya7{bottom:363.706667pt;}
.yd6{bottom:366.426667pt;}
.y10a{bottom:369.306667pt;}
.y83{bottom:370.266667pt;}
.y2a{bottom:373.666667pt;}
.y18{bottom:377.666667pt;}
.ya6{bottom:378.906667pt;}
.yd5{bottom:381.786667pt;}
.y109{bottom:384.666667pt;}
.y82{bottom:385.626667pt;}
.y29{bottom:387.426667pt;}
.ya5{bottom:394.306667pt;}
.yd4{bottom:397.186667pt;}
.y17{bottom:399.266667pt;}
.y108{bottom:400.066667pt;}
.y81{bottom:401.026667pt;}
.y28{bottom:401.186667pt;}
.ya4{bottom:410.626667pt;}
.yd3{bottom:412.546667pt;}
.y27{bottom:415.106667pt;}
.y107{bottom:415.426667pt;}
.y80{bottom:416.386667pt;}
.y16{bottom:420.706667pt;}
.ya3{bottom:426.946667pt;}
.yd2{bottom:427.906667pt;}
.y26{bottom:428.866667pt;}
.y106{bottom:430.786667pt;}
.y7f{bottom:431.746667pt;}
.y15{bottom:442.146667pt;}
.y25{bottom:442.626667pt;}
.ya2{bottom:443.266667pt;}
.y105{bottom:446.146667pt;}
.y7e{bottom:447.106667pt;}
.y24{bottom:456.386667pt;}
.ya1{bottom:458.466667pt;}
.y104{bottom:461.346667pt;}
.y7d{bottom:462.306667pt;}
.y14{bottom:463.586667pt;}
.y23{bottom:470.146667pt;}
.ya0{bottom:473.826667pt;}
.y103{bottom:476.706667pt;}
.y7c{bottom:477.666667pt;}
.y22{bottom:484.066667pt;}
.y13{bottom:485.026667pt;}
.y9f{bottom:489.186667pt;}
.y102{bottom:492.066667pt;}
.y7b{bottom:493.026667pt;}
.y21{bottom:497.826667pt;}
.y9e{bottom:504.546667pt;}
.y12{bottom:506.466667pt;}
.y101{bottom:507.426667pt;}
.y7a{bottom:508.386667pt;}
.y20{bottom:511.586667pt;}
.y9d{bottom:519.906667pt;}
.y100{bottom:522.786667pt;}
.y79{bottom:523.746667pt;}
.y1f{bottom:525.386667pt;}
.y11{bottom:527.946667pt;}
.y9c{bottom:535.266667pt;}
.yff{bottom:537.986667pt;}
.y78{bottom:538.946667pt;}
.y9b{bottom:550.466667pt;}
.yfe{bottom:553.346667pt;}
.y77{bottom:554.306667pt;}
.y9a{bottom:565.826667pt;}
.yfd{bottom:568.706667pt;}
.y76{bottom:569.666667pt;}
.y99{bottom:581.186667pt;}
.yfc{bottom:584.066667pt;}
.y75{bottom:585.026667pt;}
.yd1{bottom:596.546667pt;}
.y98{bottom:597.506667pt;}
.yfb{bottom:599.453333pt;}
.y74{bottom:600.413333pt;}
.yd0{bottom:611.933333pt;}
.y97{bottom:613.853333pt;}
.yfa{bottom:614.813333pt;}
.y73{bottom:615.773333pt;}
.ycf{bottom:627.133333pt;}
.y96{bottom:630.013333pt;}
.y72{bottom:630.973333pt;}
.yce{bottom:642.493333pt;}
.yf9{bottom:645.373333pt;}
.y71{bottom:646.333333pt;}
.ycd{bottom:657.853333pt;}
.yf8{bottom:660.733333pt;}
.y70{bottom:661.693333pt;}
.ycc{bottom:673.213333pt;}
.yf7{bottom:676.093333pt;}
.y6f{bottom:677.053333pt;}
.ycb{bottom:688.573333pt;}
.yf6{bottom:691.453333pt;}
.y6e{bottom:692.413333pt;}
.yca{bottom:703.933333pt;}
.yf5{bottom:706.813333pt;}
.y6d{bottom:707.773333pt;}
.yc9{bottom:719.133333pt;}
.yf4{bottom:722.013333pt;}
.y6c{bottom:722.973333pt;}
.yc8{bottom:734.493333pt;}
.yf3{bottom:737.373333pt;}
.y6b{bottom:738.333333pt;}
.yc7{bottom:749.853333pt;}
.yf2{bottom:752.733333pt;}
.y6a{bottom:753.693333pt;}
.yc6{bottom:765.213333pt;}
.yf1{bottom:768.093333pt;}
.y69{bottom:769.053333pt;}
.yc5{bottom:780.573333pt;}
.yf0{bottom:783.453333pt;}
.y68{bottom:784.413333pt;}
.yc4{bottom:795.933333pt;}
.yef{bottom:798.813333pt;}
.y67{bottom:799.613333pt;}
.yc3{bottom:811.173333pt;}
.yee{bottom:814.053333pt;}
.y66{bottom:815.013333pt;}
.yc2{bottom:826.533333pt;}
.yf{bottom:828.133333pt;}
.yed{bottom:829.413333pt;}
.y65{bottom:830.373333pt;}
.yc1{bottom:841.893333pt;}
.ye{bottom:843.493333pt;}
.yec{bottom:844.773333pt;}
.y64{bottom:845.733333pt;}
.yc0{bottom:857.253333pt;}
.yd{bottom:858.853333pt;}
.yeb{bottom:860.133333pt;}
.y63{bottom:861.093333pt;}
.ybf{bottom:873.573333pt;}
.yc{bottom:874.053333pt;}
.yea{bottom:875.493333pt;}
.y62{bottom:876.453333pt;}
.yb{bottom:889.413333pt;}
.ybe{bottom:889.733333pt;}
.ye9{bottom:890.693333pt;}
.y61{bottom:891.653333pt;}
.ya{bottom:905.893333pt;}
.ybd{bottom:906.053333pt;}
.y60{bottom:907.013333pt;}
.ybc{bottom:921.413333pt;}
.y5f{bottom:922.373333pt;}
.y9{bottom:927.333333pt;}
.ybb{bottom:936.773333pt;}
.y5e{bottom:937.733333pt;}
.yba{bottom:952.133333pt;}
.y8{bottom:952.773333pt;}
.y5d{bottom:953.093333pt;}
.y5a{bottom:955.680000pt;}
.yb9{bottom:967.493333pt;}
.y5c{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.h15{height:4.220000pt;}
.h12{height:24.097500pt;}
.h16{height:24.640000pt;}
.h10{height:26.190625pt;}
.h11{height:28.687500pt;}
.hc{height:33.277500pt;}
.h14{height:33.867188pt;}
.h13{height:34.664062pt;}
.h7{height:35.673437pt;}
.ha{height:37.479688pt;}
.h18{height:38.361562pt;}
.hd{height:39.562500pt;}
.h6{height:47.621250pt;}
.h5{height:52.785000pt;}
.h8{height:52.832812pt;}
.he{height:52.834688pt;}
.h17{height:56.891250pt;}
.h3{height:58.563750pt;}
.h9{height:67.128750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.hf{height:189.146667pt;}
.hb{height:536.573333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.952000pt;}
.w7{width:144.800000pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.272000pt;}
.x19{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:16.640000pt;}
.x17{left:20.032000pt;}
.x16{left:25.792000pt;}
.x10{left:38.912000pt;}
.x1b{left:42.432000pt;}
.x11{left:45.152000pt;}
.xf{left:48.832000pt;}
.x1c{left:50.752000pt;}
.x15{left:59.706667pt;}
.x13{left:66.906667pt;}
.x1{left:69.600000pt;}
.x14{left:74.426667pt;}
.x9{left:76.799988pt;}
.x2{left:85.146667pt;}
.x1d{left:91.386667pt;}
.x1a{left:94.906667pt;}
.x1f{left:100.831988pt;}
.x12{left:110.746667pt;}
.x5{left:125.640000pt;}
.x3{left:162.106667pt;}
.x18{left:194.746667pt;}
.xc{left:365.506655pt;}
.xd{left:502.813322pt;}
.xa{left:558.053322pt;}
.xb{left:580.933322pt;}
.x8{left:680.933322pt;}
.x7{left:703.973322pt;}
.xe{left:717.279988pt;}
}




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