
    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_50cffa9519c1cc73a925208c.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_1957db451bbb2409e636fbf5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.162598;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_a122e90290e180b2fcdbdf48.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_17661a3166c3b34426e439a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.162598;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_d4344a6790a84a29c1b62b5a.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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);}
.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;}
.ls10{letter-spacing:-1.986000px;}
.ls13{letter-spacing:-1.602000px;}
.ls14{letter-spacing:-0.918000px;}
.ls11{letter-spacing:-0.882000px;}
.ls6{letter-spacing:-0.648000px;}
.ls12{letter-spacing:-0.363000px;}
.lsa{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.025920px;}
.lsd{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.296400px;}
.ls1{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.454800px;}
.ls9{letter-spacing:0.455040px;}
.lsc{letter-spacing:0.570240px;}
.ls15{letter-spacing:0.576000px;}
.ls18{letter-spacing:0.792000px;}
.lsf{letter-spacing:0.864000px;}
.ls8{letter-spacing:1.512000px;}
.lsb{letter-spacing:5.817600px;}
.lse{letter-spacing:23.748480px;}
.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;}
}
.ws5{word-spacing:-20.794930px;}
.wsc{word-spacing:-20.520000px;}
.wsb{word-spacing:-19.800000px;}
.ws7{word-spacing:-19.728000px;}
.wsa{word-spacing:-19.656000px;}
.ws8{word-spacing:-19.440000px;}
.ws6{word-spacing:-19.080000px;}
.ws0{word-spacing:-18.446160px;}
.ws3{word-spacing:-18.149760px;}
.ws1{word-spacing:-16.571520px;}
.ws9{word-spacing:-16.208520px;}
.ws2{word-spacing:-14.970240px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-7.085760px;}
._7{margin-left:-5.932320px;}
._2{margin-left:-4.768320px;}
._1e{margin-left:-3.453120px;}
._5{margin-left:-2.280960px;}
._0{margin-left:-1.259520px;}
._3{width:1.373280px;}
._6{width:3.173280px;}
._10{width:4.264320px;}
._f{width:5.493600px;}
._e{width:7.220160px;}
._a{width:8.573760px;}
._b{width:9.983520px;}
._11{width:11.526720px;}
._14{width:12.843360px;}
._15{width:13.846080px;}
._17{width:15.385440px;}
._16{width:17.118720px;}
._20{width:18.233280px;}
._c{width:19.266720px;}
._d{width:20.399520px;}
._1a{width:21.442560px;}
._1b{width:22.926720px;}
._19{width:24.658080px;}
._1f{width:25.792320px;}
._61{width:26.888800px;}
._2b{width:27.986880px;}
._62{width:29.203680px;}
._18{width:30.234240px;}
._12{width:31.531200px;}
._13{width:32.950080px;}
._25{width:34.375200px;}
._27{width:35.447040px;}
._26{width:36.467520px;}
._23{width:37.659360px;}
._24{width:38.712960px;}
._2a{width:40.450560px;}
._29{width:41.731200px;}
._2c{width:42.766080px;}
._57{width:44.645280px;}
._1d{width:45.771840px;}
._1c{width:47.494080px;}
._8{width:48.885120px;}
._9{width:50.438400px;}
._21{width:52.063680px;}
._22{width:53.079360px;}
._28{width:54.213120px;}
._56{width:55.482240px;}
._5f{width:57.559680px;}
._47{width:58.876560px;}
._39{width:60.540480px;}
._59{width:61.920960px;}
._3f{width:63.487200px;}
._5b{width:67.104960px;}
._5a{width:69.386880px;}
._3b{width:70.804800px;}
._3c{width:73.224000px;}
._46{width:74.873760px;}
._38{width:76.002240px;}
._30{width:81.257280px;}
._2f{width:82.434240px;}
._44{width:83.512800px;}
._41{width:85.423680px;}
._35{width:86.806080px;}
._40{width:87.806880px;}
._31{width:88.899360px;}
._32{width:90.824160px;}
._42{width:92.347200px;}
._33{width:93.957120px;}
._2d{width:97.120320px;}
._2e{width:98.124480px;}
._4e{width:103.524000px;}
._3a{width:104.933280px;}
._43{width:105.950400px;}
._4d{width:111.144960px;}
._3d{width:113.261760px;}
._5d{width:115.912320px;}
._55{width:120.861120px;}
._4a{width:129.608640px;}
._3e{width:130.893120px;}
._53{width:137.289600px;}
._4f{width:141.220800px;}
._45{width:144.839040px;}
._36{width:154.674240px;}
._60{width:160.753440px;}
._5c{width:161.823360px;}
._37{width:164.004960px;}
._58{width:172.478400px;}
._4c{width:190.430400px;}
._48{width:193.793280px;}
._4b{width:217.590240px;}
._5e{width:222.549120px;}
._54{width:259.320960px;}
._49{width:260.640000px;}
._51{width:290.172960px;}
._4{width:328.389120px;}
._34{width:335.394240px;}
._52{width:371.046720px;}
._50{width:398.490720px;}
.fc4{color:rgb(33,37,41);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc6{color:rgb(38,38,38);}
.fc5{color:rgb(13,13,13);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs5{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:75.893905px;}
.y0{bottom:0.000000px;}
.y94{bottom:3.954000px;}
.y82{bottom:3.960000px;}
.yb3{bottom:4.320000px;}
.y93{bottom:24.114000px;}
.ybf{bottom:24.120000px;}
.ya4{bottom:24.150000px;}
.y92{bottom:43.914000px;}
.ybe{bottom:43.920000px;}
.ya3{bottom:43.950000px;}
.yce{bottom:43.965000px;}
.yb2{bottom:44.274000px;}
.yca{bottom:44.280000px;}
.y4{bottom:57.240000px;}
.ycd{bottom:63.765000px;}
.ybd{bottom:64.080000px;}
.ya2{bottom:64.110000px;}
.y91{bottom:64.119000px;}
.y3{bottom:79.236000px;}
.yc9{bottom:83.880000px;}
.ya1{bottom:83.910000px;}
.y90{bottom:83.919000px;}
.ybc{bottom:83.925000px;}
.ye4{bottom:84.240000px;}
.ya0{bottom:103.710000px;}
.ycc{bottom:103.725000px;}
.ye1{bottom:104.070000px;}
.y8f{bottom:104.079000px;}
.yb6{bottom:104.085000px;}
.y2{bottom:112.356000px;}
.y9f{bottom:123.870000px;}
.y8e{bottom:123.879000px;}
.ybb{bottom:123.885000px;}
.yb5{bottom:124.245000px;}
.y97{bottom:138.645000px;}
.ya5{bottom:142.596000px;}
.y9e{bottom:143.670000px;}
.y8d{bottom:143.679000px;}
.yba{bottom:143.685000px;}
.ye0{bottom:144.030000px;}
.yb1{bottom:144.039000px;}
.yc8{bottom:144.045000px;}
.y73{bottom:145.836000px;}
.y83{bottom:149.076000px;}
.y30{bottom:151.950000px;}
.y96{bottom:158.805000px;}
.ydb{bottom:159.510000px;}
.ycb{bottom:161.670000px;}
.ydf{bottom:163.830000px;}
.y8c{bottom:163.839000px;}
.yb9{bottom:163.845000px;}
.y9d{bottom:163.875000px;}
.y2f{bottom:173.910000px;}
.y5a{bottom:175.710000px;}
.y72{bottom:181.830000px;}
.yde{bottom:183.630000px;}
.yb8{bottom:183.645000px;}
.y8b{bottom:183.669000px;}
.y9c{bottom:183.675000px;}
.ye3{bottom:183.990000px;}
.yda{bottom:195.555000px;}
.y2e{bottom:195.915000px;}
.ydd{bottom:203.790000px;}
.yc7{bottom:203.805000px;}
.y8a{bottom:203.829000px;}
.y9b{bottom:203.835000px;}
.yf4{bottom:205.995000px;}
.y59{bottom:211.755000px;}
.y2d{bottom:217.875000px;}
.y89{bottom:223.629000px;}
.y9a{bottom:223.635000px;}
.yf3{bottom:229.755000px;}
.yd9{bottom:231.555000px;}
.y58{bottom:235.515000px;}
.y2c{bottom:239.835000px;}
.y88{bottom:243.429000px;}
.y99{bottom:243.435000px;}
.yb0{bottom:243.789000px;}
.yc6{bottom:243.795000px;}
.y71{bottom:253.515000px;}
.yf2{bottom:253.875000px;}
.y57{bottom:257.475000px;}
.y2b{bottom:261.795000px;}
.y87{bottom:263.589000px;}
.yc5{bottom:263.595000px;}
.yd8{bottom:267.195000px;}
.yf1{bottom:277.635000px;}
.y56{bottom:279.435000px;}
.y86{bottom:283.389000px;}
.yaf{bottom:283.749000px;}
.y2a{bottom:283.755000px;}
.y70{bottom:289.515000px;}
.y74{bottom:293.115000px;}
.y55{bottom:301.395000px;}
.yf0{bottom:301.755000px;}
.yd7{bottom:303.195000px;}
.yc4{bottom:303.555000px;}
.y85{bottom:303.594000px;}
.y29{bottom:306.075000px;}
.yc3{bottom:323.355000px;}
.y54{bottom:323.385000px;}
.y84{bottom:323.394000px;}
.y6f{bottom:325.545000px;}
.y28{bottom:329.865000px;}
.yd6{bottom:339.225000px;}
.y105{bottom:340.665000px;}
.yc2{bottom:343.545000px;}
.yae{bottom:343.554000px;}
.y53{bottom:345.345000px;}
.yef{bottom:349.665000px;}
.y27{bottom:353.265000px;}
.yc0{bottom:356.865000px;}
.y6e{bottom:361.545000px;}
.yc1{bottom:363.345000px;}
.yad{bottom:363.354000px;}
.y52{bottom:367.305000px;}
.y26{bottom:373.425000px;}
.yd5{bottom:375.225000px;}
.yac{bottom:383.514000px;}
.y51{bottom:389.265000px;}
.y6d{bottom:397.545000px;}
.y25{bottom:403.305000px;}
.yab{bottom:403.314000px;}
.y104{bottom:409.425000px;}
.yd4{bottom:410.865000px;}
.y50{bottom:411.225000px;}
.yee{bottom:421.665000px;}
.y24{bottom:423.105000px;}
.yaa{bottom:423.114000px;}
.y4f{bottom:433.185000px;}
.ya9{bottom:443.304000px;}
.yed{bottom:445.425000px;}
.yd3{bottom:446.910000px;}
.y23{bottom:453.390000px;}
.y4e{bottom:455.190000px;}
.ya8{bottom:463.104000px;}
.y6c{bottom:469.230000px;}
.yec{bottom:469.590000px;}
.y22{bottom:473.910000px;}
.y4d{bottom:477.150000px;}
.yd2{bottom:482.910000px;}
.ya7{bottom:483.264000px;}
.yeb{bottom:493.350000px;}
.y21{bottom:493.710000px;}
.y4c{bottom:499.110000px;}
.ya6{bottom:503.064000px;}
.y81{bottom:504.150000px;}
.y6b{bottom:505.230000px;}
.y20{bottom:513.870000px;}
.yea{bottom:517.470000px;}
.yd1{bottom:518.910000px;}
.y4b{bottom:521.070000px;}
.y1f{bottom:533.670000px;}
.y6a{bottom:541.230000px;}
.y4a{bottom:543.030000px;}
.y80{bottom:547.350000px;}
.y1e{bottom:553.470000px;}
.yd0{bottom:554.550000px;}
.y49{bottom:564.990000px;}
.ye9{bottom:565.350000px;}
.y1d{bottom:573.660000px;}
.y69{bottom:576.900000px;}
.y7f{bottom:579.780000px;}
.y48{bottom:586.620000px;}
.ycf{bottom:588.420000px;}
.ye8{bottom:589.140000px;}
.y1c{bottom:593.460000px;}
.y47{bottom:608.580000px;}
.ye2{bottom:612.180000px;}
.y68{bottom:612.900000px;}
.ye7{bottom:613.260000px;}
.y1b{bottom:613.620000px;}
.y7e{bottom:615.780000px;}
.y46{bottom:630.540000px;}
.y1a{bottom:633.420000px;}
.ye6{bottom:637.020000px;}
.y67{bottom:648.900000px;}
.y7d{bottom:651.420000px;}
.y45{bottom:652.500000px;}
.y19{bottom:653.580000px;}
.ye5{bottom:661.140000px;}
.y18{bottom:673.380000px;}
.y44{bottom:674.460000px;}
.y98{bottom:677.340000px;}
.y66{bottom:684.900000px;}
.y7c{bottom:687.420000px;}
.y17{bottom:693.180000px;}
.y43{bottom:696.420000px;}
.y103{bottom:709.050000px;}
.y16{bottom:713.370000px;}
.y42{bottom:718.770000px;}
.y65{bottom:720.570000px;}
.y7b{bottom:723.450000px;}
.y102{bottom:732.810000px;}
.y15{bottom:733.170000px;}
.y41{bottom:742.890000px;}
.yb7{bottom:751.890000px;}
.y14{bottom:753.330000px;}
.y64{bottom:756.570000px;}
.y101{bottom:756.930000px;}
.y7a{bottom:759.450000px;}
.y40{bottom:766.290000px;}
.y13{bottom:773.130000px;}
.y100{bottom:780.690000px;}
.y3f{bottom:788.250000px;}
.y63{bottom:792.570000px;}
.y12{bottom:793.290000px;}
.y79{bottom:795.090000px;}
.yff{bottom:804.810000px;}
.y3e{bottom:810.210000px;}
.y11{bottom:813.090000px;}
.y62{bottom:828.615000px;}
.y78{bottom:831.135000px;}
.y3d{bottom:832.215000px;}
.y10{bottom:832.935000px;}
.yfe{bottom:852.735000px;}
.y3c{bottom:854.175000px;}
.yf{bottom:862.815000px;}
.y61{bottom:864.255000px;}
.y77{bottom:864.615000px;}
.ydc{bottom:867.495000px;}
.y3b{bottom:876.135000px;}
.yfd{bottom:876.495000px;}
.ye{bottom:893.055000px;}
.y76{bottom:894.495000px;}
.y3a{bottom:898.095000px;}
.y60{bottom:900.255000px;}
.yfc{bottom:900.615000px;}
.y39{bottom:920.055000px;}
.y75{bottom:920.775000px;}
.yd{bottom:922.935000px;}
.yfb{bottom:924.375000px;}
.y5f{bottom:936.255000px;}
.y38{bottom:942.015000px;}
.yc{bottom:942.735000px;}
.yfa{bottom:948.495000px;}
.y95{bottom:952.485000px;}
.yb{bottom:963.285000px;}
.y37{bottom:964.005000px;}
.y5e{bottom:972.285000px;}
.y36{bottom:985.965000px;}
.yb4{bottom:987.045000px;}
.ya{bottom:987.405000px;}
.yf9{bottom:996.405000px;}
.y35{bottom:1007.925000px;}
.y9{bottom:1011.165000px;}
.yf8{bottom:1020.165000px;}
.y34{bottom:1029.885000px;}
.y8{bottom:1035.285000px;}
.y5d{bottom:1043.925000px;}
.yf7{bottom:1044.285000px;}
.y33{bottom:1051.845000px;}
.y7{bottom:1059.045000px;}
.yf6{bottom:1068.045000px;}
.y32{bottom:1073.805000px;}
.y5c{bottom:1079.970000px;}
.y6{bottom:1083.210000px;}
.yf5{bottom:1092.210000px;}
.y31{bottom:1095.810000px;}
.y5b{bottom:1115.970000px;}
.y5{bottom:1117.770000px;}
.y1{bottom:1193.730000px;}
.h9{height:19.800000px;}
.h2{height:50.294531px;}
.ha{height:55.873125px;}
.h7{height:56.079844px;}
.h11{height:59.112755px;}
.h4{height:61.194375px;}
.h3{height:61.420781px;}
.h5{height:66.515625px;}
.h6{height:66.761719px;}
.h8{height:70.372327px;}
.h16{height:74.004654px;}
.hf{height:140.076000px;}
.hc{height:174.630000px;}
.h13{height:179.715000px;}
.h10{height:219.675000px;}
.h15{height:239.475000px;}
.hd{height:259.275000px;}
.h14{height:259.635000px;}
.hb{height:339.225000px;}
.h12{height:379.185000px;}
.he{height:518.910000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:195.915000px;}
.w4{width:283.425000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1c{left:6.840000px;}
.x23{left:85.005000px;}
.x18{left:95.435987px;}
.x21{left:99.765000px;}
.x24{left:119.235000px;}
.x1b{left:120.636000px;}
.x6{left:128.195987px;}
.x22{left:134.355000px;}
.x1f{left:141.555000px;}
.x8{left:167.834987px;}
.x20{left:185.115000px;}
.x3{left:186.554987px;}
.xb{left:191.234987px;}
.x2e{left:205.274987px;}
.x2c{left:214.634987px;}
.x2f{left:239.144987px;}
.x2d{left:248.504987px;}
.x30{left:251.744987px;}
.x12{left:267.944987px;}
.x31{left:285.584987px;}
.x27{left:297.464987px;}
.x9{left:305.024987px;}
.x13{left:310.064987px;}
.x1d{left:317.265000px;}
.x28{left:336.029987px;}
.x10{left:337.469987px;}
.x1a{left:343.589987px;}
.x2a{left:349.349987px;}
.x7{left:370.949987px;}
.x2b{left:383.189987px;}
.x11{left:401.549987px;}
.x29{left:409.829987px;}
.xe{left:440.819987px;}
.x4{left:467.819987px;}
.xf{left:481.499987px;}
.x1e{left:513.900000px;}
.x5{left:524.009987px;}
.x16{left:590.249987px;}
.xc{left:612.974987px;}
.x25{left:619.814987px;}
.xa{left:634.214987px;}
.x26{left:657.614987px;}
.x19{left:668.054987px;}
.xd{left:672.734987px;}
.x14{left:712.364987px;}
.x17{left:725.324987px;}
.x15{left:750.524987px;}
.x2{left:790.484987px;}
.x1{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.765333pt;}
.ls13{letter-spacing:-1.424000pt;}
.ls14{letter-spacing:-0.816000pt;}
.ls11{letter-spacing:-0.784000pt;}
.ls6{letter-spacing:-0.576000pt;}
.ls12{letter-spacing:-0.322667pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.023040pt;}
.lsd{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.263467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.404267pt;}
.ls9{letter-spacing:0.404480pt;}
.lsc{letter-spacing:0.506880pt;}
.ls15{letter-spacing:0.512000pt;}
.ls18{letter-spacing:0.704000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls8{letter-spacing:1.344000pt;}
.lsb{letter-spacing:5.171200pt;}
.lse{letter-spacing:21.109760pt;}
.ws5{word-spacing:-18.484382pt;}
.wsc{word-spacing:-18.240000pt;}
.wsb{word-spacing:-17.600000pt;}
.ws7{word-spacing:-17.536000pt;}
.wsa{word-spacing:-17.472000pt;}
.ws8{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.960000pt;}
.ws0{word-spacing:-16.396587pt;}
.ws3{word-spacing:-16.133120pt;}
.ws1{word-spacing:-14.730240pt;}
.ws9{word-spacing:-14.407573pt;}
.ws2{word-spacing:-13.306880pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-6.298453pt;}
._7{margin-left:-5.273173pt;}
._2{margin-left:-4.238507pt;}
._1e{margin-left:-3.069440pt;}
._5{margin-left:-2.027520pt;}
._0{margin-left:-1.119573pt;}
._3{width:1.220693pt;}
._6{width:2.820693pt;}
._10{width:3.790507pt;}
._f{width:4.883200pt;}
._e{width:6.417920pt;}
._a{width:7.621120pt;}
._b{width:8.874240pt;}
._11{width:10.245973pt;}
._14{width:11.416320pt;}
._15{width:12.307627pt;}
._17{width:13.675947pt;}
._16{width:15.216640pt;}
._20{width:16.207360pt;}
._c{width:17.125973pt;}
._d{width:18.132907pt;}
._1a{width:19.060053pt;}
._1b{width:20.379307pt;}
._19{width:21.918293pt;}
._1f{width:22.926507pt;}
._61{width:23.901155pt;}
._2b{width:24.877227pt;}
._62{width:25.958827pt;}
._18{width:26.874880pt;}
._12{width:28.027733pt;}
._13{width:29.288960pt;}
._25{width:30.555733pt;}
._27{width:31.508480pt;}
._26{width:32.415573pt;}
._23{width:33.474987pt;}
._24{width:34.411520pt;}
._2a{width:35.956053pt;}
._29{width:37.094400pt;}
._2c{width:38.014293pt;}
._57{width:39.684693pt;}
._1d{width:40.686080pt;}
._1c{width:42.216960pt;}
._8{width:43.453440pt;}
._9{width:44.834133pt;}
._21{width:46.278827pt;}
._22{width:47.181653pt;}
._28{width:48.189440pt;}
._56{width:49.317547pt;}
._5f{width:51.164160pt;}
._47{width:52.334720pt;}
._39{width:53.813760pt;}
._59{width:55.040853pt;}
._3f{width:56.433067pt;}
._5b{width:59.648853pt;}
._5a{width:61.677227pt;}
._3b{width:62.937600pt;}
._3c{width:65.088000pt;}
._46{width:66.554453pt;}
._38{width:67.557547pt;}
._30{width:72.228693pt;}
._2f{width:73.274880pt;}
._44{width:74.233600pt;}
._41{width:75.932160pt;}
._35{width:77.160960pt;}
._40{width:78.050560pt;}
._31{width:79.021653pt;}
._32{width:80.732587pt;}
._42{width:82.086400pt;}
._33{width:83.517440pt;}
._2d{width:86.329173pt;}
._2e{width:87.221760pt;}
._4e{width:92.021333pt;}
._3a{width:93.274027pt;}
._43{width:94.178133pt;}
._4d{width:98.795520pt;}
._3d{width:100.677120pt;}
._5d{width:103.033173pt;}
._55{width:107.432107pt;}
._4a{width:115.207680pt;}
._3e{width:116.349440pt;}
._53{width:122.035200pt;}
._4f{width:125.529600pt;}
._45{width:128.745813pt;}
._36{width:137.488213pt;}
._60{width:142.891947pt;}
._5c{width:143.842987pt;}
._37{width:145.782187pt;}
._58{width:153.314133pt;}
._4c{width:169.271467pt;}
._48{width:172.260693pt;}
._4b{width:193.413547pt;}
._5e{width:197.821440pt;}
._54{width:230.507520pt;}
._49{width:231.680000pt;}
._51{width:257.931520pt;}
._4{width:291.901440pt;}
._34{width:298.128213pt;}
._52{width:329.819307pt;}
._50{width:354.213973pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs5{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:67.461249pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:3.514667pt;}
.y82{bottom:3.520000pt;}
.yb3{bottom:3.840000pt;}
.y93{bottom:21.434667pt;}
.ybf{bottom:21.440000pt;}
.ya4{bottom:21.466667pt;}
.y92{bottom:39.034667pt;}
.ybe{bottom:39.040000pt;}
.ya3{bottom:39.066667pt;}
.yce{bottom:39.080000pt;}
.yb2{bottom:39.354667pt;}
.yca{bottom:39.360000pt;}
.y4{bottom:50.880000pt;}
.ycd{bottom:56.680000pt;}
.ybd{bottom:56.960000pt;}
.ya2{bottom:56.986667pt;}
.y91{bottom:56.994667pt;}
.y3{bottom:70.432000pt;}
.yc9{bottom:74.560000pt;}
.ya1{bottom:74.586667pt;}
.y90{bottom:74.594667pt;}
.ybc{bottom:74.600000pt;}
.ye4{bottom:74.880000pt;}
.ya0{bottom:92.186667pt;}
.ycc{bottom:92.200000pt;}
.ye1{bottom:92.506667pt;}
.y8f{bottom:92.514667pt;}
.yb6{bottom:92.520000pt;}
.y2{bottom:99.872000pt;}
.y9f{bottom:110.106667pt;}
.y8e{bottom:110.114667pt;}
.ybb{bottom:110.120000pt;}
.yb5{bottom:110.440000pt;}
.y97{bottom:123.240000pt;}
.ya5{bottom:126.752000pt;}
.y9e{bottom:127.706667pt;}
.y8d{bottom:127.714667pt;}
.yba{bottom:127.720000pt;}
.ye0{bottom:128.026667pt;}
.yb1{bottom:128.034667pt;}
.yc8{bottom:128.040000pt;}
.y73{bottom:129.632000pt;}
.y83{bottom:132.512000pt;}
.y30{bottom:135.066667pt;}
.y96{bottom:141.160000pt;}
.ydb{bottom:141.786667pt;}
.ycb{bottom:143.706667pt;}
.ydf{bottom:145.626667pt;}
.y8c{bottom:145.634667pt;}
.yb9{bottom:145.640000pt;}
.y9d{bottom:145.666667pt;}
.y2f{bottom:154.586667pt;}
.y5a{bottom:156.186667pt;}
.y72{bottom:161.626667pt;}
.yde{bottom:163.226667pt;}
.yb8{bottom:163.240000pt;}
.y8b{bottom:163.261333pt;}
.y9c{bottom:163.266667pt;}
.ye3{bottom:163.546667pt;}
.yda{bottom:173.826667pt;}
.y2e{bottom:174.146667pt;}
.ydd{bottom:181.146667pt;}
.yc7{bottom:181.160000pt;}
.y8a{bottom:181.181333pt;}
.y9b{bottom:181.186667pt;}
.yf4{bottom:183.106667pt;}
.y59{bottom:188.226667pt;}
.y2d{bottom:193.666667pt;}
.y89{bottom:198.781333pt;}
.y9a{bottom:198.786667pt;}
.yf3{bottom:204.226667pt;}
.yd9{bottom:205.826667pt;}
.y58{bottom:209.346667pt;}
.y2c{bottom:213.186667pt;}
.y88{bottom:216.381333pt;}
.y99{bottom:216.386667pt;}
.yb0{bottom:216.701333pt;}
.yc6{bottom:216.706667pt;}
.y71{bottom:225.346667pt;}
.yf2{bottom:225.666667pt;}
.y57{bottom:228.866667pt;}
.y2b{bottom:232.706667pt;}
.y87{bottom:234.301333pt;}
.yc5{bottom:234.306667pt;}
.yd8{bottom:237.506667pt;}
.yf1{bottom:246.786667pt;}
.y56{bottom:248.386667pt;}
.y86{bottom:251.901333pt;}
.yaf{bottom:252.221333pt;}
.y2a{bottom:252.226667pt;}
.y70{bottom:257.346667pt;}
.y74{bottom:260.546667pt;}
.y55{bottom:267.906667pt;}
.yf0{bottom:268.226667pt;}
.yd7{bottom:269.506667pt;}
.yc4{bottom:269.826667pt;}
.y85{bottom:269.861333pt;}
.y29{bottom:272.066667pt;}
.yc3{bottom:287.426667pt;}
.y54{bottom:287.453333pt;}
.y84{bottom:287.461333pt;}
.y6f{bottom:289.373333pt;}
.y28{bottom:293.213333pt;}
.yd6{bottom:301.533333pt;}
.y105{bottom:302.813333pt;}
.yc2{bottom:305.373333pt;}
.yae{bottom:305.381333pt;}
.y53{bottom:306.973333pt;}
.yef{bottom:310.813333pt;}
.y27{bottom:314.013333pt;}
.yc0{bottom:317.213333pt;}
.y6e{bottom:321.373333pt;}
.yc1{bottom:322.973333pt;}
.yad{bottom:322.981333pt;}
.y52{bottom:326.493333pt;}
.y26{bottom:331.933333pt;}
.yd5{bottom:333.533333pt;}
.yac{bottom:340.901333pt;}
.y51{bottom:346.013333pt;}
.y6d{bottom:353.373333pt;}
.y25{bottom:358.493333pt;}
.yab{bottom:358.501333pt;}
.y104{bottom:363.933333pt;}
.yd4{bottom:365.213333pt;}
.y50{bottom:365.533333pt;}
.yee{bottom:374.813333pt;}
.y24{bottom:376.093333pt;}
.yaa{bottom:376.101333pt;}
.y4f{bottom:385.053333pt;}
.ya9{bottom:394.048000pt;}
.yed{bottom:395.933333pt;}
.yd3{bottom:397.253333pt;}
.y23{bottom:403.013333pt;}
.y4e{bottom:404.613333pt;}
.ya8{bottom:411.648000pt;}
.y6c{bottom:417.093333pt;}
.yec{bottom:417.413333pt;}
.y22{bottom:421.253333pt;}
.y4d{bottom:424.133333pt;}
.yd2{bottom:429.253333pt;}
.ya7{bottom:429.568000pt;}
.yeb{bottom:438.533333pt;}
.y21{bottom:438.853333pt;}
.y4c{bottom:443.653333pt;}
.ya6{bottom:447.168000pt;}
.y81{bottom:448.133333pt;}
.y6b{bottom:449.093333pt;}
.y20{bottom:456.773333pt;}
.yea{bottom:459.973333pt;}
.yd1{bottom:461.253333pt;}
.y4b{bottom:463.173333pt;}
.y1f{bottom:474.373333pt;}
.y6a{bottom:481.093333pt;}
.y4a{bottom:482.693333pt;}
.y80{bottom:486.533333pt;}
.y1e{bottom:491.973333pt;}
.yd0{bottom:492.933333pt;}
.y49{bottom:502.213333pt;}
.ye9{bottom:502.533333pt;}
.y1d{bottom:509.920000pt;}
.y69{bottom:512.800000pt;}
.y7f{bottom:515.360000pt;}
.y48{bottom:521.440000pt;}
.ycf{bottom:523.040000pt;}
.ye8{bottom:523.680000pt;}
.y1c{bottom:527.520000pt;}
.y47{bottom:540.960000pt;}
.ye2{bottom:544.160000pt;}
.y68{bottom:544.800000pt;}
.ye7{bottom:545.120000pt;}
.y1b{bottom:545.440000pt;}
.y7e{bottom:547.360000pt;}
.y46{bottom:560.480000pt;}
.y1a{bottom:563.040000pt;}
.ye6{bottom:566.240000pt;}
.y67{bottom:576.800000pt;}
.y7d{bottom:579.040000pt;}
.y45{bottom:580.000000pt;}
.y19{bottom:580.960000pt;}
.ye5{bottom:587.680000pt;}
.y18{bottom:598.560000pt;}
.y44{bottom:599.520000pt;}
.y98{bottom:602.080000pt;}
.y66{bottom:608.800000pt;}
.y7c{bottom:611.040000pt;}
.y17{bottom:616.160000pt;}
.y43{bottom:619.040000pt;}
.y103{bottom:630.266667pt;}
.y16{bottom:634.106667pt;}
.y42{bottom:638.906667pt;}
.y65{bottom:640.506667pt;}
.y7b{bottom:643.066667pt;}
.y102{bottom:651.386667pt;}
.y15{bottom:651.706667pt;}
.y41{bottom:660.346667pt;}
.yb7{bottom:668.346667pt;}
.y14{bottom:669.626667pt;}
.y64{bottom:672.506667pt;}
.y101{bottom:672.826667pt;}
.y7a{bottom:675.066667pt;}
.y40{bottom:681.146667pt;}
.y13{bottom:687.226667pt;}
.y100{bottom:693.946667pt;}
.y3f{bottom:700.666667pt;}
.y63{bottom:704.506667pt;}
.y12{bottom:705.146667pt;}
.y79{bottom:706.746667pt;}
.yff{bottom:715.386667pt;}
.y3e{bottom:720.186667pt;}
.y11{bottom:722.746667pt;}
.y62{bottom:736.546667pt;}
.y78{bottom:738.786667pt;}
.y3d{bottom:739.746667pt;}
.y10{bottom:740.386667pt;}
.yfe{bottom:757.986667pt;}
.y3c{bottom:759.266667pt;}
.yf{bottom:766.946667pt;}
.y61{bottom:768.226667pt;}
.y77{bottom:768.546667pt;}
.ydc{bottom:771.106667pt;}
.y3b{bottom:778.786667pt;}
.yfd{bottom:779.106667pt;}
.ye{bottom:793.826667pt;}
.y76{bottom:795.106667pt;}
.y3a{bottom:798.306667pt;}
.y60{bottom:800.226667pt;}
.yfc{bottom:800.546667pt;}
.y39{bottom:817.826667pt;}
.y75{bottom:818.466667pt;}
.yd{bottom:820.386667pt;}
.yfb{bottom:821.666667pt;}
.y5f{bottom:832.226667pt;}
.y38{bottom:837.346667pt;}
.yc{bottom:837.986667pt;}
.yfa{bottom:843.106667pt;}
.y95{bottom:846.653333pt;}
.yb{bottom:856.253333pt;}
.y37{bottom:856.893333pt;}
.y5e{bottom:864.253333pt;}
.y36{bottom:876.413333pt;}
.yb4{bottom:877.373333pt;}
.ya{bottom:877.693333pt;}
.yf9{bottom:885.693333pt;}
.y35{bottom:895.933333pt;}
.y9{bottom:898.813333pt;}
.yf8{bottom:906.813333pt;}
.y34{bottom:915.453333pt;}
.y8{bottom:920.253333pt;}
.y5d{bottom:927.933333pt;}
.yf7{bottom:928.253333pt;}
.y33{bottom:934.973333pt;}
.y7{bottom:941.373333pt;}
.yf6{bottom:949.373333pt;}
.y32{bottom:954.493333pt;}
.y5c{bottom:959.973333pt;}
.y6{bottom:962.853333pt;}
.yf5{bottom:970.853333pt;}
.y31{bottom:974.053333pt;}
.y5b{bottom:991.973333pt;}
.y5{bottom:993.573333pt;}
.y1{bottom:1061.093333pt;}
.h9{height:17.600000pt;}
.h2{height:44.706250pt;}
.ha{height:49.665000pt;}
.h7{height:49.848750pt;}
.h11{height:52.544671pt;}
.h4{height:54.395000pt;}
.h3{height:54.596250pt;}
.h5{height:59.125000pt;}
.h6{height:59.343750pt;}
.h8{height:62.553179pt;}
.h16{height:65.781915pt;}
.hf{height:124.512000pt;}
.hc{height:155.226667pt;}
.h13{height:159.746667pt;}
.h10{height:195.266667pt;}
.h15{height:212.866667pt;}
.hd{height:230.466667pt;}
.h14{height:230.786667pt;}
.hb{height:301.533333pt;}
.h12{height:337.053333pt;}
.he{height:461.253333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:174.146667pt;}
.w4{width:251.933333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.080000pt;}
.x23{left:75.560000pt;}
.x18{left:84.831988pt;}
.x21{left:88.680000pt;}
.x24{left:105.986667pt;}
.x1b{left:107.232000pt;}
.x6{left:113.951988pt;}
.x22{left:119.426667pt;}
.x1f{left:125.826667pt;}
.x8{left:149.186655pt;}
.x20{left:164.546667pt;}
.x3{left:165.826655pt;}
.xb{left:169.986655pt;}
.x2e{left:182.466655pt;}
.x2c{left:190.786655pt;}
.x2f{left:212.573322pt;}
.x2d{left:220.893322pt;}
.x30{left:223.773322pt;}
.x12{left:238.173322pt;}
.x31{left:253.853322pt;}
.x27{left:264.413322pt;}
.x9{left:271.133322pt;}
.x13{left:275.613322pt;}
.x1d{left:282.013333pt;}
.x28{left:298.693322pt;}
.x10{left:299.973322pt;}
.x1a{left:305.413322pt;}
.x2a{left:310.533322pt;}
.x7{left:329.733322pt;}
.x2b{left:340.613322pt;}
.x11{left:356.933322pt;}
.x29{left:364.293322pt;}
.xe{left:391.839988pt;}
.x4{left:415.839988pt;}
.xf{left:427.999988pt;}
.x1e{left:456.800000pt;}
.x5{left:465.786655pt;}
.x16{left:524.666655pt;}
.xc{left:544.866655pt;}
.x25{left:550.946655pt;}
.xa{left:563.746655pt;}
.x26{left:584.546655pt;}
.x19{left:593.826655pt;}
.xd{left:597.986655pt;}
.x14{left:633.213322pt;}
.x17{left:644.733322pt;}
.x15{left:667.133322pt;}
.x2{left:702.653322pt;}
.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; }
  