
    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_715164ca8f22a0b8ce051cde.woff')format("woff");}.ff1{font-family:ff1;line-height:1.469727;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_31be935fb936485a549b6f58.woff')format("woff");}.ff2{font-family:ff2;line-height:1.099609;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_302a42674580ec45b2680ec1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.469727;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_3c874b8140ce66cb4e79a7cb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_996dea88d99e270ecca6beda.woff')format("woff");}.ff6{font-family:ff6;line-height:1.099609;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_3914c7c48a23d401827d0707.woff')format("woff");}.ff7{font-family:ff7;line-height:1.326660;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_a37f629f5cefafdaa131d4e5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.326660;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_ec1303afb24de418cae2e643.woff')format("woff");}.ff9{font-family:ff9;line-height:0.683594;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);}
.v3{vertical-align:-103.680000px;}
.v1{vertical-align:-83.496000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v4{vertical-align:30.240000px;}
.ls13{letter-spacing:-1.008000px;}
.ls6{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.325200px;}
.ls1e{letter-spacing:-0.295200px;}
.ls1f{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.207600px;}
.ls9{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.015840px;}
.ls5{letter-spacing:0.063600px;}
.ls21{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.124800px;}
.ls2c{letter-spacing:0.129600px;}
.ls2{letter-spacing:0.154800px;}
.ls16{letter-spacing:0.211800px;}
.ls1b{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.265200px;}
.lse{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.424800px;}
.ls2b{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.648000px;}
.ls10{letter-spacing:0.786000px;}
.ls22{letter-spacing:0.936000px;}
.ls23{letter-spacing:1.656000px;}
.ls12{letter-spacing:2.088000px;}
.ls26{letter-spacing:2.376000px;}
.lsb{letter-spacing:2.647440px;}
.ls1a{letter-spacing:3.096000px;}
.ls20{letter-spacing:3.816000px;}
.ls25{letter-spacing:6.696000px;}
.ls27{letter-spacing:7.128000px;}
.ls3{letter-spacing:8.407440px;}
.ls29{letter-spacing:11.016000px;}
.ls28{letter-spacing:11.856000px;}
.lsc{letter-spacing:12.727440px;}
.ls1d{letter-spacing:13.176000px;}
.lsd{letter-spacing:13.447440px;}
.ls1c{letter-spacing:13.896000px;}
.ls24{letter-spacing:14.616000px;}
.ls18{letter-spacing:23.256000px;}
.ls19{letter-spacing:23.976000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-20.304000px;}
.ws4{word-spacing:-20.232000px;}
.ws12{word-spacing:-20.016000px;}
.ws2{word-spacing:-18.613440px;}
.ws3{word-spacing:-18.288240px;}
.ws11{word-spacing:-18.072000px;}
.ws13{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.217360px;}
.ws5{word-spacing:-16.947360px;}
.wsf{word-spacing:-16.917360px;}
.ws0{word-spacing:-16.792560px;}
.ws1{word-spacing:-16.432560px;}
.wsa{word-spacing:-16.135200px;}
.ws6{word-spacing:-14.760720px;}
.ws15{word-spacing:-14.328000px;}
.wsd{word-spacing:-11.999760px;}
.wse{word-spacing:-11.946360px;}
.ws14{word-spacing:-10.444320px;}
.ws8{word-spacing:-10.224000px;}
.ws7{word-spacing:-9.972000px;}
.ws9{word-spacing:0.000000px;}
._1a{margin-left:-6.059280px;}
._b{margin-left:-5.000880px;}
._c{margin-left:-3.724080px;}
._2{margin-left:-2.689200px;}
._1{margin-left:-1.111200px;}
._0{width:1.314720px;}
._3{width:2.928240px;}
._a{width:4.906800px;}
._4{width:5.927280px;}
._12{width:6.971520px;}
._6{width:8.067600px;}
._5{width:9.107040px;}
._9{width:10.374720px;}
._10{width:12.218160px;}
._f{width:13.386240px;}
._8{width:15.154800px;}
._15{width:17.136000px;}
._14{width:18.144000px;}
._11{width:21.600000px;}
._16{width:22.752000px;}
._19{width:24.048000px;}
._17{width:28.656000px;}
._18{width:30.024000px;}
._e{width:31.900800px;}
._d{width:32.987520px;}
._13{width:264.564480px;}
._7{width:958.588080px;}
.fc4{color:rgb(0,112,192);}
.fc1{color:rgb(70,120,134);}
.fc3{color:rgb(0,176,80);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.170000px;}
.ya3{bottom:20.520000px;}
.y4{bottom:25.590000px;}
.y3{bottom:47.190000px;}
.ya2{bottom:50.400000px;}
.y2{bottom:68.610000px;}
.y36{bottom:76.176000px;}
.ya6{bottom:79.920000px;}
.ya7{bottom:80.100000px;}
.ya1{bottom:80.145000px;}
.y10{bottom:93.456000px;}
.y35{bottom:95.256000px;}
.y9f{bottom:109.665000px;}
.ya5{bottom:109.800000px;}
.ya0{bottom:109.845000px;}
.yf{bottom:113.616000px;}
.y9b{bottom:116.136000px;}
.yd5{bottom:120.456000px;}
.y5f{bottom:121.896000px;}
.y9a{bottom:122.076000px;}
.y87{bottom:128.196000px;}
.ybf{bottom:137.736000px;}
.y99{bottom:138.816000px;}
.y9e{bottom:139.545000px;}
.yf1{bottom:140.616000px;}
.yba{bottom:141.876000px;}
.yd4{bottom:146.376000px;}
.y5e{bottom:147.636000px;}
.ye{bottom:153.570000px;}
.y86{bottom:154.110000px;}
.ybe{bottom:159.150000px;}
.ybd{bottom:165.090000px;}
.yf0{bottom:166.530000px;}
.yb9{bottom:167.610000px;}
.yd3{bottom:172.110000px;}
.y5d{bottom:173.550000px;}
.yd{bottom:175.170000px;}
.y98{bottom:176.070000px;}
.y85{bottom:179.850000px;}
.yc8{bottom:180.750000px;}
.ybc{bottom:181.830000px;}
.yc7{bottom:186.690000px;}
.yef{bottom:192.270000px;}
.yb8{bottom:193.530000px;}
.yc{bottom:196.590000px;}
.yd2{bottom:198.030000px;}
.y5c{bottom:199.290000px;}
.y97{bottom:201.810000px;}
.yc6{bottom:203.430000px;}
.y84{bottom:205.770000px;}
.yb{bottom:218.190000px;}
.yb7{bottom:219.270000px;}
.yee{bottom:222.690000px;}
.yd1{bottom:223.770000px;}
.y96{bottom:227.730000px;}
.y83{bottom:231.510000px;}
.ya{bottom:239.790000px;}
.yb6{bottom:245.010000px;}
.yc5{bottom:245.730000px;}
.yed{bottom:248.430000px;}
.yd0{bottom:249.690000px;}
.y95{bottom:253.470000px;}
.y5b{bottom:254.910000px;}
.y82{bottom:257.430000px;}
.y9{bottom:261.210000px;}
.yb5{bottom:270.930000px;}
.yc4{bottom:271.650000px;}
.y110{bottom:273.090000px;}
.ycf{bottom:275.430000px;}
.yec{bottom:278.850000px;}
.y94{bottom:279.390000px;}
.y5a{bottom:280.650000px;}
.y8{bottom:282.810000px;}
.y81{bottom:283.170000px;}
.yb4{bottom:296.670000px;}
.yc3{bottom:301.350000px;}
.y10f{bottom:303.330000px;}
.yeb{bottom:304.590000px;}
.y92{bottom:305.130000px;}
.y59{bottom:306.570000px;}
.y80{bottom:309.090000px;}
.y93{bottom:312.690000px;}
.y7{bottom:321.510000px;}
.yb3{bottom:322.590000px;}
.yce{bottom:327.090000px;}
.y10e{bottom:329.070000px;}
.yea{bottom:330.330000px;}
.y91{bottom:330.870000px;}
.y58{bottom:332.310000px;}
.y7f{bottom:334.830000px;}
.y33{bottom:341.355000px;}
.yb2{bottom:348.375000px;}
.ycd{bottom:352.875000px;}
.y10d{bottom:355.035000px;}
.ye9{bottom:356.295000px;}
.y90{bottom:356.835000px;}
.y57{bottom:358.275000px;}
.y7e{bottom:360.615000px;}
.y32{bottom:362.955000px;}
.yb1{bottom:374.295000px;}
.ycc{bottom:378.795000px;}
.ye8{bottom:382.035000px;}
.y8f{bottom:382.575000px;}
.y56{bottom:384.015000px;}
.y31{bottom:384.375000px;}
.y10c{bottom:385.275000px;}
.y7d{bottom:386.535000px;}
.yb0{bottom:400.035000px;}
.ycb{bottom:404.535000px;}
.y30{bottom:405.975000px;}
.y8e{bottom:408.495000px;}
.y55{bottom:409.935000px;}
.y10b{bottom:411.195000px;}
.y2f{bottom:411.915000px;}
.y7c{bottom:412.275000px;}
.ye7{bottom:412.455000px;}
.yaf{bottom:425.955000px;}
.y2e{bottom:428.475000px;}
.yca{bottom:430.455000px;}
.y8d{bottom:434.235000px;}
.y54{bottom:435.675000px;}
.y10a{bottom:436.935000px;}
.y7b{bottom:438.195000px;}
.yae{bottom:451.695000px;}
.y2d{bottom:456.015000px;}
.yc9{bottom:456.195000px;}
.y8c{bottom:460.155000px;}
.y53{bottom:461.415000px;}
.y109{bottom:462.855000px;}
.y7a{bottom:463.935000px;}
.ye6{bottom:468.615000px;}
.y2c{bottom:477.615000px;}
.y8b{bottom:485.895000px;}
.y52{bottom:487.335000px;}
.y108{bottom:488.595000px;}
.y79{bottom:489.855000px;}
.ye5{bottom:494.355000px;}
.yc2{bottom:497.415000px;}
.y2b{bottom:499.215000px;}
.yad{bottom:503.355000px;}
.y8a{bottom:511.815000px;}
.y51{bottom:513.075000px;}
.y107{bottom:514.515000px;}
.y78{bottom:515.595000px;}
.ye4{bottom:520.275000px;}
.y2a{bottom:520.635000px;}
.yac{bottom:529.275000px;}
.y89{bottom:537.555000px;}
.y50{bottom:538.995000px;}
.y106{bottom:540.255000px;}
.y77{bottom:541.515000px;}
.y29{bottom:542.235000px;}
.ye3{bottom:546.015000px;}
.yab{bottom:555.015000px;}
.y88{bottom:563.475000px;}
.y28{bottom:563.655000px;}
.y4f{bottom:564.735000px;}
.y76{bottom:567.255000px;}
.y105{bottom:570.675000px;}
.ye2{bottom:571.935000px;}
.yaa{bottom:580.755000px;}
.y27{bottom:585.255000px;}
.y4e{bottom:590.655000px;}
.y75{bottom:593.175000px;}
.y104{bottom:596.415000px;}
.ye1{bottom:602.175000px;}
.y26{bottom:606.705000px;}
.y4d{bottom:616.425000px;}
.y74{bottom:618.945000px;}
.y103{bottom:622.185000px;}
.ye0{bottom:627.945000px;}
.y25{bottom:628.305000px;}
.ya9{bottom:632.445000px;}
.y4c{bottom:642.345000px;}
.y73{bottom:644.685000px;}
.y102{bottom:648.105000px;}
.y24{bottom:650.625000px;}
.ydf{bottom:653.865000px;}
.ya8{bottom:662.145000px;}
.y4b{bottom:668.085000px;}
.y72{bottom:670.605000px;}
.y23{bottom:676.005000px;}
.y101{bottom:678.345000px;}
.ya4{bottom:683.925000px;}
.yde{bottom:684.105000px;}
.y4a{bottom:694.005000px;}
.y71{bottom:696.345000px;}
.y22{bottom:699.585000px;}
.y100{bottom:704.265000px;}
.ydd{bottom:710.025000px;}
.y49{bottom:719.745000px;}
.y70{bottom:722.265000px;}
.y21{bottom:723.345000px;}
.yc1{bottom:729.825000px;}
.yff{bottom:734.505000px;}
.ydc{bottom:735.765000px;}
.y48{bottom:745.485000px;}
.y20{bottom:746.925000px;}
.y6f{bottom:748.005000px;}
.yfe{bottom:760.425000px;}
.ydb{bottom:766.185000px;}
.y1f{bottom:770.685000px;}
.y47{bottom:771.405000px;}
.y6e{bottom:773.925000px;}
.yfd{bottom:786.165000px;}
.yda{bottom:791.925000px;}
.y1e{bottom:794.265000px;}
.y46{bottom:797.145000px;}
.y6d{bottom:799.665000px;}
.yfc{bottom:812.085000px;}
.y9d{bottom:815.505000px;}
.yd9{bottom:817.845000px;}
.y1d{bottom:818.025000px;}
.y6c{bottom:825.585000px;}
.y45{bottom:837.645000px;}
.y1c{bottom:841.605000px;}
.yfb{bottom:842.325000px;}
.yd8{bottom:843.585000px;}
.y6b{bottom:851.325000px;}
.y44{bottom:859.245000px;}
.y1b{bottom:865.365000px;}
.yfa{bottom:868.245000px;}
.yd7{bottom:869.505000px;}
.y6a{bottom:877.290000px;}
.y43{bottom:880.710000px;}
.y1a{bottom:888.990000px;}
.yf9{bottom:894.030000px;}
.yd6{bottom:899.250000px;}
.y42{bottom:902.310000px;}
.y69{bottom:903.030000px;}
.y19{bottom:912.750000px;}
.yf8{bottom:919.950000px;}
.y41{bottom:923.730000px;}
.y68{bottom:928.950000px;}
.y18{bottom:936.330000px;}
.y40{bottom:945.330000px;}
.yf7{bottom:945.690000px;}
.y67{bottom:954.690000px;}
.y17{bottom:960.090000px;}
.y3f{bottom:966.750000px;}
.yf6{bottom:971.430000px;}
.y66{bottom:980.430000px;}
.y16{bottom:983.310000px;}
.y9c{bottom:983.850000px;}
.y3e{bottom:988.350000px;}
.yf5{bottom:997.350000px;}
.y14{bottom:1005.630000px;}
.y65{bottom:1006.350000px;}
.y3d{bottom:1009.770000px;}
.y15{bottom:1013.190000px;}
.ybb{bottom:1013.910000px;}
.yf4{bottom:1027.590000px;}
.y3c{bottom:1031.370000px;}
.y64{bottom:1032.090000px;}
.y13{bottom:1032.270000px;}
.y3b{bottom:1052.790000px;}
.yf3{bottom:1053.510000px;}
.y63{bottom:1058.010000px;}
.y12{bottom:1062.330000px;}
.yc0{bottom:1065.570000px;}
.y3a{bottom:1074.390000px;}
.yf2{bottom:1079.250000px;}
.y62{bottom:1083.750000px;}
.y11{bottom:1091.310000px;}
.y39{bottom:1095.990000px;}
.y61{bottom:1109.670000px;}
.y6{bottom:1115.790000px;}
.y38{bottom:1117.410000px;}
.y1{bottom:1134.150000px;}
.y60{bottom:1135.410000px;}
.y37{bottom:1139.040000px;}
.y34{bottom:1203.480000px;}
.hb{height:36.071016px;}
.hd{height:36.826172px;}
.he{height:42.718359px;}
.h7{height:43.506914px;}
.h4{height:51.618867px;}
.h6{height:55.239258px;}
.h3{height:61.131445px;}
.h11{height:61.136719px;}
.ha{height:62.191406px;}
.h5{height:62.402344px;}
.h8{height:67.760156px;}
.h9{height:72.763945px;}
.hc{height:73.652344px;}
.h2{height:86.256000px;}
.h10{height:130.860000px;}
.hf{height:160.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.796000px;}
.w7{width:76.140000px;}
.w4{width:329.610000px;}
.w2{width:331.950000px;}
.w8{width:605.265000px;}
.w6{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x7{left:104.615987px;}
.x1{left:106.416000px;}
.xc{left:110.915987px;}
.x10{left:133.235987px;}
.x11{left:143.495987px;}
.xa{left:159.509987px;}
.x19{left:164.009973px;}
.x17{left:167.429973px;}
.x1a{left:169.229987px;}
.x18{left:172.649987px;}
.x12{left:182.370000px;}
.x2{left:185.799000px;}
.x13{left:304.094973px;}
.x14{left:309.314987px;}
.xb{left:322.454987px;}
.xe{left:385.994973px;}
.xf{left:391.214987px;}
.x3{left:438.375000px;}
.x6{left:446.474987px;}
.x5{left:489.165000px;}
.x8{left:649.004973px;}
.x9{left:653.324987px;}
.x15{left:672.989973px;}
.x16{left:678.209987px;}
.x1b{left:767.489987px;}
.xd{left:777.209987px;}
@media print{
.v3{vertical-align:-92.160000pt;}
.v1{vertical-align:-74.218667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v4{vertical-align:26.880000pt;}
.ls13{letter-spacing:-0.896000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.289067pt;}
.ls1e{letter-spacing:-0.262400pt;}
.ls1f{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.184533pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.014080pt;}
.ls5{letter-spacing:0.056533pt;}
.ls21{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.110933pt;}
.ls2c{letter-spacing:0.115200pt;}
.ls2{letter-spacing:0.137600pt;}
.ls16{letter-spacing:0.188267pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.235733pt;}
.lse{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.377600pt;}
.ls2b{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.576000pt;}
.ls10{letter-spacing:0.698667pt;}
.ls22{letter-spacing:0.832000pt;}
.ls23{letter-spacing:1.472000pt;}
.ls12{letter-spacing:1.856000pt;}
.ls26{letter-spacing:2.112000pt;}
.lsb{letter-spacing:2.353280pt;}
.ls1a{letter-spacing:2.752000pt;}
.ls20{letter-spacing:3.392000pt;}
.ls25{letter-spacing:5.952000pt;}
.ls27{letter-spacing:6.336000pt;}
.ls3{letter-spacing:7.473280pt;}
.ls29{letter-spacing:9.792000pt;}
.ls28{letter-spacing:10.538667pt;}
.lsc{letter-spacing:11.313280pt;}
.ls1d{letter-spacing:11.712000pt;}
.lsd{letter-spacing:11.953280pt;}
.ls1c{letter-spacing:12.352000pt;}
.ls24{letter-spacing:12.992000pt;}
.ls18{letter-spacing:20.672000pt;}
.ls19{letter-spacing:21.312000pt;}
.ws10{word-spacing:-18.048000pt;}
.ws4{word-spacing:-17.984000pt;}
.ws12{word-spacing:-17.792000pt;}
.ws2{word-spacing:-16.545280pt;}
.ws3{word-spacing:-16.256213pt;}
.ws11{word-spacing:-16.064000pt;}
.ws13{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.304320pt;}
.ws5{word-spacing:-15.064320pt;}
.wsf{word-spacing:-15.037653pt;}
.ws0{word-spacing:-14.926720pt;}
.ws1{word-spacing:-14.606720pt;}
.wsa{word-spacing:-14.342400pt;}
.ws6{word-spacing:-13.120640pt;}
.ws15{word-spacing:-12.736000pt;}
.wsd{word-spacing:-10.666453pt;}
.wse{word-spacing:-10.618987pt;}
.ws14{word-spacing:-9.283840pt;}
.ws8{word-spacing:-9.088000pt;}
.ws7{word-spacing:-8.864000pt;}
.ws9{word-spacing:0.000000pt;}
._1a{margin-left:-5.386027pt;}
._b{margin-left:-4.445227pt;}
._c{margin-left:-3.310293pt;}
._2{margin-left:-2.390400pt;}
._1{margin-left:-0.987733pt;}
._0{width:1.168640pt;}
._3{width:2.602880pt;}
._a{width:4.361600pt;}
._4{width:5.268693pt;}
._12{width:6.196907pt;}
._6{width:7.171200pt;}
._5{width:8.095147pt;}
._9{width:9.221973pt;}
._10{width:10.860587pt;}
._f{width:11.898880pt;}
._8{width:13.470933pt;}
._15{width:15.232000pt;}
._14{width:16.128000pt;}
._11{width:19.200000pt;}
._16{width:20.224000pt;}
._19{width:21.376000pt;}
._17{width:25.472000pt;}
._18{width:26.688000pt;}
._e{width:28.356267pt;}
._d{width:29.322240pt;}
._13{width:235.168427pt;}
._7{width:852.078293pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.706667pt;}
.ya3{bottom:18.240000pt;}
.y4{bottom:22.746667pt;}
.y3{bottom:41.946667pt;}
.ya2{bottom:44.800000pt;}
.y2{bottom:60.986667pt;}
.y36{bottom:67.712000pt;}
.ya6{bottom:71.040000pt;}
.ya7{bottom:71.200000pt;}
.ya1{bottom:71.240000pt;}
.y10{bottom:83.072000pt;}
.y35{bottom:84.672000pt;}
.y9f{bottom:97.480000pt;}
.ya5{bottom:97.600000pt;}
.ya0{bottom:97.640000pt;}
.yf{bottom:100.992000pt;}
.y9b{bottom:103.232000pt;}
.yd5{bottom:107.072000pt;}
.y5f{bottom:108.352000pt;}
.y9a{bottom:108.512000pt;}
.y87{bottom:113.952000pt;}
.ybf{bottom:122.432000pt;}
.y99{bottom:123.392000pt;}
.y9e{bottom:124.040000pt;}
.yf1{bottom:124.992000pt;}
.yba{bottom:126.112000pt;}
.yd4{bottom:130.112000pt;}
.y5e{bottom:131.232000pt;}
.ye{bottom:136.506667pt;}
.y86{bottom:136.986667pt;}
.ybe{bottom:141.466667pt;}
.ybd{bottom:146.746667pt;}
.yf0{bottom:148.026667pt;}
.yb9{bottom:148.986667pt;}
.yd3{bottom:152.986667pt;}
.y5d{bottom:154.266667pt;}
.yd{bottom:155.706667pt;}
.y98{bottom:156.506667pt;}
.y85{bottom:159.866667pt;}
.yc8{bottom:160.666667pt;}
.ybc{bottom:161.626667pt;}
.yc7{bottom:165.946667pt;}
.yef{bottom:170.906667pt;}
.yb8{bottom:172.026667pt;}
.yc{bottom:174.746667pt;}
.yd2{bottom:176.026667pt;}
.y5c{bottom:177.146667pt;}
.y97{bottom:179.386667pt;}
.yc6{bottom:180.826667pt;}
.y84{bottom:182.906667pt;}
.yb{bottom:193.946667pt;}
.yb7{bottom:194.906667pt;}
.yee{bottom:197.946667pt;}
.yd1{bottom:198.906667pt;}
.y96{bottom:202.426667pt;}
.y83{bottom:205.786667pt;}
.ya{bottom:213.146667pt;}
.yb6{bottom:217.786667pt;}
.yc5{bottom:218.426667pt;}
.yed{bottom:220.826667pt;}
.yd0{bottom:221.946667pt;}
.y95{bottom:225.306667pt;}
.y5b{bottom:226.586667pt;}
.y82{bottom:228.826667pt;}
.y9{bottom:232.186667pt;}
.yb5{bottom:240.826667pt;}
.yc4{bottom:241.466667pt;}
.y110{bottom:242.746667pt;}
.ycf{bottom:244.826667pt;}
.yec{bottom:247.866667pt;}
.y94{bottom:248.346667pt;}
.y5a{bottom:249.466667pt;}
.y8{bottom:251.386667pt;}
.y81{bottom:251.706667pt;}
.yb4{bottom:263.706667pt;}
.yc3{bottom:267.866667pt;}
.y10f{bottom:269.626667pt;}
.yeb{bottom:270.746667pt;}
.y92{bottom:271.226667pt;}
.y59{bottom:272.506667pt;}
.y80{bottom:274.746667pt;}
.y93{bottom:277.946667pt;}
.y7{bottom:285.786667pt;}
.yb3{bottom:286.746667pt;}
.yce{bottom:290.746667pt;}
.y10e{bottom:292.506667pt;}
.yea{bottom:293.626667pt;}
.y91{bottom:294.106667pt;}
.y58{bottom:295.386667pt;}
.y7f{bottom:297.626667pt;}
.y33{bottom:303.426667pt;}
.yb2{bottom:309.666667pt;}
.ycd{bottom:313.666667pt;}
.y10d{bottom:315.586667pt;}
.ye9{bottom:316.706667pt;}
.y90{bottom:317.186667pt;}
.y57{bottom:318.466667pt;}
.y7e{bottom:320.546667pt;}
.y32{bottom:322.626667pt;}
.yb1{bottom:332.706667pt;}
.ycc{bottom:336.706667pt;}
.ye8{bottom:339.586667pt;}
.y8f{bottom:340.066667pt;}
.y56{bottom:341.346667pt;}
.y31{bottom:341.666667pt;}
.y10c{bottom:342.466667pt;}
.y7d{bottom:343.586667pt;}
.yb0{bottom:355.586667pt;}
.ycb{bottom:359.586667pt;}
.y30{bottom:360.866667pt;}
.y8e{bottom:363.106667pt;}
.y55{bottom:364.386667pt;}
.y10b{bottom:365.506667pt;}
.y2f{bottom:366.146667pt;}
.y7c{bottom:366.466667pt;}
.ye7{bottom:366.626667pt;}
.yaf{bottom:378.626667pt;}
.y2e{bottom:380.866667pt;}
.yca{bottom:382.626667pt;}
.y8d{bottom:385.986667pt;}
.y54{bottom:387.266667pt;}
.y10a{bottom:388.386667pt;}
.y7b{bottom:389.506667pt;}
.yae{bottom:401.506667pt;}
.y2d{bottom:405.346667pt;}
.yc9{bottom:405.506667pt;}
.y8c{bottom:409.026667pt;}
.y53{bottom:410.146667pt;}
.y109{bottom:411.426667pt;}
.y7a{bottom:412.386667pt;}
.ye6{bottom:416.546667pt;}
.y2c{bottom:424.546667pt;}
.y8b{bottom:431.906667pt;}
.y52{bottom:433.186667pt;}
.y108{bottom:434.306667pt;}
.y79{bottom:435.426667pt;}
.ye5{bottom:439.426667pt;}
.yc2{bottom:442.146667pt;}
.y2b{bottom:443.746667pt;}
.yad{bottom:447.426667pt;}
.y8a{bottom:454.946667pt;}
.y51{bottom:456.066667pt;}
.y107{bottom:457.346667pt;}
.y78{bottom:458.306667pt;}
.ye4{bottom:462.466667pt;}
.y2a{bottom:462.786667pt;}
.yac{bottom:470.466667pt;}
.y89{bottom:477.826667pt;}
.y50{bottom:479.106667pt;}
.y106{bottom:480.226667pt;}
.y77{bottom:481.346667pt;}
.y29{bottom:481.986667pt;}
.ye3{bottom:485.346667pt;}
.yab{bottom:493.346667pt;}
.y88{bottom:500.866667pt;}
.y28{bottom:501.026667pt;}
.y4f{bottom:501.986667pt;}
.y76{bottom:504.226667pt;}
.y105{bottom:507.266667pt;}
.ye2{bottom:508.386667pt;}
.yaa{bottom:516.226667pt;}
.y27{bottom:520.226667pt;}
.y4e{bottom:525.026667pt;}
.y75{bottom:527.266667pt;}
.y104{bottom:530.146667pt;}
.ye1{bottom:535.266667pt;}
.y26{bottom:539.293333pt;}
.y4d{bottom:547.933333pt;}
.y74{bottom:550.173333pt;}
.y103{bottom:553.053333pt;}
.ye0{bottom:558.173333pt;}
.y25{bottom:558.493333pt;}
.ya9{bottom:562.173333pt;}
.y4c{bottom:570.973333pt;}
.y73{bottom:573.053333pt;}
.y102{bottom:576.093333pt;}
.y24{bottom:578.333333pt;}
.ydf{bottom:581.213333pt;}
.ya8{bottom:588.573333pt;}
.y4b{bottom:593.853333pt;}
.y72{bottom:596.093333pt;}
.y23{bottom:600.893333pt;}
.y101{bottom:602.973333pt;}
.ya4{bottom:607.933333pt;}
.yde{bottom:608.093333pt;}
.y4a{bottom:616.893333pt;}
.y71{bottom:618.973333pt;}
.y22{bottom:621.853333pt;}
.y100{bottom:626.013333pt;}
.ydd{bottom:631.133333pt;}
.y49{bottom:639.773333pt;}
.y70{bottom:642.013333pt;}
.y21{bottom:642.973333pt;}
.yc1{bottom:648.733333pt;}
.yff{bottom:652.893333pt;}
.ydc{bottom:654.013333pt;}
.y48{bottom:662.653333pt;}
.y20{bottom:663.933333pt;}
.y6f{bottom:664.893333pt;}
.yfe{bottom:675.933333pt;}
.ydb{bottom:681.053333pt;}
.y1f{bottom:685.053333pt;}
.y47{bottom:685.693333pt;}
.y6e{bottom:687.933333pt;}
.yfd{bottom:698.813333pt;}
.yda{bottom:703.933333pt;}
.y1e{bottom:706.013333pt;}
.y46{bottom:708.573333pt;}
.y6d{bottom:710.813333pt;}
.yfc{bottom:721.853333pt;}
.y9d{bottom:724.893333pt;}
.yd9{bottom:726.973333pt;}
.y1d{bottom:727.133333pt;}
.y6c{bottom:733.853333pt;}
.y45{bottom:744.573333pt;}
.y1c{bottom:748.093333pt;}
.yfb{bottom:748.733333pt;}
.yd8{bottom:749.853333pt;}
.y6b{bottom:756.733333pt;}
.y44{bottom:763.773333pt;}
.y1b{bottom:769.213333pt;}
.yfa{bottom:771.773333pt;}
.yd7{bottom:772.893333pt;}
.y6a{bottom:779.813333pt;}
.y43{bottom:782.853333pt;}
.y1a{bottom:790.213333pt;}
.yf9{bottom:794.693333pt;}
.yd6{bottom:799.333333pt;}
.y42{bottom:802.053333pt;}
.y69{bottom:802.693333pt;}
.y19{bottom:811.333333pt;}
.yf8{bottom:817.733333pt;}
.y41{bottom:821.093333pt;}
.y68{bottom:825.733333pt;}
.y18{bottom:832.293333pt;}
.y40{bottom:840.293333pt;}
.yf7{bottom:840.613333pt;}
.y67{bottom:848.613333pt;}
.y17{bottom:853.413333pt;}
.y3f{bottom:859.333333pt;}
.yf6{bottom:863.493333pt;}
.y66{bottom:871.493333pt;}
.y16{bottom:874.053333pt;}
.y9c{bottom:874.533333pt;}
.y3e{bottom:878.533333pt;}
.yf5{bottom:886.533333pt;}
.y14{bottom:893.893333pt;}
.y65{bottom:894.533333pt;}
.y3d{bottom:897.573333pt;}
.y15{bottom:900.613333pt;}
.ybb{bottom:901.253333pt;}
.yf4{bottom:913.413333pt;}
.y3c{bottom:916.773333pt;}
.y64{bottom:917.413333pt;}
.y13{bottom:917.573333pt;}
.y3b{bottom:935.813333pt;}
.yf3{bottom:936.453333pt;}
.y63{bottom:940.453333pt;}
.y12{bottom:944.293333pt;}
.yc0{bottom:947.173333pt;}
.y3a{bottom:955.013333pt;}
.yf2{bottom:959.333333pt;}
.y62{bottom:963.333333pt;}
.y11{bottom:970.053333pt;}
.y39{bottom:974.213333pt;}
.y61{bottom:986.373333pt;}
.y6{bottom:991.813333pt;}
.y38{bottom:993.253333pt;}
.y1{bottom:1008.133333pt;}
.y60{bottom:1009.253333pt;}
.y37{bottom:1012.480000pt;}
.y34{bottom:1069.760000pt;}
.hb{height:32.063125pt;}
.hd{height:32.734375pt;}
.he{height:37.971875pt;}
.h7{height:38.672812pt;}
.h4{height:45.883437pt;}
.h6{height:49.101562pt;}
.h3{height:54.339063pt;}
.h11{height:54.343750pt;}
.ha{height:55.281250pt;}
.h5{height:55.468750pt;}
.h8{height:60.231250pt;}
.h9{height:64.679063pt;}
.hc{height:65.468750pt;}
.h2{height:76.672000pt;}
.h10{height:116.320000pt;}
.hf{height:142.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.152000pt;}
.w7{width:67.680000pt;}
.w4{width:292.986667pt;}
.w2{width:295.066667pt;}
.w8{width:538.013333pt;}
.w6{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x7{left:92.991988pt;}
.x1{left:94.592000pt;}
.xc{left:98.591988pt;}
.x10{left:118.431988pt;}
.x11{left:127.551988pt;}
.xa{left:141.786655pt;}
.x19{left:145.786643pt;}
.x17{left:148.826643pt;}
.x1a{left:150.426655pt;}
.x18{left:153.466655pt;}
.x12{left:162.106667pt;}
.x2{left:165.154667pt;}
.x13{left:270.306643pt;}
.x14{left:274.946655pt;}
.xb{left:286.626655pt;}
.xe{left:343.106643pt;}
.xf{left:347.746655pt;}
.x3{left:389.666667pt;}
.x6{left:396.866655pt;}
.x5{left:434.813333pt;}
.x8{left:576.893310pt;}
.x9{left:580.733322pt;}
.x15{left:598.213310pt;}
.x16{left:602.853322pt;}
.x1b{left:682.213322pt;}
.xd{left:690.853322pt;}
}




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