
    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_70e7b4f5725f932d508e58c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_5fc776215bd0fd0c1eb470cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_533135e96877dc6c1c065171.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_f02a01fdc3fe04205a332920.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_0191e3a26621c0b5d4f33139.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_f5ff698e98753833d2b775a2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.087891;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1c487bbb3174d0f2bfbfbd84.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.055176;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:ffa;src:url('chunks/assets/font_8c214de5c64c5dac4a405ee2.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f973c883c4398fae77df1747.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.747559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.792000px;}
.ls4{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.223800px;}
.lsa{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.016140px;}
.ls1{letter-spacing:0.020160px;}
.ls0{letter-spacing:0.024480px;}
.lsc{letter-spacing:0.072000px;}
.lse{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.332400px;}
.lsb{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.792000px;}
.ls6{letter-spacing:28.200000px;}
.ls13{letter-spacing:163.920000px;}
.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;}
}
.ws9{word-spacing:-54.000000px;}
.wsa{word-spacing:-39.212400px;}
.ws0{word-spacing:-17.125200px;}
.ws7{word-spacing:-14.904000px;}
.ws2{word-spacing:-14.616000px;}
.wsb{word-spacing:-14.544000px;}
.ws8{word-spacing:-14.472000px;}
.ws6{word-spacing:-14.328000px;}
.ws3{word-spacing:-14.112000px;}
.ws4{word-spacing:-13.824000px;}
.ws1{word-spacing:-8.477280px;}
.ws5{word-spacing:0.000000px;}
._16{margin-left:-9.576000px;}
._26{margin-left:-8.352960px;}
._1d{margin-left:-7.309440px;}
._3{margin-left:-5.812320px;}
._4{margin-left:-4.775040px;}
._1{margin-left:-3.168000px;}
._0{margin-left:-1.838400px;}
._2{width:1.386720px;}
._11{width:2.751360px;}
._17{width:3.767040px;}
._c{width:4.975680px;}
._7{width:5.980800px;}
._5{width:7.272000px;}
._6{width:8.554080px;}
._9{width:10.008000px;}
._a{width:11.126400px;}
._14{width:12.240000px;}
._19{width:13.422240px;}
._13{width:16.420800px;}
._8{width:18.000000px;}
._15{width:19.190400px;}
._b{width:20.356800px;}
._20{width:21.378720px;}
._1c{width:22.497600px;}
._1b{width:24.086400px;}
._1a{width:25.344000px;}
._f{width:26.462400px;}
._10{width:27.703680px;}
._12{width:28.716480px;}
._18{width:29.778720px;}
._d{width:31.536000px;}
._e{width:32.942400px;}
._23{width:36.000000px;}
._24{width:37.132800px;}
._22{width:38.232000px;}
._21{width:39.388800px;}
._1e{width:45.720000px;}
._1f{width:48.561600px;}
._25{width:78.950400px;}
._29{width:86.510400px;}
._27{width:318.403680px;}
._28{width:319.502400px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:48.384000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y96{bottom:2.265000px;}
.y99{bottom:3.450000px;}
.yb0{bottom:3.495000px;}
.ye4{bottom:6.330000px;}
.ycf{bottom:10.365000px;}
.y98{bottom:18.570000px;}
.yaf{bottom:18.615000px;}
.y4a{bottom:20.520000px;}
.y4c{bottom:20.550000px;}
.ye3{bottom:21.270000px;}
.ycd{bottom:25.485000px;}
.ydd{bottom:43.305000px;}
.y4e{bottom:45.900000px;}
.ye1{bottom:51.375000px;}
.y2{bottom:57.960000px;}
.ydc{bottom:58.425000px;}
.yda{bottom:116.640000px;}
.y26{bottom:120.240000px;}
.yad{bottom:124.200000px;}
.yf5{bottom:124.380000px;}
.y93{bottom:130.500000px;}
.y6b{bottom:133.200000px;}
.yd9{bottom:142.020000px;}
.y4b{bottom:142.740000px;}
.yac{bottom:149.760000px;}
.ycb{bottom:153.930000px;}
.y92{bottom:155.730000px;}
.y25{bottom:157.710000px;}
.y6a{bottom:158.610000px;}
.y87{bottom:164.730000px;}
.yd8{bottom:167.430000px;}
.y10e{bottom:170.490000px;}
.yab{bottom:175.170000px;}
.yf4{bottom:175.350000px;}
.yca{bottom:179.490000px;}
.y49{bottom:180.930000px;}
.y91{bottom:181.470000px;}
.y69{bottom:184.170000px;}
.y86{bottom:190.110000px;}
.yd7{bottom:192.990000px;}
.y24{bottom:195.150000px;}
.y10d{bottom:196.050000px;}
.yaa{bottom:200.730000px;}
.yc9{bottom:204.870000px;}
.y90{bottom:207.030000px;}
.y68{bottom:209.550000px;}
.y85{bottom:215.670000px;}
.yd6{bottom:218.370000px;}
.y23{bottom:220.530000px;}
.y10c{bottom:221.430000px;}
.ya9{bottom:226.110000px;}
.yc8{bottom:230.430000px;}
.y8f{bottom:232.410000px;}
.y67{bottom:234.930000px;}
.y48{bottom:239.610000px;}
.y84{bottom:241.050000px;}
.yd5{bottom:243.930000px;}
.y22{bottom:246.090000px;}
.yf3{bottom:251.670000px;}
.yc7{bottom:255.810000px;}
.y10b{bottom:258.870000px;}
.y66{bottom:260.490000px;}
.ya8{bottom:263.550000px;}
.y83{bottom:266.610000px;}
.yd4{bottom:269.310000px;}
.y8e{bottom:269.850000px;}
.y21{bottom:271.470000px;}
.y47{bottom:277.050000px;}
.yc6{bottom:281.190000px;}
.y65{bottom:285.870000px;}
.y97{bottom:287.820000px;}
.ya7{bottom:289.110000px;}
.y82{bottom:291.990000px;}
.yd3{bottom:294.690000px;}
.y10a{bottom:296.310000px;}
.y20{bottom:297.030000px;}
.y46{bottom:302.610000px;}
.y121{bottom:305.490000px;}
.yc5{bottom:306.750000px;}
.y64{bottom:311.430000px;}
.ya6{bottom:314.490000px;}
.y81{bottom:317.370000px;}
.yd2{bottom:320.250000px;}
.y1f{bottom:322.410000px;}
.y45{bottom:327.990000px;}
.y120{bottom:330.870000px;}
.yc4{bottom:332.130000px;}
.y109{bottom:333.750000px;}
.y63{bottom:336.810000px;}
.ya5{bottom:339.870000px;}
.yd1{bottom:345.630000px;}
.y1e{bottom:347.790000px;}
.y44{bottom:353.370000px;}
.y80{bottom:354.810000px;}
.y11f{bottom:356.430000px;}
.yc3{bottom:357.690000px;}
.ye0{bottom:363.420000px;}
.ya4{bottom:365.430000px;}
.y108{bottom:371.190000px;}
.y1d{bottom:373.350000px;}
.y62{bottom:374.250000px;}
.y43{bottom:378.930000px;}
.y11e{bottom:381.810000px;}
.ya3{bottom:390.810000px;}
.y7f{bottom:392.430000px;}
.yc2{bottom:395.130000px;}
.y1c{bottom:398.730000px;}
.ye2{bottom:399.630000px;}
.y61{bottom:399.810000px;}
.y42{bottom:404.355000px;}
.y107{bottom:408.675000px;}
.ya2{bottom:416.235000px;}
.yf2{bottom:416.415000px;}
.y7e{bottom:417.855000px;}
.y11d{bottom:419.295000px;}
.yc1{bottom:420.555000px;}
.y1b{bottom:424.335000px;}
.y60{bottom:425.235000px;}
.y41{bottom:429.915000px;}
.ya1{bottom:441.795000px;}
.y7d{bottom:443.235000px;}
.y11c{bottom:444.675000px;}
.yc0{bottom:446.115000px;}
.y1a{bottom:449.715000px;}
.y5f{bottom:450.615000px;}
.y40{bottom:455.295000px;}
.ya0{bottom:467.175000px;}
.yf1{bottom:467.355000px;}
.y7c{bottom:468.795000px;}
.y11b{bottom:470.235000px;}
.ybf{bottom:471.495000px;}
.y106{bottom:471.675000px;}
.y19{bottom:475.095000px;}
.y5e{bottom:476.175000px;}
.y3f{bottom:480.675000px;}
.y9f{bottom:492.735000px;}
.y7b{bottom:494.175000px;}
.y11a{bottom:495.615000px;}
.ybe{bottom:496.875000px;}
.y105{bottom:497.055000px;}
.y18{bottom:500.655000px;}
.y3e{bottom:506.235000px;}
.y5d{bottom:513.615000px;}
.yf0{bottom:518.115000px;}
.y7a{bottom:519.555000px;}
.ybd{bottom:522.435000px;}
.y104{bottom:522.615000px;}
.y17{bottom:526.035000px;}
.y9e{bottom:530.175000px;}
.y119{bottom:533.055000px;}
.y3d{bottom:543.675000px;}
.y79{bottom:545.115000px;}
.ybc{bottom:547.815000px;}
.yae{bottom:547.920000px;}
.y5c{bottom:551.055000px;}
.y16{bottom:551.595000px;}
.y118{bottom:558.615000px;}
.y103{bottom:560.055000px;}
.y3c{bottom:569.055000px;}
.y78{bottom:570.495000px;}
.ybb{bottom:573.375000px;}
.y5b{bottom:576.435000px;}
.y15{bottom:576.975000px;}
.y117{bottom:583.995000px;}
.y3b{bottom:594.615000px;}
.y77{bottom:596.055000px;}
.y102{bottom:597.495000px;}
.yba{bottom:598.755000px;}
.y5a{bottom:601.995000px;}
.y14{bottom:602.355000px;}
.yef{bottom:619.995000px;}
.y76{bottom:621.435000px;}
.y59{bottom:627.375000px;}
.y13{bottom:627.915000px;}
.y3a{bottom:632.055000px;}
.y101{bottom:634.935000px;}
.yb9{bottom:636.195000px;}
.yee{bottom:645.375000px;}
.y75{bottom:646.815000px;}
.y58{bottom:652.785000px;}
.y12{bottom:653.325000px;}
.y39{bottom:657.465000px;}
.y100{bottom:660.345000px;}
.yed{bottom:670.965000px;}
.y116{bottom:672.405000px;}
.yb8{bottom:673.665000px;}
.y57{bottom:678.345000px;}
.y11{bottom:678.885000px;}
.y38{bottom:682.845000px;}
.y74{bottom:684.465000px;}
.yd0{bottom:685.185000px;}
.yff{bottom:685.905000px;}
.yec{bottom:696.345000px;}
.y115{bottom:697.785000px;}
.yb7{bottom:699.045000px;}
.ydb{bottom:702.180000px;}
.y56{bottom:703.725000px;}
.y37{bottom:708.405000px;}
.y8d{bottom:714.705000px;}
.ydf{bottom:715.425000px;}
.y10{bottom:716.325000px;}
.y73{bottom:721.905000px;}
.yfe{bottom:723.345000px;}
.yb6{bottom:724.605000px;}
.y55{bottom:729.285000px;}
.yde{bottom:730.365000px;}
.y36{bottom:733.785000px;}
.y114{bottom:735.225000px;}
.yeb{bottom:747.285000px;}
.yfd{bottom:748.725000px;}
.yb5{bottom:749.985000px;}
.y8c{bottom:752.145000px;}
.yf{bottom:753.765000px;}
.y54{bottom:754.665000px;}
.y35{bottom:759.345000px;}
.y113{bottom:760.785000px;}
.yea{bottom:772.665000px;}
.yfc{bottom:774.105000px;}
.yb4{bottom:775.545000px;}
.y8b{bottom:777.525000px;}
.y53{bottom:780.045000px;}
.y72{bottom:784.725000px;}
.y112{bottom:786.165000px;}
.ye{bottom:791.205000px;}
.y34{bottom:796.785000px;}
.ye9{bottom:798.225000px;}
.yfb{bottom:799.665000px;}
.yb3{bottom:800.925000px;}
.y8a{bottom:803.085000px;}
.y52{bottom:805.605000px;}
.y71{bottom:810.105000px;}
.y111{bottom:811.725000px;}
.y33{bottom:822.165000px;}
.yd{bottom:822.525000px;}
.ye8{bottom:823.605000px;}
.yb2{bottom:826.305000px;}
.y89{bottom:828.465000px;}
.y51{bottom:830.985000px;}
.y70{bottom:835.665000px;}
.yfa{bottom:837.105000px;}
.y32{bottom:847.725000px;}
.y110{bottom:849.165000px;}
.yb1{bottom:851.865000px;}
.yc{bottom:854.025000px;}
.y6f{bottom:861.045000px;}
.yf9{bottom:862.485000px;}
.y50{bottom:863.385000px;}
.y88{bottom:865.905000px;}
.ycc{bottom:868.680000px;}
.y31{bottom:873.105000px;}
.y10f{bottom:874.545000px;}
.yce{bottom:879.045000px;}
.y95{bottom:882.900000px;}
.yb{bottom:885.525000px;}
.y6e{bottom:886.605000px;}
.y30{bottom:898.530000px;}
.yf8{bottom:899.970000px;}
.y94{bottom:900.330000px;}
.y6d{bottom:912.030000px;}
.ya{bottom:917.070000px;}
.y2f{bottom:924.090000px;}
.yf7{bottom:925.530000px;}
.ye7{bottom:937.410000px;}
.y9{bottom:948.390000px;}
.y2e{bottom:949.470000px;}
.yf6{bottom:950.910000px;}
.ye6{bottom:962.970000px;}
.y2d{bottom:975.030000px;}
.y8{bottom:979.890000px;}
.ye5{bottom:988.350000px;}
.y2c{bottom:1000.410000px;}
.y7{bottom:1011.390000px;}
.y9d{bottom:1012.470000px;}
.y2b{bottom:1025.790000px;}
.y9c{bottom:1037.850000px;}
.y6{bottom:1042.890000px;}
.y2a{bottom:1051.350000px;}
.y9b{bottom:1063.230000px;}
.y5{bottom:1068.270000px;}
.y4f{bottom:1075.290000px;}
.y29{bottom:1076.730000px;}
.y9a{bottom:1088.790000px;}
.y4d{bottom:1092.930000px;}
.y28{bottom:1102.290000px;}
.y4{bottom:1107.150000px;}
.y6c{bottom:1114.170000px;}
.y3{bottom:1136.850000px;}
.y27{bottom:1139.730000px;}
.y1{bottom:1192.860000px;}
.he{height:33.683203px;}
.ha{height:33.783750px;}
.h7{height:37.440000px;}
.h8{height:37.476000px;}
.h4{height:38.466562px;}
.h12{height:41.493516px;}
.hc{height:41.726953px;}
.hb{height:44.640000px;}
.hf{height:45.509766px;}
.hd{height:45.720000px;}
.h10{height:45.900000px;}
.h11{height:52.380000px;}
.h5{height:62.226562px;}
.h2{height:62.402344px;}
.h6{height:62.507812px;}
.h9{height:62.856000px;}
.h3{height:73.134141px;}
.h14{height:78.480000px;}
.h13{height:85.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:50.220000px;}
.w4{width:59.400000px;}
.w9{width:59.760000px;}
.w7{width:59.796000px;}
.w6{width:59.940000px;}
.w8{width:59.976000px;}
.w3{width:97.236000px;}
.wc{width:656.100000px;}
.wd{width:701.460000px;}
.wb{width:701.640000px;}
.wa{width:702.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:1.296000px;}
.x22{left:3.456000px;}
.x1e{left:6.336000px;}
.x16{left:7.560000px;}
.x15{left:9.180000px;}
.xa{left:12.960000px;}
.x11{left:16.560000px;}
.xf{left:17.820000px;}
.x13{left:20.700000px;}
.x8{left:23.220000px;}
.xc{left:24.840000px;}
.x1c{left:38.556000px;}
.x1d{left:39.996000px;}
.x6{left:48.780000px;}
.x1a{left:58.530000px;}
.x21{left:98.280000px;}
.x1{left:106.235987px;}
.x23{left:112.715987px;}
.x25{left:117.035987px;}
.x19{left:121.715987px;}
.x2{left:133.235987px;}
.x3{left:160.229987px;}
.x5{left:172.650000px;}
.x4{left:196.229987px;}
.x26{left:237.315000px;}
.x7{left:270.795000px;}
.x9{left:330.195000px;}
.x1f{left:344.234987px;}
.x24{left:350.534987px;}
.xb{left:380.415000px;}
.x20{left:433.005000px;}
.xd{left:440.355000px;}
.x17{left:446.504987px;}
.xe{left:500.145000px;}
.x10{left:550.365000px;}
.x12{left:600.585000px;}
.x14{left:660.570000px;}
.x18{left:808.379987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.704000pt;}
.ls4{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.198933pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.014347pt;}
.ls1{letter-spacing:0.017920pt;}
.ls0{letter-spacing:0.021760pt;}
.lsc{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.295467pt;}
.lsb{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.704000pt;}
.ls6{letter-spacing:25.066667pt;}
.ls13{letter-spacing:145.706667pt;}
.ws9{word-spacing:-48.000000pt;}
.wsa{word-spacing:-34.855467pt;}
.ws0{word-spacing:-15.222400pt;}
.ws7{word-spacing:-13.248000pt;}
.ws2{word-spacing:-12.992000pt;}
.wsb{word-spacing:-12.928000pt;}
.ws8{word-spacing:-12.864000pt;}
.ws6{word-spacing:-12.736000pt;}
.ws3{word-spacing:-12.544000pt;}
.ws4{word-spacing:-12.288000pt;}
.ws1{word-spacing:-7.535360pt;}
.ws5{word-spacing:0.000000pt;}
._16{margin-left:-8.512000pt;}
._26{margin-left:-7.424853pt;}
._1d{margin-left:-6.497280pt;}
._3{margin-left:-5.166507pt;}
._4{margin-left:-4.244480pt;}
._1{margin-left:-2.816000pt;}
._0{margin-left:-1.634133pt;}
._2{width:1.232640pt;}
._11{width:2.445653pt;}
._17{width:3.348480pt;}
._c{width:4.422827pt;}
._7{width:5.316267pt;}
._5{width:6.464000pt;}
._6{width:7.603627pt;}
._9{width:8.896000pt;}
._a{width:9.890133pt;}
._14{width:10.880000pt;}
._19{width:11.930880pt;}
._13{width:14.596267pt;}
._8{width:16.000000pt;}
._15{width:17.058133pt;}
._b{width:18.094933pt;}
._20{width:19.003307pt;}
._1c{width:19.997867pt;}
._1b{width:21.410133pt;}
._1a{width:22.528000pt;}
._f{width:23.522133pt;}
._10{width:24.625493pt;}
._12{width:25.525760pt;}
._18{width:26.469973pt;}
._d{width:28.032000pt;}
._e{width:29.282133pt;}
._23{width:32.000000pt;}
._24{width:33.006933pt;}
._22{width:33.984000pt;}
._21{width:35.012267pt;}
._1e{width:40.640000pt;}
._1f{width:43.165867pt;}
._25{width:70.178133pt;}
._29{width:76.898133pt;}
._27{width:283.025493pt;}
._28{width:284.002133pt;}
.fs7{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:43.008000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:2.013333pt;}
.y99{bottom:3.066667pt;}
.yb0{bottom:3.106667pt;}
.ye4{bottom:5.626667pt;}
.ycf{bottom:9.213333pt;}
.y98{bottom:16.506667pt;}
.yaf{bottom:16.546667pt;}
.y4a{bottom:18.240000pt;}
.y4c{bottom:18.266667pt;}
.ye3{bottom:18.906667pt;}
.ycd{bottom:22.653333pt;}
.ydd{bottom:38.493333pt;}
.y4e{bottom:40.800000pt;}
.ye1{bottom:45.666667pt;}
.y2{bottom:51.520000pt;}
.ydc{bottom:51.933333pt;}
.yda{bottom:103.680000pt;}
.y26{bottom:106.880000pt;}
.yad{bottom:110.400000pt;}
.yf5{bottom:110.560000pt;}
.y93{bottom:116.000000pt;}
.y6b{bottom:118.400000pt;}
.yd9{bottom:126.240000pt;}
.y4b{bottom:126.880000pt;}
.yac{bottom:133.120000pt;}
.ycb{bottom:136.826667pt;}
.y92{bottom:138.426667pt;}
.y25{bottom:140.186667pt;}
.y6a{bottom:140.986667pt;}
.y87{bottom:146.426667pt;}
.yd8{bottom:148.826667pt;}
.y10e{bottom:151.546667pt;}
.yab{bottom:155.706667pt;}
.yf4{bottom:155.866667pt;}
.yca{bottom:159.546667pt;}
.y49{bottom:160.826667pt;}
.y91{bottom:161.306667pt;}
.y69{bottom:163.706667pt;}
.y86{bottom:168.986667pt;}
.yd7{bottom:171.546667pt;}
.y24{bottom:173.466667pt;}
.y10d{bottom:174.266667pt;}
.yaa{bottom:178.426667pt;}
.yc9{bottom:182.106667pt;}
.y90{bottom:184.026667pt;}
.y68{bottom:186.266667pt;}
.y85{bottom:191.706667pt;}
.yd6{bottom:194.106667pt;}
.y23{bottom:196.026667pt;}
.y10c{bottom:196.826667pt;}
.ya9{bottom:200.986667pt;}
.yc8{bottom:204.826667pt;}
.y8f{bottom:206.586667pt;}
.y67{bottom:208.826667pt;}
.y48{bottom:212.986667pt;}
.y84{bottom:214.266667pt;}
.yd5{bottom:216.826667pt;}
.y22{bottom:218.746667pt;}
.yf3{bottom:223.706667pt;}
.yc7{bottom:227.386667pt;}
.y10b{bottom:230.106667pt;}
.y66{bottom:231.546667pt;}
.ya8{bottom:234.266667pt;}
.y83{bottom:236.986667pt;}
.yd4{bottom:239.386667pt;}
.y8e{bottom:239.866667pt;}
.y21{bottom:241.306667pt;}
.y47{bottom:246.266667pt;}
.yc6{bottom:249.946667pt;}
.y65{bottom:254.106667pt;}
.y97{bottom:255.840000pt;}
.ya7{bottom:256.986667pt;}
.y82{bottom:259.546667pt;}
.yd3{bottom:261.946667pt;}
.y10a{bottom:263.386667pt;}
.y20{bottom:264.026667pt;}
.y46{bottom:268.986667pt;}
.y121{bottom:271.546667pt;}
.yc5{bottom:272.666667pt;}
.y64{bottom:276.826667pt;}
.ya6{bottom:279.546667pt;}
.y81{bottom:282.106667pt;}
.yd2{bottom:284.666667pt;}
.y1f{bottom:286.586667pt;}
.y45{bottom:291.546667pt;}
.y120{bottom:294.106667pt;}
.yc4{bottom:295.226667pt;}
.y109{bottom:296.666667pt;}
.y63{bottom:299.386667pt;}
.ya5{bottom:302.106667pt;}
.yd1{bottom:307.226667pt;}
.y1e{bottom:309.146667pt;}
.y44{bottom:314.106667pt;}
.y80{bottom:315.386667pt;}
.y11f{bottom:316.826667pt;}
.yc3{bottom:317.946667pt;}
.ye0{bottom:323.040000pt;}
.ya4{bottom:324.826667pt;}
.y108{bottom:329.946667pt;}
.y1d{bottom:331.866667pt;}
.y62{bottom:332.666667pt;}
.y43{bottom:336.826667pt;}
.y11e{bottom:339.386667pt;}
.ya3{bottom:347.386667pt;}
.y7f{bottom:348.826667pt;}
.yc2{bottom:351.226667pt;}
.y1c{bottom:354.426667pt;}
.ye2{bottom:355.226667pt;}
.y61{bottom:355.386667pt;}
.y42{bottom:359.426667pt;}
.y107{bottom:363.266667pt;}
.ya2{bottom:369.986667pt;}
.yf2{bottom:370.146667pt;}
.y7e{bottom:371.426667pt;}
.y11d{bottom:372.706667pt;}
.yc1{bottom:373.826667pt;}
.y1b{bottom:377.186667pt;}
.y60{bottom:377.986667pt;}
.y41{bottom:382.146667pt;}
.ya1{bottom:392.706667pt;}
.y7d{bottom:393.986667pt;}
.y11c{bottom:395.266667pt;}
.yc0{bottom:396.546667pt;}
.y1a{bottom:399.746667pt;}
.y5f{bottom:400.546667pt;}
.y40{bottom:404.706667pt;}
.ya0{bottom:415.266667pt;}
.yf1{bottom:415.426667pt;}
.y7c{bottom:416.706667pt;}
.y11b{bottom:417.986667pt;}
.ybf{bottom:419.106667pt;}
.y106{bottom:419.266667pt;}
.y19{bottom:422.306667pt;}
.y5e{bottom:423.266667pt;}
.y3f{bottom:427.266667pt;}
.y9f{bottom:437.986667pt;}
.y7b{bottom:439.266667pt;}
.y11a{bottom:440.546667pt;}
.ybe{bottom:441.666667pt;}
.y105{bottom:441.826667pt;}
.y18{bottom:445.026667pt;}
.y3e{bottom:449.986667pt;}
.y5d{bottom:456.546667pt;}
.yf0{bottom:460.546667pt;}
.y7a{bottom:461.826667pt;}
.ybd{bottom:464.386667pt;}
.y104{bottom:464.546667pt;}
.y17{bottom:467.586667pt;}
.y9e{bottom:471.266667pt;}
.y119{bottom:473.826667pt;}
.y3d{bottom:483.266667pt;}
.y79{bottom:484.546667pt;}
.ybc{bottom:486.946667pt;}
.yae{bottom:487.040000pt;}
.y5c{bottom:489.826667pt;}
.y16{bottom:490.306667pt;}
.y118{bottom:496.546667pt;}
.y103{bottom:497.826667pt;}
.y3c{bottom:505.826667pt;}
.y78{bottom:507.106667pt;}
.ybb{bottom:509.666667pt;}
.y5b{bottom:512.386667pt;}
.y15{bottom:512.866667pt;}
.y117{bottom:519.106667pt;}
.y3b{bottom:528.546667pt;}
.y77{bottom:529.826667pt;}
.y102{bottom:531.106667pt;}
.yba{bottom:532.226667pt;}
.y5a{bottom:535.106667pt;}
.y14{bottom:535.426667pt;}
.yef{bottom:551.106667pt;}
.y76{bottom:552.386667pt;}
.y59{bottom:557.666667pt;}
.y13{bottom:558.146667pt;}
.y3a{bottom:561.826667pt;}
.y101{bottom:564.386667pt;}
.yb9{bottom:565.506667pt;}
.yee{bottom:573.666667pt;}
.y75{bottom:574.946667pt;}
.y58{bottom:580.253333pt;}
.y12{bottom:580.733333pt;}
.y39{bottom:584.413333pt;}
.y100{bottom:586.973333pt;}
.yed{bottom:596.413333pt;}
.y116{bottom:597.693333pt;}
.yb8{bottom:598.813333pt;}
.y57{bottom:602.973333pt;}
.y11{bottom:603.453333pt;}
.y38{bottom:606.973333pt;}
.y74{bottom:608.413333pt;}
.yd0{bottom:609.053333pt;}
.yff{bottom:609.693333pt;}
.yec{bottom:618.973333pt;}
.y115{bottom:620.253333pt;}
.yb7{bottom:621.373333pt;}
.ydb{bottom:624.160000pt;}
.y56{bottom:625.533333pt;}
.y37{bottom:629.693333pt;}
.y8d{bottom:635.293333pt;}
.ydf{bottom:635.933333pt;}
.y10{bottom:636.733333pt;}
.y73{bottom:641.693333pt;}
.yfe{bottom:642.973333pt;}
.yb6{bottom:644.093333pt;}
.y55{bottom:648.253333pt;}
.yde{bottom:649.213333pt;}
.y36{bottom:652.253333pt;}
.y114{bottom:653.533333pt;}
.yeb{bottom:664.253333pt;}
.yfd{bottom:665.533333pt;}
.yb5{bottom:666.653333pt;}
.y8c{bottom:668.573333pt;}
.yf{bottom:670.013333pt;}
.y54{bottom:670.813333pt;}
.y35{bottom:674.973333pt;}
.y113{bottom:676.253333pt;}
.yea{bottom:686.813333pt;}
.yfc{bottom:688.093333pt;}
.yb4{bottom:689.373333pt;}
.y8b{bottom:691.133333pt;}
.y53{bottom:693.373333pt;}
.y72{bottom:697.533333pt;}
.y112{bottom:698.813333pt;}
.ye{bottom:703.293333pt;}
.y34{bottom:708.253333pt;}
.ye9{bottom:709.533333pt;}
.yfb{bottom:710.813333pt;}
.yb3{bottom:711.933333pt;}
.y8a{bottom:713.853333pt;}
.y52{bottom:716.093333pt;}
.y71{bottom:720.093333pt;}
.y111{bottom:721.533333pt;}
.y33{bottom:730.813333pt;}
.yd{bottom:731.133333pt;}
.ye8{bottom:732.093333pt;}
.yb2{bottom:734.493333pt;}
.y89{bottom:736.413333pt;}
.y51{bottom:738.653333pt;}
.y70{bottom:742.813333pt;}
.yfa{bottom:744.093333pt;}
.y32{bottom:753.533333pt;}
.y110{bottom:754.813333pt;}
.yb1{bottom:757.213333pt;}
.yc{bottom:759.133333pt;}
.y6f{bottom:765.373333pt;}
.yf9{bottom:766.653333pt;}
.y50{bottom:767.453333pt;}
.y88{bottom:769.693333pt;}
.ycc{bottom:772.160000pt;}
.y31{bottom:776.093333pt;}
.y10f{bottom:777.373333pt;}
.yce{bottom:781.373333pt;}
.y95{bottom:784.800000pt;}
.yb{bottom:787.133333pt;}
.y6e{bottom:788.093333pt;}
.y30{bottom:798.693333pt;}
.yf8{bottom:799.973333pt;}
.y94{bottom:800.293333pt;}
.y6d{bottom:810.693333pt;}
.ya{bottom:815.173333pt;}
.y2f{bottom:821.413333pt;}
.yf7{bottom:822.693333pt;}
.ye7{bottom:833.253333pt;}
.y9{bottom:843.013333pt;}
.y2e{bottom:843.973333pt;}
.yf6{bottom:845.253333pt;}
.ye6{bottom:855.973333pt;}
.y2d{bottom:866.693333pt;}
.y8{bottom:871.013333pt;}
.ye5{bottom:878.533333pt;}
.y2c{bottom:889.253333pt;}
.y7{bottom:899.013333pt;}
.y9d{bottom:899.973333pt;}
.y2b{bottom:911.813333pt;}
.y9c{bottom:922.533333pt;}
.y6{bottom:927.013333pt;}
.y2a{bottom:934.533333pt;}
.y9b{bottom:945.093333pt;}
.y5{bottom:949.573333pt;}
.y4f{bottom:955.813333pt;}
.y29{bottom:957.093333pt;}
.y9a{bottom:967.813333pt;}
.y4d{bottom:971.493333pt;}
.y28{bottom:979.813333pt;}
.y4{bottom:984.133333pt;}
.y6c{bottom:990.373333pt;}
.y3{bottom:1010.533333pt;}
.y27{bottom:1013.093333pt;}
.y1{bottom:1060.320000pt;}
.he{height:29.940625pt;}
.ha{height:30.030000pt;}
.h7{height:33.280000pt;}
.h8{height:33.312000pt;}
.h4{height:34.192500pt;}
.h12{height:36.883125pt;}
.hc{height:37.090625pt;}
.hb{height:39.680000pt;}
.hf{height:40.453125pt;}
.hd{height:40.640000pt;}
.h10{height:40.800000pt;}
.h11{height:46.560000pt;}
.h5{height:55.312500pt;}
.h2{height:55.468750pt;}
.h6{height:55.562500pt;}
.h9{height:55.872000pt;}
.h3{height:65.008125pt;}
.h14{height:69.760000pt;}
.h13{height:76.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:44.640000pt;}
.w4{width:52.800000pt;}
.w9{width:53.120000pt;}
.w7{width:53.152000pt;}
.w6{width:53.280000pt;}
.w8{width:53.312000pt;}
.w3{width:86.432000pt;}
.wc{width:583.200000pt;}
.wd{width:623.520000pt;}
.wb{width:623.680000pt;}
.wa{width:624.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:1.152000pt;}
.x22{left:3.072000pt;}
.x1e{left:5.632000pt;}
.x16{left:6.720000pt;}
.x15{left:8.160000pt;}
.xa{left:11.520000pt;}
.x11{left:14.720000pt;}
.xf{left:15.840000pt;}
.x13{left:18.400000pt;}
.x8{left:20.640000pt;}
.xc{left:22.080000pt;}
.x1c{left:34.272000pt;}
.x1d{left:35.552000pt;}
.x6{left:43.360000pt;}
.x1a{left:52.026667pt;}
.x21{left:87.360000pt;}
.x1{left:94.431988pt;}
.x23{left:100.191988pt;}
.x25{left:104.031988pt;}
.x19{left:108.191988pt;}
.x2{left:118.431988pt;}
.x3{left:142.426655pt;}
.x5{left:153.466667pt;}
.x4{left:174.426655pt;}
.x26{left:210.946667pt;}
.x7{left:240.706667pt;}
.x9{left:293.506667pt;}
.x1f{left:305.986655pt;}
.x24{left:311.586655pt;}
.xb{left:338.146667pt;}
.x20{left:384.893333pt;}
.xd{left:391.426667pt;}
.x17{left:396.893322pt;}
.xe{left:444.573333pt;}
.x10{left:489.213333pt;}
.x12{left:533.853333pt;}
.x14{left:587.173333pt;}
.x18{left:718.559988pt;}
}




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