
    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_df74257d7ff9258cb806d020.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_383ce2d2bb42fbd87beb9bbc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f30fa2b312bedb9c634d85d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7dab281ba6c026a452b5227e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_91561ab4243fdd0553f420ec.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e991c66bf0ce046962761208.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_bdb36c97237f31423522f1a7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ca76fb4ff067a98c0e2f0057.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_2209df74b4aed4f9bb2a3c84.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747000;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;}
.ls9{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.720000px;}
.ls1{letter-spacing:6.798240px;}
.ls2{letter-spacing:16.884000px;}
.ls0{letter-spacing:194.400000px;}
.ls7{letter-spacing:194.544000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.712000px;}
.ws3{word-spacing:-15.226440px;}
.ws1{word-spacing:0.000000px;}
._1d{margin-left:-6.468000px;}
._15{margin-left:-4.392000px;}
._2{margin-left:-3.024000px;}
._0{margin-left:-1.080000px;}
._1{width:1.344000px;}
._16{width:2.448000px;}
._7{width:3.600000px;}
._8{width:4.824000px;}
._b{width:6.264000px;}
._f{width:7.632000px;}
._6{width:9.144000px;}
._17{width:10.512000px;}
._19{width:12.024000px;}
._3{width:13.032000px;}
._4{width:14.760000px;}
._5{width:16.356000px;}
._9{width:19.584000px;}
._1a{width:20.664000px;}
._1c{width:21.672000px;}
._18{width:23.616000px;}
._c{width:24.768000px;}
._d{width:25.800000px;}
._e{width:27.576000px;}
._11{width:29.352000px;}
._10{width:30.384000px;}
._1b{width:32.184000px;}
._a{width:33.696000px;}
._12{width:35.496000px;}
._14{width:38.448000px;}
._13{width:39.672000px;}
._21{width:40.896000px;}
._1e{width:43.272000px;}
._20{width:45.792000px;}
._1f{width:47.088000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.600000px;}
.y2{bottom:77.580000px;}
.y34{bottom:97.200000px;}
.yf6{bottom:99.360000px;}
.y113{bottom:105.300000px;}
.yc8{bottom:111.960000px;}
.y5a{bottom:112.860000px;}
.yf3{bottom:115.560000px;}
.y33{bottom:118.800000px;}
.ya6{bottom:122.220000px;}
.y150{bottom:122.760000px;}
.y32{bottom:124.740000px;}
.y130{bottom:126.720000px;}
.yeb{bottom:130.500000px;}
.yf2{bottom:131.580000px;}
.y59{bottom:133.560000px;}
.y112{bottom:136.440000px;}
.ya5{bottom:139.500000px;}
.y31{bottom:139.860000px;}
.yc7{bottom:143.100000px;}
.y91{bottom:146.520000px;}
.ydc{bottom:148.500000px;}
.y12f{bottom:150.480000px;}
.y58{bottom:154.260000px;}
.ya4{bottom:156.780000px;}
.y76{bottom:159.120000px;}
.yea{bottom:161.460000px;}
.y30{bottom:161.640000px;}
.yf1{bottom:162.540000px;}
.y111{bottom:167.400000px;}
.y2f{bottom:167.580000px;}
.ya3{bottom:173.880000px;}
.y12e{bottom:174.240000px;}
.y57{bottom:174.960000px;}
.y90{bottom:177.660000px;}
.ydb{bottom:179.460000px;}
.y2e{bottom:182.700000px;}
.y14f{bottom:185.430000px;}
.y75{bottom:190.110000px;}
.ya2{bottom:191.190000px;}
.yc6{bottom:192.270000px;}
.ye9{bottom:192.630000px;}
.yf0{bottom:193.710000px;}
.y56{bottom:195.690000px;}
.y12d{bottom:198.210000px;}
.y2d{bottom:203.250000px;}
.y2c{bottom:208.470000px;}
.y8f{bottom:208.650000px;}
.y14e{bottom:209.190000px;}
.yc5{bottom:209.550000px;}
.yda{bottom:210.630000px;}
.y55{bottom:216.390000px;}
.y110{bottom:219.630000px;}
.y74{bottom:221.250000px;}
.y12c{bottom:221.970000px;}
.ye8{bottom:223.590000px;}
.y2b{bottom:223.950000px;}
.yc4{bottom:226.830000px;}
.ya1{bottom:231.510000px;}
.y14d{bottom:232.950000px;}
.y8e{bottom:239.790000px;}
.yd9{bottom:241.590000px;}
.yc3{bottom:244.110000px;}
.y2a{bottom:245.730000px;}
.y54{bottom:247.350000px;}
.y10f{bottom:250.590000px;}
.y29{bottom:250.950000px;}
.ye7{bottom:254.730000px;}
.y14c{bottom:256.890000px;}
.y12b{bottom:260.670000px;}
.yc2{bottom:261.390000px;}
.ya0{bottom:262.650000px;}
.y28{bottom:266.790000px;}
.y73{bottom:267.330000px;}
.y8d{bottom:270.750000px;}
.yd8{bottom:272.730000px;}
.y53{bottom:278.490000px;}
.yc1{bottom:278.670000px;}
.y14b{bottom:280.650000px;}
.y10e{bottom:281.550000px;}
.y12a{bottom:284.610000px;}
.ye6{bottom:285.690000px;}
.y27{bottom:288.390000px;}
.y9f{bottom:293.610000px;}
.y26{bottom:294.330000px;}
.yc0{bottom:295.770000px;}
.y72{bottom:298.290000px;}
.y8c{bottom:301.890000px;}
.yd7{bottom:303.690000px;}
.y129{bottom:308.370000px;}
.y52{bottom:309.450000px;}
.y25{bottom:309.990000px;}
.y10d{bottom:312.690000px;}
.ybf{bottom:313.050000px;}
.ye5{bottom:316.830000px;}
.y14a{bottom:319.350000px;}
.y9e{bottom:324.750000px;}
.y71{bottom:329.250000px;}
.yf5{bottom:331.770000px;}
.y128{bottom:332.130000px;}
.y8b{bottom:332.850000px;}
.yd6{bottom:334.830000px;}
.y51{bottom:340.410000px;}
.y149{bottom:343.290000px;}
.y10c{bottom:343.650000px;}
.yec{bottom:347.790000px;}
.ybe{bottom:353.370000px;}
.y9d{bottom:355.710000px;}
.y24{bottom:356.790000px;}
.y70{bottom:360.390000px;}
.ye4{bottom:362.910000px;}
.yef{bottom:363.810000px;}
.y148{bottom:367.050000px;}
.y127{bottom:371.010000px;}
.y50{bottom:371.550000px;}
.y10b{bottom:374.790000px;}
.y23{bottom:377.490000px;}
.y8a{bottom:378.930000px;}
.yd5{bottom:380.910000px;}
.y9c{bottom:386.850000px;}
.y147{bottom:390.810000px;}
.y6f{bottom:391.350000px;}
.ye3{bottom:393.870000px;}
.y126{bottom:394.770000px;}
.yee{bottom:394.950000px;}
.ybd{bottom:396.390000px;}
.y22{bottom:398.190000px;}
.y4f{bottom:402.510000px;}
.y10a{bottom:405.750000px;}
.y89{bottom:409.890000px;}
.yd4{bottom:411.870000px;}
.y125{bottom:418.530000px;}
.y21{bottom:418.890000px;}
.y6e{bottom:422.490000px;}
.ye2{bottom:425.010000px;}
.y9b{bottom:426.135000px;}
.ybc{bottom:427.575000px;}
.y146{bottom:429.735000px;}
.y4e{bottom:433.695000px;}
.y20{bottom:439.635000px;}
.y88{bottom:441.075000px;}
.yd3{bottom:443.055000px;}
.y6d{bottom:453.495000px;}
.y4d{bottom:454.395000px;}
.y9a{bottom:456.015000px;}
.y124{bottom:457.455000px;}
.y109{bottom:457.995000px;}
.ybb{bottom:458.535000px;}
.y1f{bottom:460.335000px;}
.y87{bottom:472.035000px;}
.yd2{bottom:474.015000px;}
.y4c{bottom:475.095000px;}
.y145{bottom:477.255000px;}
.y1e{bottom:481.035000px;}
.y123{bottom:481.215000px;}
.y99{bottom:487.155000px;}
.y108{bottom:488.955000px;}
.yba{bottom:489.675000px;}
.y4b{bottom:495.795000px;}
.y6c{bottom:499.575000px;}
.y144{bottom:501.015000px;}
.y1d{bottom:501.735000px;}
.y86{bottom:503.175000px;}
.y122{bottom:504.975000px;}
.yd1{bottom:505.155000px;}
.y4a{bottom:516.495000px;}
.y98{bottom:518.115000px;}
.y107{bottom:520.095000px;}
.yb9{bottom:520.635000px;}
.y1c{bottom:522.435000px;}
.y143{bottom:524.955000px;}
.y6b{bottom:530.715000px;}
.y85{bottom:534.135000px;}
.yd0{bottom:536.115000px;}
.y49{bottom:537.195000px;}
.y1b{bottom:543.135000px;}
.y121{bottom:543.855000px;}
.y142{bottom:548.715000px;}
.y97{bottom:549.255000px;}
.y106{bottom:551.055000px;}
.yb8{bottom:551.775000px;}
.y48{bottom:557.895000px;}
.y6a{bottom:561.675000px;}
.y1a{bottom:563.835000px;}
.yf4{bottom:564.195000px;}
.y84{bottom:565.275000px;}
.ycf{bottom:567.255000px;}
.y120{bottom:567.615000px;}
.y47{bottom:578.595000px;}
.y96{bottom:580.215000px;}
.y105{bottom:582.195000px;}
.yb7{bottom:582.735000px;}
.y19{bottom:584.535000px;}
.y141{bottom:587.415000px;}
.y11f{bottom:591.375000px;}
.y69{bottom:592.815000px;}
.ye1{bottom:595.155000px;}
.yed{bottom:596.235000px;}
.yce{bottom:598.215000px;}
.y46{bottom:599.295000px;}
.y18{bottom:605.235000px;}
.y83{bottom:611.355000px;}
.y104{bottom:613.155000px;}
.yb6{bottom:613.875000px;}
.y11e{bottom:615.135000px;}
.y45{bottom:619.995000px;}
.y68{bottom:623.775000px;}
.y17{bottom:625.935000px;}
.ye0{bottom:626.295000px;}
.y140{bottom:635.115000px;}
.y11d{bottom:639.075000px;}
.y44{bottom:640.695000px;}
.ycd{bottom:641.235000px;}
.y82{bottom:642.315000px;}
.y103{bottom:644.115000px;}
.y16{bottom:646.635000px;}
.y159{bottom:648.615000px;}
.y67{bottom:654.915000px;}
.yb5{bottom:656.895000px;}
.ydf{bottom:657.255000px;}
.y13f{bottom:658.875000px;}
.y43{bottom:661.395000px;}
.y158{bottom:668.265000px;}
.ycc{bottom:672.405000px;}
.y81{bottom:673.485000px;}
.y102{bottom:675.285000px;}
.y11c{bottom:677.805000px;}
.y42{bottom:682.125000px;}
.y66{bottom:685.905000px;}
.yb4{bottom:687.885000px;}
.yde{bottom:688.425000px;}
.y157{bottom:688.965000px;}
.y13e{bottom:697.785000px;}
.y15{bottom:698.685000px;}
.y11b{bottom:701.565000px;}
.y41{bottom:702.825000px;}
.ycb{bottom:703.365000px;}
.y80{bottom:704.445000px;}
.y156{bottom:709.665000px;}
.yb3{bottom:719.025000px;}
.ydd{bottom:719.385000px;}
.y13d{bottom:721.545000px;}
.y40{bottom:723.525000px;}
.y65{bottom:725.145000px;}
.y11a{bottom:725.505000px;}
.y101{bottom:727.305000px;}
.y14{bottom:729.825000px;}
.y155{bottom:730.365000px;}
.yca{bottom:734.505000px;}
.y7f{bottom:735.405000px;}
.y3f{bottom:744.225000px;}
.y13c{bottom:745.305000px;}
.y119{bottom:749.265000px;}
.yb2{bottom:749.985000px;}
.y95{bottom:750.525000px;}
.y64{bottom:755.205000px;}
.y100{bottom:758.445000px;}
.y3e{bottom:764.925000px;}
.y13{bottom:765.285000px;}
.yc9{bottom:765.465000px;}
.y7e{bottom:766.545000px;}
.y13b{bottom:769.065000px;}
.y118{bottom:773.025000px;}
.yb1{bottom:781.125000px;}
.y94{bottom:781.485000px;}
.y3d{bottom:785.625000px;}
.y63{bottom:786.165000px;}
.yff{bottom:789.405000px;}
.y12{bottom:796.605000px;}
.y7d{bottom:797.505000px;}
.y117{bottom:804.165000px;}
.y13a{bottom:807.945000px;}
.yb0{bottom:812.085000px;}
.y93{bottom:812.625000px;}
.y3c{bottom:816.585000px;}
.y62{bottom:817.305000px;}
.yfe{bottom:820.545000px;}
.y116{bottom:824.865000px;}
.y10{bottom:827.565000px;}
.y7c{bottom:828.645000px;}
.y139{bottom:831.705000px;}
.y11{bottom:834.405000px;}
.yaf{bottom:843.225000px;}
.y92{bottom:843.585000px;}
.y115{bottom:846.105000px;}
.y3b{bottom:847.725000px;}
.y61{bottom:848.265000px;}
.yfd{bottom:851.505000px;}
.y138{bottom:855.465000px;}
.ye{bottom:858.705000px;}
.yf{bottom:865.545000px;}
.y114{bottom:868.065000px;}
.y60{bottom:868.965000px;}
.yae{bottom:874.185000px;}
.y7b{bottom:874.725000px;}
.y3a{bottom:878.685000px;}
.y137{bottom:879.405000px;}
.yfc{bottom:882.645000px;}
.yc{bottom:889.665000px;}
.yd{bottom:896.505000px;}
.y154{bottom:903.165000px;}
.yad{bottom:905.325000px;}
.y7a{bottom:905.685000px;}
.y39{bottom:909.870000px;}
.y5f{bottom:910.410000px;}
.yfb{bottom:913.650000px;}
.y136{bottom:918.150000px;}
.ya{bottom:920.850000px;}
.yb{bottom:927.690000px;}
.y5e{bottom:931.110000px;}
.yac{bottom:936.330000px;}
.y79{bottom:936.870000px;}
.y38{bottom:940.830000px;}
.y135{bottom:941.910000px;}
.yfa{bottom:944.790000px;}
.y8{bottom:951.810000px;}
.y9{bottom:958.650000px;}
.y153{bottom:965.850000px;}
.yab{bottom:967.470000px;}
.y78{bottom:967.830000px;}
.y37{bottom:971.970000px;}
.y5d{bottom:972.510000px;}
.yf9{bottom:975.750000px;}
.y134{bottom:980.790000px;}
.y7{bottom:982.950000px;}
.y152{bottom:989.610000px;}
.y5c{bottom:993.210000px;}
.yaa{bottom:998.430000px;}
.y77{bottom:998.970000px;}
.y133{bottom:1004.550000px;}
.yf8{bottom:1006.710000px;}
.y151{bottom:1013.370000px;}
.y36{bottom:1013.550000px;}
.y6{bottom:1013.910000px;}
.y132{bottom:1028.490000px;}
.ya9{bottom:1029.570000px;}
.y5b{bottom:1034.610000px;}
.y5{bottom:1045.050000px;}
.yf7{bottom:1046.130000px;}
.y131{bottom:1052.250000px;}
.y35{bottom:1055.310000px;}
.ya8{bottom:1061.430000px;}
.y4{bottom:1076.010000px;}
.ya7{bottom:1078.710000px;}
.y1{bottom:1194.120000px;}
.ha{height:38.158594px;}
.h9{height:38.671172px;}
.h5{height:47.344922px;}
.h7{height:47.980898px;}
.hf{height:53.424000px;}
.hd{height:53.573906px;}
.he{height:58.651172px;}
.hc{height:64.546875px;}
.h2{height:65.884219px;}
.hb{height:70.628906px;}
.h4{height:70.664062px;}
.h8{height:71.613281px;}
.h3{height:72.562500px;}
.h6{height:75.093750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959987px;}
.x12{left:89.819987px;}
.x11{left:91.079987px;}
.x3{left:107.855987px;}
.x4{left:110.915987px;}
.x16{left:117.395987px;}
.x15{left:138.095987px;}
.x5{left:151.229987px;}
.x17{left:297.434987px;}
.x10{left:301.034987px;}
.x13{left:400.394987px;}
.x14{left:402.374987px;}
.xf{left:406.874987px;}
.x6{left:446.474987px;}
.xe{left:546.764987px;}
.xa{left:578.264987px;}
.x7{left:585.284987px;}
.xc{left:613.364987px;}
.xb{left:645.404987px;}
.xd{left:683.924987px;}
.x18{left:791.249987px;}
.x2{left:799.709987px;}
.x8{left:801.869973px;}
.x9{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls1{letter-spacing:6.042880pt;}
.ls2{letter-spacing:15.008000pt;}
.ls0{letter-spacing:172.800000pt;}
.ls7{letter-spacing:172.928000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws1{word-spacing:0.000000pt;}
._1d{margin-left:-5.749333pt;}
._15{margin-left:-3.904000pt;}
._2{margin-left:-2.688000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.194667pt;}
._16{width:2.176000pt;}
._7{width:3.200000pt;}
._8{width:4.288000pt;}
._b{width:5.568000pt;}
._f{width:6.784000pt;}
._6{width:8.128000pt;}
._17{width:9.344000pt;}
._19{width:10.688000pt;}
._3{width:11.584000pt;}
._4{width:13.120000pt;}
._5{width:14.538667pt;}
._9{width:17.408000pt;}
._1a{width:18.368000pt;}
._1c{width:19.264000pt;}
._18{width:20.992000pt;}
._c{width:22.016000pt;}
._d{width:22.933333pt;}
._e{width:24.512000pt;}
._11{width:26.090667pt;}
._10{width:27.008000pt;}
._1b{width:28.608000pt;}
._a{width:29.952000pt;}
._12{width:31.552000pt;}
._14{width:34.176000pt;}
._13{width:35.264000pt;}
._21{width:36.352000pt;}
._1e{width:38.464000pt;}
._20{width:40.704000pt;}
._1f{width:41.856000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.200000pt;}
.y2{bottom:68.960000pt;}
.y34{bottom:86.400000pt;}
.yf6{bottom:88.320000pt;}
.y113{bottom:93.600000pt;}
.yc8{bottom:99.520000pt;}
.y5a{bottom:100.320000pt;}
.yf3{bottom:102.720000pt;}
.y33{bottom:105.600000pt;}
.ya6{bottom:108.640000pt;}
.y150{bottom:109.120000pt;}
.y32{bottom:110.880000pt;}
.y130{bottom:112.640000pt;}
.yeb{bottom:116.000000pt;}
.yf2{bottom:116.960000pt;}
.y59{bottom:118.720000pt;}
.y112{bottom:121.280000pt;}
.ya5{bottom:124.000000pt;}
.y31{bottom:124.320000pt;}
.yc7{bottom:127.200000pt;}
.y91{bottom:130.240000pt;}
.ydc{bottom:132.000000pt;}
.y12f{bottom:133.760000pt;}
.y58{bottom:137.120000pt;}
.ya4{bottom:139.360000pt;}
.y76{bottom:141.440000pt;}
.yea{bottom:143.520000pt;}
.y30{bottom:143.680000pt;}
.yf1{bottom:144.480000pt;}
.y111{bottom:148.800000pt;}
.y2f{bottom:148.960000pt;}
.ya3{bottom:154.560000pt;}
.y12e{bottom:154.880000pt;}
.y57{bottom:155.520000pt;}
.y90{bottom:157.920000pt;}
.ydb{bottom:159.520000pt;}
.y2e{bottom:162.400000pt;}
.y14f{bottom:164.826667pt;}
.y75{bottom:168.986667pt;}
.ya2{bottom:169.946667pt;}
.yc6{bottom:170.906667pt;}
.ye9{bottom:171.226667pt;}
.yf0{bottom:172.186667pt;}
.y56{bottom:173.946667pt;}
.y12d{bottom:176.186667pt;}
.y2d{bottom:180.666667pt;}
.y2c{bottom:185.306667pt;}
.y8f{bottom:185.466667pt;}
.y14e{bottom:185.946667pt;}
.yc5{bottom:186.266667pt;}
.yda{bottom:187.226667pt;}
.y55{bottom:192.346667pt;}
.y110{bottom:195.226667pt;}
.y74{bottom:196.666667pt;}
.y12c{bottom:197.306667pt;}
.ye8{bottom:198.746667pt;}
.y2b{bottom:199.066667pt;}
.yc4{bottom:201.626667pt;}
.ya1{bottom:205.786667pt;}
.y14d{bottom:207.066667pt;}
.y8e{bottom:213.146667pt;}
.yd9{bottom:214.746667pt;}
.yc3{bottom:216.986667pt;}
.y2a{bottom:218.426667pt;}
.y54{bottom:219.866667pt;}
.y10f{bottom:222.746667pt;}
.y29{bottom:223.066667pt;}
.ye7{bottom:226.426667pt;}
.y14c{bottom:228.346667pt;}
.y12b{bottom:231.706667pt;}
.yc2{bottom:232.346667pt;}
.ya0{bottom:233.466667pt;}
.y28{bottom:237.146667pt;}
.y73{bottom:237.626667pt;}
.y8d{bottom:240.666667pt;}
.yd8{bottom:242.426667pt;}
.y53{bottom:247.546667pt;}
.yc1{bottom:247.706667pt;}
.y14b{bottom:249.466667pt;}
.y10e{bottom:250.266667pt;}
.y12a{bottom:252.986667pt;}
.ye6{bottom:253.946667pt;}
.y27{bottom:256.346667pt;}
.y9f{bottom:260.986667pt;}
.y26{bottom:261.626667pt;}
.yc0{bottom:262.906667pt;}
.y72{bottom:265.146667pt;}
.y8c{bottom:268.346667pt;}
.yd7{bottom:269.946667pt;}
.y129{bottom:274.106667pt;}
.y52{bottom:275.066667pt;}
.y25{bottom:275.546667pt;}
.y10d{bottom:277.946667pt;}
.ybf{bottom:278.266667pt;}
.ye5{bottom:281.626667pt;}
.y14a{bottom:283.866667pt;}
.y9e{bottom:288.666667pt;}
.y71{bottom:292.666667pt;}
.yf5{bottom:294.906667pt;}
.y128{bottom:295.226667pt;}
.y8b{bottom:295.866667pt;}
.yd6{bottom:297.626667pt;}
.y51{bottom:302.586667pt;}
.y149{bottom:305.146667pt;}
.y10c{bottom:305.466667pt;}
.yec{bottom:309.146667pt;}
.ybe{bottom:314.106667pt;}
.y9d{bottom:316.186667pt;}
.y24{bottom:317.146667pt;}
.y70{bottom:320.346667pt;}
.ye4{bottom:322.586667pt;}
.yef{bottom:323.386667pt;}
.y148{bottom:326.266667pt;}
.y127{bottom:329.786667pt;}
.y50{bottom:330.266667pt;}
.y10b{bottom:333.146667pt;}
.y23{bottom:335.546667pt;}
.y8a{bottom:336.826667pt;}
.yd5{bottom:338.586667pt;}
.y9c{bottom:343.866667pt;}
.y147{bottom:347.386667pt;}
.y6f{bottom:347.866667pt;}
.ye3{bottom:350.106667pt;}
.y126{bottom:350.906667pt;}
.yee{bottom:351.066667pt;}
.ybd{bottom:352.346667pt;}
.y22{bottom:353.946667pt;}
.y4f{bottom:357.786667pt;}
.y10a{bottom:360.666667pt;}
.y89{bottom:364.346667pt;}
.yd4{bottom:366.106667pt;}
.y125{bottom:372.026667pt;}
.y21{bottom:372.346667pt;}
.y6e{bottom:375.546667pt;}
.ye2{bottom:377.786667pt;}
.y9b{bottom:378.786667pt;}
.ybc{bottom:380.066667pt;}
.y146{bottom:381.986667pt;}
.y4e{bottom:385.506667pt;}
.y20{bottom:390.786667pt;}
.y88{bottom:392.066667pt;}
.yd3{bottom:393.826667pt;}
.y6d{bottom:403.106667pt;}
.y4d{bottom:403.906667pt;}
.y9a{bottom:405.346667pt;}
.y124{bottom:406.626667pt;}
.y109{bottom:407.106667pt;}
.ybb{bottom:407.586667pt;}
.y1f{bottom:409.186667pt;}
.y87{bottom:419.586667pt;}
.yd2{bottom:421.346667pt;}
.y4c{bottom:422.306667pt;}
.y145{bottom:424.226667pt;}
.y1e{bottom:427.586667pt;}
.y123{bottom:427.746667pt;}
.y99{bottom:433.026667pt;}
.y108{bottom:434.626667pt;}
.yba{bottom:435.266667pt;}
.y4b{bottom:440.706667pt;}
.y6c{bottom:444.066667pt;}
.y144{bottom:445.346667pt;}
.y1d{bottom:445.986667pt;}
.y86{bottom:447.266667pt;}
.y122{bottom:448.866667pt;}
.yd1{bottom:449.026667pt;}
.y4a{bottom:459.106667pt;}
.y98{bottom:460.546667pt;}
.y107{bottom:462.306667pt;}
.yb9{bottom:462.786667pt;}
.y1c{bottom:464.386667pt;}
.y143{bottom:466.626667pt;}
.y6b{bottom:471.746667pt;}
.y85{bottom:474.786667pt;}
.yd0{bottom:476.546667pt;}
.y49{bottom:477.506667pt;}
.y1b{bottom:482.786667pt;}
.y121{bottom:483.426667pt;}
.y142{bottom:487.746667pt;}
.y97{bottom:488.226667pt;}
.y106{bottom:489.826667pt;}
.yb8{bottom:490.466667pt;}
.y48{bottom:495.906667pt;}
.y6a{bottom:499.266667pt;}
.y1a{bottom:501.186667pt;}
.yf4{bottom:501.506667pt;}
.y84{bottom:502.466667pt;}
.ycf{bottom:504.226667pt;}
.y120{bottom:504.546667pt;}
.y47{bottom:514.306667pt;}
.y96{bottom:515.746667pt;}
.y105{bottom:517.506667pt;}
.yb7{bottom:517.986667pt;}
.y19{bottom:519.586667pt;}
.y141{bottom:522.146667pt;}
.y11f{bottom:525.666667pt;}
.y69{bottom:526.946667pt;}
.ye1{bottom:529.026667pt;}
.yed{bottom:529.986667pt;}
.yce{bottom:531.746667pt;}
.y46{bottom:532.706667pt;}
.y18{bottom:537.986667pt;}
.y83{bottom:543.426667pt;}
.y104{bottom:545.026667pt;}
.yb6{bottom:545.666667pt;}
.y11e{bottom:546.786667pt;}
.y45{bottom:551.106667pt;}
.y68{bottom:554.466667pt;}
.y17{bottom:556.386667pt;}
.ye0{bottom:556.706667pt;}
.y140{bottom:564.546667pt;}
.y11d{bottom:568.066667pt;}
.y44{bottom:569.506667pt;}
.ycd{bottom:569.986667pt;}
.y82{bottom:570.946667pt;}
.y103{bottom:572.546667pt;}
.y16{bottom:574.786667pt;}
.y159{bottom:576.546667pt;}
.y67{bottom:582.146667pt;}
.yb5{bottom:583.906667pt;}
.ydf{bottom:584.226667pt;}
.y13f{bottom:585.666667pt;}
.y43{bottom:587.906667pt;}
.y158{bottom:594.013333pt;}
.ycc{bottom:597.693333pt;}
.y81{bottom:598.653333pt;}
.y102{bottom:600.253333pt;}
.y11c{bottom:602.493333pt;}
.y42{bottom:606.333333pt;}
.y66{bottom:609.693333pt;}
.yb4{bottom:611.453333pt;}
.yde{bottom:611.933333pt;}
.y157{bottom:612.413333pt;}
.y13e{bottom:620.253333pt;}
.y15{bottom:621.053333pt;}
.y11b{bottom:623.613333pt;}
.y41{bottom:624.733333pt;}
.ycb{bottom:625.213333pt;}
.y80{bottom:626.173333pt;}
.y156{bottom:630.813333pt;}
.yb3{bottom:639.133333pt;}
.ydd{bottom:639.453333pt;}
.y13d{bottom:641.373333pt;}
.y40{bottom:643.133333pt;}
.y65{bottom:644.573333pt;}
.y11a{bottom:644.893333pt;}
.y101{bottom:646.493333pt;}
.y14{bottom:648.733333pt;}
.y155{bottom:649.213333pt;}
.yca{bottom:652.893333pt;}
.y7f{bottom:653.693333pt;}
.y3f{bottom:661.533333pt;}
.y13c{bottom:662.493333pt;}
.y119{bottom:666.013333pt;}
.yb2{bottom:666.653333pt;}
.y95{bottom:667.133333pt;}
.y64{bottom:671.293333pt;}
.y100{bottom:674.173333pt;}
.y3e{bottom:679.933333pt;}
.y13{bottom:680.253333pt;}
.yc9{bottom:680.413333pt;}
.y7e{bottom:681.373333pt;}
.y13b{bottom:683.613333pt;}
.y118{bottom:687.133333pt;}
.yb1{bottom:694.333333pt;}
.y94{bottom:694.653333pt;}
.y3d{bottom:698.333333pt;}
.y63{bottom:698.813333pt;}
.yff{bottom:701.693333pt;}
.y12{bottom:708.093333pt;}
.y7d{bottom:708.893333pt;}
.y117{bottom:714.813333pt;}
.y13a{bottom:718.173333pt;}
.yb0{bottom:721.853333pt;}
.y93{bottom:722.333333pt;}
.y3c{bottom:725.853333pt;}
.y62{bottom:726.493333pt;}
.yfe{bottom:729.373333pt;}
.y116{bottom:733.213333pt;}
.y10{bottom:735.613333pt;}
.y7c{bottom:736.573333pt;}
.y139{bottom:739.293333pt;}
.y11{bottom:741.693333pt;}
.yaf{bottom:749.533333pt;}
.y92{bottom:749.853333pt;}
.y115{bottom:752.093333pt;}
.y3b{bottom:753.533333pt;}
.y61{bottom:754.013333pt;}
.yfd{bottom:756.893333pt;}
.y138{bottom:760.413333pt;}
.ye{bottom:763.293333pt;}
.yf{bottom:769.373333pt;}
.y114{bottom:771.613333pt;}
.y60{bottom:772.413333pt;}
.yae{bottom:777.053333pt;}
.y7b{bottom:777.533333pt;}
.y3a{bottom:781.053333pt;}
.y137{bottom:781.693333pt;}
.yfc{bottom:784.573333pt;}
.yc{bottom:790.813333pt;}
.yd{bottom:796.893333pt;}
.y154{bottom:802.813333pt;}
.yad{bottom:804.733333pt;}
.y7a{bottom:805.053333pt;}
.y39{bottom:808.773333pt;}
.y5f{bottom:809.253333pt;}
.yfb{bottom:812.133333pt;}
.y136{bottom:816.133333pt;}
.ya{bottom:818.533333pt;}
.yb{bottom:824.613333pt;}
.y5e{bottom:827.653333pt;}
.yac{bottom:832.293333pt;}
.y79{bottom:832.773333pt;}
.y38{bottom:836.293333pt;}
.y135{bottom:837.253333pt;}
.yfa{bottom:839.813333pt;}
.y8{bottom:846.053333pt;}
.y9{bottom:852.133333pt;}
.y153{bottom:858.533333pt;}
.yab{bottom:859.973333pt;}
.y78{bottom:860.293333pt;}
.y37{bottom:863.973333pt;}
.y5d{bottom:864.453333pt;}
.yf9{bottom:867.333333pt;}
.y134{bottom:871.813333pt;}
.y7{bottom:873.733333pt;}
.y152{bottom:879.653333pt;}
.y5c{bottom:882.853333pt;}
.yaa{bottom:887.493333pt;}
.y77{bottom:887.973333pt;}
.y133{bottom:892.933333pt;}
.yf8{bottom:894.853333pt;}
.y151{bottom:900.773333pt;}
.y36{bottom:900.933333pt;}
.y6{bottom:901.253333pt;}
.y132{bottom:914.213333pt;}
.ya9{bottom:915.173333pt;}
.y5b{bottom:919.653333pt;}
.y5{bottom:928.933333pt;}
.yf7{bottom:929.893333pt;}
.y131{bottom:935.333333pt;}
.y35{bottom:938.053333pt;}
.ya8{bottom:943.493333pt;}
.y4{bottom:956.453333pt;}
.ya7{bottom:958.853333pt;}
.y1{bottom:1061.440000pt;}
.ha{height:33.918750pt;}
.h9{height:34.374375pt;}
.h5{height:42.084375pt;}
.h7{height:42.649687pt;}
.hf{height:47.488000pt;}
.hd{height:47.621250pt;}
.he{height:52.134375pt;}
.hc{height:57.375000pt;}
.h2{height:58.563750pt;}
.hb{height:62.781250pt;}
.h4{height:62.812500pt;}
.h8{height:63.656250pt;}
.h3{height:64.500000pt;}
.h6{height:66.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519988pt;}
.x12{left:79.839988pt;}
.x11{left:80.959988pt;}
.x3{left:95.871988pt;}
.x4{left:98.591988pt;}
.x16{left:104.351988pt;}
.x15{left:122.751988pt;}
.x5{left:134.426655pt;}
.x17{left:264.386655pt;}
.x10{left:267.586655pt;}
.x13{left:355.906655pt;}
.x14{left:357.666655pt;}
.xf{left:361.666655pt;}
.x6{left:396.866655pt;}
.xe{left:486.013322pt;}
.xa{left:514.013322pt;}
.x7{left:520.253322pt;}
.xc{left:545.213322pt;}
.xb{left:573.693322pt;}
.xd{left:607.933322pt;}
.x18{left:703.333322pt;}
.x2{left:710.853322pt;}
.x8{left:712.773310pt;}
.x9{left:718.213322pt;}
}




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