
    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_656e830965e7ae65563c4c7a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7841d9b3fbfb143913c3a19a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cb9c0b09574714335134ccc5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717300;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_aa32cbe3345f8275057fbbaf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_60ad22c518d82c7cdd035188.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_36c5e1af373d4e4e80d0379e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8dc440c36326372da748a630.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_d2dc0132b8781894ce043308.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.776855;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);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:38.880000px;}
.ls4{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.045360px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.ls6{letter-spacing:3.600000px;}
.ls9{letter-spacing:54.864000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws3{word-spacing:-27.216000px;}
.ws4{word-spacing:-27.000000px;}
.ws9{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.280000px;}
.ws1{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.wsa{word-spacing:-12.014640px;}
.ws0{word-spacing:-11.700000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.109520px;}
._1{width:1.485840px;}
._4{width:2.487600px;}
._5{width:4.352400px;}
._6{width:5.374800px;}
._9{width:7.344000px;}
._7{width:8.352000px;}
._8{width:9.391680px;}
._a{width:10.552320px;}
._b{width:12.127680px;}
._d{width:13.248000px;}
._e{width:14.460960px;}
._c{width:15.840000px;}
._f{width:16.949520px;}
._11{width:19.872000px;}
._10{width:20.952000px;}
._12{width:22.464000px;}
._31{width:23.472000px;}
._28{width:24.696000px;}
._29{width:25.812000px;}
._1b{width:27.756000px;}
._1a{width:28.980000px;}
._38{width:30.064320px;}
._32{width:31.243680px;}
._16{width:32.544000px;}
._13{width:34.848000px;}
._2b{width:36.103680px;}
._39{width:42.264000px;}
._3a{width:43.788000px;}
._2f{width:47.664000px;}
._30{width:49.034160px;}
._19{width:51.912000px;}
._24{width:63.576000px;}
._25{width:64.790160px;}
._26{width:66.888000px;}
._27{width:68.220000px;}
._21{width:69.840000px;}
._2c{width:84.312000px;}
._2d{width:85.692000px;}
._2e{width:99.420000px;}
._1f{width:100.452000px;}
._1e{width:101.664000px;}
._20{width:102.960000px;}
._33{width:110.160000px;}
._34{width:111.600000px;}
._22{width:114.192000px;}
._23{width:115.884000px;}
._17{width:121.680000px;}
._18{width:122.760000px;}
._1c{width:134.280000px;}
._1d{width:135.660000px;}
._2a{width:137.580000px;}
._36{width:215.309520px;}
._37{width:216.360000px;}
._14{width:266.904000px;}
._15{width:267.917520px;}
._2{width:399.134640px;}
._35{width:406.476000px;}
._3b{width:1504.637520px;}
._3{width:1909.176000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y11c{bottom:0.180000px;}
.y81{bottom:3.960000px;}
.y8e{bottom:11.340000px;}
.y89{bottom:11.385000px;}
.y86{bottom:11.520000px;}
.y11b{bottom:20.880000px;}
.y92{bottom:21.810000px;}
.y95{bottom:24.660000px;}
.y8d{bottom:32.040000px;}
.y88{bottom:32.085000px;}
.y85{bottom:32.220000px;}
.y11a{bottom:41.580000px;}
.y91{bottom:42.510000px;}
.y23{bottom:43.020000px;}
.y2{bottom:44.460000px;}
.y94{bottom:45.360000px;}
.y8c{bottom:52.740000px;}
.y84{bottom:52.920000px;}
.y22{bottom:56.880000px;}
.y1{bottom:63.720000px;}
.y8b{bottom:73.440000px;}
.y83{bottom:73.620000px;}
.y98{bottom:94.320000px;}
.yc7{bottom:111.240000px;}
.y93{bottom:112.500000px;}
.y72{bottom:115.020000px;}
.y105{bottom:118.980000px;}
.ybc{bottom:139.680000px;}
.yc6{bottom:142.200000px;}
.y10b{bottom:143.460000px;}
.y118{bottom:144.180000px;}
.ya0{bottom:144.720000px;}
.y71{bottom:146.160000px;}
.y9c{bottom:149.940000px;}
.ybb{bottom:170.640000px;}
.yc5{bottom:173.160000px;}
.ye0{bottom:173.340000px;}
.y10a{bottom:174.420000px;}
.y90{bottom:174.600000px;}
.y9f{bottom:175.860000px;}
.y70{bottom:177.150000px;}
.y104{bottom:181.110000px;}
.y9b{bottom:190.110000px;}
.y1f{bottom:193.710000px;}
.y117{bottom:197.130000px;}
.yba{bottom:201.810000px;}
.ydf{bottom:204.330000px;}
.yc4{bottom:205.590000px;}
.y9e{bottom:206.850000px;}
.y6f{bottom:208.290000px;}
.y1e{bottom:210.990000px;}
.y103{bottom:212.070000px;}
.y1d{bottom:228.270000px;}
.yb9{bottom:232.770000px;}
.y116{bottom:233.130000px;}
.y8f{bottom:233.850000px;}
.y119{bottom:235.290000px;}
.yde{bottom:235.470000px;}
.yc3{bottom:236.730000px;}
.y9d{bottom:237.810000px;}
.y109{bottom:237.990000px;}
.y6e{bottom:239.250000px;}
.y102{bottom:244.470000px;}
.y1c{bottom:245.550000px;}
.y1b{bottom:262.650000px;}
.y115{bottom:262.830000px;}
.yb8{bottom:263.910000px;}
.ydd{bottom:266.430000px;}
.yc2{bottom:267.690000px;}
.y108{bottom:268.950000px;}
.y6d{bottom:270.390000px;}
.y101{bottom:275.610000px;}
.y114{bottom:281.550000px;}
.y1a{bottom:290.010000px;}
.yb7{bottom:294.870000px;}
.ydc{bottom:297.570000px;}
.yc1{bottom:298.650000px;}
.y113{bottom:298.830000px;}
.y107{bottom:300.090000px;}
.y6c{bottom:301.350000px;}
.y100{bottom:306.570000px;}
.y8a{bottom:324.210000px;}
.yb6{bottom:326.010000px;}
.y112{bottom:327.810000px;}
.ydb{bottom:328.530000px;}
.yc0{bottom:331.050000px;}
.y6b{bottom:332.490000px;}
.y19{bottom:334.110000px;}
.yff{bottom:337.710000px;}
.yb5{bottom:356.970000px;}
.y111{bottom:358.770000px;}
.yda{bottom:359.670000px;}
.ybf{bottom:362.190000px;}
.y6a{bottom:363.450000px;}
.yfe{bottom:368.670000px;}
.y18{bottom:369.930000px;}
.y110{bottom:387.030000px;}
.yb4{bottom:388.110000px;}
.yd9{bottom:390.630000px;}
.ybe{bottom:393.150000px;}
.y69{bottom:394.590000px;}
.yfd{bottom:399.810000px;}
.y17{bottom:401.790000px;}
.y50{bottom:405.930000px;}
.y87{bottom:414.390000px;}
.yb3{bottom:418.890000px;}
.yd8{bottom:421.635000px;}
.ybd{bottom:424.155000px;}
.yee{bottom:424.335000px;}
.y68{bottom:425.595000px;}
.yfc{bottom:430.815000px;}
.y4f{bottom:436.935000px;}
.y16{bottom:446.115000px;}
.yb2{bottom:451.515000px;}
.yd7{bottom:452.775000px;}
.yed{bottom:455.295000px;}
.y67{bottom:456.555000px;}
.yfb{bottom:461.955000px;}
.y82{bottom:463.215000px;}
.y4e{bottom:468.075000px;}
.y15{bottom:477.795000px;}
.yb1{bottom:482.475000px;}
.yd6{bottom:483.735000px;}
.yec{bottom:486.435000px;}
.y66{bottom:487.695000px;}
.yfa{bottom:492.915000px;}
.y38{bottom:495.615000px;}
.y4d{bottom:499.035000px;}
.y14{bottom:501.915000px;}
.yb0{bottom:513.615000px;}
.y13{bottom:513.975000px;}
.yd5{bottom:514.875000px;}
.yeb{bottom:517.395000px;}
.y65{bottom:518.655000px;}
.yf9{bottom:524.055000px;}
.y4c{bottom:530.175000px;}
.y37{bottom:534.315000px;}
.y12{bottom:540.615000px;}
.yaf{bottom:544.575000px;}
.yd4{bottom:545.835000px;}
.yea{bottom:548.535000px;}
.y64{bottom:549.795000px;}
.y80{bottom:554.295000px;}
.yf8{bottom:555.015000px;}
.y4b{bottom:561.135000px;}
.y36{bottom:565.275000px;}
.y11{bottom:571.575000px;}
.yae{bottom:575.715000px;}
.yd3{bottom:576.795000px;}
.y10f{bottom:576.975000px;}
.ye9{bottom:579.495000px;}
.y63{bottom:580.755000px;}
.yf7{bottom:585.975000px;}
.y4a{bottom:592.275000px;}
.y7f{bottom:594.435000px;}
.y35{bottom:596.415000px;}
.y10{bottom:602.715000px;}
.yad{bottom:606.675000px;}
.y10e{bottom:607.935000px;}
.yd2{bottom:609.375000px;}
.ye8{bottom:610.635000px;}
.y62{bottom:611.895000px;}
.yf6{bottom:618.375000px;}
.y49{bottom:623.235000px;}
.y34{bottom:627.375000px;}
.y7e{bottom:634.575000px;}
.yac{bottom:637.815000px;}
.y10d{bottom:639.075000px;}
.yf{bottom:639.615000px;}
.yd1{bottom:640.335000px;}
.ye7{bottom:641.595000px;}
.y61{bottom:642.855000px;}
.yf5{bottom:649.515000px;}
.y48{bottom:654.375000px;}
.y33{bottom:658.515000px;}
.yab{bottom:668.625000px;}
.y7d{bottom:670.065000px;}
.yd0{bottom:671.505000px;}
.ye6{bottom:672.765000px;}
.y60{bottom:674.025000px;}
.ye{bottom:676.185000px;}
.yf4{bottom:680.505000px;}
.y47{bottom:685.365000px;}
.y32{bottom:689.505000px;}
.y7c{bottom:701.205000px;}
.ycf{bottom:702.465000px;}
.ye5{bottom:703.725000px;}
.y5f{bottom:704.985000px;}
.yd{bottom:708.765000px;}
.yf3{bottom:711.645000px;}
.y46{bottom:716.505000px;}
.y31{bottom:720.645000px;}
.y7b{bottom:732.165000px;}
.yce{bottom:733.425000px;}
.ye4{bottom:734.865000px;}
.y5e{bottom:736.125000px;}
.yf2{bottom:742.605000px;}
.y45{bottom:747.465000px;}
.yc{bottom:750.165000px;}
.y30{bottom:751.605000px;}
.y7a{bottom:763.305000px;}
.ycd{bottom:765.825000px;}
.y5d{bottom:767.085000px;}
.yf1{bottom:773.745000px;}
.y44{bottom:778.605000px;}
.y2f{bottom:782.745000px;}
.yb{bottom:791.565000px;}
.y79{bottom:794.265000px;}
.ycc{bottom:796.965000px;}
.y5c{bottom:798.225000px;}
.yf0{bottom:804.705000px;}
.y43{bottom:809.565000px;}
.y2e{bottom:813.705000px;}
.y78{bottom:825.405000px;}
.ycb{bottom:827.925000px;}
.y5b{bottom:829.185000px;}
.yef{bottom:831.705000px;}
.ya{bottom:832.965000px;}
.y42{bottom:840.705000px;}
.y2d{bottom:844.845000px;}
.y77{bottom:856.185000px;}
.yaa{bottom:856.365000px;}
.yca{bottom:859.065000px;}
.y5a{bottom:860.325000px;}
.y41{bottom:871.665000px;}
.y9{bottom:874.365000px;}
.y2c{bottom:875.805000px;}
.ya9{bottom:887.505000px;}
.y76{bottom:888.765000px;}
.yc9{bottom:890.025000px;}
.y59{bottom:891.285000px;}
.y40{bottom:902.805000px;}
.y2b{bottom:906.990000px;}
.y8{bottom:915.810000px;}
.ya8{bottom:918.330000px;}
.y75{bottom:919.770000px;}
.yc8{bottom:921.210000px;}
.y58{bottom:922.470000px;}
.y3f{bottom:933.810000px;}
.y2a{bottom:937.950000px;}
.ya7{bottom:950.910000px;}
.y74{bottom:952.170000px;}
.y57{bottom:953.430000px;}
.y7{bottom:957.210000px;}
.y9a{bottom:959.910000px;}
.y3e{bottom:964.950000px;}
.y29{bottom:968.910000px;}
.ya6{bottom:981.870000px;}
.y73{bottom:983.130000px;}
.ye3{bottom:983.310000px;}
.y56{bottom:984.570000px;}
.y99{bottom:995.370000px;}
.y3d{bottom:995.910000px;}
.y6{bottom:998.610000px;}
.y28{bottom:1000.050000px;}
.ya5{bottom:1013.010000px;}
.y106{bottom:1014.090000px;}
.ye2{bottom:1014.270000px;}
.y55{bottom:1015.530000px;}
.y97{bottom:1017.330000px;}
.y3c{bottom:1027.050000px;}
.y27{bottom:1031.010000px;}
.y5{bottom:1040.010000px;}
.ya4{bottom:1043.970000px;}
.ye1{bottom:1045.410000px;}
.y54{bottom:1046.670000px;}
.y3b{bottom:1058.010000px;}
.y26{bottom:1062.150000px;}
.ya3{bottom:1076.370000px;}
.y53{bottom:1077.630000px;}
.y4{bottom:1081.410000px;}
.y3a{bottom:1086.090000px;}
.y25{bottom:1093.110000px;}
.y10c{bottom:1107.330000px;}
.ya2{bottom:1107.510000px;}
.y52{bottom:1108.770000px;}
.y3{bottom:1122.810000px;}
.y39{bottom:1123.710000px;}
.y96{bottom:1128.390000px;}
.y24{bottom:1131.090000px;}
.ya1{bottom:1138.290000px;}
.y51{bottom:1139.730000px;}
.y21{bottom:1180.800000px;}
.y20{bottom:1196.280000px;}
.hf{height:20.700000px;}
.h15{height:28.116000px;}
.h1a{height:41.317383px;}
.hb{height:47.344922px;}
.h11{height:48.816000px;}
.h5{height:50.661190px;}
.h7{height:52.998047px;}
.h1d{height:58.320000px;}
.h17{height:58.621992px;}
.h2{height:58.651172px;}
.h13{height:59.256000px;}
.h19{height:59.343750px;}
.h1c{height:60.226875px;}
.h14{height:62.100000px;}
.hc{height:64.546875px;}
.h1b{height:65.010937px;}
.hd{height:70.628906px;}
.h3{height:70.664062px;}
.ha{height:72.562500px;}
.he{height:74.004654px;}
.h18{height:74.681367px;}
.h9{height:75.991785px;}
.h8{height:82.676953px;}
.h12{height:90.180000px;}
.h10{height:90.360000px;}
.h6{height:108.843750px;}
.h16{height:111.060000px;}
.h4{height:141.328125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:82.440000px;}
.w5{width:106.200000px;}
.w3{width:117.000000px;}
.w7{width:305.130000px;}
.w4{width:467.925000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:8.100000px;}
.x1c{left:10.620000px;}
.x1b{left:100.476000px;}
.x1{left:106.415987px;}
.x5{left:122.435987px;}
.x3{left:123.875987px;}
.xb{left:126.215987px;}
.x12{left:133.415987px;}
.xd{left:159.509987px;}
.x4{left:192.089987px;}
.x6{left:197.849987px;}
.x14{left:223.410000px;}
.xe{left:228.449987px;}
.x8{left:324.794987px;}
.xa{left:356.114987px;}
.xf{left:393.194987px;}
.xc{left:396.254987px;}
.x10{left:397.514987px;}
.x1a{left:404.534987px;}
.x19{left:405.974987px;}
.x11{left:416.594987px;}
.x17{left:418.574987px;}
.x9{left:424.514987px;}
.x2{left:446.504987px;}
.x16{left:632.129987px;}
.x15{left:691.350000px;}
.x18{left:757.769987px;}
.x7{left:786.749987px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:34.560000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.040320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.ls6{letter-spacing:3.200000pt;}
.ls9{letter-spacing:48.768000pt;}
.ws8{word-spacing:-64.000000pt;}
.ws3{word-spacing:-24.192000pt;}
.ws4{word-spacing:-24.000000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.360000pt;}
.ws1{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.wsa{word-spacing:-10.679680pt;}
.ws0{word-spacing:-10.400000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-0.986240pt;}
._1{width:1.320747pt;}
._4{width:2.211200pt;}
._5{width:3.868800pt;}
._6{width:4.777600pt;}
._9{width:6.528000pt;}
._7{width:7.424000pt;}
._8{width:8.348160pt;}
._a{width:9.379840pt;}
._b{width:10.780160pt;}
._d{width:11.776000pt;}
._e{width:12.854187pt;}
._c{width:14.080000pt;}
._f{width:15.066240pt;}
._11{width:17.664000pt;}
._10{width:18.624000pt;}
._12{width:19.968000pt;}
._31{width:20.864000pt;}
._28{width:21.952000pt;}
._29{width:22.944000pt;}
._1b{width:24.672000pt;}
._1a{width:25.760000pt;}
._38{width:26.723840pt;}
._32{width:27.772160pt;}
._16{width:28.928000pt;}
._13{width:30.976000pt;}
._2b{width:32.092160pt;}
._39{width:37.568000pt;}
._3a{width:38.922667pt;}
._2f{width:42.368000pt;}
._30{width:43.585920pt;}
._19{width:46.144000pt;}
._24{width:56.512000pt;}
._25{width:57.591253pt;}
._26{width:59.456000pt;}
._27{width:60.640000pt;}
._21{width:62.080000pt;}
._2c{width:74.944000pt;}
._2d{width:76.170667pt;}
._2e{width:88.373333pt;}
._1f{width:89.290667pt;}
._1e{width:90.368000pt;}
._20{width:91.520000pt;}
._33{width:97.920000pt;}
._34{width:99.200000pt;}
._22{width:101.504000pt;}
._23{width:103.008000pt;}
._17{width:108.160000pt;}
._18{width:109.120000pt;}
._1c{width:119.360000pt;}
._1d{width:120.586667pt;}
._2a{width:122.293333pt;}
._36{width:191.386240pt;}
._37{width:192.320000pt;}
._14{width:237.248000pt;}
._15{width:238.148907pt;}
._2{width:354.786347pt;}
._35{width:361.312000pt;}
._3b{width:1337.455573pt;}
._3{width:1697.045333pt;}
.fs0{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y11c{bottom:0.160000pt;}
.y81{bottom:3.520000pt;}
.y8e{bottom:10.080000pt;}
.y89{bottom:10.120000pt;}
.y86{bottom:10.240000pt;}
.y11b{bottom:18.560000pt;}
.y92{bottom:19.386667pt;}
.y95{bottom:21.920000pt;}
.y8d{bottom:28.480000pt;}
.y88{bottom:28.520000pt;}
.y85{bottom:28.640000pt;}
.y11a{bottom:36.960000pt;}
.y91{bottom:37.786667pt;}
.y23{bottom:38.240000pt;}
.y2{bottom:39.520000pt;}
.y94{bottom:40.320000pt;}
.y8c{bottom:46.880000pt;}
.y84{bottom:47.040000pt;}
.y22{bottom:50.560000pt;}
.y1{bottom:56.640000pt;}
.y8b{bottom:65.280000pt;}
.y83{bottom:65.440000pt;}
.y98{bottom:83.840000pt;}
.yc7{bottom:98.880000pt;}
.y93{bottom:100.000000pt;}
.y72{bottom:102.240000pt;}
.y105{bottom:105.760000pt;}
.ybc{bottom:124.160000pt;}
.yc6{bottom:126.400000pt;}
.y10b{bottom:127.520000pt;}
.y118{bottom:128.160000pt;}
.ya0{bottom:128.640000pt;}
.y71{bottom:129.920000pt;}
.y9c{bottom:133.280000pt;}
.ybb{bottom:151.680000pt;}
.yc5{bottom:153.920000pt;}
.ye0{bottom:154.080000pt;}
.y10a{bottom:155.040000pt;}
.y90{bottom:155.200000pt;}
.y9f{bottom:156.320000pt;}
.y70{bottom:157.466667pt;}
.y104{bottom:160.986667pt;}
.y9b{bottom:168.986667pt;}
.y1f{bottom:172.186667pt;}
.y117{bottom:175.226667pt;}
.yba{bottom:179.386667pt;}
.ydf{bottom:181.626667pt;}
.yc4{bottom:182.746667pt;}
.y9e{bottom:183.866667pt;}
.y6f{bottom:185.146667pt;}
.y1e{bottom:187.546667pt;}
.y103{bottom:188.506667pt;}
.y1d{bottom:202.906667pt;}
.yb9{bottom:206.906667pt;}
.y116{bottom:207.226667pt;}
.y8f{bottom:207.866667pt;}
.y119{bottom:209.146667pt;}
.yde{bottom:209.306667pt;}
.yc3{bottom:210.426667pt;}
.y9d{bottom:211.386667pt;}
.y109{bottom:211.546667pt;}
.y6e{bottom:212.666667pt;}
.y102{bottom:217.306667pt;}
.y1c{bottom:218.266667pt;}
.y1b{bottom:233.466667pt;}
.y115{bottom:233.626667pt;}
.yb8{bottom:234.586667pt;}
.ydd{bottom:236.826667pt;}
.yc2{bottom:237.946667pt;}
.y108{bottom:239.066667pt;}
.y6d{bottom:240.346667pt;}
.y101{bottom:244.986667pt;}
.y114{bottom:250.266667pt;}
.y1a{bottom:257.786667pt;}
.yb7{bottom:262.106667pt;}
.ydc{bottom:264.506667pt;}
.yc1{bottom:265.466667pt;}
.y113{bottom:265.626667pt;}
.y107{bottom:266.746667pt;}
.y6c{bottom:267.866667pt;}
.y100{bottom:272.506667pt;}
.y8a{bottom:288.186667pt;}
.yb6{bottom:289.786667pt;}
.y112{bottom:291.386667pt;}
.ydb{bottom:292.026667pt;}
.yc0{bottom:294.266667pt;}
.y6b{bottom:295.546667pt;}
.y19{bottom:296.986667pt;}
.yff{bottom:300.186667pt;}
.yb5{bottom:317.306667pt;}
.y111{bottom:318.906667pt;}
.yda{bottom:319.706667pt;}
.ybf{bottom:321.946667pt;}
.y6a{bottom:323.066667pt;}
.yfe{bottom:327.706667pt;}
.y18{bottom:328.826667pt;}
.y110{bottom:344.026667pt;}
.yb4{bottom:344.986667pt;}
.yd9{bottom:347.226667pt;}
.ybe{bottom:349.466667pt;}
.y69{bottom:350.746667pt;}
.yfd{bottom:355.386667pt;}
.y17{bottom:357.146667pt;}
.y50{bottom:360.826667pt;}
.y87{bottom:368.346667pt;}
.yb3{bottom:372.346667pt;}
.yd8{bottom:374.786667pt;}
.ybd{bottom:377.026667pt;}
.yee{bottom:377.186667pt;}
.y68{bottom:378.306667pt;}
.yfc{bottom:382.946667pt;}
.y4f{bottom:388.386667pt;}
.y16{bottom:396.546667pt;}
.yb2{bottom:401.346667pt;}
.yd7{bottom:402.466667pt;}
.yed{bottom:404.706667pt;}
.y67{bottom:405.826667pt;}
.yfb{bottom:410.626667pt;}
.y82{bottom:411.746667pt;}
.y4e{bottom:416.066667pt;}
.y15{bottom:424.706667pt;}
.yb1{bottom:428.866667pt;}
.yd6{bottom:429.986667pt;}
.yec{bottom:432.386667pt;}
.y66{bottom:433.506667pt;}
.yfa{bottom:438.146667pt;}
.y38{bottom:440.546667pt;}
.y4d{bottom:443.586667pt;}
.y14{bottom:446.146667pt;}
.yb0{bottom:456.546667pt;}
.y13{bottom:456.866667pt;}
.yd5{bottom:457.666667pt;}
.yeb{bottom:459.906667pt;}
.y65{bottom:461.026667pt;}
.yf9{bottom:465.826667pt;}
.y4c{bottom:471.266667pt;}
.y37{bottom:474.946667pt;}
.y12{bottom:480.546667pt;}
.yaf{bottom:484.066667pt;}
.yd4{bottom:485.186667pt;}
.yea{bottom:487.586667pt;}
.y64{bottom:488.706667pt;}
.y80{bottom:492.706667pt;}
.yf8{bottom:493.346667pt;}
.y4b{bottom:498.786667pt;}
.y36{bottom:502.466667pt;}
.y11{bottom:508.066667pt;}
.yae{bottom:511.746667pt;}
.yd3{bottom:512.706667pt;}
.y10f{bottom:512.866667pt;}
.ye9{bottom:515.106667pt;}
.y63{bottom:516.226667pt;}
.yf7{bottom:520.866667pt;}
.y4a{bottom:526.466667pt;}
.y7f{bottom:528.386667pt;}
.y35{bottom:530.146667pt;}
.y10{bottom:535.746667pt;}
.yad{bottom:539.266667pt;}
.y10e{bottom:540.386667pt;}
.yd2{bottom:541.666667pt;}
.ye8{bottom:542.786667pt;}
.y62{bottom:543.906667pt;}
.yf6{bottom:549.666667pt;}
.y49{bottom:553.986667pt;}
.y34{bottom:557.666667pt;}
.y7e{bottom:564.066667pt;}
.yac{bottom:566.946667pt;}
.y10d{bottom:568.066667pt;}
.yf{bottom:568.546667pt;}
.yd1{bottom:569.186667pt;}
.ye7{bottom:570.306667pt;}
.y61{bottom:571.426667pt;}
.yf5{bottom:577.346667pt;}
.y48{bottom:581.666667pt;}
.y33{bottom:585.346667pt;}
.yab{bottom:594.333333pt;}
.y7d{bottom:595.613333pt;}
.yd0{bottom:596.893333pt;}
.ye6{bottom:598.013333pt;}
.y60{bottom:599.133333pt;}
.ye{bottom:601.053333pt;}
.yf4{bottom:604.893333pt;}
.y47{bottom:609.213333pt;}
.y32{bottom:612.893333pt;}
.y7c{bottom:623.293333pt;}
.ycf{bottom:624.413333pt;}
.ye5{bottom:625.533333pt;}
.y5f{bottom:626.653333pt;}
.yd{bottom:630.013333pt;}
.yf3{bottom:632.573333pt;}
.y46{bottom:636.893333pt;}
.y31{bottom:640.573333pt;}
.y7b{bottom:650.813333pt;}
.yce{bottom:651.933333pt;}
.ye4{bottom:653.213333pt;}
.y5e{bottom:654.333333pt;}
.yf2{bottom:660.093333pt;}
.y45{bottom:664.413333pt;}
.yc{bottom:666.813333pt;}
.y30{bottom:668.093333pt;}
.y7a{bottom:678.493333pt;}
.ycd{bottom:680.733333pt;}
.y5d{bottom:681.853333pt;}
.yf1{bottom:687.773333pt;}
.y44{bottom:692.093333pt;}
.y2f{bottom:695.773333pt;}
.yb{bottom:703.613333pt;}
.y79{bottom:706.013333pt;}
.ycc{bottom:708.413333pt;}
.y5c{bottom:709.533333pt;}
.yf0{bottom:715.293333pt;}
.y43{bottom:719.613333pt;}
.y2e{bottom:723.293333pt;}
.y78{bottom:733.693333pt;}
.ycb{bottom:735.933333pt;}
.y5b{bottom:737.053333pt;}
.yef{bottom:739.293333pt;}
.ya{bottom:740.413333pt;}
.y42{bottom:747.293333pt;}
.y2d{bottom:750.973333pt;}
.y77{bottom:761.053333pt;}
.yaa{bottom:761.213333pt;}
.yca{bottom:763.613333pt;}
.y5a{bottom:764.733333pt;}
.y41{bottom:774.813333pt;}
.y9{bottom:777.213333pt;}
.y2c{bottom:778.493333pt;}
.ya9{bottom:788.893333pt;}
.y76{bottom:790.013333pt;}
.yc9{bottom:791.133333pt;}
.y59{bottom:792.253333pt;}
.y40{bottom:802.493333pt;}
.y2b{bottom:806.213333pt;}
.y8{bottom:814.053333pt;}
.ya8{bottom:816.293333pt;}
.y75{bottom:817.573333pt;}
.yc8{bottom:818.853333pt;}
.y58{bottom:819.973333pt;}
.y3f{bottom:830.053333pt;}
.y2a{bottom:833.733333pt;}
.ya7{bottom:845.253333pt;}
.y74{bottom:846.373333pt;}
.y57{bottom:847.493333pt;}
.y7{bottom:850.853333pt;}
.y9a{bottom:853.253333pt;}
.y3e{bottom:857.733333pt;}
.y29{bottom:861.253333pt;}
.ya6{bottom:872.773333pt;}
.y73{bottom:873.893333pt;}
.ye3{bottom:874.053333pt;}
.y56{bottom:875.173333pt;}
.y99{bottom:884.773333pt;}
.y3d{bottom:885.253333pt;}
.y6{bottom:887.653333pt;}
.y28{bottom:888.933333pt;}
.ya5{bottom:900.453333pt;}
.y106{bottom:901.413333pt;}
.ye2{bottom:901.573333pt;}
.y55{bottom:902.693333pt;}
.y97{bottom:904.293333pt;}
.y3c{bottom:912.933333pt;}
.y27{bottom:916.453333pt;}
.y5{bottom:924.453333pt;}
.ya4{bottom:927.973333pt;}
.ye1{bottom:929.253333pt;}
.y54{bottom:930.373333pt;}
.y3b{bottom:940.453333pt;}
.y26{bottom:944.133333pt;}
.ya3{bottom:956.773333pt;}
.y53{bottom:957.893333pt;}
.y4{bottom:961.253333pt;}
.y3a{bottom:965.413333pt;}
.y25{bottom:971.653333pt;}
.y10c{bottom:984.293333pt;}
.ya2{bottom:984.453333pt;}
.y52{bottom:985.573333pt;}
.y3{bottom:998.053333pt;}
.y39{bottom:998.853333pt;}
.y96{bottom:1003.013333pt;}
.y24{bottom:1005.413333pt;}
.ya1{bottom:1011.813333pt;}
.y51{bottom:1013.093333pt;}
.y21{bottom:1049.600000pt;}
.y20{bottom:1063.360000pt;}
.hf{height:18.400000pt;}
.h15{height:24.992000pt;}
.h1a{height:36.726562pt;}
.hb{height:42.084375pt;}
.h11{height:43.392000pt;}
.h5{height:45.032169pt;}
.h7{height:47.109375pt;}
.h1d{height:51.840000pt;}
.h17{height:52.108438pt;}
.h2{height:52.134375pt;}
.h13{height:52.672000pt;}
.h19{height:52.750000pt;}
.h1c{height:53.535000pt;}
.h14{height:55.200000pt;}
.hc{height:57.375000pt;}
.h1b{height:57.787500pt;}
.hd{height:62.781250pt;}
.h3{height:62.812500pt;}
.ha{height:64.500000pt;}
.he{height:65.781915pt;}
.h18{height:66.383438pt;}
.h9{height:67.548254pt;}
.h8{height:73.490625pt;}
.h12{height:80.160000pt;}
.h10{height:80.320000pt;}
.h6{height:96.750000pt;}
.h16{height:98.720000pt;}
.h4{height:125.625000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:73.280000pt;}
.w5{width:94.400000pt;}
.w3{width:104.000000pt;}
.w7{width:271.226667pt;}
.w4{width:415.933333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.200000pt;}
.x1c{left:9.440000pt;}
.x1b{left:89.312000pt;}
.x1{left:94.591988pt;}
.x5{left:108.831988pt;}
.x3{left:110.111988pt;}
.xb{left:112.191988pt;}
.x12{left:118.591988pt;}
.xd{left:141.786655pt;}
.x4{left:170.746655pt;}
.x6{left:175.866655pt;}
.x14{left:198.586667pt;}
.xe{left:203.066655pt;}
.x8{left:288.706655pt;}
.xa{left:316.546655pt;}
.xf{left:349.506655pt;}
.xc{left:352.226655pt;}
.x10{left:353.346655pt;}
.x1a{left:359.586655pt;}
.x19{left:360.866655pt;}
.x11{left:370.306655pt;}
.x17{left:372.066655pt;}
.x9{left:377.346655pt;}
.x2{left:396.893322pt;}
.x16{left:561.893322pt;}
.x15{left:614.533333pt;}
.x18{left:673.573322pt;}
.x7{left:699.333322pt;}
}




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