
    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_a9a832b17ccb81da15103a7b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5cc7ebc1c9497ba5938bf05c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4c763d58763cee541c1ce760.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_2d944ab0f58498e4cb64f020.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.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_3cdf79fa752c04600ee39527.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b3271715707b4a8740b7d812.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.891113;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls4{letter-spacing:-1.008000px;}
.lsc{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.106800px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.720000px;}
.ls3{letter-spacing:44.784000px;}
.ls1{letter-spacing:64.397280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.720000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.712000px;}
.ws5{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.833200px;}
.ws1{word-spacing:0.000000px;}
._a{margin-left:-4.608000px;}
._9{margin-left:-3.528000px;}
._17{margin-left:-2.520000px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._2{width:3.568800px;}
._3{width:4.717920px;}
._15{width:5.902080px;}
._6{width:7.016160px;}
._f{width:8.513280px;}
._14{width:9.593280px;}
._c{width:10.728000px;}
._b{width:11.808000px;}
._16{width:13.104000px;}
._10{width:14.760000px;}
._11{width:16.452000px;}
._7{width:18.028560px;}
._8{width:19.081920px;}
._d{width:21.024000px;}
._e{width:22.421280px;}
._19{width:24.018720px;}
._12{width:27.648000px;}
._13{width:28.709760px;}
._1a{width:29.755200px;}
._18{width:31.265280px;}
._1c{width:52.272000px;}
._1d{width:53.280000px;}
._20{width:63.144000px;}
._21{width:64.193760px;}
._4{width:73.569360px;}
._5{width:75.075840px;}
._22{width:82.224000px;}
._23{width:83.304000px;}
._1f{width:96.408000px;}
._1e{width:149.688000px;}
._1b{width:1099.152000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs5{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y96{bottom:3.240000px;}
.y90{bottom:6.840000px;}
.y92{bottom:7.020000px;}
.y9b{bottom:10.800000px;}
.ycc{bottom:11.880000px;}
.y95{bottom:20.520000px;}
.y94{bottom:37.800000px;}
.yc4{bottom:37.845000px;}
.ya0{bottom:46.440000px;}
.y99{bottom:55.080000px;}
.yc3{bottom:55.125000px;}
.y9f{bottom:72.180000px;}
.y98{bottom:72.360000px;}
.y6{bottom:76.176000px;}
.y9e{bottom:89.460000px;}
.y5{bottom:96.876000px;}
.y4{bottom:117.216000px;}
.y3{bottom:136.296000px;}
.y2{bottom:155.190000px;}
.y68{bottom:179.130000px;}
.y32{bottom:180.210000px;}
.y97{bottom:180.390000px;}
.y12a{bottom:183.810000px;}
.y86{bottom:187.050000px;}
.y50{bottom:192.090000px;}
.y101{bottom:199.470000px;}
.y31{bottom:200.910000px;}
.y129{bottom:204.510000px;}
.y67{bottom:210.090000px;}
.y85{bottom:218.190000px;}
.y100{bottom:220.170000px;}
.y30{bottom:221.610000px;}
.ye6{bottom:223.230000px;}
.y128{bottom:225.210000px;}
.y4f{bottom:228.990000px;}
.yc7{bottom:232.050000px;}
.yff{bottom:240.870000px;}
.y66{bottom:241.230000px;}
.y2f{bottom:242.310000px;}
.y127{bottom:245.910000px;}
.yb5{bottom:246.990000px;}
.y84{bottom:249.150000px;}
.ye5{bottom:254.190000px;}
.y4e{bottom:260.130000px;}
.yfe{bottom:261.570000px;}
.y2e{bottom:263.010000px;}
.y126{bottom:266.610000px;}
.yc6{bottom:267.690000px;}
.y93{bottom:268.230000px;}
.y65{bottom:272.190000px;}
.y83{bottom:280.290000px;}
.y2d{bottom:283.710000px;}
.yb4{bottom:284.070000px;}
.ye4{bottom:285.330000px;}
.y125{bottom:287.310000px;}
.yc5{bottom:287.670000px;}
.yfd{bottom:288.390000px;}
.y4d{bottom:291.090000px;}
.yc2{bottom:303.150000px;}
.y64{bottom:303.330000px;}
.y2c{bottom:304.410000px;}
.y124{bottom:308.010000px;}
.yfc{bottom:309.090000px;}
.y82{bottom:311.250000px;}
.ye3{bottom:316.290000px;}
.yb3{bottom:321.150000px;}
.y91{bottom:321.510000px;}
.y4c{bottom:322.230000px;}
.y2b{bottom:325.110000px;}
.y123{bottom:328.710000px;}
.yfb{bottom:329.790000px;}
.y63{bottom:334.290000px;}
.y81{bottom:342.435000px;}
.y2a{bottom:345.855000px;}
.ye2{bottom:347.475000px;}
.y8f{bottom:347.835000px;}
.y122{bottom:349.455000px;}
.y4b{bottom:353.235000px;}
.yfa{bottom:356.475000px;}
.yb2{bottom:358.275000px;}
.y62{bottom:365.475000px;}
.y29{bottom:366.555000px;}
.y121{bottom:370.155000px;}
.y80{bottom:373.395000px;}
.yc1{bottom:373.755000px;}
.yf9{bottom:377.175000px;}
.y4a{bottom:384.375000px;}
.ye1{bottom:384.555000px;}
.y28{bottom:387.255000px;}
.yb1{bottom:389.235000px;}
.y120{bottom:390.855000px;}
.y8e{bottom:394.275000px;}
.y61{bottom:396.435000px;}
.yf8{bottom:397.875000px;}
.y7f{bottom:404.535000px;}
.y27{bottom:407.955000px;}
.y11f{bottom:411.555000px;}
.y49{bottom:415.335000px;}
.ye0{bottom:415.515000px;}
.yf7{bottom:418.575000px;}
.yb0{bottom:420.375000px;}
.yc0{bottom:427.035000px;}
.y60{bottom:427.575000px;}
.y26{bottom:428.655000px;}
.y8d{bottom:431.355000px;}
.y11e{bottom:432.255000px;}
.y7e{bottom:435.495000px;}
.yf6{bottom:439.275000px;}
.y48{bottom:446.475000px;}
.ydf{bottom:446.655000px;}
.y25{bottom:449.355000px;}
.yaf{bottom:451.335000px;}
.y11d{bottom:452.955000px;}
.y5f{bottom:458.535000px;}
.y7d{bottom:466.455000px;}
.ybf{bottom:467.535000px;}
.y8c{bottom:468.435000px;}
.y24{bottom:470.055000px;}
.yde{bottom:477.615000px;}
.yf5{bottom:478.515000px;}
.y11c{bottom:479.595000px;}
.yae{bottom:482.475000px;}
.y47{bottom:483.555000px;}
.y23{bottom:490.755000px;}
.y7c{bottom:497.595000px;}
.ybe{bottom:498.675000px;}
.y8b{bottom:499.395000px;}
.y11b{bottom:500.295000px;}
.y5e{bottom:503.535000px;}
.ydd{bottom:508.755000px;}
.y22{bottom:511.455000px;}
.y46{bottom:514.515000px;}
.yad{bottom:518.115000px;}
.y11a{bottom:520.995000px;}
.yf4{bottom:521.535000px;}
.y7b{bottom:528.555000px;}
.ybd{bottom:529.635000px;}
.y8a{bottom:530.535000px;}
.y21{bottom:532.155000px;}
.yac{bottom:538.095000px;}
.ydc{bottom:539.715000px;}
.y119{bottom:541.695000px;}
.y45{bottom:545.655000px;}
.y20{bottom:552.855000px;}
.yab{bottom:553.575000px;}
.yf3{bottom:558.615000px;}
.y7a{bottom:559.695000px;}
.ybc{bottom:560.775000px;}
.y89{bottom:567.615000px;}
.y118{bottom:568.335000px;}
.ydb{bottom:570.855000px;}
.y1f{bottom:573.555000px;}
.y44{bottom:576.615000px;}
.y117{bottom:589.035000px;}
.yf2{bottom:589.575000px;}
.y79{bottom:590.655000px;}
.ybb{bottom:591.735000px;}
.y1e{bottom:594.255000px;}
.y88{bottom:598.575000px;}
.yda{bottom:601.815000px;}
.yaa{bottom:606.885000px;}
.y43{bottom:607.785000px;}
.y116{bottom:609.765000px;}
.y1d{bottom:614.985000px;}
.yf1{bottom:620.745000px;}
.y78{bottom:621.825000px;}
.yba{bottom:622.905000px;}
.y115{bottom:630.465000px;}
.yd9{bottom:632.985000px;}
.ya9{bottom:633.165000px;}
.y1c{bottom:635.685000px;}
.y87{bottom:640.905000px;}
.y42{bottom:644.685000px;}
.y114{bottom:651.165000px;}
.yf0{bottom:651.705000px;}
.y77{bottom:652.785000px;}
.yb9{bottom:653.865000px;}
.y1b{bottom:656.385000px;}
.ya8{bottom:659.445000px;}
.yd8{bottom:669.885000px;}
.y113{bottom:671.865000px;}
.y41{bottom:675.825000px;}
.y1a{bottom:677.085000px;}
.y76{bottom:683.925000px;}
.yb8{bottom:685.005000px;}
.yef{bottom:690.945000px;}
.y112{bottom:692.565000px;}
.y19{bottom:697.785000px;}
.yd7{bottom:701.025000px;}
.ya7{bottom:705.885000px;}
.y40{bottom:706.785000px;}
.y111{bottom:713.265000px;}
.y75{bottom:714.885000px;}
.y18{bottom:718.485000px;}
.yb7{bottom:719.925000px;}
.y5d{bottom:725.685000px;}
.yd6{bottom:731.985000px;}
.yee{bottom:733.965000px;}
.y3f{bottom:737.925000px;}
.y17{bottom:739.185000px;}
.y74{bottom:746.025000px;}
.ya6{bottom:751.965000px;}
.y110{bottom:754.665000px;}
.yb6{bottom:756.285000px;}
.y16{bottom:759.885000px;}
.y5c{bottom:762.945000px;}
.yd5{bottom:763.125000px;}
.y3e{bottom:768.885000px;}
.yed{bottom:771.045000px;}
.y10f{bottom:775.365000px;}
.y73{bottom:776.985000px;}
.y15{bottom:780.585000px;}
.y132{bottom:781.305000px;}
.ya5{bottom:783.105000px;}
.y5b{bottom:793.905000px;}
.yd4{bottom:794.085000px;}
.y10e{bottom:796.065000px;}
.y3d{bottom:800.025000px;}
.y14{bottom:801.105000px;}
.yec{bottom:802.005000px;}
.y72{bottom:808.125000px;}
.ya4{bottom:814.065000px;}
.y10d{bottom:816.765000px;}
.y13{bottom:821.805000px;}
.y131{bottom:822.705000px;}
.y5a{bottom:825.045000px;}
.yd3{bottom:825.225000px;}
.y3c{bottom:830.985000px;}
.yeb{bottom:833.145000px;}
.y10c{bottom:837.465000px;}
.y71{bottom:839.085000px;}
.y12{bottom:842.505000px;}
.y130{bottom:843.405000px;}
.ya3{bottom:845.205000px;}
.y59{bottom:856.005000px;}
.yd2{bottom:856.185000px;}
.y10b{bottom:858.165000px;}
.y11{bottom:863.205000px;}
.yea{bottom:864.105000px;}
.y3b{bottom:868.065000px;}
.y70{bottom:870.225000px;}
.ya2{bottom:880.890000px;}
.y10{bottom:883.950000px;}
.y10a{bottom:884.850000px;}
.y58{bottom:887.190000px;}
.yd1{bottom:893.310000px;}
.ye9{bottom:895.290000px;}
.y3a{bottom:899.250000px;}
.ya1{bottom:900.870000px;}
.y6f{bottom:901.230000px;}
.yf{bottom:904.650000px;}
.y109{bottom:905.550000px;}
.y12f{bottom:911.670000px;}
.y9d{bottom:916.350000px;}
.y57{bottom:918.150000px;}
.ye8{bottom:926.250000px;}
.ye{bottom:926.790000px;}
.yd0{bottom:928.230000px;}
.y39{bottom:930.210000px;}
.y6e{bottom:932.370000px;}
.ycf{bottom:945.510000px;}
.y108{bottom:946.950000px;}
.y56{bottom:949.110000px;}
.y12e{bottom:953.070000px;}
.yd{bottom:954.330000px;}
.ye7{bottom:957.390000px;}
.y38{bottom:961.350000px;}
.yce{bottom:962.790000px;}
.y6d{bottom:963.330000px;}
.y107{bottom:967.650000px;}
.y12d{bottom:973.770000px;}
.ycd{bottom:978.270000px;}
.y55{bottom:980.250000px;}
.yc{bottom:981.870000px;}
.y106{bottom:988.350000px;}
.y37{bottom:992.310000px;}
.y6c{bottom:994.470000px;}
.ycb{bottom:1004.550000px;}
.y105{bottom:1009.050000px;}
.yb{bottom:1009.590000px;}
.y54{bottom:1011.210000px;}
.y12c{bottom:1015.170000px;}
.y9c{bottom:1021.290000px;}
.y36{bottom:1023.450000px;}
.y6b{bottom:1025.430000px;}
.y104{bottom:1029.750000px;}
.y12b{bottom:1035.870000px;}
.ya{bottom:1037.130000px;}
.y53{bottom:1042.350000px;}
.yca{bottom:1050.450000px;}
.y35{bottom:1054.410000px;}
.y6a{bottom:1056.570000px;}
.y9{bottom:1064.670000px;}
.yc9{bottom:1071.150000px;}
.y52{bottom:1073.310000px;}
.y103{bottom:1077.270000px;}
.y34{bottom:1085.550000px;}
.y69{bottom:1087.530000px;}
.yc8{bottom:1091.850000px;}
.y8{bottom:1092.390000px;}
.y102{bottom:1097.970000px;}
.y9a{bottom:1109.130000px;}
.y51{bottom:1115.610000px;}
.y33{bottom:1115.790000px;}
.y7{bottom:1118.670000px;}
.y1{bottom:1233.900000px;}
.ha{height:24.660000px;}
.hc{height:24.696000px;}
.h12{height:24.840000px;}
.h15{height:34.560000px;}
.h16{height:40.472227px;}
.he{height:51.660000px;}
.h13{height:51.876000px;}
.hb{height:53.077852px;}
.hd{height:53.573906px;}
.h4{height:59.343750px;}
.h3{height:59.383125px;}
.h8{height:63.949219px;}
.h2{height:64.546875px;}
.h14{height:69.156000px;}
.h9{height:70.606406px;}
.h7{height:74.820586px;}
.h6{height:78.927188px;}
.h5{height:85.052461px;}
.h10{height:86.220000px;}
.hf{height:86.400000px;}
.h11{height:103.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:111.096000px;}
.w9{width:111.816000px;}
.w8{width:115.560000px;}
.w4{width:126.756000px;}
.w6{width:143.676000px;}
.w5{width:144.396000px;}
.wd{width:148.176000px;}
.wc{width:148.896000px;}
.w3{width:172.470000px;}
.wf{width:243.750000px;}
.wb{width:244.515000px;}
.we{width:244.650000px;}
.w7{width:280.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:5.220000px;}
.x26{left:19.800000px;}
.x23{left:21.420000px;}
.x25{left:27.360000px;}
.x11{left:28.800000px;}
.x18{left:36.000000px;}
.x15{left:38.520000px;}
.x19{left:39.960000px;}
.x30{left:42.120000px;}
.x1b{left:43.740000px;}
.x16{left:46.980000px;}
.x1c{left:49.320000px;}
.x37{left:51.165000px;}
.x13{left:55.080000px;}
.x2e{left:57.420000px;}
.xf{left:59.085000px;}
.x1a{left:71.820000px;}
.x2f{left:73.980000px;}
.x17{left:93.060000px;}
.x2c{left:95.085000px;}
.x38{left:102.450000px;}
.x21{left:113.085000px;}
.x35{left:119.010000px;}
.x2{left:127.475987px;}
.x32{left:130.355987px;}
.x34{left:147.636000px;}
.xb{left:154.469987px;}
.x5{left:165.449987px;}
.x4{left:169.949987px;}
.x29{left:176.969987px;}
.xc{left:181.469987px;}
.x6{left:191.189987px;}
.x20{left:212.430000px;}
.x31{left:240.869987px;}
.xe{left:244.470000px;}
.x1f{left:245.549987px;}
.x9{left:259.229987px;}
.x2b{left:270.390000px;}
.xd{left:300.134987px;}
.x1d{left:308.234987px;}
.x7{left:322.994987px;}
.x39{left:352.154987px;}
.x28{left:363.674987px;}
.x33{left:393.374987px;}
.x2a{left:397.334987px;}
.x10{left:418.575000px;}
.x1e{left:467.744987px;}
.x1{left:488.984987px;}
.x22{left:494.385000px;}
.x2d{left:516.345000px;}
.x12{left:546.765000px;}
.x24{left:611.385000px;}
.x36{left:639.105000px;}
.xa{left:684.329987px;}
.x27{left:721.949987px;}
.x8{left:765.509987px;}
.x3{left:807.989987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls4{letter-spacing:-0.896000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls3{letter-spacing:39.808000pt;}
.ls1{letter-spacing:57.242027pt;}
.ws2{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws5{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.185067pt;}
.ws1{word-spacing:0.000000pt;}
._a{margin-left:-4.096000pt;}
._9{margin-left:-3.136000pt;}
._17{margin-left:-2.240000pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._2{width:3.172267pt;}
._3{width:4.193707pt;}
._15{width:5.246293pt;}
._6{width:6.236587pt;}
._f{width:7.567360pt;}
._14{width:8.527360pt;}
._c{width:9.536000pt;}
._b{width:10.496000pt;}
._16{width:11.648000pt;}
._10{width:13.120000pt;}
._11{width:14.624000pt;}
._7{width:16.025387pt;}
._8{width:16.961707pt;}
._d{width:18.688000pt;}
._e{width:19.930027pt;}
._19{width:21.349973pt;}
._12{width:24.576000pt;}
._13{width:25.519787pt;}
._1a{width:26.449067pt;}
._18{width:27.791360pt;}
._1c{width:46.464000pt;}
._1d{width:47.360000pt;}
._20{width:56.128000pt;}
._21{width:57.061120pt;}
._4{width:65.394987pt;}
._5{width:66.734080pt;}
._22{width:73.088000pt;}
._23{width:74.048000pt;}
._1f{width:85.696000pt;}
._1e{width:133.056000pt;}
._1b{width:977.024000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:2.880000pt;}
.y90{bottom:6.080000pt;}
.y92{bottom:6.240000pt;}
.y9b{bottom:9.600000pt;}
.ycc{bottom:10.560000pt;}
.y95{bottom:18.240000pt;}
.y94{bottom:33.600000pt;}
.yc4{bottom:33.640000pt;}
.ya0{bottom:41.280000pt;}
.y99{bottom:48.960000pt;}
.yc3{bottom:49.000000pt;}
.y9f{bottom:64.160000pt;}
.y98{bottom:64.320000pt;}
.y6{bottom:67.712000pt;}
.y9e{bottom:79.520000pt;}
.y5{bottom:86.112000pt;}
.y4{bottom:104.192000pt;}
.y3{bottom:121.152000pt;}
.y2{bottom:137.946667pt;}
.y68{bottom:159.226667pt;}
.y32{bottom:160.186667pt;}
.y97{bottom:160.346667pt;}
.y12a{bottom:163.386667pt;}
.y86{bottom:166.266667pt;}
.y50{bottom:170.746667pt;}
.y101{bottom:177.306667pt;}
.y31{bottom:178.586667pt;}
.y129{bottom:181.786667pt;}
.y67{bottom:186.746667pt;}
.y85{bottom:193.946667pt;}
.y100{bottom:195.706667pt;}
.y30{bottom:196.986667pt;}
.ye6{bottom:198.426667pt;}
.y128{bottom:200.186667pt;}
.y4f{bottom:203.546667pt;}
.yc7{bottom:206.266667pt;}
.yff{bottom:214.106667pt;}
.y66{bottom:214.426667pt;}
.y2f{bottom:215.386667pt;}
.y127{bottom:218.586667pt;}
.yb5{bottom:219.546667pt;}
.y84{bottom:221.466667pt;}
.ye5{bottom:225.946667pt;}
.y4e{bottom:231.226667pt;}
.yfe{bottom:232.506667pt;}
.y2e{bottom:233.786667pt;}
.y126{bottom:236.986667pt;}
.yc6{bottom:237.946667pt;}
.y93{bottom:238.426667pt;}
.y65{bottom:241.946667pt;}
.y83{bottom:249.146667pt;}
.y2d{bottom:252.186667pt;}
.yb4{bottom:252.506667pt;}
.ye4{bottom:253.626667pt;}
.y125{bottom:255.386667pt;}
.yc5{bottom:255.706667pt;}
.yfd{bottom:256.346667pt;}
.y4d{bottom:258.746667pt;}
.yc2{bottom:269.466667pt;}
.y64{bottom:269.626667pt;}
.y2c{bottom:270.586667pt;}
.y124{bottom:273.786667pt;}
.yfc{bottom:274.746667pt;}
.y82{bottom:276.666667pt;}
.ye3{bottom:281.146667pt;}
.yb3{bottom:285.466667pt;}
.y91{bottom:285.786667pt;}
.y4c{bottom:286.426667pt;}
.y2b{bottom:288.986667pt;}
.y123{bottom:292.186667pt;}
.yfb{bottom:293.146667pt;}
.y63{bottom:297.146667pt;}
.y81{bottom:304.386667pt;}
.y2a{bottom:307.426667pt;}
.ye2{bottom:308.866667pt;}
.y8f{bottom:309.186667pt;}
.y122{bottom:310.626667pt;}
.y4b{bottom:313.986667pt;}
.yfa{bottom:316.866667pt;}
.yb2{bottom:318.466667pt;}
.y62{bottom:324.866667pt;}
.y29{bottom:325.826667pt;}
.y121{bottom:329.026667pt;}
.y80{bottom:331.906667pt;}
.yc1{bottom:332.226667pt;}
.yf9{bottom:335.266667pt;}
.y4a{bottom:341.666667pt;}
.ye1{bottom:341.826667pt;}
.y28{bottom:344.226667pt;}
.yb1{bottom:345.986667pt;}
.y120{bottom:347.426667pt;}
.y8e{bottom:350.466667pt;}
.y61{bottom:352.386667pt;}
.yf8{bottom:353.666667pt;}
.y7f{bottom:359.586667pt;}
.y27{bottom:362.626667pt;}
.y11f{bottom:365.826667pt;}
.y49{bottom:369.186667pt;}
.ye0{bottom:369.346667pt;}
.yf7{bottom:372.066667pt;}
.yb0{bottom:373.666667pt;}
.yc0{bottom:379.586667pt;}
.y60{bottom:380.066667pt;}
.y26{bottom:381.026667pt;}
.y8d{bottom:383.426667pt;}
.y11e{bottom:384.226667pt;}
.y7e{bottom:387.106667pt;}
.yf6{bottom:390.466667pt;}
.y48{bottom:396.866667pt;}
.ydf{bottom:397.026667pt;}
.y25{bottom:399.426667pt;}
.yaf{bottom:401.186667pt;}
.y11d{bottom:402.626667pt;}
.y5f{bottom:407.586667pt;}
.y7d{bottom:414.626667pt;}
.ybf{bottom:415.586667pt;}
.y8c{bottom:416.386667pt;}
.y24{bottom:417.826667pt;}
.yde{bottom:424.546667pt;}
.yf5{bottom:425.346667pt;}
.y11c{bottom:426.306667pt;}
.yae{bottom:428.866667pt;}
.y47{bottom:429.826667pt;}
.y23{bottom:436.226667pt;}
.y7c{bottom:442.306667pt;}
.ybe{bottom:443.266667pt;}
.y8b{bottom:443.906667pt;}
.y11b{bottom:444.706667pt;}
.y5e{bottom:447.586667pt;}
.ydd{bottom:452.226667pt;}
.y22{bottom:454.626667pt;}
.y46{bottom:457.346667pt;}
.yad{bottom:460.546667pt;}
.y11a{bottom:463.106667pt;}
.yf4{bottom:463.586667pt;}
.y7b{bottom:469.826667pt;}
.ybd{bottom:470.786667pt;}
.y8a{bottom:471.586667pt;}
.y21{bottom:473.026667pt;}
.yac{bottom:478.306667pt;}
.ydc{bottom:479.746667pt;}
.y119{bottom:481.506667pt;}
.y45{bottom:485.026667pt;}
.y20{bottom:491.426667pt;}
.yab{bottom:492.066667pt;}
.yf3{bottom:496.546667pt;}
.y7a{bottom:497.506667pt;}
.ybc{bottom:498.466667pt;}
.y89{bottom:504.546667pt;}
.y118{bottom:505.186667pt;}
.ydb{bottom:507.426667pt;}
.y1f{bottom:509.826667pt;}
.y44{bottom:512.546667pt;}
.y117{bottom:523.586667pt;}
.yf2{bottom:524.066667pt;}
.y79{bottom:525.026667pt;}
.ybb{bottom:525.986667pt;}
.y1e{bottom:528.226667pt;}
.y88{bottom:532.066667pt;}
.yda{bottom:534.946667pt;}
.yaa{bottom:539.453333pt;}
.y43{bottom:540.253333pt;}
.y116{bottom:542.013333pt;}
.y1d{bottom:546.653333pt;}
.yf1{bottom:551.773333pt;}
.y78{bottom:552.733333pt;}
.yba{bottom:553.693333pt;}
.y115{bottom:560.413333pt;}
.yd9{bottom:562.653333pt;}
.ya9{bottom:562.813333pt;}
.y1c{bottom:565.053333pt;}
.y87{bottom:569.693333pt;}
.y42{bottom:573.053333pt;}
.y114{bottom:578.813333pt;}
.yf0{bottom:579.293333pt;}
.y77{bottom:580.253333pt;}
.yb9{bottom:581.213333pt;}
.y1b{bottom:583.453333pt;}
.ya8{bottom:586.173333pt;}
.yd8{bottom:595.453333pt;}
.y113{bottom:597.213333pt;}
.y41{bottom:600.733333pt;}
.y1a{bottom:601.853333pt;}
.y76{bottom:607.933333pt;}
.yb8{bottom:608.893333pt;}
.yef{bottom:614.173333pt;}
.y112{bottom:615.613333pt;}
.y19{bottom:620.253333pt;}
.yd7{bottom:623.133333pt;}
.ya7{bottom:627.453333pt;}
.y40{bottom:628.253333pt;}
.y111{bottom:634.013333pt;}
.y75{bottom:635.453333pt;}
.y18{bottom:638.653333pt;}
.yb7{bottom:639.933333pt;}
.y5d{bottom:645.053333pt;}
.yd6{bottom:650.653333pt;}
.yee{bottom:652.413333pt;}
.y3f{bottom:655.933333pt;}
.y17{bottom:657.053333pt;}
.y74{bottom:663.133333pt;}
.ya6{bottom:668.413333pt;}
.y110{bottom:670.813333pt;}
.yb6{bottom:672.253333pt;}
.y16{bottom:675.453333pt;}
.y5c{bottom:678.173333pt;}
.yd5{bottom:678.333333pt;}
.y3e{bottom:683.453333pt;}
.yed{bottom:685.373333pt;}
.y10f{bottom:689.213333pt;}
.y73{bottom:690.653333pt;}
.y15{bottom:693.853333pt;}
.y132{bottom:694.493333pt;}
.ya5{bottom:696.093333pt;}
.y5b{bottom:705.693333pt;}
.yd4{bottom:705.853333pt;}
.y10e{bottom:707.613333pt;}
.y3d{bottom:711.133333pt;}
.y14{bottom:712.093333pt;}
.yec{bottom:712.893333pt;}
.y72{bottom:718.333333pt;}
.ya4{bottom:723.613333pt;}
.y10d{bottom:726.013333pt;}
.y13{bottom:730.493333pt;}
.y131{bottom:731.293333pt;}
.y5a{bottom:733.373333pt;}
.yd3{bottom:733.533333pt;}
.y3c{bottom:738.653333pt;}
.yeb{bottom:740.573333pt;}
.y10c{bottom:744.413333pt;}
.y71{bottom:745.853333pt;}
.y12{bottom:748.893333pt;}
.y130{bottom:749.693333pt;}
.ya3{bottom:751.293333pt;}
.y59{bottom:760.893333pt;}
.yd2{bottom:761.053333pt;}
.y10b{bottom:762.813333pt;}
.y11{bottom:767.293333pt;}
.yea{bottom:768.093333pt;}
.y3b{bottom:771.613333pt;}
.y70{bottom:773.533333pt;}
.ya2{bottom:783.013333pt;}
.y10{bottom:785.733333pt;}
.y10a{bottom:786.533333pt;}
.y58{bottom:788.613333pt;}
.yd1{bottom:794.053333pt;}
.ye9{bottom:795.813333pt;}
.y3a{bottom:799.333333pt;}
.ya1{bottom:800.773333pt;}
.y6f{bottom:801.093333pt;}
.yf{bottom:804.133333pt;}
.y109{bottom:804.933333pt;}
.y12f{bottom:810.373333pt;}
.y9d{bottom:814.533333pt;}
.y57{bottom:816.133333pt;}
.ye8{bottom:823.333333pt;}
.ye{bottom:823.813333pt;}
.yd0{bottom:825.093333pt;}
.y39{bottom:826.853333pt;}
.y6e{bottom:828.773333pt;}
.ycf{bottom:840.453333pt;}
.y108{bottom:841.733333pt;}
.y56{bottom:843.653333pt;}
.y12e{bottom:847.173333pt;}
.yd{bottom:848.293333pt;}
.ye7{bottom:851.013333pt;}
.y38{bottom:854.533333pt;}
.yce{bottom:855.813333pt;}
.y6d{bottom:856.293333pt;}
.y107{bottom:860.133333pt;}
.y12d{bottom:865.573333pt;}
.ycd{bottom:869.573333pt;}
.y55{bottom:871.333333pt;}
.yc{bottom:872.773333pt;}
.y106{bottom:878.533333pt;}
.y37{bottom:882.053333pt;}
.y6c{bottom:883.973333pt;}
.ycb{bottom:892.933333pt;}
.y105{bottom:896.933333pt;}
.yb{bottom:897.413333pt;}
.y54{bottom:898.853333pt;}
.y12c{bottom:902.373333pt;}
.y9c{bottom:907.813333pt;}
.y36{bottom:909.733333pt;}
.y6b{bottom:911.493333pt;}
.y104{bottom:915.333333pt;}
.y12b{bottom:920.773333pt;}
.ya{bottom:921.893333pt;}
.y53{bottom:926.533333pt;}
.yca{bottom:933.733333pt;}
.y35{bottom:937.253333pt;}
.y6a{bottom:939.173333pt;}
.y9{bottom:946.373333pt;}
.yc9{bottom:952.133333pt;}
.y52{bottom:954.053333pt;}
.y103{bottom:957.573333pt;}
.y34{bottom:964.933333pt;}
.y69{bottom:966.693333pt;}
.yc8{bottom:970.533333pt;}
.y8{bottom:971.013333pt;}
.y102{bottom:975.973333pt;}
.y9a{bottom:985.893333pt;}
.y51{bottom:991.653333pt;}
.y33{bottom:991.813333pt;}
.y7{bottom:994.373333pt;}
.y1{bottom:1096.800000pt;}
.ha{height:21.920000pt;}
.hc{height:21.952000pt;}
.h12{height:22.080000pt;}
.h15{height:30.720000pt;}
.h16{height:35.975313pt;}
.he{height:45.920000pt;}
.h13{height:46.112000pt;}
.hb{height:47.180312pt;}
.hd{height:47.621250pt;}
.h4{height:52.750000pt;}
.h3{height:52.785000pt;}
.h8{height:56.843750pt;}
.h2{height:57.375000pt;}
.h14{height:61.472000pt;}
.h9{height:62.761250pt;}
.h7{height:66.507188pt;}
.h6{height:70.157500pt;}
.h5{height:75.602187pt;}
.h10{height:76.640000pt;}
.hf{height:76.800000pt;}
.h11{height:92.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:98.752000pt;}
.w9{width:99.392000pt;}
.w8{width:102.720000pt;}
.w4{width:112.672000pt;}
.w6{width:127.712000pt;}
.w5{width:128.352000pt;}
.wd{width:131.712000pt;}
.wc{width:132.352000pt;}
.w3{width:153.306667pt;}
.wf{width:216.666667pt;}
.wb{width:217.346667pt;}
.we{width:217.466667pt;}
.w7{width:249.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:4.640000pt;}
.x26{left:17.600000pt;}
.x23{left:19.040000pt;}
.x25{left:24.320000pt;}
.x11{left:25.600000pt;}
.x18{left:32.000000pt;}
.x15{left:34.240000pt;}
.x19{left:35.520000pt;}
.x30{left:37.440000pt;}
.x1b{left:38.880000pt;}
.x16{left:41.760000pt;}
.x1c{left:43.840000pt;}
.x37{left:45.480000pt;}
.x13{left:48.960000pt;}
.x2e{left:51.040000pt;}
.xf{left:52.520000pt;}
.x1a{left:63.840000pt;}
.x2f{left:65.760000pt;}
.x17{left:82.720000pt;}
.x2c{left:84.520000pt;}
.x38{left:91.066667pt;}
.x21{left:100.520000pt;}
.x35{left:105.786667pt;}
.x2{left:113.311988pt;}
.x32{left:115.871988pt;}
.x34{left:131.232000pt;}
.xb{left:137.306655pt;}
.x5{left:147.066655pt;}
.x4{left:151.066655pt;}
.x29{left:157.306655pt;}
.xc{left:161.306655pt;}
.x6{left:169.946655pt;}
.x20{left:188.826667pt;}
.x31{left:214.106655pt;}
.xe{left:217.306667pt;}
.x1f{left:218.266655pt;}
.x9{left:230.426655pt;}
.x2b{left:240.346667pt;}
.xd{left:266.786655pt;}
.x1d{left:273.986655pt;}
.x7{left:287.106655pt;}
.x39{left:313.026655pt;}
.x28{left:323.266655pt;}
.x33{left:349.666655pt;}
.x2a{left:353.186655pt;}
.x10{left:372.066667pt;}
.x1e{left:415.773322pt;}
.x1{left:434.653322pt;}
.x22{left:439.453333pt;}
.x2d{left:458.973333pt;}
.x12{left:486.013333pt;}
.x24{left:543.453333pt;}
.x36{left:568.093333pt;}
.xa{left:608.293322pt;}
.x27{left:641.733322pt;}
.x8{left:680.453322pt;}
.x3{left:718.213322pt;}
}




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