
    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_d5d0f21feaea78bd8c127023.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_42b2eb045b05fa971fa7cd5d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.791000;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_06bc1a11ead0429d7d97539c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_295887e8749a6bd69054f029.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_2816245dea5103300a0115ab.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_89d6d21a8832e4b165a2b8af.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.851074;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_0e1f7bdfdaad61efa3eb6a14.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.995117;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_aedfff5823903a5606badc73.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6c1fe69672569d4829562ca6.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;}
.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);}
.v1{vertical-align:-87.120000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.334200px;}
.ls5{letter-spacing:-0.010800px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls8{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.504000px;}
.ls0{letter-spacing:359.585280px;}
.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;}
}
.ws8{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.865400px;}
.wsb{word-spacing:-16.560000px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.572800px;}
.wsa{word-spacing:-14.238600px;}
.ws3{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.160160px;}
.ws0{word-spacing:-13.147200px;}
.ws6{word-spacing:-0.066240px;}
.ws5{word-spacing:0.000000px;}
._14{margin-left:-4.459680px;}
._9{margin-left:-3.168000px;}
._1{margin-left:-1.600560px;}
._0{width:1.164240px;}
._4{width:2.686560px;}
._7{width:3.884400px;}
._5{width:5.050800px;}
._6{width:6.297120px;}
._a{width:7.428000px;}
._8{width:8.473680px;}
._3{width:9.519840px;}
._2{width:10.697040px;}
._f{width:11.952000px;}
._13{width:13.756320px;}
._10{width:14.904000px;}
._11{width:15.912000px;}
._1d{width:16.920000px;}
._e{width:18.556560px;}
._d{width:19.663200px;}
._c{width:21.630960px;}
._b{width:22.680000px;}
._12{width:23.932800px;}
._17{width:24.984000px;}
._18{width:26.784000px;}
._19{width:28.067760px;}
._1e{width:29.448480px;}
._1f{width:30.455040px;}
._15{width:31.752000px;}
._16{width:32.927760px;}
._1a{width:33.936480px;}
._1b{width:35.280000px;}
._1c{width:36.346320px;}
._25{width:37.584000px;}
._24{width:38.605680px;}
._26{width:41.056560px;}
._22{width:42.192000px;}
._23{width:43.272000px;}
._20{width:44.714640px;}
._21{width:45.965280px;}
._27{width:124.896000px;}
._28{width:125.952000px;}
.fc6{color:rgb(102,94,184);}
.fc5{color:rgb(112,48,160);}
.fc4{color:rgb(146,39,143);}
.fc2{color:rgb(155,87,211);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fs5{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:54.180000px;}
.y113{bottom:112.176000px;}
.y36{bottom:113.256000px;}
.yc6{bottom:114.876000px;}
.y82{bottom:115.236000px;}
.ybb{bottom:118.656000px;}
.y108{bottom:121.896000px;}
.yfc{bottom:123.516000px;}
.yd8{bottom:130.716000px;}
.y60{bottom:136.296000px;}
.y11c{bottom:140.436000px;}
.y35{bottom:142.236000px;}
.y112{bottom:143.316000px;}
.y98{bottom:145.836000px;}
.y81{bottom:146.196000px;}
.yba{bottom:149.616000px;}
.y107{bottom:152.850000px;}
.yfb{bottom:154.470000px;}
.y11b{bottom:161.130000px;}
.yd7{bottom:161.670000px;}
.y5f{bottom:167.250000px;}
.y34{bottom:171.030000px;}
.y111{bottom:174.270000px;}
.y97{bottom:176.970000px;}
.y80{bottom:177.330000px;}
.yb9{bottom:180.750000px;}
.y11a{bottom:181.830000px;}
.y106{bottom:183.990000px;}
.yfa{bottom:185.610000px;}
.yd6{bottom:192.810000px;}
.y5e{bottom:198.390000px;}
.y33{bottom:199.830000px;}
.y119{bottom:202.530000px;}
.y110{bottom:205.410000px;}
.y96{bottom:207.930000px;}
.y7f{bottom:208.290000px;}
.yb8{bottom:211.710000px;}
.y105{bottom:214.950000px;}
.yf9{bottom:216.570000px;}
.y118{bottom:223.230000px;}
.yd5{bottom:223.770000px;}
.y32{bottom:228.630000px;}
.y139{bottom:228.810000px;}
.y5d{bottom:229.350000px;}
.y10f{bottom:236.370000px;}
.y95{bottom:239.070000px;}
.y7e{bottom:239.430000px;}
.yb7{bottom:242.850000px;}
.y117{bottom:243.930000px;}
.y104{bottom:246.090000px;}
.yf8{bottom:247.710000px;}
.y138{bottom:249.690000px;}
.yd4{bottom:254.910000px;}
.y31{bottom:257.430000px;}
.y5c{bottom:260.490000px;}
.y116{bottom:264.450000px;}
.y10e{bottom:267.510000px;}
.y94{bottom:270.030000px;}
.y7d{bottom:270.390000px;}
.yb6{bottom:273.810000px;}
.y103{bottom:277.050000px;}
.y30{bottom:277.410000px;}
.yd3{bottom:285.870000px;}
.y137{bottom:291.090000px;}
.y5b{bottom:291.450000px;}
.y2f{bottom:297.210000px;}
.y10d{bottom:298.470000px;}
.y115{bottom:299.730000px;}
.y93{bottom:301.170000px;}
.y7c{bottom:301.350000px;}
.yb5{bottom:304.950000px;}
.y102{bottom:308.190000px;}
.yf7{bottom:311.250000px;}
.y136{bottom:311.790000px;}
.y2e{bottom:317.010000px;}
.y5a{bottom:322.590000px;}
.y10c{bottom:329.610000px;}
.y92{bottom:332.130000px;}
.y7b{bottom:332.490000px;}
.y114{bottom:333.750000px;}
.yb4{bottom:335.910000px;}
.y2d{bottom:336.855000px;}
.y101{bottom:339.195000px;}
.yf6{bottom:341.175000px;}
.yd2{bottom:348.015000px;}
.y135{bottom:353.235000px;}
.y59{bottom:353.595000px;}
.y2c{bottom:356.655000px;}
.y10b{bottom:360.615000px;}
.y91{bottom:363.315000px;}
.y7a{bottom:363.495000px;}
.yb3{bottom:367.095000px;}
.y100{bottom:370.335000px;}
.yf5{bottom:372.135000px;}
.y134{bottom:373.935000px;}
.y2b{bottom:376.635000px;}
.yd1{bottom:379.155000px;}
.y58{bottom:384.735000px;}
.yff{bottom:390.315000px;}
.y10a{bottom:391.755000px;}
.y90{bottom:394.275000px;}
.y79{bottom:394.635000px;}
.y2a{bottom:396.435000px;}
.yb2{bottom:398.055000px;}
.yf4{bottom:403.275000px;}
.yd0{bottom:410.115000px;}
.yfe{bottom:413.355000px;}
.y133{bottom:415.335000px;}
.y57{bottom:415.695000px;}
.y29{bottom:416.235000px;}
.y8f{bottom:425.415000px;}
.y78{bottom:425.595000px;}
.y109{bottom:426.855000px;}
.yb1{bottom:429.195000px;}
.yf3{bottom:434.235000px;}
.y28{bottom:436.035000px;}
.ycf{bottom:441.255000px;}
.y56{bottom:446.835000px;}
.y27{bottom:455.835000px;}
.y8e{bottom:456.375000px;}
.y77{bottom:456.735000px;}
.yb0{bottom:460.155000px;}
.yce{bottom:461.595000px;}
.yf2{bottom:465.375000px;}
.y26{bottom:475.815000px;}
.y132{bottom:477.435000px;}
.y55{bottom:477.795000px;}
.ycd{bottom:480.495000px;}
.y8d{bottom:487.515000px;}
.y76{bottom:487.695000px;}
.yaf{bottom:491.295000px;}
.y25{bottom:495.615000px;}
.yf1{bottom:496.335000px;}
.y131{bottom:498.135000px;}
.ycc{bottom:499.575000px;}
.y54{bottom:508.935000px;}
.y24{bottom:515.415000px;}
.y8c{bottom:518.475000px;}
.y75{bottom:518.835000px;}
.yae{bottom:522.255000px;}
.yf0{bottom:527.475000px;}
.y23{bottom:535.215000px;}
.ycb{bottom:537.555000px;}
.y130{bottom:539.535000px;}
.y53{bottom:539.895000px;}
.y8b{bottom:549.435000px;}
.y74{bottom:549.795000px;}
.yad{bottom:553.395000px;}
.yca{bottom:556.455000px;}
.yef{bottom:558.435000px;}
.y12f{bottom:560.235000px;}
.y22{bottom:564.015000px;}
.y52{bottom:571.035000px;}
.yc9{bottom:575.535000px;}
.y8a{bottom:580.575000px;}
.y73{bottom:580.935000px;}
.yac{bottom:584.355000px;}
.yee{bottom:589.575000px;}
.y21{bottom:589.755000px;}
.yc8{bottom:594.435000px;}
.y51{bottom:600.735000px;}
.y12e{bottom:601.635000px;}
.y20{bottom:609.945000px;}
.y89{bottom:611.565000px;}
.y72{bottom:611.925000px;}
.yc7{bottom:613.365000px;}
.yab{bottom:615.345000px;}
.yed{bottom:620.565000px;}
.y12d{bottom:622.365000px;}
.y1f{bottom:625.425000px;}
.y50{bottom:634.605000px;}
.y1e{bottom:640.905000px;}
.y88{bottom:642.705000px;}
.y71{bottom:643.065000px;}
.yaa{bottom:646.485000px;}
.yec{bottom:651.705000px;}
.y1d{bottom:656.385000px;}
.y12c{bottom:663.765000px;}
.y4f{bottom:668.625000px;}
.y1c{bottom:672.765000px;}
.y87{bottom:673.665000px;}
.y70{bottom:674.025000px;}
.ya9{bottom:677.445000px;}
.yeb{bottom:682.665000px;}
.y12b{bottom:684.465000px;}
.y4e{bottom:686.625000px;}
.y1b{bottom:690.945000px;}
.y86{bottom:704.805000px;}
.y6f{bottom:705.165000px;}
.y1a{bottom:706.425000px;}
.ya8{bottom:708.585000px;}
.yea{bottom:713.805000px;}
.y4d{bottom:718.845000px;}
.y19{bottom:722.085000px;}
.y12a{bottom:725.865000px;}
.y85{bottom:735.765000px;}
.y6e{bottom:736.125000px;}
.yfd{bottom:737.385000px;}
.y18{bottom:738.285000px;}
.y4c{bottom:738.645000px;}
.ya7{bottom:739.545000px;}
.ye9{bottom:744.765000px;}
.y129{bottom:746.565000px;}
.y17{bottom:756.465000px;}
.y84{bottom:765.645000px;}
.yc5{bottom:766.905000px;}
.y6d{bottom:767.265000px;}
.y4b{bottom:767.445000px;}
.ya6{bottom:770.685000px;}
.y16{bottom:772.125000px;}
.ye8{bottom:775.905000px;}
.y4a{bottom:787.245000px;}
.y15{bottom:787.605000px;}
.y128{bottom:787.965000px;}
.yc4{bottom:797.865000px;}
.y6c{bottom:798.225000px;}
.y83{bottom:799.485000px;}
.ya5{bottom:801.645000px;}
.y14{bottom:803.805000px;}
.ye7{bottom:806.865000px;}
.y49{bottom:807.045000px;}
.y127{bottom:808.665000px;}
.y13{bottom:821.985000px;}
.y48{bottom:827.025000px;}
.yc3{bottom:829.005000px;}
.y6b{bottom:829.365000px;}
.ya4{bottom:832.785000px;}
.y12{bottom:837.645000px;}
.ye6{bottom:838.005000px;}
.y47{bottom:846.825000px;}
.y126{bottom:850.065000px;}
.y11{bottom:853.125000px;}
.yc2{bottom:859.965000px;}
.y6a{bottom:860.325000px;}
.ya3{bottom:863.745000px;}
.y46{bottom:866.625000px;}
.ye5{bottom:868.965000px;}
.y10{bottom:869.325000px;}
.y125{bottom:870.810000px;}
.y45{bottom:886.470000px;}
.yc1{bottom:891.150000px;}
.y69{bottom:891.510000px;}
.ya2{bottom:894.930000px;}
.yf{bottom:896.190000px;}
.ye4{bottom:900.150000px;}
.y44{bottom:906.270000px;}
.y124{bottom:912.210000px;}
.ye{bottom:916.530000px;}
.yc0{bottom:922.110000px;}
.y68{bottom:922.470000px;}
.ya1{bottom:925.890000px;}
.y43{bottom:926.250000px;}
.ye3{bottom:931.110000px;}
.yd{bottom:932.010000px;}
.y123{bottom:932.910000px;}
.y42{bottom:946.050000px;}
.ya0{bottom:946.410000px;}
.yc{bottom:947.490000px;}
.ye2{bottom:951.630000px;}
.ybf{bottom:953.250000px;}
.y67{bottom:953.610000px;}
.yb{bottom:964.050000px;}
.y9f{bottom:965.310000px;}
.y41{bottom:965.850000px;}
.ye1{bottom:970.530000px;}
.y122{bottom:974.310000px;}
.ybe{bottom:984.210000px;}
.y9e{bottom:984.390000px;}
.y66{bottom:984.570000px;}
.ya{bottom:984.750000px;}
.y40{bottom:985.650000px;}
.ye0{bottom:989.430000px;}
.y121{bottom:995.010000px;}
.y9d{bottom:1003.290000px;}
.y3f{bottom:1005.450000px;}
.ydf{bottom:1008.510000px;}
.ybd{bottom:1013.910000px;}
.y65{bottom:1015.710000px;}
.y9{bottom:1018.590000px;}
.y9c{bottom:1022.190000px;}
.y3e{bottom:1025.430000px;}
.yde{bottom:1027.410000px;}
.y120{bottom:1036.410000px;}
.y9b{bottom:1041.270000px;}
.y3d{bottom:1045.230000px;}
.y8{bottom:1046.490000px;}
.y64{bottom:1046.670000px;}
.ybc{bottom:1047.930000px;}
.y11f{bottom:1057.110000px;}
.y9a{bottom:1060.170000px;}
.y3c{bottom:1065.030000px;}
.ydd{bottom:1065.390000px;}
.y6{bottom:1072.950000px;}
.y63{bottom:1077.810000px;}
.y99{bottom:1079.250000px;}
.ydc{bottom:1084.290000px;}
.y3b{bottom:1084.830000px;}
.y5{bottom:1096.710000px;}
.y11e{bottom:1098.510000px;}
.ydb{bottom:1103.370000px;}
.y62{bottom:1108.770000px;}
.y3a{bottom:1113.630000px;}
.y11d{bottom:1119.210000px;}
.y4{bottom:1119.750000px;}
.yda{bottom:1122.270000px;}
.y39{bottom:1139.400000px;}
.y61{bottom:1139.940000px;}
.yd9{bottom:1141.380000px;}
.y3{bottom:1162.080000px;}
.y38{bottom:1181.700000px;}
.y2{bottom:1183.860000px;}
.y1{bottom:1203.480000px;}
.y37{bottom:1204.740000px;}
.hb{height:47.344922px;}
.h3{height:50.364141px;}
.h7{height:52.998047px;}
.ha{height:54.421875px;}
.hd{height:55.825312px;}
.h8{height:58.651172px;}
.h11{height:59.383125px;}
.hc{height:60.226875px;}
.he{height:60.679688px;}
.hf{height:65.010937px;}
.h9{height:66.757500px;}
.h2{height:68.084282px;}
.h10{height:70.664062px;}
.h6{height:72.562500px;}
.h4{height:74.004654px;}
.h5{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:127.655987px;}
.x5{left:136.475987px;}
.x7{left:139.715987px;}
.x8{left:143.855987px;}
.x6{left:163.469987px;}
.x17{left:180.749987px;}
.x1c{left:190.109987px;}
.x9{left:255.089987px;}
.x4{left:285.374987px;}
.x18{left:297.794987px;}
.x11{left:313.634987px;}
.xc{left:316.154987px;}
.x12{left:326.054987px;}
.x1a{left:333.074987px;}
.xf{left:335.054987px;}
.x2{left:339.554987px;}
.x1{left:352.154987px;}
.xb{left:360.074987px;}
.x10{left:361.514987px;}
.xe{left:364.754987px;}
.xd{left:380.594987px;}
.x13{left:405.794987px;}
.x16{left:413.714987px;}
.x3{left:446.654987px;}
.x19{left:654.404987px;}
.x15{left:664.169987px;}
.xa{left:765.689987px;}
.x1b{left:767.129987px;}
@media print{
.v1{vertical-align:-77.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.297067pt;}
.ls5{letter-spacing:-0.009600pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls8{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.448000pt;}
.ls0{letter-spacing:319.631360pt;}
.ws8{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.991467pt;}
.wsb{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.953600pt;}
.wsa{word-spacing:-12.656533pt;}
.ws3{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.697920pt;}
.ws0{word-spacing:-11.686400pt;}
.ws6{word-spacing:-0.058880pt;}
.ws5{word-spacing:0.000000pt;}
._14{margin-left:-3.964160pt;}
._9{margin-left:-2.816000pt;}
._1{margin-left:-1.422720pt;}
._0{width:1.034880pt;}
._4{width:2.388053pt;}
._7{width:3.452800pt;}
._5{width:4.489600pt;}
._6{width:5.597440pt;}
._a{width:6.602667pt;}
._8{width:7.532160pt;}
._3{width:8.462080pt;}
._2{width:9.508480pt;}
._f{width:10.624000pt;}
._13{width:12.227840pt;}
._10{width:13.248000pt;}
._11{width:14.144000pt;}
._1d{width:15.040000pt;}
._e{width:16.494720pt;}
._d{width:17.478400pt;}
._c{width:19.227520pt;}
._b{width:20.160000pt;}
._12{width:21.273600pt;}
._17{width:22.208000pt;}
._18{width:23.808000pt;}
._19{width:24.949120pt;}
._1e{width:26.176427pt;}
._1f{width:27.071147pt;}
._15{width:28.224000pt;}
._16{width:29.269120pt;}
._1a{width:30.165760pt;}
._1b{width:31.360000pt;}
._1c{width:32.307840pt;}
._25{width:33.408000pt;}
._24{width:34.316160pt;}
._26{width:36.494720pt;}
._22{width:37.504000pt;}
._23{width:38.464000pt;}
._20{width:39.746347pt;}
._21{width:40.858027pt;}
._27{width:111.018667pt;}
._28{width:111.957333pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:48.160000pt;}
.y113{bottom:99.712000pt;}
.y36{bottom:100.672000pt;}
.yc6{bottom:102.112000pt;}
.y82{bottom:102.432000pt;}
.ybb{bottom:105.472000pt;}
.y108{bottom:108.352000pt;}
.yfc{bottom:109.792000pt;}
.yd8{bottom:116.192000pt;}
.y60{bottom:121.152000pt;}
.y11c{bottom:124.832000pt;}
.y35{bottom:126.432000pt;}
.y112{bottom:127.392000pt;}
.y98{bottom:129.632000pt;}
.y81{bottom:129.952000pt;}
.yba{bottom:132.992000pt;}
.y107{bottom:135.866667pt;}
.yfb{bottom:137.306667pt;}
.y11b{bottom:143.226667pt;}
.yd7{bottom:143.706667pt;}
.y5f{bottom:148.666667pt;}
.y34{bottom:152.026667pt;}
.y111{bottom:154.906667pt;}
.y97{bottom:157.306667pt;}
.y80{bottom:157.626667pt;}
.yb9{bottom:160.666667pt;}
.y11a{bottom:161.626667pt;}
.y106{bottom:163.546667pt;}
.yfa{bottom:164.986667pt;}
.yd6{bottom:171.386667pt;}
.y5e{bottom:176.346667pt;}
.y33{bottom:177.626667pt;}
.y119{bottom:180.026667pt;}
.y110{bottom:182.586667pt;}
.y96{bottom:184.826667pt;}
.y7f{bottom:185.146667pt;}
.yb8{bottom:188.186667pt;}
.y105{bottom:191.066667pt;}
.yf9{bottom:192.506667pt;}
.y118{bottom:198.426667pt;}
.yd5{bottom:198.906667pt;}
.y32{bottom:203.226667pt;}
.y139{bottom:203.386667pt;}
.y5d{bottom:203.866667pt;}
.y10f{bottom:210.106667pt;}
.y95{bottom:212.506667pt;}
.y7e{bottom:212.826667pt;}
.yb7{bottom:215.866667pt;}
.y117{bottom:216.826667pt;}
.y104{bottom:218.746667pt;}
.yf8{bottom:220.186667pt;}
.y138{bottom:221.946667pt;}
.yd4{bottom:226.586667pt;}
.y31{bottom:228.826667pt;}
.y5c{bottom:231.546667pt;}
.y116{bottom:235.066667pt;}
.y10e{bottom:237.786667pt;}
.y94{bottom:240.026667pt;}
.y7d{bottom:240.346667pt;}
.yb6{bottom:243.386667pt;}
.y103{bottom:246.266667pt;}
.y30{bottom:246.586667pt;}
.yd3{bottom:254.106667pt;}
.y137{bottom:258.746667pt;}
.y5b{bottom:259.066667pt;}
.y2f{bottom:264.186667pt;}
.y10d{bottom:265.306667pt;}
.y115{bottom:266.426667pt;}
.y93{bottom:267.706667pt;}
.y7c{bottom:267.866667pt;}
.yb5{bottom:271.066667pt;}
.y102{bottom:273.946667pt;}
.yf7{bottom:276.666667pt;}
.y136{bottom:277.146667pt;}
.y2e{bottom:281.786667pt;}
.y5a{bottom:286.746667pt;}
.y10c{bottom:292.986667pt;}
.y92{bottom:295.226667pt;}
.y7b{bottom:295.546667pt;}
.y114{bottom:296.666667pt;}
.yb4{bottom:298.586667pt;}
.y2d{bottom:299.426667pt;}
.y101{bottom:301.506667pt;}
.yf6{bottom:303.266667pt;}
.yd2{bottom:309.346667pt;}
.y135{bottom:313.986667pt;}
.y59{bottom:314.306667pt;}
.y2c{bottom:317.026667pt;}
.y10b{bottom:320.546667pt;}
.y91{bottom:322.946667pt;}
.y7a{bottom:323.106667pt;}
.yb3{bottom:326.306667pt;}
.y100{bottom:329.186667pt;}
.yf5{bottom:330.786667pt;}
.y134{bottom:332.386667pt;}
.y2b{bottom:334.786667pt;}
.yd1{bottom:337.026667pt;}
.y58{bottom:341.986667pt;}
.yff{bottom:346.946667pt;}
.y10a{bottom:348.226667pt;}
.y90{bottom:350.466667pt;}
.y79{bottom:350.786667pt;}
.y2a{bottom:352.386667pt;}
.yb2{bottom:353.826667pt;}
.yf4{bottom:358.466667pt;}
.yd0{bottom:364.546667pt;}
.yfe{bottom:367.426667pt;}
.y133{bottom:369.186667pt;}
.y57{bottom:369.506667pt;}
.y29{bottom:369.986667pt;}
.y8f{bottom:378.146667pt;}
.y78{bottom:378.306667pt;}
.y109{bottom:379.426667pt;}
.yb1{bottom:381.506667pt;}
.yf3{bottom:385.986667pt;}
.y28{bottom:387.586667pt;}
.ycf{bottom:392.226667pt;}
.y56{bottom:397.186667pt;}
.y27{bottom:405.186667pt;}
.y8e{bottom:405.666667pt;}
.y77{bottom:405.986667pt;}
.yb0{bottom:409.026667pt;}
.yce{bottom:410.306667pt;}
.yf2{bottom:413.666667pt;}
.y26{bottom:422.946667pt;}
.y132{bottom:424.386667pt;}
.y55{bottom:424.706667pt;}
.ycd{bottom:427.106667pt;}
.y8d{bottom:433.346667pt;}
.y76{bottom:433.506667pt;}
.yaf{bottom:436.706667pt;}
.y25{bottom:440.546667pt;}
.yf1{bottom:441.186667pt;}
.y131{bottom:442.786667pt;}
.ycc{bottom:444.066667pt;}
.y54{bottom:452.386667pt;}
.y24{bottom:458.146667pt;}
.y8c{bottom:460.866667pt;}
.y75{bottom:461.186667pt;}
.yae{bottom:464.226667pt;}
.yf0{bottom:468.866667pt;}
.y23{bottom:475.746667pt;}
.ycb{bottom:477.826667pt;}
.y130{bottom:479.586667pt;}
.y53{bottom:479.906667pt;}
.y8b{bottom:488.386667pt;}
.y74{bottom:488.706667pt;}
.yad{bottom:491.906667pt;}
.yca{bottom:494.626667pt;}
.yef{bottom:496.386667pt;}
.y12f{bottom:497.986667pt;}
.y22{bottom:501.346667pt;}
.y52{bottom:507.586667pt;}
.yc9{bottom:511.586667pt;}
.y8a{bottom:516.066667pt;}
.y73{bottom:516.386667pt;}
.yac{bottom:519.426667pt;}
.yee{bottom:524.066667pt;}
.y21{bottom:524.226667pt;}
.yc8{bottom:528.386667pt;}
.y51{bottom:533.986667pt;}
.y12e{bottom:534.786667pt;}
.y20{bottom:542.173333pt;}
.y89{bottom:543.613333pt;}
.y72{bottom:543.933333pt;}
.yc7{bottom:545.213333pt;}
.yab{bottom:546.973333pt;}
.yed{bottom:551.613333pt;}
.y12d{bottom:553.213333pt;}
.y1f{bottom:555.933333pt;}
.y50{bottom:564.093333pt;}
.y1e{bottom:569.693333pt;}
.y88{bottom:571.293333pt;}
.y71{bottom:571.613333pt;}
.yaa{bottom:574.653333pt;}
.yec{bottom:579.293333pt;}
.y1d{bottom:583.453333pt;}
.y12c{bottom:590.013333pt;}
.y4f{bottom:594.333333pt;}
.y1c{bottom:598.013333pt;}
.y87{bottom:598.813333pt;}
.y70{bottom:599.133333pt;}
.ya9{bottom:602.173333pt;}
.yeb{bottom:606.813333pt;}
.y12b{bottom:608.413333pt;}
.y4e{bottom:610.333333pt;}
.y1b{bottom:614.173333pt;}
.y86{bottom:626.493333pt;}
.y6f{bottom:626.813333pt;}
.y1a{bottom:627.933333pt;}
.ya8{bottom:629.853333pt;}
.yea{bottom:634.493333pt;}
.y4d{bottom:638.973333pt;}
.y19{bottom:641.853333pt;}
.y12a{bottom:645.213333pt;}
.y85{bottom:654.013333pt;}
.y6e{bottom:654.333333pt;}
.yfd{bottom:655.453333pt;}
.y18{bottom:656.253333pt;}
.y4c{bottom:656.573333pt;}
.ya7{bottom:657.373333pt;}
.ye9{bottom:662.013333pt;}
.y129{bottom:663.613333pt;}
.y17{bottom:672.413333pt;}
.y84{bottom:680.573333pt;}
.yc5{bottom:681.693333pt;}
.y6d{bottom:682.013333pt;}
.y4b{bottom:682.173333pt;}
.ya6{bottom:685.053333pt;}
.y16{bottom:686.333333pt;}
.ye8{bottom:689.693333pt;}
.y4a{bottom:699.773333pt;}
.y15{bottom:700.093333pt;}
.y128{bottom:700.413333pt;}
.yc4{bottom:709.213333pt;}
.y6c{bottom:709.533333pt;}
.y83{bottom:710.653333pt;}
.ya5{bottom:712.573333pt;}
.y14{bottom:714.493333pt;}
.ye7{bottom:717.213333pt;}
.y49{bottom:717.373333pt;}
.y127{bottom:718.813333pt;}
.y13{bottom:730.653333pt;}
.y48{bottom:735.133333pt;}
.yc3{bottom:736.893333pt;}
.y6b{bottom:737.213333pt;}
.ya4{bottom:740.253333pt;}
.y12{bottom:744.573333pt;}
.ye6{bottom:744.893333pt;}
.y47{bottom:752.733333pt;}
.y126{bottom:755.613333pt;}
.y11{bottom:758.333333pt;}
.yc2{bottom:764.413333pt;}
.y6a{bottom:764.733333pt;}
.ya3{bottom:767.773333pt;}
.y46{bottom:770.333333pt;}
.ye5{bottom:772.413333pt;}
.y10{bottom:772.733333pt;}
.y125{bottom:774.053333pt;}
.y45{bottom:787.973333pt;}
.yc1{bottom:792.133333pt;}
.y69{bottom:792.453333pt;}
.ya2{bottom:795.493333pt;}
.yf{bottom:796.613333pt;}
.ye4{bottom:800.133333pt;}
.y44{bottom:805.573333pt;}
.y124{bottom:810.853333pt;}
.ye{bottom:814.693333pt;}
.yc0{bottom:819.653333pt;}
.y68{bottom:819.973333pt;}
.ya1{bottom:823.013333pt;}
.y43{bottom:823.333333pt;}
.ye3{bottom:827.653333pt;}
.yd{bottom:828.453333pt;}
.y123{bottom:829.253333pt;}
.y42{bottom:840.933333pt;}
.ya0{bottom:841.253333pt;}
.yc{bottom:842.213333pt;}
.ye2{bottom:845.893333pt;}
.ybf{bottom:847.333333pt;}
.y67{bottom:847.653333pt;}
.yb{bottom:856.933333pt;}
.y9f{bottom:858.053333pt;}
.y41{bottom:858.533333pt;}
.ye1{bottom:862.693333pt;}
.y122{bottom:866.053333pt;}
.ybe{bottom:874.853333pt;}
.y9e{bottom:875.013333pt;}
.y66{bottom:875.173333pt;}
.ya{bottom:875.333333pt;}
.y40{bottom:876.133333pt;}
.ye0{bottom:879.493333pt;}
.y121{bottom:884.453333pt;}
.y9d{bottom:891.813333pt;}
.y3f{bottom:893.733333pt;}
.ydf{bottom:896.453333pt;}
.ybd{bottom:901.253333pt;}
.y65{bottom:902.853333pt;}
.y9{bottom:905.413333pt;}
.y9c{bottom:908.613333pt;}
.y3e{bottom:911.493333pt;}
.yde{bottom:913.253333pt;}
.y120{bottom:921.253333pt;}
.y9b{bottom:925.573333pt;}
.y3d{bottom:929.093333pt;}
.y8{bottom:930.213333pt;}
.y64{bottom:930.373333pt;}
.ybc{bottom:931.493333pt;}
.y11f{bottom:939.653333pt;}
.y9a{bottom:942.373333pt;}
.y3c{bottom:946.693333pt;}
.ydd{bottom:947.013333pt;}
.y6{bottom:953.733333pt;}
.y63{bottom:958.053333pt;}
.y99{bottom:959.333333pt;}
.ydc{bottom:963.813333pt;}
.y3b{bottom:964.293333pt;}
.y5{bottom:974.853333pt;}
.y11e{bottom:976.453333pt;}
.ydb{bottom:980.773333pt;}
.y62{bottom:985.573333pt;}
.y3a{bottom:989.893333pt;}
.y11d{bottom:994.853333pt;}
.y4{bottom:995.333333pt;}
.yda{bottom:997.573333pt;}
.y39{bottom:1012.800000pt;}
.y61{bottom:1013.280000pt;}
.yd9{bottom:1014.560000pt;}
.y3{bottom:1032.960000pt;}
.y38{bottom:1050.400000pt;}
.y2{bottom:1052.320000pt;}
.y1{bottom:1069.760000pt;}
.y37{bottom:1070.880000pt;}
.hb{height:42.084375pt;}
.h3{height:44.768125pt;}
.h7{height:47.109375pt;}
.ha{height:48.375000pt;}
.hd{height:49.622500pt;}
.h8{height:52.134375pt;}
.h11{height:52.785000pt;}
.hc{height:53.535000pt;}
.he{height:53.937500pt;}
.hf{height:57.787500pt;}
.h9{height:59.340000pt;}
.h2{height:60.519362pt;}
.h10{height:62.812500pt;}
.h6{height:64.500000pt;}
.h4{height:65.781915pt;}
.h5{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:113.471988pt;}
.x5{left:121.311988pt;}
.x7{left:124.191988pt;}
.x8{left:127.871988pt;}
.x6{left:145.306655pt;}
.x17{left:160.666655pt;}
.x1c{left:168.986655pt;}
.x9{left:226.746655pt;}
.x4{left:253.666655pt;}
.x18{left:264.706655pt;}
.x11{left:278.786655pt;}
.xc{left:281.026655pt;}
.x12{left:289.826655pt;}
.x1a{left:296.066655pt;}
.xf{left:297.826655pt;}
.x2{left:301.826655pt;}
.x1{left:313.026655pt;}
.xb{left:320.066655pt;}
.x10{left:321.346655pt;}
.xe{left:324.226655pt;}
.xd{left:338.306655pt;}
.x13{left:360.706655pt;}
.x16{left:367.746655pt;}
.x3{left:397.026655pt;}
.x19{left:581.693322pt;}
.x15{left:590.373322pt;}
.xa{left:680.613322pt;}
.x1b{left:681.893322pt;}
}




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