
    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_05c1024765b739ca86740031.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_93d98a2faf6554df76c4d331.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6c5e3bf4349ec70bfb770ce1.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_f46c9df8552fe7b72344288c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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_179a0cf333b392679780240e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_37ea27f6238f309841133186.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_d5408d074db4493a0fbc4f70.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_ac535f0dfc6fc5f641ac3f14.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_e6303e9b9afcc9b710de93e4.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-2.880000px;}
.lsb{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.570000px;}
.lsa{letter-spacing:-0.507000px;}
.ls8{letter-spacing:-0.020160px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.020160px;}
.ls14{letter-spacing:0.184200px;}
.ls13{letter-spacing:0.184320px;}
.ls4{letter-spacing:0.466800px;}
.ls2{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.900000px;}
.ls9{letter-spacing:1.440000px;}
.ls12{letter-spacing:2.160000px;}
.ls11{letter-spacing:3.600000px;}
.ls10{letter-spacing:7.920000px;}
.lse{letter-spacing:23.760000px;}
.lsd{letter-spacing:23.771520px;}
.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;}
}
.ws4{word-spacing:-15.586800px;}
.ws3{word-spacing:-15.140160px;}
.ws5{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.099840px;}
.ws8{word-spacing:-14.613000px;}
.ws0{word-spacing:-14.310000px;}
.ws7{word-spacing:-14.184000px;}
.ws9{word-spacing:-13.864200px;}
.ws1{word-spacing:-13.680000px;}
.wsa{word-spacing:-12.240000px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-230.760000px;}
._e{margin-left:-3.752640px;}
._4{margin-left:-2.589120px;}
._0{margin-left:-1.085760px;}
._2{width:1.002240px;}
._3{width:2.839680px;}
._1{width:4.092480px;}
._9{width:5.362080px;}
._7{width:7.050240px;}
._8{width:8.317440px;}
._5{width:9.849600px;}
._6{width:11.465280px;}
._c{width:12.983040px;}
._a{width:14.993280px;}
._b{width:16.009920px;}
._f{width:17.329920px;}
._d{width:18.521280px;}
._10{width:20.479200px;}
._16{width:21.769920px;}
._13{width:23.126400px;}
._12{width:24.166080px;}
._11{width:25.583040px;}
._15{width:28.742880px;}
._14{width:30.058560px;}
.fc1{color:rgb(180,180,180);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:24.000000px;}
.fsa{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs5{font-size:57.600000px;}
.fs8{font-size:60.480000px;}
.fs7{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y135{bottom:7.500000px;}
.yac{bottom:181.155000px;}
.y5a{bottom:187.275000px;}
.y134{bottom:187.995000px;}
.y104{bottom:189.435000px;}
.y31{bottom:189.795000px;}
.yd7{bottom:190.875000px;}
.y103{bottom:195.555000px;}
.yd8{bottom:197.715000px;}
.yab{bottom:199.155000px;}
.y8b{bottom:199.875000px;}
.y59{bottom:205.275000px;}
.y102{bottom:205.995000px;}
.y30{bottom:207.075000px;}
.yd6{bottom:208.875000px;}
.y101{bottom:212.115000px;}
.y133{bottom:214.275000px;}
.yc8{bottom:214.995000px;}
.yaa{bottom:217.155000px;}
.y8a{bottom:217.875000px;}
.y100{bottom:222.555000px;}
.y58{bottom:223.275000px;}
.y2f{bottom:224.355000px;}
.yd5{bottom:226.875000px;}
.yff{bottom:228.675000px;}
.yc7{bottom:232.995000px;}
.y89{bottom:235.875000px;}
.yfe{bottom:238.755000px;}
.y132{bottom:239.475000px;}
.y57{bottom:241.275000px;}
.y2e{bottom:241.635000px;}
.ya9{bottom:244.155000px;}
.yd4{bottom:244.875000px;}
.y68{bottom:250.275000px;}
.yc6{bottom:250.995000px;}
.y88{bottom:253.875000px;}
.yfd{bottom:254.235000px;}
.y2d{bottom:258.555000px;}
.ya8{bottom:262.155000px;}
.yd3{bottom:262.875000px;}
.y131{bottom:265.035000px;}
.y56{bottom:268.275000px;}
.yc5{bottom:269.025000px;}
.yfc{bottom:270.825000px;}
.y2c{bottom:275.865000px;}
.yfb{bottom:278.385000px;}
.y87{bottom:280.905000px;}
.y55{bottom:286.305000px;}
.ya7{bottom:289.185000px;}
.yfa{bottom:289.545000px;}
.y2b{bottom:293.145000px;}
.yc4{bottom:296.025000px;}
.y86{bottom:298.905000px;}
.y54{bottom:304.305000px;}
.y130{bottom:305.025000px;}
.y2a{bottom:310.425000px;}
.y67{bottom:313.305000px;}
.yc3{bottom:314.025000px;}
.ya6{bottom:316.185000px;}
.yd2{bottom:316.905000px;}
.y12f{bottom:320.505000px;}
.y53{bottom:322.305000px;}
.y85{bottom:325.905000px;}
.yf9{bottom:326.625000px;}
.y29{bottom:327.705000px;}
.y66{bottom:331.305000px;}
.yc2{bottom:332.025000px;}
.y52{bottom:340.305000px;}
.ya5{bottom:343.185000px;}
.yd0{bottom:343.905000px;}
.yf8{bottom:344.625000px;}
.y12e{bottom:344.985000px;}
.y28{bottom:345.705000px;}
.yc1{bottom:350.025000px;}
.yd1{bottom:350.745000px;}
.y84{bottom:352.905000px;}
.y65{bottom:358.305000px;}
.ycf{bottom:361.905000px;}
.yf7{bottom:362.625000px;}
.y27{bottom:365.505000px;}
.y51{bottom:367.305000px;}
.yc0{bottom:368.025000px;}
.y12d{bottom:369.825000px;}
.ya4{bottom:370.185000px;}
.y83{bottom:379.905000px;}
.yf6{bottom:380.625000px;}
.y26{bottom:382.065000px;}
.y50{bottom:385.305000px;}
.y12c{bottom:394.305000px;}
.ybe{bottom:395.025000px;}
.ya3{bottom:397.185000px;}
.yce{bottom:397.905000px;}
.y25{bottom:398.625000px;}
.ybf{bottom:401.910000px;}
.y82{bottom:406.950000px;}
.y12b{bottom:409.830000px;}
.y4f{bottom:412.350000px;}
.ybd{bottom:413.070000px;}
.y24{bottom:414.870000px;}
.yf5{bottom:416.670000px;}
.ya2{bottom:424.230000px;}
.ycd{bottom:424.950000px;}
.ybc{bottom:431.070000px;}
.y23{bottom:431.790000px;}
.y81{bottom:433.950000px;}
.y12a{bottom:434.310000px;}
.y4e{bottom:439.350000px;}
.ycc{bottom:442.950000px;}
.yf4{bottom:443.670000px;}
.ybb{bottom:449.070000px;}
.y129{bottom:449.790000px;}
.ya1{bottom:451.230000px;}
.y22{bottom:451.950000px;}
.y80{bottom:460.950000px;}
.yf3{bottom:461.670000px;}
.y4d{bottom:466.350000px;}
.yba{bottom:467.070000px;}
.y21{bottom:467.430000px;}
.y128{bottom:474.270000px;}
.ya0{bottom:478.230000px;}
.yf2{bottom:479.670000px;}
.y20{bottom:482.910000px;}
.y7f{bottom:487.950000px;}
.y127{bottom:489.750000px;}
.y4c{bottom:493.350000px;}
.yb8{bottom:494.070000px;}
.yf1{bottom:497.670000px;}
.y1f{bottom:498.390000px;}
.yb9{bottom:500.910000px;}
.y9f{bottom:505.230000px;}
.ycb{bottom:505.950000px;}
.yb7{bottom:512.070000px;}
.y1e{bottom:513.870000px;}
.y126{bottom:514.230000px;}
.y7e{bottom:514.950000px;}
.yf0{bottom:515.670000px;}
.y4b{bottom:520.350000px;}
.yca{bottom:523.950000px;}
.y1d{bottom:529.350000px;}
.yb6{bottom:530.070000px;}
.y9e{bottom:532.230000px;}
.yef{bottom:533.700000px;}
.y125{bottom:538.740000px;}
.y7d{bottom:541.980000px;}
.y1c{bottom:545.220000px;}
.y4a{bottom:547.380000px;}
.y124{bottom:554.580000px;}
.yb5{bottom:557.100000px;}
.y9d{bottom:559.620000px;}
.y7c{bottom:559.980000px;}
.y1b{bottom:560.700000px;}
.y64{bottom:565.380000px;}
.yee{bottom:567.540000px;}
.y49{bottom:574.380000px;}
.yb4{bottom:575.100000px;}
.y1a{bottom:576.180000px;}
.y9c{bottom:576.900000px;}
.y7b{bottom:577.980000px;}
.yed{bottom:578.700000px;}
.y123{bottom:579.060000px;}
.y63{bottom:583.380000px;}
.y19{bottom:591.660000px;}
.yb3{bottom:593.100000px;}
.y9b{bottom:594.180000px;}
.y122{bottom:594.540000px;}
.yec{bottom:596.700000px;}
.y48{bottom:601.380000px;}
.y7a{bottom:605.340000px;}
.y18{bottom:607.140000px;}
.y121{bottom:610.020000px;}
.y62{bottom:610.380000px;}
.y9a{bottom:611.460000px;}
.yeb{bottom:614.700000px;}
.yb2{bottom:620.460000px;}
.y17{bottom:622.620000px;}
.y47{bottom:628.380000px;}
.yb1{bottom:637.740000px;}
.y16{bottom:638.100000px;}
.y79{bottom:639.900000px;}
.yea{bottom:641.700000px;}
.y120{bottom:643.860000px;}
.y99{bottom:645.660000px;}
.y61{bottom:646.380000px;}
.y15{bottom:653.580000px;}
.yb0{bottom:655.020000px;}
.y46{bottom:655.380000px;}
.y78{bottom:657.180000px;}
.ye9{bottom:659.700000px;}
.y98{bottom:662.940000px;}
.y60{bottom:664.380000px;}
.y14{bottom:670.530000px;}
.yaf{bottom:671.970000px;}
.y77{bottom:674.490000px;}
.ye8{bottom:677.730000px;}
.y97{bottom:680.250000px;}
.y45{bottom:682.410000px;}
.yae{bottom:685.650000px;}
.y11f{bottom:688.530000px;}
.y13{bottom:689.610000px;}
.ye7{bottom:695.730000px;}
.y96{bottom:697.530000px;}
.y76{bottom:700.410000px;}
.y11e{bottom:704.010000px;}
.y12{bottom:707.610000px;}
.y44{bottom:709.410000px;}
.y11d{bottom:710.130000px;}
.ye6{bottom:713.730000px;}
.y95{bottom:714.810000px;}
.y11c{bottom:719.850000px;}
.y11{bottom:725.610000px;}
.y75{bottom:727.410000px;}
.ye5{bottom:731.730000px;}
.y94{bottom:732.090000px;}
.y43{bottom:736.410000px;}
.y10{bottom:743.610000px;}
.y93{bottom:749.370000px;}
.y74{bottom:754.410000px;}
.ye3{bottom:758.730000px;}
.y11b{bottom:759.090000px;}
.yf{bottom:761.610000px;}
.y42{bottom:763.410000px;}
.ye4{bottom:765.570000px;}
.y92{bottom:766.650000px;}
.y11a{bottom:769.530000px;}
.ye2{bottom:776.730000px;}
.ye{bottom:779.610000px;}
.y73{bottom:781.410000px;}
.y91{bottom:783.930000px;}
.y119{bottom:785.730000px;}
.y41{bottom:790.410000px;}
.ye1{bottom:794.730000px;}
.yd{bottom:797.610000px;}
.y90{bottom:801.255000px;}
.y118{bottom:802.335000px;}
.y72{bottom:808.455000px;}
.ye0{bottom:812.775000px;}
.yc{bottom:815.655000px;}
.y40{bottom:817.455000px;}
.y8f{bottom:818.535000px;}
.y117{bottom:818.895000px;}
.ydf{bottom:830.775000px;}
.yb{bottom:833.655000px;}
.y71{bottom:835.455000px;}
.y3f{bottom:844.455000px;}
.y8e{bottom:851.295000px;}
.ya{bottom:851.655000px;}
.y116{bottom:852.015000px;}
.yde{bottom:858.135000px;}
.y3e{bottom:862.455000px;}
.y115{bottom:868.575000px;}
.y9{bottom:869.655000px;}
.y5f{bottom:871.455000px;}
.ydd{bottom:875.415000px;}
.y3c{bottom:880.455000px;}
.y114{bottom:884.775000px;}
.y3d{bottom:887.295000px;}
.y8{bottom:887.655000px;}
.y70{bottom:889.455000px;}
.y113{bottom:890.895000px;}
.ydc{bottom:892.695000px;}
.yc9{bottom:896.295000px;}
.y3b{bottom:898.455000px;}
.y112{bottom:901.335000px;}
.y7{bottom:905.655000px;}
.y8d{bottom:907.455000px;}
.ydb{bottom:909.975000px;}
.y3a{bottom:916.455000px;}
.y111{bottom:917.895000px;}
.y110{bottom:924.015000px;}
.y5e{bottom:925.455000px;}
.y6{bottom:926.175000px;}
.yda{bottom:927.255000px;}
.y10f{bottom:934.125000px;}
.y39{bottom:934.485000px;}
.y6d{bottom:943.485000px;}
.yd9{bottom:944.565000px;}
.y10e{bottom:949.605000px;}
.y6e{bottom:950.325000px;}
.y6f{bottom:951.045000px;}
.y38{bottom:952.485000px;}
.y5{bottom:957.165000px;}
.y6c{bottom:961.485000px;}
.y10d{bottom:965.085000px;}
.y37{bottom:970.485000px;}
.y5d{bottom:979.485000px;}
.y10c{bottom:980.925000px;}
.yad{bottom:986.325000px;}
.y4{bottom:988.125000px;}
.y36{bottom:988.485000px;}
.y10b{bottom:996.405000px;}
.y6b{bottom:997.485000px;}
.y35{bottom:1006.485000px;}
.y10a{bottom:1011.885000px;}
.y5c{bottom:1013.325000px;}
.y6a{bottom:1015.485000px;}
.y3{bottom:1018.005000px;}
.y34{bottom:1024.485000px;}
.y109{bottom:1027.365000px;}
.y69{bottom:1033.485000px;}
.y2{bottom:1042.125000px;}
.y33{bottom:1042.485000px;}
.y108{bottom:1043.205000px;}
.y8c{bottom:1049.325000px;}
.y107{bottom:1059.765000px;}
.y5b{bottom:1060.485000px;}
.y106{bottom:1065.930000px;}
.y1{bottom:1067.730000px;}
.y105{bottom:1077.450000px;}
.y32{bottom:1078.530000px;}
.h1d{height:25.031250px;}
.h19{height:26.521172px;}
.h15{height:28.485703px;}
.h1a{height:35.332031px;}
.h17{height:38.139609px;}
.h12{height:38.158594px;}
.h1c{height:41.255156px;}
.hc{height:41.574375px;}
.h13{height:41.993438px;}
.h16{height:42.022969px;}
.ha{height:45.184219px;}
.h8{height:46.638281px;}
.h7{height:53.677969px;}
.hb{height:53.704687px;}
.h18{height:55.147500px;}
.h14{height:59.328281px;}
.hf{height:59.357813px;}
.hd{height:60.952500px;}
.h10{height:65.010937px;}
.he{height:70.664062px;}
.h9{height:72.562500px;}
.h1b{height:74.004654px;}
.h6{height:84.172500px;}
.h5{height:108.843750px;}
.h2{height:856.500000px;}
.h0{height:859.500000px;}
.h1{height:862.500000px;}
.h11{height:1262.879925px;}
.h3{height:1262.880000px;}
.h4{height:1263.000000px;}
.w1{width:834.000000px;}
.w2{width:837.000000px;}
.w4{width:850.500000px;}
.w3{width:856.500000px;}
.w0{width:859.500000px;}
.w6{width:892.500000px;}
.w5{width:892.800000px;}
.x0{left:0.000000px;}
.x23{left:75.000000px;}
.x1{left:127.476000px;}
.x20{left:132.552000px;}
.x22{left:136.152000px;}
.x10{left:235.185000px;}
.x11{left:240.225000px;}
.x1e{left:243.825000px;}
.x2{left:246.345000px;}
.x3{left:251.385000px;}
.x1f{left:253.905000px;}
.x5{left:343.230000px;}
.x6{left:348.270000px;}
.xb{left:356.190000px;}
.x13{left:408.060000px;}
.x14{left:413.100000px;}
.x1a{left:414.180000px;}
.x1b{left:424.260000px;}
.xc{left:426.780000px;}
.xd{left:431.820000px;}
.x12{left:474.300000px;}
.xa{left:487.650000px;}
.x7{left:512.490000px;}
.x15{left:518.250000px;}
.x16{left:585.255000px;}
.x17{left:590.295000px;}
.x1c{left:603.615000px;}
.x1d{left:613.695000px;}
.x4{left:619.815000px;}
.x18{left:654.765000px;}
.x19{left:664.845000px;}
.xe{left:704.805000px;}
.xf{left:709.845000px;}
.x8{left:752.370000px;}
.x9{left:757.410000px;}
.x21{left:765.690000px;}
@media print{
.v1{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-2.560000pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.506667pt;}
.lsa{letter-spacing:-0.450667pt;}
.ls8{letter-spacing:-0.017920pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.017920pt;}
.ls14{letter-spacing:0.163733pt;}
.ls13{letter-spacing:0.163840pt;}
.ls4{letter-spacing:0.414933pt;}
.ls2{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls9{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.920000pt;}
.ls11{letter-spacing:3.200000pt;}
.ls10{letter-spacing:7.040000pt;}
.lse{letter-spacing:21.120000pt;}
.lsd{letter-spacing:21.130240pt;}
.ws4{word-spacing:-13.854933pt;}
.ws3{word-spacing:-13.457920pt;}
.ws5{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.422080pt;}
.ws8{word-spacing:-12.989333pt;}
.ws0{word-spacing:-12.720000pt;}
.ws7{word-spacing:-12.608000pt;}
.ws9{word-spacing:-12.323733pt;}
.ws1{word-spacing:-12.160000pt;}
.wsa{word-spacing:-10.880000pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-205.120000pt;}
._e{margin-left:-3.335680pt;}
._4{margin-left:-2.301440pt;}
._0{margin-left:-0.965120pt;}
._2{width:0.890880pt;}
._3{width:2.524160pt;}
._1{width:3.637760pt;}
._9{width:4.766293pt;}
._7{width:6.266880pt;}
._8{width:7.393280pt;}
._5{width:8.755200pt;}
._6{width:10.191360pt;}
._c{width:11.540480pt;}
._a{width:13.327360pt;}
._b{width:14.231040pt;}
._f{width:15.404373pt;}
._d{width:16.463360pt;}
._10{width:18.203733pt;}
._16{width:19.351040pt;}
._13{width:20.556800pt;}
._12{width:21.480960pt;}
._11{width:22.740480pt;}
._15{width:25.549227pt;}
._14{width:26.718720pt;}
.fsb{font-size:21.333333pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs5{font-size:51.200000pt;}
.fs8{font-size:53.760000pt;}
.fs7{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y135{bottom:6.666667pt;}
.yac{bottom:161.026667pt;}
.y5a{bottom:166.466667pt;}
.y134{bottom:167.106667pt;}
.y104{bottom:168.386667pt;}
.y31{bottom:168.706667pt;}
.yd7{bottom:169.666667pt;}
.y103{bottom:173.826667pt;}
.yd8{bottom:175.746667pt;}
.yab{bottom:177.026667pt;}
.y8b{bottom:177.666667pt;}
.y59{bottom:182.466667pt;}
.y102{bottom:183.106667pt;}
.y30{bottom:184.066667pt;}
.yd6{bottom:185.666667pt;}
.y101{bottom:188.546667pt;}
.y133{bottom:190.466667pt;}
.yc8{bottom:191.106667pt;}
.yaa{bottom:193.026667pt;}
.y8a{bottom:193.666667pt;}
.y100{bottom:197.826667pt;}
.y58{bottom:198.466667pt;}
.y2f{bottom:199.426667pt;}
.yd5{bottom:201.666667pt;}
.yff{bottom:203.266667pt;}
.yc7{bottom:207.106667pt;}
.y89{bottom:209.666667pt;}
.yfe{bottom:212.226667pt;}
.y132{bottom:212.866667pt;}
.y57{bottom:214.466667pt;}
.y2e{bottom:214.786667pt;}
.ya9{bottom:217.026667pt;}
.yd4{bottom:217.666667pt;}
.y68{bottom:222.466667pt;}
.yc6{bottom:223.106667pt;}
.y88{bottom:225.666667pt;}
.yfd{bottom:225.986667pt;}
.y2d{bottom:229.826667pt;}
.ya8{bottom:233.026667pt;}
.yd3{bottom:233.666667pt;}
.y131{bottom:235.586667pt;}
.y56{bottom:238.466667pt;}
.yc5{bottom:239.133333pt;}
.yfc{bottom:240.733333pt;}
.y2c{bottom:245.213333pt;}
.yfb{bottom:247.453333pt;}
.y87{bottom:249.693333pt;}
.y55{bottom:254.493333pt;}
.ya7{bottom:257.053333pt;}
.yfa{bottom:257.373333pt;}
.y2b{bottom:260.573333pt;}
.yc4{bottom:263.133333pt;}
.y86{bottom:265.693333pt;}
.y54{bottom:270.493333pt;}
.y130{bottom:271.133333pt;}
.y2a{bottom:275.933333pt;}
.y67{bottom:278.493333pt;}
.yc3{bottom:279.133333pt;}
.ya6{bottom:281.053333pt;}
.yd2{bottom:281.693333pt;}
.y12f{bottom:284.893333pt;}
.y53{bottom:286.493333pt;}
.y85{bottom:289.693333pt;}
.yf9{bottom:290.333333pt;}
.y29{bottom:291.293333pt;}
.y66{bottom:294.493333pt;}
.yc2{bottom:295.133333pt;}
.y52{bottom:302.493333pt;}
.ya5{bottom:305.053333pt;}
.yd0{bottom:305.693333pt;}
.yf8{bottom:306.333333pt;}
.y12e{bottom:306.653333pt;}
.y28{bottom:307.293333pt;}
.yc1{bottom:311.133333pt;}
.yd1{bottom:311.773333pt;}
.y84{bottom:313.693333pt;}
.y65{bottom:318.493333pt;}
.ycf{bottom:321.693333pt;}
.yf7{bottom:322.333333pt;}
.y27{bottom:324.893333pt;}
.y51{bottom:326.493333pt;}
.yc0{bottom:327.133333pt;}
.y12d{bottom:328.733333pt;}
.ya4{bottom:329.053333pt;}
.y83{bottom:337.693333pt;}
.yf6{bottom:338.333333pt;}
.y26{bottom:339.613333pt;}
.y50{bottom:342.493333pt;}
.y12c{bottom:350.493333pt;}
.ybe{bottom:351.133333pt;}
.ya3{bottom:353.053333pt;}
.yce{bottom:353.693333pt;}
.y25{bottom:354.333333pt;}
.ybf{bottom:357.253333pt;}
.y82{bottom:361.733333pt;}
.y12b{bottom:364.293333pt;}
.y4f{bottom:366.533333pt;}
.ybd{bottom:367.173333pt;}
.y24{bottom:368.773333pt;}
.yf5{bottom:370.373333pt;}
.ya2{bottom:377.093333pt;}
.ycd{bottom:377.733333pt;}
.ybc{bottom:383.173333pt;}
.y23{bottom:383.813333pt;}
.y81{bottom:385.733333pt;}
.y12a{bottom:386.053333pt;}
.y4e{bottom:390.533333pt;}
.ycc{bottom:393.733333pt;}
.yf4{bottom:394.373333pt;}
.ybb{bottom:399.173333pt;}
.y129{bottom:399.813333pt;}
.ya1{bottom:401.093333pt;}
.y22{bottom:401.733333pt;}
.y80{bottom:409.733333pt;}
.yf3{bottom:410.373333pt;}
.y4d{bottom:414.533333pt;}
.yba{bottom:415.173333pt;}
.y21{bottom:415.493333pt;}
.y128{bottom:421.573333pt;}
.ya0{bottom:425.093333pt;}
.yf2{bottom:426.373333pt;}
.y20{bottom:429.253333pt;}
.y7f{bottom:433.733333pt;}
.y127{bottom:435.333333pt;}
.y4c{bottom:438.533333pt;}
.yb8{bottom:439.173333pt;}
.yf1{bottom:442.373333pt;}
.y1f{bottom:443.013333pt;}
.yb9{bottom:445.253333pt;}
.y9f{bottom:449.093333pt;}
.ycb{bottom:449.733333pt;}
.yb7{bottom:455.173333pt;}
.y1e{bottom:456.773333pt;}
.y126{bottom:457.093333pt;}
.y7e{bottom:457.733333pt;}
.yf0{bottom:458.373333pt;}
.y4b{bottom:462.533333pt;}
.yca{bottom:465.733333pt;}
.y1d{bottom:470.533333pt;}
.yb6{bottom:471.173333pt;}
.y9e{bottom:473.093333pt;}
.yef{bottom:474.400000pt;}
.y125{bottom:478.880000pt;}
.y7d{bottom:481.760000pt;}
.y1c{bottom:484.640000pt;}
.y4a{bottom:486.560000pt;}
.y124{bottom:492.960000pt;}
.yb5{bottom:495.200000pt;}
.y9d{bottom:497.440000pt;}
.y7c{bottom:497.760000pt;}
.y1b{bottom:498.400000pt;}
.y64{bottom:502.560000pt;}
.yee{bottom:504.480000pt;}
.y49{bottom:510.560000pt;}
.yb4{bottom:511.200000pt;}
.y1a{bottom:512.160000pt;}
.y9c{bottom:512.800000pt;}
.y7b{bottom:513.760000pt;}
.yed{bottom:514.400000pt;}
.y123{bottom:514.720000pt;}
.y63{bottom:518.560000pt;}
.y19{bottom:525.920000pt;}
.yb3{bottom:527.200000pt;}
.y9b{bottom:528.160000pt;}
.y122{bottom:528.480000pt;}
.yec{bottom:530.400000pt;}
.y48{bottom:534.560000pt;}
.y7a{bottom:538.080000pt;}
.y18{bottom:539.680000pt;}
.y121{bottom:542.240000pt;}
.y62{bottom:542.560000pt;}
.y9a{bottom:543.520000pt;}
.yeb{bottom:546.400000pt;}
.yb2{bottom:551.520000pt;}
.y17{bottom:553.440000pt;}
.y47{bottom:558.560000pt;}
.yb1{bottom:566.880000pt;}
.y16{bottom:567.200000pt;}
.y79{bottom:568.800000pt;}
.yea{bottom:570.400000pt;}
.y120{bottom:572.320000pt;}
.y99{bottom:573.920000pt;}
.y61{bottom:574.560000pt;}
.y15{bottom:580.960000pt;}
.yb0{bottom:582.240000pt;}
.y46{bottom:582.560000pt;}
.y78{bottom:584.160000pt;}
.ye9{bottom:586.400000pt;}
.y98{bottom:589.280000pt;}
.y60{bottom:590.560000pt;}
.y14{bottom:596.026667pt;}
.yaf{bottom:597.306667pt;}
.y77{bottom:599.546667pt;}
.ye8{bottom:602.426667pt;}
.y97{bottom:604.666667pt;}
.y45{bottom:606.586667pt;}
.yae{bottom:609.466667pt;}
.y11f{bottom:612.026667pt;}
.y13{bottom:612.986667pt;}
.ye7{bottom:618.426667pt;}
.y96{bottom:620.026667pt;}
.y76{bottom:622.586667pt;}
.y11e{bottom:625.786667pt;}
.y12{bottom:628.986667pt;}
.y44{bottom:630.586667pt;}
.y11d{bottom:631.226667pt;}
.ye6{bottom:634.426667pt;}
.y95{bottom:635.386667pt;}
.y11c{bottom:639.866667pt;}
.y11{bottom:644.986667pt;}
.y75{bottom:646.586667pt;}
.ye5{bottom:650.426667pt;}
.y94{bottom:650.746667pt;}
.y43{bottom:654.586667pt;}
.y10{bottom:660.986667pt;}
.y93{bottom:666.106667pt;}
.y74{bottom:670.586667pt;}
.ye3{bottom:674.426667pt;}
.y11b{bottom:674.746667pt;}
.yf{bottom:676.986667pt;}
.y42{bottom:678.586667pt;}
.ye4{bottom:680.506667pt;}
.y92{bottom:681.466667pt;}
.y11a{bottom:684.026667pt;}
.ye2{bottom:690.426667pt;}
.ye{bottom:692.986667pt;}
.y73{bottom:694.586667pt;}
.y91{bottom:696.826667pt;}
.y119{bottom:698.426667pt;}
.y41{bottom:702.586667pt;}
.ye1{bottom:706.426667pt;}
.yd{bottom:708.986667pt;}
.y90{bottom:712.226667pt;}
.y118{bottom:713.186667pt;}
.y72{bottom:718.626667pt;}
.ye0{bottom:722.466667pt;}
.yc{bottom:725.026667pt;}
.y40{bottom:726.626667pt;}
.y8f{bottom:727.586667pt;}
.y117{bottom:727.906667pt;}
.ydf{bottom:738.466667pt;}
.yb{bottom:741.026667pt;}
.y71{bottom:742.626667pt;}
.y3f{bottom:750.626667pt;}
.y8e{bottom:756.706667pt;}
.ya{bottom:757.026667pt;}
.y116{bottom:757.346667pt;}
.yde{bottom:762.786667pt;}
.y3e{bottom:766.626667pt;}
.y115{bottom:772.066667pt;}
.y9{bottom:773.026667pt;}
.y5f{bottom:774.626667pt;}
.ydd{bottom:778.146667pt;}
.y3c{bottom:782.626667pt;}
.y114{bottom:786.466667pt;}
.y3d{bottom:788.706667pt;}
.y8{bottom:789.026667pt;}
.y70{bottom:790.626667pt;}
.y113{bottom:791.906667pt;}
.ydc{bottom:793.506667pt;}
.yc9{bottom:796.706667pt;}
.y3b{bottom:798.626667pt;}
.y112{bottom:801.186667pt;}
.y7{bottom:805.026667pt;}
.y8d{bottom:806.626667pt;}
.ydb{bottom:808.866667pt;}
.y3a{bottom:814.626667pt;}
.y111{bottom:815.906667pt;}
.y110{bottom:821.346667pt;}
.y5e{bottom:822.626667pt;}
.y6{bottom:823.266667pt;}
.yda{bottom:824.226667pt;}
.y10f{bottom:830.333333pt;}
.y39{bottom:830.653333pt;}
.y6d{bottom:838.653333pt;}
.yd9{bottom:839.613333pt;}
.y10e{bottom:844.093333pt;}
.y6e{bottom:844.733333pt;}
.y6f{bottom:845.373333pt;}
.y38{bottom:846.653333pt;}
.y5{bottom:850.813333pt;}
.y6c{bottom:854.653333pt;}
.y10d{bottom:857.853333pt;}
.y37{bottom:862.653333pt;}
.y5d{bottom:870.653333pt;}
.y10c{bottom:871.933333pt;}
.yad{bottom:876.733333pt;}
.y4{bottom:878.333333pt;}
.y36{bottom:878.653333pt;}
.y10b{bottom:885.693333pt;}
.y6b{bottom:886.653333pt;}
.y35{bottom:894.653333pt;}
.y10a{bottom:899.453333pt;}
.y5c{bottom:900.733333pt;}
.y6a{bottom:902.653333pt;}
.y3{bottom:904.893333pt;}
.y34{bottom:910.653333pt;}
.y109{bottom:913.213333pt;}
.y69{bottom:918.653333pt;}
.y2{bottom:926.333333pt;}
.y33{bottom:926.653333pt;}
.y108{bottom:927.293333pt;}
.y8c{bottom:932.733333pt;}
.y107{bottom:942.013333pt;}
.y5b{bottom:942.653333pt;}
.y106{bottom:947.493333pt;}
.y1{bottom:949.093333pt;}
.y105{bottom:957.733333pt;}
.y32{bottom:958.693333pt;}
.h1d{height:22.250000pt;}
.h19{height:23.574375pt;}
.h15{height:25.320625pt;}
.h1a{height:31.406250pt;}
.h17{height:33.901875pt;}
.h12{height:33.918750pt;}
.h1c{height:36.671250pt;}
.hc{height:36.955000pt;}
.h13{height:37.327500pt;}
.h16{height:37.353750pt;}
.ha{height:40.163750pt;}
.h8{height:41.456250pt;}
.h7{height:47.713750pt;}
.hb{height:47.737500pt;}
.h18{height:49.020000pt;}
.h14{height:52.736250pt;}
.hf{height:52.762500pt;}
.hd{height:54.180000pt;}
.h10{height:57.787500pt;}
.he{height:62.812500pt;}
.h9{height:64.500000pt;}
.h1b{height:65.781915pt;}
.h6{height:74.820000pt;}
.h5{height:96.750000pt;}
.h2{height:761.333333pt;}
.h0{height:764.000000pt;}
.h1{height:766.666667pt;}
.h11{height:1122.559933pt;}
.h3{height:1122.560000pt;}
.h4{height:1122.666667pt;}
.w1{width:741.333333pt;}
.w2{width:744.000000pt;}
.w4{width:756.000000pt;}
.w3{width:761.333333pt;}
.w0{width:764.000000pt;}
.w6{width:793.333333pt;}
.w5{width:793.600000pt;}
.x0{left:0.000000pt;}
.x23{left:66.666667pt;}
.x1{left:113.312000pt;}
.x20{left:117.824000pt;}
.x22{left:121.024000pt;}
.x10{left:209.053333pt;}
.x11{left:213.533333pt;}
.x1e{left:216.733333pt;}
.x2{left:218.973333pt;}
.x3{left:223.453333pt;}
.x1f{left:225.693333pt;}
.x5{left:305.093333pt;}
.x6{left:309.573333pt;}
.xb{left:316.613333pt;}
.x13{left:362.720000pt;}
.x14{left:367.200000pt;}
.x1a{left:368.160000pt;}
.x1b{left:377.120000pt;}
.xc{left:379.360000pt;}
.xd{left:383.840000pt;}
.x12{left:421.600000pt;}
.xa{left:433.466667pt;}
.x7{left:455.546667pt;}
.x15{left:460.666667pt;}
.x16{left:520.226667pt;}
.x17{left:524.706667pt;}
.x1c{left:536.546667pt;}
.x1d{left:545.506667pt;}
.x4{left:550.946667pt;}
.x18{left:582.013333pt;}
.x19{left:590.973333pt;}
.xe{left:626.493333pt;}
.xf{left:630.973333pt;}
.x8{left:668.773333pt;}
.x9{left:673.253333pt;}
.x21{left:680.613333pt;}
}




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