
    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_d23245d9170e8db899dd89d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_f7cd88722724bc8ccca8af77.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2712541d8fc23db974f164e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_92c272f9afbe6ebc50e8346d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_afe5706124194669bee8ac62.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_eeeccc569401db577c5cc8f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_b64323d24acc79be4145d887.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.828000px;}
.ls12{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.172200px;}
.ls10{letter-spacing:-0.141600px;}
.ls5{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.109200px;}
.lsc{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.540000px;}
.ls9{letter-spacing:33.240000px;}
.ls7{letter-spacing:54.840000px;}
.ls1{letter-spacing:153.792000px;}
.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:-72.000000px;}
.ws2{word-spacing:-18.523920px;}
.ws0{word-spacing:-18.414720px;}
.ws3{word-spacing:-18.305520px;}
.ws1{word-spacing:-17.586720px;}
.ws9{word-spacing:-16.632000px;}
.ws8{word-spacing:-16.488000px;}
.ws6{word-spacing:-16.272000px;}
.wsa{word-spacing:-15.912000px;}
.wsc{word-spacing:-15.552000px;}
.wsb{word-spacing:-10.760640px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:1.584000px;}
._1c{margin-left:-4.680000px;}
._1b{margin-left:-3.672000px;}
._6{margin-left:-2.088000px;}
._2{margin-left:-1.008000px;}
._1{width:1.092000px;}
._e{width:2.520000px;}
._a{width:3.600000px;}
._14{width:4.668000px;}
._c{width:5.904000px;}
._12{width:6.996000px;}
._d{width:8.160000px;}
._10{width:9.576000px;}
._1a{width:10.728000px;}
._7{width:11.736000px;}
._19{width:12.816000px;}
._5{width:13.824000px;}
._13{width:15.120000px;}
._8{width:17.640000px;}
._4{width:18.936000px;}
._f{width:20.160000px;}
._15{width:21.168000px;}
._16{width:22.524000px;}
._21{width:24.552000px;}
._22{width:25.560000px;}
._1d{width:27.072000px;}
._1e{width:28.296000px;}
._20{width:30.240000px;}
._11{width:33.552000px;}
._9{width:34.632000px;}
._b{width:36.576000px;}
._1f{width:46.584000px;}
._18{width:52.476000px;}
._17{width:53.784000px;}
._3{width:847.884000px;}
._0{width:2717.136000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(68,114,196);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:3.420000px;}
.y25{bottom:3.450000px;}
.y27{bottom:3.600000px;}
.y2c{bottom:4.500000px;}
.ybf{bottom:4.860000px;}
.yeb{bottom:5.040000px;}
.y8c{bottom:8.100000px;}
.y91{bottom:8.280000px;}
.y29{bottom:22.500000px;}
.ybe{bottom:26.820000px;}
.ye2{bottom:26.850000px;}
.yd2{bottom:26.865000px;}
.yd0{bottom:27.000000px;}
.y95{bottom:33.300000px;}
.y8b{bottom:33.480000px;}
.y9b{bottom:33.525000px;}
.yd6{bottom:48.780000px;}
.ye1{bottom:48.810000px;}
.yea{bottom:48.960000px;}
.y90{bottom:58.680000px;}
.yc6{bottom:58.710000px;}
.ya2{bottom:58.725000px;}
.y9a{bottom:58.905000px;}
.yd5{bottom:70.740000px;}
.y94{bottom:83.880000px;}
.y9f{bottom:83.910000px;}
.y8f{bottom:84.060000px;}
.y99{bottom:84.105000px;}
.yd4{bottom:92.700000px;}
.yef{bottom:92.880000px;}
.yca{bottom:101.160000px;}
.yad{bottom:103.680000px;}
.ye3{bottom:106.920000px;}
.y93{bottom:109.260000px;}
.y9e{bottom:109.290000px;}
.y8e{bottom:109.305000px;}
.y77{bottom:114.840000px;}
.y52{bottom:121.680000px;}
.y96{bottom:126.180000px;}
.yc9{bottom:126.360000px;}
.yac{bottom:129.600000px;}
.y76{bottom:140.220000px;}
.y51{bottom:147.060000px;}
.yc8{bottom:151.740000px;}
.y75{bottom:165.420000px;}
.y2b{bottom:168.840000px;}
.y2a{bottom:169.920000px;}
.y50{bottom:172.260000px;}
.yc7{bottom:173.700000px;}
.yab{bottom:180.900000px;}
.y28{bottom:187.740000px;}
.y74{bottom:190.800000px;}
.yc5{bottom:191.520000px;}
.y4f{bottom:197.460000px;}
.yaa{bottom:211.860000px;}
.y73{bottom:216.000000px;}
.y26{bottom:226.440000px;}
.ye0{bottom:240.300000px;}
.ya9{bottom:240.480000px;}
.y72{bottom:241.200000px;}
.y4e{bottom:241.740000px;}
.y24{bottom:246.240000px;}
.y92{bottom:256.350000px;}
.y23{bottom:266.070000px;}
.y71{bottom:266.610000px;}
.y4d{bottom:267.150000px;}
.yc4{bottom:268.050000px;}
.y22{bottom:285.690000px;}
.ya8{bottom:289.830000px;}
.y70{bottom:291.810000px;}
.y4c{bottom:292.350000px;}
.y20{bottom:305.490000px;}
.ydf{bottom:307.110000px;}
.ya7{bottom:315.030000px;}
.y6f{bottom:317.010000px;}
.y4b{bottom:317.550000px;}
.yf4{bottom:320.070000px;}
.y1f{bottom:328.890000px;}
.ya6{bottom:340.230000px;}
.y6e{bottom:342.390000px;}
.y4a{bottom:342.930000px;}
.yc3{bottom:344.550000px;}
.y1e{bottom:350.670000px;}
.yf3{bottom:355.890000px;}
.ya5{bottom:365.610000px;}
.y6d{bottom:367.590000px;}
.y1d{bottom:372.630000px;}
.yf2{bottom:378.570000px;}
.y49{bottom:385.230000px;}
.y8d{bottom:386.310000px;}
.ya4{bottom:387.570000px;}
.y6c{bottom:392.970000px;}
.y1c{bottom:394.590000px;}
.yde{bottom:395.670000px;}
.yc2{bottom:395.850000px;}
.ya3{bottom:409.530000px;}
.y1b{bottom:416.550000px;}
.y6b{bottom:418.170000px;}
.yf1{bottom:423.210000px;}
.ya1{bottom:428.070000px;}
.y1a{bottom:438.690000px;}
.y6a{bottom:443.370000px;}
.y48{bottom:446.070000px;}
.yc1{bottom:447.150000px;}
.y19{bottom:460.650000px;}
.ydd{bottom:462.270000px;}
.y69{bottom:468.750000px;}
.y47{bottom:471.450000px;}
.y18{bottom:482.655000px;}
.yf0{bottom:490.035000px;}
.y68{bottom:493.995000px;}
.y46{bottom:496.695000px;}
.yc0{bottom:498.495000px;}
.y17{bottom:504.615000px;}
.ydc{bottom:507.135000px;}
.y8a{bottom:516.495000px;}
.y67{bottom:519.375000px;}
.y45{bottom:521.895000px;}
.y16{bottom:526.575000px;}
.ya0{bottom:533.055000px;}
.y66{bottom:544.575000px;}
.y44{bottom:547.275000px;}
.y15{bottom:548.535000px;}
.ybd{bottom:549.795000px;}
.ydb{bottom:551.775000px;}
.yee{bottom:556.635000px;}
.y65{bottom:569.775000px;}
.y14{bottom:570.495000px;}
.y43{bottom:572.475000px;}
.y89{bottom:573.375000px;}
.y13{bottom:592.455000px;}
.yda{bottom:596.415000px;}
.ybc{bottom:599.475000px;}
.y88{bottom:602.175000px;}
.y64{bottom:613.155000px;}
.y12{bottom:614.415000px;}
.y42{bottom:615.855000px;}
.ybb{bottom:621.435000px;}
.y11{bottom:636.375000px;}
.y9d{bottom:637.815000px;}
.y63{bottom:638.355000px;}
.y41{bottom:641.055000px;}
.yba{bottom:650.055000px;}
.y87{bottom:651.315000px;}
.y10{bottom:658.335000px;}
.yd9{bottom:663.195000px;}
.y62{bottom:663.555000px;}
.y40{bottom:666.255000px;}
.y86{bottom:676.515000px;}
.yf{bottom:680.295000px;}
.yed{bottom:689.295000px;}
.y3f{bottom:691.635000px;}
.yb9{bottom:695.955000px;}
.y85{bottom:701.895000px;}
.ye{bottom:702.255000px;}
.y61{bottom:706.065000px;}
.yd8{bottom:707.865000px;}
.yec{bottom:712.005000px;}
.y3e{bottom:716.865000px;}
.yb8{bottom:717.945000px;}
.y84{bottom:727.125000px;}
.yd{bottom:738.285000px;}
.yb7{bottom:739.905000px;}
.y3d{bottom:742.245000px;}
.y83{bottom:752.505000px;}
.yb6{bottom:761.865000px;}
.y60{bottom:766.905000px;}
.y3c{bottom:767.445000px;}
.y9c{bottom:767.985000px;}
.y82{bottom:777.705000px;}
.yd7{bottom:779.325000px;}
.yb5{bottom:783.825000px;}
.y5f{bottom:792.105000px;}
.y3b{bottom:792.645000px;}
.yd3{bottom:797.325000px;}
.ye9{bottom:800.565000px;}
.y81{bottom:802.905000px;}
.yb4{bottom:805.785000px;}
.y5e{bottom:817.485000px;}
.y3a{bottom:818.025000px;}
.yc{bottom:818.205000px;}
.yb3{bottom:823.785000px;}
.y80{bottom:828.285000px;}
.y5d{bottom:842.685000px;}
.y39{bottom:843.225000px;}
.y7f{bottom:853.485000px;}
.ye8{bottom:867.345000px;}
.y5c{bottom:867.885000px;}
.y38{bottom:868.425000px;}
.y7e{bottom:878.685000px;}
.yb{bottom:893.265000px;}
.y98{bottom:897.945000px;}
.yb2{bottom:900.285000px;}
.y7d{bottom:904.065000px;}
.yd1{bottom:907.845000px;}
.y37{bottom:911.805000px;}
.ya{bottom:915.225000px;}
.y5b{bottom:918.465000px;}
.ye7{bottom:933.990000px;}
.y7c{bottom:934.350000px;}
.y36{bottom:937.050000px;}
.y9{bottom:937.230000px;}
.yb1{bottom:951.630000px;}
.ycf{bottom:952.530000px;}
.y8{bottom:959.190000px;}
.y5a{bottom:961.890000px;}
.y35{bottom:962.430000px;}
.y7{bottom:981.150000px;}
.y59{bottom:987.090000px;}
.y34{bottom:987.630000px;}
.y7b{bottom:995.370000px;}
.yce{bottom:997.350000px;}
.ye6{bottom:1000.770000px;}
.yb0{bottom:1002.930000px;}
.y6{bottom:1003.110000px;}
.y58{bottom:1012.290000px;}
.y33{bottom:1012.830000px;}
.y7a{bottom:1020.570000px;}
.y5{bottom:1025.070000px;}
.y97{bottom:1028.130000px;}
.y57{bottom:1037.670000px;}
.y32{bottom:1038.210000px;}
.ye5{bottom:1045.410000px;}
.y79{bottom:1045.770000px;}
.y4{bottom:1047.030000px;}
.ycd{bottom:1050.090000px;}
.yaf{bottom:1054.230000px;}
.y56{bottom:1062.870000px;}
.y31{bottom:1063.410000px;}
.y3{bottom:1068.990000px;}
.ycc{bottom:1075.470000px;}
.y55{bottom:1088.070000px;}
.y30{bottom:1088.610000px;}
.y78{bottom:1089.150000px;}
.ye4{bottom:1090.050000px;}
.y2{bottom:1090.950000px;}
.ycb{bottom:1100.670000px;}
.yae{bottom:1105.530000px;}
.y1{bottom:1113.090000px;}
.y54{bottom:1114.350000px;}
.y2f{bottom:1131.090000px;}
.y53{bottom:1139.730000px;}
.y2e{bottom:1168.560000px;}
.y2d{bottom:1192.860000px;}
.h8{height:18.900000px;}
.ha{height:18.936000px;}
.hb{height:19.080000px;}
.hd{height:20.160000px;}
.h1d{height:21.960000px;}
.h26{height:21.996000px;}
.h17{height:25.200000px;}
.h16{height:25.380000px;}
.hc{height:37.980000px;}
.h1b{height:43.920000px;}
.h1f{height:43.956000px;}
.h1e{height:44.100000px;}
.h18{height:50.400000px;}
.h11{height:50.580000px;}
.h19{height:50.616000px;}
.h4{height:62.964844px;}
.h22{height:65.880000px;}
.he{height:65.884219px;}
.h24{height:65.916000px;}
.h25{height:66.060000px;}
.h28{height:66.096000px;}
.h9{height:69.086250px;}
.h3{height:71.613281px;}
.h20{height:71.740898px;}
.h6{height:73.722656px;}
.h2{height:74.004654px;}
.h7{height:75.093750px;}
.h1a{height:75.780000px;}
.h1c{height:75.816000px;}
.h10{height:86.255508px;}
.h23{height:87.840000px;}
.h14{height:100.980000px;}
.h15{height:101.196000px;}
.h21{height:109.800000px;}
.hf{height:110.583984px;}
.h13{height:126.360000px;}
.h12{height:126.396000px;}
.h27{height:131.940000px;}
.h5{height:147.445312px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wd{width:143.460000px;}
.w11{width:147.420000px;}
.wf{width:147.600000px;}
.wc{width:178.950000px;}
.w6{width:179.670000px;}
.wa{width:184.530000px;}
.w7{width:188.130000px;}
.w9{width:219.990000px;}
.wb{width:274.710000px;}
.w3{width:285.870000px;}
.w8{width:302.250000px;}
.we{width:356.835000px;}
.w4{width:390.855000px;}
.w10{width:541.770000px;}
.w12{width:541.950000px;}
.w5{width:678.345000px;}
.w13{width:690.090000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x17{left:1.080000px;}
.x12{left:4.680000px;}
.xb{left:7.740000px;}
.x4d{left:11.745000px;}
.x32{left:13.545000px;}
.x26{left:14.625000px;}
.x4b{left:15.885000px;}
.x2d{left:16.965000px;}
.x44{left:20.025000px;}
.xf{left:21.239987px;}
.x2b{left:23.085000px;}
.x25{left:24.705000px;}
.x23{left:26.820000px;}
.x27{left:29.925000px;}
.x34{left:31.680000px;}
.x30{left:32.760000px;}
.x39{left:35.505000px;}
.x2f{left:37.440000px;}
.x14{left:38.520000px;}
.x24{left:41.265000px;}
.x29{left:43.374000px;}
.x1c{left:45.354000px;}
.x22{left:50.214000px;}
.x31{left:52.605000px;}
.x2c{left:53.634000px;}
.x15{left:55.440000px;}
.x2e{left:57.285000px;}
.x1f{left:58.854000px;}
.x2{left:63.719987px;}
.x3e{left:68.985000px;}
.x4c{left:73.305000px;}
.x3d{left:76.185000px;}
.x20{left:81.945000px;}
.x35{left:90.585000px;}
.x48{left:93.825000px;}
.x21{left:100.485000px;}
.xa{left:106.235987px;}
.x1{left:114.155987px;}
.x4a{left:119.745000px;}
.x33{left:126.225000px;}
.x28{left:130.725000px;}
.x10{left:133.235987px;}
.x43{left:135.225000px;}
.x41{left:140.805000px;}
.x3f{left:151.425000px;}
.x3c{left:152.685000px;}
.x1e{left:153.765000px;}
.x46{left:156.465000px;}
.x11{left:160.229987px;}
.x4f{left:161.865000px;}
.x47{left:173.925000px;}
.x40{left:180.405000px;}
.x38{left:184.185000px;}
.x51{left:189.075000px;}
.x36{left:193.755000px;}
.x3a{left:195.735000px;}
.x52{left:202.935000px;}
.x53{left:204.735000px;}
.x49{left:207.615000px;}
.x4e{left:225.615000px;}
.x42{left:227.775000px;}
.x2a{left:231.735000px;}
.x3b{left:233.355000px;}
.x37{left:235.155000px;}
.x45{left:253.695000px;}
.x1d{left:255.450000px;}
.x4{left:259.949987px;}
.x50{left:270.975000px;}
.x1a{left:285.195000px;}
.x13{left:286.815000px;}
.x18{left:326.235000px;}
.xd{left:339.189000px;}
.xc{left:393.915000px;}
.x5{left:403.994987px;}
.x1b{left:428.655000px;}
.x16{left:475.845000px;}
.x19{left:510.765000px;}
.x8{left:611.744987px;}
.x9{left:626.009987px;}
.xe{left:706.289987px;}
.x7{left:722.129987px;}
.x3{left:733.829987px;}
.x6{left:785.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.736000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.153067pt;}
.ls10{letter-spacing:-0.125867pt;}
.ls5{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.097067pt;}
.lsc{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.480000pt;}
.ls9{letter-spacing:29.546667pt;}
.ls7{letter-spacing:48.746667pt;}
.ls1{letter-spacing:136.704000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws2{word-spacing:-16.465707pt;}
.ws0{word-spacing:-16.368640pt;}
.ws3{word-spacing:-16.271573pt;}
.ws1{word-spacing:-15.632640pt;}
.ws9{word-spacing:-14.784000pt;}
.ws8{word-spacing:-14.656000pt;}
.ws6{word-spacing:-14.464000pt;}
.wsa{word-spacing:-14.144000pt;}
.wsc{word-spacing:-13.824000pt;}
.wsb{word-spacing:-9.565013pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:1.408000pt;}
._1c{margin-left:-4.160000pt;}
._1b{margin-left:-3.264000pt;}
._6{margin-left:-1.856000pt;}
._2{margin-left:-0.896000pt;}
._1{width:0.970667pt;}
._e{width:2.240000pt;}
._a{width:3.200000pt;}
._14{width:4.149333pt;}
._c{width:5.248000pt;}
._12{width:6.218667pt;}
._d{width:7.253333pt;}
._10{width:8.512000pt;}
._1a{width:9.536000pt;}
._7{width:10.432000pt;}
._19{width:11.392000pt;}
._5{width:12.288000pt;}
._13{width:13.440000pt;}
._8{width:15.680000pt;}
._4{width:16.832000pt;}
._f{width:17.920000pt;}
._15{width:18.816000pt;}
._16{width:20.021333pt;}
._21{width:21.824000pt;}
._22{width:22.720000pt;}
._1d{width:24.064000pt;}
._1e{width:25.152000pt;}
._20{width:26.880000pt;}
._11{width:29.824000pt;}
._9{width:30.784000pt;}
._b{width:32.512000pt;}
._1f{width:41.408000pt;}
._18{width:46.645333pt;}
._17{width:47.808000pt;}
._3{width:753.674667pt;}
._0{width:2415.232000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:3.040000pt;}
.y25{bottom:3.066667pt;}
.y27{bottom:3.200000pt;}
.y2c{bottom:4.000000pt;}
.ybf{bottom:4.320000pt;}
.yeb{bottom:4.480000pt;}
.y8c{bottom:7.200000pt;}
.y91{bottom:7.360000pt;}
.y29{bottom:20.000000pt;}
.ybe{bottom:23.840000pt;}
.ye2{bottom:23.866667pt;}
.yd2{bottom:23.880000pt;}
.yd0{bottom:24.000000pt;}
.y95{bottom:29.600000pt;}
.y8b{bottom:29.760000pt;}
.y9b{bottom:29.800000pt;}
.yd6{bottom:43.360000pt;}
.ye1{bottom:43.386667pt;}
.yea{bottom:43.520000pt;}
.y90{bottom:52.160000pt;}
.yc6{bottom:52.186667pt;}
.ya2{bottom:52.200000pt;}
.y9a{bottom:52.360000pt;}
.yd5{bottom:62.880000pt;}
.y94{bottom:74.560000pt;}
.y9f{bottom:74.586667pt;}
.y8f{bottom:74.720000pt;}
.y99{bottom:74.760000pt;}
.yd4{bottom:82.400000pt;}
.yef{bottom:82.560000pt;}
.yca{bottom:89.920000pt;}
.yad{bottom:92.160000pt;}
.ye3{bottom:95.040000pt;}
.y93{bottom:97.120000pt;}
.y9e{bottom:97.146667pt;}
.y8e{bottom:97.160000pt;}
.y77{bottom:102.080000pt;}
.y52{bottom:108.160000pt;}
.y96{bottom:112.160000pt;}
.yc9{bottom:112.320000pt;}
.yac{bottom:115.200000pt;}
.y76{bottom:124.640000pt;}
.y51{bottom:130.720000pt;}
.yc8{bottom:134.880000pt;}
.y75{bottom:147.040000pt;}
.y2b{bottom:150.080000pt;}
.y2a{bottom:151.040000pt;}
.y50{bottom:153.120000pt;}
.yc7{bottom:154.400000pt;}
.yab{bottom:160.800000pt;}
.y28{bottom:166.880000pt;}
.y74{bottom:169.600000pt;}
.yc5{bottom:170.240000pt;}
.y4f{bottom:175.520000pt;}
.yaa{bottom:188.320000pt;}
.y73{bottom:192.000000pt;}
.y26{bottom:201.280000pt;}
.ye0{bottom:213.600000pt;}
.ya9{bottom:213.760000pt;}
.y72{bottom:214.400000pt;}
.y4e{bottom:214.880000pt;}
.y24{bottom:218.880000pt;}
.y92{bottom:227.866667pt;}
.y23{bottom:236.506667pt;}
.y71{bottom:236.986667pt;}
.y4d{bottom:237.466667pt;}
.yc4{bottom:238.266667pt;}
.y22{bottom:253.946667pt;}
.ya8{bottom:257.626667pt;}
.y70{bottom:259.386667pt;}
.y4c{bottom:259.866667pt;}
.y20{bottom:271.546667pt;}
.ydf{bottom:272.986667pt;}
.ya7{bottom:280.026667pt;}
.y6f{bottom:281.786667pt;}
.y4b{bottom:282.266667pt;}
.yf4{bottom:284.506667pt;}
.y1f{bottom:292.346667pt;}
.ya6{bottom:302.426667pt;}
.y6e{bottom:304.346667pt;}
.y4a{bottom:304.826667pt;}
.yc3{bottom:306.266667pt;}
.y1e{bottom:311.706667pt;}
.yf3{bottom:316.346667pt;}
.ya5{bottom:324.986667pt;}
.y6d{bottom:326.746667pt;}
.y1d{bottom:331.226667pt;}
.yf2{bottom:336.506667pt;}
.y49{bottom:342.426667pt;}
.y8d{bottom:343.386667pt;}
.ya4{bottom:344.506667pt;}
.y6c{bottom:349.306667pt;}
.y1c{bottom:350.746667pt;}
.yde{bottom:351.706667pt;}
.yc2{bottom:351.866667pt;}
.ya3{bottom:364.026667pt;}
.y1b{bottom:370.266667pt;}
.y6b{bottom:371.706667pt;}
.yf1{bottom:376.186667pt;}
.ya1{bottom:380.506667pt;}
.y1a{bottom:389.946667pt;}
.y6a{bottom:394.106667pt;}
.y48{bottom:396.506667pt;}
.yc1{bottom:397.466667pt;}
.y19{bottom:409.466667pt;}
.ydd{bottom:410.906667pt;}
.y69{bottom:416.666667pt;}
.y47{bottom:419.066667pt;}
.y18{bottom:429.026667pt;}
.yf0{bottom:435.586667pt;}
.y68{bottom:439.106667pt;}
.y46{bottom:441.506667pt;}
.yc0{bottom:443.106667pt;}
.y17{bottom:448.546667pt;}
.ydc{bottom:450.786667pt;}
.y8a{bottom:459.106667pt;}
.y67{bottom:461.666667pt;}
.y45{bottom:463.906667pt;}
.y16{bottom:468.066667pt;}
.ya0{bottom:473.826667pt;}
.y66{bottom:484.066667pt;}
.y44{bottom:486.466667pt;}
.y15{bottom:487.586667pt;}
.ybd{bottom:488.706667pt;}
.ydb{bottom:490.466667pt;}
.yee{bottom:494.786667pt;}
.y65{bottom:506.466667pt;}
.y14{bottom:507.106667pt;}
.y43{bottom:508.866667pt;}
.y89{bottom:509.666667pt;}
.y13{bottom:526.626667pt;}
.yda{bottom:530.146667pt;}
.ybc{bottom:532.866667pt;}
.y88{bottom:535.266667pt;}
.y64{bottom:545.026667pt;}
.y12{bottom:546.146667pt;}
.y42{bottom:547.426667pt;}
.ybb{bottom:552.386667pt;}
.y11{bottom:565.666667pt;}
.y9d{bottom:566.946667pt;}
.y63{bottom:567.426667pt;}
.y41{bottom:569.826667pt;}
.yba{bottom:577.826667pt;}
.y87{bottom:578.946667pt;}
.y10{bottom:585.186667pt;}
.yd9{bottom:589.506667pt;}
.y62{bottom:589.826667pt;}
.y40{bottom:592.226667pt;}
.y86{bottom:601.346667pt;}
.yf{bottom:604.706667pt;}
.yed{bottom:612.706667pt;}
.y3f{bottom:614.786667pt;}
.yb9{bottom:618.626667pt;}
.y85{bottom:623.906667pt;}
.ye{bottom:624.226667pt;}
.y61{bottom:627.613333pt;}
.yd8{bottom:629.213333pt;}
.yec{bottom:632.893333pt;}
.y3e{bottom:637.213333pt;}
.yb8{bottom:638.173333pt;}
.y84{bottom:646.333333pt;}
.yd{bottom:656.253333pt;}
.yb7{bottom:657.693333pt;}
.y3d{bottom:659.773333pt;}
.y83{bottom:668.893333pt;}
.yb6{bottom:677.213333pt;}
.y60{bottom:681.693333pt;}
.y3c{bottom:682.173333pt;}
.y9c{bottom:682.653333pt;}
.y82{bottom:691.293333pt;}
.yd7{bottom:692.733333pt;}
.yb5{bottom:696.733333pt;}
.y5f{bottom:704.093333pt;}
.y3b{bottom:704.573333pt;}
.yd3{bottom:708.733333pt;}
.ye9{bottom:711.613333pt;}
.y81{bottom:713.693333pt;}
.yb4{bottom:716.253333pt;}
.y5e{bottom:726.653333pt;}
.y3a{bottom:727.133333pt;}
.yc{bottom:727.293333pt;}
.yb3{bottom:732.253333pt;}
.y80{bottom:736.253333pt;}
.y5d{bottom:749.053333pt;}
.y39{bottom:749.533333pt;}
.y7f{bottom:758.653333pt;}
.ye8{bottom:770.973333pt;}
.y5c{bottom:771.453333pt;}
.y38{bottom:771.933333pt;}
.y7e{bottom:781.053333pt;}
.yb{bottom:794.013333pt;}
.y98{bottom:798.173333pt;}
.yb2{bottom:800.253333pt;}
.y7d{bottom:803.613333pt;}
.yd1{bottom:806.973333pt;}
.y37{bottom:810.493333pt;}
.ya{bottom:813.533333pt;}
.y5b{bottom:816.413333pt;}
.ye7{bottom:830.213333pt;}
.y7c{bottom:830.533333pt;}
.y36{bottom:832.933333pt;}
.y9{bottom:833.093333pt;}
.yb1{bottom:845.893333pt;}
.ycf{bottom:846.693333pt;}
.y8{bottom:852.613333pt;}
.y5a{bottom:855.013333pt;}
.y35{bottom:855.493333pt;}
.y7{bottom:872.133333pt;}
.y59{bottom:877.413333pt;}
.y34{bottom:877.893333pt;}
.y7b{bottom:884.773333pt;}
.yce{bottom:886.533333pt;}
.ye6{bottom:889.573333pt;}
.yb0{bottom:891.493333pt;}
.y6{bottom:891.653333pt;}
.y58{bottom:899.813333pt;}
.y33{bottom:900.293333pt;}
.y7a{bottom:907.173333pt;}
.y5{bottom:911.173333pt;}
.y97{bottom:913.893333pt;}
.y57{bottom:922.373333pt;}
.y32{bottom:922.853333pt;}
.ye5{bottom:929.253333pt;}
.y79{bottom:929.573333pt;}
.y4{bottom:930.693333pt;}
.ycd{bottom:933.413333pt;}
.yaf{bottom:937.093333pt;}
.y56{bottom:944.773333pt;}
.y31{bottom:945.253333pt;}
.y3{bottom:950.213333pt;}
.ycc{bottom:955.973333pt;}
.y55{bottom:967.173333pt;}
.y30{bottom:967.653333pt;}
.y78{bottom:968.133333pt;}
.ye4{bottom:968.933333pt;}
.y2{bottom:969.733333pt;}
.ycb{bottom:978.373333pt;}
.yae{bottom:982.693333pt;}
.y1{bottom:989.413333pt;}
.y54{bottom:990.533333pt;}
.y2f{bottom:1005.413333pt;}
.y53{bottom:1013.093333pt;}
.y2e{bottom:1038.720000pt;}
.y2d{bottom:1060.320000pt;}
.h8{height:16.800000pt;}
.ha{height:16.832000pt;}
.hb{height:16.960000pt;}
.hd{height:17.920000pt;}
.h1d{height:19.520000pt;}
.h26{height:19.552000pt;}
.h17{height:22.400000pt;}
.h16{height:22.560000pt;}
.hc{height:33.760000pt;}
.h1b{height:39.040000pt;}
.h1f{height:39.072000pt;}
.h1e{height:39.200000pt;}
.h18{height:44.800000pt;}
.h11{height:44.960000pt;}
.h19{height:44.992000pt;}
.h4{height:55.968750pt;}
.h22{height:58.560000pt;}
.he{height:58.563750pt;}
.h24{height:58.592000pt;}
.h25{height:58.720000pt;}
.h28{height:58.752000pt;}
.h9{height:61.410000pt;}
.h3{height:63.656250pt;}
.h20{height:63.769688pt;}
.h6{height:65.531250pt;}
.h2{height:65.781915pt;}
.h7{height:66.750000pt;}
.h1a{height:67.360000pt;}
.h1c{height:67.392000pt;}
.h10{height:76.671562pt;}
.h23{height:78.080000pt;}
.h14{height:89.760000pt;}
.h15{height:89.952000pt;}
.h21{height:97.600000pt;}
.hf{height:98.296875pt;}
.h13{height:112.320000pt;}
.h12{height:112.352000pt;}
.h27{height:117.280000pt;}
.h5{height:131.062500pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wd{width:127.520000pt;}
.w11{width:131.040000pt;}
.wf{width:131.200000pt;}
.wc{width:159.066667pt;}
.w6{width:159.706667pt;}
.wa{width:164.026667pt;}
.w7{width:167.226667pt;}
.w9{width:195.546667pt;}
.wb{width:244.186667pt;}
.w3{width:254.106667pt;}
.w8{width:268.666667pt;}
.we{width:317.186667pt;}
.w4{width:347.426667pt;}
.w10{width:481.573333pt;}
.w12{width:481.733333pt;}
.w5{width:602.973333pt;}
.w13{width:613.413333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x17{left:0.960000pt;}
.x12{left:4.160000pt;}
.xb{left:6.880000pt;}
.x4d{left:10.440000pt;}
.x32{left:12.040000pt;}
.x26{left:13.000000pt;}
.x4b{left:14.120000pt;}
.x2d{left:15.080000pt;}
.x44{left:17.800000pt;}
.xf{left:18.879988pt;}
.x2b{left:20.520000pt;}
.x25{left:21.960000pt;}
.x23{left:23.840000pt;}
.x27{left:26.600000pt;}
.x34{left:28.160000pt;}
.x30{left:29.120000pt;}
.x39{left:31.560000pt;}
.x2f{left:33.280000pt;}
.x14{left:34.240000pt;}
.x24{left:36.680000pt;}
.x29{left:38.554667pt;}
.x1c{left:40.314667pt;}
.x22{left:44.634667pt;}
.x31{left:46.760000pt;}
.x2c{left:47.674667pt;}
.x15{left:49.280000pt;}
.x2e{left:50.920000pt;}
.x1f{left:52.314667pt;}
.x2{left:56.639988pt;}
.x3e{left:61.320000pt;}
.x4c{left:65.160000pt;}
.x3d{left:67.720000pt;}
.x20{left:72.840000pt;}
.x35{left:80.520000pt;}
.x48{left:83.400000pt;}
.x21{left:89.320000pt;}
.xa{left:94.431988pt;}
.x1{left:101.471988pt;}
.x4a{left:106.440000pt;}
.x33{left:112.200000pt;}
.x28{left:116.200000pt;}
.x10{left:118.431988pt;}
.x43{left:120.200000pt;}
.x41{left:125.160000pt;}
.x3f{left:134.600000pt;}
.x3c{left:135.720000pt;}
.x1e{left:136.680000pt;}
.x46{left:139.080000pt;}
.x11{left:142.426655pt;}
.x4f{left:143.880000pt;}
.x47{left:154.600000pt;}
.x40{left:160.360000pt;}
.x38{left:163.720000pt;}
.x51{left:168.066667pt;}
.x36{left:172.226667pt;}
.x3a{left:173.986667pt;}
.x52{left:180.386667pt;}
.x53{left:181.986667pt;}
.x49{left:184.546667pt;}
.x4e{left:200.546667pt;}
.x42{left:202.466667pt;}
.x2a{left:205.986667pt;}
.x3b{left:207.426667pt;}
.x37{left:209.026667pt;}
.x45{left:225.506667pt;}
.x1d{left:227.066667pt;}
.x4{left:231.066655pt;}
.x50{left:240.866667pt;}
.x1a{left:253.506667pt;}
.x13{left:254.946667pt;}
.x18{left:289.986667pt;}
.xd{left:301.501333pt;}
.xc{left:350.146667pt;}
.x5{left:359.106655pt;}
.x1b{left:381.026667pt;}
.x16{left:422.973333pt;}
.x19{left:454.013333pt;}
.x8{left:543.773322pt;}
.x9{left:556.453322pt;}
.xe{left:627.813322pt;}
.x7{left:641.893322pt;}
.x3{left:652.293322pt;}
.x6{left:698.053322pt;}
}




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