
    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_dc065fc8d5c412016d33c8b1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.163000;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_ec1d962e82cce95cd0b15606.woff')format("woff");}.ff2{font-family:ff2;line-height:1.069000;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_ec56e70d5577ca6630982b1c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_81ad2fb9a2618ad8831c65e4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.163000;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_5d123772bb4c8abe91c34807.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_8f3431e812a88d7e17be57aa.woff')format("woff");}.ff6{font-family:ff6;line-height:1.163000;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_b6fe7c75854e4bede81f2b5e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.163000;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_c50684eae45abb5a5ad9f2a6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.163000;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_6635f54a4e3497c476b968a3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.163000;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_65201d2c2f85a7e831fa6f46.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_88c2f8b3d8467b6e58ea1b30.woff')format("woff");}.ffb{font-family:ffb;line-height:0.937500;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;}
.ls9{letter-spacing:-0.121200px;}
.ls22{letter-spacing:-0.096000px;}
.ls20{letter-spacing:-0.093000px;}
.ls25{letter-spacing:-0.072000px;}
.ls24{letter-spacing:-0.054000px;}
.ls1d{letter-spacing:-0.027360px;}
.lsa{letter-spacing:-0.001080px;}
.ls8{letter-spacing:0.000000px;}
.lse{letter-spacing:0.001440px;}
.ls1e{letter-spacing:0.003594px;}
.ls17{letter-spacing:0.016200px;}
.ls14{letter-spacing:0.021960px;}
.lsd{letter-spacing:0.027360px;}
.ls12{letter-spacing:0.043560px;}
.ls11{letter-spacing:0.064200px;}
.ls21{letter-spacing:0.078600px;}
.ls1b{letter-spacing:0.094680px;}
.ls7{letter-spacing:0.094800px;}
.lsf{letter-spacing:0.102600px;}
.ls18{letter-spacing:0.104400px;}
.lsc{letter-spacing:0.113400px;}
.ls2{letter-spacing:0.116400px;}
.ls15{letter-spacing:0.118440px;}
.ls23{letter-spacing:0.130800px;}
.ls6{letter-spacing:0.181800px;}
.ls3{letter-spacing:0.225720px;}
.lsb{letter-spacing:0.454800px;}
.ls1{letter-spacing:31.501800px;}
.ls19{letter-spacing:49.224000px;}
.ls1a{letter-spacing:50.664000px;}
.ls1f{letter-spacing:53.544000px;}
.ls16{letter-spacing:53.904000px;}
.ls13{letter-spacing:54.264000px;}
.ls5{letter-spacing:59.445360px;}
.ls1c{letter-spacing:68.304000px;}
.ls10{letter-spacing:68.664000px;}
.ls4{letter-spacing:183.081360px;}
.ls0{letter-spacing:200.361360px;}
.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;}
}
.ws6{word-spacing:-65.880000px;}
.ws0{word-spacing:-24.576840px;}
.ws9{word-spacing:-21.096000px;}
.wsd{word-spacing:-18.946080px;}
.wsc{word-spacing:-18.857880px;}
.wsf{word-spacing:-18.845274px;}
.ws10{word-spacing:-18.748680px;}
.ws2{word-spacing:-17.913000px;}
.ws3{word-spacing:-17.574600px;}
.wsb{word-spacing:-17.553000px;}
.ws8{word-spacing:-17.522400px;}
.ws5{word-spacing:-17.485560px;}
.ws4{word-spacing:-17.458200px;}
.wse{word-spacing:-17.430840px;}
.ws11{word-spacing:-17.362200px;}
.ws1{word-spacing:-17.337000px;}
.wsa{word-spacing:-15.931800px;}
.ws12{word-spacing:-14.967480px;}
.ws13{word-spacing:-14.256000px;}
.ws14{word-spacing:-14.238000px;}
.ws7{word-spacing:0.000000px;}
._19{margin-left:-4.282200px;}
._8{margin-left:-2.766960px;}
._1{margin-left:-1.449360px;}
._0{width:1.071360px;}
._6{width:2.205360px;}
._b{width:3.217800px;}
._7{width:4.298400px;}
._5{width:6.060960px;}
._4{width:7.355280px;}
._9{width:8.959680px;}
._f{width:10.685640px;}
._e{width:11.792520px;}
._c{width:13.505400px;}
._d{width:14.871600px;}
._12{width:15.873600px;}
._11{width:19.291800px;}
._10{width:20.560080px;}
._15{width:21.565200px;}
._1a{width:24.112080px;}
._14{width:25.693200px;}
._13{width:26.747280px;}
._a{width:27.999000px;}
._3{width:31.275480px;}
._2{width:32.298600px;}
._18{width:33.498120px;}
._1c{width:37.222200px;}
._1b{width:38.539800px;}
._17{width:40.647960px;}
._16{width:41.899680px;}
.fca{color:rgb(104,113,116);}
.fc9{color:rgb(239,58,76);}
.fc8{color:rgb(0,0,0);}
.fc7{color:rgb(211,91,200);}
.fc6{color:rgb(234,130,72);}
.fc3{color:rgb(142,203,203);}
.fc5{color:rgb(103,219,120);}
.fc2{color:rgb(97,159,106);}
.fc4{color:rgb(79,172,46);}
.fc1{color:rgb(151,192,157);}
.fc0{color:rgb(44,47,49);}
.fs5{font-size:54.000000px;}
.fs4{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yff{bottom:3.720000px;}
.y59{bottom:4.380000px;}
.yea{bottom:4.410000px;}
.y55{bottom:4.470000px;}
.y5{bottom:5.040000px;}
.yd4{bottom:5.460000px;}
.ycf{bottom:5.730000px;}
.y52{bottom:5.820000px;}
.yec{bottom:6.030000px;}
.y101{bottom:6.240000px;}
.y58{bottom:23.910000px;}
.y54{bottom:24.000000px;}
.y4{bottom:26.460000px;}
.yd2{bottom:44.520000px;}
.y99{bottom:111.420000px;}
.yfd{bottom:125.640000px;}
.yb2{bottom:126.180000px;}
.ycd{bottom:128.700000px;}
.y98{bottom:132.930000px;}
.y26{bottom:133.740000px;}
.y50{bottom:135.000000px;}
.yc0{bottom:139.140000px;}
.yfc{bottom:151.020000px;}
.y97{bottom:154.350000px;}
.y25{bottom:155.250000px;}
.ye5{bottom:155.610000px;}
.yb1{bottom:156.060000px;}
.y4f{bottom:156.510000px;}
.ycc{bottom:158.580000px;}
.y76{bottom:163.170000px;}
.y3a{bottom:172.080000px;}
.yfb{bottom:172.800000px;}
.ybf{bottom:174.150000px;}
.y96{bottom:175.860000px;}
.y24{bottom:176.670000px;}
.y4e{bottom:177.930000px;}
.y39{bottom:193.590000px;}
.yfa{bottom:194.490000px;}
.ye4{bottom:195.030000px;}
.ybe{bottom:195.660000px;}
.y75{bottom:198.090000px;}
.y23{bottom:198.180000px;}
.y4d{bottom:199.440000px;}
.y95{bottom:210.780000px;}
.yf9{bottom:216.270000px;}
.ye3{bottom:216.540000px;}
.y74{bottom:219.600000px;}
.y22{bottom:219.690000px;}
.y4c{bottom:220.950000px;}
.y38{bottom:223.470000px;}
.y94{bottom:232.290000px;}
.ybd{bottom:235.080000px;}
.yf8{bottom:238.050000px;}
.y73{bottom:241.110000px;}
.ye2{bottom:246.420000px;}
.y21{bottom:250.200000px;}
.y4b{bottom:251.460000px;}
.y93{bottom:253.800000px;}
.y72{bottom:262.620000px;}
.ybc{bottom:264.960000px;}
.y92{bottom:275.310000px;}
.yf7{bottom:278.400000px;}
.y20{bottom:280.920000px;}
.y4a{bottom:282.180000px;}
.y91{bottom:296.850000px;}
.y71{bottom:297.570000px;}
.yf6{bottom:299.910000px;}
.yb0{bottom:305.220000px;}
.y1f{bottom:311.610000px;}
.y49{bottom:312.870000px;}
.y70{bottom:319.080000px;}
.yf5{bottom:321.420000px;}
.yaf{bottom:326.730000px;}
.y90{bottom:327.270000px;}
.y6f{bottom:340.590000px;}
.y1e{bottom:342.300000px;}
.y48{bottom:343.560000px;}
.yae{bottom:348.240000px;}
.y8f{bottom:358.050000px;}
.yf4{bottom:360.840000px;}
.yad{bottom:369.660000px;}
.y1d{bottom:372.990000px;}
.y47{bottom:374.250000px;}
.y6e{bottom:375.510000px;}
.yf3{bottom:382.350000px;}
.y8e{bottom:388.740000px;}
.yac{bottom:391.170000px;}
.y6d{bottom:397.020000px;}
.ye1{bottom:404.580000px;}
.y1c{bottom:408.180000px;}
.y46{bottom:409.440000px;}
.yf2{bottom:412.230000px;}
.y100{bottom:417.960000px;}
.y6c{bottom:418.530000px;}
.y8d{bottom:419.430000px;}
.yab{bottom:426.090000px;}
.y1b{bottom:429.690000px;}
.y6b{bottom:440.040000px;}
.y45{bottom:448.770000px;}
.y8c{bottom:454.620000px;}
.ye0{bottom:461.010000px;}
.yaa{bottom:461.100000px;}
.y1a{bottom:474.150000px;}
.y6a{bottom:474.960000px;}
.ya9{bottom:482.610000px;}
.y8b{bottom:493.860000px;}
.ydf{bottom:496.020000px;}
.y69{bottom:496.470000px;}
.y44{bottom:497.460000px;}
.ya8{bottom:504.120000px;}
.yde{bottom:517.530000px;}
.y68{bottom:517.980000px;}
.y43{bottom:518.970000px;}
.ya7{bottom:539.040000px;}
.y67{bottom:539.400000px;}
.y42{bottom:540.480000px;}
.y19{bottom:540.570000px;}
.y8a{bottom:542.640000px;}
.ycb{bottom:543.900000px;}
.ydd{bottom:560.460000px;}
.ya6{bottom:560.550000px;}
.y66{bottom:560.910000px;}
.y41{bottom:561.990000px;}
.y18{bottom:562.080000px;}
.y89{bottom:564.150000px;}
.yca{bottom:565.410000px;}
.yfe{bottom:565.650000px;}
.y65{bottom:582.420000px;}
.y17{bottom:583.500000px;}
.ya5{bottom:595.560000px;}
.y40{bottom:596.910000px;}
.y88{bottom:599.070000px;}
.ydc{bottom:599.790000px;}
.yc9{bottom:600.420000px;}
.y64{bottom:603.930000px;}
.ya4{bottom:617.070000px;}
.y3f{bottom:618.420000px;}
.y16{bottom:618.510000px;}
.y87{bottom:620.580000px;}
.yc8{bottom:621.930000px;}
.y63{bottom:625.350000px;}
.ya3{bottom:638.490000px;}
.y3e{bottom:639.930000px;}
.y15{bottom:640.020000px;}
.y86{bottom:642.090000px;}
.yc7{bottom:643.350000px;}
.ydb{bottom:648.480000px;}
.y62{bottom:655.860000px;}
.y37{bottom:663.420000px;}
.y85{bottom:663.600000px;}
.yc6{bottom:664.860000px;}
.yda{bottom:669.990000px;}
.y14{bottom:674.940000px;}
.ya2{bottom:677.850000px;}
.y3d{bottom:679.380000px;}
.y36{bottom:684.960000px;}
.y84{bottom:685.050000px;}
.yc5{bottom:686.400000px;}
.y61{bottom:686.580000px;}
.y13{bottom:696.480000px;}
.y3c{bottom:700.890000px;}
.y35{bottom:706.470000px;}
.yc4{bottom:707.910000px;}
.yd9{bottom:709.530000px;}
.yf1{bottom:712.410000px;}
.y60{bottom:717.270000px;}
.y12{bottom:717.990000px;}
.y83{bottom:720.060000px;}
.ya1{bottom:726.540000px;}
.y34{bottom:727.980000px;}
.y3b{bottom:730.770000px;}
.yd8{bottom:731.040000px;}
.yf0{bottom:733.920000px;}
.y5a{bottom:738.900000px;}
.y11{bottom:739.500000px;}
.y82{bottom:741.570000px;}
.yc3{bottom:742.830000px;}
.y5f{bottom:748.050000px;}
.y33{bottom:749.490000px;}
.yef{bottom:755.430000px;}
.y10{bottom:760.920000px;}
.y81{bottom:763.080000px;}
.yee{bottom:776.850000px;}
.y5e{bottom:778.740000px;}
.yc2{bottom:782.340000px;}
.yf{bottom:782.430000px;}
.ya0{bottom:783.060000px;}
.y80{bottom:784.500000px;}
.y32{bottom:788.730000px;}
.y57{bottom:797.040000px;}
.ye{bottom:803.940000px;}
.y9f{bottom:804.570000px;}
.y7f{bottom:806.010000px;}
.yed{bottom:811.860000px;}
.yc1{bottom:812.220000px;}
.y5d{bottom:813.840000px;}
.yd5{bottom:821.430000px;}
.y9e{bottom:826.080000px;}
.y7e{bottom:827.520000px;}
.ybb{bottom:834.900000px;}
.yeb{bottom:837.240000px;}
.y31{bottom:837.510000px;}
.yd{bottom:838.860000px;}
.y9d{bottom:847.500000px;}
.y5c{bottom:853.170000px;}
.y56{bottom:855.180000px;}
.yba{bottom:856.410000px;}
.ye9{bottom:858.930000px;}
.y30{bottom:859.020000px;}
.yc{bottom:860.370000px;}
.yd1{bottom:861.210000px;}
.y7d{bottom:862.440000px;}
.y9c{bottom:869.010000px;}
.yb9{bottom:877.830000px;}
.y2f{bottom:880.440000px;}
.yb{bottom:881.880000px;}
.yd3{bottom:886.200000px;}
.y9b{bottom:890.520000px;}
.y7c{bottom:892.950000px;}
.y53{bottom:896.220000px;}
.ye8{bottom:899.340000px;}
.y2e{bottom:901.950000px;}
.ya{bottom:903.390000px;}
.yb8{bottom:912.840000px;}
.ye7{bottom:920.850000px;}
.y2d{bottom:923.460000px;}
.y7b{bottom:923.640000px;}
.y9{bottom:924.810000px;}
.yb7{bottom:934.350000px;}
.y9a{bottom:934.980000px;}
.yd6{bottom:939.780000px;}
.y2c{bottom:944.880000px;}
.y8{bottom:946.320000px;}
.y7a{bottom:954.330000px;}
.y51{bottom:954.360000px;}
.ye6{bottom:955.770000px;}
.yb6{bottom:955.860000px;}
.y5b{bottom:966.390000px;}
.yb5{bottom:977.280000px;}
.y2b{bottom:979.890000px;}
.y79{bottom:985.110000px;}
.y7{bottom:990.780000px;}
.yd0{bottom:997.020000px;}
.yb4{bottom:998.790000px;}
.y2a{bottom:1001.400000px;}
.y78{bottom:1020.210000px;}
.yb3{bottom:1020.300000px;}
.yd7{bottom:1022.820000px;}
.y29{bottom:1022.910000px;}
.y28{bottom:1044.330000px;}
.yce{bottom:1054.350000px;}
.y6{bottom:1058.460000px;}
.y77{bottom:1059.540000px;}
.y27{bottom:1065.840000px;}
.y3{bottom:1203.660000px;}
.y2{bottom:1225.170000px;}
.y1{bottom:1246.590000px;}
.h10{height:17.280000px;}
.h12{height:19.710000px;}
.h7{height:21.690000px;}
.hd{height:21.780000px;}
.ha{height:21.870000px;}
.hb{height:38.790000px;}
.h9{height:38.880000px;}
.hf{height:50.021191px;}
.h11{height:50.274000px;}
.h8{height:55.971720px;}
.hc{height:60.120000px;}
.h2{height:61.334280px;}
.he{height:65.526152px;}
.h5{height:67.714259px;}
.h6{height:75.816000px;}
.h4{height:88.325640px;}
.h3{height:113.724000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.wd{width:32.850000px;}
.wc{width:34.920000px;}
.wb{width:72.000000px;}
.w5{width:72.030000px;}
.w9{width:74.160000px;}
.wa{width:74.430000px;}
.w6{width:95.670000px;}
.w7{width:117.540000px;}
.w8{width:117.570000px;}
.w4{width:189.990000px;}
.w3{width:309.960000px;}
.w1{width:892.500000px;}
.w2{width:892.529987px;}
.w0{width:892.530000px;}
.x0{left:0.000000px;}
.x18{left:8.100000px;}
.x27{left:10.860000px;}
.x15{left:12.300000px;}
.xb{left:16.170000px;}
.x9{left:18.600000px;}
.x22{left:20.070000px;}
.x8{left:21.210000px;}
.xd{left:22.560000px;}
.x12{left:24.270000px;}
.x24{left:26.280000px;}
.x16{left:27.870000px;}
.x21{left:30.420000px;}
.x23{left:37.080000px;}
.xa{left:43.710000px;}
.x13{left:45.060000px;}
.xe{left:48.120000px;}
.x25{left:55.560000px;}
.x11{left:57.300000px;}
.xc{left:95.910000px;}
.x1{left:97.379987px;}
.x2{left:151.409987px;}
.x19{left:169.410000px;}
.x4{left:222.959987px;}
.x1a{left:265.080000px;}
.x1e{left:339.240000px;}
.x1b{left:382.620000px;}
.x1f{left:413.670000px;}
.x20{left:485.700000px;}
.x7{left:486.990000px;}
.x1c{left:500.190000px;}
.x26{left:540.540000px;}
.xf{left:572.189987px;}
.x10{left:606.600000px;}
.x1d{left:617.730000px;}
.x14{left:641.669987px;}
.x28{left:765.810000px;}
.x17{left:782.729987px;}
.x5{left:789.659987px;}
.x3{left:794.159987px;}
.x6{left:799.469987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls22{letter-spacing:-0.085333pt;}
.ls20{letter-spacing:-0.082667pt;}
.ls25{letter-spacing:-0.064000pt;}
.ls24{letter-spacing:-0.048000pt;}
.ls1d{letter-spacing:-0.024320pt;}
.lsa{letter-spacing:-0.000960pt;}
.ls8{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.001280pt;}
.ls1e{letter-spacing:0.003195pt;}
.ls17{letter-spacing:0.014400pt;}
.ls14{letter-spacing:0.019520pt;}
.lsd{letter-spacing:0.024320pt;}
.ls12{letter-spacing:0.038720pt;}
.ls11{letter-spacing:0.057067pt;}
.ls21{letter-spacing:0.069867pt;}
.ls1b{letter-spacing:0.084160pt;}
.ls7{letter-spacing:0.084267pt;}
.lsf{letter-spacing:0.091200pt;}
.ls18{letter-spacing:0.092800pt;}
.lsc{letter-spacing:0.100800pt;}
.ls2{letter-spacing:0.103467pt;}
.ls15{letter-spacing:0.105280pt;}
.ls23{letter-spacing:0.116267pt;}
.ls6{letter-spacing:0.161600pt;}
.ls3{letter-spacing:0.200640pt;}
.lsb{letter-spacing:0.404267pt;}
.ls1{letter-spacing:28.001600pt;}
.ls19{letter-spacing:43.754667pt;}
.ls1a{letter-spacing:45.034667pt;}
.ls1f{letter-spacing:47.594667pt;}
.ls16{letter-spacing:47.914667pt;}
.ls13{letter-spacing:48.234667pt;}
.ls5{letter-spacing:52.840320pt;}
.ls1c{letter-spacing:60.714667pt;}
.ls10{letter-spacing:61.034667pt;}
.ls4{letter-spacing:162.738987pt;}
.ls0{letter-spacing:178.098987pt;}
.ws6{word-spacing:-58.560000pt;}
.ws0{word-spacing:-21.846080pt;}
.ws9{word-spacing:-18.752000pt;}
.wsd{word-spacing:-16.840960pt;}
.wsc{word-spacing:-16.762560pt;}
.wsf{word-spacing:-16.751355pt;}
.ws10{word-spacing:-16.665493pt;}
.ws2{word-spacing:-15.922667pt;}
.ws3{word-spacing:-15.621867pt;}
.wsb{word-spacing:-15.602667pt;}
.ws8{word-spacing:-15.575467pt;}
.ws5{word-spacing:-15.542720pt;}
.ws4{word-spacing:-15.518400pt;}
.wse{word-spacing:-15.494080pt;}
.ws11{word-spacing:-15.433067pt;}
.ws1{word-spacing:-15.410667pt;}
.wsa{word-spacing:-14.161600pt;}
.ws12{word-spacing:-13.304427pt;}
.ws13{word-spacing:-12.672000pt;}
.ws14{word-spacing:-12.656000pt;}
.ws7{word-spacing:0.000000pt;}
._19{margin-left:-3.806400pt;}
._8{margin-left:-2.459520pt;}
._1{margin-left:-1.288320pt;}
._0{width:0.952320pt;}
._6{width:1.960320pt;}
._b{width:2.860267pt;}
._7{width:3.820800pt;}
._5{width:5.387520pt;}
._4{width:6.538027pt;}
._9{width:7.964160pt;}
._f{width:9.498347pt;}
._e{width:10.482240pt;}
._c{width:12.004800pt;}
._d{width:13.219200pt;}
._12{width:14.109867pt;}
._11{width:17.148267pt;}
._10{width:18.275627pt;}
._15{width:19.169067pt;}
._1a{width:21.432960pt;}
._14{width:22.838400pt;}
._13{width:23.775360pt;}
._a{width:24.888000pt;}
._3{width:27.800427pt;}
._2{width:28.709867pt;}
._18{width:29.776107pt;}
._1c{width:33.086400pt;}
._1b{width:34.257600pt;}
._17{width:36.131520pt;}
._16{width:37.244160pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yff{bottom:3.306667pt;}
.y59{bottom:3.893333pt;}
.yea{bottom:3.920000pt;}
.y55{bottom:3.973333pt;}
.y5{bottom:4.480000pt;}
.yd4{bottom:4.853333pt;}
.ycf{bottom:5.093333pt;}
.y52{bottom:5.173333pt;}
.yec{bottom:5.360000pt;}
.y101{bottom:5.546667pt;}
.y58{bottom:21.253333pt;}
.y54{bottom:21.333333pt;}
.y4{bottom:23.520000pt;}
.yd2{bottom:39.573333pt;}
.y99{bottom:99.040000pt;}
.yfd{bottom:111.680000pt;}
.yb2{bottom:112.160000pt;}
.ycd{bottom:114.400000pt;}
.y98{bottom:118.160000pt;}
.y26{bottom:118.880000pt;}
.y50{bottom:120.000000pt;}
.yc0{bottom:123.680000pt;}
.yfc{bottom:134.240000pt;}
.y97{bottom:137.200000pt;}
.y25{bottom:138.000000pt;}
.ye5{bottom:138.320000pt;}
.yb1{bottom:138.720000pt;}
.y4f{bottom:139.120000pt;}
.ycc{bottom:140.960000pt;}
.y76{bottom:145.040000pt;}
.y3a{bottom:152.960000pt;}
.yfb{bottom:153.600000pt;}
.ybf{bottom:154.800000pt;}
.y96{bottom:156.320000pt;}
.y24{bottom:157.040000pt;}
.y4e{bottom:158.160000pt;}
.y39{bottom:172.080000pt;}
.yfa{bottom:172.880000pt;}
.ye4{bottom:173.360000pt;}
.ybe{bottom:173.920000pt;}
.y75{bottom:176.080000pt;}
.y23{bottom:176.160000pt;}
.y4d{bottom:177.280000pt;}
.y95{bottom:187.360000pt;}
.yf9{bottom:192.240000pt;}
.ye3{bottom:192.480000pt;}
.y74{bottom:195.200000pt;}
.y22{bottom:195.280000pt;}
.y4c{bottom:196.400000pt;}
.y38{bottom:198.640000pt;}
.y94{bottom:206.480000pt;}
.ybd{bottom:208.960000pt;}
.yf8{bottom:211.600000pt;}
.y73{bottom:214.320000pt;}
.ye2{bottom:219.040000pt;}
.y21{bottom:222.400000pt;}
.y4b{bottom:223.520000pt;}
.y93{bottom:225.600000pt;}
.y72{bottom:233.440000pt;}
.ybc{bottom:235.520000pt;}
.y92{bottom:244.720000pt;}
.yf7{bottom:247.466667pt;}
.y20{bottom:249.706667pt;}
.y4a{bottom:250.826667pt;}
.y91{bottom:263.866667pt;}
.y71{bottom:264.506667pt;}
.yf6{bottom:266.586667pt;}
.yb0{bottom:271.306667pt;}
.y1f{bottom:276.986667pt;}
.y49{bottom:278.106667pt;}
.y70{bottom:283.626667pt;}
.yf5{bottom:285.706667pt;}
.yaf{bottom:290.426667pt;}
.y90{bottom:290.906667pt;}
.y6f{bottom:302.746667pt;}
.y1e{bottom:304.266667pt;}
.y48{bottom:305.386667pt;}
.yae{bottom:309.546667pt;}
.y8f{bottom:318.266667pt;}
.yf4{bottom:320.746667pt;}
.yad{bottom:328.586667pt;}
.y1d{bottom:331.546667pt;}
.y47{bottom:332.666667pt;}
.y6e{bottom:333.786667pt;}
.yf3{bottom:339.866667pt;}
.y8e{bottom:345.546667pt;}
.yac{bottom:347.706667pt;}
.y6d{bottom:352.906667pt;}
.ye1{bottom:359.626667pt;}
.y1c{bottom:362.826667pt;}
.y46{bottom:363.946667pt;}
.yf2{bottom:366.426667pt;}
.y100{bottom:371.520000pt;}
.y6c{bottom:372.026667pt;}
.y8d{bottom:372.826667pt;}
.yab{bottom:378.746667pt;}
.y1b{bottom:381.946667pt;}
.y6b{bottom:391.146667pt;}
.y45{bottom:398.906667pt;}
.y8c{bottom:404.106667pt;}
.ye0{bottom:409.786667pt;}
.yaa{bottom:409.866667pt;}
.y1a{bottom:421.466667pt;}
.y6a{bottom:422.186667pt;}
.ya9{bottom:428.986667pt;}
.y8b{bottom:438.986667pt;}
.ydf{bottom:440.906667pt;}
.y69{bottom:441.306667pt;}
.y44{bottom:442.186667pt;}
.ya8{bottom:448.106667pt;}
.yde{bottom:460.026667pt;}
.y68{bottom:460.426667pt;}
.y43{bottom:461.306667pt;}
.ya7{bottom:479.146667pt;}
.y67{bottom:479.466667pt;}
.y42{bottom:480.426667pt;}
.y19{bottom:480.506667pt;}
.y8a{bottom:482.346667pt;}
.ycb{bottom:483.466667pt;}
.ydd{bottom:498.186667pt;}
.ya6{bottom:498.266667pt;}
.y66{bottom:498.586667pt;}
.y41{bottom:499.546667pt;}
.y18{bottom:499.626667pt;}
.y89{bottom:501.466667pt;}
.yca{bottom:502.586667pt;}
.yfe{bottom:502.800000pt;}
.y65{bottom:517.706667pt;}
.y17{bottom:518.666667pt;}
.ya5{bottom:529.386667pt;}
.y40{bottom:530.586667pt;}
.y88{bottom:532.506667pt;}
.ydc{bottom:533.146667pt;}
.yc9{bottom:533.706667pt;}
.y64{bottom:536.826667pt;}
.ya4{bottom:548.506667pt;}
.y3f{bottom:549.706667pt;}
.y16{bottom:549.786667pt;}
.y87{bottom:551.626667pt;}
.yc8{bottom:552.826667pt;}
.y63{bottom:555.866667pt;}
.ya3{bottom:567.546667pt;}
.y3e{bottom:568.826667pt;}
.y15{bottom:568.906667pt;}
.y86{bottom:570.746667pt;}
.yc7{bottom:571.866667pt;}
.ydb{bottom:576.426667pt;}
.y62{bottom:582.986667pt;}
.y37{bottom:589.706667pt;}
.y85{bottom:589.866667pt;}
.yc6{bottom:590.986667pt;}
.yda{bottom:595.546667pt;}
.y14{bottom:599.946667pt;}
.ya2{bottom:602.533333pt;}
.y3d{bottom:603.893333pt;}
.y36{bottom:608.853333pt;}
.y84{bottom:608.933333pt;}
.yc5{bottom:610.133333pt;}
.y61{bottom:610.293333pt;}
.y13{bottom:619.093333pt;}
.y3c{bottom:623.013333pt;}
.y35{bottom:627.973333pt;}
.yc4{bottom:629.253333pt;}
.yd9{bottom:630.693333pt;}
.yf1{bottom:633.253333pt;}
.y60{bottom:637.573333pt;}
.y12{bottom:638.213333pt;}
.y83{bottom:640.053333pt;}
.ya1{bottom:645.813333pt;}
.y34{bottom:647.093333pt;}
.y3b{bottom:649.573333pt;}
.yd8{bottom:649.813333pt;}
.yf0{bottom:652.373333pt;}
.y5a{bottom:656.800000pt;}
.y11{bottom:657.333333pt;}
.y82{bottom:659.173333pt;}
.yc3{bottom:660.293333pt;}
.y5f{bottom:664.933333pt;}
.y33{bottom:666.213333pt;}
.yef{bottom:671.493333pt;}
.y10{bottom:676.373333pt;}
.y81{bottom:678.293333pt;}
.yee{bottom:690.533333pt;}
.y5e{bottom:692.213333pt;}
.yc2{bottom:695.413333pt;}
.yf{bottom:695.493333pt;}
.ya0{bottom:696.053333pt;}
.y80{bottom:697.333333pt;}
.y32{bottom:701.093333pt;}
.y57{bottom:708.480000pt;}
.ye{bottom:714.613333pt;}
.y9f{bottom:715.173333pt;}
.y7f{bottom:716.453333pt;}
.yed{bottom:721.653333pt;}
.yc1{bottom:721.973333pt;}
.y5d{bottom:723.413333pt;}
.yd5{bottom:730.160000pt;}
.y9e{bottom:734.293333pt;}
.y7e{bottom:735.573333pt;}
.ybb{bottom:742.133333pt;}
.yeb{bottom:744.213333pt;}
.y31{bottom:744.453333pt;}
.yd{bottom:745.653333pt;}
.y9d{bottom:753.333333pt;}
.y5c{bottom:758.373333pt;}
.y56{bottom:760.160000pt;}
.yba{bottom:761.253333pt;}
.ye9{bottom:763.493333pt;}
.y30{bottom:763.573333pt;}
.yc{bottom:764.773333pt;}
.yd1{bottom:765.520000pt;}
.y7d{bottom:766.613333pt;}
.y9c{bottom:772.453333pt;}
.yb9{bottom:780.293333pt;}
.y2f{bottom:782.613333pt;}
.yb{bottom:783.893333pt;}
.yd3{bottom:787.733333pt;}
.y9b{bottom:791.573333pt;}
.y7c{bottom:793.733333pt;}
.y53{bottom:796.640000pt;}
.ye8{bottom:799.413333pt;}
.y2e{bottom:801.733333pt;}
.ya{bottom:803.013333pt;}
.yb8{bottom:811.413333pt;}
.ye7{bottom:818.533333pt;}
.y2d{bottom:820.853333pt;}
.y7b{bottom:821.013333pt;}
.y9{bottom:822.053333pt;}
.yb7{bottom:830.533333pt;}
.y9a{bottom:831.093333pt;}
.yd6{bottom:835.360000pt;}
.y2c{bottom:839.893333pt;}
.y8{bottom:841.173333pt;}
.y7a{bottom:848.293333pt;}
.y51{bottom:848.320000pt;}
.ye6{bottom:849.573333pt;}
.yb6{bottom:849.653333pt;}
.y5b{bottom:859.013333pt;}
.yb5{bottom:868.693333pt;}
.y2b{bottom:871.013333pt;}
.y79{bottom:875.653333pt;}
.y7{bottom:880.693333pt;}
.yd0{bottom:886.240000pt;}
.yb4{bottom:887.813333pt;}
.y2a{bottom:890.133333pt;}
.y78{bottom:906.853333pt;}
.yb3{bottom:906.933333pt;}
.yd7{bottom:909.173333pt;}
.y29{bottom:909.253333pt;}
.y28{bottom:928.293333pt;}
.yce{bottom:937.200000pt;}
.y6{bottom:940.853333pt;}
.y77{bottom:941.813333pt;}
.y27{bottom:947.413333pt;}
.y3{bottom:1069.920000pt;}
.y2{bottom:1089.040000pt;}
.y1{bottom:1108.080000pt;}
.h10{height:15.360000pt;}
.h12{height:17.520000pt;}
.h7{height:19.280000pt;}
.hd{height:19.360000pt;}
.ha{height:19.440000pt;}
.hb{height:34.480000pt;}
.h9{height:34.560000pt;}
.hf{height:44.463281pt;}
.h11{height:44.688000pt;}
.h8{height:49.752640pt;}
.hc{height:53.440000pt;}
.h2{height:54.519360pt;}
.he{height:58.245469pt;}
.h5{height:60.190452pt;}
.h6{height:67.392000pt;}
.h4{height:78.511680pt;}
.h3{height:101.088000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.wd{width:29.200000pt;}
.wc{width:31.040000pt;}
.wb{width:64.000000pt;}
.w5{width:64.026667pt;}
.w9{width:65.920000pt;}
.wa{width:66.160000pt;}
.w6{width:85.040000pt;}
.w7{width:104.480000pt;}
.w8{width:104.506667pt;}
.w4{width:168.880000pt;}
.w3{width:275.520000pt;}
.w1{width:793.333333pt;}
.w2{width:793.359988pt;}
.w0{width:793.360000pt;}
.x0{left:0.000000pt;}
.x18{left:7.200000pt;}
.x27{left:9.653333pt;}
.x15{left:10.933333pt;}
.xb{left:14.373333pt;}
.x9{left:16.533333pt;}
.x22{left:17.840000pt;}
.x8{left:18.853333pt;}
.xd{left:20.053333pt;}
.x12{left:21.573333pt;}
.x24{left:23.360000pt;}
.x16{left:24.773333pt;}
.x21{left:27.040000pt;}
.x23{left:32.960000pt;}
.xa{left:38.853333pt;}
.x13{left:40.053333pt;}
.xe{left:42.773333pt;}
.x25{left:49.386667pt;}
.x11{left:50.933333pt;}
.xc{left:85.253333pt;}
.x1{left:86.559988pt;}
.x2{left:134.586655pt;}
.x19{left:150.586667pt;}
.x4{left:198.186655pt;}
.x1a{left:235.626667pt;}
.x1e{left:301.546667pt;}
.x1b{left:340.106667pt;}
.x1f{left:367.706667pt;}
.x20{left:431.733333pt;}
.x7{left:432.880000pt;}
.x1c{left:444.613333pt;}
.x26{left:480.480000pt;}
.xf{left:508.613322pt;}
.x10{left:539.200000pt;}
.x1d{left:549.093333pt;}
.x14{left:570.373322pt;}
.x28{left:680.720000pt;}
.x17{left:695.759988pt;}
.x5{left:701.919988pt;}
.x3{left:705.919988pt;}
.x6{left:710.639988pt;}
}




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