
    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_deb33416c7308a4ad072af5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.883301;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_57afba9f282b58b1fd6e5596.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a7e24b2bed83a2775078c06c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8436a4b3cf1d93a91ea149fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ab257bd8b10d36a5b7cb3dad.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_2f5b6c4ce7102bef4940d392.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-93.600000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:27.360000px;}
.lsf{letter-spacing:-2.160000px;}
.ls19{letter-spacing:-0.936000px;}
.lsd{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.190200px;}
.ls13{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.118200px;}
.ls8{letter-spacing:0.120240px;}
.ls5{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.177000px;}
.ls4{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.432000px;}
.lse{letter-spacing:0.648000px;}
.ls11{letter-spacing:0.720000px;}
.ls12{letter-spacing:1.152000px;}
.ls17{letter-spacing:1.584000px;}
.ls1b{letter-spacing:3.600000px;}
.ls16{letter-spacing:7.200000px;}
.ls14{letter-spacing:11.520000px;}
.lsa{letter-spacing:19.440000px;}
.ls18{letter-spacing:54.840000px;}
.ls1{letter-spacing:66.960000px;}
.ls1a{letter-spacing:70.704000px;}
.ls10{letter-spacing:80.064000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc2{text-shadow:-0.015em 0 rgb(170,170,170),0 0.015em rgb(170,170,170),0.015em 0 rgb(170,170,170),0 -0.015em  rgb(170,170,170);}
.sc0{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(170,170,170);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.ws12{word-spacing:-72.000000px;}
.ws11{word-spacing:-19.584000px;}
.wse{word-spacing:-18.720000px;}
.wsc{word-spacing:-18.648000px;}
.ws14{word-spacing:-18.432000px;}
.ws5{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.712000px;}
.ws10{word-spacing:-17.280000px;}
.ws13{word-spacing:-17.064000px;}
.ws8{word-spacing:-16.369800px;}
.wsd{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.058200px;}
.ws9{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.240000px;}
.wsa{word-spacing:-12.060000px;}
.ws6{word-spacing:0.000000px;}
._a{margin-left:-2.580480px;}
._1{margin-left:-1.427520px;}
._0{width:1.452000px;}
._7{width:2.544000px;}
._f{width:3.612000px;}
._8{width:4.728000px;}
._2{width:5.760000px;}
._3{width:7.378560px;}
._5{width:8.393280px;}
._9{width:9.979200px;}
._14{width:11.044800px;}
._15{width:12.456000px;}
._13{width:14.063520px;}
._b{width:15.240000px;}
._c{width:16.368000px;}
._19{width:17.855520px;}
._12{width:19.152000px;}
._6{width:20.568000px;}
._4{width:22.320000px;}
._1a{width:24.240000px;}
._1b{width:25.848000px;}
._18{width:27.000000px;}
._e{width:28.032000px;}
._d{width:29.136000px;}
._16{width:30.960000px;}
._17{width:32.207520px;}
._1e{width:33.385440px;}
._1c{width:35.496000px;}
._1d{width:36.648000px;}
._2b{width:42.264000px;}
._11{width:50.556000px;}
._30{width:51.624000px;}
._31{width:53.064000px;}
._23{width:55.152000px;}
._24{width:56.567520px;}
._33{width:57.672000px;}
._34{width:59.377920px;}
._32{width:77.688000px;}
._21{width:78.984000px;}
._22{width:80.136000px;}
._26{width:90.131520px;}
._29{width:91.465440px;}
._2e{width:103.248000px;}
._2f{width:104.256000px;}
._2a{width:135.792000px;}
._28{width:158.052000px;}
._27{width:159.336000px;}
._10{width:194.400000px;}
._1f{width:218.160000px;}
._20{width:219.168000px;}
._2c{width:223.416000px;}
._2d{width:224.856000px;}
._25{width:914.675520px;}
.fc6{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(170,170,170);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y71{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y37{bottom:4.140000px;}
.yeb{bottom:4.485000px;}
.y85{bottom:4.500000px;}
.y69{bottom:16.020000px;}
.y83{bottom:20.880000px;}
.y72{bottom:25.185000px;}
.ye4{bottom:25.200000px;}
.y82{bottom:41.580000px;}
.yea{bottom:45.885000px;}
.ye3{bottom:45.900000px;}
.yfe{bottom:45.930000px;}
.yf5{bottom:45.945000px;}
.y35{bottom:46.800000px;}
.ye9{bottom:66.585000px;}
.yf2{bottom:66.600000px;}
.ye8{bottom:87.285000px;}
.yf7{bottom:87.300000px;}
.yfa{bottom:87.330000px;}
.y2f{bottom:89.460000px;}
.ydd{bottom:99.720000px;}
.yf0{bottom:101.160000px;}
.ya2{bottom:102.780000px;}
.y7f{bottom:103.680000px;}
.y2e{bottom:110.160000px;}
.yce{bottom:115.380000px;}
.ydc{bottom:120.420000px;}
.y79{bottom:122.040000px;}
.ya1{bottom:123.480000px;}
.y66{bottom:124.380000px;}
.y2d{bottom:130.860000px;}
.ycd{bottom:136.080000px;}
.ydb{bottom:141.120000px;}
.y78{bottom:142.740000px;}
.ya0{bottom:144.180000px;}
.y65{bottom:145.080000px;}
.yef{bottom:147.060000px;}
.y2c{bottom:151.560000px;}
.ycc{bottom:156.780000px;}
.yda{bottom:161.820000px;}
.y77{bottom:163.440000px;}
.y9f{bottom:164.880000px;}
.y64{bottom:165.780000px;}
.y103{bottom:172.800000px;}
.y2b{bottom:175.140000px;}
.ycb{bottom:177.480000px;}
.yd9{bottom:182.520000px;}
.y76{bottom:184.140000px;}
.y9e{bottom:185.580000px;}
.y63{bottom:186.480000px;}
.yee{bottom:192.960000px;}
.y102{bottom:193.140000px;}
.y2a{bottom:195.840000px;}
.yca{bottom:198.180000px;}
.yd8{bottom:203.220000px;}
.y75{bottom:204.840000px;}
.y9d{bottom:206.280000px;}
.y62{bottom:207.180000px;}
.y101{bottom:212.985000px;}
.yed{bottom:218.205000px;}
.yc9{bottom:218.910000px;}
.y29{bottom:221.430000px;}
.yd7{bottom:223.950000px;}
.y74{bottom:225.570000px;}
.y9c{bottom:227.010000px;}
.y61{bottom:227.910000px;}
.yc8{bottom:239.610000px;}
.yd6{bottom:244.650000px;}
.y73{bottom:246.270000px;}
.y28{bottom:246.990000px;}
.y9b{bottom:247.710000px;}
.y60{bottom:248.610000px;}
.yc7{bottom:260.310000px;}
.y70{bottom:262.485000px;}
.yec{bottom:264.105000px;}
.yd5{bottom:265.350000px;}
.y9a{bottom:268.410000px;}
.y5f{bottom:269.310000px;}
.y27{bottom:272.370000px;}
.y100{bottom:279.585000px;}
.yc6{bottom:281.010000px;}
.yd4{bottom:286.050000px;}
.y99{bottom:289.110000px;}
.y5e{bottom:289.650000px;}
.y7e{bottom:290.010000px;}
.y26{bottom:297.930000px;}
.yc5{bottom:301.710000px;}
.yd3{bottom:306.750000px;}
.y98{bottom:309.810000px;}
.y5d{bottom:310.350000px;}
.y7d{bottom:310.710000px;}
.yc4{bottom:322.410000px;}
.y25{bottom:323.490000px;}
.y6f{bottom:328.890000px;}
.y97{bottom:330.510000px;}
.y5c{bottom:331.410000px;}
.yc3{bottom:343.110000px;}
.yff{bottom:346.185000px;}
.y24{bottom:348.870000px;}
.yd2{bottom:349.410000px;}
.y6e{bottom:349.590000px;}
.y96{bottom:351.210000px;}
.ye7{bottom:351.405000px;}
.y5b{bottom:352.110000px;}
.yc2{bottom:363.630000px;}
.y6d{bottom:370.290000px;}
.yd1{bottom:371.550000px;}
.y95{bottom:371.910000px;}
.y5a{bottom:372.810000px;}
.y23{bottom:374.430000px;}
.yc1{bottom:385.770000px;}
.y6c{bottom:390.990000px;}
.yd0{bottom:392.250000px;}
.y94{bottom:392.610000px;}
.y59{bottom:393.510000px;}
.y22{bottom:399.990000px;}
.yc0{bottom:406.470000px;}
.y6b{bottom:411.690000px;}
.ycf{bottom:412.770000px;}
.yfd{bottom:412.785000px;}
.y93{bottom:413.310000px;}
.y58{bottom:414.210000px;}
.y21{bottom:425.370000px;}
.ybf{bottom:427.170000px;}
.y6a{bottom:432.390000px;}
.y92{bottom:433.650000px;}
.y57{bottom:434.910000px;}
.ybe{bottom:447.735000px;}
.y68{bottom:448.635000px;}
.y20{bottom:450.975000px;}
.y91{bottom:454.395000px;}
.y56{bottom:455.655000px;}
.ye6{bottom:459.435000px;}
.ybd{bottom:469.695000px;}
.y90{bottom:475.455000px;}
.y55{bottom:476.355000px;}
.y1f{bottom:476.535000px;}
.yfc{bottom:479.415000px;}
.ybc{bottom:491.835000px;}
.y8f{bottom:496.155000px;}
.y54{bottom:497.055000px;}
.y1e{bottom:501.915000px;}
.ye5{bottom:505.335000px;}
.ybb{bottom:512.535000px;}
.y8e{bottom:516.855000px;}
.y53{bottom:517.755000px;}
.yfb{bottom:525.315000px;}
.y1d{bottom:527.475000px;}
.yba{bottom:533.235000px;}
.y8d{bottom:537.555000px;}
.y52{bottom:538.455000px;}
.ye2{bottom:551.235000px;}
.y1c{bottom:553.035000px;}
.yb9{bottom:553.935000px;}
.y8c{bottom:558.255000px;}
.y51{bottom:559.155000px;}
.yb8{bottom:574.635000px;}
.y1b{bottom:578.415000px;}
.y8b{bottom:578.955000px;}
.y50{bottom:579.855000px;}
.yb7{bottom:595.335000px;}
.y8a{bottom:599.655000px;}
.y4f{bottom:600.555000px;}
.y1a{bottom:603.975000px;}
.yf9{bottom:612.615000px;}
.yb6{bottom:616.035000px;}
.y89{bottom:616.575000px;}
.ye1{bottom:620.895000px;}
.y4e{bottom:621.255000px;}
.y19{bottom:629.535000px;}
.yb5{bottom:636.735000px;}
.y88{bottom:637.995000px;}
.ye0{bottom:641.595000px;}
.y4d{bottom:641.955000px;}
.yb4{bottom:657.435000px;}
.y87{bottom:659.415000px;}
.y7c{bottom:662.295000px;}
.y4c{bottom:662.655000px;}
.y18{bottom:678.135000px;}
.y86{bottom:680.865000px;}
.y7b{bottom:683.025000px;}
.y4b{bottom:683.385000px;}
.yb3{bottom:698.865000px;}
.y17{bottom:699.045000px;}
.y84{bottom:702.465000px;}
.y7a{bottom:703.725000px;}
.y4a{bottom:704.085000px;}
.yb2{bottom:719.565000px;}
.y16{bottom:719.745000px;}
.yf8{bottom:720.645000px;}
.y81{bottom:723.885000px;}
.ydf{bottom:724.425000px;}
.y49{bottom:724.785000px;}
.yb1{bottom:740.265000px;}
.y15{bottom:740.445000px;}
.yde{bottom:745.125000px;}
.y48{bottom:745.485000px;}
.yb0{bottom:760.965000px;}
.y14{bottom:761.145000px;}
.y47{bottom:766.185000px;}
.yf6{bottom:766.545000px;}
.y13{bottom:781.485000px;}
.yaf{bottom:781.665000px;}
.y46{bottom:786.885000px;}
.yae{bottom:802.365000px;}
.y12{bottom:802.545000px;}
.y45{bottom:807.585000px;}
.yad{bottom:823.065000px;}
.y80{bottom:827.925000px;}
.y44{bottom:828.285000px;}
.y11{bottom:830.085000px;}
.yac{bottom:843.585000px;}
.y10{bottom:843.945000px;}
.y43{bottom:848.985000px;}
.yab{bottom:865.725000px;}
.y42{bottom:869.685000px;}
.yf{bottom:871.485000px;}
.yf4{bottom:874.545000px;}
.ye{bottom:885.345000px;}
.yaa{bottom:886.425000px;}
.y41{bottom:890.385000px;}
.ya9{bottom:907.125000px;}
.y40{bottom:911.085000px;}
.yd{bottom:912.885000px;}
.yc{bottom:926.430000px;}
.ya8{bottom:927.870000px;}
.y3f{bottom:931.830000px;}
.yf3{bottom:941.190000px;}
.yb{bottom:947.130000px;}
.ya7{bottom:948.390000px;}
.y3e{bottom:952.530000px;}
.ya{bottom:967.830000px;}
.ya6{bottom:970.530000px;}
.y3d{bottom:973.230000px;}
.y9{bottom:989.070000px;}
.ya5{bottom:991.230000px;}
.y3c{bottom:993.930000px;}
.yf1{bottom:1007.790000px;}
.ya4{bottom:1011.750000px;}
.y8{bottom:1013.190000px;}
.y3b{bottom:1014.630000px;}
.ya3{bottom:1033.890000px;}
.y3a{bottom:1035.330000px;}
.y7{bottom:1037.130000px;}
.y39{bottom:1056.030000px;}
.y6{bottom:1057.830000px;}
.y38{bottom:1076.370000px;}
.y67{bottom:1076.730000px;}
.y5{bottom:1078.530000px;}
.y34{bottom:1097.250000px;}
.y4{bottom:1099.230000px;}
.y3{bottom:1119.570000px;}
.y33{bottom:1122.810000px;}
.y2{bottom:1140.270000px;}
.y32{bottom:1147.290000px;}
.y1{bottom:1161.720000px;}
.y31{bottom:1166.220000px;}
.y36{bottom:1172.880000px;}
.y30{bottom:1184.580000px;}
.h14{height:20.685000px;}
.h13{height:20.700000px;}
.h19{height:20.736000px;}
.ha{height:25.560000px;}
.h16{height:41.385000px;}
.h1a{height:41.400000px;}
.h8{height:41.639414px;}
.he{height:43.905000px;}
.hd{height:43.915500px;}
.h9{height:46.154531px;}
.h7{height:47.344922px;}
.h2{height:50.167969px;}
.h11{height:51.679688px;}
.h12{height:57.780000px;}
.h10{height:61.905000px;}
.hf{height:61.911000px;}
.h15{height:62.085000px;}
.h1e{height:62.121000px;}
.h1b{height:62.122500px;}
.h4{height:70.628906px;}
.h5{height:70.664062px;}
.h3{height:72.562500px;}
.hc{height:74.004654px;}
.hb{height:74.704922px;}
.h18{height:82.785000px;}
.h6{height:84.898125px;}
.h1c{height:103.500000px;}
.h17{height:103.521000px;}
.h1d{height:103.530000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:18.000000px;}
.w8{width:24.651000px;}
.w4{width:47.520000px;}
.w7{width:184.155000px;}
.w5{width:184.161000px;}
.w6{width:184.170000px;}
.w3{width:686.475000px;}
.w9{width:698.715000px;}
.w1{width:893.250000px;}
.w0{width:893.520000px;}
.x0{left:0.000000px;}
.x22{left:1.071000px;}
.xd{left:5.220000px;}
.x16{left:9.360000px;}
.x14{left:12.765000px;}
.x12{left:18.000000px;}
.x17{left:43.560000px;}
.x18{left:50.211000px;}
.x10{left:56.871000px;}
.x1c{left:75.405000px;}
.xf{left:77.445000px;}
.x1a{left:78.480000px;}
.xa{left:79.785000px;}
.x1b{left:82.980000px;}
.x2{left:84.996000px;}
.x19{left:87.480000px;}
.x1{left:106.236000px;}
.x21{left:114.345000px;}
.x3{left:127.476000px;}
.x1d{left:133.236000px;}
.x1e{left:137.916000px;}
.x20{left:138.996000px;}
.x9{left:160.230000px;}
.x1f{left:164.910000px;}
.x11{left:262.335000px;}
.x4{left:308.055000px;}
.x5{left:392.295000px;}
.x6{left:400.785000px;}
.xb{left:427.560000px;}
.xe{left:428.640000px;}
.x13{left:447.240000px;}
.x15{left:632.130000px;}
.xc{left:766.260000px;}
.x8{left:790.560000px;}
.x7{left:808.560000px;}
@media print{
.v3{vertical-align:-83.200000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:24.320000pt;}
.lsf{letter-spacing:-1.920000pt;}
.ls19{letter-spacing:-0.832000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.169067pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.105067pt;}
.ls8{letter-spacing:0.106880pt;}
.ls5{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.157333pt;}
.ls4{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.576000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls12{letter-spacing:1.024000pt;}
.ls17{letter-spacing:1.408000pt;}
.ls1b{letter-spacing:3.200000pt;}
.ls16{letter-spacing:6.400000pt;}
.ls14{letter-spacing:10.240000pt;}
.lsa{letter-spacing:17.280000pt;}
.ls18{letter-spacing:48.746667pt;}
.ls1{letter-spacing:59.520000pt;}
.ls1a{letter-spacing:62.848000pt;}
.ls10{letter-spacing:71.168000pt;}
.ws12{word-spacing:-64.000000pt;}
.ws11{word-spacing:-17.408000pt;}
.wse{word-spacing:-16.640000pt;}
.wsc{word-spacing:-16.576000pt;}
.ws14{word-spacing:-16.384000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws10{word-spacing:-15.360000pt;}
.ws13{word-spacing:-15.168000pt;}
.ws8{word-spacing:-14.550933pt;}
.wsd{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.385067pt;}
.ws9{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.880000pt;}
.wsa{word-spacing:-10.720000pt;}
.ws6{word-spacing:0.000000pt;}
._a{margin-left:-2.293760pt;}
._1{margin-left:-1.268907pt;}
._0{width:1.290667pt;}
._7{width:2.261333pt;}
._f{width:3.210667pt;}
._8{width:4.202667pt;}
._2{width:5.120000pt;}
._3{width:6.558720pt;}
._5{width:7.460693pt;}
._9{width:8.870400pt;}
._14{width:9.817600pt;}
._15{width:11.072000pt;}
._13{width:12.500907pt;}
._b{width:13.546667pt;}
._c{width:14.549333pt;}
._19{width:15.871573pt;}
._12{width:17.024000pt;}
._6{width:18.282667pt;}
._4{width:19.840000pt;}
._1a{width:21.546667pt;}
._1b{width:22.976000pt;}
._18{width:24.000000pt;}
._e{width:24.917333pt;}
._d{width:25.898667pt;}
._16{width:27.520000pt;}
._17{width:28.628907pt;}
._1e{width:29.675947pt;}
._1c{width:31.552000pt;}
._1d{width:32.576000pt;}
._2b{width:37.568000pt;}
._11{width:44.938667pt;}
._30{width:45.888000pt;}
._31{width:47.168000pt;}
._23{width:49.024000pt;}
._24{width:50.282240pt;}
._33{width:51.264000pt;}
._34{width:52.780373pt;}
._32{width:69.056000pt;}
._21{width:70.208000pt;}
._22{width:71.232000pt;}
._26{width:80.116907pt;}
._29{width:81.302613pt;}
._2e{width:91.776000pt;}
._2f{width:92.672000pt;}
._2a{width:120.704000pt;}
._28{width:140.490667pt;}
._27{width:141.632000pt;}
._10{width:172.800000pt;}
._1f{width:193.920000pt;}
._20{width:194.816000pt;}
._2c{width:198.592000pt;}
._2d{width:199.872000pt;}
._25{width:813.044907pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y71{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:3.680000pt;}
.yeb{bottom:3.986667pt;}
.y85{bottom:4.000000pt;}
.y69{bottom:14.240000pt;}
.y83{bottom:18.560000pt;}
.y72{bottom:22.386667pt;}
.ye4{bottom:22.400000pt;}
.y82{bottom:36.960000pt;}
.yea{bottom:40.786667pt;}
.ye3{bottom:40.800000pt;}
.yfe{bottom:40.826667pt;}
.yf5{bottom:40.840000pt;}
.y35{bottom:41.600000pt;}
.ye9{bottom:59.186667pt;}
.yf2{bottom:59.200000pt;}
.ye8{bottom:77.586667pt;}
.yf7{bottom:77.600000pt;}
.yfa{bottom:77.626667pt;}
.y2f{bottom:79.520000pt;}
.ydd{bottom:88.640000pt;}
.yf0{bottom:89.920000pt;}
.ya2{bottom:91.360000pt;}
.y7f{bottom:92.160000pt;}
.y2e{bottom:97.920000pt;}
.yce{bottom:102.560000pt;}
.ydc{bottom:107.040000pt;}
.y79{bottom:108.480000pt;}
.ya1{bottom:109.760000pt;}
.y66{bottom:110.560000pt;}
.y2d{bottom:116.320000pt;}
.ycd{bottom:120.960000pt;}
.ydb{bottom:125.440000pt;}
.y78{bottom:126.880000pt;}
.ya0{bottom:128.160000pt;}
.y65{bottom:128.960000pt;}
.yef{bottom:130.720000pt;}
.y2c{bottom:134.720000pt;}
.ycc{bottom:139.360000pt;}
.yda{bottom:143.840000pt;}
.y77{bottom:145.280000pt;}
.y9f{bottom:146.560000pt;}
.y64{bottom:147.360000pt;}
.y103{bottom:153.600000pt;}
.y2b{bottom:155.680000pt;}
.ycb{bottom:157.760000pt;}
.yd9{bottom:162.240000pt;}
.y76{bottom:163.680000pt;}
.y9e{bottom:164.960000pt;}
.y63{bottom:165.760000pt;}
.yee{bottom:171.520000pt;}
.y102{bottom:171.680000pt;}
.y2a{bottom:174.080000pt;}
.yca{bottom:176.160000pt;}
.yd8{bottom:180.640000pt;}
.y75{bottom:182.080000pt;}
.y9d{bottom:183.360000pt;}
.y62{bottom:184.160000pt;}
.y101{bottom:189.320000pt;}
.yed{bottom:193.960000pt;}
.yc9{bottom:194.586667pt;}
.y29{bottom:196.826667pt;}
.yd7{bottom:199.066667pt;}
.y74{bottom:200.506667pt;}
.y9c{bottom:201.786667pt;}
.y61{bottom:202.586667pt;}
.yc8{bottom:212.986667pt;}
.yd6{bottom:217.466667pt;}
.y73{bottom:218.906667pt;}
.y28{bottom:219.546667pt;}
.y9b{bottom:220.186667pt;}
.y60{bottom:220.986667pt;}
.yc7{bottom:231.386667pt;}
.y70{bottom:233.320000pt;}
.yec{bottom:234.760000pt;}
.yd5{bottom:235.866667pt;}
.y9a{bottom:238.586667pt;}
.y5f{bottom:239.386667pt;}
.y27{bottom:242.106667pt;}
.y100{bottom:248.520000pt;}
.yc6{bottom:249.786667pt;}
.yd4{bottom:254.266667pt;}
.y99{bottom:256.986667pt;}
.y5e{bottom:257.466667pt;}
.y7e{bottom:257.786667pt;}
.y26{bottom:264.826667pt;}
.yc5{bottom:268.186667pt;}
.yd3{bottom:272.666667pt;}
.y98{bottom:275.386667pt;}
.y5d{bottom:275.866667pt;}
.y7d{bottom:276.186667pt;}
.yc4{bottom:286.586667pt;}
.y25{bottom:287.546667pt;}
.y6f{bottom:292.346667pt;}
.y97{bottom:293.786667pt;}
.y5c{bottom:294.586667pt;}
.yc3{bottom:304.986667pt;}
.yff{bottom:307.720000pt;}
.y24{bottom:310.106667pt;}
.yd2{bottom:310.586667pt;}
.y6e{bottom:310.746667pt;}
.y96{bottom:312.186667pt;}
.ye7{bottom:312.360000pt;}
.y5b{bottom:312.986667pt;}
.yc2{bottom:323.226667pt;}
.y6d{bottom:329.146667pt;}
.yd1{bottom:330.266667pt;}
.y95{bottom:330.586667pt;}
.y5a{bottom:331.386667pt;}
.y23{bottom:332.826667pt;}
.yc1{bottom:342.906667pt;}
.y6c{bottom:347.546667pt;}
.yd0{bottom:348.666667pt;}
.y94{bottom:348.986667pt;}
.y59{bottom:349.786667pt;}
.y22{bottom:355.546667pt;}
.yc0{bottom:361.306667pt;}
.y6b{bottom:365.946667pt;}
.ycf{bottom:366.906667pt;}
.yfd{bottom:366.920000pt;}
.y93{bottom:367.386667pt;}
.y58{bottom:368.186667pt;}
.y21{bottom:378.106667pt;}
.ybf{bottom:379.706667pt;}
.y6a{bottom:384.346667pt;}
.y92{bottom:385.466667pt;}
.y57{bottom:386.586667pt;}
.ybe{bottom:397.986667pt;}
.y68{bottom:398.786667pt;}
.y20{bottom:400.866667pt;}
.y91{bottom:403.906667pt;}
.y56{bottom:405.026667pt;}
.ye6{bottom:408.386667pt;}
.ybd{bottom:417.506667pt;}
.y90{bottom:422.626667pt;}
.y55{bottom:423.426667pt;}
.y1f{bottom:423.586667pt;}
.yfc{bottom:426.146667pt;}
.ybc{bottom:437.186667pt;}
.y8f{bottom:441.026667pt;}
.y54{bottom:441.826667pt;}
.y1e{bottom:446.146667pt;}
.ye5{bottom:449.186667pt;}
.ybb{bottom:455.586667pt;}
.y8e{bottom:459.426667pt;}
.y53{bottom:460.226667pt;}
.yfb{bottom:466.946667pt;}
.y1d{bottom:468.866667pt;}
.yba{bottom:473.986667pt;}
.y8d{bottom:477.826667pt;}
.y52{bottom:478.626667pt;}
.ye2{bottom:489.986667pt;}
.y1c{bottom:491.586667pt;}
.yb9{bottom:492.386667pt;}
.y8c{bottom:496.226667pt;}
.y51{bottom:497.026667pt;}
.yb8{bottom:510.786667pt;}
.y1b{bottom:514.146667pt;}
.y8b{bottom:514.626667pt;}
.y50{bottom:515.426667pt;}
.yb7{bottom:529.186667pt;}
.y8a{bottom:533.026667pt;}
.y4f{bottom:533.826667pt;}
.y1a{bottom:536.866667pt;}
.yf9{bottom:544.546667pt;}
.yb6{bottom:547.586667pt;}
.y89{bottom:548.066667pt;}
.ye1{bottom:551.906667pt;}
.y4e{bottom:552.226667pt;}
.y19{bottom:559.586667pt;}
.yb5{bottom:565.986667pt;}
.y88{bottom:567.106667pt;}
.ye0{bottom:570.306667pt;}
.y4d{bottom:570.626667pt;}
.yb4{bottom:584.386667pt;}
.y87{bottom:586.146667pt;}
.y7c{bottom:588.706667pt;}
.y4c{bottom:589.026667pt;}
.y18{bottom:602.786667pt;}
.y86{bottom:605.213333pt;}
.y7b{bottom:607.133333pt;}
.y4b{bottom:607.453333pt;}
.yb3{bottom:621.213333pt;}
.y17{bottom:621.373333pt;}
.y84{bottom:624.413333pt;}
.y7a{bottom:625.533333pt;}
.y4a{bottom:625.853333pt;}
.yb2{bottom:639.613333pt;}
.y16{bottom:639.773333pt;}
.yf8{bottom:640.573333pt;}
.y81{bottom:643.453333pt;}
.ydf{bottom:643.933333pt;}
.y49{bottom:644.253333pt;}
.yb1{bottom:658.013333pt;}
.y15{bottom:658.173333pt;}
.yde{bottom:662.333333pt;}
.y48{bottom:662.653333pt;}
.yb0{bottom:676.413333pt;}
.y14{bottom:676.573333pt;}
.y47{bottom:681.053333pt;}
.yf6{bottom:681.373333pt;}
.y13{bottom:694.653333pt;}
.yaf{bottom:694.813333pt;}
.y46{bottom:699.453333pt;}
.yae{bottom:713.213333pt;}
.y12{bottom:713.373333pt;}
.y45{bottom:717.853333pt;}
.yad{bottom:731.613333pt;}
.y80{bottom:735.933333pt;}
.y44{bottom:736.253333pt;}
.y11{bottom:737.853333pt;}
.yac{bottom:749.853333pt;}
.y10{bottom:750.173333pt;}
.y43{bottom:754.653333pt;}
.yab{bottom:769.533333pt;}
.y42{bottom:773.053333pt;}
.yf{bottom:774.653333pt;}
.yf4{bottom:777.373333pt;}
.ye{bottom:786.973333pt;}
.yaa{bottom:787.933333pt;}
.y41{bottom:791.453333pt;}
.ya9{bottom:806.333333pt;}
.y40{bottom:809.853333pt;}
.yd{bottom:811.453333pt;}
.yc{bottom:823.493333pt;}
.ya8{bottom:824.773333pt;}
.y3f{bottom:828.293333pt;}
.yf3{bottom:836.613333pt;}
.yb{bottom:841.893333pt;}
.ya7{bottom:843.013333pt;}
.y3e{bottom:846.693333pt;}
.ya{bottom:860.293333pt;}
.ya6{bottom:862.693333pt;}
.y3d{bottom:865.093333pt;}
.y9{bottom:879.173333pt;}
.ya5{bottom:881.093333pt;}
.y3c{bottom:883.493333pt;}
.yf1{bottom:895.813333pt;}
.ya4{bottom:899.333333pt;}
.y8{bottom:900.613333pt;}
.y3b{bottom:901.893333pt;}
.ya3{bottom:919.013333pt;}
.y3a{bottom:920.293333pt;}
.y7{bottom:921.893333pt;}
.y39{bottom:938.693333pt;}
.y6{bottom:940.293333pt;}
.y38{bottom:956.773333pt;}
.y67{bottom:957.093333pt;}
.y5{bottom:958.693333pt;}
.y34{bottom:975.333333pt;}
.y4{bottom:977.093333pt;}
.y3{bottom:995.173333pt;}
.y33{bottom:998.053333pt;}
.y2{bottom:1013.573333pt;}
.y32{bottom:1019.813333pt;}
.y1{bottom:1032.640000pt;}
.y31{bottom:1036.640000pt;}
.y36{bottom:1042.560000pt;}
.y30{bottom:1052.960000pt;}
.h14{height:18.386667pt;}
.h13{height:18.400000pt;}
.h19{height:18.432000pt;}
.ha{height:22.720000pt;}
.h16{height:36.786667pt;}
.h1a{height:36.800000pt;}
.h8{height:37.012813pt;}
.he{height:39.026667pt;}
.hd{height:39.036000pt;}
.h9{height:41.026250pt;}
.h7{height:42.084375pt;}
.h2{height:44.593750pt;}
.h11{height:45.937500pt;}
.h12{height:51.360000pt;}
.h10{height:55.026667pt;}
.hf{height:55.032000pt;}
.h15{height:55.186667pt;}
.h1e{height:55.218667pt;}
.h1b{height:55.220000pt;}
.h4{height:62.781250pt;}
.h5{height:62.812500pt;}
.h3{height:64.500000pt;}
.hc{height:65.781915pt;}
.hb{height:66.404375pt;}
.h18{height:73.586667pt;}
.h6{height:75.465000pt;}
.h1c{height:92.000000pt;}
.h17{height:92.018667pt;}
.h1d{height:92.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:16.000000pt;}
.w8{width:21.912000pt;}
.w4{width:42.240000pt;}
.w7{width:163.693333pt;}
.w5{width:163.698667pt;}
.w6{width:163.706667pt;}
.w3{width:610.200000pt;}
.w9{width:621.080000pt;}
.w1{width:794.000000pt;}
.w0{width:794.240000pt;}
.x0{left:0.000000pt;}
.x22{left:0.952000pt;}
.xd{left:4.640000pt;}
.x16{left:8.320000pt;}
.x14{left:11.346667pt;}
.x12{left:16.000000pt;}
.x17{left:38.720000pt;}
.x18{left:44.632000pt;}
.x10{left:50.552000pt;}
.x1c{left:67.026667pt;}
.xf{left:68.840000pt;}
.x1a{left:69.760000pt;}
.xa{left:70.920000pt;}
.x1b{left:73.760000pt;}
.x2{left:75.552000pt;}
.x19{left:77.760000pt;}
.x1{left:94.432000pt;}
.x21{left:101.640000pt;}
.x3{left:113.312000pt;}
.x1d{left:118.432000pt;}
.x1e{left:122.592000pt;}
.x20{left:123.552000pt;}
.x9{left:142.426667pt;}
.x1f{left:146.586667pt;}
.x11{left:233.186667pt;}
.x4{left:273.826667pt;}
.x5{left:348.706667pt;}
.x6{left:356.253333pt;}
.xb{left:380.053333pt;}
.xe{left:381.013333pt;}
.x13{left:397.546667pt;}
.x15{left:561.893333pt;}
.xc{left:681.120000pt;}
.x8{left:702.720000pt;}
.x7{left:718.720000pt;}
}




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