
    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_538500c0fe44c459131da433.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_5b60c2a35345b0ee728b8d84.woff')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_a22ca35aafe02f905a067a24.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_7712eab9ceae0db28d525801.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_79622d04711d4c7f307a9d85.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_66174f32302b5f7e58ce5942.woff')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;}
.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);}
.v1{vertical-align:-15.120000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls28{letter-spacing:-0.513600px;}
.ls24{letter-spacing:-0.391800px;}
.ls1d{letter-spacing:-0.298800px;}
.ls29{letter-spacing:-0.291600px;}
.ls8{letter-spacing:-0.186600px;}
.ls26{letter-spacing:-0.178800px;}
.lsd{letter-spacing:-0.162000px;}
.ls1a{letter-spacing:-0.153600px;}
.ls6{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls23{letter-spacing:-0.094800px;}
.ls5{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.084600px;}
.ls19{letter-spacing:-0.040320px;}
.ls17{letter-spacing:-0.038880px;}
.ls18{letter-spacing:-0.037800px;}
.ls25{letter-spacing:-0.031680px;}
.ls10{letter-spacing:-0.013320px;}
.ls16{letter-spacing:-0.009000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.051840px;}
.ls13{letter-spacing:0.060600px;}
.ls11{letter-spacing:0.074400px;}
.ls1e{letter-spacing:0.075000px;}
.ls1{letter-spacing:0.090000px;}
.ls15{letter-spacing:0.103200px;}
.lsa{letter-spacing:0.113400px;}
.ls20{letter-spacing:0.116400px;}
.lsc{letter-spacing:0.127200px;}
.ls2{letter-spacing:0.134760px;}
.ls4{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.162000px;}
.ls9{letter-spacing:0.173400px;}
.ls1b{letter-spacing:0.173520px;}
.ls27{letter-spacing:0.181200px;}
.ls1c{letter-spacing:0.405000px;}
.ls22{letter-spacing:2.613600px;}
.ls0{letter-spacing:13.347360px;}
.ls21{letter-spacing:47.726640px;}
.ls1f{letter-spacing:80.846640px;}
.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;}
}
.ws7{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws1a{word-spacing:-13.407600px;}
.ws4{word-spacing:-13.399800px;}
.ws8{word-spacing:-13.353600px;}
.ws5{word-spacing:-13.339800px;}
.wsf{word-spacing:-13.329600px;}
.wse{word-spacing:-13.300800px;}
.ws13{word-spacing:-13.287000px;}
.ws10{word-spacing:-13.278240px;}
.wsc{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.217400px;}
.wsd{word-spacing:-13.213080px;}
.ws14{word-spacing:-13.188600px;}
.ws12{word-spacing:-13.187520px;}
.ws16{word-spacing:-13.072800px;}
.ws9{word-spacing:-13.064400px;}
.ws19{word-spacing:-13.047600px;}
.ws3{word-spacing:-13.039800px;}
.ws17{word-spacing:-12.927600px;}
.ws1b{word-spacing:-12.712800px;}
.ws15{word-spacing:-10.695600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws18{word-spacing:-8.458800px;}
.wsa{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._f{margin-left:-4.362378px;}
._4{margin-left:-3.313195px;}
._3{margin-left:-2.284800px;}
._0{margin-left:-1.110000px;}
._2{width:1.090272px;}
._1{width:2.097000px;}
._8{width:3.525720px;}
._7{width:4.582080px;}
._b{width:6.119280px;}
._5{width:7.815600px;}
._6{width:8.965248px;}
._9{width:10.160280px;}
._a{width:11.724240px;}
._11{width:14.570040px;}
._10{width:15.571080px;}
._c{width:18.877680px;}
._d{width:20.741400px;}
._e{width:23.287680px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:6.300000px;}
.y7d{bottom:6.390000px;}
.ya2{bottom:7.830000px;}
.ya5{bottom:7.860000px;}
.ya8{bottom:7.920000px;}
.y104{bottom:8.460000px;}
.y6d{bottom:9.270000px;}
.yab{bottom:15.300000px;}
.y78{bottom:23.850000px;}
.y77{bottom:23.940000px;}
.ya1{bottom:25.380000px;}
.ya4{bottom:25.410000px;}
.ya7{bottom:25.470000px;}
.y103{bottom:26.040000px;}
.y6e{bottom:26.910000px;}
.y6c{bottom:27.000000px;}
.y6b{bottom:44.550000px;}
.y102{bottom:48.180000px;}
.y101{bottom:65.730000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y100{bottom:83.280000px;}
.y1{bottom:100.200000px;}
.yff{bottom:105.420000px;}
.y9d{bottom:112.530000px;}
.yb7{bottom:124.860000px;}
.y5d{bottom:128.010000px;}
.y9c{bottom:130.080000px;}
.y53{bottom:133.500000px;}
.yfd{bottom:134.220000px;}
.yb6{bottom:142.410000px;}
.y8a{bottom:143.580000px;}
.y5c{bottom:145.560000px;}
.y52{bottom:151.050000px;}
.y89{bottom:157.710000px;}
.yfc{bottom:160.770000px;}
.y9b{bottom:162.300000px;}
.y51{bottom:168.600000px;}
.y88{bottom:169.860000px;}
.yb5{bottom:174.630000px;}
.y25{bottom:177.240000px;}
.y5b{bottom:177.780000px;}
.yfb{bottom:178.320000px;}
.yd4{bottom:182.640000px;}
.y50{bottom:186.240000px;}
.y87{bottom:194.250000px;}
.y24{bottom:194.790000px;}
.yd3{bottom:200.280000px;}
.yfa{bottom:204.960000px;}
.y23{bottom:212.340000px;}
.yd2{bottom:217.830000px;}
.y86{bottom:218.550000px;}
.y4f{bottom:221.790000px;}
.yf9{bottom:222.510000px;}
.y22{bottom:229.980000px;}
.yd1{bottom:235.380000px;}
.y4e{bottom:239.430000px;}
.y85{bottom:242.850000px;}
.y21{bottom:247.530000px;}
.yf8{bottom:249.150000px;}
.yd0{bottom:253.020000px;}
.y4d{bottom:256.980000px;}
.y20{bottom:265.170000px;}
.yf7{bottom:266.700000px;}
.y84{bottom:267.240000px;}
.ycf{bottom:270.570000px;}
.y4c{bottom:274.530000px;}
.y1f{bottom:282.720000px;}
.yf6{bottom:284.250000px;}
.yce{bottom:288.210000px;}
.y83{bottom:291.540000px;}
.y4b{bottom:292.170000px;}
.ycd{bottom:305.760000px;}
.y4a{bottom:309.720000px;}
.yf5{bottom:310.890000px;}
.y82{bottom:315.840000px;}
.y1e{bottom:318.270000px;}
.ycc{bottom:323.310000px;}
.y49{bottom:327.360000px;}
.yf4{bottom:328.440000px;}
.y1d{bottom:335.910000px;}
.y81{bottom:340.230000px;}
.ycb{bottom:340.950000px;}
.y1c{bottom:353.460000px;}
.yf3{bottom:355.080000px;}
.yca{bottom:358.500000px;}
.y48{bottom:362.910000px;}
.y80{bottom:364.530000px;}
.y1b{bottom:371.100000px;}
.yf2{bottom:372.630000px;}
.y47{bottom:380.460000px;}
.yc9{bottom:385.410000px;}
.y7f{bottom:388.920000px;}
.yf1{bottom:390.180000px;}
.y46{bottom:398.100000px;}
.y1a{bottom:406.650000px;}
.y7e{bottom:413.220000px;}
.y45{bottom:415.650000px;}
.yf0{bottom:416.820000px;}
.y19{bottom:424.200000px;}
.y9a{bottom:424.470000px;}
.y44{bottom:433.200000px;}
.yc8{bottom:433.740000px;}
.yef{bottom:434.370000px;}
.y7c{bottom:437.520000px;}
.y18{bottom:441.840000px;}
.y5a{bottom:444.360000px;}
.y43{bottom:450.840000px;}
.yc7{bottom:451.290000px;}
.y17{bottom:459.390000px;}
.y99{bottom:460.020000px;}
.yee{bottom:461.010000px;}
.y7b{bottom:461.910000px;}
.y59{bottom:476.610000px;}
.y16{bottom:477.060000px;}
.y42{bottom:477.420000px;}
.y98{bottom:477.690000px;}
.yed{bottom:478.590000px;}
.y7a{bottom:486.240000px;}
.yc6{bottom:486.870000px;}
.y15{bottom:494.610000px;}
.y97{bottom:495.240000px;}
.yec{bottom:496.140000px;}
.yc5{bottom:504.510000px;}
.y41{bottom:513.060000px;}
.y14{bottom:521.520000px;}
.yeb{bottom:522.780000px;}
.y79{bottom:528.180000px;}
.y96{bottom:530.790000px;}
.yc4{bottom:537.450000px;}
.yea{bottom:540.330000px;}
.y95{bottom:548.430000px;}
.y40{bottom:548.610000px;}
.y94{bottom:565.980000px;}
.y3f{bottom:566.160000px;}
.ye9{bottom:566.880000px;}
.y13{bottom:570.120000px;}
.yc3{bottom:582.360000px;}
.y93{bottom:583.530000px;}
.y3e{bottom:583.800000px;}
.ye8{bottom:584.520000px;}
.yb4{bottom:598.740000px;}
.y92{bottom:601.170000px;}
.y3d{bottom:601.350000px;}
.ye7{bottom:602.070000px;}
.y12{bottom:607.110000px;}
.y76{bottom:612.060000px;}
.yb3{bottom:616.380000px;}
.y91{bottom:618.720000px;}
.y3c{bottom:618.990000px;}
.y11{bottom:624.750000px;}
.yc2{bottom:627.270000px;}
.ye6{bottom:628.710000px;}
.yb2{bottom:633.930000px;}
.y75{bottom:636.360000px;}
.y3b{bottom:636.540000px;}
.y10{bottom:642.300000px;}
.ye5{bottom:646.260000px;}
.yb1{bottom:651.570000px;}
.y3a{bottom:654.090000px;}
.y90{bottom:654.360000px;}
.yf{bottom:659.850000px;}
.y74{bottom:660.660000px;}
.y39{bottom:671.730000px;}
.y8f{bottom:671.910000px;}
.ye4{bottom:672.810000px;}
.ye{bottom:677.490000px;}
.y73{bottom:685.050000px;}
.yb0{bottom:686.400000px;}
.y38{bottom:689.280000px;}
.ye3{bottom:690.450000px;}
.yc1{bottom:693.600000px;}
.yd{bottom:695.040000px;}
.yaf{bottom:698.550000px;}
.y58{bottom:702.780000px;}
.y8e{bottom:704.130000px;}
.y72{bottom:709.350000px;}
.yc0{bottom:711.150000px;}
.yc{bottom:712.680000px;}
.y37{bottom:715.920000px;}
.ye2{bottom:717.000000px;}
.ybf{bottom:728.790000px;}
.yb{bottom:730.230000px;}
.y71{bottom:733.740000px;}
.ye1{bottom:734.640000px;}
.y57{bottom:738.330000px;}
.yae{bottom:743.460000px;}
.y36{bottom:751.830000px;}
.ye0{bottom:752.190000px;}
.y56{bottom:755.970000px;}
.ya{bottom:757.140000px;}
.y70{bottom:758.040000px;}
.ybe{bottom:764.340000px;}
.ydf{bottom:779.100000px;}
.ybd{bottom:781.890000px;}
.y6a{bottom:782.340000px;}
.y55{bottom:788.190000px;}
.yad{bottom:788.370000px;}
.ybc{bottom:799.530000px;}
.y35{bottom:800.070000px;}
.y9{bottom:805.380000px;}
.ybb{bottom:817.080000px;}
.yde{bottom:827.340000px;}
.yac{bottom:833.370000px;}
.y34{bottom:835.620000px;}
.y8{bottom:841.200000px;}
.yba{bottom:852.720000px;}
.y33{bottom:853.260000px;}
.ydd{bottom:854.250000px;}
.y69{bottom:866.220000px;}
.yb9{bottom:870.270000px;}
.y32{bottom:870.810000px;}
.y7{bottom:877.200000px;}
.yaa{bottom:878.280000px;}
.ydc{bottom:891.330000px;}
.y68{bottom:901.860000px;}
.yb8{bottom:902.490000px;}
.y31{bottom:906.450000px;}
.ydb{bottom:908.880000px;}
.ya9{bottom:913.020000px;}
.y6{bottom:913.200000px;}
.y67{bottom:919.410000px;}
.y30{bottom:924.000000px;}
.y66{bottom:936.960000px;}
.y2f{bottom:941.550000px;}
.yda{bottom:944.790000px;}
.y5{bottom:949.290000px;}
.ya6{bottom:957.930000px;}
.y65{bottom:972.600000px;}
.y8d{bottom:972.960000px;}
.y105{bottom:975.030000px;}
.y2e{bottom:977.190000px;}
.yd9{bottom:981.780000px;}
.y4{bottom:987.630000px;}
.yfe{bottom:990.060000px;}
.y64{bottom:990.150000px;}
.y8c{bottom:990.600000px;}
.y2d{bottom:994.740000px;}
.ya3{bottom:1002.930000px;}
.y8b{bottom:1008.150000px;}
.yd8{bottom:1008.690000px;}
.y3{bottom:1012.320000px;}
.y63{bottom:1025.820000px;}
.y2c{bottom:1029.960000px;}
.y62{bottom:1043.370000px;}
.yd7{bottom:1045.800000px;}
.y2b{bottom:1047.510000px;}
.ya0{bottom:1047.870000px;}
.y61{bottom:1060.920000px;}
.yd6{bottom:1063.350000px;}
.y60{bottom:1078.560000px;}
.y2a{bottom:1083.150000px;}
.yd5{bottom:1090.260000px;}
.y5f{bottom:1096.110000px;}
.y29{bottom:1100.700000px;}
.y9f{bottom:1105.110000px;}
.y5e{bottom:1113.750000px;}
.y9e{bottom:1122.750000px;}
.y28{bottom:1127.610000px;}
.y54{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.hc{height:23.580000px;}
.hf{height:23.610000px;}
.h10{height:23.670000px;}
.h2{height:32.918906px;}
.h15{height:34.020000px;}
.h3{height:39.155273px;}
.hd{height:41.130000px;}
.he{height:41.220000px;}
.h11{height:41.661211px;}
.h12{height:44.100000px;}
.h13{height:44.130000px;}
.h14{height:44.190000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h16{height:61.793886px;}
.hb{height:61.830000px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h17{height:124.140000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:110.970000px;}
.w4{width:113.130000px;}
.w9{width:113.850000px;}
.wd{width:124.650000px;}
.w3{width:152.490000px;}
.wc{width:154.470000px;}
.wb{width:183.060000px;}
.w6{width:187.590000px;}
.w7{width:188.460000px;}
.wa{width:213.150000px;}
.wf{width:217.620000px;}
.w8{width:243.390000px;}
.we{width:256.620000px;}
.w10{width:754.620000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.x1{left:68.040000px;}
.x5{left:71.549987px;}
.x18{left:73.619987px;}
.x22{left:75.239987px;}
.x12{left:77.579987px;}
.x1f{left:80.009987px;}
.x15{left:82.349987px;}
.xb{left:85.589987px;}
.x27{left:111.239987px;}
.x6{left:180.569987px;}
.x2{left:192.719987px;}
.x1d{left:200.189987px;}
.x16{left:203.339987px;}
.x9{left:220.529987px;}
.xe{left:222.060000px;}
.x24{left:223.950000px;}
.xc{left:233.489987px;}
.x19{left:249.419987px;}
.x1a{left:312.960000px;}
.xf{left:336.000000px;}
.x25{left:349.410000px;}
.x13{left:370.109987px;}
.x23{left:391.619987px;}
.x1b{left:427.530000px;}
.x20{left:435.899987px;}
.x7{left:446.609987px;}
.x10{left:447.690000px;}
.x26{left:606.840000px;}
.x11{left:636.000000px;}
.x1c{left:641.400000px;}
.x4{left:756.059987px;}
.x8{left:762.809987px;}
.x17{left:767.309987px;}
.xa{left:772.889987px;}
.x21{left:775.139987px;}
.x14{left:777.389987px;}
.x3{left:800.339987px;}
.x1e{left:802.139987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls28{letter-spacing:-0.456533pt;}
.ls24{letter-spacing:-0.348267pt;}
.ls1d{letter-spacing:-0.265600pt;}
.ls29{letter-spacing:-0.259200pt;}
.ls8{letter-spacing:-0.165867pt;}
.ls26{letter-spacing:-0.158933pt;}
.lsd{letter-spacing:-0.144000pt;}
.ls1a{letter-spacing:-0.136533pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls23{letter-spacing:-0.084267pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.075200pt;}
.ls19{letter-spacing:-0.035840pt;}
.ls17{letter-spacing:-0.034560pt;}
.ls18{letter-spacing:-0.033600pt;}
.ls25{letter-spacing:-0.028160pt;}
.ls10{letter-spacing:-0.011840pt;}
.ls16{letter-spacing:-0.008000pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.046080pt;}
.ls13{letter-spacing:0.053867pt;}
.ls11{letter-spacing:0.066133pt;}
.ls1e{letter-spacing:0.066667pt;}
.ls1{letter-spacing:0.080000pt;}
.ls15{letter-spacing:0.091733pt;}
.lsa{letter-spacing:0.100800pt;}
.ls20{letter-spacing:0.103467pt;}
.lsc{letter-spacing:0.113067pt;}
.ls2{letter-spacing:0.119787pt;}
.ls4{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.144000pt;}
.ls9{letter-spacing:0.154133pt;}
.ls1b{letter-spacing:0.154240pt;}
.ls27{letter-spacing:0.161067pt;}
.ls1c{letter-spacing:0.360000pt;}
.ls22{letter-spacing:2.323200pt;}
.ls0{letter-spacing:11.864320pt;}
.ls21{letter-spacing:42.423680pt;}
.ls1f{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws1a{word-spacing:-11.917867pt;}
.ws4{word-spacing:-11.910933pt;}
.ws8{word-spacing:-11.869867pt;}
.ws5{word-spacing:-11.857600pt;}
.wsf{word-spacing:-11.848533pt;}
.wse{word-spacing:-11.822933pt;}
.ws13{word-spacing:-11.810667pt;}
.ws10{word-spacing:-11.802880pt;}
.wsc{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.748800pt;}
.wsd{word-spacing:-11.744960pt;}
.ws14{word-spacing:-11.723200pt;}
.ws12{word-spacing:-11.722240pt;}
.ws16{word-spacing:-11.620267pt;}
.ws9{word-spacing:-11.612800pt;}
.ws19{word-spacing:-11.597867pt;}
.ws3{word-spacing:-11.590933pt;}
.ws17{word-spacing:-11.491200pt;}
.ws1b{word-spacing:-11.300267pt;}
.ws15{word-spacing:-9.507200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws18{word-spacing:-7.518933pt;}
.wsa{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._f{margin-left:-3.877670pt;}
._4{margin-left:-2.945063pt;}
._3{margin-left:-2.030934pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.969131pt;}
._1{width:1.864000pt;}
._8{width:3.133974pt;}
._7{width:4.072960pt;}
._b{width:5.439360pt;}
._5{width:6.947200pt;}
._6{width:7.969109pt;}
._9{width:9.031360pt;}
._a{width:10.421547pt;}
._11{width:12.951147pt;}
._10{width:13.840960pt;}
._c{width:16.780160pt;}
._d{width:18.436800pt;}
._e{width:20.700160pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:5.600000pt;}
.y7d{bottom:5.680000pt;}
.ya2{bottom:6.960000pt;}
.ya5{bottom:6.986667pt;}
.ya8{bottom:7.040000pt;}
.y104{bottom:7.520000pt;}
.y6d{bottom:8.240000pt;}
.yab{bottom:13.600000pt;}
.y78{bottom:21.200000pt;}
.y77{bottom:21.280000pt;}
.ya1{bottom:22.560000pt;}
.ya4{bottom:22.586667pt;}
.ya7{bottom:22.640000pt;}
.y103{bottom:23.146667pt;}
.y6e{bottom:23.920000pt;}
.y6c{bottom:24.000000pt;}
.y6b{bottom:39.600000pt;}
.y102{bottom:42.826667pt;}
.y101{bottom:58.426667pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y100{bottom:74.026667pt;}
.y1{bottom:89.066667pt;}
.yff{bottom:93.706667pt;}
.y9d{bottom:100.026667pt;}
.yb7{bottom:110.986667pt;}
.y5d{bottom:113.786667pt;}
.y9c{bottom:115.626667pt;}
.y53{bottom:118.666667pt;}
.yfd{bottom:119.306667pt;}
.yb6{bottom:126.586667pt;}
.y8a{bottom:127.626667pt;}
.y5c{bottom:129.386667pt;}
.y52{bottom:134.266667pt;}
.y89{bottom:140.186667pt;}
.yfc{bottom:142.906667pt;}
.y9b{bottom:144.266667pt;}
.y51{bottom:149.866667pt;}
.y88{bottom:150.986667pt;}
.yb5{bottom:155.226667pt;}
.y25{bottom:157.546667pt;}
.y5b{bottom:158.026667pt;}
.yfb{bottom:158.506667pt;}
.yd4{bottom:162.346667pt;}
.y50{bottom:165.546667pt;}
.y87{bottom:172.666667pt;}
.y24{bottom:173.146667pt;}
.yd3{bottom:178.026667pt;}
.yfa{bottom:182.186667pt;}
.y23{bottom:188.746667pt;}
.yd2{bottom:193.626667pt;}
.y86{bottom:194.266667pt;}
.y4f{bottom:197.146667pt;}
.yf9{bottom:197.786667pt;}
.y22{bottom:204.426667pt;}
.yd1{bottom:209.226667pt;}
.y4e{bottom:212.826667pt;}
.y85{bottom:215.866667pt;}
.y21{bottom:220.026667pt;}
.yf8{bottom:221.466667pt;}
.yd0{bottom:224.906667pt;}
.y4d{bottom:228.426667pt;}
.y20{bottom:235.706667pt;}
.yf7{bottom:237.066667pt;}
.y84{bottom:237.546667pt;}
.ycf{bottom:240.506667pt;}
.y4c{bottom:244.026667pt;}
.y1f{bottom:251.306667pt;}
.yf6{bottom:252.666667pt;}
.yce{bottom:256.186667pt;}
.y83{bottom:259.146667pt;}
.y4b{bottom:259.706667pt;}
.ycd{bottom:271.786667pt;}
.y4a{bottom:275.306667pt;}
.yf5{bottom:276.346667pt;}
.y82{bottom:280.746667pt;}
.y1e{bottom:282.906667pt;}
.ycc{bottom:287.386667pt;}
.y49{bottom:290.986667pt;}
.yf4{bottom:291.946667pt;}
.y1d{bottom:298.586667pt;}
.y81{bottom:302.426667pt;}
.ycb{bottom:303.066667pt;}
.y1c{bottom:314.186667pt;}
.yf3{bottom:315.626667pt;}
.yca{bottom:318.666667pt;}
.y48{bottom:322.586667pt;}
.y80{bottom:324.026667pt;}
.y1b{bottom:329.866667pt;}
.yf2{bottom:331.226667pt;}
.y47{bottom:338.186667pt;}
.yc9{bottom:342.586667pt;}
.y7f{bottom:345.706667pt;}
.yf1{bottom:346.826667pt;}
.y46{bottom:353.866667pt;}
.y1a{bottom:361.466667pt;}
.y7e{bottom:367.306667pt;}
.y45{bottom:369.466667pt;}
.yf0{bottom:370.506667pt;}
.y19{bottom:377.066667pt;}
.y9a{bottom:377.306667pt;}
.y44{bottom:385.066667pt;}
.yc8{bottom:385.546667pt;}
.yef{bottom:386.106667pt;}
.y7c{bottom:388.906667pt;}
.y18{bottom:392.746667pt;}
.y5a{bottom:394.986667pt;}
.y43{bottom:400.746667pt;}
.yc7{bottom:401.146667pt;}
.y17{bottom:408.346667pt;}
.y99{bottom:408.906667pt;}
.yee{bottom:409.786667pt;}
.y7b{bottom:410.586667pt;}
.y59{bottom:423.653333pt;}
.y16{bottom:424.053333pt;}
.y42{bottom:424.373333pt;}
.y98{bottom:424.613333pt;}
.yed{bottom:425.413333pt;}
.y7a{bottom:432.213333pt;}
.yc6{bottom:432.773333pt;}
.y15{bottom:439.653333pt;}
.y97{bottom:440.213333pt;}
.yec{bottom:441.013333pt;}
.yc5{bottom:448.453333pt;}
.y41{bottom:456.053333pt;}
.y14{bottom:463.573333pt;}
.yeb{bottom:464.693333pt;}
.y79{bottom:469.493333pt;}
.y96{bottom:471.813333pt;}
.yc4{bottom:477.733333pt;}
.yea{bottom:480.293333pt;}
.y95{bottom:487.493333pt;}
.y40{bottom:487.653333pt;}
.y94{bottom:503.093333pt;}
.y3f{bottom:503.253333pt;}
.ye9{bottom:503.893333pt;}
.y13{bottom:506.773333pt;}
.yc3{bottom:517.653333pt;}
.y93{bottom:518.693333pt;}
.y3e{bottom:518.933333pt;}
.ye8{bottom:519.573333pt;}
.yb4{bottom:532.213333pt;}
.y92{bottom:534.373333pt;}
.y3d{bottom:534.533333pt;}
.ye7{bottom:535.173333pt;}
.y12{bottom:539.653333pt;}
.y76{bottom:544.053333pt;}
.yb3{bottom:547.893333pt;}
.y91{bottom:549.973333pt;}
.y3c{bottom:550.213333pt;}
.y11{bottom:555.333333pt;}
.yc2{bottom:557.573333pt;}
.ye6{bottom:558.853333pt;}
.yb2{bottom:563.493333pt;}
.y75{bottom:565.653333pt;}
.y3b{bottom:565.813333pt;}
.y10{bottom:570.933333pt;}
.ye5{bottom:574.453333pt;}
.yb1{bottom:579.173333pt;}
.y3a{bottom:581.413333pt;}
.y90{bottom:581.653333pt;}
.yf{bottom:586.533333pt;}
.y74{bottom:587.253333pt;}
.y39{bottom:597.093333pt;}
.y8f{bottom:597.253333pt;}
.ye4{bottom:598.053333pt;}
.ye{bottom:602.213333pt;}
.y73{bottom:608.933333pt;}
.yb0{bottom:610.133333pt;}
.y38{bottom:612.693333pt;}
.ye3{bottom:613.733333pt;}
.yc1{bottom:616.533333pt;}
.yd{bottom:617.813333pt;}
.yaf{bottom:620.933333pt;}
.y58{bottom:624.693333pt;}
.y8e{bottom:625.893333pt;}
.y72{bottom:630.533333pt;}
.yc0{bottom:632.133333pt;}
.yc{bottom:633.493333pt;}
.y37{bottom:636.373333pt;}
.ye2{bottom:637.333333pt;}
.ybf{bottom:647.813333pt;}
.yb{bottom:649.093333pt;}
.y71{bottom:652.213333pt;}
.ye1{bottom:653.013333pt;}
.y57{bottom:656.293333pt;}
.yae{bottom:660.853333pt;}
.y36{bottom:668.293333pt;}
.ye0{bottom:668.613333pt;}
.y56{bottom:671.973333pt;}
.ya{bottom:673.013333pt;}
.y70{bottom:673.813333pt;}
.ybe{bottom:679.413333pt;}
.ydf{bottom:692.533333pt;}
.ybd{bottom:695.013333pt;}
.y6a{bottom:695.413333pt;}
.y55{bottom:700.613333pt;}
.yad{bottom:700.773333pt;}
.ybc{bottom:710.693333pt;}
.y35{bottom:711.173333pt;}
.y9{bottom:715.893333pt;}
.ybb{bottom:726.293333pt;}
.yde{bottom:735.413333pt;}
.yac{bottom:740.773333pt;}
.y34{bottom:742.773333pt;}
.y8{bottom:747.733333pt;}
.yba{bottom:757.973333pt;}
.y33{bottom:758.453333pt;}
.ydd{bottom:759.333333pt;}
.y69{bottom:769.973333pt;}
.yb9{bottom:773.573333pt;}
.y32{bottom:774.053333pt;}
.y7{bottom:779.733333pt;}
.yaa{bottom:780.693333pt;}
.ydc{bottom:792.293333pt;}
.y68{bottom:801.653333pt;}
.yb8{bottom:802.213333pt;}
.y31{bottom:805.733333pt;}
.ydb{bottom:807.893333pt;}
.ya9{bottom:811.573333pt;}
.y6{bottom:811.733333pt;}
.y67{bottom:817.253333pt;}
.y30{bottom:821.333333pt;}
.y66{bottom:832.853333pt;}
.y2f{bottom:836.933333pt;}
.yda{bottom:839.813333pt;}
.y5{bottom:843.813333pt;}
.ya6{bottom:851.493333pt;}
.y65{bottom:864.533333pt;}
.y8d{bottom:864.853333pt;}
.y105{bottom:866.693333pt;}
.y2e{bottom:868.613333pt;}
.yd9{bottom:872.693333pt;}
.y4{bottom:877.893333pt;}
.yfe{bottom:880.053333pt;}
.y64{bottom:880.133333pt;}
.y8c{bottom:880.533333pt;}
.y2d{bottom:884.213333pt;}
.ya3{bottom:891.493333pt;}
.y8b{bottom:896.133333pt;}
.yd8{bottom:896.613333pt;}
.y3{bottom:899.840000pt;}
.y63{bottom:911.840000pt;}
.y2c{bottom:915.520000pt;}
.y62{bottom:927.440000pt;}
.yd7{bottom:929.600000pt;}
.y2b{bottom:931.120000pt;}
.ya0{bottom:931.440000pt;}
.y61{bottom:943.040000pt;}
.yd6{bottom:945.200000pt;}
.y60{bottom:958.720000pt;}
.y2a{bottom:962.800000pt;}
.yd5{bottom:969.120000pt;}
.y5f{bottom:974.320000pt;}
.y29{bottom:978.400000pt;}
.y9f{bottom:982.320000pt;}
.y5e{bottom:990.000000pt;}
.y9e{bottom:998.000000pt;}
.y28{bottom:1002.320000pt;}
.y54{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.hc{height:20.960000pt;}
.hf{height:20.986667pt;}
.h10{height:21.040000pt;}
.h2{height:29.261250pt;}
.h15{height:30.240000pt;}
.h3{height:34.804688pt;}
.hd{height:36.560000pt;}
.he{height:36.640000pt;}
.h11{height:37.032187pt;}
.h12{height:39.200000pt;}
.h13{height:39.226667pt;}
.h14{height:39.280000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h16{height:54.927899pt;}
.hb{height:54.960000pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h17{height:110.346667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:98.640000pt;}
.w4{width:100.560000pt;}
.w9{width:101.200000pt;}
.wd{width:110.800000pt;}
.w3{width:135.546667pt;}
.wc{width:137.306667pt;}
.wb{width:162.720000pt;}
.w6{width:166.746667pt;}
.w7{width:167.520000pt;}
.wa{width:189.466667pt;}
.wf{width:193.440000pt;}
.w8{width:216.346667pt;}
.we{width:228.106667pt;}
.w10{width:670.773333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.x1{left:60.480000pt;}
.x5{left:63.599988pt;}
.x18{left:65.439988pt;}
.x22{left:66.879988pt;}
.x12{left:68.959988pt;}
.x1f{left:71.119988pt;}
.x15{left:73.199988pt;}
.xb{left:76.079988pt;}
.x27{left:98.879988pt;}
.x6{left:160.506655pt;}
.x2{left:171.306655pt;}
.x1d{left:177.946655pt;}
.x16{left:180.746655pt;}
.x9{left:196.026655pt;}
.xe{left:197.386667pt;}
.x24{left:199.066667pt;}
.xc{left:207.546655pt;}
.x19{left:221.706655pt;}
.x1a{left:278.186667pt;}
.xf{left:298.666667pt;}
.x25{left:310.586667pt;}
.x13{left:328.986655pt;}
.x23{left:348.106655pt;}
.x1b{left:380.026667pt;}
.x20{left:387.466655pt;}
.x7{left:396.986655pt;}
.x10{left:397.946667pt;}
.x26{left:539.413333pt;}
.x11{left:565.333333pt;}
.x1c{left:570.133333pt;}
.x4{left:672.053322pt;}
.x8{left:678.053322pt;}
.x17{left:682.053322pt;}
.xa{left:687.013322pt;}
.x21{left:689.013322pt;}
.x14{left:691.013322pt;}
.x3{left:711.413322pt;}
.x1e{left:713.013322pt;}
}




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