
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_10748708ed752f0ce5037894.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_18de73bc384cc26aab628ac2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2aca0aca09aba240978eafb0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_1547362a235db8f0a21ba005.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d7f583c8c70a5f9ae12adb23.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cbd23a9114c43e13d347a45c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_9b67fb35461074eea6a69d9e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_ddf00bf91db6fb64cda2a537.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8c04c6ce05bca62f848b254e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.747559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls11{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.870000px;}
.ls12{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.274800px;}
.ls7{letter-spacing:-0.152400px;}
.ls14{letter-spacing:-0.109200px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.080400px;}
.ls8{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.109440px;}
.lsa{letter-spacing:0.152400px;}
.ls10{letter-spacing:0.152640px;}
.ls3{letter-spacing:0.262080px;}
.lsd{letter-spacing:0.262200px;}
.ls4{letter-spacing:0.305280px;}
.lsb{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:6.785280px;}
.lsc{letter-spacing:39.905280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.ws9{word-spacing:-28.987200px;}
.ws8{word-spacing:-28.712400px;}
.ws2{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.450800px;}
.ws12{word-spacing:-16.254600px;}
.wsf{word-spacing:-16.102200px;}
.wse{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.939200px;}
.ws6{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws10{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._2b{margin-left:-5.253120px;}
._2a{margin-left:-2.782080px;}
._1{margin-left:-1.080000px;}
._0{width:1.020000px;}
._2{width:2.486880px;}
._4{width:3.576960px;}
._5{width:4.921920px;}
._b{width:6.618240px;}
._9{width:8.478720px;}
._a{width:9.554880px;}
._18{width:10.593120px;}
._21{width:11.744640px;}
._6{width:12.784320px;}
._8{width:14.196960px;}
._7{width:15.321600px;}
._1d{width:17.951040px;}
._1e{width:19.275840px;}
._1c{width:20.401920px;}
._23{width:21.614400px;}
._22{width:22.781280px;}
._14{width:24.785280px;}
._15{width:25.800480px;}
._19{width:26.979840px;}
._24{width:28.383840px;}
._13{width:30.219840px;}
._12{width:31.265280px;}
._25{width:32.345280px;}
._17{width:34.306560px;}
._16{width:35.438400px;}
._20{width:36.604800px;}
._1f{width:37.624320px;}
._29{width:38.887200px;}
._34{width:40.152960px;}
._2c{width:41.267520px;}
._31{width:42.347520px;}
._f{width:44.251200px;}
._28{width:45.371520px;}
._30{width:46.719360px;}
._2d{width:48.772800px;}
._33{width:50.460480px;}
._c{width:56.568960px;}
._35{width:58.576320px;}
._2e{width:60.344640px;}
._2f{width:61.424640px;}
._1a{width:62.596800px;}
._1b{width:63.722880px;}
._27{width:66.107520px;}
._26{width:67.432320px;}
._11{width:74.407680px;}
._10{width:75.646080px;}
._e{width:95.031840px;}
._d{width:97.128000px;}
._32{width:186.068160px;}
._3{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc8{color:rgb(35,31,32);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.yb9{bottom:13.140000px;}
.yc1{bottom:13.350000px;}
.yab{bottom:13.494000px;}
.y68{bottom:13.500000px;}
.yae{bottom:13.530000px;}
.y65{bottom:13.545000px;}
.y6d{bottom:13.680000px;}
.yc0{bottom:13.710000px;}
.y79{bottom:13.725000px;}
.ya{bottom:20.880000px;}
.y37{bottom:30.600000px;}
.y67{bottom:41.940000px;}
.yb0{bottom:42.120000px;}
.y36{bottom:46.980000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y35{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.y34{bottom:79.056000px;}
.y30{bottom:97.596000px;}
.y80{bottom:106.056000px;}
.y9e{bottom:106.956000px;}
.y5d{bottom:109.836000px;}
.y91{bottom:119.556000px;}
.ycf{bottom:121.176000px;}
.y2f{bottom:126.036000px;}
.y7f{bottom:135.396000px;}
.y5c{bottom:138.456000px;}
.yaa{bottom:148.896000px;}
.yce{bottom:149.616000px;}
.y2e{bottom:154.470000px;}
.y9d{bottom:163.830000px;}
.y7e{bottom:164.550000px;}
.y5b{bottom:166.890000px;}
.ya9{bottom:178.050000px;}
.y2d{bottom:182.910000px;}
.y9c{bottom:192.270000px;}
.y5a{bottom:195.330000px;}
.ycd{bottom:206.490000px;}
.y7d{bottom:207.210000px;}
.y2c{bottom:211.350000px;}
.y9b{bottom:220.710000px;}
.y59{bottom:223.770000px;}
.ycc{bottom:234.930000px;}
.y7c{bottom:235.650000px;}
.y2b{bottom:239.790000px;}
.y9a{bottom:249.150000px;}
.y7b{bottom:251.490000px;}
.y58{bottom:252.210000px;}
.ycb{bottom:263.370000px;}
.ya8{bottom:264.990000px;}
.y2a{bottom:268.230000px;}
.y99{bottom:277.590000px;}
.y57{bottom:280.650000px;}
.y7a{bottom:282.090000px;}
.yca{bottom:291.810000px;}
.ya7{bottom:294.150000px;}
.y29{bottom:296.850000px;}
.y98{bottom:306.030000px;}
.y56{bottom:309.090000px;}
.y78{bottom:311.250000px;}
.y90{bottom:311.430000px;}
.yc9{bottom:320.475000px;}
.ya6{bottom:323.355000px;}
.y28{bottom:325.335000px;}
.y97{bottom:334.515000px;}
.y55{bottom:337.575000px;}
.y8f{bottom:339.915000px;}
.y77{bottom:340.635000px;}
.yc8{bottom:348.915000px;}
.y27{bottom:353.775000px;}
.y96{bottom:362.775000px;}
.y54{bottom:366.015000px;}
.y8e{bottom:368.355000px;}
.y76{bottom:369.795000px;}
.yc7{bottom:377.355000px;}
.y26{bottom:382.215000px;}
.y95{bottom:387.615000px;}
.y8d{bottom:392.835000px;}
.y60{bottom:394.275000px;}
.y53{bottom:394.635000px;}
.y75{bottom:398.955000px;}
.yc6{bottom:405.435000px;}
.yd0{bottom:405.795000px;}
.y25{bottom:410.655000px;}
.yc5{bottom:421.455000px;}
.y52{bottom:423.075000px;}
.y74{bottom:428.295000px;}
.y24{bottom:439.095000px;}
.yc4{bottom:450.615000px;}
.y51{bottom:451.515000px;}
.y73{bottom:457.455000px;}
.y23{bottom:467.175000px;}
.y31{bottom:467.535000px;}
.y50{bottom:479.955000px;}
.y22{bottom:499.755000px;}
.y72{bottom:500.115000px;}
.ya5{bottom:508.035000px;}
.y4f{bottom:508.395000px;}
.yc3{bottom:509.115000px;}
.y21{bottom:528.195000px;}
.y71{bottom:528.555000px;}
.ya4{bottom:536.475000px;}
.y4e{bottom:536.835000px;}
.yc2{bottom:538.275000px;}
.y20{bottom:556.635000px;}
.y70{bottom:556.995000px;}
.ya3{bottom:564.915000px;}
.y4d{bottom:565.275000px;}
.ybf{bottom:567.435000px;}
.y6f{bottom:572.865000px;}
.y8c{bottom:579.525000px;}
.y1f{bottom:585.105000px;}
.ya2{bottom:593.385000px;}
.y4c{bottom:593.745000px;}
.ybe{bottom:596.805000px;}
.y94{bottom:601.305000px;}
.y6e{bottom:603.465000px;}
.y8b{bottom:607.965000px;}
.y1e{bottom:613.725000px;}
.y4b{bottom:621.825000px;}
.y5f{bottom:622.185000px;}
.ybd{bottom:625.965000px;}
.y93{bottom:629.745000px;}
.y6c{bottom:632.625000px;}
.y8a{bottom:636.585000px;}
.y1d{bottom:642.165000px;}
.y62{bottom:650.445000px;}
.y4a{bottom:650.805000px;}
.y92{bottom:654.225000px;}
.ybc{bottom:655.125000px;}
.y89{bottom:661.065000px;}
.y6b{bottom:661.965000px;}
.y1c{bottom:670.605000px;}
.ya1{bottom:678.885000px;}
.y49{bottom:679.245000px;}
.ybb{bottom:684.465000px;}
.y6a{bottom:691.125000px;}
.y1b{bottom:699.045000px;}
.ya0{bottom:707.325000px;}
.y48{bottom:707.685000px;}
.yba{bottom:713.625000px;}
.y69{bottom:720.285000px;}
.y1a{bottom:727.485000px;}
.y47{bottom:736.125000px;}
.y5e{bottom:742.065000px;}
.yb8{bottom:742.785000px;}
.y66{bottom:749.625000px;}
.y19{bottom:755.925000px;}
.y46{bottom:764.565000px;}
.yb7{bottom:771.945000px;}
.y18{bottom:784.365000px;}
.y45{bottom:793.005000px;}
.y64{bottom:807.225000px;}
.yb6{bottom:814.785000px;}
.y17{bottom:818.745000px;}
.y61{bottom:821.130000px;}
.y44{bottom:821.490000px;}
.yb5{bottom:830.490000px;}
.y88{bottom:845.430000px;}
.y16{bottom:847.230000px;}
.y43{bottom:849.930000px;}
.y87{bottom:873.870000px;}
.y15{bottom:875.850000px;}
.y42{bottom:878.370000px;}
.yb4{bottom:888.090000px;}
.y86{bottom:902.490000px;}
.y14{bottom:904.290000px;}
.y63{bottom:906.630000px;}
.y41{bottom:906.990000px;}
.yb3{bottom:917.430000px;}
.y85{bottom:918.150000px;}
.y13{bottom:932.730000px;}
.y9f{bottom:935.070000px;}
.y40{bottom:935.430000px;}
.yb2{bottom:946.590000px;}
.y84{bottom:947.310000px;}
.y12{bottom:961.170000px;}
.yd6{bottom:963.510000px;}
.y3f{bottom:963.870000px;}
.yb1{bottom:975.750000px;}
.y83{bottom:976.470000px;}
.y11{bottom:983.310000px;}
.yd5{bottom:991.950000px;}
.y3e{bottom:992.310000px;}
.yaf{bottom:1004.910000px;}
.y82{bottom:1005.810000px;}
.y10{bottom:1011.750000px;}
.yd4{bottom:1020.390000px;}
.y3d{bottom:1020.750000px;}
.y4{bottom:1032.810000px;}
.y81{bottom:1034.970000px;}
.yd3{bottom:1048.830000px;}
.y3c{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.yad{bottom:1062.690000px;}
.y2{bottom:1072.620000px;}
.yd2{bottom:1077.300000px;}
.y3b{bottom:1077.660000px;}
.yac{bottom:1091.880000px;}
.yd1{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h17{height:28.440000px;}
.h15{height:28.476000px;}
.h18{height:28.620000px;}
.h19{height:28.656000px;}
.h6{height:33.480000px;}
.hb{height:41.250937px;}
.hc{height:46.251562px;}
.h1{height:48.045938px;}
.he{height:52.971680px;}
.hd{height:53.709961px;}
.h7{height:54.421875px;}
.h16{height:56.880000px;}
.h1a{height:57.060000px;}
.h2{height:58.621992px;}
.h12{height:60.679688px;}
.h9{height:63.019687px;}
.h14{height:64.978594px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h13{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h11{height:111.043849px;}
.h10{height:111.043854px;}
.h4{height:167.250000px;}
.hf{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w23{width:53.316000px;}
.w29{width:62.676000px;}
.w2c{width:65.160000px;}
.w2b{width:71.280000px;}
.w10{width:82.440000px;}
.w19{width:83.520000px;}
.w16{width:87.876000px;}
.wd{width:92.016000px;}
.w15{width:93.600000px;}
.w28{width:101.520000px;}
.wb{width:105.696000px;}
.w27{width:111.636000px;}
.w18{width:113.436000px;}
.w26{width:115.920000px;}
.w14{width:115.956000px;}
.w25{width:116.316000px;}
.w17{width:118.980000px;}
.w1c{width:119.016000px;}
.wc{width:119.160000px;}
.we{width:121.860000px;}
.w8{width:123.696000px;}
.w1e{width:133.200000px;}
.w1b{width:136.260000px;}
.w1d{width:151.050000px;}
.wf{width:153.750000px;}
.w20{width:165.090000px;}
.w21{width:171.210000px;}
.w1f{width:180.750000px;}
.w11{width:189.570000px;}
.w1a{width:258.555000px;}
.w22{width:290.010000px;}
.w12{width:298.875000px;}
.w24{width:307.830000px;}
.w13{width:317.370000px;}
.w9{width:318.315000px;}
.wa{width:359.490000px;}
.w3{width:361.335000px;}
.w2a{width:610.125000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.x15{left:55.440000px;}
.xd{left:57.600000px;}
.xc{left:80.999986px;}
.x29{left:107.496000px;}
.x2e{left:116.676000px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.xf{left:182.010000px;}
.x20{left:235.830000px;}
.x16{left:245.730000px;}
.x11{left:288.435000px;}
.x1c{left:313.635000px;}
.x23{left:337.574986px;}
.x24{left:340.634986px;}
.x25{left:349.634986px;}
.x18{left:362.415000px;}
.x21{left:401.655000px;}
.x12{left:408.315000px;}
.x2a{left:416.055000px;}
.x28{left:424.694986px;}
.x1d{left:450.615000px;}
.x19{left:456.735000px;}
.x8{left:482.144986px;}
.x10{left:501.045000px;}
.x31{left:509.144986px;}
.x5{left:521.025000px;}
.x2b{left:533.085000px;}
.x17{left:545.325000px;}
.x1e{left:570.345000px;}
.x22{left:573.765000px;}
.x13{left:623.625000px;}
.x2c{left:649.905000px;}
.x1a{left:665.025000px;}
.x1f{left:722.310000px;}
.x2f{left:727.530000px;}
.x2d{left:762.270000px;}
.x14{left:778.110000px;}
.x1b{left:779.190000px;}
.x26{left:788.729986px;}
.x30{left:799.530000px;}
.x27{left:812.849986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls11{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.773333pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.244267pt;}
.ls7{letter-spacing:-0.135467pt;}
.ls14{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.071467pt;}
.ls8{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.097280pt;}
.lsa{letter-spacing:0.135467pt;}
.ls10{letter-spacing:0.135680pt;}
.ls3{letter-spacing:0.232960pt;}
.lsd{letter-spacing:0.233067pt;}
.ls4{letter-spacing:0.271360pt;}
.lsb{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:6.031360pt;}
.lsc{letter-spacing:35.471360pt;}
.ls0{letter-spacing:184.370347pt;}
.ws9{word-spacing:-25.766400pt;}
.ws8{word-spacing:-25.522133pt;}
.ws2{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.622933pt;}
.ws12{word-spacing:-14.448533pt;}
.wsf{word-spacing:-14.313067pt;}
.wse{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.440000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.390400pt;}
.ws6{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws10{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._2b{margin-left:-4.669440pt;}
._2a{margin-left:-2.472960pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.906667pt;}
._2{width:2.210560pt;}
._4{width:3.179520pt;}
._5{width:4.375040pt;}
._b{width:5.882880pt;}
._9{width:7.536640pt;}
._a{width:8.493227pt;}
._18{width:9.416107pt;}
._21{width:10.439680pt;}
._6{width:11.363840pt;}
._8{width:12.619520pt;}
._7{width:13.619200pt;}
._1d{width:15.956480pt;}
._1e{width:17.134080pt;}
._1c{width:18.135040pt;}
._23{width:19.212800pt;}
._22{width:20.250027pt;}
._14{width:22.031360pt;}
._15{width:22.933760pt;}
._19{width:23.982080pt;}
._24{width:25.230080pt;}
._13{width:26.862080pt;}
._12{width:27.791360pt;}
._25{width:28.751360pt;}
._17{width:30.494720pt;}
._16{width:31.500800pt;}
._20{width:32.537600pt;}
._1f{width:33.443840pt;}
._29{width:34.566400pt;}
._34{width:35.691520pt;}
._2c{width:36.682240pt;}
._31{width:37.642240pt;}
._f{width:39.334400pt;}
._28{width:40.330240pt;}
._30{width:41.528320pt;}
._2d{width:43.353600pt;}
._33{width:44.853760pt;}
._c{width:50.283520pt;}
._35{width:52.067840pt;}
._2e{width:53.639680pt;}
._2f{width:54.599680pt;}
._1a{width:55.641600pt;}
._1b{width:56.642560pt;}
._27{width:58.762240pt;}
._26{width:59.939840pt;}
._11{width:66.140160pt;}
._10{width:67.240960pt;}
._e{width:84.472747pt;}
._d{width:86.336000pt;}
._32{width:165.393920pt;}
._3{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.yb9{bottom:11.680000pt;}
.yc1{bottom:11.866667pt;}
.yab{bottom:11.994667pt;}
.y68{bottom:12.000000pt;}
.yae{bottom:12.026667pt;}
.y65{bottom:12.040000pt;}
.y6d{bottom:12.160000pt;}
.yc0{bottom:12.186667pt;}
.y79{bottom:12.200000pt;}
.ya{bottom:18.560000pt;}
.y37{bottom:27.200000pt;}
.y67{bottom:37.280000pt;}
.yb0{bottom:37.440000pt;}
.y36{bottom:41.760000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y35{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.y34{bottom:70.272000pt;}
.y30{bottom:86.752000pt;}
.y80{bottom:94.272000pt;}
.y9e{bottom:95.072000pt;}
.y5d{bottom:97.632000pt;}
.y91{bottom:106.272000pt;}
.ycf{bottom:107.712000pt;}
.y2f{bottom:112.032000pt;}
.y7f{bottom:120.352000pt;}
.y5c{bottom:123.072000pt;}
.yaa{bottom:132.352000pt;}
.yce{bottom:132.992000pt;}
.y2e{bottom:137.306667pt;}
.y9d{bottom:145.626667pt;}
.y7e{bottom:146.266667pt;}
.y5b{bottom:148.346667pt;}
.ya9{bottom:158.266667pt;}
.y2d{bottom:162.586667pt;}
.y9c{bottom:170.906667pt;}
.y5a{bottom:173.626667pt;}
.ycd{bottom:183.546667pt;}
.y7d{bottom:184.186667pt;}
.y2c{bottom:187.866667pt;}
.y9b{bottom:196.186667pt;}
.y59{bottom:198.906667pt;}
.ycc{bottom:208.826667pt;}
.y7c{bottom:209.466667pt;}
.y2b{bottom:213.146667pt;}
.y9a{bottom:221.466667pt;}
.y7b{bottom:223.546667pt;}
.y58{bottom:224.186667pt;}
.ycb{bottom:234.106667pt;}
.ya8{bottom:235.546667pt;}
.y2a{bottom:238.426667pt;}
.y99{bottom:246.746667pt;}
.y57{bottom:249.466667pt;}
.y7a{bottom:250.746667pt;}
.yca{bottom:259.386667pt;}
.ya7{bottom:261.466667pt;}
.y29{bottom:263.866667pt;}
.y98{bottom:272.026667pt;}
.y56{bottom:274.746667pt;}
.y78{bottom:276.666667pt;}
.y90{bottom:276.826667pt;}
.yc9{bottom:284.866667pt;}
.ya6{bottom:287.426667pt;}
.y28{bottom:289.186667pt;}
.y97{bottom:297.346667pt;}
.y55{bottom:300.066667pt;}
.y8f{bottom:302.146667pt;}
.y77{bottom:302.786667pt;}
.yc8{bottom:310.146667pt;}
.y27{bottom:314.466667pt;}
.y96{bottom:322.466667pt;}
.y54{bottom:325.346667pt;}
.y8e{bottom:327.426667pt;}
.y76{bottom:328.706667pt;}
.yc7{bottom:335.426667pt;}
.y26{bottom:339.746667pt;}
.y95{bottom:344.546667pt;}
.y8d{bottom:349.186667pt;}
.y60{bottom:350.466667pt;}
.y53{bottom:350.786667pt;}
.y75{bottom:354.626667pt;}
.yc6{bottom:360.386667pt;}
.yd0{bottom:360.706667pt;}
.y25{bottom:365.026667pt;}
.yc5{bottom:374.626667pt;}
.y52{bottom:376.066667pt;}
.y74{bottom:380.706667pt;}
.y24{bottom:390.306667pt;}
.yc4{bottom:400.546667pt;}
.y51{bottom:401.346667pt;}
.y73{bottom:406.626667pt;}
.y23{bottom:415.266667pt;}
.y31{bottom:415.586667pt;}
.y50{bottom:426.626667pt;}
.y22{bottom:444.226667pt;}
.y72{bottom:444.546667pt;}
.ya5{bottom:451.586667pt;}
.y4f{bottom:451.906667pt;}
.yc3{bottom:452.546667pt;}
.y21{bottom:469.506667pt;}
.y71{bottom:469.826667pt;}
.ya4{bottom:476.866667pt;}
.y4e{bottom:477.186667pt;}
.yc2{bottom:478.466667pt;}
.y20{bottom:494.786667pt;}
.y70{bottom:495.106667pt;}
.ya3{bottom:502.146667pt;}
.y4d{bottom:502.466667pt;}
.ybf{bottom:504.386667pt;}
.y6f{bottom:509.213333pt;}
.y8c{bottom:515.133333pt;}
.y1f{bottom:520.093333pt;}
.ya2{bottom:527.453333pt;}
.y4c{bottom:527.773333pt;}
.ybe{bottom:530.493333pt;}
.y94{bottom:534.493333pt;}
.y6e{bottom:536.413333pt;}
.y8b{bottom:540.413333pt;}
.y1e{bottom:545.533333pt;}
.y4b{bottom:552.733333pt;}
.y5f{bottom:553.053333pt;}
.ybd{bottom:556.413333pt;}
.y93{bottom:559.773333pt;}
.y6c{bottom:562.333333pt;}
.y8a{bottom:565.853333pt;}
.y1d{bottom:570.813333pt;}
.y62{bottom:578.173333pt;}
.y4a{bottom:578.493333pt;}
.y92{bottom:581.533333pt;}
.ybc{bottom:582.333333pt;}
.y89{bottom:587.613333pt;}
.y6b{bottom:588.413333pt;}
.y1c{bottom:596.093333pt;}
.ya1{bottom:603.453333pt;}
.y49{bottom:603.773333pt;}
.ybb{bottom:608.413333pt;}
.y6a{bottom:614.333333pt;}
.y1b{bottom:621.373333pt;}
.ya0{bottom:628.733333pt;}
.y48{bottom:629.053333pt;}
.yba{bottom:634.333333pt;}
.y69{bottom:640.253333pt;}
.y1a{bottom:646.653333pt;}
.y47{bottom:654.333333pt;}
.y5e{bottom:659.613333pt;}
.yb8{bottom:660.253333pt;}
.y66{bottom:666.333333pt;}
.y19{bottom:671.933333pt;}
.y46{bottom:679.613333pt;}
.yb7{bottom:686.173333pt;}
.y18{bottom:697.213333pt;}
.y45{bottom:704.893333pt;}
.y64{bottom:717.533333pt;}
.yb6{bottom:724.253333pt;}
.y17{bottom:727.773333pt;}
.y61{bottom:729.893333pt;}
.y44{bottom:730.213333pt;}
.yb5{bottom:738.213333pt;}
.y88{bottom:751.493333pt;}
.y16{bottom:753.093333pt;}
.y43{bottom:755.493333pt;}
.y87{bottom:776.773333pt;}
.y15{bottom:778.533333pt;}
.y42{bottom:780.773333pt;}
.yb4{bottom:789.413333pt;}
.y86{bottom:802.213333pt;}
.y14{bottom:803.813333pt;}
.y63{bottom:805.893333pt;}
.y41{bottom:806.213333pt;}
.yb3{bottom:815.493333pt;}
.y85{bottom:816.133333pt;}
.y13{bottom:829.093333pt;}
.y9f{bottom:831.173333pt;}
.y40{bottom:831.493333pt;}
.yb2{bottom:841.413333pt;}
.y84{bottom:842.053333pt;}
.y12{bottom:854.373333pt;}
.yd6{bottom:856.453333pt;}
.y3f{bottom:856.773333pt;}
.yb1{bottom:867.333333pt;}
.y83{bottom:867.973333pt;}
.y11{bottom:874.053333pt;}
.yd5{bottom:881.733333pt;}
.y3e{bottom:882.053333pt;}
.yaf{bottom:893.253333pt;}
.y82{bottom:894.053333pt;}
.y10{bottom:899.333333pt;}
.yd4{bottom:907.013333pt;}
.y3d{bottom:907.333333pt;}
.y4{bottom:918.053333pt;}
.y81{bottom:919.973333pt;}
.yd3{bottom:932.293333pt;}
.y3c{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.yad{bottom:944.613333pt;}
.y2{bottom:953.440000pt;}
.yd2{bottom:957.600000pt;}
.y3b{bottom:957.920000pt;}
.yac{bottom:970.560000pt;}
.yd1{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h17{height:25.280000pt;}
.h15{height:25.312000pt;}
.h18{height:25.440000pt;}
.h19{height:25.472000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.hc{height:41.112500pt;}
.h1{height:42.707500pt;}
.he{height:47.085938pt;}
.hd{height:47.742188pt;}
.h7{height:48.375000pt;}
.h16{height:50.560000pt;}
.h1a{height:50.720000pt;}
.h2{height:52.108438pt;}
.h12{height:53.937500pt;}
.h9{height:56.017500pt;}
.h14{height:57.758750pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h13{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h11{height:98.705643pt;}
.h10{height:98.705648pt;}
.h4{height:148.666667pt;}
.hf{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w23{width:47.392000pt;}
.w29{width:55.712000pt;}
.w2c{width:57.920000pt;}
.w2b{width:63.360000pt;}
.w10{width:73.280000pt;}
.w19{width:74.240000pt;}
.w16{width:78.112000pt;}
.wd{width:81.792000pt;}
.w15{width:83.200000pt;}
.w28{width:90.240000pt;}
.wb{width:93.952000pt;}
.w27{width:99.232000pt;}
.w18{width:100.832000pt;}
.w26{width:103.040000pt;}
.w14{width:103.072000pt;}
.w25{width:103.392000pt;}
.w17{width:105.760000pt;}
.w1c{width:105.792000pt;}
.wc{width:105.920000pt;}
.we{width:108.320000pt;}
.w8{width:109.952000pt;}
.w1e{width:118.400000pt;}
.w1b{width:121.120000pt;}
.w1d{width:134.266667pt;}
.wf{width:136.666667pt;}
.w20{width:146.746667pt;}
.w21{width:152.186667pt;}
.w1f{width:160.666667pt;}
.w11{width:168.506667pt;}
.w1a{width:229.826667pt;}
.w22{width:257.786667pt;}
.w12{width:265.666667pt;}
.w24{width:273.626667pt;}
.w13{width:282.106667pt;}
.w9{width:282.946667pt;}
.wa{width:319.546667pt;}
.w3{width:321.186667pt;}
.w2a{width:542.333333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.x15{left:49.280000pt;}
.xd{left:51.200000pt;}
.xc{left:71.999988pt;}
.x29{left:95.552000pt;}
.x2e{left:103.712000pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.xf{left:161.786667pt;}
.x20{left:209.626667pt;}
.x16{left:218.426667pt;}
.x11{left:256.386667pt;}
.x1c{left:278.786667pt;}
.x23{left:300.066655pt;}
.x24{left:302.786655pt;}
.x25{left:310.786655pt;}
.x18{left:322.146667pt;}
.x21{left:357.026667pt;}
.x12{left:362.946667pt;}
.x2a{left:369.826667pt;}
.x28{left:377.506655pt;}
.x1d{left:400.546667pt;}
.x19{left:405.986667pt;}
.x8{left:428.573321pt;}
.x10{left:445.373333pt;}
.x31{left:452.573321pt;}
.x5{left:463.133333pt;}
.x2b{left:473.853333pt;}
.x17{left:484.733333pt;}
.x1e{left:506.973333pt;}
.x22{left:510.013333pt;}
.x13{left:554.333333pt;}
.x2c{left:577.693333pt;}
.x1a{left:591.133333pt;}
.x1f{left:642.053333pt;}
.x2f{left:646.693333pt;}
.x2d{left:677.573333pt;}
.x14{left:691.653333pt;}
.x1b{left:692.613333pt;}
.x26{left:701.093321pt;}
.x30{left:710.693333pt;}
.x27{left:722.533321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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