
    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_ffae8d04cc141503d1b2f64d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_19bf5c32dc31a1473dfdd645.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_0721913380a81efe9aee727e.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_ba4a5338d81614496418203a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_6eb16c106d2df57b68bbda1a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_812c32bf9a948c1618d99ad3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064453;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_8b0b16ee074517c538a8535d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c599313472fd85f6f6e25f4a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_8d2f77eaaa5ac49c312b19e4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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:-94.320000px;}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.360000px;}
.ls13{letter-spacing:-0.560400px;}
.ls21{letter-spacing:-0.201600px;}
.ls14{letter-spacing:-0.180000px;}
.ls1e{letter-spacing:-0.025920px;}
.ls12{letter-spacing:-0.008640px;}
.ls11{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.008640px;}
.ls1b{letter-spacing:0.017280px;}
.ls18{letter-spacing:0.025920px;}
.ls1{letter-spacing:0.028080px;}
.ls10{letter-spacing:0.034560px;}
.ls3{letter-spacing:0.037440px;}
.ls15{letter-spacing:0.092400px;}
.ls4{letter-spacing:0.107280px;}
.ls19{letter-spacing:0.158400px;}
.ls2{letter-spacing:0.175680px;}
.ls20{letter-spacing:0.257040px;}
.ls1c{letter-spacing:0.331200px;}
.ls1f{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.745920px;}
.ls6{letter-spacing:11.520000px;}
.ls1a{letter-spacing:12.240000px;}
.ls16{letter-spacing:15.120000px;}
.ls9{letter-spacing:20.160000px;}
.ls17{letter-spacing:33.840000px;}
.lsc{letter-spacing:86.400000px;}
.ls7{letter-spacing:131.760000px;}
.ls8{letter-spacing:131.940000px;}
.lsa{letter-spacing:146.160000px;}
.lsb{letter-spacing:146.880000px;}
.lsd{letter-spacing:172.080000px;}
.lse{letter-spacing:172.260000px;}
.ls0{letter-spacing:750.360000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.617280px;}
.ws3{word-spacing:-21.060000px;}
.ws4{word-spacing:-20.499600px;}
.wsb{word-spacing:-19.598400px;}
.ws5{word-spacing:-19.532400px;}
.ws7{word-spacing:-19.474560px;}
.wsa{word-spacing:-19.465920px;}
.wsc{word-spacing:-19.457280px;}
.ws6{word-spacing:-19.448640px;}
.ws2{word-spacing:-19.440000px;}
.wse{word-spacing:-19.414080px;}
.wsf{word-spacing:-19.238400px;}
.ws8{word-spacing:-18.000000px;}
.wsd{word-spacing:-12.780000px;}
.ws1{word-spacing:-0.077760px;}
.ws9{word-spacing:0.000000px;}
._6{margin-left:-2.254560px;}
._0{margin-left:-1.224000px;}
._1{width:1.788000px;}
._11{width:3.033600px;}
._24{width:4.276320px;}
._2a{width:5.566560px;}
._5{width:6.589920px;}
._2b{width:7.886880px;}
._25{width:9.797760px;}
._d{width:11.430720px;}
._e{width:12.577920px;}
._12{width:13.585440px;}
._4{width:15.085920px;}
._3{width:16.543200px;}
._14{width:18.351360px;}
._15{width:20.761920px;}
._1c{width:22.317120px;}
._8{width:23.483520px;}
._7{width:24.649920px;}
._13{width:25.972320px;}
._9{width:27.527040px;}
._a{width:28.693440px;}
._b{width:29.783040px;}
._c{width:30.868800px;}
._2c{width:32.388960px;}
._10{width:33.534720px;}
._f{width:34.738560px;}
._26{width:36.391680px;}
._29{width:38.123040px;}
._27{width:39.276960px;}
._28{width:40.504800px;}
._23{width:41.912160px;}
._19{width:43.390560px;}
._1a{width:44.789760px;}
._1b{width:45.956160px;}
._16{width:47.666880px;}
._1f{width:58.793280px;}
._18{width:59.875680px;}
._17{width:61.197120px;}
._2d{width:63.996480px;}
._2e{width:65.339520px;}
._21{width:67.417920px;}
._20{width:68.642400px;}
._22{width:70.592160px;}
._1e{width:141.912000px;}
._2{width:146.427360px;}
._1d{width:197.976960px;}
._2f{width:844.860000px;}
.fc5{color:transparent;}
.fc4{color:rgb(44,47,51);}
.fc3{color:rgb(6,69,173);}
.fc2{color:rgb(32,33,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(31,73,125);}
.fs3{font-size:51.120000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:4.320000px;}
.y33{bottom:4.500000px;}
.y1d{bottom:4.860000px;}
.y90{bottom:5.220000px;}
.y5c{bottom:7.545000px;}
.y2c{bottom:7.560000px;}
.y8a{bottom:7.740000px;}
.ycb{bottom:7.920000px;}
.y5f{bottom:8.085000px;}
.y62{bottom:8.100000px;}
.y9a{bottom:8.130000px;}
.y6c{bottom:8.145000px;}
.y9e{bottom:8.265000px;}
.y64{bottom:8.280000px;}
.y77{bottom:8.310000px;}
.yc2{bottom:8.460000px;}
.yc5{bottom:8.625000px;}
.ybf{bottom:9.900000px;}
.y58{bottom:20.505000px;}
.ybd{bottom:20.520000px;}
.y60{bottom:21.045000px;}
.y93{bottom:21.060000px;}
.y32{bottom:25.200000px;}
.y1a{bottom:26.820000px;}
.y8f{bottom:30.990000px;}
.y2b{bottom:33.300000px;}
.y5b{bottom:33.330000px;}
.y88{bottom:33.480000px;}
.y9c{bottom:33.825000px;}
.y94{bottom:33.840000px;}
.y5e{bottom:34.005000px;}
.y67{bottom:34.020000px;}
.y8d{bottom:34.050000px;}
.y29{bottom:34.200000px;}
.y31{bottom:45.900000px;}
.y56{bottom:46.290000px;}
.y28{bottom:56.700000px;}
.yd{bottom:58.140000px;}
.y89{bottom:59.220000px;}
.y5a{bottom:59.250000px;}
.y66{bottom:59.760000px;}
.y8e{bottom:59.790000px;}
.y30{bottom:66.600000px;}
.y57{bottom:72.030000px;}
.y27{bottom:79.020000px;}
.yc{bottom:82.296000px;}
.y59{bottom:84.990000px;}
.y2f{bottom:87.300000px;}
.yb{bottom:106.416000px;}
.y2e{bottom:108.000000px;}
.y2d{bottom:128.700000px;}
.ya{bottom:130.536000px;}
.y9{bottom:154.470000px;}
.y8{bottom:176.250000px;}
.y25{bottom:183.630000px;}
.y7{bottom:198.750000px;}
.y24{bottom:205.950000px;}
.y6{bottom:221.250000px;}
.y23{bottom:228.450000px;}
.y5d{bottom:243.225000px;}
.yc7{bottom:243.585000px;}
.y9d{bottom:246.465000px;}
.y22{bottom:250.950000px;}
.y39{bottom:266.790000px;}
.yc6{bottom:270.225000px;}
.y9b{bottom:273.105000px;}
.y21{bottom:273.270000px;}
.y83{bottom:288.750000px;}
.yb7{bottom:290.550000px;}
.y38{bottom:292.710000px;}
.y55{bottom:295.605000px;}
.y20{bottom:295.770000px;}
.yc4{bottom:296.685000px;}
.y82{bottom:314.490000px;}
.yb6{bottom:316.290000px;}
.y1f{bottom:318.090000px;}
.y37{bottom:318.450000px;}
.yc3{bottom:324.225000px;}
.y99{bottom:325.485000px;}
.y81{bottom:340.275000px;}
.y36{bottom:344.235000px;}
.yc1{bottom:351.075000px;}
.y98{bottom:351.975000px;}
.yb5{bottom:357.195000px;}
.y80{bottom:366.195000px;}
.y35{bottom:369.435000px;}
.yb4{bottom:375.555000px;}
.yc0{bottom:378.255000px;}
.y97{bottom:378.435000px;}
.y7f{bottom:391.935000px;}
.y34{bottom:395.895000px;}
.yb3{bottom:402.015000px;}
.ybe{bottom:404.715000px;}
.y96{bottom:405.075000px;}
.y54{bottom:407.055000px;}
.y1e{bottom:413.535000px;}
.y7e{bottom:417.675000px;}
.yb2{bottom:428.655000px;}
.y95{bottom:431.535000px;}
.y53{bottom:432.975000px;}
.ybb{bottom:434.595000px;}
.y7d{bottom:443.415000px;}
.yd6{bottom:454.935000px;}
.yb1{bottom:455.115000px;}
.y92{bottom:458.175000px;}
.y52{bottom:458.715000px;}
.y7c{bottom:469.335000px;}
.yd5{bottom:480.675000px;}
.yb0{bottom:481.575000px;}
.y51{bottom:484.455000px;}
.ybc{bottom:486.975000px;}
.y7b{bottom:495.075000px;}
.yd4{bottom:506.955000px;}
.yaf{bottom:508.215000px;}
.y50{bottom:510.195000px;}
.y91{bottom:510.375000px;}
.y7a{bottom:513.435000px;}
.yd3{bottom:532.875000px;}
.yae{bottom:534.675000px;}
.yba{bottom:536.115000px;}
.y4f{bottom:536.655000px;}
.y79{bottom:540.075000px;}
.yd2{bottom:558.615000px;}
.y2a{bottom:559.155000px;}
.yb9{bottom:561.855000px;}
.y4e{bottom:562.395000px;}
.y78{bottom:566.535000px;}
.yad{bottom:583.815000px;}
.yd1{bottom:584.355000px;}
.yb8{bottom:587.595000px;}
.y4d{bottom:588.135000px;}
.y8c{bottom:588.495000px;}
.y76{bottom:592.995000px;}
.yac{bottom:609.765000px;}
.yd0{bottom:610.125000px;}
.y4c{bottom:613.905000px;}
.y75{bottom:619.665000px;}
.y26{bottom:628.665000px;}
.yab{bottom:635.505000px;}
.ycf{bottom:636.045000px;}
.y4b{bottom:639.825000px;}
.y74{bottom:646.125000px;}
.yaa{bottom:661.785000px;}
.y4a{bottom:665.565000px;}
.y8b{bottom:666.645000px;}
.y73{bottom:672.765000px;}
.ya9{bottom:687.525000px;}
.y49{bottom:691.305000px;}
.y72{bottom:699.225000px;}
.ya8{bottom:713.445000px;}
.y48{bottom:717.225000px;}
.y71{bottom:725.865000px;}
.y1c{bottom:726.225000px;}
.ya7{bottom:739.185000px;}
.y47{bottom:742.965000px;}
.y87{bottom:744.765000px;}
.y70{bottom:752.325000px;}
.y19{bottom:758.985000px;}
.ya6{bottom:764.925000px;}
.y46{bottom:768.705000px;}
.y6f{bottom:778.785000px;}
.ya5{bottom:790.665000px;}
.y45{bottom:794.445000px;}
.y6e{bottom:805.425000px;}
.ya4{bottom:816.585000px;}
.y18{bottom:818.025000px;}
.y44{bottom:820.365000px;}
.y86{bottom:830.445000px;}
.y6d{bottom:831.885000px;}
.y17{bottom:842.145000px;}
.ya3{bottom:842.325000px;}
.y43{bottom:846.105000px;}
.y85{bottom:856.365000px;}
.y6b{bottom:858.525000px;}
.y16{bottom:865.950000px;}
.ya2{bottom:868.110000px;}
.y42{bottom:871.890000px;}
.y6a{bottom:885.030000px;}
.y15{bottom:890.430000px;}
.ya1{bottom:893.850000px;}
.y84{bottom:897.090000px;}
.y41{bottom:897.630000px;}
.y69{bottom:911.490000px;}
.ya0{bottom:912.390000px;}
.y14{bottom:914.190000px;}
.yce{bottom:919.770000px;}
.y40{bottom:923.550000px;}
.y68{bottom:938.130000px;}
.y13{bottom:938.850000px;}
.ycd{bottom:945.510000px;}
.y3f{bottom:949.290000px;}
.y12{bottom:962.970000px;}
.y65{bottom:964.590000px;}
.ycc{bottom:971.250000px;}
.y3e{bottom:975.030000px;}
.yca{bottom:989.610000px;}
.y3d{bottom:1000.770000px;}
.y11{bottom:1010.310000px;}
.yc9{bottom:1016.610000px;}
.y9f{bottom:1016.970000px;}
.y3c{bottom:1026.690000px;}
.y10{bottom:1032.810000px;}
.y63{bottom:1042.710000px;}
.yc8{bottom:1043.430000px;}
.yd7{bottom:1051.890000px;}
.y3b{bottom:1052.430000px;}
.yf{bottom:1055.310000px;}
.y61{bottom:1069.350000px;}
.ye{bottom:1077.630000px;}
.y3a{bottom:1078.170000px;}
.y5{bottom:1100.850000px;}
.y4{bottom:1124.250000px;}
.y3{bottom:1147.140000px;}
.y2{bottom:1170.900000px;}
.y1{bottom:1193.220000px;}
.h16{height:25.725000px;}
.h1a{height:25.740000px;}
.h22{height:25.761000px;}
.h19{height:25.762500px;}
.h17{height:25.905000px;}
.h1b{height:25.920000px;}
.h1c{height:25.950000px;}
.h28{height:26.085000px;}
.h26{height:26.121000px;}
.h29{height:26.265000px;}
.h25{height:26.445000px;}
.h27{height:26.805000px;}
.h24{height:29.145000px;}
.hc{height:32.040000px;}
.h1f{height:45.054492px;}
.h21{height:51.465000px;}
.h15{height:51.645000px;}
.hb{height:54.000000px;}
.h12{height:61.101562px;}
.h9{height:67.242656px;}
.h13{height:68.533594px;}
.h10{height:69.510000px;}
.h2{height:72.562500px;}
.he{height:76.279219px;}
.h8{height:76.317188px;}
.h18{height:77.385000px;}
.h1d{height:77.400000px;}
.h1e{height:77.430000px;}
.h23{height:78.105000px;}
.h3{height:78.367500px;}
.h7{height:80.949375px;}
.h5{height:81.101250px;}
.ha{height:82.635820px;}
.h6{height:82.676953px;}
.h4{height:84.898125px;}
.h20{height:88.677188px;}
.hf{height:96.660000px;}
.h14{height:103.161000px;}
.h11{height:144.885000px;}
.hd{height:344.730000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:39.274500px;}
.w11{width:117.036000px;}
.w5{width:141.660000px;}
.w7{width:141.681000px;}
.w6{width:141.696000px;}
.wa{width:148.176000px;}
.wb{width:150.465000px;}
.wc{width:156.255000px;}
.w12{width:207.015000px;}
.w9{width:211.879500px;}
.w2{width:237.439500px;}
.w4{width:239.113500px;}
.we{width:286.455000px;}
.wd{width:318.079500px;}
.wf{width:322.039500px;}
.w10{width:324.975000px;}
.w3{width:404.895000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:8.100000px;}
.x17{left:13.129500px;}
.x3d{left:14.578500px;}
.x26{left:24.690000px;}
.x13{left:29.340000px;}
.x19{left:31.123500px;}
.x12{left:33.283500px;}
.x24{left:34.740000px;}
.x18{left:35.983500px;}
.x1a{left:38.143500px;}
.x28{left:41.434500px;}
.xe{left:43.723500px;}
.x33{left:45.930000px;}
.x37{left:49.843500px;}
.x4b{left:53.490000px;}
.x3e{left:56.143500px;}
.x3c{left:57.223500px;}
.x36{left:59.023500px;}
.x34{left:62.803500px;}
.x35{left:65.503500px;}
.x21{left:66.634500px;}
.x15{left:67.843500px;}
.x23{left:69.120000px;}
.x2a{left:70.560000px;}
.x29{left:73.080000px;}
.x47{left:74.325000px;}
.x2b{left:75.600000px;}
.x1b{left:77.023500px;}
.xf{left:78.643500px;}
.x16{left:79.903500px;}
.x3b{left:81.180000px;}
.x2c{left:82.800000px;}
.x1{left:84.960000px;}
.x38{left:86.040000px;}
.x39{left:87.285000px;}
.x3a{left:90.210000px;}
.x20{left:93.780000px;}
.x4c{left:98.265000px;}
.x2{left:103.356000px;}
.x4{left:105.876000px;}
.x4a{left:108.210000px;}
.x48{left:110.550000px;}
.x1c{left:111.996000px;}
.x9{left:113.616000px;}
.x49{left:115.410000px;}
.x2f{left:117.406500px;}
.x6{left:119.376000px;}
.xd{left:125.326500px;}
.x1f{left:128.916000px;}
.x43{left:138.270000px;}
.x11{left:144.210000px;}
.x42{left:147.990000px;}
.x41{left:150.330000px;}
.x2e{left:153.030000px;}
.xb{left:154.470000px;}
.x7{left:225.210000px;}
.xa{left:258.510000px;}
.x44{left:268.050000px;}
.x22{left:317.235000px;}
.x8{left:321.915000px;}
.x30{left:330.015000px;}
.x4e{left:337.035000px;}
.x10{left:362.775000px;}
.x5{left:386.895000px;}
.x3f{left:408.855000px;}
.x40{left:436.215000px;}
.x45{left:440.175000px;}
.xc{left:457.095000px;}
.x25{left:459.615000px;}
.x4d{left:463.395000px;}
.x31{left:478.920000px;}
.x2d{left:484.665000px;}
.x46{left:558.120000px;}
.x27{left:602.220000px;}
.x32{left:630.120000px;}
.x1e{left:726.810000px;}
.x3{left:778.650000px;}
.x1d{left:807.990000px;}
@media print{
.v1{vertical-align:-83.840000pt;}
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.986667pt;}
.ls13{letter-spacing:-0.498133pt;}
.ls21{letter-spacing:-0.179200pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls1e{letter-spacing:-0.023040pt;}
.ls12{letter-spacing:-0.007680pt;}
.ls11{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.007680pt;}
.ls1b{letter-spacing:0.015360pt;}
.ls18{letter-spacing:0.023040pt;}
.ls1{letter-spacing:0.024960pt;}
.ls10{letter-spacing:0.030720pt;}
.ls3{letter-spacing:0.033280pt;}
.ls15{letter-spacing:0.082133pt;}
.ls4{letter-spacing:0.095360pt;}
.ls19{letter-spacing:0.140800pt;}
.ls2{letter-spacing:0.156160pt;}
.ls20{letter-spacing:0.228480pt;}
.ls1c{letter-spacing:0.294400pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.663040pt;}
.ls6{letter-spacing:10.240000pt;}
.ls1a{letter-spacing:10.880000pt;}
.ls16{letter-spacing:13.440000pt;}
.ls9{letter-spacing:17.920000pt;}
.ls17{letter-spacing:30.080000pt;}
.lsc{letter-spacing:76.800000pt;}
.ls7{letter-spacing:117.120000pt;}
.ls8{letter-spacing:117.280000pt;}
.lsa{letter-spacing:129.920000pt;}
.lsb{letter-spacing:130.560000pt;}
.lsd{letter-spacing:152.960000pt;}
.lse{letter-spacing:153.120000pt;}
.ls0{letter-spacing:666.986667pt;}
.ws0{word-spacing:-19.215360pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.221867pt;}
.wsb{word-spacing:-17.420800pt;}
.ws5{word-spacing:-17.362133pt;}
.ws7{word-spacing:-17.310720pt;}
.wsa{word-spacing:-17.303040pt;}
.wsc{word-spacing:-17.295360pt;}
.ws6{word-spacing:-17.287680pt;}
.ws2{word-spacing:-17.280000pt;}
.wse{word-spacing:-17.256960pt;}
.wsf{word-spacing:-17.100800pt;}
.ws8{word-spacing:-16.000000pt;}
.wsd{word-spacing:-11.360000pt;}
.ws1{word-spacing:-0.069120pt;}
.ws9{word-spacing:0.000000pt;}
._6{margin-left:-2.004053pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.589333pt;}
._11{width:2.696533pt;}
._24{width:3.801173pt;}
._2a{width:4.948053pt;}
._5{width:5.857707pt;}
._2b{width:7.010560pt;}
._25{width:8.709120pt;}
._d{width:10.160640pt;}
._e{width:11.180373pt;}
._12{width:12.075947pt;}
._4{width:13.409707pt;}
._3{width:14.705067pt;}
._14{width:16.312320pt;}
._15{width:18.455040pt;}
._1c{width:19.837440pt;}
._8{width:20.874240pt;}
._7{width:21.911040pt;}
._13{width:23.086507pt;}
._9{width:24.468480pt;}
._a{width:25.505280pt;}
._b{width:26.473813pt;}
._c{width:27.438933pt;}
._2c{width:28.790187pt;}
._10{width:29.808640pt;}
._f{width:30.878720pt;}
._26{width:32.348160pt;}
._29{width:33.887147pt;}
._27{width:34.912853pt;}
._28{width:36.004267pt;}
._23{width:37.255253pt;}
._19{width:38.569387pt;}
._1a{width:39.813120pt;}
._1b{width:40.849920pt;}
._16{width:42.370560pt;}
._1f{width:52.260693pt;}
._18{width:53.222827pt;}
._17{width:54.397440pt;}
._2d{width:56.885760pt;}
._2e{width:58.079573pt;}
._21{width:59.927040pt;}
._20{width:61.015467pt;}
._22{width:62.748587pt;}
._1e{width:126.144000pt;}
._2{width:130.157653pt;}
._1d{width:175.979520pt;}
._2f{width:750.986667pt;}
.fs3{font-size:45.440000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:3.840000pt;}
.y33{bottom:4.000000pt;}
.y1d{bottom:4.320000pt;}
.y90{bottom:4.640000pt;}
.y5c{bottom:6.706667pt;}
.y2c{bottom:6.720000pt;}
.y8a{bottom:6.880000pt;}
.ycb{bottom:7.040000pt;}
.y5f{bottom:7.186667pt;}
.y62{bottom:7.200000pt;}
.y9a{bottom:7.226667pt;}
.y6c{bottom:7.240000pt;}
.y9e{bottom:7.346667pt;}
.y64{bottom:7.360000pt;}
.y77{bottom:7.386667pt;}
.yc2{bottom:7.520000pt;}
.yc5{bottom:7.666667pt;}
.ybf{bottom:8.800000pt;}
.y58{bottom:18.226667pt;}
.ybd{bottom:18.240000pt;}
.y60{bottom:18.706667pt;}
.y93{bottom:18.720000pt;}
.y32{bottom:22.400000pt;}
.y1a{bottom:23.840000pt;}
.y8f{bottom:27.546667pt;}
.y2b{bottom:29.600000pt;}
.y5b{bottom:29.626667pt;}
.y88{bottom:29.760000pt;}
.y9c{bottom:30.066667pt;}
.y94{bottom:30.080000pt;}
.y5e{bottom:30.226667pt;}
.y67{bottom:30.240000pt;}
.y8d{bottom:30.266667pt;}
.y29{bottom:30.400000pt;}
.y31{bottom:40.800000pt;}
.y56{bottom:41.146667pt;}
.y28{bottom:50.400000pt;}
.yd{bottom:51.680000pt;}
.y89{bottom:52.640000pt;}
.y5a{bottom:52.666667pt;}
.y66{bottom:53.120000pt;}
.y8e{bottom:53.146667pt;}
.y30{bottom:59.200000pt;}
.y57{bottom:64.026667pt;}
.y27{bottom:70.240000pt;}
.yc{bottom:73.152000pt;}
.y59{bottom:75.546667pt;}
.y2f{bottom:77.600000pt;}
.yb{bottom:94.592000pt;}
.y2e{bottom:96.000000pt;}
.y2d{bottom:114.400000pt;}
.ya{bottom:116.032000pt;}
.y9{bottom:137.306667pt;}
.y8{bottom:156.666667pt;}
.y25{bottom:163.226667pt;}
.y7{bottom:176.666667pt;}
.y24{bottom:183.066667pt;}
.y6{bottom:196.666667pt;}
.y23{bottom:203.066667pt;}
.y5d{bottom:216.200000pt;}
.yc7{bottom:216.520000pt;}
.y9d{bottom:219.080000pt;}
.y22{bottom:223.066667pt;}
.y39{bottom:237.146667pt;}
.yc6{bottom:240.200000pt;}
.y9b{bottom:242.760000pt;}
.y21{bottom:242.906667pt;}
.y83{bottom:256.666667pt;}
.yb7{bottom:258.266667pt;}
.y38{bottom:260.186667pt;}
.y55{bottom:262.760000pt;}
.y20{bottom:262.906667pt;}
.yc4{bottom:263.720000pt;}
.y82{bottom:279.546667pt;}
.yb6{bottom:281.146667pt;}
.y1f{bottom:282.746667pt;}
.y37{bottom:283.066667pt;}
.yc3{bottom:288.200000pt;}
.y99{bottom:289.320000pt;}
.y81{bottom:302.466667pt;}
.y36{bottom:305.986667pt;}
.yc1{bottom:312.066667pt;}
.y98{bottom:312.866667pt;}
.yb5{bottom:317.506667pt;}
.y80{bottom:325.506667pt;}
.y35{bottom:328.386667pt;}
.yb4{bottom:333.826667pt;}
.yc0{bottom:336.226667pt;}
.y97{bottom:336.386667pt;}
.y7f{bottom:348.386667pt;}
.y34{bottom:351.906667pt;}
.yb3{bottom:357.346667pt;}
.ybe{bottom:359.746667pt;}
.y96{bottom:360.066667pt;}
.y54{bottom:361.826667pt;}
.y1e{bottom:367.586667pt;}
.y7e{bottom:371.266667pt;}
.yb2{bottom:381.026667pt;}
.y95{bottom:383.586667pt;}
.y53{bottom:384.866667pt;}
.ybb{bottom:386.306667pt;}
.y7d{bottom:394.146667pt;}
.yd6{bottom:404.386667pt;}
.yb1{bottom:404.546667pt;}
.y92{bottom:407.266667pt;}
.y52{bottom:407.746667pt;}
.y7c{bottom:417.186667pt;}
.yd5{bottom:427.266667pt;}
.yb0{bottom:428.066667pt;}
.y51{bottom:430.626667pt;}
.ybc{bottom:432.866667pt;}
.y7b{bottom:440.066667pt;}
.yd4{bottom:450.626667pt;}
.yaf{bottom:451.746667pt;}
.y50{bottom:453.506667pt;}
.y91{bottom:453.666667pt;}
.y7a{bottom:456.386667pt;}
.yd3{bottom:473.666667pt;}
.yae{bottom:475.266667pt;}
.yba{bottom:476.546667pt;}
.y4f{bottom:477.026667pt;}
.y79{bottom:480.066667pt;}
.yd2{bottom:496.546667pt;}
.y2a{bottom:497.026667pt;}
.yb9{bottom:499.426667pt;}
.y4e{bottom:499.906667pt;}
.y78{bottom:503.586667pt;}
.yad{bottom:518.946667pt;}
.yd1{bottom:519.426667pt;}
.yb8{bottom:522.306667pt;}
.y4d{bottom:522.786667pt;}
.y8c{bottom:523.106667pt;}
.y76{bottom:527.106667pt;}
.yac{bottom:542.013333pt;}
.yd0{bottom:542.333333pt;}
.y4c{bottom:545.693333pt;}
.y75{bottom:550.813333pt;}
.y26{bottom:558.813333pt;}
.yab{bottom:564.893333pt;}
.ycf{bottom:565.373333pt;}
.y4b{bottom:568.733333pt;}
.y74{bottom:574.333333pt;}
.yaa{bottom:588.253333pt;}
.y4a{bottom:591.613333pt;}
.y8b{bottom:592.573333pt;}
.y73{bottom:598.013333pt;}
.ya9{bottom:611.133333pt;}
.y49{bottom:614.493333pt;}
.y72{bottom:621.533333pt;}
.ya8{bottom:634.173333pt;}
.y48{bottom:637.533333pt;}
.y71{bottom:645.213333pt;}
.y1c{bottom:645.533333pt;}
.ya7{bottom:657.053333pt;}
.y47{bottom:660.413333pt;}
.y87{bottom:662.013333pt;}
.y70{bottom:668.733333pt;}
.y19{bottom:674.653333pt;}
.ya6{bottom:679.933333pt;}
.y46{bottom:683.293333pt;}
.y6f{bottom:692.253333pt;}
.ya5{bottom:702.813333pt;}
.y45{bottom:706.173333pt;}
.y6e{bottom:715.933333pt;}
.ya4{bottom:725.853333pt;}
.y18{bottom:727.133333pt;}
.y44{bottom:729.213333pt;}
.y86{bottom:738.173333pt;}
.y6d{bottom:739.453333pt;}
.y17{bottom:748.573333pt;}
.ya3{bottom:748.733333pt;}
.y43{bottom:752.093333pt;}
.y85{bottom:761.213333pt;}
.y6b{bottom:763.133333pt;}
.y16{bottom:769.733333pt;}
.ya2{bottom:771.653333pt;}
.y42{bottom:775.013333pt;}
.y6a{bottom:786.693333pt;}
.y15{bottom:791.493333pt;}
.ya1{bottom:794.533333pt;}
.y84{bottom:797.413333pt;}
.y41{bottom:797.893333pt;}
.y69{bottom:810.213333pt;}
.ya0{bottom:811.013333pt;}
.y14{bottom:812.613333pt;}
.yce{bottom:817.573333pt;}
.y40{bottom:820.933333pt;}
.y68{bottom:833.893333pt;}
.y13{bottom:834.533333pt;}
.ycd{bottom:840.453333pt;}
.y3f{bottom:843.813333pt;}
.y12{bottom:855.973333pt;}
.y65{bottom:857.413333pt;}
.ycc{bottom:863.333333pt;}
.y3e{bottom:866.693333pt;}
.yca{bottom:879.653333pt;}
.y3d{bottom:889.573333pt;}
.y11{bottom:898.053333pt;}
.yc9{bottom:903.653333pt;}
.y9f{bottom:903.973333pt;}
.y3c{bottom:912.613333pt;}
.y10{bottom:918.053333pt;}
.y63{bottom:926.853333pt;}
.yc8{bottom:927.493333pt;}
.yd7{bottom:935.013333pt;}
.y3b{bottom:935.493333pt;}
.yf{bottom:938.053333pt;}
.y61{bottom:950.533333pt;}
.ye{bottom:957.893333pt;}
.y3a{bottom:958.373333pt;}
.y5{bottom:978.533333pt;}
.y4{bottom:999.333333pt;}
.y3{bottom:1019.680000pt;}
.y2{bottom:1040.800000pt;}
.y1{bottom:1060.640000pt;}
.h16{height:22.866667pt;}
.h1a{height:22.880000pt;}
.h22{height:22.898667pt;}
.h19{height:22.900000pt;}
.h17{height:23.026667pt;}
.h1b{height:23.040000pt;}
.h1c{height:23.066667pt;}
.h28{height:23.186667pt;}
.h26{height:23.218667pt;}
.h29{height:23.346667pt;}
.h25{height:23.506667pt;}
.h27{height:23.826667pt;}
.h24{height:25.906667pt;}
.hc{height:28.480000pt;}
.h1f{height:40.048437pt;}
.h21{height:45.746667pt;}
.h15{height:45.906667pt;}
.hb{height:48.000000pt;}
.h12{height:54.312500pt;}
.h9{height:59.771250pt;}
.h13{height:60.918750pt;}
.h10{height:61.786667pt;}
.h2{height:64.500000pt;}
.he{height:67.803750pt;}
.h8{height:67.837500pt;}
.h18{height:68.786667pt;}
.h1d{height:68.800000pt;}
.h1e{height:68.826667pt;}
.h23{height:69.426667pt;}
.h3{height:69.660000pt;}
.h7{height:71.955000pt;}
.h5{height:72.090000pt;}
.ha{height:73.454062pt;}
.h6{height:73.490625pt;}
.h4{height:75.465000pt;}
.h20{height:78.824167pt;}
.hf{height:85.920000pt;}
.h14{height:91.698667pt;}
.h11{height:128.786667pt;}
.hd{height:306.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:34.910667pt;}
.w11{width:104.032000pt;}
.w5{width:125.920000pt;}
.w7{width:125.938667pt;}
.w6{width:125.952000pt;}
.wa{width:131.712000pt;}
.wb{width:133.746667pt;}
.wc{width:138.893333pt;}
.w12{width:184.013333pt;}
.w9{width:188.337333pt;}
.w2{width:211.057333pt;}
.w4{width:212.545333pt;}
.we{width:254.626667pt;}
.wd{width:282.737333pt;}
.wf{width:286.257333pt;}
.w10{width:288.866667pt;}
.w3{width:359.906667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:7.200000pt;}
.x17{left:11.670667pt;}
.x3d{left:12.958667pt;}
.x26{left:21.946667pt;}
.x13{left:26.080000pt;}
.x19{left:27.665333pt;}
.x12{left:29.585333pt;}
.x24{left:30.880000pt;}
.x18{left:31.985333pt;}
.x1a{left:33.905333pt;}
.x28{left:36.830667pt;}
.xe{left:38.865333pt;}
.x33{left:40.826667pt;}
.x37{left:44.305333pt;}
.x4b{left:47.546667pt;}
.x3e{left:49.905333pt;}
.x3c{left:50.865333pt;}
.x36{left:52.465333pt;}
.x34{left:55.825333pt;}
.x35{left:58.225333pt;}
.x21{left:59.230667pt;}
.x15{left:60.305333pt;}
.x23{left:61.440000pt;}
.x2a{left:62.720000pt;}
.x29{left:64.960000pt;}
.x47{left:66.066667pt;}
.x2b{left:67.200000pt;}
.x1b{left:68.465333pt;}
.xf{left:69.905333pt;}
.x16{left:71.025333pt;}
.x3b{left:72.160000pt;}
.x2c{left:73.600000pt;}
.x1{left:75.520000pt;}
.x38{left:76.480000pt;}
.x39{left:77.586667pt;}
.x3a{left:80.186667pt;}
.x20{left:83.360000pt;}
.x4c{left:87.346667pt;}
.x2{left:91.872000pt;}
.x4{left:94.112000pt;}
.x4a{left:96.186667pt;}
.x48{left:98.266667pt;}
.x1c{left:99.552000pt;}
.x9{left:100.992000pt;}
.x49{left:102.586667pt;}
.x2f{left:104.361333pt;}
.x6{left:106.112000pt;}
.xd{left:111.401333pt;}
.x1f{left:114.592000pt;}
.x43{left:122.906667pt;}
.x11{left:128.186667pt;}
.x42{left:131.546667pt;}
.x41{left:133.626667pt;}
.x2e{left:136.026667pt;}
.xb{left:137.306667pt;}
.x7{left:200.186667pt;}
.xa{left:229.786667pt;}
.x44{left:238.266667pt;}
.x22{left:281.986667pt;}
.x8{left:286.146667pt;}
.x30{left:293.346667pt;}
.x4e{left:299.586667pt;}
.x10{left:322.466667pt;}
.x5{left:343.906667pt;}
.x3f{left:363.426667pt;}
.x40{left:387.746667pt;}
.x45{left:391.266667pt;}
.xc{left:406.306667pt;}
.x25{left:408.546667pt;}
.x4d{left:411.906667pt;}
.x31{left:425.706667pt;}
.x2d{left:430.813333pt;}
.x46{left:496.106667pt;}
.x27{left:535.306667pt;}
.x32{left:560.106667pt;}
.x1e{left:646.053333pt;}
.x3{left:692.133333pt;}
.x1d{left:718.213333pt;}
}




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