
    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_6c5bd1ab6bd6c08d3eaf16af.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_24d96e58a7a11447d801b7ee.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1b620c3b19b2686b24588faa.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f8155cabf26e3facf596204e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bfc2b953a9c32c959023a68b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.181200px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.540000px;}
.ls8{letter-spacing:16.506720px;}
.ls3{letter-spacing:37.386720px;}
.ls2{letter-spacing:41.868000px;}
.ls7{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;}
}
.ws3{word-spacing:-108.000000px;}
.ws7{word-spacing:-59.760000px;}
.ws5{word-spacing:-54.000000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws9{word-spacing:-11.878800px;}
.wsb{word-spacing:-10.440000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-1.218960px;}
._0{width:1.135440px;}
._13{width:2.228640px;}
._d{width:4.087920px;}
._8{width:5.617440px;}
._7{width:6.991920px;}
._15{width:8.344080px;}
._19{width:9.667440px;}
._10{width:11.129040px;}
._a{width:12.358080px;}
._9{width:13.505760px;}
._17{width:14.580000px;}
._34{width:15.685200px;}
._18{width:16.912080px;}
._c{width:18.226800px;}
._12{width:19.983600px;}
._11{width:21.274560px;}
._23{width:22.558800px;}
._1e{width:24.083280px;}
._b{width:25.995600px;}
._6{width:27.699120px;}
._5{width:28.744560px;}
._25{width:30.656880px;}
._1c{width:31.732560px;}
._1d{width:32.748480px;}
._f{width:33.824160px;}
._e{width:35.377920px;}
._1f{width:36.991440px;}
._22{width:38.067120px;}
._24{width:39.501360px;}
._28{width:41.351760px;}
._29{width:43.326000px;}
._27{width:50.019120px;}
._26{width:51.333840px;}
._2f{width:52.887600px;}
._30{width:54.023040px;}
._21{width:55.756080px;}
._16{width:56.916000px;}
._31{width:58.501440px;}
._1b{width:64.617840px;}
._1a{width:65.977200px;}
._20{width:69.910560px;}
._32{width:80.974800px;}
._33{width:82.018080px;}
._2c{width:83.122560px;}
._2a{width:92.382240px;}
._2e{width:105.356880px;}
._2d{width:106.492320px;}
._2b{width:119.699280px;}
._2{width:131.442960px;}
._14{width:136.008000px;}
._1{width:342.981120px;}
._4{width:583.195200px;}
.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;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs7{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;}
.yf4{bottom:2.340000px;}
.y6{bottom:2.520000px;}
.y3c{bottom:2.880000px;}
.y17{bottom:3.240000px;}
.y35{bottom:5.940000px;}
.yed{bottom:6.660000px;}
.y4{bottom:8.316000px;}
.y94{bottom:9.360000px;}
.y9e{bottom:9.540000px;}
.y9a{bottom:9.570000px;}
.y9{bottom:14.040000px;}
.yf3{bottom:14.394000px;}
.y96{bottom:16.200000px;}
.y5{bottom:16.236000px;}
.ya0{bottom:16.380000px;}
.y9c{bottom:16.410000px;}
.y3b{bottom:18.360000px;}
.y33{bottom:19.440000px;}
.y93{bottom:23.220000px;}
.y99{bottom:23.250000px;}
.yf2{bottom:26.634000px;}
.y95{bottom:30.060000px;}
.y9f{bottom:30.240000px;}
.y9b{bottom:30.270000px;}
.y3a{bottom:34.020000px;}
.y7{bottom:35.460000px;}
.y32{bottom:35.820000px;}
.yf1{bottom:38.694000px;}
.yea{bottom:43.920000px;}
.y39{bottom:49.500000px;}
.yf0{bottom:50.754000px;}
.y31{bottom:51.300000px;}
.y3{bottom:58.140000px;}
.yef{bottom:62.814000px;}
.y38{bottom:64.980000px;}
.y30{bottom:66.780000px;}
.y2a{bottom:68.445000px;}
.yee{bottom:74.874000px;}
.y37{bottom:80.460000px;}
.y2f{bottom:82.440000px;}
.y29{bottom:85.725000px;}
.y2e{bottom:97.950000px;}
.y28{bottom:103.005000px;}
.y3d{bottom:106.245000px;}
.y2d{bottom:113.430000px;}
.yb2{bottom:114.156000px;}
.y45{bottom:118.836000px;}
.y27{bottom:120.285000px;}
.ye7{bottom:122.976000px;}
.y7d{bottom:123.876000px;}
.yb1{bottom:126.216000px;}
.y2c{bottom:128.910000px;}
.y44{bottom:134.676000px;}
.y26{bottom:137.565000px;}
.yec{bottom:137.736000px;}
.ye6{bottom:140.796000px;}
.y7c{bottom:141.156000px;}
.y43{bottom:151.950000px;}
.yb0{bottom:154.470000px;}
.y25{bottom:154.845000px;}
.ye5{bottom:158.070000px;}
.y7b{bottom:158.430000px;}
.y42{bottom:169.230000px;}
.y24{bottom:171.945000px;}
.ye4{bottom:175.350000px;}
.y7a{bottom:175.710000px;}
.yaf{bottom:182.910000px;}
.y41{bottom:186.510000px;}
.y23{bottom:189.225000px;}
.ye3{bottom:192.630000px;}
.y79{bottom:192.990000px;}
.y40{bottom:203.790000px;}
.y22{bottom:206.505000px;}
.ye2{bottom:209.910000px;}
.y78{bottom:210.090000px;}
.yae{bottom:211.170000px;}
.y3f{bottom:221.070000px;}
.yeb{bottom:223.050000px;}
.y21{bottom:223.785000px;}
.ye1{bottom:227.190000px;}
.y77{bottom:227.370000px;}
.ye9{bottom:237.630000px;}
.y3e{bottom:237.990000px;}
.yad{bottom:239.610000px;}
.y20{bottom:241.065000px;}
.ye0{bottom:244.290000px;}
.y76{bottom:244.650000px;}
.y18{bottom:251.310000px;}
.y1f{bottom:258.165000px;}
.ydf{bottom:261.570000px;}
.y75{bottom:261.930000px;}
.yac{bottom:267.870000px;}
.y1e{bottom:275.445000px;}
.yde{bottom:278.850000px;}
.y74{bottom:279.210000px;}
.yab{bottom:284.970000px;}
.y1d{bottom:292.725000px;}
.ye8{bottom:293.610000px;}
.ydd{bottom:296.130000px;}
.y73{bottom:296.490000px;}
.yaa{bottom:298.830000px;}
.y1c{bottom:310.005000px;}
.ya9{bottom:312.510000px;}
.ydc{bottom:313.410000px;}
.y72{bottom:313.590000px;}
.ya8{bottom:324.615000px;}
.y1b{bottom:327.315000px;}
.ydb{bottom:330.735000px;}
.y71{bottom:330.915000px;}
.y1a{bottom:344.595000px;}
.yda{bottom:347.835000px;}
.y70{bottom:348.195000px;}
.y19{bottom:361.695000px;}
.yd9{bottom:365.115000px;}
.y6f{bottom:365.475000px;}
.ya7{bottom:366.735000px;}
.y36{bottom:370.875000px;}
.yd8{bottom:382.395000px;}
.y6e{bottom:382.755000px;}
.yd7{bottom:399.675000px;}
.y6d{bottom:399.855000px;}
.ya6{bottom:408.855000px;}
.yd6{bottom:416.955000px;}
.y6c{bottom:417.135000px;}
.yd5{bottom:434.055000px;}
.y6b{bottom:434.415000px;}
.ya5{bottom:437.295000px;}
.yd4{bottom:451.335000px;}
.y6a{bottom:451.695000px;}
.y34{bottom:464.835000px;}
.ya4{bottom:465.555000px;}
.yd3{bottom:468.615000px;}
.y69{bottom:468.975000px;}
.ya3{bottom:482.295000px;}
.y2b{bottom:485.535000px;}
.yd2{bottom:485.895000px;}
.y68{bottom:486.255000px;}
.ya2{bottom:493.095000px;}
.yd1{bottom:503.175000px;}
.y67{bottom:503.355000px;}
.ya1{bottom:507.495000px;}
.yd0{bottom:520.455000px;}
.y66{bottom:520.635000px;}
.y9d{bottom:522.255000px;}
.ycf{bottom:537.555000px;}
.y65{bottom:537.915000px;}
.yce{bottom:554.835000px;}
.y64{bottom:555.195000px;}
.y98{bottom:564.375000px;}
.ycd{bottom:572.145000px;}
.y63{bottom:572.505000px;}
.ycc{bottom:589.425000px;}
.y62{bottom:589.785000px;}
.y97{bottom:606.705000px;}
.y61{bottom:606.885000px;}
.ycb{bottom:623.985000px;}
.y60{bottom:624.165000px;}
.y16{bottom:627.765000px;}
.yca{bottom:641.085000px;}
.y5f{bottom:641.445000px;}
.y92{bottom:648.825000px;}
.yc9{bottom:658.365000px;}
.y5e{bottom:658.725000px;}
.y15{bottom:662.325000px;}
.yc8{bottom:675.645000px;}
.y5d{bottom:676.005000px;}
.y14{bottom:682.305000px;}
.y91{bottom:690.945000px;}
.yc7{bottom:692.925000px;}
.y5c{bottom:693.285000px;}
.y90{bottom:707.505000px;}
.yc6{bottom:710.205000px;}
.y5b{bottom:710.385000px;}
.y13{bottom:711.105000px;}
.y8f{bottom:718.305000px;}
.yc5{bottom:727.485000px;}
.y5a{bottom:727.665000px;}
.y12{bottom:730.185000px;}
.y8e{bottom:732.885000px;}
.yc4{bottom:744.585000px;}
.y59{bottom:744.945000px;}
.y11{bottom:749.085000px;}
.y8d{bottom:750.165000px;}
.yc3{bottom:761.865000px;}
.y58{bottom:762.225000px;}
.y8c{bottom:767.445000px;}
.y10{bottom:768.165000px;}
.yc2{bottom:779.145000px;}
.y57{bottom:779.505000px;}
.y8b{bottom:784.545000px;}
.yf{bottom:787.065000px;}
.yc1{bottom:796.425000px;}
.y56{bottom:796.605000px;}
.y8a{bottom:801.825000px;}
.ye{bottom:808.125000px;}
.yc0{bottom:813.705000px;}
.y55{bottom:813.885000px;}
.y89{bottom:819.105000px;}
.ybf{bottom:830.850000px;}
.y54{bottom:831.210000px;}
.y88{bottom:836.070000px;}
.yd{bottom:839.310000px;}
.ybe{bottom:848.130000px;}
.y53{bottom:848.490000px;}
.y87{bottom:851.910000px;}
.ybd{bottom:865.410000px;}
.y52{bottom:865.770000px;}
.y86{bottom:869.190000px;}
.yc{bottom:870.270000px;}
.ybc{bottom:882.690000px;}
.y51{bottom:883.050000px;}
.y85{bottom:886.470000px;}
.ybb{bottom:899.970000px;}
.y50{bottom:900.150000px;}
.yb{bottom:901.410000px;}
.y84{bottom:903.390000px;}
.yba{bottom:917.250000px;}
.y4f{bottom:917.430000px;}
.y83{bottom:919.230000px;}
.ya{bottom:930.210000px;}
.yb9{bottom:934.350000px;}
.y4e{bottom:934.710000px;}
.y82{bottom:936.510000px;}
.y8{bottom:945.510000px;}
.yb8{bottom:949.110000px;}
.y4d{bottom:951.990000px;}
.y81{bottom:953.610000px;}
.y4c{bottom:969.270000px;}
.y80{bottom:970.890000px;}
.yb7{bottom:977.550000px;}
.y4b{bottom:986.550000px;}
.y7f{bottom:988.170000px;}
.y4a{bottom:1003.650000px;}
.y7e{bottom:1005.090000px;}
.yb6{bottom:1005.810000px;}
.y49{bottom:1020.930000px;}
.yb5{bottom:1034.250000px;}
.y48{bottom:1038.210000px;}
.y47{bottom:1055.490000px;}
.yb4{bottom:1064.670000px;}
.y46{bottom:1072.800000px;}
.yb3{bottom:1075.500000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h1b{height:13.860000px;}
.h22{height:15.480000px;}
.he{height:17.280000px;}
.h13{height:19.980000px;}
.h1a{height:25.136719px;}
.h1e{height:25.400391px;}
.h1f{height:27.540000px;}
.h3{height:27.576000px;}
.h20{height:27.720000px;}
.h26{height:29.158594px;}
.h25{height:29.464453px;}
.h5{height:33.683203px;}
.h19{height:34.036523px;}
.h15{height:37.705078px;}
.h16{height:38.100586px;}
.h6{height:39.336328px;}
.h11{height:39.999023px;}
.h1c{height:41.400000px;}
.h1d{height:41.436000px;}
.h4{height:41.726953px;}
.hd{height:42.164648px;}
.h18{height:43.506914px;}
.h12{height:44.265586px;}
.h2{height:45.024258px;}
.h8{height:46.251562px;}
.h21{height:49.255313px;}
.h9{height:49.906406px;}
.h1{height:50.800781px;}
.hb{height:53.224453px;}
.h23{height:55.080000px;}
.hc{height:75.410156px;}
.ha{height:76.201172px;}
.h24{height:84.600000px;}
.h14{height:93.060000px;}
.h17{height:118.836000px;}
.h10{height:141.516000px;}
.h7{height:153.930000px;}
.hf{height:375.735000px;}
.h0{height:1188.000000px;}
.w2{width:39.096000px;}
.w18{width:60.480000px;}
.w10{width:61.560000px;}
.w11{width:72.756000px;}
.wc{width:73.620000px;}
.w7{width:82.980000px;}
.w8{width:83.520000px;}
.w14{width:88.740000px;}
.w13{width:89.316000px;}
.w15{width:92.196000px;}
.w9{width:94.356000px;}
.wb{width:95.040000px;}
.wd{width:96.336000px;}
.we{width:104.220000px;}
.w16{width:109.440000px;}
.w12{width:112.860000px;}
.wa{width:114.120000px;}
.wf{width:123.840000px;}
.w6{width:220.170000px;}
.w19{width:318.315000px;}
.w17{width:379.515000px;}
.w5{width:588.345000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:6.480000px;}
.x3{left:8.460000px;}
.x31{left:10.440000px;}
.x26{left:11.700000px;}
.x28{left:12.960000px;}
.x1c{left:14.040000px;}
.x22{left:15.660000px;}
.x25{left:16.920000px;}
.x24{left:18.000000px;}
.x12{left:19.980000px;}
.x29{left:21.240000px;}
.x23{left:22.680000px;}
.x2e{left:24.120000px;}
.x27{left:25.740000px;}
.x16{left:27.360000px;}
.x1e{left:28.980000px;}
.x32{left:30.780000px;}
.x21{left:32.040000px;}
.x14{left:34.065000px;}
.x15{left:35.865000px;}
.x3b{left:37.440000px;}
.x39{left:39.600000px;}
.x33{left:42.660000px;}
.x6{left:45.540000px;}
.x3a{left:47.880000px;}
.x2{left:53.999986px;}
.xa{left:57.419986px;}
.x1{left:60.659986px;}
.x47{left:63.000000px;}
.x17{left:65.519986px;}
.x9{left:82.079986px;}
.x18{left:86.759986px;}
.x41{left:88.199986px;}
.x45{left:94.680000px;}
.x4{left:100.836000px;}
.x46{left:106.740000px;}
.x5{left:108.035986px;}
.x3c{left:127.295986px;}
.xe{left:147.275986px;}
.x3e{left:155.910000px;}
.xd{left:192.809986px;}
.x3f{left:245.370000px;}
.x3d{left:249.689986px;}
.x40{left:338.475000px;}
.xc{left:340.274986px;}
.xf{left:358.454986px;}
.x8{left:459.074986px;}
.xb{left:464.294986px;}
.x10{left:465.374986px;}
.x36{left:475.634986px;}
.x35{left:477.254986px;}
.x19{left:478.334986px;}
.x1a{left:480.524986px;}
.x37{left:481.785000px;}
.x2c{left:484.485000px;}
.x44{left:492.765000px;}
.x42{left:506.804986px;}
.x43{left:526.604986px;}
.x2a{left:554.144986px;}
.x1d{left:563.505000px;}
.x2d{left:580.245000px;}
.x38{left:606.345000px;}
.x1b{left:640.724986px;}
.x11{left:642.345000px;}
.x1f{left:647.745000px;}
.x2f{left:654.585000px;}
.x34{left:668.264986px;}
.x2b{left:671.144986px;}
.x20{left:742.830000px;}
.x30{left:751.650000px;}
.x7{left:812.490000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.161067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.480000pt;}
.ls8{letter-spacing:14.672640pt;}
.ls3{letter-spacing:33.232640pt;}
.ls2{letter-spacing:37.216000pt;}
.ls7{letter-spacing:40.912640pt;}
.ws3{word-spacing:-96.000000pt;}
.ws7{word-spacing:-53.120000pt;}
.ws5{word-spacing:-48.000000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws9{word-spacing:-10.558933pt;}
.wsb{word-spacing:-9.280000pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-1.083520pt;}
._0{width:1.009280pt;}
._13{width:1.981013pt;}
._d{width:3.633707pt;}
._8{width:4.993280pt;}
._7{width:6.215040pt;}
._15{width:7.416960pt;}
._19{width:8.593280pt;}
._10{width:9.892480pt;}
._a{width:10.984960pt;}
._9{width:12.005120pt;}
._17{width:12.960000pt;}
._34{width:13.942400pt;}
._18{width:15.032960pt;}
._c{width:16.201600pt;}
._12{width:17.763200pt;}
._11{width:18.910720pt;}
._23{width:20.052267pt;}
._1e{width:21.407360pt;}
._b{width:23.107200pt;}
._6{width:24.621440pt;}
._5{width:25.550720pt;}
._25{width:27.250560pt;}
._1c{width:28.206720pt;}
._1d{width:29.109760pt;}
._f{width:30.065920pt;}
._e{width:31.447040pt;}
._1f{width:32.881280pt;}
._22{width:33.837440pt;}
._24{width:35.112320pt;}
._28{width:36.757120pt;}
._29{width:38.512000pt;}
._27{width:44.461440pt;}
._26{width:45.630080pt;}
._2f{width:47.011200pt;}
._30{width:48.020480pt;}
._21{width:49.560960pt;}
._16{width:50.592000pt;}
._31{width:52.001280pt;}
._1b{width:57.438080pt;}
._1a{width:58.646400pt;}
._20{width:62.142720pt;}
._32{width:71.977600pt;}
._33{width:72.904960pt;}
._2c{width:73.886720pt;}
._2a{width:82.117547pt;}
._2e{width:93.650560pt;}
._2d{width:94.659840pt;}
._2b{width:106.399360pt;}
._2{width:116.838187pt;}
._14{width:120.896000pt;}
._1{width:304.872107pt;}
._4{width:518.395733pt;}
.fs3{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs7{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;}
.yf4{bottom:2.080000pt;}
.y6{bottom:2.240000pt;}
.y3c{bottom:2.560000pt;}
.y17{bottom:2.880000pt;}
.y35{bottom:5.280000pt;}
.yed{bottom:5.920000pt;}
.y4{bottom:7.392000pt;}
.y94{bottom:8.320000pt;}
.y9e{bottom:8.480000pt;}
.y9a{bottom:8.506667pt;}
.y9{bottom:12.480000pt;}
.yf3{bottom:12.794667pt;}
.y96{bottom:14.400000pt;}
.y5{bottom:14.432000pt;}
.ya0{bottom:14.560000pt;}
.y9c{bottom:14.586667pt;}
.y3b{bottom:16.320000pt;}
.y33{bottom:17.280000pt;}
.y93{bottom:20.640000pt;}
.y99{bottom:20.666667pt;}
.yf2{bottom:23.674667pt;}
.y95{bottom:26.720000pt;}
.y9f{bottom:26.880000pt;}
.y9b{bottom:26.906667pt;}
.y3a{bottom:30.240000pt;}
.y7{bottom:31.520000pt;}
.y32{bottom:31.840000pt;}
.yf1{bottom:34.394667pt;}
.yea{bottom:39.040000pt;}
.y39{bottom:44.000000pt;}
.yf0{bottom:45.114667pt;}
.y31{bottom:45.600000pt;}
.y3{bottom:51.680000pt;}
.yef{bottom:55.834667pt;}
.y38{bottom:57.760000pt;}
.y30{bottom:59.360000pt;}
.y2a{bottom:60.840000pt;}
.yee{bottom:66.554667pt;}
.y37{bottom:71.520000pt;}
.y2f{bottom:73.280000pt;}
.y29{bottom:76.200000pt;}
.y2e{bottom:87.066667pt;}
.y28{bottom:91.560000pt;}
.y3d{bottom:94.440000pt;}
.y2d{bottom:100.826667pt;}
.yb2{bottom:101.472000pt;}
.y45{bottom:105.632000pt;}
.y27{bottom:106.920000pt;}
.ye7{bottom:109.312000pt;}
.y7d{bottom:110.112000pt;}
.yb1{bottom:112.192000pt;}
.y2c{bottom:114.586667pt;}
.y44{bottom:119.712000pt;}
.y26{bottom:122.280000pt;}
.yec{bottom:122.432000pt;}
.ye6{bottom:125.152000pt;}
.y7c{bottom:125.472000pt;}
.y43{bottom:135.066667pt;}
.yb0{bottom:137.306667pt;}
.y25{bottom:137.640000pt;}
.ye5{bottom:140.506667pt;}
.y7b{bottom:140.826667pt;}
.y42{bottom:150.426667pt;}
.y24{bottom:152.840000pt;}
.ye4{bottom:155.866667pt;}
.y7a{bottom:156.186667pt;}
.yaf{bottom:162.586667pt;}
.y41{bottom:165.786667pt;}
.y23{bottom:168.200000pt;}
.ye3{bottom:171.226667pt;}
.y79{bottom:171.546667pt;}
.y40{bottom:181.146667pt;}
.y22{bottom:183.560000pt;}
.ye2{bottom:186.586667pt;}
.y78{bottom:186.746667pt;}
.yae{bottom:187.706667pt;}
.y3f{bottom:196.506667pt;}
.yeb{bottom:198.266667pt;}
.y21{bottom:198.920000pt;}
.ye1{bottom:201.946667pt;}
.y77{bottom:202.106667pt;}
.ye9{bottom:211.226667pt;}
.y3e{bottom:211.546667pt;}
.yad{bottom:212.986667pt;}
.y20{bottom:214.280000pt;}
.ye0{bottom:217.146667pt;}
.y76{bottom:217.466667pt;}
.y18{bottom:223.386667pt;}
.y1f{bottom:229.480000pt;}
.ydf{bottom:232.506667pt;}
.y75{bottom:232.826667pt;}
.yac{bottom:238.106667pt;}
.y1e{bottom:244.840000pt;}
.yde{bottom:247.866667pt;}
.y74{bottom:248.186667pt;}
.yab{bottom:253.306667pt;}
.y1d{bottom:260.200000pt;}
.ye8{bottom:260.986667pt;}
.ydd{bottom:263.226667pt;}
.y73{bottom:263.546667pt;}
.yaa{bottom:265.626667pt;}
.y1c{bottom:275.560000pt;}
.ya9{bottom:277.786667pt;}
.ydc{bottom:278.586667pt;}
.y72{bottom:278.746667pt;}
.ya8{bottom:288.546667pt;}
.y1b{bottom:290.946667pt;}
.ydb{bottom:293.986667pt;}
.y71{bottom:294.146667pt;}
.y1a{bottom:306.306667pt;}
.yda{bottom:309.186667pt;}
.y70{bottom:309.506667pt;}
.y19{bottom:321.506667pt;}
.yd9{bottom:324.546667pt;}
.y6f{bottom:324.866667pt;}
.ya7{bottom:325.986667pt;}
.y36{bottom:329.666667pt;}
.yd8{bottom:339.906667pt;}
.y6e{bottom:340.226667pt;}
.yd7{bottom:355.266667pt;}
.y6d{bottom:355.426667pt;}
.ya6{bottom:363.426667pt;}
.yd6{bottom:370.626667pt;}
.y6c{bottom:370.786667pt;}
.yd5{bottom:385.826667pt;}
.y6b{bottom:386.146667pt;}
.ya5{bottom:388.706667pt;}
.yd4{bottom:401.186667pt;}
.y6a{bottom:401.506667pt;}
.y34{bottom:413.186667pt;}
.ya4{bottom:413.826667pt;}
.yd3{bottom:416.546667pt;}
.y69{bottom:416.866667pt;}
.ya3{bottom:428.706667pt;}
.y2b{bottom:431.586667pt;}
.yd2{bottom:431.906667pt;}
.y68{bottom:432.226667pt;}
.ya2{bottom:438.306667pt;}
.yd1{bottom:447.266667pt;}
.y67{bottom:447.426667pt;}
.ya1{bottom:451.106667pt;}
.yd0{bottom:462.626667pt;}
.y66{bottom:462.786667pt;}
.y9d{bottom:464.226667pt;}
.ycf{bottom:477.826667pt;}
.y65{bottom:478.146667pt;}
.yce{bottom:493.186667pt;}
.y64{bottom:493.506667pt;}
.y98{bottom:501.666667pt;}
.ycd{bottom:508.573333pt;}
.y63{bottom:508.893333pt;}
.ycc{bottom:523.933333pt;}
.y62{bottom:524.253333pt;}
.y97{bottom:539.293333pt;}
.y61{bottom:539.453333pt;}
.ycb{bottom:554.653333pt;}
.y60{bottom:554.813333pt;}
.y16{bottom:558.013333pt;}
.yca{bottom:569.853333pt;}
.y5f{bottom:570.173333pt;}
.y92{bottom:576.733333pt;}
.yc9{bottom:585.213333pt;}
.y5e{bottom:585.533333pt;}
.y15{bottom:588.733333pt;}
.yc8{bottom:600.573333pt;}
.y5d{bottom:600.893333pt;}
.y14{bottom:606.493333pt;}
.y91{bottom:614.173333pt;}
.yc7{bottom:615.933333pt;}
.y5c{bottom:616.253333pt;}
.y90{bottom:628.893333pt;}
.yc6{bottom:631.293333pt;}
.y5b{bottom:631.453333pt;}
.y13{bottom:632.093333pt;}
.y8f{bottom:638.493333pt;}
.yc5{bottom:646.653333pt;}
.y5a{bottom:646.813333pt;}
.y12{bottom:649.053333pt;}
.y8e{bottom:651.453333pt;}
.yc4{bottom:661.853333pt;}
.y59{bottom:662.173333pt;}
.y11{bottom:665.853333pt;}
.y8d{bottom:666.813333pt;}
.yc3{bottom:677.213333pt;}
.y58{bottom:677.533333pt;}
.y8c{bottom:682.173333pt;}
.y10{bottom:682.813333pt;}
.yc2{bottom:692.573333pt;}
.y57{bottom:692.893333pt;}
.y8b{bottom:697.373333pt;}
.yf{bottom:699.613333pt;}
.yc1{bottom:707.933333pt;}
.y56{bottom:708.093333pt;}
.y8a{bottom:712.733333pt;}
.ye{bottom:718.333333pt;}
.yc0{bottom:723.293333pt;}
.y55{bottom:723.453333pt;}
.y89{bottom:728.093333pt;}
.ybf{bottom:738.533333pt;}
.y54{bottom:738.853333pt;}
.y88{bottom:743.173333pt;}
.yd{bottom:746.053333pt;}
.ybe{bottom:753.893333pt;}
.y53{bottom:754.213333pt;}
.y87{bottom:757.253333pt;}
.ybd{bottom:769.253333pt;}
.y52{bottom:769.573333pt;}
.y86{bottom:772.613333pt;}
.yc{bottom:773.573333pt;}
.ybc{bottom:784.613333pt;}
.y51{bottom:784.933333pt;}
.y85{bottom:787.973333pt;}
.ybb{bottom:799.973333pt;}
.y50{bottom:800.133333pt;}
.yb{bottom:801.253333pt;}
.y84{bottom:803.013333pt;}
.yba{bottom:815.333333pt;}
.y4f{bottom:815.493333pt;}
.y83{bottom:817.093333pt;}
.ya{bottom:826.853333pt;}
.yb9{bottom:830.533333pt;}
.y4e{bottom:830.853333pt;}
.y82{bottom:832.453333pt;}
.y8{bottom:840.453333pt;}
.yb8{bottom:843.653333pt;}
.y4d{bottom:846.213333pt;}
.y81{bottom:847.653333pt;}
.y4c{bottom:861.573333pt;}
.y80{bottom:863.013333pt;}
.yb7{bottom:868.933333pt;}
.y4b{bottom:876.933333pt;}
.y7f{bottom:878.373333pt;}
.y4a{bottom:892.133333pt;}
.y7e{bottom:893.413333pt;}
.yb6{bottom:894.053333pt;}
.y49{bottom:907.493333pt;}
.yb5{bottom:919.333333pt;}
.y48{bottom:922.853333pt;}
.y47{bottom:938.213333pt;}
.yb4{bottom:946.373333pt;}
.y46{bottom:953.600000pt;}
.yb3{bottom:956.000000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h1b{height:12.320000pt;}
.h22{height:13.760000pt;}
.he{height:15.360000pt;}
.h13{height:17.760000pt;}
.h1a{height:22.343750pt;}
.h1e{height:22.578125pt;}
.h1f{height:24.480000pt;}
.h3{height:24.512000pt;}
.h20{height:24.640000pt;}
.h26{height:25.918750pt;}
.h25{height:26.190625pt;}
.h5{height:29.940625pt;}
.h19{height:30.254687pt;}
.h15{height:33.515625pt;}
.h16{height:33.867188pt;}
.h6{height:34.965625pt;}
.h11{height:35.554688pt;}
.h1c{height:36.800000pt;}
.h1d{height:36.832000pt;}
.h4{height:37.090625pt;}
.hd{height:37.479688pt;}
.h18{height:38.672812pt;}
.h12{height:39.347188pt;}
.h2{height:40.021563pt;}
.h8{height:41.112500pt;}
.h21{height:43.782500pt;}
.h9{height:44.361250pt;}
.h1{height:45.156250pt;}
.hb{height:47.310625pt;}
.h23{height:48.960000pt;}
.hc{height:67.031250pt;}
.ha{height:67.734375pt;}
.h24{height:75.200000pt;}
.h14{height:82.720000pt;}
.h17{height:105.632000pt;}
.h10{height:125.792000pt;}
.h7{height:136.826667pt;}
.hf{height:333.986667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.752000pt;}
.w18{width:53.760000pt;}
.w10{width:54.720000pt;}
.w11{width:64.672000pt;}
.wc{width:65.440000pt;}
.w7{width:73.760000pt;}
.w8{width:74.240000pt;}
.w14{width:78.880000pt;}
.w13{width:79.392000pt;}
.w15{width:81.952000pt;}
.w9{width:83.872000pt;}
.wb{width:84.480000pt;}
.wd{width:85.632000pt;}
.we{width:92.640000pt;}
.w16{width:97.280000pt;}
.w12{width:100.320000pt;}
.wa{width:101.440000pt;}
.wf{width:110.080000pt;}
.w6{width:195.706667pt;}
.w19{width:282.946667pt;}
.w17{width:337.346667pt;}
.w5{width:522.973333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:5.760000pt;}
.x3{left:7.520000pt;}
.x31{left:9.280000pt;}
.x26{left:10.400000pt;}
.x28{left:11.520000pt;}
.x1c{left:12.480000pt;}
.x22{left:13.920000pt;}
.x25{left:15.040000pt;}
.x24{left:16.000000pt;}
.x12{left:17.760000pt;}
.x29{left:18.880000pt;}
.x23{left:20.160000pt;}
.x2e{left:21.440000pt;}
.x27{left:22.880000pt;}
.x16{left:24.320000pt;}
.x1e{left:25.760000pt;}
.x32{left:27.360000pt;}
.x21{left:28.480000pt;}
.x14{left:30.280000pt;}
.x15{left:31.880000pt;}
.x3b{left:33.280000pt;}
.x39{left:35.200000pt;}
.x33{left:37.920000pt;}
.x6{left:40.480000pt;}
.x3a{left:42.560000pt;}
.x2{left:47.999988pt;}
.xa{left:51.039988pt;}
.x1{left:53.919988pt;}
.x47{left:56.000000pt;}
.x17{left:58.239988pt;}
.x9{left:72.959988pt;}
.x18{left:77.119988pt;}
.x41{left:78.399988pt;}
.x45{left:84.160000pt;}
.x4{left:89.632000pt;}
.x46{left:94.880000pt;}
.x5{left:96.031988pt;}
.x3c{left:113.151988pt;}
.xe{left:130.911988pt;}
.x3e{left:138.586667pt;}
.xd{left:171.386655pt;}
.x3f{left:218.106667pt;}
.x3d{left:221.946655pt;}
.x40{left:300.866667pt;}
.xc{left:302.466655pt;}
.xf{left:318.626655pt;}
.x8{left:408.066655pt;}
.xb{left:412.706655pt;}
.x10{left:413.666655pt;}
.x36{left:422.786655pt;}
.x35{left:424.226655pt;}
.x19{left:425.186655pt;}
.x1a{left:427.133321pt;}
.x37{left:428.253333pt;}
.x2c{left:430.653333pt;}
.x44{left:438.013333pt;}
.x42{left:450.493321pt;}
.x43{left:468.093321pt;}
.x2a{left:492.573321pt;}
.x1d{left:500.893333pt;}
.x2d{left:515.773333pt;}
.x38{left:538.973333pt;}
.x1b{left:569.533321pt;}
.x11{left:570.973333pt;}
.x1f{left:575.773333pt;}
.x2f{left:581.853333pt;}
.x34{left:594.013321pt;}
.x2b{left:596.573321pt;}
.x20{left:660.293333pt;}
.x30{left:668.133333pt;}
.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; }
  