
    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_7c3a12f3ad61f1f1d294cfb0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_98772db9a29860a245568036.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_09fb2a8f4dce9a30e74529f0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.128418;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_fad176619992ef280014517a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128418;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f73521ace3079140535e95a5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908203;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_4da1b70e626cfa21dc508e00.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;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);}
.v4{vertical-align:-23.760000px;}
.v5{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v6{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.269400px;}
.ls10{letter-spacing:-0.206400px;}
.ls17{letter-spacing:-0.181200px;}
.ls1d{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls19{letter-spacing:0.135600px;}
.ls15{letter-spacing:0.156000px;}
.lsf{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.223800px;}
.ls7{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.311040px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.365760px;}
.ls1a{letter-spacing:0.450600px;}
.ls1c{letter-spacing:0.480000px;}
.ls11{letter-spacing:0.900000px;}
.ls12{letter-spacing:3.060000px;}
.lsc{letter-spacing:6.660000px;}
.lse{letter-spacing:12.420000px;}
.ls13{letter-spacing:13.140000px;}
.ls16{letter-spacing:18.900000px;}
.ls5{letter-spacing:37.386720px;}
.ls4{letter-spacing:41.868000px;}
.lsa{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-59.760000px;}
.ws6{word-spacing:-54.000000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.733600px;}
.ws7{word-spacing:-13.500000px;}
.ws10{word-spacing:-12.510600px;}
.wsd{word-spacing:-12.420000px;}
.wsf{word-spacing:-12.283800px;}
.ws2{word-spacing:-12.060000px;}
.wsc{word-spacing:-11.878800px;}
.wse{word-spacing:-11.790600px;}
.ws3{word-spacing:-10.440000px;}
.wsa{word-spacing:-9.732960px;}
.ws4{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._3{margin-left:-1.267200px;}
._0{width:1.135440px;}
._6{width:2.428800px;}
._a{width:4.227600px;}
._9{width:5.677200px;}
._c{width:7.529760px;}
._b{width:8.605440px;}
._e{width:9.669120px;}
._f{width:10.790640px;}
._1b{width:11.832480px;}
._16{width:12.848400px;}
._26{width:13.866960px;}
._15{width:16.015680px;}
._20{width:17.190240px;}
._1f{width:18.240240px;}
._1e{width:19.362240px;}
._17{width:20.497680px;}
._19{width:22.111200px;}
._18{width:23.605200px;}
._1c{width:24.898080px;}
._1a{width:26.842320px;}
._13{width:28.620000px;}
._12{width:29.862000px;}
._d{width:31.868640px;}
._14{width:33.296400px;}
._24{width:34.520400px;}
._25{width:35.557200px;}
._21{width:36.826560px;}
._10{width:38.232000px;}
._11{width:39.420000px;}
._27{width:40.746960px;}
._22{width:42.071040px;}
._23{width:44.043120px;}
._28{width:49.062960px;}
._5{width:58.967040px;}
._1d{width:59.969040px;}
._4{width:61.044960px;}
._7{width:62.346720px;}
._2a{width:65.556720px;}
._29{width:66.572640px;}
._2{width:131.442960px;}
._1{width:342.981120px;}
._8{width:1040.880000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:0.360000px;}
.ydc{bottom:2.340000px;}
.y6{bottom:2.520000px;}
.y40{bottom:2.880000px;}
.y18{bottom:3.240000px;}
.y39{bottom:5.940000px;}
.y78{bottom:6.840000px;}
.y7d{bottom:7.020000px;}
.y4{bottom:8.316000px;}
.y9{bottom:14.040000px;}
.ydb{bottom:14.400000px;}
.yd3{bottom:16.200000px;}
.y5{bottom:16.236000px;}
.y3f{bottom:18.540000px;}
.y37{bottom:19.440000px;}
.yda{bottom:26.460000px;}
.yd2{bottom:30.060000px;}
.y2e{bottom:32.220000px;}
.y3e{bottom:34.020000px;}
.y7{bottom:35.460000px;}
.y36{bottom:35.820000px;}
.yd9{bottom:38.700000px;}
.yd1{bottom:43.920000px;}
.y2d{bottom:49.500000px;}
.yd8{bottom:50.760000px;}
.y35{bottom:51.300000px;}
.y3{bottom:58.140000px;}
.yd7{bottom:62.820000px;}
.y3d{bottom:64.980000px;}
.y2c{bottom:66.780000px;}
.y34{bottom:66.960000px;}
.y3c{bottom:80.640000px;}
.y33{bottom:82.440000px;}
.y2b{bottom:84.060000px;}
.y3b{bottom:96.120000px;}
.y32{bottom:97.920000px;}
.y2a{bottom:101.385000px;}
.y41{bottom:106.245000px;}
.y31{bottom:113.430000px;}
.yc0{bottom:115.416000px;}
.y29{bottom:118.665000px;}
.y83{bottom:124.776000px;}
.y47{bottom:125.136000px;}
.y30{bottom:129.090000px;}
.ybf{bottom:132.696000px;}
.y28{bottom:135.765000px;}
.y46{bottom:140.616000px;}
.ycd{bottom:141.156000px;}
.y82{bottom:142.056000px;}
.ybe{bottom:149.796000px;}
.y27{bottom:153.045000px;}
.y45{bottom:156.270000px;}
.ycc{bottom:158.430000px;}
.y81{bottom:159.330000px;}
.ybd{bottom:167.070000px;}
.yce{bottom:169.770000px;}
.y26{bottom:170.325000px;}
.y44{bottom:171.750000px;}
.ycb{bottom:175.710000px;}
.y80{bottom:176.610000px;}
.ybc{bottom:184.350000px;}
.yd5{bottom:184.530000px;}
.y43{bottom:187.590000px;}
.y25{bottom:187.605000px;}
.yca{bottom:192.990000px;}
.y7f{bottom:193.890000px;}
.ybb{bottom:201.630000px;}
.y42{bottom:204.510000px;}
.y24{bottom:204.885000px;}
.yc9{bottom:210.090000px;}
.y7e{bottom:210.270000px;}
.y19{bottom:217.830000px;}
.yba{bottom:218.910000px;}
.y23{bottom:221.985000px;}
.y7c{bottom:222.330000px;}
.yc8{bottom:227.370000px;}
.yb9{bottom:236.190000px;}
.y7b{bottom:236.910000px;}
.y22{bottom:239.265000px;}
.yc7{bottom:244.650000px;}
.y7a{bottom:251.490000px;}
.yb8{bottom:253.290000px;}
.y21{bottom:256.545000px;}
.yd4{bottom:257.790000px;}
.yc6{bottom:261.930000px;}
.y79{bottom:266.070000px;}
.yb7{bottom:270.570000px;}
.yd0{bottom:272.370000px;}
.y20{bottom:273.825000px;}
.yc5{bottom:279.210000px;}
.y77{bottom:280.650000px;}
.yb6{bottom:287.850000px;}
.y1f{bottom:291.105000px;}
.y76{bottom:295.050000px;}
.yc4{bottom:296.490000px;}
.yb5{bottom:305.130000px;}
.y1e{bottom:308.385000px;}
.y75{bottom:309.630000px;}
.yc3{bottom:313.590000px;}
.yb4{bottom:322.455000px;}
.y1d{bottom:325.485000px;}
.y74{bottom:326.415000px;}
.ycf{bottom:328.395000px;}
.yc2{bottom:330.915000px;}
.y73{bottom:337.215000px;}
.y3a{bottom:337.395000px;}
.yb3{bottom:339.735000px;}
.y1c{bottom:342.765000px;}
.yc1{bottom:348.195000px;}
.y72{bottom:350.895000px;}
.yb2{bottom:356.835000px;}
.y1b{bottom:360.075000px;}
.y71{bottom:365.475000px;}
.yb1{bottom:374.115000px;}
.y1a{bottom:377.355000px;}
.y70{bottom:382.755000px;}
.yb0{bottom:391.395000px;}
.y6f{bottom:399.855000px;}
.yaf{bottom:408.675000px;}
.y6e{bottom:417.135000px;}
.yae{bottom:425.955000px;}
.y6d{bottom:434.415000px;}
.yad{bottom:443.055000px;}
.y38{bottom:446.835000px;}
.y6c{bottom:451.695000px;}
.yac{bottom:460.335000px;}
.y2f{bottom:467.535000px;}
.y6b{bottom:468.975000px;}
.yab{bottom:477.615000px;}
.y6a{bottom:486.255000px;}
.yaa{bottom:494.895000px;}
.y69{bottom:503.355000px;}
.ya9{bottom:512.175000px;}
.y68{bottom:520.635000px;}
.ya8{bottom:529.455000px;}
.y67{bottom:537.915000px;}
.ya7{bottom:546.555000px;}
.y66{bottom:555.195000px;}
.ya6{bottom:563.835000px;}
.y65{bottom:572.505000px;}
.ya5{bottom:581.145000px;}
.y64{bottom:589.785000px;}
.ya4{bottom:597.705000px;}
.y63{bottom:606.885000px;}
.y17{bottom:609.945000px;}
.ya3{bottom:611.565000px;}
.y62{bottom:624.165000px;}
.ya2{bottom:625.245000px;}
.ya1{bottom:637.305000px;}
.y61{bottom:641.445000px;}
.y16{bottom:644.325000px;}
.ya0{bottom:651.885000px;}
.y60{bottom:658.725000px;}
.y9f{bottom:666.465000px;}
.y15{bottom:668.625000px;}
.y5f{bottom:676.005000px;}
.y9e{bottom:681.045000px;}
.y5e{bottom:693.285000px;}
.y9d{bottom:695.445000px;}
.y14{bottom:702.285000px;}
.y9c{bottom:710.025000px;}
.y5d{bottom:710.385000px;}
.y13{bottom:719.565000px;}
.y9b{bottom:724.605000px;}
.y5c{bottom:727.665000px;}
.y12{bottom:736.845000px;}
.y9a{bottom:741.165000px;}
.y5b{bottom:744.945000px;}
.y99{bottom:751.965000px;}
.y11{bottom:753.945000px;}
.y5a{bottom:762.225000px;}
.y98{bottom:765.825000px;}
.y10{bottom:771.945000px;}
.y59{bottom:779.505000px;}
.y97{bottom:780.405000px;}
.yf{bottom:783.645000px;}
.y58{bottom:796.605000px;}
.y96{bottom:797.505000px;}
.ye{bottom:808.125000px;}
.y57{bottom:813.885000px;}
.y95{bottom:814.785000px;}
.y56{bottom:831.210000px;}
.y94{bottom:832.110000px;}
.yd{bottom:839.310000px;}
.y55{bottom:848.490000px;}
.y93{bottom:849.390000px;}
.y54{bottom:865.770000px;}
.y92{bottom:866.670000px;}
.yc{bottom:870.270000px;}
.y53{bottom:883.050000px;}
.y91{bottom:883.950000px;}
.y52{bottom:900.150000px;}
.y90{bottom:901.050000px;}
.yb{bottom:901.410000px;}
.y51{bottom:917.430000px;}
.y8f{bottom:917.610000px;}
.ya{bottom:930.210000px;}
.y8e{bottom:931.470000px;}
.y50{bottom:934.710000px;}
.y8d{bottom:945.330000px;}
.y8{bottom:945.510000px;}
.y4f{bottom:951.990000px;}
.y8c{bottom:957.210000px;}
.y4e{bottom:969.270000px;}
.y8b{bottom:971.790000px;}
.y8a{bottom:986.370000px;}
.y4d{bottom:986.550000px;}
.y89{bottom:1000.950000px;}
.y4c{bottom:1003.650000px;}
.y88{bottom:1015.530000px;}
.y4b{bottom:1020.930000px;}
.y87{bottom:1030.110000px;}
.y4a{bottom:1038.210000px;}
.y86{bottom:1044.510000px;}
.y49{bottom:1055.490000px;}
.y85{bottom:1061.610000px;}
.y48{bottom:1072.800000px;}
.y84{bottom:1075.500000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h1e{height:13.680000px;}
.h1d{height:13.860000px;}
.h1f{height:13.860150px;}
.h1c{height:13.896000px;}
.he{height:17.280000px;}
.h14{height:19.980000px;}
.h3{height:27.576000px;}
.h1b{height:32.853516px;}
.h1a{height:34.036523px;}
.hc{height:35.481797px;}
.h20{height:36.344883px;}
.h17{height:38.100586px;}
.hb{height:38.110078px;}
.h13{height:39.999023px;}
.hf{height:42.164648px;}
.h18{height:43.506914px;}
.h5{height:44.023711px;}
.h2{height:45.024258px;}
.h12{height:49.280273px;}
.h8{height:49.906406px;}
.h1{height:50.800781px;}
.ha{height:53.224453px;}
.h4{height:54.536836px;}
.h21{height:55.116000px;}
.h19{height:56.361797px;}
.h7{height:60.450469px;}
.h22{height:72.540000px;}
.h9{height:76.201172px;}
.hd{height:98.560547px;}
.h15{height:108.720000px;}
.h16{height:118.836000px;}
.h11{height:141.696000px;}
.h6{height:153.930000px;}
.h10{height:391.395000px;}
.h0{height:1188.000000px;}
.w2{width:39.096000px;}
.w16{width:42.480000px;}
.wf{width:44.460000px;}
.w1c{width:60.480000px;}
.w19{width:62.496000px;}
.w13{width:70.200000px;}
.w10{width:83.160000px;}
.w11{width:86.436000px;}
.w1a{width:89.460000px;}
.w14{width:91.620000px;}
.wd{width:97.056000px;}
.wb{width:98.280000px;}
.w15{width:99.036000px;}
.w8{width:99.216000px;}
.w12{width:103.500000px;}
.w18{width:106.560000px;}
.w17{width:107.316000px;}
.wc{width:143.640000px;}
.we{width:154.830000px;}
.w9{width:168.330000px;}
.wa{width:173.910000px;}
.w7{width:174.960000px;}
.w6{width:220.170000px;}
.w1d{width:307.695000px;}
.w1b{width:368.895000px;}
.w5{width:588.345000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:6.480000px;}
.x3{left:8.460000px;}
.x3f{left:10.620000px;}
.x34{left:12.780000px;}
.x36{left:14.220000px;}
.x3a{left:15.300000px;}
.x29{left:16.920000px;}
.x11{left:19.980000px;}
.x1e{left:21.960000px;}
.x1f{left:24.345000px;}
.x25{left:25.920000px;}
.x15{left:27.360000px;}
.x21{left:30.240000px;}
.x1a{left:32.625000px;}
.x13{left:34.065000px;}
.x14{left:35.865000px;}
.x27{left:37.080000px;}
.x22{left:38.160000px;}
.x30{left:39.600000px;}
.x2e{left:41.220000px;}
.x40{left:42.660000px;}
.x6{left:45.540000px;}
.x31{left:49.680000px;}
.x2{left:53.999986px;}
.x20{left:56.520000px;}
.x23{left:59.579986px;}
.x1{left:60.659986px;}
.x2d{left:63.900000px;}
.x16{left:65.519986px;}
.x2f{left:66.780000px;}
.x9{left:68.219986px;}
.xc{left:78.479986px;}
.xd{left:86.759986px;}
.x32{left:99.575986px;}
.x4{left:100.836000px;}
.x5{left:108.035986px;}
.xe{left:155.369986px;}
.x35{left:171.210000px;}
.xa{left:178.769986px;}
.x18{left:207.029986px;}
.x33{left:243.749986px;}
.x24{left:244.830000px;}
.x37{left:263.730000px;}
.x19{left:275.970000px;}
.x26{left:342.615000px;}
.x38{left:363.495000px;}
.x1b{left:375.915000px;}
.x39{left:406.695000px;}
.x8{left:459.074986px;}
.xb{left:464.294986px;}
.xf{left:465.374986px;}
.x17{left:478.334986px;}
.x41{left:479.804986px;}
.x28{left:498.165000px;}
.x44{left:501.945000px;}
.x42{left:506.804986px;}
.x3b{left:514.725000px;}
.x43{left:526.604986px;}
.x2a{left:543.345000px;}
.x1c{left:544.965000px;}
.x45{left:563.145000px;}
.x3c{left:622.005000px;}
.x2b{left:627.225000px;}
.x10{left:642.345000px;}
.x3d{left:665.205000px;}
.x2c{left:714.390000px;}
.x1d{left:719.610000px;}
.x3e{left:728.430000px;}
.x7{left:812.490000px;}
@media print{
.v4{vertical-align:-21.120000pt;}
.v5{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v6{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.239467pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls17{letter-spacing:-0.161067pt;}
.ls1d{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls19{letter-spacing:0.120533pt;}
.ls15{letter-spacing:0.138667pt;}
.lsf{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.198933pt;}
.ls7{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.276480pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.325120pt;}
.ls1a{letter-spacing:0.400533pt;}
.ls1c{letter-spacing:0.426667pt;}
.ls11{letter-spacing:0.800000pt;}
.ls12{letter-spacing:2.720000pt;}
.lsc{letter-spacing:5.920000pt;}
.lse{letter-spacing:11.040000pt;}
.ls13{letter-spacing:11.680000pt;}
.ls16{letter-spacing:16.800000pt;}
.ls5{letter-spacing:33.232640pt;}
.ls4{letter-spacing:37.216000pt;}
.lsa{letter-spacing:40.912640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws6{word-spacing:-48.000000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.120533pt;}
.wsd{word-spacing:-11.040000pt;}
.wsf{word-spacing:-10.918933pt;}
.ws2{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.558933pt;}
.wse{word-spacing:-10.480533pt;}
.ws3{word-spacing:-9.280000pt;}
.wsa{word-spacing:-8.651520pt;}
.ws4{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._3{margin-left:-1.126400pt;}
._0{width:1.009280pt;}
._6{width:2.158933pt;}
._a{width:3.757867pt;}
._9{width:5.046400pt;}
._c{width:6.693120pt;}
._b{width:7.649280pt;}
._e{width:8.594773pt;}
._f{width:9.591680pt;}
._1b{width:10.517760pt;}
._16{width:11.420800pt;}
._26{width:12.326187pt;}
._15{width:14.236160pt;}
._20{width:15.280213pt;}
._1f{width:16.213547pt;}
._1e{width:17.210880pt;}
._17{width:18.220160pt;}
._19{width:19.654400pt;}
._18{width:20.982400pt;}
._1c{width:22.131627pt;}
._1a{width:23.859840pt;}
._13{width:25.440000pt;}
._12{width:26.544000pt;}
._d{width:28.327680pt;}
._14{width:29.596800pt;}
._24{width:30.684800pt;}
._25{width:31.606400pt;}
._21{width:32.734720pt;}
._10{width:33.984000pt;}
._11{width:35.040000pt;}
._27{width:36.219520pt;}
._22{width:37.396480pt;}
._23{width:39.149440pt;}
._28{width:43.611520pt;}
._5{width:52.415147pt;}
._1d{width:53.305813pt;}
._4{width:54.262187pt;}
._7{width:55.419307pt;}
._2a{width:58.272640pt;}
._29{width:59.175680pt;}
._2{width:116.838187pt;}
._1{width:304.872107pt;}
._8{width:925.226667pt;}
.fs3{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:0.320000pt;}
.ydc{bottom:2.080000pt;}
.y6{bottom:2.240000pt;}
.y40{bottom:2.560000pt;}
.y18{bottom:2.880000pt;}
.y39{bottom:5.280000pt;}
.y78{bottom:6.080000pt;}
.y7d{bottom:6.240000pt;}
.y4{bottom:7.392000pt;}
.y9{bottom:12.480000pt;}
.ydb{bottom:12.800000pt;}
.yd3{bottom:14.400000pt;}
.y5{bottom:14.432000pt;}
.y3f{bottom:16.480000pt;}
.y37{bottom:17.280000pt;}
.yda{bottom:23.520000pt;}
.yd2{bottom:26.720000pt;}
.y2e{bottom:28.640000pt;}
.y3e{bottom:30.240000pt;}
.y7{bottom:31.520000pt;}
.y36{bottom:31.840000pt;}
.yd9{bottom:34.400000pt;}
.yd1{bottom:39.040000pt;}
.y2d{bottom:44.000000pt;}
.yd8{bottom:45.120000pt;}
.y35{bottom:45.600000pt;}
.y3{bottom:51.680000pt;}
.yd7{bottom:55.840000pt;}
.y3d{bottom:57.760000pt;}
.y2c{bottom:59.360000pt;}
.y34{bottom:59.520000pt;}
.y3c{bottom:71.680000pt;}
.y33{bottom:73.280000pt;}
.y2b{bottom:74.720000pt;}
.y3b{bottom:85.440000pt;}
.y32{bottom:87.040000pt;}
.y2a{bottom:90.120000pt;}
.y41{bottom:94.440000pt;}
.y31{bottom:100.826667pt;}
.yc0{bottom:102.592000pt;}
.y29{bottom:105.480000pt;}
.y83{bottom:110.912000pt;}
.y47{bottom:111.232000pt;}
.y30{bottom:114.746667pt;}
.ybf{bottom:117.952000pt;}
.y28{bottom:120.680000pt;}
.y46{bottom:124.992000pt;}
.ycd{bottom:125.472000pt;}
.y82{bottom:126.272000pt;}
.ybe{bottom:133.152000pt;}
.y27{bottom:136.040000pt;}
.y45{bottom:138.906667pt;}
.ycc{bottom:140.826667pt;}
.y81{bottom:141.626667pt;}
.ybd{bottom:148.506667pt;}
.yce{bottom:150.906667pt;}
.y26{bottom:151.400000pt;}
.y44{bottom:152.666667pt;}
.ycb{bottom:156.186667pt;}
.y80{bottom:156.986667pt;}
.ybc{bottom:163.866667pt;}
.yd5{bottom:164.026667pt;}
.y43{bottom:166.746667pt;}
.y25{bottom:166.760000pt;}
.yca{bottom:171.546667pt;}
.y7f{bottom:172.346667pt;}
.ybb{bottom:179.226667pt;}
.y42{bottom:181.786667pt;}
.y24{bottom:182.120000pt;}
.yc9{bottom:186.746667pt;}
.y7e{bottom:186.906667pt;}
.y19{bottom:193.626667pt;}
.yba{bottom:194.586667pt;}
.y23{bottom:197.320000pt;}
.y7c{bottom:197.626667pt;}
.yc8{bottom:202.106667pt;}
.yb9{bottom:209.946667pt;}
.y7b{bottom:210.586667pt;}
.y22{bottom:212.680000pt;}
.yc7{bottom:217.466667pt;}
.y7a{bottom:223.546667pt;}
.yb8{bottom:225.146667pt;}
.y21{bottom:228.040000pt;}
.yd4{bottom:229.146667pt;}
.yc6{bottom:232.826667pt;}
.y79{bottom:236.506667pt;}
.yb7{bottom:240.506667pt;}
.yd0{bottom:242.106667pt;}
.y20{bottom:243.400000pt;}
.yc5{bottom:248.186667pt;}
.y77{bottom:249.466667pt;}
.yb6{bottom:255.866667pt;}
.y1f{bottom:258.760000pt;}
.y76{bottom:262.266667pt;}
.yc4{bottom:263.546667pt;}
.yb5{bottom:271.226667pt;}
.y1e{bottom:274.120000pt;}
.y75{bottom:275.226667pt;}
.yc3{bottom:278.746667pt;}
.yb4{bottom:286.626667pt;}
.y1d{bottom:289.320000pt;}
.y74{bottom:290.146667pt;}
.ycf{bottom:291.906667pt;}
.yc2{bottom:294.146667pt;}
.y73{bottom:299.746667pt;}
.y3a{bottom:299.906667pt;}
.yb3{bottom:301.986667pt;}
.y1c{bottom:304.680000pt;}
.yc1{bottom:309.506667pt;}
.y72{bottom:311.906667pt;}
.yb2{bottom:317.186667pt;}
.y1b{bottom:320.066667pt;}
.y71{bottom:324.866667pt;}
.yb1{bottom:332.546667pt;}
.y1a{bottom:335.426667pt;}
.y70{bottom:340.226667pt;}
.yb0{bottom:347.906667pt;}
.y6f{bottom:355.426667pt;}
.yaf{bottom:363.266667pt;}
.y6e{bottom:370.786667pt;}
.yae{bottom:378.626667pt;}
.y6d{bottom:386.146667pt;}
.yad{bottom:393.826667pt;}
.y38{bottom:397.186667pt;}
.y6c{bottom:401.506667pt;}
.yac{bottom:409.186667pt;}
.y2f{bottom:415.586667pt;}
.y6b{bottom:416.866667pt;}
.yab{bottom:424.546667pt;}
.y6a{bottom:432.226667pt;}
.yaa{bottom:439.906667pt;}
.y69{bottom:447.426667pt;}
.ya9{bottom:455.266667pt;}
.y68{bottom:462.786667pt;}
.ya8{bottom:470.626667pt;}
.y67{bottom:478.146667pt;}
.ya7{bottom:485.826667pt;}
.y66{bottom:493.506667pt;}
.ya6{bottom:501.186667pt;}
.y65{bottom:508.893333pt;}
.ya5{bottom:516.573333pt;}
.y64{bottom:524.253333pt;}
.ya4{bottom:531.293333pt;}
.y63{bottom:539.453333pt;}
.y17{bottom:542.173333pt;}
.ya3{bottom:543.613333pt;}
.y62{bottom:554.813333pt;}
.ya2{bottom:555.773333pt;}
.ya1{bottom:566.493333pt;}
.y61{bottom:570.173333pt;}
.y16{bottom:572.733333pt;}
.ya0{bottom:579.453333pt;}
.y60{bottom:585.533333pt;}
.y9f{bottom:592.413333pt;}
.y15{bottom:594.333333pt;}
.y5f{bottom:600.893333pt;}
.y9e{bottom:605.373333pt;}
.y5e{bottom:616.253333pt;}
.y9d{bottom:618.173333pt;}
.y14{bottom:624.253333pt;}
.y9c{bottom:631.133333pt;}
.y5d{bottom:631.453333pt;}
.y13{bottom:639.613333pt;}
.y9b{bottom:644.093333pt;}
.y5c{bottom:646.813333pt;}
.y12{bottom:654.973333pt;}
.y9a{bottom:658.813333pt;}
.y5b{bottom:662.173333pt;}
.y99{bottom:668.413333pt;}
.y11{bottom:670.173333pt;}
.y5a{bottom:677.533333pt;}
.y98{bottom:680.733333pt;}
.y10{bottom:686.173333pt;}
.y59{bottom:692.893333pt;}
.y97{bottom:693.693333pt;}
.yf{bottom:696.573333pt;}
.y58{bottom:708.093333pt;}
.y96{bottom:708.893333pt;}
.ye{bottom:718.333333pt;}
.y57{bottom:723.453333pt;}
.y95{bottom:724.253333pt;}
.y56{bottom:738.853333pt;}
.y94{bottom:739.653333pt;}
.yd{bottom:746.053333pt;}
.y55{bottom:754.213333pt;}
.y93{bottom:755.013333pt;}
.y54{bottom:769.573333pt;}
.y92{bottom:770.373333pt;}
.yc{bottom:773.573333pt;}
.y53{bottom:784.933333pt;}
.y91{bottom:785.733333pt;}
.y52{bottom:800.133333pt;}
.y90{bottom:800.933333pt;}
.yb{bottom:801.253333pt;}
.y51{bottom:815.493333pt;}
.y8f{bottom:815.653333pt;}
.ya{bottom:826.853333pt;}
.y8e{bottom:827.973333pt;}
.y50{bottom:830.853333pt;}
.y8d{bottom:840.293333pt;}
.y8{bottom:840.453333pt;}
.y4f{bottom:846.213333pt;}
.y8c{bottom:850.853333pt;}
.y4e{bottom:861.573333pt;}
.y8b{bottom:863.813333pt;}
.y8a{bottom:876.773333pt;}
.y4d{bottom:876.933333pt;}
.y89{bottom:889.733333pt;}
.y4c{bottom:892.133333pt;}
.y88{bottom:902.693333pt;}
.y4b{bottom:907.493333pt;}
.y87{bottom:915.653333pt;}
.y4a{bottom:922.853333pt;}
.y86{bottom:928.453333pt;}
.y49{bottom:938.213333pt;}
.y85{bottom:943.653333pt;}
.y48{bottom:953.600000pt;}
.y84{bottom:956.000000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h1e{height:12.160000pt;}
.h1d{height:12.320000pt;}
.h1f{height:12.320133pt;}
.h1c{height:12.352000pt;}
.he{height:15.360000pt;}
.h14{height:17.760000pt;}
.h3{height:24.512000pt;}
.h1b{height:29.203125pt;}
.h1a{height:30.254687pt;}
.hc{height:31.539375pt;}
.h20{height:32.306562pt;}
.h17{height:33.867188pt;}
.hb{height:33.875625pt;}
.h13{height:35.554688pt;}
.hf{height:37.479688pt;}
.h18{height:38.672812pt;}
.h5{height:39.132187pt;}
.h2{height:40.021563pt;}
.h12{height:43.804688pt;}
.h8{height:44.361250pt;}
.h1{height:45.156250pt;}
.ha{height:47.310625pt;}
.h4{height:48.477187pt;}
.h21{height:48.992000pt;}
.h19{height:50.099375pt;}
.h7{height:53.733750pt;}
.h22{height:64.480000pt;}
.h9{height:67.734375pt;}
.hd{height:87.609375pt;}
.h15{height:96.640000pt;}
.h16{height:105.632000pt;}
.h11{height:125.952000pt;}
.h6{height:136.826667pt;}
.h10{height:347.906667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.752000pt;}
.w16{width:37.760000pt;}
.wf{width:39.520000pt;}
.w1c{width:53.760000pt;}
.w19{width:55.552000pt;}
.w13{width:62.400000pt;}
.w10{width:73.920000pt;}
.w11{width:76.832000pt;}
.w1a{width:79.520000pt;}
.w14{width:81.440000pt;}
.wd{width:86.272000pt;}
.wb{width:87.360000pt;}
.w15{width:88.032000pt;}
.w8{width:88.192000pt;}
.w12{width:92.000000pt;}
.w18{width:94.720000pt;}
.w17{width:95.392000pt;}
.wc{width:127.680000pt;}
.we{width:137.626667pt;}
.w9{width:149.626667pt;}
.wa{width:154.586667pt;}
.w7{width:155.520000pt;}
.w6{width:195.706667pt;}
.w1d{width:273.506667pt;}
.w1b{width:327.906667pt;}
.w5{width:522.973333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.760000pt;}
.x3{left:7.520000pt;}
.x3f{left:9.440000pt;}
.x34{left:11.360000pt;}
.x36{left:12.640000pt;}
.x3a{left:13.600000pt;}
.x29{left:15.040000pt;}
.x11{left:17.760000pt;}
.x1e{left:19.520000pt;}
.x1f{left:21.640000pt;}
.x25{left:23.040000pt;}
.x15{left:24.320000pt;}
.x21{left:26.880000pt;}
.x1a{left:29.000000pt;}
.x13{left:30.280000pt;}
.x14{left:31.880000pt;}
.x27{left:32.960000pt;}
.x22{left:33.920000pt;}
.x30{left:35.200000pt;}
.x2e{left:36.640000pt;}
.x40{left:37.920000pt;}
.x6{left:40.480000pt;}
.x31{left:44.160000pt;}
.x2{left:47.999988pt;}
.x20{left:50.240000pt;}
.x23{left:52.959988pt;}
.x1{left:53.919988pt;}
.x2d{left:56.800000pt;}
.x16{left:58.239988pt;}
.x2f{left:59.360000pt;}
.x9{left:60.639988pt;}
.xc{left:69.759988pt;}
.xd{left:77.119988pt;}
.x32{left:88.511988pt;}
.x4{left:89.632000pt;}
.x5{left:96.031988pt;}
.xe{left:138.106655pt;}
.x35{left:152.186667pt;}
.xa{left:158.906655pt;}
.x18{left:184.026655pt;}
.x33{left:216.666655pt;}
.x24{left:217.626667pt;}
.x37{left:234.426667pt;}
.x19{left:245.306667pt;}
.x26{left:304.546667pt;}
.x38{left:323.106667pt;}
.x1b{left:334.146667pt;}
.x39{left:361.506667pt;}
.x8{left:408.066655pt;}
.xb{left:412.706655pt;}
.xf{left:413.666655pt;}
.x17{left:425.186655pt;}
.x41{left:426.493321pt;}
.x28{left:442.813333pt;}
.x44{left:446.173333pt;}
.x42{left:450.493321pt;}
.x3b{left:457.533333pt;}
.x43{left:468.093321pt;}
.x2a{left:482.973333pt;}
.x1c{left:484.413333pt;}
.x45{left:500.573333pt;}
.x3c{left:552.893333pt;}
.x2b{left:557.533333pt;}
.x10{left:570.973333pt;}
.x3d{left:591.293333pt;}
.x2c{left:635.013333pt;}
.x1d{left:639.653333pt;}
.x3e{left:647.493333pt;}
.x7{left:722.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; }
  