
    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_b3a53ea983552bac0ad690cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_f960dea3a79283ce8fcac486.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_4f0ce94ee8d748273d8f9246.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_fc82d079e366218c97eeaa13.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c1f32fd2e6f19a8fcb494b99.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d0c06ceea3468cf456cf8e27.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.962402;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_f2e472e0faf2c09a56f8efae.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107422;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_af15bf6d4a3198a7d848366f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fa8a5ba8d2903cdb1825d68b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4fdec82403398536da5e93ce.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.961914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.828000px;}
.lse{letter-spacing:-0.414600px;}
.ls9{letter-spacing:-0.262200px;}
.ls3{letter-spacing:-0.109200px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.010560px;}
.ls1{letter-spacing:0.262080px;}
.ls8{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.305280px;}
.ls7{letter-spacing:0.305400px;}
.ls5{letter-spacing:1.025280px;}
.lsa{letter-spacing:17.585280px;}
.lsd{letter-spacing:18.305280px;}
.lsc{letter-spacing:34.865280px;}
.ls6{letter-spacing:845.741280px;}
.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;}
}
.ws2{word-spacing:-108.000000px;}
.ws8{word-spacing:-66.240000px;}
.ws6{word-spacing:-18.676920px;}
.ws9{word-spacing:-18.676800px;}
.ws0{word-spacing:-18.675248px;}
.ws3{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.305520px;}
.ws7{word-spacing:-18.152520px;}
.ws5{word-spacing:-17.586720px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-5.031719px;}
._10{margin-left:-3.908160px;}
._20{margin-left:-2.384640px;}
._d{margin-left:-1.259400px;}
._5{width:1.763400px;}
._9{width:3.064958px;}
._6{width:4.240558px;}
._2{width:5.374172px;}
._a{width:6.381829px;}
._3{width:8.313173px;}
._b{width:10.286501px;}
._16{width:12.121920px;}
._19{width:13.136399px;}
._18{width:14.177040px;}
._14{width:15.235200px;}
._7{width:16.878259px;}
._f{width:19.898400px;}
._15{width:21.462600px;}
._11{width:23.316480px;}
._12{width:24.695760px;}
._1c{width:25.791718px;}
._17{width:27.357120px;}
._25{width:28.638913px;}
._4{width:29.851847px;}
._2d{width:31.022713px;}
._8{width:32.412976px;}
._1a{width:34.378560px;}
._1{width:36.023748px;}
._1f{width:37.808545px;}
._22{width:39.328320px;}
._26{width:41.068800px;}
._27{width:42.129480px;}
._29{width:45.375240px;}
._2a{width:46.434240px;}
._1b{width:47.494920px;}
._21{width:48.818040px;}
._34{width:49.946640px;}
._23{width:52.528320px;}
._24{width:53.721480px;}
._1d{width:54.780480px;}
._c{width:57.520436px;}
._31{width:68.293440px;}
._32{width:69.822240px;}
._28{width:72.268680px;}
._33{width:75.448200px;}
._2e{width:77.369160px;}
._1e{width:81.012360px;}
._2b{width:100.154880px;}
._2c{width:102.043080px;}
._2f{width:130.757760px;}
._30{width:132.943680px;}
._35{width:188.851080px;}
._e{width:845.741280px;}
._0{width:1044.400783px;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.985720px;}
.fs3{font-size:47.983680px;}
.fs6{font-size:52.782048px;}
.fs7{font-size:53.981640px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:59.979600px;}
.fs1{font-size:65.977560px;}
.fs9{font-size:66.240000px;}
.fs5{font-size:67.177152px;}
.fs0{font-size:83.971440px;}
.fsb{font-size:84.240000px;}
.fsa{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.379575px;}
.y25{bottom:12.420000px;}
.y28{bottom:34.920000px;}
.y2f{bottom:43.920000px;}
.y1c{bottom:63.953249px;}
.y1e{bottom:65.340000px;}
.y2e{bottom:75.420000px;}
.y1b{bottom:80.957465px;}
.y1d{bottom:96.660000px;}
.y35{bottom:97.920000px;}
.y1a{bottom:97.961682px;}
.y2d{bottom:106.950000px;}
.y19{bottom:114.965898px;}
.y34{bottom:120.465000px;}
.y93{bottom:122.400000px;}
.y12d{bottom:125.100000px;}
.yd2{bottom:128.880000px;}
.y61{bottom:129.420000px;}
.y18{bottom:129.495956px;}
.y111{bottom:132.480000px;}
.y2c{bottom:138.450000px;}
.y92{bottom:144.900000px;}
.yb3{bottom:146.520000px;}
.yd1{bottom:151.380000px;}
.y60{bottom:151.920000px;}
.y33{bottom:151.965000px;}
.y110{bottom:154.980000px;}
.y17{bottom:157.026593px;}
.y12c{bottom:157.140000px;}
.y91{bottom:167.430000px;}
.yb2{bottom:169.050000px;}
.y2b{bottom:169.950000px;}
.yd0{bottom:173.910000px;}
.y5f{bottom:174.450000px;}
.y32{bottom:174.465000px;}
.y10f{bottom:177.510000px;}
.y12b{bottom:179.670000px;}
.yb1{bottom:191.550000px;}
.ycf{bottom:196.410000px;}
.y5e{bottom:196.950000px;}
.y90{bottom:198.930000px;}
.y10e{bottom:200.010000px;}
.y12a{bottom:202.170000px;}
.ye6{bottom:204.510000px;}
.y37{bottom:205.050000px;}
.yb0{bottom:214.050000px;}
.yce{bottom:218.910000px;}
.y5d{bottom:219.450000px;}
.y8f{bottom:221.430000px;}
.y10d{bottom:222.510000px;}
.y129{bottom:224.670000px;}
.y36{bottom:231.330000px;}
.ye5{bottom:232.410000px;}
.y16{bottom:232.750838px;}
.ycd{bottom:241.410000px;}
.y5c{bottom:241.950000px;}
.y8e{bottom:243.930000px;}
.y10c{bottom:245.010000px;}
.y15{bottom:245.511498px;}
.yaf{bottom:245.550000px;}
.y128{bottom:247.170000px;}
.y14{bottom:257.192525px;}
.ye4{bottom:263.910000px;}
.y5b{bottom:264.450000px;}
.y8d{bottom:266.430000px;}
.y10b{bottom:267.510000px;}
.y13{bottom:267.823909px;}
.yae{bottom:268.050000px;}
.y127{bottom:269.670000px;}
.ycc{bottom:272.910000px;}
.y12{bottom:278.455293px;}
.ye3{bottom:286.410000px;}
.y5a{bottom:286.950000px;}
.y8c{bottom:288.930000px;}
.y11{bottom:289.071682px;}
.yad{bottom:290.550000px;}
.y126{bottom:292.170000px;}
.ycb{bottom:295.410000px;}
.y10a{bottom:299.010000px;}
.y10{bottom:299.703066px;}
.y31{bottom:299.730000px;}
.ye2{bottom:308.910000px;}
.y59{bottom:309.450000px;}
.yf{bottom:310.334450px;}
.y8b{bottom:311.430000px;}
.yac{bottom:313.050000px;}
.y125{bottom:314.670000px;}
.yca{bottom:317.910000px;}
.ye{bottom:320.950840px;}
.y109{bottom:321.510000px;}
.ye1{bottom:331.410000px;}
.yd{bottom:331.582224px;}
.y58{bottom:331.950000px;}
.y8a{bottom:333.930000px;}
.yab{bottom:335.550000px;}
.y124{bottom:337.170000px;}
.yc9{bottom:340.410000px;}
.y108{bottom:344.010000px;}
.yc{bottom:353.444788px;}
.ye0{bottom:353.910000px;}
.y89{bottom:356.430000px;}
.yaa{bottom:358.050000px;}
.yc8{bottom:362.910000px;}
.y107{bottom:366.510000px;}
.y123{bottom:368.670000px;}
.ydf{bottom:376.410000px;}
.y57{bottom:378.390000px;}
.y88{bottom:378.930000px;}
.yc7{bottom:385.410000px;}
.y106{bottom:389.010000px;}
.ya9{bottom:389.550000px;}
.y122{bottom:391.170000px;}
.yde{bottom:398.910000px;}
.y87{bottom:401.430000px;}
.yc6{bottom:407.955000px;}
.y105{bottom:411.555000px;}
.ya8{bottom:412.095000px;}
.y121{bottom:413.715000px;}
.y56{bottom:419.475000px;}
.ydd{bottom:421.455000px;}
.y86{bottom:423.975000px;}
.y104{bottom:434.055000px;}
.ya7{bottom:434.595000px;}
.y120{bottom:436.215000px;}
.yc5{bottom:439.455000px;}
.y55{bottom:441.975000px;}
.y85{bottom:446.475000px;}
.ydc{bottom:452.955000px;}
.y103{bottom:456.555000px;}
.ya6{bottom:457.095000px;}
.y11f{bottom:458.715000px;}
.yc4{bottom:461.955000px;}
.y54{bottom:464.475000px;}
.ydb{bottom:475.455000px;}
.y84{bottom:477.975000px;}
.ya5{bottom:479.595000px;}
.y11e{bottom:481.215000px;}
.yc3{bottom:484.455000px;}
.y53{bottom:486.975000px;}
.y102{bottom:488.055000px;}
.yda{bottom:497.955000px;}
.y83{bottom:500.475000px;}
.y11d{bottom:503.715000px;}
.yc2{bottom:506.955000px;}
.y30{bottom:507.675000px;}
.y52{bottom:509.475000px;}
.y101{bottom:510.555000px;}
.ya4{bottom:511.095000px;}
.yd9{bottom:520.455000px;}
.y82{bottom:522.975000px;}
.y11c{bottom:526.215000px;}
.yc1{bottom:529.455000px;}
.y51{bottom:531.975000px;}
.y100{bottom:533.055000px;}
.ya3{bottom:542.595000px;}
.yd8{bottom:542.955000px;}
.y81{bottom:545.475000px;}
.y7b{bottom:546.915000px;}
.y11b{bottom:548.715000px;}
.yc0{bottom:551.955000px;}
.y2a{bottom:553.575000px;}
.y50{bottom:554.475000px;}
.yff{bottom:555.555000px;}
.ya2{bottom:565.095000px;}
.yd7{bottom:574.455000px;}
.y4f{bottom:576.975000px;}
.yfe{bottom:578.055000px;}
.y7a{bottom:578.955000px;}
.y11a{bottom:581.655000px;}
.ybf{bottom:583.455000px;}
.ya1{bottom:587.595000px;}
.yd6{bottom:596.955000px;}
.y80{bottom:599.475000px;}
.y79{bottom:601.455000px;}
.ybe{bottom:605.955000px;}
.y4e{bottom:608.475000px;}
.yfd{bottom:609.555000px;}
.yd5{bottom:619.455000px;}
.y7f{bottom:621.975000px;}
.y78{bottom:623.955000px;}
.ybd{bottom:628.455000px;}
.ya0{bottom:628.635000px;}
.y4d{bottom:630.975000px;}
.yfc{bottom:632.055000px;}
.y119{bottom:637.455000px;}
.yd4{bottom:641.955000px;}
.y7e{bottom:644.475000px;}
.y77{bottom:646.455000px;}
.ybc{bottom:650.955000px;}
.y4c{bottom:653.505000px;}
.yfb{bottom:654.585000px;}
.y9f{bottom:657.105000px;}
.y118{bottom:659.985000px;}
.y7d{bottom:667.005000px;}
.y76{bottom:668.985000px;}
.ybb{bottom:673.485000px;}
.y4b{bottom:676.005000px;}
.yfa{bottom:677.085000px;}
.y117{bottom:682.485000px;}
.y75{bottom:691.485000px;}
.yba{bottom:695.985000px;}
.y4a{bottom:698.505000px;}
.yf9{bottom:699.585000px;}
.y9e{bottom:699.945000px;}
.y116{bottom:704.985000px;}
.y74{bottom:713.985000px;}
.yb9{bottom:718.485000px;}
.y49{bottom:721.005000px;}
.yf8{bottom:722.085000px;}
.y115{bottom:727.485000px;}
.y73{bottom:736.485000px;}
.y9d{bottom:740.985000px;}
.y48{bottom:743.505000px;}
.yf7{bottom:744.585000px;}
.yd3{bottom:749.985000px;}
.yb{bottom:750.869618px;}
.y29{bottom:757.005000px;}
.y72{bottom:758.985000px;}
.y47{bottom:766.005000px;}
.yf6{bottom:767.085000px;}
.ya{bottom:767.873834px;}
.y9c{bottom:772.485000px;}
.y71{bottom:781.485000px;}
.y46{bottom:788.505000px;}
.y9b{bottom:794.985000px;}
.yf5{bottom:798.585000px;}
.y9{bottom:800.982573px;}
.y27{bottom:802.905000px;}
.y114{bottom:803.985000px;}
.y45{bottom:811.005000px;}
.y70{bottom:812.985000px;}
.y9a{bottom:817.485000px;}
.y8{bottom:817.971795px;}
.y7c{bottom:820.005000px;}
.yf4{bottom:821.085000px;}
.y113{bottom:826.485000px;}
.y7{bottom:834.976012px;}
.y6f{bottom:835.485000px;}
.yb8{bottom:839.985000px;}
.y44{bottom:842.505000px;}
.yf3{bottom:843.585000px;}
.y99{bottom:848.985000px;}
.y6{bottom:851.980228px;}
.y6e{bottom:857.985000px;}
.yb7{bottom:862.485000px;}
.y43{bottom:865.005000px;}
.yf2{bottom:866.085000px;}
.y26{bottom:871.305000px;}
.y98{bottom:871.485000px;}
.y6d{bottom:880.485000px;}
.yb6{bottom:884.985000px;}
.y42{bottom:887.505000px;}
.y97{bottom:893.985000px;}
.yf1{bottom:897.585000px;}
.y6c{bottom:903.030000px;}
.y41{bottom:910.050000px;}
.y96{bottom:916.530000px;}
.y24{bottom:917.250000px;}
.yf0{bottom:920.130000px;}
.y6b{bottom:925.530000px;}
.y5{bottom:931.228275px;}
.y40{bottom:932.550000px;}
.y95{bottom:939.030000px;}
.yef{bottom:942.630000px;}
.y6a{bottom:948.030000px;}
.y3f{bottom:955.050000px;}
.yb5{bottom:961.530000px;}
.yee{bottom:965.130000px;}
.y4{bottom:969.195361px;}
.y69{bottom:970.530000px;}
.y3e{bottom:977.550000px;}
.y23{bottom:983.310000px;}
.yb4{bottom:984.030000px;}
.yed{bottom:987.630000px;}
.y68{bottom:993.030000px;}
.y3{bottom:998.945243px;}
.y3d{bottom:1000.050000px;}
.yec{bottom:1010.130000px;}
.y67{bottom:1015.530000px;}
.y3c{bottom:1022.550000px;}
.y22{bottom:1025.430000px;}
.y2{bottom:1028.710120px;}
.yeb{bottom:1032.630000px;}
.y66{bottom:1038.030000px;}
.y3b{bottom:1045.050000px;}
.y21{bottom:1059.630000px;}
.y65{bottom:1060.530000px;}
.yea{bottom:1064.130000px;}
.y3a{bottom:1067.550000px;}
.y112{bottom:1069.530000px;}
.y94{bottom:1083.030000px;}
.ye9{bottom:1086.630000px;}
.y39{bottom:1090.050000px;}
.y20{bottom:1090.950000px;}
.y64{bottom:1092.030000px;}
.ye8{bottom:1109.130000px;}
.y63{bottom:1114.530000px;}
.y1f{bottom:1130.730000px;}
.y38{bottom:1136.490000px;}
.y62{bottom:1137.030000px;}
.ye7{bottom:1140.630000px;}
.h7{height:31.111419px;}
.h10{height:31.500000px;}
.h11{height:31.536000px;}
.h6{height:35.555907px;}
.h9{height:40.000395px;}
.h5{height:44.444884px;}
.h4{height:48.889372px;}
.h8{height:49.778270px;}
.h12{height:54.000000px;}
.h15{height:59.415469px;}
.h3{height:62.222837px;}
.hc{height:62.327813px;}
.hd{height:69.086250px;}
.hf{height:87.859687px;}
.he{height:112.640625px;}
.h13{height:189.030000px;}
.h14{height:193.530000px;}
.hb{height:1262.250000px;}
.h2{height:1262.405636px;}
.ha{height:1262.520000px;}
.h1{height:1263.000000px;}
.h0{height:1263.165000px;}
.w4{width:288.030000px;}
.w5{width:445.065000px;}
.w1{width:892.500000px;}
.w2{width:892.616407px;}
.w3{width:892.619987px;}
.w0{width:892.620000px;}
.x0{left:0.000000px;}
.xd{left:12.780000px;}
.x3{left:46.754098px;}
.x1{left:55.256206px;}
.xc{left:95.796000px;}
.xb{left:106.415987px;}
.x8{left:115.415987px;}
.x10{left:127.655987px;}
.xf{left:138.275987px;}
.x2{left:148.764403px;}
.x7{left:241.589987px;}
.x9{left:297.074987px;}
.xe{left:383.835000px;}
.x4{left:437.806095px;}
.x5{left:442.184987px;}
.xa{left:446.324987px;}
.x6{left:786.419987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.736000pt;}
.lse{letter-spacing:-0.368533pt;}
.ls9{letter-spacing:-0.233067pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.009387pt;}
.ls1{letter-spacing:0.232960pt;}
.ls8{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.271360pt;}
.ls7{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.911360pt;}
.lsa{letter-spacing:15.631360pt;}
.lsd{letter-spacing:16.271360pt;}
.lsc{letter-spacing:30.991360pt;}
.ls6{letter-spacing:751.770027pt;}
.ws2{word-spacing:-96.000000pt;}
.ws8{word-spacing:-58.880000pt;}
.ws6{word-spacing:-16.601707pt;}
.ws9{word-spacing:-16.601600pt;}
.ws0{word-spacing:-16.600221pt;}
.ws3{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.271573pt;}
.ws7{word-spacing:-16.135573pt;}
.ws5{word-spacing:-15.632640pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-4.472639pt;}
._10{margin-left:-3.473920pt;}
._20{margin-left:-2.119680pt;}
._d{margin-left:-1.119467pt;}
._5{width:1.567467pt;}
._9{width:2.724407pt;}
._6{width:3.769385pt;}
._2{width:4.777042pt;}
._a{width:5.672737pt;}
._3{width:7.389487pt;}
._b{width:9.143557pt;}
._16{width:10.775040pt;}
._19{width:11.676799pt;}
._18{width:12.601814pt;}
._14{width:13.542400pt;}
._7{width:15.002897pt;}
._f{width:17.687467pt;}
._15{width:19.077867pt;}
._11{width:20.725760pt;}
._12{width:21.951787pt;}
._1c{width:22.925972pt;}
._17{width:24.317440pt;}
._25{width:25.456812pt;}
._4{width:26.534975pt;}
._2d{width:27.575745pt;}
._8{width:28.811534pt;}
._1a{width:30.558720pt;}
._1{width:32.021109pt;}
._1f{width:33.607595pt;}
._22{width:34.958507pt;}
._26{width:36.505600pt;}
._27{width:37.448427pt;}
._29{width:40.333547pt;}
._2a{width:41.274880pt;}
._1b{width:42.217707pt;}
._21{width:43.393813pt;}
._34{width:44.397014pt;}
._23{width:46.691840pt;}
._24{width:47.752427pt;}
._1d{width:48.693760pt;}
._c{width:51.129277pt;}
._31{width:60.705280pt;}
._32{width:62.064213pt;}
._28{width:64.238827pt;}
._33{width:67.065067pt;}
._2e{width:68.772587pt;}
._1e{width:72.010987pt;}
._2b{width:89.026560pt;}
._2c{width:90.704960pt;}
._2f{width:116.229120pt;}
._30{width:118.172160pt;}
._35{width:167.867627pt;}
._e{width:751.770027pt;}
._0{width:928.356252pt;}
.fs4{font-size:37.320640pt;}
.fs3{font-size:42.652160pt;}
.fs6{font-size:46.917376pt;}
.fs7{font-size:47.983680pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:53.315200pt;}
.fs1{font-size:58.646720pt;}
.fs9{font-size:58.880000pt;}
.fs5{font-size:59.713024pt;}
.fs0{font-size:74.641280pt;}
.fsb{font-size:74.880000pt;}
.fsa{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.337400pt;}
.y25{bottom:11.040000pt;}
.y28{bottom:31.040000pt;}
.y2f{bottom:39.040000pt;}
.y1c{bottom:56.847332pt;}
.y1e{bottom:58.080000pt;}
.y2e{bottom:67.040000pt;}
.y1b{bottom:71.962191pt;}
.y1d{bottom:85.920000pt;}
.y35{bottom:87.040000pt;}
.y1a{bottom:87.077050pt;}
.y2d{bottom:95.066667pt;}
.y19{bottom:102.191910pt;}
.y34{bottom:107.080000pt;}
.y93{bottom:108.800000pt;}
.y12d{bottom:111.200000pt;}
.yd2{bottom:114.560000pt;}
.y61{bottom:115.040000pt;}
.y18{bottom:115.107517pt;}
.y111{bottom:117.760000pt;}
.y2c{bottom:123.066667pt;}
.y92{bottom:128.800000pt;}
.yb3{bottom:130.240000pt;}
.yd1{bottom:134.560000pt;}
.y60{bottom:135.040000pt;}
.y33{bottom:135.080000pt;}
.y110{bottom:137.760000pt;}
.y17{bottom:139.579194pt;}
.y12c{bottom:139.680000pt;}
.y91{bottom:148.826667pt;}
.yb2{bottom:150.266667pt;}
.y2b{bottom:151.066667pt;}
.yd0{bottom:154.586667pt;}
.y5f{bottom:155.066667pt;}
.y32{bottom:155.080000pt;}
.y10f{bottom:157.786667pt;}
.y12b{bottom:159.706667pt;}
.yb1{bottom:170.266667pt;}
.ycf{bottom:174.586667pt;}
.y5e{bottom:175.066667pt;}
.y90{bottom:176.826667pt;}
.y10e{bottom:177.786667pt;}
.y12a{bottom:179.706667pt;}
.ye6{bottom:181.786667pt;}
.y37{bottom:182.266667pt;}
.yb0{bottom:190.266667pt;}
.yce{bottom:194.586667pt;}
.y5d{bottom:195.066667pt;}
.y8f{bottom:196.826667pt;}
.y10d{bottom:197.786667pt;}
.y129{bottom:199.706667pt;}
.y36{bottom:205.626667pt;}
.ye5{bottom:206.586667pt;}
.y16{bottom:206.889634pt;}
.ycd{bottom:214.586667pt;}
.y5c{bottom:215.066667pt;}
.y8e{bottom:216.826667pt;}
.y10c{bottom:217.786667pt;}
.y15{bottom:218.232442pt;}
.yaf{bottom:218.266667pt;}
.y128{bottom:219.706667pt;}
.y14{bottom:228.615578pt;}
.ye4{bottom:234.586667pt;}
.y5b{bottom:235.066667pt;}
.y8d{bottom:236.826667pt;}
.y10b{bottom:237.786667pt;}
.y13{bottom:238.065697pt;}
.yae{bottom:238.266667pt;}
.y127{bottom:239.706667pt;}
.ycc{bottom:242.586667pt;}
.y12{bottom:247.515816pt;}
.ye3{bottom:254.586667pt;}
.y5a{bottom:255.066667pt;}
.y8c{bottom:256.826667pt;}
.y11{bottom:256.952606pt;}
.yad{bottom:258.266667pt;}
.y126{bottom:259.706667pt;}
.ycb{bottom:262.586667pt;}
.y10a{bottom:265.786667pt;}
.y10{bottom:266.402726pt;}
.y31{bottom:266.426667pt;}
.ye2{bottom:274.586667pt;}
.y59{bottom:275.066667pt;}
.yf{bottom:275.852845pt;}
.y8b{bottom:276.826667pt;}
.yac{bottom:278.266667pt;}
.y125{bottom:279.706667pt;}
.yca{bottom:282.586667pt;}
.ye{bottom:285.289635pt;}
.y109{bottom:285.786667pt;}
.ye1{bottom:294.586667pt;}
.yd{bottom:294.739754pt;}
.y58{bottom:295.066667pt;}
.y8a{bottom:296.826667pt;}
.yab{bottom:298.266667pt;}
.y124{bottom:299.706667pt;}
.yc9{bottom:302.586667pt;}
.y108{bottom:305.786667pt;}
.yc{bottom:314.173145pt;}
.ye0{bottom:314.586667pt;}
.y89{bottom:316.826667pt;}
.yaa{bottom:318.266667pt;}
.yc8{bottom:322.586667pt;}
.y107{bottom:325.786667pt;}
.y123{bottom:327.706667pt;}
.ydf{bottom:334.586667pt;}
.y57{bottom:336.346667pt;}
.y88{bottom:336.826667pt;}
.yc7{bottom:342.586667pt;}
.y106{bottom:345.786667pt;}
.ya9{bottom:346.266667pt;}
.y122{bottom:347.706667pt;}
.yde{bottom:354.586667pt;}
.y87{bottom:356.826667pt;}
.yc6{bottom:362.626667pt;}
.y105{bottom:365.826667pt;}
.ya8{bottom:366.306667pt;}
.y121{bottom:367.746667pt;}
.y56{bottom:372.866667pt;}
.ydd{bottom:374.626667pt;}
.y86{bottom:376.866667pt;}
.y104{bottom:385.826667pt;}
.ya7{bottom:386.306667pt;}
.y120{bottom:387.746667pt;}
.yc5{bottom:390.626667pt;}
.y55{bottom:392.866667pt;}
.y85{bottom:396.866667pt;}
.ydc{bottom:402.626667pt;}
.y103{bottom:405.826667pt;}
.ya6{bottom:406.306667pt;}
.y11f{bottom:407.746667pt;}
.yc4{bottom:410.626667pt;}
.y54{bottom:412.866667pt;}
.ydb{bottom:422.626667pt;}
.y84{bottom:424.866667pt;}
.ya5{bottom:426.306667pt;}
.y11e{bottom:427.746667pt;}
.yc3{bottom:430.626667pt;}
.y53{bottom:432.866667pt;}
.y102{bottom:433.826667pt;}
.yda{bottom:442.626667pt;}
.y83{bottom:444.866667pt;}
.y11d{bottom:447.746667pt;}
.yc2{bottom:450.626667pt;}
.y30{bottom:451.266667pt;}
.y52{bottom:452.866667pt;}
.y101{bottom:453.826667pt;}
.ya4{bottom:454.306667pt;}
.yd9{bottom:462.626667pt;}
.y82{bottom:464.866667pt;}
.y11c{bottom:467.746667pt;}
.yc1{bottom:470.626667pt;}
.y51{bottom:472.866667pt;}
.y100{bottom:473.826667pt;}
.ya3{bottom:482.306667pt;}
.yd8{bottom:482.626667pt;}
.y81{bottom:484.866667pt;}
.y7b{bottom:486.146667pt;}
.y11b{bottom:487.746667pt;}
.yc0{bottom:490.626667pt;}
.y2a{bottom:492.066667pt;}
.y50{bottom:492.866667pt;}
.yff{bottom:493.826667pt;}
.ya2{bottom:502.306667pt;}
.yd7{bottom:510.626667pt;}
.y4f{bottom:512.866667pt;}
.yfe{bottom:513.826667pt;}
.y7a{bottom:514.626667pt;}
.y11a{bottom:517.026667pt;}
.ybf{bottom:518.626667pt;}
.ya1{bottom:522.306667pt;}
.yd6{bottom:530.626667pt;}
.y80{bottom:532.866667pt;}
.y79{bottom:534.626667pt;}
.ybe{bottom:538.626667pt;}
.y4e{bottom:540.866667pt;}
.yfd{bottom:541.826667pt;}
.yd5{bottom:550.626667pt;}
.y7f{bottom:552.866667pt;}
.y78{bottom:554.626667pt;}
.ybd{bottom:558.626667pt;}
.ya0{bottom:558.786667pt;}
.y4d{bottom:560.866667pt;}
.yfc{bottom:561.826667pt;}
.y119{bottom:566.626667pt;}
.yd4{bottom:570.626667pt;}
.y7e{bottom:572.866667pt;}
.y77{bottom:574.626667pt;}
.ybc{bottom:578.626667pt;}
.y4c{bottom:580.893333pt;}
.yfb{bottom:581.853333pt;}
.y9f{bottom:584.093333pt;}
.y118{bottom:586.653333pt;}
.y7d{bottom:592.893333pt;}
.y76{bottom:594.653333pt;}
.ybb{bottom:598.653333pt;}
.y4b{bottom:600.893333pt;}
.yfa{bottom:601.853333pt;}
.y117{bottom:606.653333pt;}
.y75{bottom:614.653333pt;}
.yba{bottom:618.653333pt;}
.y4a{bottom:620.893333pt;}
.yf9{bottom:621.853333pt;}
.y9e{bottom:622.173333pt;}
.y116{bottom:626.653333pt;}
.y74{bottom:634.653333pt;}
.yb9{bottom:638.653333pt;}
.y49{bottom:640.893333pt;}
.yf8{bottom:641.853333pt;}
.y115{bottom:646.653333pt;}
.y73{bottom:654.653333pt;}
.y9d{bottom:658.653333pt;}
.y48{bottom:660.893333pt;}
.yf7{bottom:661.853333pt;}
.yd3{bottom:666.653333pt;}
.yb{bottom:667.439660pt;}
.y29{bottom:672.893333pt;}
.y72{bottom:674.653333pt;}
.y47{bottom:680.893333pt;}
.yf6{bottom:681.853333pt;}
.ya{bottom:682.554519pt;}
.y9c{bottom:686.653333pt;}
.y71{bottom:694.653333pt;}
.y46{bottom:700.893333pt;}
.y9b{bottom:706.653333pt;}
.yf5{bottom:709.853333pt;}
.y9{bottom:711.984510pt;}
.y27{bottom:713.693333pt;}
.y114{bottom:714.653333pt;}
.y45{bottom:720.893333pt;}
.y70{bottom:722.653333pt;}
.y9a{bottom:726.653333pt;}
.y8{bottom:727.086040pt;}
.y7c{bottom:728.893333pt;}
.yf4{bottom:729.853333pt;}
.y113{bottom:734.653333pt;}
.y7{bottom:742.200899pt;}
.y6f{bottom:742.653333pt;}
.yb8{bottom:746.653333pt;}
.y44{bottom:748.893333pt;}
.yf3{bottom:749.853333pt;}
.y99{bottom:754.653333pt;}
.y6{bottom:757.315758pt;}
.y6e{bottom:762.653333pt;}
.yb7{bottom:766.653333pt;}
.y43{bottom:768.893333pt;}
.yf2{bottom:769.853333pt;}
.y26{bottom:774.493333pt;}
.y98{bottom:774.653333pt;}
.y6d{bottom:782.653333pt;}
.yb6{bottom:786.653333pt;}
.y42{bottom:788.893333pt;}
.y97{bottom:794.653333pt;}
.yf1{bottom:797.853333pt;}
.y6c{bottom:802.693333pt;}
.y41{bottom:808.933333pt;}
.y96{bottom:814.693333pt;}
.y24{bottom:815.333333pt;}
.yf0{bottom:817.893333pt;}
.y6b{bottom:822.693333pt;}
.y5{bottom:827.758466pt;}
.y40{bottom:828.933333pt;}
.y95{bottom:834.693333pt;}
.yef{bottom:837.893333pt;}
.y6a{bottom:842.693333pt;}
.y3f{bottom:848.933333pt;}
.yb5{bottom:854.693333pt;}
.yee{bottom:857.893333pt;}
.y4{bottom:861.506988pt;}
.y69{bottom:862.693333pt;}
.y3e{bottom:868.933333pt;}
.y23{bottom:874.053333pt;}
.yb4{bottom:874.693333pt;}
.yed{bottom:877.893333pt;}
.y68{bottom:882.693333pt;}
.y3{bottom:887.951327pt;}
.y3d{bottom:888.933333pt;}
.yec{bottom:897.893333pt;}
.y67{bottom:902.693333pt;}
.y3c{bottom:908.933333pt;}
.y22{bottom:911.493333pt;}
.y2{bottom:914.408995pt;}
.yeb{bottom:917.893333pt;}
.y66{bottom:922.693333pt;}
.y3b{bottom:928.933333pt;}
.y21{bottom:941.893333pt;}
.y65{bottom:942.693333pt;}
.yea{bottom:945.893333pt;}
.y3a{bottom:948.933333pt;}
.y112{bottom:950.693333pt;}
.y94{bottom:962.693333pt;}
.ye9{bottom:965.893333pt;}
.y39{bottom:968.933333pt;}
.y20{bottom:969.733333pt;}
.y64{bottom:970.693333pt;}
.ye8{bottom:985.893333pt;}
.y63{bottom:990.693333pt;}
.y1f{bottom:1005.093333pt;}
.y38{bottom:1010.213333pt;}
.y62{bottom:1010.693333pt;}
.ye7{bottom:1013.893333pt;}
.h7{height:27.654594pt;}
.h10{height:28.000000pt;}
.h11{height:28.032000pt;}
.h6{height:31.605251pt;}
.h9{height:35.555907pt;}
.h5{height:39.506563pt;}
.h4{height:43.457220pt;}
.h8{height:44.247351pt;}
.h12{height:48.000000pt;}
.h15{height:52.813750pt;}
.h3{height:55.309188pt;}
.hc{height:55.402500pt;}
.hd{height:61.410000pt;}
.hf{height:78.097500pt;}
.he{height:100.125000pt;}
.h13{height:168.026667pt;}
.h14{height:172.026667pt;}
.hb{height:1122.000000pt;}
.h2{height:1122.138343pt;}
.ha{height:1122.240000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.813333pt;}
.w4{width:256.026667pt;}
.w5{width:395.613333pt;}
.w1{width:793.333333pt;}
.w2{width:793.436806pt;}
.w3{width:793.439988pt;}
.w0{width:793.440000pt;}
.x0{left:0.000000pt;}
.xd{left:11.360000pt;}
.x3{left:41.559198pt;}
.x1{left:49.116628pt;}
.xc{left:85.152000pt;}
.xb{left:94.591988pt;}
.x8{left:102.591988pt;}
.x10{left:113.471988pt;}
.xf{left:122.911988pt;}
.x2{left:132.235025pt;}
.x7{left:214.746655pt;}
.x9{left:264.066655pt;}
.xe{left:341.186667pt;}
.x4{left:389.160974pt;}
.x5{left:393.053322pt;}
.xa{left:396.733322pt;}
.x6{left:699.039988pt;}
}




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