
    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_6c4294feb2e57257d5e67784.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937500;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_15a8a09b705fedad341496ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.992188;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_cc9490425025108d12cfde6e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.158691;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_0569a14e2682d84e2f977c44.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_22bf20c6609a3f72ec73ba06.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_b0fd3aa172f56f06e21619ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.992188;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;}
.m5{transform:matrix(0.142808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142808,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m4{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.241380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241380,0.000000,0.000000,0.250000,0,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;}
.lsc{letter-spacing:-5.772000px;}
.ls10{letter-spacing:-2.880000px;}
.ls5{letter-spacing:-1.602000px;}
.lsb{letter-spacing:-1.392000px;}
.ls13{letter-spacing:-1.224000px;}
.ls7{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.576000px;}
.ls4{letter-spacing:-0.463800px;}
.ls3{letter-spacing:-0.164400px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.048960px;}
.ls11{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.198720px;}
.ls12{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.222431px;}
.ls0{letter-spacing:0.296400px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.lse{letter-spacing:1.080000px;}
.lsf{letter-spacing:1.620000px;}
.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;}
}
.wsf{word-spacing:-49.248000px;}
.ws8{word-spacing:-41.368320px;}
.wsd{word-spacing:-20.794930px;}
.ws10{word-spacing:-19.944000px;}
.ws11{word-spacing:-19.800000px;}
.ws1{word-spacing:-19.728000px;}
.ws7{word-spacing:-19.152000px;}
.ws0{word-spacing:-18.446160px;}
.ws5{word-spacing:-18.149760px;}
.wse{word-spacing:-16.848000px;}
.wsc{word-spacing:-16.620480px;}
.ws2{word-spacing:-16.571520px;}
.wsa{word-spacing:-15.179520px;}
.ws4{word-spacing:-14.970240px;}
.ws3{word-spacing:-14.506440px;}
.wsb{word-spacing:-10.799520px;}
.ws6{word-spacing:0.000000px;}
.ws9{word-spacing:262.044278px;}
._8{margin-left:-8.280000px;}
._1{margin-left:-7.086240px;}
._13{margin-left:-5.908560px;}
._2{margin-left:-4.768560px;}
._3{margin-left:-3.560160px;}
._6{margin-left:-2.340720px;}
._0{margin-left:-1.259280px;}
._4{width:1.361280px;}
._5{width:2.977680px;}
._7{width:4.201920px;}
._c{width:5.506080px;}
._12{width:6.556560px;}
._d{width:8.214240px;}
._e{width:10.002480px;}
._9{width:11.635680px;}
._a{width:12.657840px;}
._b{width:14.090400px;}
._15{width:15.738720px;}
._16{width:16.807440px;}
._20{width:18.267120px;}
._10{width:19.364400px;}
._f{width:21.248880px;}
._11{width:22.685280px;}
._14{width:24.032160px;}
._1f{width:25.851360px;}
._1b{width:27.504000px;}
._27{width:28.686720px;}
._19{width:29.952000px;}
._1a{width:31.160880px;}
._1c{width:32.465520px;}
._21{width:33.579600px;}
._22{width:34.967040px;}
._2c{width:36.456960px;}
._28{width:38.191440px;}
._1d{width:39.756000px;}
._1e{width:40.803120px;}
._18{width:42.803280px;}
._17{width:43.884720px;}
._2a{width:45.948000px;}
._29{width:47.412720px;}
._2b{width:49.572000px;}
._24{width:55.627440px;}
._25{width:57.116400px;}
._2e{width:62.316720px;}
._23{width:64.980720px;}
._2d{width:108.839280px;}
._26{width:193.548000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(112,48,160);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:46.154365px;}
.fs4{font-size:46.265580px;}
.fs1{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:75.893905px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.240000px;}
.y2{bottom:79.236000px;}
.y9d{bottom:80.247669px;}
.y8b{bottom:104.436000px;}
.y99{bottom:109.836000px;}
.y10e{bottom:113.076000px;}
.y55{bottom:113.436000px;}
.y2d{bottom:115.596000px;}
.yab{bottom:123.516000px;}
.y71{bottom:124.956000px;}
.y102{bottom:128.916000px;}
.y9c{bottom:128.928702px;}
.y11b{bottom:133.956000px;}
.yd8{bottom:134.316000px;}
.ye6{bottom:134.676000px;}
.y2c{bottom:139.356000px;}
.y8a{bottom:140.436000px;}
.yf9{bottom:140.796000px;}
.y98{bottom:145.836000px;}
.y54{bottom:146.196000px;}
.y10d{bottom:149.076000px;}
.yf2{bottom:151.590000px;}
.yaa{bottom:159.510000px;}
.y70{bottom:160.950000px;}
.y2b{bottom:163.110000px;}
.y101{bottom:164.910000px;}
.y11a{bottom:169.590000px;}
.yd7{bottom:170.310000px;}
.ye5{bottom:170.670000px;}
.y89{bottom:176.430000px;}
.y53{bottom:179.310000px;}
.y97{bottom:181.830000px;}
.y10c{bottom:184.710000px;}
.yb5{bottom:185.430000px;}
.y2a{bottom:186.510000px;}
.yf1{bottom:187.590000px;}
.yc5{bottom:189.390000px;}
.y9e{bottom:193.016545px;}
.y119{bottom:193.755000px;}
.ya9{bottom:195.555000px;}
.y6f{bottom:196.995000px;}
.yb4{bottom:199.155000px;}
.y100{bottom:200.955000px;}
.yd6{bottom:206.355000px;}
.y29{bottom:210.315000px;}
.y52{bottom:212.115000px;}
.yf8{bottom:212.475000px;}
.y96{bottom:217.875000px;}
.ye4{bottom:218.595000px;}
.y10b{bottom:220.755000px;}
.yf0{bottom:223.635000px;}
.y118{bottom:229.395000px;}
.ya8{bottom:231.555000px;}
.y6e{bottom:232.635000px;}
.yc4{bottom:233.715000px;}
.y28{bottom:234.075000px;}
.yb3{bottom:235.155000px;}
.yff{bottom:236.955000px;}
.yd5{bottom:241.995000px;}
.y51{bottom:244.875000px;}
.y88{bottom:248.115000px;}
.yf7{bottom:248.475000px;}
.y95{bottom:253.515000px;}
.ye3{bottom:254.235000px;}
.y10a{bottom:256.755000px;}
.y27{bottom:257.835000px;}
.yef{bottom:259.635000px;}
.ya7{bottom:267.195000px;}
.y6d{bottom:268.635000px;}
.yb2{bottom:270.795000px;}
.yfe{bottom:272.595000px;}
.y50{bottom:277.995000px;}
.y26{bottom:281.595000px;}
.y87{bottom:284.115000px;}
.yf6{bottom:284.475000px;}
.y94{bottom:289.515000px;}
.ye2{bottom:290.235000px;}
.y109{bottom:292.755000px;}
.yee{bottom:295.275000px;}
.ya6{bottom:303.195000px;}
.y6c{bottom:304.635000px;}
.y25{bottom:304.995000px;}
.yb1{bottom:306.795000px;}
.yfd{bottom:308.595000px;}
.y4f{bottom:310.755000px;}
.y117{bottom:313.635000px;}
.yd4{bottom:313.995000px;}
.y86{bottom:320.145000px;}
.y93{bottom:325.545000px;}
.ye1{bottom:326.265000px;}
.y108{bottom:328.425000px;}
.y24{bottom:328.785000px;}
.yc3{bottom:329.505000px;}
.yf5{bottom:329.865000px;}
.yed{bottom:330.585000px;}
.ya5{bottom:339.225000px;}
.y6b{bottom:340.665000px;}
.yb0{bottom:342.825000px;}
.y4e{bottom:343.905000px;}
.yfc{bottom:344.625000px;}
.y116{bottom:349.305000px;}
.yd3{bottom:350.025000px;}
.y23{bottom:352.545000px;}
.y85{bottom:355.785000px;}
.yec{bottom:358.665000px;}
.yf4{bottom:361.185000px;}
.y92{bottom:361.545000px;}
.ye0{bottom:362.265000px;}
.y107{bottom:364.425000px;}
.yc2{bottom:365.505000px;}
.y115{bottom:373.425000px;}
.ya4{bottom:375.225000px;}
.y22{bottom:376.305000px;}
.y4d{bottom:376.665000px;}
.yaf{bottom:378.825000px;}
.y84{bottom:379.545000px;}
.yd2{bottom:385.665000px;}
.yfb{bottom:389.985000px;}
.y12c{bottom:397.185000px;}
.y91{bottom:397.545000px;}
.ydf{bottom:397.905000px;}
.y83{bottom:399.345000px;}
.y21{bottom:400.065000px;}
.y106{bottom:400.425000px;}
.yc1{bottom:401.145000px;}
.y114{bottom:409.425000px;}
.y4c{bottom:409.785000px;}
.ya3{bottom:410.865000px;}
.y6a{bottom:412.305000px;}
.yae{bottom:414.465000px;}
.y82{bottom:419.865000px;}
.yd1{bottom:421.665000px;}
.y20{bottom:423.465000px;}
.yfa{bottom:428.865000px;}
.y12b{bottom:432.825000px;}
.y90{bottom:433.185000px;}
.yde{bottom:433.905000px;}
.y105{bottom:436.425000px;}
.yc0{bottom:437.145000px;}
.y4b{bottom:442.545000px;}
.y113{bottom:445.065000px;}
.ya2{bottom:446.910000px;}
.y1f{bottom:447.270000px;}
.y69{bottom:448.350000px;}
.yd0{bottom:457.710000px;}
.yad{bottom:460.230000px;}
.y12a{bottom:468.870000px;}
.y8f{bottom:469.230000px;}
.y1e{bottom:469.590000px;}
.ydd{bottom:469.950000px;}
.y104{bottom:472.110000px;}
.ybf{bottom:473.190000px;}
.y4a{bottom:476.790000px;}
.ya1{bottom:482.910000px;}
.y68{bottom:484.350000px;}
.y112{bottom:493.350000px;}
.y1d{bottom:493.710000px;}
.yac{bottom:498.030000px;}
.y49{bottom:500.550000px;}
.y129{bottom:504.870000px;}
.y8e{bottom:505.230000px;}
.ydc{bottom:505.950000px;}
.y103{bottom:507.030000px;}
.ybe{bottom:509.190000px;}
.y1c{bottom:517.470000px;}
.y67{bottom:519.990000px;}
.y48{bottom:522.510000px;}
.ya0{bottom:528.270000px;}
.y111{bottom:528.990000px;}
.ycf{bottom:529.350000px;}
.y128{bottom:540.870000px;}
.y8d{bottom:541.230000px;}
.y1b{bottom:541.590000px;}
.y47{bottom:544.470000px;}
.ydb{bottom:551.310000px;}
.y110{bottom:553.110000px;}
.y66{bottom:555.990000px;}
.ybd{bottom:557.070000px;}
.y1a{bottom:564.990000px;}
.yce{bottom:565.350000px;}
.y46{bottom:566.430000px;}
.y9f{bottom:567.150000px;}
.y8c{bottom:576.900000px;}
.y10f{bottom:577.260000px;}
.y81{bottom:580.500000px;}
.y19{bottom:584.820000px;}
.y45{bottom:588.420000px;}
.yda{bottom:590.220000px;}
.y65{bottom:590.940000px;}
.ybc{bottom:592.740000px;}
.y127{bottom:601.020000px;}
.ycd{bottom:601.380000px;}
.y9b{bottom:602.611444px;}
.y44{bottom:610.380000px;}
.y80{bottom:612.900000px;}
.y18{bottom:614.700000px;}
.y64{bottom:623.700000px;}
.ybb{bottom:628.740000px;}
.y43{bottom:632.340000px;}
.y17{bottom:635.220000px;}
.y126{bottom:636.660000px;}
.ycc{bottom:637.380000px;}
.y7f{bottom:648.900000px;}
.y42{bottom:654.300000px;}
.y63{bottom:656.460000px;}
.yba{bottom:664.740000px;}
.y16{bottom:668.700000px;}
.y125{bottom:672.660000px;}
.ycb{bottom:673.020000px;}
.y41{bottom:676.260000px;}
.y7e{bottom:684.900000px;}
.y62{bottom:689.580000px;}
.y124{bottom:696.780000px;}
.y40{bottom:698.220000px;}
.yeb{bottom:700.050000px;}
.y15{bottom:700.770000px;}
.yca{bottom:709.050000px;}
.yf3{bottom:712.290000px;}
.y3f{bottom:719.850000px;}
.y7d{bottom:720.570000px;}
.y61{bottom:722.370000px;}
.y14{bottom:724.530000px;}
.y123{bottom:732.450000px;}
.yb9{bottom:736.410000px;}
.y3e{bottom:741.810000px;}
.y13{bottom:744.690000px;}
.yc9{bottom:745.050000px;}
.y60{bottom:755.490000px;}
.y7c{bottom:756.570000px;}
.y3d{bottom:763.770000px;}
.y12{bottom:765.210000px;}
.yb8{bottom:772.410000px;}
.yea{bottom:780.330000px;}
.yc8{bottom:781.050000px;}
.y11{bottom:785.010000px;}
.y3c{bottom:785.730000px;}
.y5f{bottom:788.250000px;}
.y122{bottom:792.210000px;}
.y7b{bottom:792.570000px;}
.y10{bottom:804.810000px;}
.y3b{bottom:807.690000px;}
.ye9{bottom:816.330000px;}
.yb7{bottom:818.130000px;}
.y5e{bottom:821.370000px;}
.yf{bottom:825.015000px;}
.yc7{bottom:826.455000px;}
.y7a{bottom:828.615000px;}
.y3a{bottom:829.695000px;}
.yb6{bottom:844.095000px;}
.y39{bottom:851.655000px;}
.ye8{bottom:852.375000px;}
.y5d{bottom:854.175000px;}
.ye{bottom:854.895000px;}
.y79{bottom:864.255000px;}
.yc6{bottom:866.055000px;}
.y38{bottom:873.615000px;}
.y121{bottom:876.495000px;}
.yd{bottom:884.775000px;}
.y5c{bottom:887.295000px;}
.ye7{bottom:888.375000px;}
.y37{bottom:895.575000px;}
.y78{bottom:900.255000px;}
.y9a{bottom:903.855000px;}
.yc{bottom:914.655000px;}
.y36{bottom:917.535000px;}
.y5b{bottom:920.055000px;}
.y120{bottom:924.375000px;}
.yb{bottom:935.175000px;}
.y77{bottom:936.255000px;}
.y35{bottom:939.495000px;}
.y5a{bottom:952.845000px;}
.ya{bottom:959.325000px;}
.y11f{bottom:960.045000px;}
.y34{bottom:961.845000px;}
.y76{bottom:972.285000px;}
.y9{bottom:983.085000px;}
.y59{bottom:985.965000px;}
.y11e{bottom:996.045000px;}
.y33{bottom:999.285000px;}
.yd9{bottom:999.645000px;}
.y8{bottom:1007.205000px;}
.y75{bottom:1007.925000px;}
.y58{bottom:1018.725000px;}
.y11d{bottom:1020.165000px;}
.y32{bottom:1022.685000px;}
.y7{bottom:1030.965000px;}
.y74{bottom:1043.925000px;}
.y31{bottom:1046.445000px;}
.y57{bottom:1051.845000px;}
.y6{bottom:1055.085000px;}
.y11c{bottom:1055.805000px;}
.y30{bottom:1070.205000px;}
.y73{bottom:1079.970000px;}
.y56{bottom:1084.650000px;}
.y5{bottom:1088.610000px;}
.y2f{bottom:1094.010000px;}
.y72{bottom:1115.970000px;}
.y2e{bottom:1117.770000px;}
.y4{bottom:1119.570000px;}
.y1{bottom:1193.730000px;}
.h8{height:45.773438px;}
.he{height:46.514946px;}
.hd{height:46.627030px;}
.h3{height:50.132812px;}
.h2{height:50.294531px;}
.h7{height:54.492188px;}
.h4{height:55.873125px;}
.ha{height:57.439235px;}
.h9{height:61.194375px;}
.h6{height:66.515625px;}
.h5{height:72.562500px;}
.hb{height:74.953125px;}
.hc{height:231.049879px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:250.625724px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:74.654328px;}
.x16{left:89.345640px;}
.xc{left:127.475987px;}
.x8{left:134.315987px;}
.x11{left:136.475987px;}
.x5{left:157.034987px;}
.x15{left:158.355060px;}
.x12{left:161.714987px;}
.x13{left:166.754987px;}
.xe{left:180.794987px;}
.xd{left:191.234987px;}
.x19{left:212.474987px;}
.x3{left:223.274987px;}
.xa{left:268.664987px;}
.x14{left:376.513761px;}
.x22{left:387.869987px;}
.x24{left:388.949987px;}
.x20{left:395.429987px;}
.x26{left:409.829987px;}
.x9{left:430.379987px;}
.x6{left:435.059987px;}
.x23{left:448.739987px;}
.x7{left:467.819987px;}
.x25{left:477.899987px;}
.x4{left:549.209987px;}
.x1d{left:605.369987px;}
.xb{left:622.694987px;}
.x1e{left:678.494987px;}
.x1c{left:681.734987px;}
.x1a{left:712.364987px;}
.x21{left:742.604987px;}
.xf{left:774.644987px;}
.x2{left:781.484987px;}
.x10{left:784.724987px;}
.x1f{left:788.324987px;}
.x18{left:792.284987px;}
.x1b{left:797.684987px;}
.x1{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-5.130667pt;}
.ls10{letter-spacing:-2.560000pt;}
.ls5{letter-spacing:-1.424000pt;}
.lsb{letter-spacing:-1.237333pt;}
.ls13{letter-spacing:-1.088000pt;}
.ls7{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.512000pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls3{letter-spacing:-0.146133pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.043520pt;}
.ls11{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.176640pt;}
.ls12{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.197716pt;}
.ls0{letter-spacing:0.263467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.960000pt;}
.lsf{letter-spacing:1.440000pt;}
.wsf{word-spacing:-43.776000pt;}
.ws8{word-spacing:-36.771840pt;}
.wsd{word-spacing:-18.484382pt;}
.ws10{word-spacing:-17.728000pt;}
.ws11{word-spacing:-17.600000pt;}
.ws1{word-spacing:-17.536000pt;}
.ws7{word-spacing:-17.024000pt;}
.ws0{word-spacing:-16.396587pt;}
.ws5{word-spacing:-16.133120pt;}
.wse{word-spacing:-14.976000pt;}
.wsc{word-spacing:-14.773760pt;}
.ws2{word-spacing:-14.730240pt;}
.wsa{word-spacing:-13.492907pt;}
.ws4{word-spacing:-13.306880pt;}
.ws3{word-spacing:-12.894613pt;}
.wsb{word-spacing:-9.599573pt;}
.ws6{word-spacing:0.000000pt;}
.ws9{word-spacing:232.928247pt;}
._8{margin-left:-7.360000pt;}
._1{margin-left:-6.298880pt;}
._13{margin-left:-5.252053pt;}
._2{margin-left:-4.238720pt;}
._3{margin-left:-3.164587pt;}
._6{margin-left:-2.080640pt;}
._0{margin-left:-1.119360pt;}
._4{width:1.210027pt;}
._5{width:2.646827pt;}
._7{width:3.735040pt;}
._c{width:4.894293pt;}
._12{width:5.828053pt;}
._d{width:7.301547pt;}
._e{width:8.891093pt;}
._9{width:10.342827pt;}
._a{width:11.251413pt;}
._b{width:12.524800pt;}
._15{width:13.989973pt;}
._16{width:14.939947pt;}
._20{width:16.237440pt;}
._10{width:17.212800pt;}
._f{width:18.887893pt;}
._11{width:20.164693pt;}
._14{width:21.361920pt;}
._1f{width:22.978987pt;}
._1b{width:24.448000pt;}
._27{width:25.499307pt;}
._19{width:26.624000pt;}
._1a{width:27.698560pt;}
._1c{width:28.858240pt;}
._21{width:29.848533pt;}
._22{width:31.081813pt;}
._2c{width:32.406187pt;}
._28{width:33.947947pt;}
._1d{width:35.338667pt;}
._1e{width:36.269440pt;}
._18{width:38.047360pt;}
._17{width:39.008640pt;}
._2a{width:40.842667pt;}
._29{width:42.144640pt;}
._2b{width:44.064000pt;}
._24{width:49.446613pt;}
._25{width:50.770133pt;}
._2e{width:55.392640pt;}
._23{width:57.760640pt;}
._2d{width:96.746027pt;}
._26{width:172.042667pt;}
.fs5{font-size:41.026102pt;}
.fs4{font-size:41.124960pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:67.461249pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:50.880000pt;}
.y2{bottom:70.432000pt;}
.y9d{bottom:71.331261pt;}
.y8b{bottom:92.832000pt;}
.y99{bottom:97.632000pt;}
.y10e{bottom:100.512000pt;}
.y55{bottom:100.832000pt;}
.y2d{bottom:102.752000pt;}
.yab{bottom:109.792000pt;}
.y71{bottom:111.072000pt;}
.y102{bottom:114.592000pt;}
.y9c{bottom:114.603291pt;}
.y11b{bottom:119.072000pt;}
.yd8{bottom:119.392000pt;}
.ye6{bottom:119.712000pt;}
.y2c{bottom:123.872000pt;}
.y8a{bottom:124.832000pt;}
.yf9{bottom:125.152000pt;}
.y98{bottom:129.632000pt;}
.y54{bottom:129.952000pt;}
.y10d{bottom:132.512000pt;}
.yf2{bottom:134.746667pt;}
.yaa{bottom:141.786667pt;}
.y70{bottom:143.066667pt;}
.y2b{bottom:144.986667pt;}
.y101{bottom:146.586667pt;}
.y11a{bottom:150.746667pt;}
.yd7{bottom:151.386667pt;}
.ye5{bottom:151.706667pt;}
.y89{bottom:156.826667pt;}
.y53{bottom:159.386667pt;}
.y97{bottom:161.626667pt;}
.y10c{bottom:164.186667pt;}
.yb5{bottom:164.826667pt;}
.y2a{bottom:165.786667pt;}
.yf1{bottom:166.746667pt;}
.yc5{bottom:168.346667pt;}
.y9e{bottom:171.570263pt;}
.y119{bottom:172.226667pt;}
.ya9{bottom:173.826667pt;}
.y6f{bottom:175.106667pt;}
.yb4{bottom:177.026667pt;}
.y100{bottom:178.626667pt;}
.yd6{bottom:183.426667pt;}
.y29{bottom:186.946667pt;}
.y52{bottom:188.546667pt;}
.yf8{bottom:188.866667pt;}
.y96{bottom:193.666667pt;}
.ye4{bottom:194.306667pt;}
.y10b{bottom:196.226667pt;}
.yf0{bottom:198.786667pt;}
.y118{bottom:203.906667pt;}
.ya8{bottom:205.826667pt;}
.y6e{bottom:206.786667pt;}
.yc4{bottom:207.746667pt;}
.y28{bottom:208.066667pt;}
.yb3{bottom:209.026667pt;}
.yff{bottom:210.626667pt;}
.yd5{bottom:215.106667pt;}
.y51{bottom:217.666667pt;}
.y88{bottom:220.546667pt;}
.yf7{bottom:220.866667pt;}
.y95{bottom:225.346667pt;}
.ye3{bottom:225.986667pt;}
.y10a{bottom:228.226667pt;}
.y27{bottom:229.186667pt;}
.yef{bottom:230.786667pt;}
.ya7{bottom:237.506667pt;}
.y6d{bottom:238.786667pt;}
.yb2{bottom:240.706667pt;}
.yfe{bottom:242.306667pt;}
.y50{bottom:247.106667pt;}
.y26{bottom:250.306667pt;}
.y87{bottom:252.546667pt;}
.yf6{bottom:252.866667pt;}
.y94{bottom:257.346667pt;}
.ye2{bottom:257.986667pt;}
.y109{bottom:260.226667pt;}
.yee{bottom:262.466667pt;}
.ya6{bottom:269.506667pt;}
.y6c{bottom:270.786667pt;}
.y25{bottom:271.106667pt;}
.yb1{bottom:272.706667pt;}
.yfd{bottom:274.306667pt;}
.y4f{bottom:276.226667pt;}
.y117{bottom:278.786667pt;}
.yd4{bottom:279.106667pt;}
.y86{bottom:284.573333pt;}
.y93{bottom:289.373333pt;}
.ye1{bottom:290.013333pt;}
.y108{bottom:291.933333pt;}
.y24{bottom:292.253333pt;}
.yc3{bottom:292.893333pt;}
.yf5{bottom:293.213333pt;}
.yed{bottom:293.853333pt;}
.ya5{bottom:301.533333pt;}
.y6b{bottom:302.813333pt;}
.yb0{bottom:304.733333pt;}
.y4e{bottom:305.693333pt;}
.yfc{bottom:306.333333pt;}
.y116{bottom:310.493333pt;}
.yd3{bottom:311.133333pt;}
.y23{bottom:313.373333pt;}
.y85{bottom:316.253333pt;}
.yec{bottom:318.813333pt;}
.yf4{bottom:321.053333pt;}
.y92{bottom:321.373333pt;}
.ye0{bottom:322.013333pt;}
.y107{bottom:323.933333pt;}
.yc2{bottom:324.893333pt;}
.y115{bottom:331.933333pt;}
.ya4{bottom:333.533333pt;}
.y22{bottom:334.493333pt;}
.y4d{bottom:334.813333pt;}
.yaf{bottom:336.733333pt;}
.y84{bottom:337.373333pt;}
.yd2{bottom:342.813333pt;}
.yfb{bottom:346.653333pt;}
.y12c{bottom:353.053333pt;}
.y91{bottom:353.373333pt;}
.ydf{bottom:353.693333pt;}
.y83{bottom:354.973333pt;}
.y21{bottom:355.613333pt;}
.y106{bottom:355.933333pt;}
.yc1{bottom:356.573333pt;}
.y114{bottom:363.933333pt;}
.y4c{bottom:364.253333pt;}
.ya3{bottom:365.213333pt;}
.y6a{bottom:366.493333pt;}
.yae{bottom:368.413333pt;}
.y82{bottom:373.213333pt;}
.yd1{bottom:374.813333pt;}
.y20{bottom:376.413333pt;}
.yfa{bottom:381.213333pt;}
.y12b{bottom:384.733333pt;}
.y90{bottom:385.053333pt;}
.yde{bottom:385.693333pt;}
.y105{bottom:387.933333pt;}
.yc0{bottom:388.573333pt;}
.y4b{bottom:393.373333pt;}
.y113{bottom:395.613333pt;}
.ya2{bottom:397.253333pt;}
.y1f{bottom:397.573333pt;}
.y69{bottom:398.533333pt;}
.yd0{bottom:406.853333pt;}
.yad{bottom:409.093333pt;}
.y12a{bottom:416.773333pt;}
.y8f{bottom:417.093333pt;}
.y1e{bottom:417.413333pt;}
.ydd{bottom:417.733333pt;}
.y104{bottom:419.653333pt;}
.ybf{bottom:420.613333pt;}
.y4a{bottom:423.813333pt;}
.ya1{bottom:429.253333pt;}
.y68{bottom:430.533333pt;}
.y112{bottom:438.533333pt;}
.y1d{bottom:438.853333pt;}
.yac{bottom:442.693333pt;}
.y49{bottom:444.933333pt;}
.y129{bottom:448.773333pt;}
.y8e{bottom:449.093333pt;}
.ydc{bottom:449.733333pt;}
.y103{bottom:450.693333pt;}
.ybe{bottom:452.613333pt;}
.y1c{bottom:459.973333pt;}
.y67{bottom:462.213333pt;}
.y48{bottom:464.453333pt;}
.ya0{bottom:469.573333pt;}
.y111{bottom:470.213333pt;}
.ycf{bottom:470.533333pt;}
.y128{bottom:480.773333pt;}
.y8d{bottom:481.093333pt;}
.y1b{bottom:481.413333pt;}
.y47{bottom:483.973333pt;}
.ydb{bottom:490.053333pt;}
.y110{bottom:491.653333pt;}
.y66{bottom:494.213333pt;}
.ybd{bottom:495.173333pt;}
.y1a{bottom:502.213333pt;}
.yce{bottom:502.533333pt;}
.y46{bottom:503.493333pt;}
.y9f{bottom:504.133333pt;}
.y8c{bottom:512.800000pt;}
.y10f{bottom:513.120000pt;}
.y81{bottom:516.000000pt;}
.y19{bottom:519.840000pt;}
.y45{bottom:523.040000pt;}
.yda{bottom:524.640000pt;}
.y65{bottom:525.280000pt;}
.ybc{bottom:526.880000pt;}
.y127{bottom:534.240000pt;}
.ycd{bottom:534.560000pt;}
.y9b{bottom:535.654617pt;}
.y44{bottom:542.560000pt;}
.y80{bottom:544.800000pt;}
.y18{bottom:546.400000pt;}
.y64{bottom:554.400000pt;}
.ybb{bottom:558.880000pt;}
.y43{bottom:562.080000pt;}
.y17{bottom:564.640000pt;}
.y126{bottom:565.920000pt;}
.ycc{bottom:566.560000pt;}
.y7f{bottom:576.800000pt;}
.y42{bottom:581.600000pt;}
.y63{bottom:583.520000pt;}
.yba{bottom:590.880000pt;}
.y16{bottom:594.400000pt;}
.y125{bottom:597.920000pt;}
.ycb{bottom:598.240000pt;}
.y41{bottom:601.120000pt;}
.y7e{bottom:608.800000pt;}
.y62{bottom:612.960000pt;}
.y124{bottom:619.360000pt;}
.y40{bottom:620.640000pt;}
.yeb{bottom:622.266667pt;}
.y15{bottom:622.906667pt;}
.yca{bottom:630.266667pt;}
.yf3{bottom:633.146667pt;}
.y3f{bottom:639.866667pt;}
.y7d{bottom:640.506667pt;}
.y61{bottom:642.106667pt;}
.y14{bottom:644.026667pt;}
.y123{bottom:651.066667pt;}
.yb9{bottom:654.586667pt;}
.y3e{bottom:659.386667pt;}
.y13{bottom:661.946667pt;}
.yc9{bottom:662.266667pt;}
.y60{bottom:671.546667pt;}
.y7c{bottom:672.506667pt;}
.y3d{bottom:678.906667pt;}
.y12{bottom:680.186667pt;}
.yb8{bottom:686.586667pt;}
.yea{bottom:693.626667pt;}
.yc8{bottom:694.266667pt;}
.y11{bottom:697.786667pt;}
.y3c{bottom:698.426667pt;}
.y5f{bottom:700.666667pt;}
.y122{bottom:704.186667pt;}
.y7b{bottom:704.506667pt;}
.y10{bottom:715.386667pt;}
.y3b{bottom:717.946667pt;}
.ye9{bottom:725.626667pt;}
.yb7{bottom:727.226667pt;}
.y5e{bottom:730.106667pt;}
.yf{bottom:733.346667pt;}
.yc7{bottom:734.626667pt;}
.y7a{bottom:736.546667pt;}
.y3a{bottom:737.506667pt;}
.yb6{bottom:750.306667pt;}
.y39{bottom:757.026667pt;}
.ye8{bottom:757.666667pt;}
.y5d{bottom:759.266667pt;}
.ye{bottom:759.906667pt;}
.y79{bottom:768.226667pt;}
.yc6{bottom:769.826667pt;}
.y38{bottom:776.546667pt;}
.y121{bottom:779.106667pt;}
.yd{bottom:786.466667pt;}
.y5c{bottom:788.706667pt;}
.ye7{bottom:789.666667pt;}
.y37{bottom:796.066667pt;}
.y78{bottom:800.226667pt;}
.y9a{bottom:803.426667pt;}
.yc{bottom:813.026667pt;}
.y36{bottom:815.586667pt;}
.y5b{bottom:817.826667pt;}
.y120{bottom:821.666667pt;}
.yb{bottom:831.266667pt;}
.y77{bottom:832.226667pt;}
.y35{bottom:835.106667pt;}
.y5a{bottom:846.973333pt;}
.ya{bottom:852.733333pt;}
.y11f{bottom:853.373333pt;}
.y34{bottom:854.973333pt;}
.y76{bottom:864.253333pt;}
.y9{bottom:873.853333pt;}
.y59{bottom:876.413333pt;}
.y11e{bottom:885.373333pt;}
.y33{bottom:888.253333pt;}
.yd9{bottom:888.573333pt;}
.y8{bottom:895.293333pt;}
.y75{bottom:895.933333pt;}
.y58{bottom:905.533333pt;}
.y11d{bottom:906.813333pt;}
.y32{bottom:909.053333pt;}
.y7{bottom:916.413333pt;}
.y74{bottom:927.933333pt;}
.y31{bottom:930.173333pt;}
.y57{bottom:934.973333pt;}
.y6{bottom:937.853333pt;}
.y11c{bottom:938.493333pt;}
.y30{bottom:951.293333pt;}
.y73{bottom:959.973333pt;}
.y56{bottom:964.133333pt;}
.y5{bottom:967.653333pt;}
.y2f{bottom:972.453333pt;}
.y72{bottom:991.973333pt;}
.y2e{bottom:993.573333pt;}
.y4{bottom:995.173333pt;}
.y1{bottom:1061.093333pt;}
.h8{height:40.687500pt;}
.he{height:41.346618pt;}
.hd{height:41.446249pt;}
.h3{height:44.562500pt;}
.h2{height:44.706250pt;}
.h7{height:48.437500pt;}
.h4{height:49.665000pt;}
.ha{height:51.057098pt;}
.h9{height:54.395000pt;}
.h6{height:59.125000pt;}
.h5{height:64.500000pt;}
.hb{height:66.625000pt;}
.hc{height:205.377670pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:222.778421pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:66.359403pt;}
.x16{left:79.418346pt;}
.xc{left:113.311988pt;}
.x8{left:119.391988pt;}
.x11{left:121.311988pt;}
.x5{left:139.586655pt;}
.x15{left:140.760053pt;}
.x12{left:143.746655pt;}
.x13{left:148.226655pt;}
.xe{left:160.706655pt;}
.xd{left:169.986655pt;}
.x19{left:188.866655pt;}
.x3{left:198.466655pt;}
.xa{left:238.813322pt;}
.x14{left:334.678899pt;}
.x22{left:344.773322pt;}
.x24{left:345.733322pt;}
.x20{left:351.493322pt;}
.x26{left:364.293322pt;}
.x9{left:382.559988pt;}
.x6{left:386.719988pt;}
.x23{left:398.879988pt;}
.x7{left:415.839988pt;}
.x25{left:424.799988pt;}
.x4{left:488.186655pt;}
.x1d{left:538.106655pt;}
.xb{left:553.506655pt;}
.x1e{left:603.106655pt;}
.x1c{left:605.986655pt;}
.x1a{left:633.213322pt;}
.x21{left:660.093322pt;}
.xf{left:688.573322pt;}
.x2{left:694.653322pt;}
.x10{left:697.533322pt;}
.x1f{left:700.733322pt;}
.x18{left:704.253322pt;}
.x1b{left:709.053322pt;}
.x1{left:718.373322pt;}
}




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