
    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_7f789e80ea556d3a41642fd8.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4fa18cb03051886a81728560.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_c626aa00ddef2a8b7518c9c2.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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e7d75b6129b22020786eee17.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f4ea1f934416b885233b9e43.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.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_16650580c90efb08660818d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018720px;}
.lsb{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.109440px;}
.ls4{letter-spacing:0.180000px;}
.lse{letter-spacing:0.233280px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.540000px;}
.ls11{letter-spacing:16.506720px;}
.ls3{letter-spacing:26.586720px;}
.lsa{letter-spacing:26.730720px;}
.ls10{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:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.680200px;}
.ws2{word-spacing:-14.580000px;}
.ws4{word-spacing:-10.440000px;}
.ws6{word-spacing:-10.080000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._d{margin-left:-4.400400px;}
._c{margin-left:-2.185920px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._11{width:3.197760px;}
._1e{width:4.212480px;}
._10{width:5.318640px;}
._f{width:6.334560px;}
._14{width:7.410240px;}
._1d{width:8.452800px;}
._3{width:9.540000px;}
._18{width:10.995840px;}
._1{width:12.420000px;}
._e{width:13.850400px;}
._22{width:15.955920px;}
._15{width:17.031600px;}
._1c{width:18.884160px;}
._21{width:20.318400px;}
._1a{width:22.204320px;}
._19{width:23.286720px;}
._20{width:24.526800px;}
._13{width:26.269200px;}
._12{width:27.429840px;}
._1b{width:28.923840px;}
._2d{width:30.059280px;}
._23{width:31.194720px;}
._24{width:32.389920px;}
._29{width:33.764400px;}
._16{width:34.959600px;}
._17{width:36.214560px;}
._25{width:37.887840px;}
._26{width:39.202560px;}
._34{width:40.218480px;}
._28{width:41.353920px;}
._27{width:42.429600px;}
._2e{width:43.804080px;}
._2f{width:44.999280px;}
._1f{width:46.433520px;}
._32{width:47.509200px;}
._33{width:48.764160px;}
._3c{width:50.402880px;}
._31{width:51.428160px;}
._30{width:52.588800px;}
._2b{width:53.903520px;}
._2c{width:55.038960px;}
._3a{width:57.011040px;}
._3d{width:60.775920px;}
._3e{width:63.527520px;}
._2a{width:70.033680px;}
._3f{width:75.796560px;}
._35{width:78.285600px;}
._8{width:88.200000px;}
._37{width:93.106080px;}
._36{width:94.540320px;}
._6{width:97.380000px;}
._39{width:101.412720px;}
._0{width:102.600000px;}
._38{width:103.982400px;}
._9{width:108.180000px;}
._3b{width:145.276560px;}
._2{width:165.060000px;}
._5{width:183.960000px;}
._a{width:229.860000px;}
._7{width:296.820000px;}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.060000px;}
.y29{bottom:5.760000px;}
.y2c{bottom:5.940000px;}
.y10{bottom:7.020000px;}
.y19{bottom:8.820000px;}
.y8{bottom:12.420000px;}
.yd{bottom:13.140000px;}
.yc1{bottom:15.660000px;}
.ybd{bottom:15.840000px;}
.y28{bottom:25.560000px;}
.y2b{bottom:25.740000px;}
.ybc{bottom:35.640000px;}
.y7{bottom:36.720000px;}
.y11{bottom:38.880000px;}
.yc{bottom:41.940000px;}
.y27{bottom:45.540000px;}
.yf{bottom:53.280000px;}
.y6{bottom:61.020000px;}
.y26{bottom:65.340000px;}
.yb{bottom:70.920000px;}
.ye1{bottom:80.640000px;}
.y5{bottom:82.290000px;}
.y25{bottom:85.170000px;}
.y75{bottom:86.580000px;}
.ya{bottom:90.210000px;}
.y10a{bottom:90.360000px;}
.y41{bottom:95.400000px;}
.yba{bottom:95.580000px;}
.y99{bottom:97.380000px;}
.ye0{bottom:100.440000px;}
.y4{bottom:104.790000px;}
.y24{bottom:104.970000px;}
.y74{bottom:106.380000px;}
.y9{bottom:108.030000px;}
.y109{bottom:110.160000px;}
.y40{bottom:115.200000px;}
.yb9{bottom:115.380000px;}
.y98{bottom:117.180000px;}
.ydf{bottom:120.240000px;}
.y3{bottom:124.590000px;}
.y23{bottom:124.770000px;}
.y73{bottom:126.180000px;}
.y108{bottom:129.960000px;}
.y3f{bottom:135.180000px;}
.y97{bottom:136.980000px;}
.yde{bottom:140.040000px;}
.y22{bottom:144.750000px;}
.y72{bottom:145.980000px;}
.y107{bottom:149.760000px;}
.y3e{bottom:155.010000px;}
.y96{bottom:156.990000px;}
.ydd{bottom:159.870000px;}
.y21{bottom:164.550000px;}
.y71{bottom:165.990000px;}
.y106{bottom:169.590000px;}
.y3d{bottom:174.810000px;}
.yb8{bottom:174.990000px;}
.y95{bottom:176.790000px;}
.ydc{bottom:179.850000px;}
.y20{bottom:184.350000px;}
.y70{bottom:185.790000px;}
.y105{bottom:189.570000px;}
.y3c{bottom:194.610000px;}
.yb7{bottom:194.790000px;}
.y94{bottom:196.590000px;}
.ydb{bottom:199.650000px;}
.y1f{bottom:204.150000px;}
.y104{bottom:209.370000px;}
.y3b{bottom:214.410000px;}
.y6f{bottom:214.590000px;}
.y93{bottom:216.390000px;}
.yda{bottom:219.450000px;}
.y1e{bottom:223.950000px;}
.y103{bottom:229.170000px;}
.y3a{bottom:234.390000px;}
.y92{bottom:236.190000px;}
.yd9{bottom:239.250000px;}
.y1d{bottom:243.930000px;}
.y102{bottom:248.970000px;}
.y39{bottom:254.190000px;}
.y91{bottom:256.170000px;}
.yd8{bottom:259.050000px;}
.y1c{bottom:263.730000px;}
.y101{bottom:268.770000px;}
.y38{bottom:273.990000px;}
.y6e{bottom:274.170000px;}
.y90{bottom:275.970000px;}
.yd7{bottom:279.030000px;}
.y1b{bottom:283.530000px;}
.y100{bottom:288.750000px;}
.y37{bottom:293.790000px;}
.y6d{bottom:293.970000px;}
.y8f{bottom:295.770000px;}
.yd6{bottom:298.830000px;}
.yff{bottom:308.550000px;}
.y36{bottom:313.590000px;}
.y6c{bottom:313.770000px;}
.y8e{bottom:315.570000px;}
.yd5{bottom:318.630000px;}
.yfe{bottom:328.350000px;}
.y35{bottom:333.390000px;}
.y6b{bottom:333.570000px;}
.y8d{bottom:335.370000px;}
.yd4{bottom:338.430000px;}
.yfd{bottom:348.150000px;}
.y34{bottom:353.370000px;}
.y8c{bottom:355.350000px;}
.yd3{bottom:358.230000px;}
.yfc{bottom:367.950000px;}
.y33{bottom:373.170000px;}
.y6a{bottom:373.350000px;}
.yb6{bottom:375.150000px;}
.yd2{bottom:378.030000px;}
.y8b{bottom:384.150000px;}
.yfb{bottom:387.930000px;}
.y32{bottom:392.970000px;}
.y69{bottom:393.150000px;}
.yb5{bottom:394.950000px;}
.yd1{bottom:398.010000px;}
.y8a{bottom:403.995000px;}
.yfa{bottom:407.775000px;}
.y31{bottom:412.815000px;}
.y68{bottom:412.995000px;}
.yb4{bottom:414.795000px;}
.yd0{bottom:417.855000px;}
.y89{bottom:423.795000px;}
.yf9{bottom:427.575000px;}
.y30{bottom:432.615000px;}
.y67{bottom:432.795000px;}
.yb3{bottom:434.595000px;}
.y88{bottom:443.595000px;}
.yf8{bottom:447.375000px;}
.y2f{bottom:452.595000px;}
.yb2{bottom:454.575000px;}
.y87{bottom:463.575000px;}
.yf7{bottom:467.175000px;}
.y2e{bottom:472.395000px;}
.y66{bottom:472.575000px;}
.ycf{bottom:473.115000px;}
.yb1{bottom:474.375000px;}
.y86{bottom:483.375000px;}
.yf6{bottom:487.155000px;}
.y2d{bottom:492.195000px;}
.y65{bottom:492.375000px;}
.yb0{bottom:494.175000px;}
.y85{bottom:503.175000px;}
.yf5{bottom:506.955000px;}
.y64{bottom:512.175000px;}
.yce{bottom:513.435000px;}
.yaf{bottom:513.975000px;}
.y84{bottom:522.975000px;}
.y2a{bottom:526.755000px;}
.y63{bottom:531.975000px;}
.yae{bottom:533.775000px;}
.y83{bottom:542.775000px;}
.yf4{bottom:546.555000px;}
.y62{bottom:551.775000px;}
.yad{bottom:553.755000px;}
.ycd{bottom:553.935000px;}
.y82{bottom:562.755000px;}
.yf3{bottom:566.355000px;}
.y1a{bottom:567.255000px;}
.y61{bottom:571.755000px;}
.yac{bottom:573.555000px;}
.ycc{bottom:574.455000px;}
.y81{bottom:582.555000px;}
.yf2{bottom:586.335000px;}
.y60{bottom:591.555000px;}
.yab{bottom:593.355000px;}
.ycb{bottom:594.975000px;}
.y80{bottom:602.355000px;}
.yf1{bottom:606.135000px;}
.y5f{bottom:611.355000px;}
.yaa{bottom:613.155000px;}
.yca{bottom:615.675000px;}
.y7f{bottom:622.155000px;}
.yf0{bottom:625.935000px;}
.y5e{bottom:631.155000px;}
.ya9{bottom:632.955000px;}
.y7e{bottom:641.955000px;}
.yef{bottom:645.735000px;}
.y5d{bottom:650.985000px;}
.ya8{bottom:652.965000px;}
.yc9{bottom:656.025000px;}
.y7d{bottom:661.965000px;}
.yee{bottom:665.565000px;}
.y5c{bottom:670.965000px;}
.ya7{bottom:672.765000px;}
.y7c{bottom:681.765000px;}
.yed{bottom:685.545000px;}
.y5b{bottom:690.765000px;}
.yc8{bottom:696.525000px;}
.y7b{bottom:701.565000px;}
.yec{bottom:705.345000px;}
.y5a{bottom:710.565000px;}
.y7a{bottom:721.365000px;}
.yeb{bottom:725.145000px;}
.y59{bottom:730.365000px;}
.yc7{bottom:737.025000px;}
.y79{bottom:741.165000px;}
.yea{bottom:744.945000px;}
.y58{bottom:750.165000px;}
.yc6{bottom:757.545000px;}
.y78{bottom:761.145000px;}
.ye9{bottom:764.745000px;}
.y57{bottom:770.145000px;}
.yc5{bottom:778.065000px;}
.y77{bottom:780.945000px;}
.ye8{bottom:784.725000px;}
.y56{bottom:789.945000px;}
.yc4{bottom:798.765000px;}
.ye7{bottom:799.485000px;}
.y76{bottom:800.745000px;}
.y55{bottom:809.745000px;}
.ya6{bottom:820.545000px;}
.y54{bottom:829.545000px;}
.yc3{bottom:839.085000px;}
.ye6{bottom:839.805000px;}
.ya5{bottom:840.345000px;}
.y53{bottom:849.345000px;}
.ya4{bottom:860.325000px;}
.ye5{bottom:860.505000px;}
.y18{bottom:865.545000px;}
.y52{bottom:869.325000px;}
.yc2{bottom:879.585000px;}
.ya3{bottom:880.125000px;}
.ye4{bottom:881.025000px;}
.y51{bottom:889.125000px;}
.ya2{bottom:899.970000px;}
.yc0{bottom:900.150000px;}
.ye3{bottom:901.590000px;}
.y50{bottom:908.970000px;}
.y17{bottom:909.330000px;}
.ya1{bottom:919.770000px;}
.ye2{bottom:922.290000px;}
.y4f{bottom:928.770000px;}
.y16{bottom:929.130000px;}
.ya0{bottom:939.570000px;}
.ybf{bottom:940.650000px;}
.y15{bottom:944.250000px;}
.y4e{bottom:948.570000px;}
.y9f{bottom:959.550000px;}
.ybe{bottom:961.170000px;}
.y14{bottom:965.490000px;}
.y4d{bottom:968.550000px;}
.y9e{bottom:979.350000px;}
.ybb{bottom:981.690000px;}
.y4c{bottom:988.350000px;}
.y13{bottom:989.070000px;}
.y9d{bottom:999.150000px;}
.y4b{bottom:1008.150000px;}
.y9c{bottom:1018.950000px;}
.y12{bottom:1020.750000px;}
.y4a{bottom:1027.950000px;}
.y9b{bottom:1038.750000px;}
.ye{bottom:1047.570000px;}
.y49{bottom:1047.750000px;}
.y9a{bottom:1058.730000px;}
.y48{bottom:1067.730000px;}
.y1{bottom:1069.890000px;}
.y47{bottom:1087.530000px;}
.y46{bottom:1107.330000px;}
.y45{bottom:1127.130000px;}
.y44{bottom:1146.960000px;}
.y43{bottom:1166.940000px;}
.y42{bottom:1193.400000px;}
.h3{height:2.373750px;}
.h18{height:19.800000px;}
.h19{height:19.836000px;}
.h1c{height:19.980000px;}
.ha{height:22.320000px;}
.h10{height:22.860000px;}
.hf{height:27.147656px;}
.h8{height:37.705078px;}
.h1a{height:39.600000px;}
.h1b{height:39.636000px;}
.h12{height:39.780000px;}
.h6{height:41.726953px;}
.h4{height:42.164648px;}
.h13{height:43.506914px;}
.h14{height:46.251562px;}
.hb{height:46.736719px;}
.h15{height:48.496641px;}
.h16{height:49.255313px;}
.h7{height:50.273438px;}
.h5{height:50.800781px;}
.hc{height:53.224453px;}
.hd{height:59.439023px;}
.h17{height:59.580000px;}
.h9{height:65.884219px;}
.he{height:67.565039px;}
.h2{height:138.636000px;}
.h11{height:297.570000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:54.036000px;}
.we{width:73.800000px;}
.wd{width:84.780000px;}
.wc{width:95.796000px;}
.w10{width:106.236000px;}
.wb{width:124.416000px;}
.wf{width:148.140000px;}
.w4{width:158.970000px;}
.w2{width:172.830000px;}
.w8{width:192.270000px;}
.w3{width:464.865000px;}
.w9{width:585.510000px;}
.w7{width:746.610000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x4{left:38.340000px;}
.xc{left:45.900000px;}
.x1{left:48.240000px;}
.xb{left:53.999987px;}
.xe{left:57.600000px;}
.xa{left:62.100000px;}
.x6{left:80.865000px;}
.xd{left:100.656000px;}
.x1a{left:108.035987px;}
.x7{left:133.605000px;}
.x2{left:160.050000px;}
.x11{left:168.509987px;}
.x12{left:171.390000px;}
.x3{left:221.070000px;}
.x5{left:248.295000px;}
.xf{left:249.870000px;}
.x13{left:267.915000px;}
.x14{left:353.415000px;}
.x10{left:473.504987px;}
.x15{left:475.305000px;}
.x18{left:500.504987px;}
.x19{left:527.504987px;}
.x16{left:624.165000px;}
.x8{left:685.950000px;}
.x17{left:731.310000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016640pt;}
.lsb{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.097280pt;}
.ls4{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.207360pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.480000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls3{letter-spacing:23.632640pt;}
.lsa{letter-spacing:23.760640pt;}
.ls10{letter-spacing:40.912640pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.ws7{word-spacing:-13.096533pt;}
.ws9{word-spacing:-13.049067pt;}
.ws2{word-spacing:-12.960000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.960000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._d{margin-left:-3.911467pt;}
._c{margin-left:-1.943040pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._11{width:2.842453pt;}
._1e{width:3.744427pt;}
._10{width:4.727680pt;}
._f{width:5.630720pt;}
._14{width:6.586880pt;}
._1d{width:7.513600pt;}
._3{width:8.480000pt;}
._18{width:9.774080pt;}
._1{width:11.040000pt;}
._e{width:12.311467pt;}
._22{width:14.183040pt;}
._15{width:15.139200pt;}
._1c{width:16.785920pt;}
._21{width:18.060800pt;}
._1a{width:19.737173pt;}
._19{width:20.699307pt;}
._20{width:21.801600pt;}
._13{width:23.350400pt;}
._12{width:24.382080pt;}
._1b{width:25.710080pt;}
._2d{width:26.719360pt;}
._23{width:27.728640pt;}
._24{width:28.791040pt;}
._29{width:30.012800pt;}
._16{width:31.075200pt;}
._17{width:32.190720pt;}
._25{width:33.678080pt;}
._26{width:34.846720pt;}
._34{width:35.749760pt;}
._28{width:36.759040pt;}
._27{width:37.715200pt;}
._2e{width:38.936960pt;}
._2f{width:39.999360pt;}
._1f{width:41.274240pt;}
._32{width:42.230400pt;}
._33{width:43.345920pt;}
._3c{width:44.802560pt;}
._31{width:45.713920pt;}
._30{width:46.745600pt;}
._2b{width:47.914240pt;}
._2c{width:48.923520pt;}
._3a{width:50.676480pt;}
._3d{width:54.023040pt;}
._3e{width:56.468907pt;}
._2a{width:62.252160pt;}
._3f{width:67.374720pt;}
._35{width:69.587200pt;}
._8{width:78.400000pt;}
._37{width:82.760960pt;}
._36{width:84.035840pt;}
._6{width:86.560000pt;}
._39{width:90.144640pt;}
._0{width:91.200000pt;}
._38{width:92.428800pt;}
._9{width:96.160000pt;}
._3b{width:129.134720pt;}
._2{width:146.720000pt;}
._5{width:163.520000pt;}
._a{width:204.320000pt;}
._7{width:263.840000pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.720000pt;}
.y29{bottom:5.120000pt;}
.y2c{bottom:5.280000pt;}
.y10{bottom:6.240000pt;}
.y19{bottom:7.840000pt;}
.y8{bottom:11.040000pt;}
.yd{bottom:11.680000pt;}
.yc1{bottom:13.920000pt;}
.ybd{bottom:14.080000pt;}
.y28{bottom:22.720000pt;}
.y2b{bottom:22.880000pt;}
.ybc{bottom:31.680000pt;}
.y7{bottom:32.640000pt;}
.y11{bottom:34.560000pt;}
.yc{bottom:37.280000pt;}
.y27{bottom:40.480000pt;}
.yf{bottom:47.360000pt;}
.y6{bottom:54.240000pt;}
.y26{bottom:58.080000pt;}
.yb{bottom:63.040000pt;}
.ye1{bottom:71.680000pt;}
.y5{bottom:73.146667pt;}
.y25{bottom:75.706667pt;}
.y75{bottom:76.960000pt;}
.ya{bottom:80.186667pt;}
.y10a{bottom:80.320000pt;}
.y41{bottom:84.800000pt;}
.yba{bottom:84.960000pt;}
.y99{bottom:86.560000pt;}
.ye0{bottom:89.280000pt;}
.y4{bottom:93.146667pt;}
.y24{bottom:93.306667pt;}
.y74{bottom:94.560000pt;}
.y9{bottom:96.026667pt;}
.y109{bottom:97.920000pt;}
.y40{bottom:102.400000pt;}
.yb9{bottom:102.560000pt;}
.y98{bottom:104.160000pt;}
.ydf{bottom:106.880000pt;}
.y3{bottom:110.746667pt;}
.y23{bottom:110.906667pt;}
.y73{bottom:112.160000pt;}
.y108{bottom:115.520000pt;}
.y3f{bottom:120.160000pt;}
.y97{bottom:121.760000pt;}
.yde{bottom:124.480000pt;}
.y22{bottom:128.666667pt;}
.y72{bottom:129.760000pt;}
.y107{bottom:133.120000pt;}
.y3e{bottom:137.786667pt;}
.y96{bottom:139.546667pt;}
.ydd{bottom:142.106667pt;}
.y21{bottom:146.266667pt;}
.y71{bottom:147.546667pt;}
.y106{bottom:150.746667pt;}
.y3d{bottom:155.386667pt;}
.yb8{bottom:155.546667pt;}
.y95{bottom:157.146667pt;}
.ydc{bottom:159.866667pt;}
.y20{bottom:163.866667pt;}
.y70{bottom:165.146667pt;}
.y105{bottom:168.506667pt;}
.y3c{bottom:172.986667pt;}
.yb7{bottom:173.146667pt;}
.y94{bottom:174.746667pt;}
.ydb{bottom:177.466667pt;}
.y1f{bottom:181.466667pt;}
.y104{bottom:186.106667pt;}
.y3b{bottom:190.586667pt;}
.y6f{bottom:190.746667pt;}
.y93{bottom:192.346667pt;}
.yda{bottom:195.066667pt;}
.y1e{bottom:199.066667pt;}
.y103{bottom:203.706667pt;}
.y3a{bottom:208.346667pt;}
.y92{bottom:209.946667pt;}
.yd9{bottom:212.666667pt;}
.y1d{bottom:216.826667pt;}
.y102{bottom:221.306667pt;}
.y39{bottom:225.946667pt;}
.y91{bottom:227.706667pt;}
.yd8{bottom:230.266667pt;}
.y1c{bottom:234.426667pt;}
.y101{bottom:238.906667pt;}
.y38{bottom:243.546667pt;}
.y6e{bottom:243.706667pt;}
.y90{bottom:245.306667pt;}
.yd7{bottom:248.026667pt;}
.y1b{bottom:252.026667pt;}
.y100{bottom:256.666667pt;}
.y37{bottom:261.146667pt;}
.y6d{bottom:261.306667pt;}
.y8f{bottom:262.906667pt;}
.yd6{bottom:265.626667pt;}
.yff{bottom:274.266667pt;}
.y36{bottom:278.746667pt;}
.y6c{bottom:278.906667pt;}
.y8e{bottom:280.506667pt;}
.yd5{bottom:283.226667pt;}
.yfe{bottom:291.866667pt;}
.y35{bottom:296.346667pt;}
.y6b{bottom:296.506667pt;}
.y8d{bottom:298.106667pt;}
.yd4{bottom:300.826667pt;}
.yfd{bottom:309.466667pt;}
.y34{bottom:314.106667pt;}
.y8c{bottom:315.866667pt;}
.yd3{bottom:318.426667pt;}
.yfc{bottom:327.066667pt;}
.y33{bottom:331.706667pt;}
.y6a{bottom:331.866667pt;}
.yb6{bottom:333.466667pt;}
.yd2{bottom:336.026667pt;}
.y8b{bottom:341.466667pt;}
.yfb{bottom:344.826667pt;}
.y32{bottom:349.306667pt;}
.y69{bottom:349.466667pt;}
.yb5{bottom:351.066667pt;}
.yd1{bottom:353.786667pt;}
.y8a{bottom:359.106667pt;}
.yfa{bottom:362.466667pt;}
.y31{bottom:366.946667pt;}
.y68{bottom:367.106667pt;}
.yb4{bottom:368.706667pt;}
.yd0{bottom:371.426667pt;}
.y89{bottom:376.706667pt;}
.yf9{bottom:380.066667pt;}
.y30{bottom:384.546667pt;}
.y67{bottom:384.706667pt;}
.yb3{bottom:386.306667pt;}
.y88{bottom:394.306667pt;}
.yf8{bottom:397.666667pt;}
.y2f{bottom:402.306667pt;}
.yb2{bottom:404.066667pt;}
.y87{bottom:412.066667pt;}
.yf7{bottom:415.266667pt;}
.y2e{bottom:419.906667pt;}
.y66{bottom:420.066667pt;}
.ycf{bottom:420.546667pt;}
.yb1{bottom:421.666667pt;}
.y86{bottom:429.666667pt;}
.yf6{bottom:433.026667pt;}
.y2d{bottom:437.506667pt;}
.y65{bottom:437.666667pt;}
.yb0{bottom:439.266667pt;}
.y85{bottom:447.266667pt;}
.yf5{bottom:450.626667pt;}
.y64{bottom:455.266667pt;}
.yce{bottom:456.386667pt;}
.yaf{bottom:456.866667pt;}
.y84{bottom:464.866667pt;}
.y2a{bottom:468.226667pt;}
.y63{bottom:472.866667pt;}
.yae{bottom:474.466667pt;}
.y83{bottom:482.466667pt;}
.yf4{bottom:485.826667pt;}
.y62{bottom:490.466667pt;}
.yad{bottom:492.226667pt;}
.ycd{bottom:492.386667pt;}
.y82{bottom:500.226667pt;}
.yf3{bottom:503.426667pt;}
.y1a{bottom:504.226667pt;}
.y61{bottom:508.226667pt;}
.yac{bottom:509.826667pt;}
.ycc{bottom:510.626667pt;}
.y81{bottom:517.826667pt;}
.yf2{bottom:521.186667pt;}
.y60{bottom:525.826667pt;}
.yab{bottom:527.426667pt;}
.ycb{bottom:528.866667pt;}
.y80{bottom:535.426667pt;}
.yf1{bottom:538.786667pt;}
.y5f{bottom:543.426667pt;}
.yaa{bottom:545.026667pt;}
.yca{bottom:547.266667pt;}
.y7f{bottom:553.026667pt;}
.yf0{bottom:556.386667pt;}
.y5e{bottom:561.026667pt;}
.ya9{bottom:562.626667pt;}
.y7e{bottom:570.626667pt;}
.yef{bottom:573.986667pt;}
.y5d{bottom:578.653333pt;}
.ya8{bottom:580.413333pt;}
.yc9{bottom:583.133333pt;}
.y7d{bottom:588.413333pt;}
.yee{bottom:591.613333pt;}
.y5c{bottom:596.413333pt;}
.ya7{bottom:598.013333pt;}
.y7c{bottom:606.013333pt;}
.yed{bottom:609.373333pt;}
.y5b{bottom:614.013333pt;}
.yc8{bottom:619.133333pt;}
.y7b{bottom:623.613333pt;}
.yec{bottom:626.973333pt;}
.y5a{bottom:631.613333pt;}
.y7a{bottom:641.213333pt;}
.yeb{bottom:644.573333pt;}
.y59{bottom:649.213333pt;}
.yc7{bottom:655.133333pt;}
.y79{bottom:658.813333pt;}
.yea{bottom:662.173333pt;}
.y58{bottom:666.813333pt;}
.yc6{bottom:673.373333pt;}
.y78{bottom:676.573333pt;}
.ye9{bottom:679.773333pt;}
.y57{bottom:684.573333pt;}
.yc5{bottom:691.613333pt;}
.y77{bottom:694.173333pt;}
.ye8{bottom:697.533333pt;}
.y56{bottom:702.173333pt;}
.yc4{bottom:710.013333pt;}
.ye7{bottom:710.653333pt;}
.y76{bottom:711.773333pt;}
.y55{bottom:719.773333pt;}
.ya6{bottom:729.373333pt;}
.y54{bottom:737.373333pt;}
.yc3{bottom:745.853333pt;}
.ye6{bottom:746.493333pt;}
.ya5{bottom:746.973333pt;}
.y53{bottom:754.973333pt;}
.ya4{bottom:764.733333pt;}
.ye5{bottom:764.893333pt;}
.y18{bottom:769.373333pt;}
.y52{bottom:772.733333pt;}
.yc2{bottom:781.853333pt;}
.ya3{bottom:782.333333pt;}
.ye4{bottom:783.133333pt;}
.y51{bottom:790.333333pt;}
.ya2{bottom:799.973333pt;}
.yc0{bottom:800.133333pt;}
.ye3{bottom:801.413333pt;}
.y50{bottom:807.973333pt;}
.y17{bottom:808.293333pt;}
.ya1{bottom:817.573333pt;}
.ye2{bottom:819.813333pt;}
.y4f{bottom:825.573333pt;}
.y16{bottom:825.893333pt;}
.ya0{bottom:835.173333pt;}
.ybf{bottom:836.133333pt;}
.y15{bottom:839.333333pt;}
.y4e{bottom:843.173333pt;}
.y9f{bottom:852.933333pt;}
.ybe{bottom:854.373333pt;}
.y14{bottom:858.213333pt;}
.y4d{bottom:860.933333pt;}
.y9e{bottom:870.533333pt;}
.ybb{bottom:872.613333pt;}
.y4c{bottom:878.533333pt;}
.y13{bottom:879.173333pt;}
.y9d{bottom:888.133333pt;}
.y4b{bottom:896.133333pt;}
.y9c{bottom:905.733333pt;}
.y12{bottom:907.333333pt;}
.y4a{bottom:913.733333pt;}
.y9b{bottom:923.333333pt;}
.ye{bottom:931.173333pt;}
.y49{bottom:931.333333pt;}
.y9a{bottom:941.093333pt;}
.y48{bottom:949.093333pt;}
.y1{bottom:951.013333pt;}
.y47{bottom:966.693333pt;}
.y46{bottom:984.293333pt;}
.y45{bottom:1001.893333pt;}
.y44{bottom:1019.520000pt;}
.y43{bottom:1037.280000pt;}
.y42{bottom:1060.800000pt;}
.h3{height:2.110000pt;}
.h18{height:17.600000pt;}
.h19{height:17.632000pt;}
.h1c{height:17.760000pt;}
.ha{height:19.840000pt;}
.h10{height:20.320000pt;}
.hf{height:24.131250pt;}
.h8{height:33.515625pt;}
.h1a{height:35.200000pt;}
.h1b{height:35.232000pt;}
.h12{height:35.360000pt;}
.h6{height:37.090625pt;}
.h4{height:37.479688pt;}
.h13{height:38.672812pt;}
.h14{height:41.112500pt;}
.hb{height:41.543750pt;}
.h15{height:43.108125pt;}
.h16{height:43.782500pt;}
.h7{height:44.687500pt;}
.h5{height:45.156250pt;}
.hc{height:47.310625pt;}
.hd{height:52.834688pt;}
.h17{height:52.960000pt;}
.h9{height:58.563750pt;}
.he{height:60.057813pt;}
.h2{height:123.232000pt;}
.h11{height:264.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:48.032000pt;}
.we{width:65.600000pt;}
.wd{width:75.360000pt;}
.wc{width:85.152000pt;}
.w10{width:94.432000pt;}
.wb{width:110.592000pt;}
.wf{width:131.680000pt;}
.w4{width:141.306667pt;}
.w2{width:153.626667pt;}
.w8{width:170.906667pt;}
.w3{width:413.213333pt;}
.w9{width:520.453333pt;}
.w7{width:663.653333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x4{left:34.080000pt;}
.xc{left:40.800000pt;}
.x1{left:42.880000pt;}
.xb{left:47.999988pt;}
.xe{left:51.200000pt;}
.xa{left:55.200000pt;}
.x6{left:71.880000pt;}
.xd{left:89.472000pt;}
.x1a{left:96.031988pt;}
.x7{left:118.760000pt;}
.x2{left:142.266667pt;}
.x11{left:149.786655pt;}
.x12{left:152.346667pt;}
.x3{left:196.506667pt;}
.x5{left:220.706667pt;}
.xf{left:222.106667pt;}
.x13{left:238.146667pt;}
.x14{left:314.146667pt;}
.x10{left:420.893322pt;}
.x15{left:422.493333pt;}
.x18{left:444.893322pt;}
.x19{left:468.893322pt;}
.x16{left:554.813333pt;}
.x8{left:609.733333pt;}
.x17{left:650.053333pt;}
}




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