
    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_3fb6a9c0f6286f70bfa72efe.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_77a6f8fab869731aa2fd736b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_82a7a152d31ac333a034ec4b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_be4ffa147cdf6c56f122ade6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.747559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5c7e03cc9ec1deaa7eabe3fc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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;}
.lsb{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.269400px;}
.lsd{letter-spacing:-0.091200px;}
.lsc{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:16.506720px;}
.ls3{letter-spacing:37.386720px;}
.ls2{letter-spacing:41.868000px;}
.ls7{letter-spacing:46.026720px;}
.lsa{letter-spacing:241.948992px;}
.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;}
}
.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;}
.ws3{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.790600px;}
.ws9{word-spacing:-11.700000px;}
.ws8{word-spacing:0.000000px;}
.wsb{word-spacing:216.275040px;}
._3{margin-left:-1.218960px;}
._0{width:1.135440px;}
._9{width:2.731920px;}
._a{width:4.302720px;}
._c{width:6.035760px;}
._d{width:7.254720px;}
._b{width:8.306640px;}
._15{width:9.979920px;}
._7{width:11.772720px;}
._8{width:13.147200px;}
._32{width:14.400000px;}
._6{width:15.955920px;}
._14{width:17.006400px;}
._e{width:18.252000px;}
._22{width:20.192160px;}
._21{width:21.573360px;}
._23{width:22.747440px;}
._16{width:23.784480px;}
._1d{width:24.911760px;}
._1a{width:26.293680px;}
._25{width:27.489600px;}
._24{width:29.401920px;}
._26{width:30.417840px;}
._1e{width:31.535280px;}
._12{width:32.886000px;}
._28{width:34.146720px;}
._2a{width:35.557200px;}
._19{width:36.812160px;}
._10{width:38.394000px;}
._f{width:39.528000px;}
._2f{width:40.583520px;}
._31{width:41.589360px;}
._30{width:42.668640px;}
._27{width:45.298080px;}
._29{width:47.031120px;}
._1f{width:49.481280px;}
._20{width:50.497200px;}
._18{width:52.170480px;}
._17{width:53.425440px;}
._1c{width:58.829520px;}
._1b{width:59.939280px;}
._4{width:61.771440px;}
._2e{width:100.728000px;}
._13{width:125.928000px;}
._2{width:131.442960px;}
._11{width:153.468000px;}
._2d{width:201.000576px;}
._2c{width:214.620384px;}
._1{width:342.981120px;}
._5{width:945.660000px;}
._2b{width:1659.360000px;}
.fc3{color:rgb(0,112,192);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(64,64,64);}
.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;}
.fs7{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.520000px;}
.y36{bottom:2.880000px;}
.y14{bottom:3.240000px;}
.yf1{bottom:3.954000px;}
.y2f{bottom:6.120000px;}
.y4{bottom:8.316000px;}
.y9{bottom:14.040000px;}
.y5{bottom:16.236000px;}
.yae{bottom:16.380000px;}
.ye2{bottom:17.565000px;}
.yf0{bottom:17.634000px;}
.y35{bottom:18.360000px;}
.y2d{bottom:19.260000px;}
.ye8{bottom:30.060000px;}
.yc3{bottom:30.285000px;}
.yef{bottom:31.494000px;}
.y34{bottom:33.840000px;}
.y7{bottom:35.460000px;}
.y2c{bottom:35.850000px;}
.ye7{bottom:43.920000px;}
.yee{bottom:45.174000px;}
.ydd{bottom:47.490000px;}
.y33{bottom:49.500000px;}
.y2b{bottom:51.330000px;}
.y3{bottom:58.140000px;}
.yed{bottom:59.034000px;}
.y32{bottom:64.980000px;}
.y2a{bottom:66.810000px;}
.yec{bottom:72.894000px;}
.y31{bottom:80.460000px;}
.y29{bottom:82.290000px;}
.yeb{bottom:86.574000px;}
.yd5{bottom:92.730000px;}
.y28{bottom:97.950000px;}
.yde{bottom:103.605000px;}
.y37{bottom:106.245000px;}
.yd9{bottom:112.935000px;}
.y27{bottom:113.430000px;}
.ya9{bottom:113.796000px;}
.ye4{bottom:117.216000px;}
.y42{bottom:117.396000px;}
.y24{bottom:120.285000px;}
.y7a{bottom:123.876000px;}
.yd3{bottom:127.656000px;}
.y26{bottom:128.910000px;}
.ya8{bottom:130.896000px;}
.y41{bottom:133.236000px;}
.ye3{bottom:134.496000px;}
.y23{bottom:137.385000px;}
.y79{bottom:141.156000px;}
.yd4{bottom:142.020000px;}
.ya7{bottom:148.176000px;}
.yea{bottom:149.256000px;}
.y40{bottom:150.510000px;}
.y22{bottom:154.665000px;}
.y78{bottom:158.430000px;}
.ya6{bottom:165.450000px;}
.y3f{bottom:167.610000px;}
.yd6{bottom:169.890000px;}
.y21{bottom:171.945000px;}
.y77{bottom:175.710000px;}
.ydf{bottom:180.720000px;}
.ya5{bottom:182.010000px;}
.y3e{bottom:184.890000px;}
.y20{bottom:189.225000px;}
.yda{bottom:190.080000px;}
.y76{bottom:192.990000px;}
.ya4{bottom:194.070000px;}
.y3d{bottom:202.170000px;}
.y1f{bottom:206.505000px;}
.ya3{bottom:208.650000px;}
.y75{bottom:210.090000px;}
.y3c{bottom:219.450000px;}
.y1e{bottom:223.785000px;}
.ya2{bottom:225.210000px;}
.y74{bottom:227.370000px;}
.ya1{bottom:236.010000px;}
.y3b{bottom:236.730000px;}
.y1d{bottom:240.885000px;}
.y73{bottom:244.650000px;}
.yd7{bottom:247.035000px;}
.ye9{bottom:247.890000px;}
.ya0{bottom:250.590000px;}
.y3a{bottom:253.830000px;}
.ye0{bottom:257.865000px;}
.y1c{bottom:258.165000px;}
.y72{bottom:261.930000px;}
.ye6{bottom:262.470000px;}
.ydb{bottom:267.225000px;}
.y9f{bottom:267.690000px;}
.y39{bottom:271.110000px;}
.y1b{bottom:275.475000px;}
.y71{bottom:279.210000px;}
.y9e{bottom:284.970000px;}
.y38{bottom:288.030000px;}
.y1a{bottom:292.755000px;}
.y70{bottom:296.490000px;}
.y15{bottom:301.530000px;}
.y9d{bottom:302.250000px;}
.y19{bottom:310.035000px;}
.y6f{bottom:313.590000px;}
.ye5{bottom:318.495000px;}
.y9c{bottom:319.575000px;}
.yd8{bottom:324.180000px;}
.y18{bottom:327.315000px;}
.y6e{bottom:330.915000px;}
.ye1{bottom:335.010000px;}
.y9b{bottom:336.855000px;}
.ydc{bottom:344.370000px;}
.y17{bottom:344.415000px;}
.y6d{bottom:348.195000px;}
.y9a{bottom:354.135000px;}
.y16{bottom:361.695000px;}
.y6c{bottom:365.475000px;}
.y99{bottom:371.235000px;}
.y6b{bottom:382.755000px;}
.y98{bottom:388.515000px;}
.y6a{bottom:399.855000px;}
.y97{bottom:405.795000px;}
.y69{bottom:417.135000px;}
.y30{bottom:421.095000px;}
.y96{bottom:423.075000px;}
.y68{bottom:434.415000px;}
.y95{bottom:440.355000px;}
.y67{bottom:451.695000px;}
.y94{bottom:457.455000px;}
.y66{bottom:468.975000px;}
.y93{bottom:474.015000px;}
.y92{bottom:486.075000px;}
.y65{bottom:486.255000px;}
.y91{bottom:500.655000px;}
.y64{bottom:503.355000px;}
.y2e{bottom:514.875000px;}
.y90{bottom:517.215000px;}
.y63{bottom:520.635000px;}
.y8f{bottom:528.015000px;}
.y25{bottom:535.755000px;}
.y62{bottom:537.915000px;}
.yd2{bottom:538.455000px;}
.y8e{bottom:542.595000px;}
.yd1{bottom:552.135000px;}
.y61{bottom:555.195000px;}
.y8d{bottom:559.875000px;}
.ybe{bottom:566.715000px;}
.y60{bottom:572.505000px;}
.y8c{bottom:577.185000px;}
.ybd{bottom:583.305000px;}
.yd0{bottom:584.025000px;}
.y5f{bottom:589.785000px;}
.y8b{bottom:594.285000px;}
.ybc{bottom:597.885000px;}
.ycf{bottom:601.305000px;}
.y5e{bottom:606.885000px;}
.y8a{bottom:611.565000px;}
.ybb{bottom:614.985000px;}
.yce{bottom:618.585000px;}
.y5d{bottom:624.165000px;}
.y89{bottom:628.845000px;}
.yba{bottom:632.265000px;}
.ycd{bottom:635.685000px;}
.y5c{bottom:641.445000px;}
.y88{bottom:646.125000px;}
.yb9{bottom:649.545000px;}
.ycc{bottom:652.965000px;}
.y5b{bottom:658.725000px;}
.y87{bottom:663.405000px;}
.yb8{bottom:666.825000px;}
.ycb{bottom:670.245000px;}
.y5a{bottom:676.005000px;}
.y13{bottom:677.985000px;}
.y86{bottom:680.685000px;}
.yb7{bottom:684.105000px;}
.yca{bottom:687.525000px;}
.y59{bottom:693.285000px;}
.y85{bottom:697.785000px;}
.yb6{bottom:701.385000px;}
.yc9{bottom:704.805000px;}
.y58{bottom:710.385000px;}
.y12{bottom:712.545000px;}
.y84{bottom:715.065000px;}
.yb5{bottom:718.485000px;}
.yc8{bottom:722.085000px;}
.y57{bottom:727.665000px;}
.y83{bottom:732.345000px;}
.yb4{bottom:735.765000px;}
.y11{bottom:736.665000px;}
.yc7{bottom:739.185000px;}
.y56{bottom:744.945000px;}
.y82{bottom:749.625000px;}
.yb3{bottom:753.045000px;}
.yc6{bottom:756.465000px;}
.y55{bottom:762.225000px;}
.y10{bottom:765.645000px;}
.y81{bottom:766.905000px;}
.yb2{bottom:770.325000px;}
.yc5{bottom:773.025000px;}
.y54{bottom:779.505000px;}
.y80{bottom:783.285000px;}
.yf{bottom:784.545000px;}
.yc4{bottom:786.885000px;}
.yb1{bottom:787.605000px;}
.y53{bottom:796.605000px;}
.y7f{bottom:797.145000px;}
.yc2{bottom:798.765000px;}
.yb0{bottom:803.985000px;}
.ye{bottom:808.125000px;}
.y7e{bottom:809.205000px;}
.y52{bottom:813.885000px;}
.yaf{bottom:817.845000px;}
.y7d{bottom:823.830000px;}
.yad{bottom:829.950000px;}
.y51{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.y7c{bottom:840.390000px;}
.yc1{bottom:841.110000px;}
.y50{bottom:848.490000px;}
.y7b{bottom:851.190000px;}
.yc0{bottom:857.670000px;}
.yac{bottom:858.210000px;}
.y4f{bottom:865.770000px;}
.ybf{bottom:868.470000px;}
.yc{bottom:870.270000px;}
.yab{bottom:874.950000px;}
.y4e{bottom:883.050000px;}
.yaa{bottom:885.750000px;}
.y4d{bottom:900.150000px;}
.yb{bottom:901.410000px;}
.y4c{bottom:917.430000px;}
.ya{bottom:930.210000px;}
.y4b{bottom:934.710000px;}
.y8{bottom:945.510000px;}
.y4a{bottom:951.990000px;}
.y49{bottom:969.270000px;}
.y48{bottom:986.550000px;}
.y47{bottom:1003.650000px;}
.y46{bottom:1020.930000px;}
.y45{bottom:1038.210000px;}
.y44{bottom:1055.490000px;}
.y43{bottom:1072.800000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h1a{height:13.680000px;}
.h1e{height:13.860000px;}
.h1c{height:13.896000px;}
.hd{height:17.280000px;}
.h13{height:20.160000px;}
.h19{height:25.400391px;}
.h1d{height:26.033203px;}
.h1f{height:27.540000px;}
.h3{height:27.576000px;}
.h20{height:33.494766px;}
.h1b{height:34.036523px;}
.h5{height:34.884492px;}
.h17{height:38.100586px;}
.h15{height:39.049805px;}
.h6{height:39.336328px;}
.h11{height:39.999023px;}
.h21{height:41.436000px;}
.he{height:42.164648px;}
.h4{height:43.215117px;}
.h18{height:43.506914px;}
.h12{height:44.265586px;}
.h2{height:45.024258px;}
.hb{height:46.736719px;}
.h8{height:47.901094px;}
.h9{height:49.906406px;}
.h1{height:50.800781px;}
.h23{height:53.709961px;}
.h24{height:53.853187px;}
.h25{height:55.296000px;}
.ha{height:76.201172px;}
.hc{height:78.099609px;}
.h14{height:93.060000px;}
.h26{height:97.920000px;}
.h16{height:118.836000px;}
.h10{height:141.516000px;}
.h7{height:153.930000px;}
.hf{height:375.735000px;}
.h22{height:394.020000px;}
.h0{height:1188.000000px;}
.w2{width:39.096000px;}
.we{width:42.696000px;}
.w8{width:42.876000px;}
.wb{width:50.076000px;}
.w18{width:71.280000px;}
.w14{width:105.516000px;}
.w11{width:111.996000px;}
.w10{width:126.756000px;}
.w12{width:131.040000px;}
.w13{width:131.400000px;}
.w15{width:138.600000px;}
.wf{width:147.420000px;}
.w9{width:150.840000px;}
.wa{width:152.820000px;}
.wc{width:177.480000px;}
.wd{width:179.460000px;}
.w7{width:186.840000px;}
.w6{width:220.170000px;}
.w19{width:307.695000px;}
.w17{width:379.695000px;}
.w5{width:588.345000px;}
.w16{width:643.140000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:6.480000px;}
.x3{left:8.460000px;}
.x2e{left:9.900000px;}
.x20{left:11.340000px;}
.x30{left:12.780000px;}
.x1c{left:15.300000px;}
.x2d{left:18.000000px;}
.x10{left:19.980000px;}
.x32{left:22.500000px;}
.x28{left:24.120000px;}
.x27{left:26.100000px;}
.x14{left:27.360000px;}
.x31{left:31.500000px;}
.x12{left:34.065000px;}
.x13{left:35.865000px;}
.x2a{left:39.456000px;}
.x22{left:41.220000px;}
.x6{left:45.540000px;}
.x2f{left:48.816000px;}
.x1e{left:52.380000px;}
.x2{left:53.999986px;}
.x1{left:60.659986px;}
.x29{left:63.000000px;}
.x15{left:65.519986px;}
.x19{left:69.300000px;}
.x9{left:70.379986px;}
.x23{left:75.240000px;}
.x16{left:88.199986px;}
.x4{left:100.836000px;}
.x46{left:105.120000px;}
.x47{left:106.740000px;}
.x5{left:108.035986px;}
.x3b{left:140.220000px;}
.x42{left:188.460000px;}
.x2b{left:193.530000px;}
.x3f{left:220.650000px;}
.xa{left:234.209986px;}
.x43{left:254.265000px;}
.x39{left:256.169986px;}
.x3c{left:269.130000px;}
.x2c{left:306.255000px;}
.xd{left:313.274986px;}
.xc{left:415.334986px;}
.x8{left:459.074986px;}
.x3a{left:461.954986px;}
.xb{left:464.294986px;}
.xe{left:465.374986px;}
.x37{left:472.754986px;}
.x17{left:478.334986px;}
.x34{left:479.805000px;}
.x18{left:484.485000px;}
.x45{left:491.145000px;}
.x40{left:493.920000px;}
.x44{left:506.804986px;}
.x41{left:512.250000px;}
.x3d{left:514.440000px;}
.x24{left:522.824986px;}
.x33{left:551.084986px;}
.x3e{left:554.730000px;}
.x48{left:563.145000px;}
.x1d{left:579.704986px;}
.x35{left:612.105000px;}
.x38{left:614.624986px;}
.x1f{left:638.205000px;}
.xf{left:642.345000px;}
.x25{left:664.845000px;}
.x1a{left:672.045000px;}
.x21{left:689.010000px;}
.x26{left:708.450000px;}
.x1b{left:715.650000px;}
.x36{left:718.350000px;}
.x7{left:812.490000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.239467pt;}
.lsd{letter-spacing:-0.081067pt;}
.lsc{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:14.672640pt;}
.ls3{letter-spacing:33.232640pt;}
.ls2{letter-spacing:37.216000pt;}
.ls7{letter-spacing:40.912640pt;}
.lsa{letter-spacing:215.065771pt;}
.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;}
.ws3{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.480533pt;}
.ws9{word-spacing:-10.400000pt;}
.ws8{word-spacing:0.000000pt;}
.wsb{word-spacing:192.244480pt;}
._3{margin-left:-1.083520pt;}
._0{width:1.009280pt;}
._9{width:2.428373pt;}
._a{width:3.824640pt;}
._c{width:5.365120pt;}
._d{width:6.448640pt;}
._b{width:7.383680pt;}
._15{width:8.871040pt;}
._7{width:10.464640pt;}
._8{width:11.686400pt;}
._32{width:12.800000pt;}
._6{width:14.183040pt;}
._14{width:15.116800pt;}
._e{width:16.224000pt;}
._22{width:17.948587pt;}
._21{width:19.176320pt;}
._23{width:20.219947pt;}
._16{width:21.141760pt;}
._1d{width:22.143787pt;}
._1a{width:23.372160pt;}
._25{width:24.435200pt;}
._24{width:26.135040pt;}
._26{width:27.038080pt;}
._1e{width:28.031360pt;}
._12{width:29.232000pt;}
._28{width:30.352640pt;}
._2a{width:31.606400pt;}
._19{width:32.721920pt;}
._10{width:34.128000pt;}
._f{width:35.136000pt;}
._2f{width:36.074240pt;}
._31{width:36.968320pt;}
._30{width:37.927680pt;}
._27{width:40.264960pt;}
._29{width:41.805440pt;}
._1f{width:43.983360pt;}
._20{width:44.886400pt;}
._18{width:46.373760pt;}
._17{width:47.489280pt;}
._1c{width:52.292907pt;}
._1b{width:53.279360pt;}
._4{width:54.907947pt;}
._2e{width:89.536000pt;}
._13{width:111.936000pt;}
._2{width:116.838187pt;}
._11{width:136.416000pt;}
._2d{width:178.667179pt;}
._2c{width:190.773675pt;}
._1{width:304.872107pt;}
._5{width:840.586667pt;}
._2b{width:1474.986667pt;}
.fs3{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.240000pt;}
.y36{bottom:2.560000pt;}
.y14{bottom:2.880000pt;}
.yf1{bottom:3.514667pt;}
.y2f{bottom:5.440000pt;}
.y4{bottom:7.392000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:14.432000pt;}
.yae{bottom:14.560000pt;}
.ye2{bottom:15.613333pt;}
.yf0{bottom:15.674667pt;}
.y35{bottom:16.320000pt;}
.y2d{bottom:17.120000pt;}
.ye8{bottom:26.720000pt;}
.yc3{bottom:26.920000pt;}
.yef{bottom:27.994667pt;}
.y34{bottom:30.080000pt;}
.y7{bottom:31.520000pt;}
.y2c{bottom:31.866667pt;}
.ye7{bottom:39.040000pt;}
.yee{bottom:40.154667pt;}
.ydd{bottom:42.213333pt;}
.y33{bottom:44.000000pt;}
.y2b{bottom:45.626667pt;}
.y3{bottom:51.680000pt;}
.yed{bottom:52.474667pt;}
.y32{bottom:57.760000pt;}
.y2a{bottom:59.386667pt;}
.yec{bottom:64.794667pt;}
.y31{bottom:71.520000pt;}
.y29{bottom:73.146667pt;}
.yeb{bottom:76.954667pt;}
.yd5{bottom:82.426667pt;}
.y28{bottom:87.066667pt;}
.yde{bottom:92.093333pt;}
.y37{bottom:94.440000pt;}
.yd9{bottom:100.386667pt;}
.y27{bottom:100.826667pt;}
.ya9{bottom:101.152000pt;}
.ye4{bottom:104.192000pt;}
.y42{bottom:104.352000pt;}
.y24{bottom:106.920000pt;}
.y7a{bottom:110.112000pt;}
.yd3{bottom:113.472000pt;}
.y26{bottom:114.586667pt;}
.ya8{bottom:116.352000pt;}
.y41{bottom:118.432000pt;}
.ye3{bottom:119.552000pt;}
.y23{bottom:122.120000pt;}
.y79{bottom:125.472000pt;}
.yd4{bottom:126.240000pt;}
.ya7{bottom:131.712000pt;}
.yea{bottom:132.672000pt;}
.y40{bottom:133.786667pt;}
.y22{bottom:137.480000pt;}
.y78{bottom:140.826667pt;}
.ya6{bottom:147.066667pt;}
.y3f{bottom:148.986667pt;}
.yd6{bottom:151.013333pt;}
.y21{bottom:152.840000pt;}
.y77{bottom:156.186667pt;}
.ydf{bottom:160.640000pt;}
.ya5{bottom:161.786667pt;}
.y3e{bottom:164.346667pt;}
.y20{bottom:168.200000pt;}
.yda{bottom:168.960000pt;}
.y76{bottom:171.546667pt;}
.ya4{bottom:172.506667pt;}
.y3d{bottom:179.706667pt;}
.y1f{bottom:183.560000pt;}
.ya3{bottom:185.466667pt;}
.y75{bottom:186.746667pt;}
.y3c{bottom:195.066667pt;}
.y1e{bottom:198.920000pt;}
.ya2{bottom:200.186667pt;}
.y74{bottom:202.106667pt;}
.ya1{bottom:209.786667pt;}
.y3b{bottom:210.426667pt;}
.y1d{bottom:214.120000pt;}
.y73{bottom:217.466667pt;}
.yd7{bottom:219.586667pt;}
.ye9{bottom:220.346667pt;}
.ya0{bottom:222.746667pt;}
.y3a{bottom:225.626667pt;}
.ye0{bottom:229.213333pt;}
.y1c{bottom:229.480000pt;}
.y72{bottom:232.826667pt;}
.ye6{bottom:233.306667pt;}
.ydb{bottom:237.533333pt;}
.y9f{bottom:237.946667pt;}
.y39{bottom:240.986667pt;}
.y1b{bottom:244.866667pt;}
.y71{bottom:248.186667pt;}
.y9e{bottom:253.306667pt;}
.y38{bottom:256.026667pt;}
.y1a{bottom:260.226667pt;}
.y70{bottom:263.546667pt;}
.y15{bottom:268.026667pt;}
.y9d{bottom:268.666667pt;}
.y19{bottom:275.586667pt;}
.y6f{bottom:278.746667pt;}
.ye5{bottom:283.106667pt;}
.y9c{bottom:284.066667pt;}
.yd8{bottom:288.160000pt;}
.y18{bottom:290.946667pt;}
.y6e{bottom:294.146667pt;}
.ye1{bottom:297.786667pt;}
.y9b{bottom:299.426667pt;}
.ydc{bottom:306.106667pt;}
.y17{bottom:306.146667pt;}
.y6d{bottom:309.506667pt;}
.y9a{bottom:314.786667pt;}
.y16{bottom:321.506667pt;}
.y6c{bottom:324.866667pt;}
.y99{bottom:329.986667pt;}
.y6b{bottom:340.226667pt;}
.y98{bottom:345.346667pt;}
.y6a{bottom:355.426667pt;}
.y97{bottom:360.706667pt;}
.y69{bottom:370.786667pt;}
.y30{bottom:374.306667pt;}
.y96{bottom:376.066667pt;}
.y68{bottom:386.146667pt;}
.y95{bottom:391.426667pt;}
.y67{bottom:401.506667pt;}
.y94{bottom:406.626667pt;}
.y66{bottom:416.866667pt;}
.y93{bottom:421.346667pt;}
.y92{bottom:432.066667pt;}
.y65{bottom:432.226667pt;}
.y91{bottom:445.026667pt;}
.y64{bottom:447.426667pt;}
.y2e{bottom:457.666667pt;}
.y90{bottom:459.746667pt;}
.y63{bottom:462.786667pt;}
.y8f{bottom:469.346667pt;}
.y25{bottom:476.226667pt;}
.y62{bottom:478.146667pt;}
.yd2{bottom:478.626667pt;}
.y8e{bottom:482.306667pt;}
.yd1{bottom:490.786667pt;}
.y61{bottom:493.506667pt;}
.y8d{bottom:497.666667pt;}
.ybe{bottom:503.746667pt;}
.y60{bottom:508.893333pt;}
.y8c{bottom:513.053333pt;}
.ybd{bottom:518.493333pt;}
.yd0{bottom:519.133333pt;}
.y5f{bottom:524.253333pt;}
.y8b{bottom:528.253333pt;}
.ybc{bottom:531.453333pt;}
.ycf{bottom:534.493333pt;}
.y5e{bottom:539.453333pt;}
.y8a{bottom:543.613333pt;}
.ybb{bottom:546.653333pt;}
.yce{bottom:549.853333pt;}
.y5d{bottom:554.813333pt;}
.y89{bottom:558.973333pt;}
.yba{bottom:562.013333pt;}
.ycd{bottom:565.053333pt;}
.y5c{bottom:570.173333pt;}
.y88{bottom:574.333333pt;}
.yb9{bottom:577.373333pt;}
.ycc{bottom:580.413333pt;}
.y5b{bottom:585.533333pt;}
.y87{bottom:589.693333pt;}
.yb8{bottom:592.733333pt;}
.ycb{bottom:595.773333pt;}
.y5a{bottom:600.893333pt;}
.y13{bottom:602.653333pt;}
.y86{bottom:605.053333pt;}
.yb7{bottom:608.093333pt;}
.yca{bottom:611.133333pt;}
.y59{bottom:616.253333pt;}
.y85{bottom:620.253333pt;}
.yb6{bottom:623.453333pt;}
.yc9{bottom:626.493333pt;}
.y58{bottom:631.453333pt;}
.y12{bottom:633.373333pt;}
.y84{bottom:635.613333pt;}
.yb5{bottom:638.653333pt;}
.yc8{bottom:641.853333pt;}
.y57{bottom:646.813333pt;}
.y83{bottom:650.973333pt;}
.yb4{bottom:654.013333pt;}
.y11{bottom:654.813333pt;}
.yc7{bottom:657.053333pt;}
.y56{bottom:662.173333pt;}
.y82{bottom:666.333333pt;}
.yb3{bottom:669.373333pt;}
.yc6{bottom:672.413333pt;}
.y55{bottom:677.533333pt;}
.y10{bottom:680.573333pt;}
.y81{bottom:681.693333pt;}
.yb2{bottom:684.733333pt;}
.yc5{bottom:687.133333pt;}
.y54{bottom:692.893333pt;}
.y80{bottom:696.253333pt;}
.yf{bottom:697.373333pt;}
.yc4{bottom:699.453333pt;}
.yb1{bottom:700.093333pt;}
.y53{bottom:708.093333pt;}
.y7f{bottom:708.573333pt;}
.yc2{bottom:710.013333pt;}
.yb0{bottom:714.653333pt;}
.ye{bottom:718.333333pt;}
.y7e{bottom:719.293333pt;}
.y52{bottom:723.453333pt;}
.yaf{bottom:726.973333pt;}
.y7d{bottom:732.293333pt;}
.yad{bottom:737.733333pt;}
.y51{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.y7c{bottom:747.013333pt;}
.yc1{bottom:747.653333pt;}
.y50{bottom:754.213333pt;}
.y7b{bottom:756.613333pt;}
.yc0{bottom:762.373333pt;}
.yac{bottom:762.853333pt;}
.y4f{bottom:769.573333pt;}
.ybf{bottom:771.973333pt;}
.yc{bottom:773.573333pt;}
.yab{bottom:777.733333pt;}
.y4e{bottom:784.933333pt;}
.yaa{bottom:787.333333pt;}
.y4d{bottom:800.133333pt;}
.yb{bottom:801.253333pt;}
.y4c{bottom:815.493333pt;}
.ya{bottom:826.853333pt;}
.y4b{bottom:830.853333pt;}
.y8{bottom:840.453333pt;}
.y4a{bottom:846.213333pt;}
.y49{bottom:861.573333pt;}
.y48{bottom:876.933333pt;}
.y47{bottom:892.133333pt;}
.y46{bottom:907.493333pt;}
.y45{bottom:922.853333pt;}
.y44{bottom:938.213333pt;}
.y43{bottom:953.600000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h1a{height:12.160000pt;}
.h1e{height:12.320000pt;}
.h1c{height:12.352000pt;}
.hd{height:15.360000pt;}
.h13{height:17.920000pt;}
.h19{height:22.578125pt;}
.h1d{height:23.140625pt;}
.h1f{height:24.480000pt;}
.h3{height:24.512000pt;}
.h20{height:29.773125pt;}
.h1b{height:30.254687pt;}
.h5{height:31.008437pt;}
.h17{height:33.867188pt;}
.h15{height:34.710938pt;}
.h6{height:34.965625pt;}
.h11{height:35.554688pt;}
.h21{height:36.832000pt;}
.he{height:37.479688pt;}
.h4{height:38.413438pt;}
.h18{height:38.672812pt;}
.h12{height:39.347188pt;}
.h2{height:40.021563pt;}
.hb{height:41.543750pt;}
.h8{height:42.578750pt;}
.h9{height:44.361250pt;}
.h1{height:45.156250pt;}
.h23{height:47.742188pt;}
.h24{height:47.869500pt;}
.h25{height:49.152000pt;}
.ha{height:67.734375pt;}
.hc{height:69.421875pt;}
.h14{height:82.720000pt;}
.h26{height:87.040000pt;}
.h16{height:105.632000pt;}
.h10{height:125.792000pt;}
.h7{height:136.826667pt;}
.hf{height:333.986667pt;}
.h22{height:350.240000pt;}
.h0{height:1056.000000pt;}
.w2{width:34.752000pt;}
.we{width:37.952000pt;}
.w8{width:38.112000pt;}
.wb{width:44.512000pt;}
.w18{width:63.360000pt;}
.w14{width:93.792000pt;}
.w11{width:99.552000pt;}
.w10{width:112.672000pt;}
.w12{width:116.480000pt;}
.w13{width:116.800000pt;}
.w15{width:123.200000pt;}
.wf{width:131.040000pt;}
.w9{width:134.080000pt;}
.wa{width:135.840000pt;}
.wc{width:157.760000pt;}
.wd{width:159.520000pt;}
.w7{width:166.080000pt;}
.w6{width:195.706667pt;}
.w19{width:273.506667pt;}
.w17{width:337.506667pt;}
.w5{width:522.973333pt;}
.w16{width:571.680000pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.760000pt;}
.x3{left:7.520000pt;}
.x2e{left:8.800000pt;}
.x20{left:10.080000pt;}
.x30{left:11.360000pt;}
.x1c{left:13.600000pt;}
.x2d{left:16.000000pt;}
.x10{left:17.760000pt;}
.x32{left:20.000000pt;}
.x28{left:21.440000pt;}
.x27{left:23.200000pt;}
.x14{left:24.320000pt;}
.x31{left:28.000000pt;}
.x12{left:30.280000pt;}
.x13{left:31.880000pt;}
.x2a{left:35.072000pt;}
.x22{left:36.640000pt;}
.x6{left:40.480000pt;}
.x2f{left:43.392000pt;}
.x1e{left:46.560000pt;}
.x2{left:47.999988pt;}
.x1{left:53.919988pt;}
.x29{left:56.000000pt;}
.x15{left:58.239988pt;}
.x19{left:61.600000pt;}
.x9{left:62.559988pt;}
.x23{left:66.880000pt;}
.x16{left:78.399988pt;}
.x4{left:89.632000pt;}
.x46{left:93.440000pt;}
.x47{left:94.880000pt;}
.x5{left:96.031988pt;}
.x3b{left:124.640000pt;}
.x42{left:167.520000pt;}
.x2b{left:172.026667pt;}
.x3f{left:196.133333pt;}
.xa{left:208.186655pt;}
.x43{left:226.013333pt;}
.x39{left:227.706655pt;}
.x3c{left:239.226667pt;}
.x2c{left:272.226667pt;}
.xd{left:278.466655pt;}
.xc{left:369.186655pt;}
.x8{left:408.066655pt;}
.x3a{left:410.626655pt;}
.xb{left:412.706655pt;}
.xe{left:413.666655pt;}
.x37{left:420.226655pt;}
.x17{left:425.186655pt;}
.x34{left:426.493333pt;}
.x18{left:430.653333pt;}
.x45{left:436.573333pt;}
.x40{left:439.040000pt;}
.x44{left:450.493321pt;}
.x41{left:455.333333pt;}
.x3d{left:457.280000pt;}
.x24{left:464.733321pt;}
.x33{left:489.853321pt;}
.x3e{left:493.093333pt;}
.x48{left:500.573333pt;}
.x1d{left:515.293321pt;}
.x35{left:544.093333pt;}
.x38{left:546.333321pt;}
.x1f{left:567.293333pt;}
.xf{left:570.973333pt;}
.x25{left:590.973333pt;}
.x1a{left:597.373333pt;}
.x21{left:612.453333pt;}
.x26{left:629.733333pt;}
.x1b{left:636.133333pt;}
.x36{left:638.533333pt;}
.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; }
  