
    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_bd55d6b2e4cd5a59e2e9b557.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_d646e306ea42c234aa80ceff.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_da45e94d951124bbc08ca2f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_de18847e8a8868ae205e9f80.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_01ce8cbd34e42b9a86a59126.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.lsa{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:21.546720px;}
.ls6{letter-spacing:41.706720px;}
.ls5{letter-spacing:44.586720px;}
.ls4{letter-spacing:46.002720px;}
.lsb{letter-spacing:55.386720px;}
.ls9{letter-spacing:64.002720px;}
.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:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws2{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.780000px;}
.ws3{word-spacing:0.000000px;}
._1e{margin-left:-8.197440px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._7{width:2.729520px;}
._2{width:4.245600px;}
._8{width:5.370720px;}
._15{width:6.394320px;}
._b{width:7.410240px;}
._f{width:8.590080px;}
._e{width:9.927840px;}
._c{width:11.286960px;}
._6{width:13.266720px;}
._11{width:16.612560px;}
._d{width:17.763360px;}
._9{width:19.220400px;}
._a{width:20.580960px;}
._13{width:21.752640px;}
._12{width:22.947840px;}
._14{width:23.948400px;}
._10{width:25.270800px;}
._16{width:26.772480px;}
._17{width:29.850720px;}
._18{width:31.357680px;}
._1b{width:32.961600px;}
._1a{width:34.079520px;}
._22{width:40.995360px;}
._19{width:44.341920px;}
._1c{width:55.756080px;}
._24{width:81.504960px;}
._23{width:82.648080px;}
._5{width:85.656000px;}
._1d{width:90.253920px;}
._25{width:140.547840px;}
._1f{width:142.758960px;}
._20{width:143.902080px;}
._21{width:145.413120px;}
._26{width:153.523440px;}
._27{width:274.470000px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc5{color:transparent;}
.fc4{color:rgb(28,30,33);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc6{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.ye2{bottom:-30.960000px;}
.y0{bottom:0.000000px;}
.ye1{bottom:0.540000px;}
.y6a{bottom:3.240000px;}
.ye0{bottom:16.380000px;}
.y74{bottom:17.100000px;}
.y70{bottom:17.280000px;}
.y6d{bottom:17.325000px;}
.y9b{bottom:20.520000px;}
.ydf{bottom:32.040000px;}
.yb{bottom:36.720000px;}
.ye8{bottom:37.800000px;}
.ye4{bottom:37.845000px;}
.yde{bottom:47.880000px;}
.ya{bottom:55.260000px;}
.ydd{bottom:63.720000px;}
.ye7{bottom:66.450000px;}
.ye3{bottom:66.465000px;}
.y9{bottom:70.776000px;}
.ydc{bottom:79.560000px;}
.ycb{bottom:113.796000px;}
.y98{bottom:118.296000px;}
.yda{bottom:120.456000px;}
.y40{bottom:127.656000px;}
.yca{bottom:128.556000px;}
.y113{bottom:131.256000px;}
.y7a{bottom:135.576000px;}
.yd9{bottom:137.736000px;}
.y3f{bottom:144.936000px;}
.y112{bottom:148.536000px;}
.y79{bottom:150.330000px;}
.y97{bottom:152.670000px;}
.yd8{bottom:155.010000px;}
.y3e{bottom:162.210000px;}
.yc9{bottom:162.930000px;}
.y111{bottom:165.810000px;}
.y78{bottom:167.430000px;}
.y96{bottom:169.950000px;}
.yd7{bottom:172.290000px;}
.y3d{bottom:179.490000px;}
.yc8{bottom:180.210000px;}
.y110{bottom:183.090000px;}
.y77{bottom:184.710000px;}
.y95{bottom:187.230000px;}
.yd6{bottom:189.570000px;}
.y3c{bottom:196.590000px;}
.y10f{bottom:200.190000px;}
.y76{bottom:201.990000px;}
.y94{bottom:204.510000px;}
.yd5{bottom:206.670000px;}
.y3b{bottom:213.870000px;}
.yc7{bottom:215.490000px;}
.y10e{bottom:217.470000px;}
.y75{bottom:219.270000px;}
.y93{bottom:221.790000px;}
.yd4{bottom:223.950000px;}
.y3a{bottom:231.150000px;}
.y10d{bottom:234.750000px;}
.y73{bottom:236.550000px;}
.yc6{bottom:236.730000px;}
.y92{bottom:238.890000px;}
.yd3{bottom:241.230000px;}
.y39{bottom:248.430000px;}
.y10c{bottom:252.030000px;}
.y72{bottom:253.650000px;}
.yc5{bottom:254.010000px;}
.y91{bottom:256.170000px;}
.yd2{bottom:258.510000px;}
.y38{bottom:265.710000px;}
.y10b{bottom:269.310000px;}
.y71{bottom:270.930000px;}
.yc4{bottom:271.290000px;}
.y90{bottom:273.450000px;}
.yd1{bottom:275.790000px;}
.y37{bottom:282.990000px;}
.y10a{bottom:286.590000px;}
.y6f{bottom:288.210000px;}
.yc3{bottom:288.390000px;}
.y8f{bottom:290.730000px;}
.yd0{bottom:292.890000px;}
.y36{bottom:300.090000px;}
.y109{bottom:303.690000px;}
.y6e{bottom:305.490000px;}
.yc2{bottom:305.670000px;}
.y8e{bottom:308.010000px;}
.ycf{bottom:310.170000px;}
.y35{bottom:317.370000px;}
.y108{bottom:320.970000px;}
.y6c{bottom:322.770000px;}
.yc1{bottom:322.950000px;}
.y8d{bottom:325.290000px;}
.yce{bottom:327.450000px;}
.ye5{bottom:333.750000px;}
.y34{bottom:334.650000px;}
.y107{bottom:338.295000px;}
.y6b{bottom:340.095000px;}
.yc0{bottom:340.275000px;}
.y8c{bottom:342.435000px;}
.ycd{bottom:344.775000px;}
.y33{bottom:351.975000px;}
.y106{bottom:355.575000px;}
.ybf{bottom:357.555000px;}
.y69{bottom:358.095000px;}
.y8b{bottom:359.715000px;}
.ycc{bottom:362.055000px;}
.y32{bottom:369.255000px;}
.y105{bottom:372.855000px;}
.ybe{bottom:374.835000px;}
.y8a{bottom:376.995000px;}
.y68{bottom:379.335000px;}
.y31{bottom:386.535000px;}
.y104{bottom:390.135000px;}
.ybd{bottom:391.935000px;}
.y89{bottom:394.275000px;}
.ydb{bottom:396.075000px;}
.y67{bottom:396.435000px;}
.y30{bottom:403.635000px;}
.y103{bottom:407.235000px;}
.ybc{bottom:409.215000px;}
.y88{bottom:411.555000px;}
.y66{bottom:413.715000px;}
.y2f{bottom:420.915000px;}
.ybb{bottom:423.975000px;}
.y102{bottom:424.515000px;}
.y87{bottom:428.835000px;}
.y65{bottom:430.995000px;}
.y2e{bottom:438.195000px;}
.yba{bottom:441.255000px;}
.y101{bottom:441.795000px;}
.y86{bottom:443.595000px;}
.y64{bottom:448.275000px;}
.y2d{bottom:455.475000px;}
.yb9{bottom:458.535000px;}
.y100{bottom:459.075000px;}
.y85{bottom:460.695000px;}
.y63{bottom:465.555000px;}
.y2c{bottom:472.755000px;}
.yb8{bottom:475.815000px;}
.yff{bottom:476.355000px;}
.y84{bottom:477.975000px;}
.y62{bottom:482.835000px;}
.y2b{bottom:492.555000px;}
.yb7{bottom:493.095000px;}
.yfe{bottom:493.455000px;}
.y83{bottom:495.255000px;}
.y61{bottom:499.935000px;}
.y2a{bottom:509.835000px;}
.yb6{bottom:510.195000px;}
.yfd{bottom:511.815000px;}
.y82{bottom:512.535000px;}
.y60{bottom:517.215000px;}
.y29{bottom:527.115000px;}
.yb5{bottom:527.475000px;}
.yfc{bottom:529.095000px;}
.y81{bottom:529.815000px;}
.y5f{bottom:534.495000px;}
.y28{bottom:544.395000px;}
.yb4{bottom:544.755000px;}
.yfb{bottom:546.375000px;}
.y80{bottom:546.915000px;}
.y5e{bottom:551.775000px;}
.y27{bottom:561.495000px;}
.ye6{bottom:561.675000px;}
.yb3{bottom:562.035000px;}
.yfa{bottom:563.655000px;}
.y7f{bottom:564.195000px;}
.y5d{bottom:569.055000px;}
.y26{bottom:578.775000px;}
.yb2{bottom:579.315000px;}
.y7e{bottom:581.475000px;}
.yf9{bottom:582.015000px;}
.y5c{bottom:586.155000px;}
.y25{bottom:596.055000px;}
.yb1{bottom:596.415000px;}
.y7d{bottom:598.755000px;}
.yf8{bottom:599.115000px;}
.y5b{bottom:603.435000px;}
.y24{bottom:613.365000px;}
.yb0{bottom:614.445000px;}
.y7c{bottom:616.065000px;}
.yf7{bottom:616.425000px;}
.y5a{bottom:620.745000px;}
.y23{bottom:630.645000px;}
.yf6{bottom:633.705000px;}
.y7b{bottom:634.065000px;}
.yaf{bottom:635.685000px;}
.y59{bottom:638.025000px;}
.y22{bottom:647.925000px;}
.yf5{bottom:652.065000px;}
.yae{bottom:652.965000px;}
.y58{bottom:655.305000px;}
.y21{bottom:665.025000px;}
.yf4{bottom:669.345000px;}
.yad{bottom:670.245000px;}
.y57{bottom:672.585000px;}
.y20{bottom:682.305000px;}
.yf3{bottom:686.445000px;}
.yac{bottom:687.525000px;}
.y56{bottom:689.685000px;}
.y1f{bottom:699.585000px;}
.yf2{bottom:703.725000px;}
.yab{bottom:704.805000px;}
.y55{bottom:706.965000px;}
.y1e{bottom:716.865000px;}
.yf1{bottom:721.005000px;}
.yaa{bottom:722.085000px;}
.y54{bottom:724.245000px;}
.y1d{bottom:734.145000px;}
.ya9{bottom:739.185000px;}
.yf0{bottom:739.365000px;}
.y53{bottom:741.525000px;}
.y1c{bottom:751.245000px;}
.ya8{bottom:756.465000px;}
.yef{bottom:756.645000px;}
.y52{bottom:758.805000px;}
.y1b{bottom:768.525000px;}
.ya7{bottom:773.745000px;}
.yee{bottom:773.925000px;}
.y51{bottom:776.085000px;}
.y1a{bottom:785.805000px;}
.ya6{bottom:791.025000px;}
.yed{bottom:792.105000px;}
.y50{bottom:793.185000px;}
.y19{bottom:803.085000px;}
.ya5{bottom:808.305000px;}
.yec{bottom:809.385000px;}
.y4f{bottom:810.465000px;}
.y18{bottom:820.365000px;}
.ya4{bottom:823.065000px;}
.yeb{bottom:826.665000px;}
.y4e{bottom:827.745000px;}
.y17{bottom:837.645000px;}
.ya3{bottom:840.345000px;}
.yea{bottom:843.945000px;}
.y4d{bottom:845.025000px;}
.y16{bottom:857.085000px;}
.ya2{bottom:857.445000px;}
.ye9{bottom:861.225000px;}
.y4c{bottom:862.305000px;}
.y15{bottom:874.770000px;}
.y4b{bottom:879.630000px;}
.ya1{bottom:892.050000px;}
.y14{bottom:893.850000px;}
.y4a{bottom:896.730000px;}
.ya0{bottom:909.330000px;}
.y13{bottom:912.750000px;}
.y49{bottom:914.010000px;}
.y9f{bottom:926.610000px;}
.y48{bottom:931.290000px;}
.y12{bottom:932.010000px;}
.y9e{bottom:943.710000px;}
.y47{bottom:948.570000px;}
.y11{bottom:952.350000px;}
.y9d{bottom:960.990000px;}
.y46{bottom:965.850000px;}
.y10{bottom:971.430000px;}
.y9c{bottom:978.270000px;}
.y45{bottom:982.950000px;}
.yf{bottom:990.330000px;}
.y9a{bottom:995.550000px;}
.y44{bottom:1000.230000px;}
.ye{bottom:1009.410000px;}
.y43{bottom:1017.510000px;}
.yd{bottom:1028.670000px;}
.y99{bottom:1030.830000px;}
.y42{bottom:1034.790000px;}
.yc{bottom:1049.370000px;}
.y41{bottom:1052.070000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1089.150000px;}
.y6{bottom:1104.990000px;}
.y5{bottom:1122.990000px;}
.y4{bottom:1139.760000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hb{height:17.100000px;}
.hd{height:17.280000px;}
.hc{height:17.316000px;}
.hf{height:34.380000px;}
.he{height:34.560000px;}
.h11{height:36.068555px;}
.h6{height:37.705078px;}
.h13{height:38.100586px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.ha{height:43.302656px;}
.h9{height:43.506914px;}
.h3{height:46.251562px;}
.h8{height:46.736719px;}
.h4{height:50.800781px;}
.h7{height:65.884219px;}
.h12{height:79.236000px;}
.h10{height:91.620000px;}
.h14{height:107.419922px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:53.316000px;}
.wb{width:63.396000px;}
.we{width:63.720000px;}
.w8{width:63.756000px;}
.wf{width:74.340000px;}
.w13{width:105.876000px;}
.w14{width:106.056000px;}
.w6{width:106.200000px;}
.wc{width:112.860000px;}
.w9{width:113.040000px;}
.w12{width:117.756000px;}
.w10{width:138.276000px;}
.w11{width:191.370000px;}
.wd{width:202.170000px;}
.w3{width:265.350000px;}
.w4{width:266.250000px;}
.wa{width:501.015000px;}
.w7{width:516.495000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.100000px;}
.x38{left:13.320000px;}
.x3c{left:14.760000px;}
.x1f{left:19.080000px;}
.x45{left:20.700000px;}
.x1c{left:22.320000px;}
.x35{left:24.660000px;}
.x2d{left:25.920000px;}
.x37{left:28.260000px;}
.x40{left:30.420000px;}
.x41{left:35.460000px;}
.x3d{left:37.080000px;}
.x20{left:39.960000px;}
.x2e{left:42.660000px;}
.x23{left:43.740000px;}
.x1e{left:45.540000px;}
.x3b{left:49.860000px;}
.x44{left:52.965000px;}
.x42{left:58.860000px;}
.x3e{left:60.300000px;}
.x29{left:75.060000px;}
.x27{left:87.120000px;}
.x28{left:94.500000px;}
.x24{left:97.560000px;}
.x22{left:98.640000px;}
.x18{left:99.936000px;}
.x26{left:105.690000px;}
.x1{left:108.035987px;}
.x25{left:109.830000px;}
.xf{left:111.635987px;}
.x8{left:113.615987px;}
.x21{left:117.750000px;}
.x2{left:123.155987px;}
.x12{left:135.035987px;}
.xe{left:139.355987px;}
.x4{left:157.169987px;}
.x14{left:162.029987px;}
.x13{left:189.029987px;}
.xb{left:190.469987px;}
.x7{left:205.949987px;}
.x2f{left:213.879000px;}
.x48{left:216.029987px;}
.xc{left:221.609987px;}
.x31{left:223.779000px;}
.x43{left:226.470000px;}
.x17{left:258.689987px;}
.x2a{left:276.329987px;}
.x34{left:282.314987px;}
.x30{left:286.094987px;}
.xd{left:298.694987px;}
.x36{left:302.115000px;}
.x16{left:346.394987px;}
.x1a{left:365.295000px;}
.xa{left:370.154987px;}
.x3f{left:381.315000px;}
.x15{left:384.554987px;}
.x10{left:386.534987px;}
.x47{left:388.155000px;}
.x6{left:396.434987px;}
.x11{left:398.954987px;}
.x5{left:412.274987px;}
.x39{left:440.175000px;}
.x9{left:446.474987px;}
.x3{left:518.504987px;}
.x46{left:551.985000px;}
.x3a{left:578.445000px;}
.x32{left:600.945000px;}
.x2b{left:616.425000px;}
.x1b{left:631.545000px;}
.x33{left:664.350000px;}
.x2c{left:680.190000px;}
.x1d{left:684.870000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:19.152640pt;}
.ls6{letter-spacing:37.072640pt;}
.ls5{letter-spacing:39.632640pt;}
.ls4{letter-spacing:40.891307pt;}
.lsb{letter-spacing:49.232640pt;}
.ls9{letter-spacing:56.891307pt;}
.ws7{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws2{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.360000pt;}
.ws3{word-spacing:0.000000pt;}
._1e{margin-left:-7.286613pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._7{width:2.426240pt;}
._2{width:3.773867pt;}
._8{width:4.773973pt;}
._15{width:5.683840pt;}
._b{width:6.586880pt;}
._f{width:7.635627pt;}
._e{width:8.824747pt;}
._c{width:10.032853pt;}
._6{width:11.792640pt;}
._11{width:14.766720pt;}
._d{width:15.789653pt;}
._9{width:17.084800pt;}
._a{width:18.294187pt;}
._13{width:19.335680pt;}
._12{width:20.398080pt;}
._14{width:21.287467pt;}
._10{width:22.462933pt;}
._16{width:23.797760pt;}
._17{width:26.533973pt;}
._18{width:27.873493pt;}
._1b{width:29.299200pt;}
._1a{width:30.292907pt;}
._22{width:36.440320pt;}
._19{width:39.415040pt;}
._1c{width:49.560960pt;}
._24{width:72.448853pt;}
._23{width:73.464960pt;}
._5{width:76.138667pt;}
._1d{width:80.225707pt;}
._25{width:124.931413pt;}
._1f{width:126.896853pt;}
._20{width:127.912960pt;}
._21{width:129.256107pt;}
._26{width:136.465280pt;}
._27{width:243.973333pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs4{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.ye2{bottom:-27.520000pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:0.480000pt;}
.y6a{bottom:2.880000pt;}
.ye0{bottom:14.560000pt;}
.y74{bottom:15.200000pt;}
.y70{bottom:15.360000pt;}
.y6d{bottom:15.400000pt;}
.y9b{bottom:18.240000pt;}
.ydf{bottom:28.480000pt;}
.yb{bottom:32.640000pt;}
.ye8{bottom:33.600000pt;}
.ye4{bottom:33.640000pt;}
.yde{bottom:42.560000pt;}
.ya{bottom:49.120000pt;}
.ydd{bottom:56.640000pt;}
.ye7{bottom:59.066667pt;}
.ye3{bottom:59.080000pt;}
.y9{bottom:62.912000pt;}
.ydc{bottom:70.720000pt;}
.ycb{bottom:101.152000pt;}
.y98{bottom:105.152000pt;}
.yda{bottom:107.072000pt;}
.y40{bottom:113.472000pt;}
.yca{bottom:114.272000pt;}
.y113{bottom:116.672000pt;}
.y7a{bottom:120.512000pt;}
.yd9{bottom:122.432000pt;}
.y3f{bottom:128.832000pt;}
.y112{bottom:132.032000pt;}
.y79{bottom:133.626667pt;}
.y97{bottom:135.706667pt;}
.yd8{bottom:137.786667pt;}
.y3e{bottom:144.186667pt;}
.yc9{bottom:144.826667pt;}
.y111{bottom:147.386667pt;}
.y78{bottom:148.826667pt;}
.y96{bottom:151.066667pt;}
.yd7{bottom:153.146667pt;}
.y3d{bottom:159.546667pt;}
.yc8{bottom:160.186667pt;}
.y110{bottom:162.746667pt;}
.y77{bottom:164.186667pt;}
.y95{bottom:166.426667pt;}
.yd6{bottom:168.506667pt;}
.y3c{bottom:174.746667pt;}
.y10f{bottom:177.946667pt;}
.y76{bottom:179.546667pt;}
.y94{bottom:181.786667pt;}
.yd5{bottom:183.706667pt;}
.y3b{bottom:190.106667pt;}
.yc7{bottom:191.546667pt;}
.y10e{bottom:193.306667pt;}
.y75{bottom:194.906667pt;}
.y93{bottom:197.146667pt;}
.yd4{bottom:199.066667pt;}
.y3a{bottom:205.466667pt;}
.y10d{bottom:208.666667pt;}
.y73{bottom:210.266667pt;}
.yc6{bottom:210.426667pt;}
.y92{bottom:212.346667pt;}
.yd3{bottom:214.426667pt;}
.y39{bottom:220.826667pt;}
.y10c{bottom:224.026667pt;}
.y72{bottom:225.466667pt;}
.yc5{bottom:225.786667pt;}
.y91{bottom:227.706667pt;}
.yd2{bottom:229.786667pt;}
.y38{bottom:236.186667pt;}
.y10b{bottom:239.386667pt;}
.y71{bottom:240.826667pt;}
.yc4{bottom:241.146667pt;}
.y90{bottom:243.066667pt;}
.yd1{bottom:245.146667pt;}
.y37{bottom:251.546667pt;}
.y10a{bottom:254.746667pt;}
.y6f{bottom:256.186667pt;}
.yc3{bottom:256.346667pt;}
.y8f{bottom:258.426667pt;}
.yd0{bottom:260.346667pt;}
.y36{bottom:266.746667pt;}
.y109{bottom:269.946667pt;}
.y6e{bottom:271.546667pt;}
.yc2{bottom:271.706667pt;}
.y8e{bottom:273.786667pt;}
.ycf{bottom:275.706667pt;}
.y35{bottom:282.106667pt;}
.y108{bottom:285.306667pt;}
.y6c{bottom:286.906667pt;}
.yc1{bottom:287.066667pt;}
.y8d{bottom:289.146667pt;}
.yce{bottom:291.066667pt;}
.ye5{bottom:296.666667pt;}
.y34{bottom:297.466667pt;}
.y107{bottom:300.706667pt;}
.y6b{bottom:302.306667pt;}
.yc0{bottom:302.466667pt;}
.y8c{bottom:304.386667pt;}
.ycd{bottom:306.466667pt;}
.y33{bottom:312.866667pt;}
.y106{bottom:316.066667pt;}
.ybf{bottom:317.826667pt;}
.y69{bottom:318.306667pt;}
.y8b{bottom:319.746667pt;}
.ycc{bottom:321.826667pt;}
.y32{bottom:328.226667pt;}
.y105{bottom:331.426667pt;}
.ybe{bottom:333.186667pt;}
.y8a{bottom:335.106667pt;}
.y68{bottom:337.186667pt;}
.y31{bottom:343.586667pt;}
.y104{bottom:346.786667pt;}
.ybd{bottom:348.386667pt;}
.y89{bottom:350.466667pt;}
.ydb{bottom:352.066667pt;}
.y67{bottom:352.386667pt;}
.y30{bottom:358.786667pt;}
.y103{bottom:361.986667pt;}
.ybc{bottom:363.746667pt;}
.y88{bottom:365.826667pt;}
.y66{bottom:367.746667pt;}
.y2f{bottom:374.146667pt;}
.ybb{bottom:376.866667pt;}
.y102{bottom:377.346667pt;}
.y87{bottom:381.186667pt;}
.y65{bottom:383.106667pt;}
.y2e{bottom:389.506667pt;}
.yba{bottom:392.226667pt;}
.y101{bottom:392.706667pt;}
.y86{bottom:394.306667pt;}
.y64{bottom:398.466667pt;}
.y2d{bottom:404.866667pt;}
.yb9{bottom:407.586667pt;}
.y100{bottom:408.066667pt;}
.y85{bottom:409.506667pt;}
.y63{bottom:413.826667pt;}
.y2c{bottom:420.226667pt;}
.yb8{bottom:422.946667pt;}
.yff{bottom:423.426667pt;}
.y84{bottom:424.866667pt;}
.y62{bottom:429.186667pt;}
.y2b{bottom:437.826667pt;}
.yb7{bottom:438.306667pt;}
.yfe{bottom:438.626667pt;}
.y83{bottom:440.226667pt;}
.y61{bottom:444.386667pt;}
.y2a{bottom:453.186667pt;}
.yb6{bottom:453.506667pt;}
.yfd{bottom:454.946667pt;}
.y82{bottom:455.586667pt;}
.y60{bottom:459.746667pt;}
.y29{bottom:468.546667pt;}
.yb5{bottom:468.866667pt;}
.yfc{bottom:470.306667pt;}
.y81{bottom:470.946667pt;}
.y5f{bottom:475.106667pt;}
.y28{bottom:483.906667pt;}
.yb4{bottom:484.226667pt;}
.yfb{bottom:485.666667pt;}
.y80{bottom:486.146667pt;}
.y5e{bottom:490.466667pt;}
.y27{bottom:499.106667pt;}
.ye6{bottom:499.266667pt;}
.yb3{bottom:499.586667pt;}
.yfa{bottom:501.026667pt;}
.y7f{bottom:501.506667pt;}
.y5d{bottom:505.826667pt;}
.y26{bottom:514.466667pt;}
.yb2{bottom:514.946667pt;}
.y7e{bottom:516.866667pt;}
.yf9{bottom:517.346667pt;}
.y5c{bottom:521.026667pt;}
.y25{bottom:529.826667pt;}
.yb1{bottom:530.146667pt;}
.y7d{bottom:532.226667pt;}
.yf8{bottom:532.546667pt;}
.y5b{bottom:536.386667pt;}
.y24{bottom:545.213333pt;}
.yb0{bottom:546.173333pt;}
.y7c{bottom:547.613333pt;}
.yf7{bottom:547.933333pt;}
.y5a{bottom:551.773333pt;}
.y23{bottom:560.573333pt;}
.yf6{bottom:563.293333pt;}
.y7b{bottom:563.613333pt;}
.yaf{bottom:565.053333pt;}
.y59{bottom:567.133333pt;}
.y22{bottom:575.933333pt;}
.yf5{bottom:579.613333pt;}
.yae{bottom:580.413333pt;}
.y58{bottom:582.493333pt;}
.y21{bottom:591.133333pt;}
.yf4{bottom:594.973333pt;}
.yad{bottom:595.773333pt;}
.y57{bottom:597.853333pt;}
.y20{bottom:606.493333pt;}
.yf3{bottom:610.173333pt;}
.yac{bottom:611.133333pt;}
.y56{bottom:613.053333pt;}
.y1f{bottom:621.853333pt;}
.yf2{bottom:625.533333pt;}
.yab{bottom:626.493333pt;}
.y55{bottom:628.413333pt;}
.y1e{bottom:637.213333pt;}
.yf1{bottom:640.893333pt;}
.yaa{bottom:641.853333pt;}
.y54{bottom:643.773333pt;}
.y1d{bottom:652.573333pt;}
.ya9{bottom:657.053333pt;}
.yf0{bottom:657.213333pt;}
.y53{bottom:659.133333pt;}
.y1c{bottom:667.773333pt;}
.ya8{bottom:672.413333pt;}
.yef{bottom:672.573333pt;}
.y52{bottom:674.493333pt;}
.y1b{bottom:683.133333pt;}
.ya7{bottom:687.773333pt;}
.yee{bottom:687.933333pt;}
.y51{bottom:689.853333pt;}
.y1a{bottom:698.493333pt;}
.ya6{bottom:703.133333pt;}
.yed{bottom:704.093333pt;}
.y50{bottom:705.053333pt;}
.y19{bottom:713.853333pt;}
.ya5{bottom:718.493333pt;}
.yec{bottom:719.453333pt;}
.y4f{bottom:720.413333pt;}
.y18{bottom:729.213333pt;}
.ya4{bottom:731.613333pt;}
.yeb{bottom:734.813333pt;}
.y4e{bottom:735.773333pt;}
.y17{bottom:744.573333pt;}
.ya3{bottom:746.973333pt;}
.yea{bottom:750.173333pt;}
.y4d{bottom:751.133333pt;}
.y16{bottom:761.853333pt;}
.ya2{bottom:762.173333pt;}
.ye9{bottom:765.533333pt;}
.y4c{bottom:766.493333pt;}
.y15{bottom:777.573333pt;}
.y4b{bottom:781.893333pt;}
.ya1{bottom:792.933333pt;}
.y14{bottom:794.533333pt;}
.y4a{bottom:797.093333pt;}
.ya0{bottom:808.293333pt;}
.y13{bottom:811.333333pt;}
.y49{bottom:812.453333pt;}
.y9f{bottom:823.653333pt;}
.y48{bottom:827.813333pt;}
.y12{bottom:828.453333pt;}
.y9e{bottom:838.853333pt;}
.y47{bottom:843.173333pt;}
.y11{bottom:846.533333pt;}
.y9d{bottom:854.213333pt;}
.y46{bottom:858.533333pt;}
.y10{bottom:863.493333pt;}
.y9c{bottom:869.573333pt;}
.y45{bottom:873.733333pt;}
.yf{bottom:880.293333pt;}
.y9a{bottom:884.933333pt;}
.y44{bottom:889.093333pt;}
.ye{bottom:897.253333pt;}
.y43{bottom:904.453333pt;}
.yd{bottom:914.373333pt;}
.y99{bottom:916.293333pt;}
.y42{bottom:919.813333pt;}
.yc{bottom:932.773333pt;}
.y41{bottom:935.173333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:968.133333pt;}
.y6{bottom:982.213333pt;}
.y5{bottom:998.213333pt;}
.y4{bottom:1013.120000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hb{height:15.200000pt;}
.hd{height:15.360000pt;}
.hc{height:15.392000pt;}
.hf{height:30.560000pt;}
.he{height:30.720000pt;}
.h11{height:32.060937pt;}
.h6{height:33.515625pt;}
.h13{height:33.867188pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.ha{height:38.491250pt;}
.h9{height:38.672812pt;}
.h3{height:41.112500pt;}
.h8{height:41.543750pt;}
.h4{height:45.156250pt;}
.h7{height:58.563750pt;}
.h12{height:70.432000pt;}
.h10{height:81.440000pt;}
.h14{height:95.484375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:47.392000pt;}
.wb{width:56.352000pt;}
.we{width:56.640000pt;}
.w8{width:56.672000pt;}
.wf{width:66.080000pt;}
.w13{width:94.112000pt;}
.w14{width:94.272000pt;}
.w6{width:94.400000pt;}
.wc{width:100.320000pt;}
.w9{width:100.480000pt;}
.w12{width:104.672000pt;}
.w10{width:122.912000pt;}
.w11{width:170.106667pt;}
.wd{width:179.706667pt;}
.w3{width:235.866667pt;}
.w4{width:236.666667pt;}
.wa{width:445.346667pt;}
.w7{width:459.106667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.200000pt;}
.x38{left:11.840000pt;}
.x3c{left:13.120000pt;}
.x1f{left:16.960000pt;}
.x45{left:18.400000pt;}
.x1c{left:19.840000pt;}
.x35{left:21.920000pt;}
.x2d{left:23.040000pt;}
.x37{left:25.120000pt;}
.x40{left:27.040000pt;}
.x41{left:31.520000pt;}
.x3d{left:32.960000pt;}
.x20{left:35.520000pt;}
.x2e{left:37.920000pt;}
.x23{left:38.880000pt;}
.x1e{left:40.480000pt;}
.x3b{left:44.320000pt;}
.x44{left:47.080000pt;}
.x42{left:52.320000pt;}
.x3e{left:53.600000pt;}
.x29{left:66.720000pt;}
.x27{left:77.440000pt;}
.x28{left:84.000000pt;}
.x24{left:86.720000pt;}
.x22{left:87.680000pt;}
.x18{left:88.832000pt;}
.x26{left:93.946667pt;}
.x1{left:96.031988pt;}
.x25{left:97.626667pt;}
.xf{left:99.231988pt;}
.x8{left:100.991988pt;}
.x21{left:104.666667pt;}
.x2{left:109.471988pt;}
.x12{left:120.031988pt;}
.xe{left:123.871988pt;}
.x4{left:139.706655pt;}
.x14{left:144.026655pt;}
.x13{left:168.026655pt;}
.xb{left:169.306655pt;}
.x7{left:183.066655pt;}
.x2f{left:190.114667pt;}
.x48{left:192.026655pt;}
.xc{left:196.986655pt;}
.x31{left:198.914667pt;}
.x43{left:201.306667pt;}
.x17{left:229.946655pt;}
.x2a{left:245.626655pt;}
.x34{left:250.946655pt;}
.x30{left:254.306655pt;}
.xd{left:265.506655pt;}
.x36{left:268.546667pt;}
.x16{left:307.906655pt;}
.x1a{left:324.706667pt;}
.xa{left:329.026655pt;}
.x3f{left:338.946667pt;}
.x15{left:341.826655pt;}
.x10{left:343.586655pt;}
.x47{left:345.026667pt;}
.x6{left:352.386655pt;}
.x11{left:354.626655pt;}
.x5{left:366.466655pt;}
.x39{left:391.266667pt;}
.x9{left:396.866655pt;}
.x3{left:460.893322pt;}
.x46{left:490.653333pt;}
.x3a{left:514.173333pt;}
.x32{left:534.173333pt;}
.x2b{left:547.933333pt;}
.x1b{left:561.373333pt;}
.x33{left:590.533333pt;}
.x2c{left:604.613333pt;}
.x1d{left:608.773333pt;}
}




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