
    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_b8f8bc91169b9a331e5b05e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.947754;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_2c87d70034de48282d0a8740.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_1518d88ac205f02ef619f2ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.947266;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_bb2288c47e5441386a935c3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_df41c153625ae0f14df894f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lse{letter-spacing:-0.403200px;}
.ls9{letter-spacing:-0.345600px;}
.ls7{letter-spacing:-0.331200px;}
.lsf{letter-spacing:-0.115200px;}
.lsa{letter-spacing:-0.100800px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.158400px;}
.ls0{letter-spacing:0.201600px;}
.ls1{letter-spacing:0.316800px;}
.ls3{letter-spacing:0.331200px;}
.lsd{letter-spacing:0.388800px;}
.ls8{letter-spacing:1.050000px;}
.lsb{letter-spacing:11.361600px;}
.lsc{letter-spacing:35.226720px;}
.ls5{letter-spacing:64.170720px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws0{word-spacing:-22.723200px;}
.ws6{word-spacing:-20.318400px;}
.ws7{word-spacing:-19.987200px;}
.wsb{word-spacing:-19.512000px;}
.ws5{word-spacing:-19.281600px;}
.ws3{word-spacing:-19.195200px;}
.ws1{word-spacing:-19.123200px;}
.ws8{word-spacing:-19.022400px;}
.wsa{word-spacing:-19.008000px;}
.ws9{word-spacing:-18.792000px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.126080px;}
._1{width:1.093440px;}
._7{width:2.209440px;}
._2{width:3.335040px;}
._b{width:4.601520px;}
._5{width:6.278400px;}
._4{width:7.378560px;}
._6{width:8.545440px;}
._10{width:9.717120px;}
._f{width:10.816560px;}
._d{width:12.430080px;}
._e{width:13.924080px;}
._c{width:15.163200px;}
._9{width:16.852320px;}
._a{width:17.910240px;}
._11{width:20.620800px;}
._12{width:21.633120px;}
._1c{width:22.764960px;}
._1b{width:24.125280px;}
._15{width:25.288560px;}
._3{width:26.712720px;}
._14{width:28.335600px;}
._13{width:29.461680px;}
._1d{width:31.194720px;}
._19{width:33.226560px;}
._1a{width:34.344240px;}
._16{width:35.736480px;}
._17{width:36.955920px;}
._18{width:38.873040px;}
._1e{width:40.816080px;}
._1f{width:41.832000px;}
._8{width:197.020800px;}
.fc2{color:rgb(255,0,0);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:3.420000px;}
.y93{bottom:3.600000px;}
.y5{bottom:3.780000px;}
.y6{bottom:4.500000px;}
.y96{bottom:12.240000px;}
.y91{bottom:12.420000px;}
.y97{bottom:21.060000px;}
.y92{bottom:21.240000px;}
.y4{bottom:25.380000px;}
.y44{bottom:63.900000px;}
.yac{bottom:66.600000px;}
.y110{bottom:66.960000px;}
.yd8{bottom:72.540000px;}
.y124{bottom:72.900000px;}
.y43{bottom:81.540000px;}
.yab{bottom:84.060000px;}
.y7f{bottom:84.600000px;}
.yd7{bottom:90.180000px;}
.y10f{bottom:90.540000px;}
.y42{bottom:99.216000px;}
.yaa{bottom:101.736000px;}
.y7e{bottom:102.276000px;}
.yd6{bottom:107.676000px;}
.y10e{bottom:108.216000px;}
.y41{bottom:116.856000px;}
.ya9{bottom:119.376000px;}
.y7d{bottom:119.736000px;}
.yd5{bottom:125.316000px;}
.y10d{bottom:125.856000px;}
.y123{bottom:134.316000px;}
.y40{bottom:134.496000px;}
.ya8{bottom:137.016000px;}
.y7c{bottom:137.376000px;}
.yd4{bottom:142.956000px;}
.y10c{bottom:143.316000px;}
.y3f{bottom:151.950000px;}
.ya7{bottom:154.650000px;}
.y7b{bottom:155.010000px;}
.yd3{bottom:160.590000px;}
.y10b{bottom:160.950000px;}
.y3e{bottom:169.590000px;}
.ya6{bottom:172.290000px;}
.y7a{bottom:172.650000px;}
.yd2{bottom:178.230000px;}
.y10a{bottom:178.590000px;}
.y3d{bottom:187.230000px;}
.ya5{bottom:189.750000px;}
.y79{bottom:190.290000px;}
.yd1{bottom:195.870000px;}
.y109{bottom:196.230000px;}
.y3c{bottom:204.870000px;}
.ya4{bottom:207.390000px;}
.y78{bottom:207.750000px;}
.yd0{bottom:213.330000px;}
.y108{bottom:213.870000px;}
.y122{bottom:222.330000px;}
.y3b{bottom:222.510000px;}
.ya3{bottom:225.030000px;}
.y77{bottom:225.390000px;}
.y107{bottom:231.330000px;}
.ycf{bottom:231.870000px;}
.y3a{bottom:239.970000px;}
.ya2{bottom:242.670000px;}
.y76{bottom:243.030000px;}
.y106{bottom:248.970000px;}
.yce{bottom:249.510000px;}
.y39{bottom:257.610000px;}
.ya1{bottom:260.310000px;}
.y75{bottom:260.670000px;}
.y105{bottom:266.610000px;}
.ycd{bottom:267.150000px;}
.y38{bottom:275.250000px;}
.ya0{bottom:277.770000px;}
.y74{bottom:278.310000px;}
.y104{bottom:284.250000px;}
.ycc{bottom:284.790000px;}
.y37{bottom:292.890000px;}
.y9f{bottom:295.230000px;}
.y73{bottom:295.950000px;}
.y103{bottom:301.890000px;}
.ycb{bottom:302.430000px;}
.y36{bottom:310.530000px;}
.y72{bottom:313.410000px;}
.y9e{bottom:313.950000px;}
.y102{bottom:319.530000px;}
.yca{bottom:319.710000px;}
.y121{bottom:327.990000px;}
.y35{bottom:328.170000px;}
.y71{bottom:331.050000px;}
.y9d{bottom:331.590000px;}
.y101{bottom:336.990000px;}
.y34{bottom:345.630000px;}
.y70{bottom:348.690000px;}
.y9c{bottom:349.230000px;}
.y100{bottom:354.630000px;}
.yc9{bottom:359.535000px;}
.y33{bottom:363.315000px;}
.y6f{bottom:366.375000px;}
.y9b{bottom:366.915000px;}
.yff{bottom:372.315000px;}
.y32{bottom:380.955000px;}
.y6e{bottom:384.015000px;}
.y9a{bottom:384.375000px;}
.yfe{bottom:389.955000px;}
.y31{bottom:398.595000px;}
.yc8{bottom:399.315000px;}
.y6d{bottom:401.475000px;}
.yfd{bottom:407.595000px;}
.y120{bottom:416.055000px;}
.y30{bottom:416.235000px;}
.y6c{bottom:419.115000px;}
.y99{bottom:423.975000px;}
.yfc{bottom:425.055000px;}
.y2f{bottom:433.695000px;}
.y6b{bottom:436.755000px;}
.yc7{bottom:438.915000px;}
.yfb{bottom:442.695000px;}
.y2e{bottom:451.335000px;}
.y6a{bottom:454.395000px;}
.yfa{bottom:460.335000px;}
.y98{bottom:463.755000px;}
.y2d{bottom:468.975000px;}
.y69{bottom:472.035000px;}
.yf9{bottom:477.975000px;}
.yc6{bottom:478.695000px;}
.y95{bottom:485.895000px;}
.y2c{bottom:486.615000px;}
.y68{bottom:489.675000px;}
.yf8{bottom:495.615000px;}
.y2b{bottom:504.255000px;}
.y67{bottom:507.135000px;}
.yf7{bottom:513.255000px;}
.yc5{bottom:518.475000px;}
.y11f{bottom:521.715000px;}
.y2a{bottom:521.895000px;}
.y66{bottom:524.775000px;}
.y94{bottom:525.495000px;}
.yf6{bottom:530.715000px;}
.y29{bottom:539.355000px;}
.y65{bottom:542.415000px;}
.yc4{bottom:542.955000px;}
.yf5{bottom:548.355000px;}
.y28{bottom:556.995000px;}
.y64{bottom:560.055000px;}
.yc3{bottom:560.595000px;}
.y90{bottom:565.275000px;}
.yf4{bottom:565.995000px;}
.y27{bottom:574.635000px;}
.y63{bottom:577.695000px;}
.yc2{bottom:578.235000px;}
.yf3{bottom:583.635000px;}
.y26{bottom:592.275000px;}
.y62{bottom:595.155000px;}
.yc1{bottom:595.695000px;}
.yf2{bottom:601.275000px;}
.y8e{bottom:605.055000px;}
.y11e{bottom:609.735000px;}
.y25{bottom:609.915000px;}
.y61{bottom:612.795000px;}
.yc0{bottom:613.335000px;}
.yf1{bottom:618.765000px;}
.y24{bottom:627.405000px;}
.y8d{bottom:629.565000px;}
.y60{bottom:630.465000px;}
.ybf{bottom:631.005000px;}
.yf0{bottom:636.405000px;}
.y23{bottom:645.045000px;}
.y8c{bottom:647.205000px;}
.y5f{bottom:648.105000px;}
.ybe{bottom:648.645000px;}
.yef{bottom:654.045000px;}
.y22{bottom:662.685000px;}
.y8b{bottom:664.845000px;}
.y5e{bottom:665.745000px;}
.ybd{bottom:666.285000px;}
.yee{bottom:671.685000px;}
.y21{bottom:680.325000px;}
.y8a{bottom:682.305000px;}
.y5d{bottom:683.385000px;}
.ybc{bottom:683.745000px;}
.yed{bottom:689.325000px;}
.y20{bottom:697.965000px;}
.y89{bottom:699.945000px;}
.y5c{bottom:700.845000px;}
.ybb{bottom:702.465000px;}
.yec{bottom:706.965000px;}
.y11d{bottom:715.425000px;}
.y1f{bottom:715.605000px;}
.y88{bottom:717.585000px;}
.y5b{bottom:718.485000px;}
.yba{bottom:719.925000px;}
.yeb{bottom:724.425000px;}
.y1e{bottom:733.065000px;}
.y87{bottom:735.225000px;}
.y5a{bottom:736.125000px;}
.yb9{bottom:737.565000px;}
.yea{bottom:742.065000px;}
.y1d{bottom:750.705000px;}
.y86{bottom:752.865000px;}
.y59{bottom:753.765000px;}
.yb8{bottom:755.205000px;}
.ye9{bottom:759.705000px;}
.y1c{bottom:768.345000px;}
.y85{bottom:770.325000px;}
.y58{bottom:771.405000px;}
.yb7{bottom:772.845000px;}
.ye8{bottom:777.345000px;}
.y1b{bottom:785.985000px;}
.y84{bottom:787.965000px;}
.y57{bottom:788.865000px;}
.yb6{bottom:790.485000px;}
.ye7{bottom:794.985000px;}
.y11c{bottom:803.445000px;}
.y1a{bottom:803.625000px;}
.y83{bottom:805.605000px;}
.y56{bottom:806.505000px;}
.yb5{bottom:807.945000px;}
.ye6{bottom:812.445000px;}
.y19{bottom:821.085000px;}
.y82{bottom:823.245000px;}
.y55{bottom:824.145000px;}
.yb4{bottom:825.585000px;}
.ye5{bottom:830.085000px;}
.y18{bottom:838.725000px;}
.y81{bottom:840.885000px;}
.y54{bottom:841.785000px;}
.yb3{bottom:843.045000px;}
.ye4{bottom:847.725000px;}
.y17{bottom:856.365000px;}
.y80{bottom:858.345000px;}
.y53{bottom:859.425000px;}
.ye3{bottom:865.365000px;}
.y11b{bottom:874.005000px;}
.y16{bottom:874.770000px;}
.y52{bottom:877.110000px;}
.yb2{bottom:882.870000px;}
.ye2{bottom:883.050000px;}
.y11a{bottom:891.690000px;}
.y15{bottom:892.410000px;}
.y51{bottom:894.570000px;}
.ye1{bottom:900.690000px;}
.y119{bottom:909.150000px;}
.y14{bottom:910.050000px;}
.y50{bottom:912.210000px;}
.ye0{bottom:918.150000px;}
.yb1{bottom:922.470000px;}
.y118{bottom:926.790000px;}
.y13{bottom:927.690000px;}
.y4f{bottom:929.850000px;}
.ydf{bottom:935.790000px;}
.y117{bottom:944.250000px;}
.y12{bottom:945.150000px;}
.y4e{bottom:947.490000px;}
.yde{bottom:953.250000px;}
.yb0{bottom:962.250000px;}
.y11{bottom:962.790000px;}
.y4d{bottom:965.130000px;}
.y116{bottom:966.390000px;}
.y10{bottom:980.430000px;}
.y4c{bottom:982.770000px;}
.y115{bottom:988.530000px;}
.ydd{bottom:993.030000px;}
.yf{bottom:997.890000px;}
.y4b{bottom:1000.230000px;}
.yaf{bottom:1002.030000px;}
.y114{bottom:1010.490000px;}
.ye{bottom:1017.870000px;}
.ydc{bottom:1032.630000px;}
.yd{bottom:1035.510000px;}
.yae{bottom:1041.630000px;}
.yc{bottom:1053.150000px;}
.y113{bottom:1054.770000px;}
.y4a{bottom:1070.790000px;}
.yb{bottom:1071.330000px;}
.ydb{bottom:1072.410000px;}
.y112{bottom:1076.910000px;}
.yad{bottom:1081.410000px;}
.y49{bottom:1088.250000px;}
.ya{bottom:1092.570000px;}
.y111{bottom:1099.050000px;}
.y48{bottom:1105.890000px;}
.yda{bottom:1112.010000px;}
.y9{bottom:1113.630000px;}
.y47{bottom:1123.530000px;}
.y8{bottom:1134.720000px;}
.y46{bottom:1141.200000px;}
.yd9{bottom:1151.820000px;}
.y7{bottom:1155.960000px;}
.y45{bottom:1158.840000px;}
.y3{bottom:1176.660000px;}
.y2{bottom:1196.100000px;}
.y1{bottom:1215.360000px;}
.hf{height:17.460000px;}
.ha{height:17.496000px;}
.hd{height:17.640000px;}
.h4{height:19.260000px;}
.hc{height:35.100000px;}
.hb{height:35.280000px;}
.he{height:35.316000px;}
.h7{height:42.806602px;}
.h8{height:42.835781px;}
.h2{height:47.480625px;}
.h6{height:51.609375px;}
.h9{height:61.423863px;}
.h5{height:65.884219px;}
.h3{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:61.416000px;}
.wc{width:114.336000px;}
.w15{width:122.436000px;}
.w13{width:123.876000px;}
.w17{width:127.656000px;}
.w14{width:130.500000px;}
.w11{width:133.416000px;}
.w12{width:134.856000px;}
.w16{width:137.016000px;}
.w6{width:167.070000px;}
.w9{width:190.650000px;}
.wf{width:194.430000px;}
.wd{width:252.255000px;}
.w7{width:255.315000px;}
.w4{width:275.835000px;}
.wa{width:310.935000px;}
.w8{width:326.775000px;}
.we{width:336.315000px;}
.w5{width:340.275000px;}
.wb{width:357.555000px;}
.w10{width:651.930000px;}
.w2{width:734.910000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x49{left:1.080000px;}
.x36{left:2.340000px;}
.x18{left:3.780000px;}
.x60{left:6.300000px;}
.x42{left:7.560000px;}
.x5{left:8.640000px;}
.x3d{left:9.720000px;}
.x4c{left:10.800000px;}
.x40{left:12.420000px;}
.x7{left:14.220000px;}
.x1f{left:16.740000px;}
.x21{left:18.360000px;}
.x34{left:19.440000px;}
.x26{left:20.880000px;}
.x5c{left:22.320000px;}
.x45{left:23.400000px;}
.x1b{left:24.660000px;}
.x23{left:26.640000px;}
.x1e{left:28.980000px;}
.x19{left:30.060000px;}
.x2e{left:32.220000px;}
.x5e{left:33.840000px;}
.x4f{left:35.100000px;}
.x24{left:36.540000px;}
.x4b{left:38.340000px;}
.x5f{left:40.860000px;}
.x4d{left:42.840000px;}
.x1d{left:44.280000px;}
.x33{left:47.160000px;}
.x4{left:48.420000px;}
.x53{left:50.220000px;}
.x13{left:52.920000px;}
.x8{left:54.000000px;}
.x29{left:57.960000px;}
.x20{left:60.696000px;}
.x17{left:61.740000px;}
.x35{left:63.396000px;}
.x10{left:64.620000px;}
.x32{left:66.600000px;}
.x31{left:68.616000px;}
.x25{left:72.216000px;}
.x2d{left:73.620000px;}
.x1a{left:75.060000px;}
.x11{left:81.000000px;}
.x4e{left:83.556000px;}
.x2b{left:85.320000px;}
.x37{left:88.380000px;}
.x15{left:92.160000px;}
.x3e{left:96.336000px;}
.x3b{left:100.650000px;}
.x14{left:102.090000px;}
.x30{left:103.710000px;}
.x41{left:107.850000px;}
.x3f{left:113.610000px;}
.x43{left:116.130000px;}
.x39{left:119.550000px;}
.x22{left:121.890000px;}
.x44{left:123.150000px;}
.x57{left:124.230000px;}
.x56{left:127.290000px;}
.x2f{left:132.120000px;}
.x1c{left:137.730000px;}
.x27{left:142.770000px;}
.x46{left:145.476000px;}
.x4a{left:150.330000px;}
.x12{left:160.590000px;}
.x50{left:177.150000px;}
.x59{left:189.930000px;}
.x1{left:192.810000px;}
.x28{left:212.610000px;}
.x55{left:219.135000px;}
.x38{left:227.550000px;}
.xa{left:232.590000px;}
.x58{left:238.350000px;}
.x9{left:243.390000px;}
.xe{left:244.470000px;}
.x52{left:245.955000px;}
.x54{left:250.275000px;}
.xc{left:255.810000px;}
.x3{left:260.490000px;}
.x47{left:307.335000px;}
.x2a{left:315.435000px;}
.xb{left:331.635000px;}
.x2{left:347.295000px;}
.x3a{left:366.195000px;}
.xd{left:413.535000px;}
.x5a{left:448.815000px;}
.xf{left:460.365000px;}
.x5b{left:573.585000px;}
.x2c{left:644.550000px;}
.x48{left:645.990000px;}
.x16{left:673.350000px;}
.x51{left:707.010000px;}
.x5d{left:712.770000px;}
.x3c{left:725.910000px;}
.x6{left:783.330000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.358400pt;}
.ls9{letter-spacing:-0.307200pt;}
.ls7{letter-spacing:-0.294400pt;}
.lsf{letter-spacing:-0.102400pt;}
.lsa{letter-spacing:-0.089600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.140800pt;}
.ls0{letter-spacing:0.179200pt;}
.ls1{letter-spacing:0.281600pt;}
.ls3{letter-spacing:0.294400pt;}
.lsd{letter-spacing:0.345600pt;}
.ls8{letter-spacing:0.933333pt;}
.lsb{letter-spacing:10.099200pt;}
.lsc{letter-spacing:31.312640pt;}
.ls5{letter-spacing:57.040640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws0{word-spacing:-20.198400pt;}
.ws6{word-spacing:-18.060800pt;}
.ws7{word-spacing:-17.766400pt;}
.wsb{word-spacing:-17.344000pt;}
.ws5{word-spacing:-17.139200pt;}
.ws3{word-spacing:-17.062400pt;}
.ws1{word-spacing:-16.998400pt;}
.ws8{word-spacing:-16.908800pt;}
.wsa{word-spacing:-16.896000pt;}
.ws9{word-spacing:-16.704000pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.000960pt;}
._1{width:0.971947pt;}
._7{width:1.963947pt;}
._2{width:2.964480pt;}
._b{width:4.090240pt;}
._5{width:5.580800pt;}
._4{width:6.558720pt;}
._6{width:7.595947pt;}
._10{width:8.637440pt;}
._f{width:9.614720pt;}
._d{width:11.048960pt;}
._e{width:12.376960pt;}
._c{width:13.478400pt;}
._9{width:14.979840pt;}
._a{width:15.920213pt;}
._11{width:18.329600pt;}
._12{width:19.229440pt;}
._1c{width:20.235520pt;}
._1b{width:21.444693pt;}
._15{width:22.478720pt;}
._3{width:23.744640pt;}
._14{width:25.187200pt;}
._13{width:26.188160pt;}
._1d{width:27.728640pt;}
._19{width:29.534720pt;}
._1a{width:30.528213pt;}
._16{width:31.765760pt;}
._17{width:32.849707pt;}
._18{width:34.553813pt;}
._1e{width:36.280960pt;}
._1f{width:37.184000pt;}
._8{width:175.129600pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:3.040000pt;}
.y93{bottom:3.200000pt;}
.y5{bottom:3.360000pt;}
.y6{bottom:4.000000pt;}
.y96{bottom:10.880000pt;}
.y91{bottom:11.040000pt;}
.y97{bottom:18.720000pt;}
.y92{bottom:18.880000pt;}
.y4{bottom:22.560000pt;}
.y44{bottom:56.800000pt;}
.yac{bottom:59.200000pt;}
.y110{bottom:59.520000pt;}
.yd8{bottom:64.480000pt;}
.y124{bottom:64.800000pt;}
.y43{bottom:72.480000pt;}
.yab{bottom:74.720000pt;}
.y7f{bottom:75.200000pt;}
.yd7{bottom:80.160000pt;}
.y10f{bottom:80.480000pt;}
.y42{bottom:88.192000pt;}
.yaa{bottom:90.432000pt;}
.y7e{bottom:90.912000pt;}
.yd6{bottom:95.712000pt;}
.y10e{bottom:96.192000pt;}
.y41{bottom:103.872000pt;}
.ya9{bottom:106.112000pt;}
.y7d{bottom:106.432000pt;}
.yd5{bottom:111.392000pt;}
.y10d{bottom:111.872000pt;}
.y123{bottom:119.392000pt;}
.y40{bottom:119.552000pt;}
.ya8{bottom:121.792000pt;}
.y7c{bottom:122.112000pt;}
.yd4{bottom:127.072000pt;}
.y10c{bottom:127.392000pt;}
.y3f{bottom:135.066667pt;}
.ya7{bottom:137.466667pt;}
.y7b{bottom:137.786667pt;}
.yd3{bottom:142.746667pt;}
.y10b{bottom:143.066667pt;}
.y3e{bottom:150.746667pt;}
.ya6{bottom:153.146667pt;}
.y7a{bottom:153.466667pt;}
.yd2{bottom:158.426667pt;}
.y10a{bottom:158.746667pt;}
.y3d{bottom:166.426667pt;}
.ya5{bottom:168.666667pt;}
.y79{bottom:169.146667pt;}
.yd1{bottom:174.106667pt;}
.y109{bottom:174.426667pt;}
.y3c{bottom:182.106667pt;}
.ya4{bottom:184.346667pt;}
.y78{bottom:184.666667pt;}
.yd0{bottom:189.626667pt;}
.y108{bottom:190.106667pt;}
.y122{bottom:197.626667pt;}
.y3b{bottom:197.786667pt;}
.ya3{bottom:200.026667pt;}
.y77{bottom:200.346667pt;}
.y107{bottom:205.626667pt;}
.ycf{bottom:206.106667pt;}
.y3a{bottom:213.306667pt;}
.ya2{bottom:215.706667pt;}
.y76{bottom:216.026667pt;}
.y106{bottom:221.306667pt;}
.yce{bottom:221.786667pt;}
.y39{bottom:228.986667pt;}
.ya1{bottom:231.386667pt;}
.y75{bottom:231.706667pt;}
.y105{bottom:236.986667pt;}
.ycd{bottom:237.466667pt;}
.y38{bottom:244.666667pt;}
.ya0{bottom:246.906667pt;}
.y74{bottom:247.386667pt;}
.y104{bottom:252.666667pt;}
.ycc{bottom:253.146667pt;}
.y37{bottom:260.346667pt;}
.y9f{bottom:262.426667pt;}
.y73{bottom:263.066667pt;}
.y103{bottom:268.346667pt;}
.ycb{bottom:268.826667pt;}
.y36{bottom:276.026667pt;}
.y72{bottom:278.586667pt;}
.y9e{bottom:279.066667pt;}
.y102{bottom:284.026667pt;}
.yca{bottom:284.186667pt;}
.y121{bottom:291.546667pt;}
.y35{bottom:291.706667pt;}
.y71{bottom:294.266667pt;}
.y9d{bottom:294.746667pt;}
.y101{bottom:299.546667pt;}
.y34{bottom:307.226667pt;}
.y70{bottom:309.946667pt;}
.y9c{bottom:310.426667pt;}
.y100{bottom:315.226667pt;}
.yc9{bottom:319.586667pt;}
.y33{bottom:322.946667pt;}
.y6f{bottom:325.666667pt;}
.y9b{bottom:326.146667pt;}
.yff{bottom:330.946667pt;}
.y32{bottom:338.626667pt;}
.y6e{bottom:341.346667pt;}
.y9a{bottom:341.666667pt;}
.yfe{bottom:346.626667pt;}
.y31{bottom:354.306667pt;}
.yc8{bottom:354.946667pt;}
.y6d{bottom:356.866667pt;}
.yfd{bottom:362.306667pt;}
.y120{bottom:369.826667pt;}
.y30{bottom:369.986667pt;}
.y6c{bottom:372.546667pt;}
.y99{bottom:376.866667pt;}
.yfc{bottom:377.826667pt;}
.y2f{bottom:385.506667pt;}
.y6b{bottom:388.226667pt;}
.yc7{bottom:390.146667pt;}
.yfb{bottom:393.506667pt;}
.y2e{bottom:401.186667pt;}
.y6a{bottom:403.906667pt;}
.yfa{bottom:409.186667pt;}
.y98{bottom:412.226667pt;}
.y2d{bottom:416.866667pt;}
.y69{bottom:419.586667pt;}
.yf9{bottom:424.866667pt;}
.yc6{bottom:425.506667pt;}
.y95{bottom:431.906667pt;}
.y2c{bottom:432.546667pt;}
.y68{bottom:435.266667pt;}
.yf8{bottom:440.546667pt;}
.y2b{bottom:448.226667pt;}
.y67{bottom:450.786667pt;}
.yf7{bottom:456.226667pt;}
.yc5{bottom:460.866667pt;}
.y11f{bottom:463.746667pt;}
.y2a{bottom:463.906667pt;}
.y66{bottom:466.466667pt;}
.y94{bottom:467.106667pt;}
.yf6{bottom:471.746667pt;}
.y29{bottom:479.426667pt;}
.y65{bottom:482.146667pt;}
.yc4{bottom:482.626667pt;}
.yf5{bottom:487.426667pt;}
.y28{bottom:495.106667pt;}
.y64{bottom:497.826667pt;}
.yc3{bottom:498.306667pt;}
.y90{bottom:502.466667pt;}
.yf4{bottom:503.106667pt;}
.y27{bottom:510.786667pt;}
.y63{bottom:513.506667pt;}
.yc2{bottom:513.986667pt;}
.yf3{bottom:518.786667pt;}
.y26{bottom:526.466667pt;}
.y62{bottom:529.026667pt;}
.yc1{bottom:529.506667pt;}
.yf2{bottom:534.466667pt;}
.y8e{bottom:537.826667pt;}
.y11e{bottom:541.986667pt;}
.y25{bottom:542.146667pt;}
.y61{bottom:544.706667pt;}
.yc0{bottom:545.186667pt;}
.yf1{bottom:550.013333pt;}
.y24{bottom:557.693333pt;}
.y8d{bottom:559.613333pt;}
.y60{bottom:560.413333pt;}
.ybf{bottom:560.893333pt;}
.yf0{bottom:565.693333pt;}
.y23{bottom:573.373333pt;}
.y8c{bottom:575.293333pt;}
.y5f{bottom:576.093333pt;}
.ybe{bottom:576.573333pt;}
.yef{bottom:581.373333pt;}
.y22{bottom:589.053333pt;}
.y8b{bottom:590.973333pt;}
.y5e{bottom:591.773333pt;}
.ybd{bottom:592.253333pt;}
.yee{bottom:597.053333pt;}
.y21{bottom:604.733333pt;}
.y8a{bottom:606.493333pt;}
.y5d{bottom:607.453333pt;}
.ybc{bottom:607.773333pt;}
.yed{bottom:612.733333pt;}
.y20{bottom:620.413333pt;}
.y89{bottom:622.173333pt;}
.y5c{bottom:622.973333pt;}
.ybb{bottom:624.413333pt;}
.yec{bottom:628.413333pt;}
.y11d{bottom:635.933333pt;}
.y1f{bottom:636.093333pt;}
.y88{bottom:637.853333pt;}
.y5b{bottom:638.653333pt;}
.yba{bottom:639.933333pt;}
.yeb{bottom:643.933333pt;}
.y1e{bottom:651.613333pt;}
.y87{bottom:653.533333pt;}
.y5a{bottom:654.333333pt;}
.yb9{bottom:655.613333pt;}
.yea{bottom:659.613333pt;}
.y1d{bottom:667.293333pt;}
.y86{bottom:669.213333pt;}
.y59{bottom:670.013333pt;}
.yb8{bottom:671.293333pt;}
.ye9{bottom:675.293333pt;}
.y1c{bottom:682.973333pt;}
.y85{bottom:684.733333pt;}
.y58{bottom:685.693333pt;}
.yb7{bottom:686.973333pt;}
.ye8{bottom:690.973333pt;}
.y1b{bottom:698.653333pt;}
.y84{bottom:700.413333pt;}
.y57{bottom:701.213333pt;}
.yb6{bottom:702.653333pt;}
.ye7{bottom:706.653333pt;}
.y11c{bottom:714.173333pt;}
.y1a{bottom:714.333333pt;}
.y83{bottom:716.093333pt;}
.y56{bottom:716.893333pt;}
.yb5{bottom:718.173333pt;}
.ye6{bottom:722.173333pt;}
.y19{bottom:729.853333pt;}
.y82{bottom:731.773333pt;}
.y55{bottom:732.573333pt;}
.yb4{bottom:733.853333pt;}
.ye5{bottom:737.853333pt;}
.y18{bottom:745.533333pt;}
.y81{bottom:747.453333pt;}
.y54{bottom:748.253333pt;}
.yb3{bottom:749.373333pt;}
.ye4{bottom:753.533333pt;}
.y17{bottom:761.213333pt;}
.y80{bottom:762.973333pt;}
.y53{bottom:763.933333pt;}
.ye3{bottom:769.213333pt;}
.y11b{bottom:776.893333pt;}
.y16{bottom:777.573333pt;}
.y52{bottom:779.653333pt;}
.yb2{bottom:784.773333pt;}
.ye2{bottom:784.933333pt;}
.y11a{bottom:792.613333pt;}
.y15{bottom:793.253333pt;}
.y51{bottom:795.173333pt;}
.ye1{bottom:800.613333pt;}
.y119{bottom:808.133333pt;}
.y14{bottom:808.933333pt;}
.y50{bottom:810.853333pt;}
.ye0{bottom:816.133333pt;}
.yb1{bottom:819.973333pt;}
.y118{bottom:823.813333pt;}
.y13{bottom:824.613333pt;}
.y4f{bottom:826.533333pt;}
.ydf{bottom:831.813333pt;}
.y117{bottom:839.333333pt;}
.y12{bottom:840.133333pt;}
.y4e{bottom:842.213333pt;}
.yde{bottom:847.333333pt;}
.yb0{bottom:855.333333pt;}
.y11{bottom:855.813333pt;}
.y4d{bottom:857.893333pt;}
.y116{bottom:859.013333pt;}
.y10{bottom:871.493333pt;}
.y4c{bottom:873.573333pt;}
.y115{bottom:878.693333pt;}
.ydd{bottom:882.693333pt;}
.yf{bottom:887.013333pt;}
.y4b{bottom:889.093333pt;}
.yaf{bottom:890.693333pt;}
.y114{bottom:898.213333pt;}
.ye{bottom:904.773333pt;}
.ydc{bottom:917.893333pt;}
.yd{bottom:920.453333pt;}
.yae{bottom:925.893333pt;}
.yc{bottom:936.133333pt;}
.y113{bottom:937.573333pt;}
.y4a{bottom:951.813333pt;}
.yb{bottom:952.293333pt;}
.ydb{bottom:953.253333pt;}
.y112{bottom:957.253333pt;}
.yad{bottom:961.253333pt;}
.y49{bottom:967.333333pt;}
.ya{bottom:971.173333pt;}
.y111{bottom:976.933333pt;}
.y48{bottom:983.013333pt;}
.yda{bottom:988.453333pt;}
.y9{bottom:989.893333pt;}
.y47{bottom:998.693333pt;}
.y8{bottom:1008.640000pt;}
.y46{bottom:1014.400000pt;}
.yd9{bottom:1023.840000pt;}
.y7{bottom:1027.520000pt;}
.y45{bottom:1030.080000pt;}
.y3{bottom:1045.920000pt;}
.y2{bottom:1063.200000pt;}
.y1{bottom:1080.320000pt;}
.hf{height:15.520000pt;}
.ha{height:15.552000pt;}
.hd{height:15.680000pt;}
.h4{height:17.120000pt;}
.hc{height:31.200000pt;}
.hb{height:31.360000pt;}
.he{height:31.392000pt;}
.h7{height:38.050313pt;}
.h8{height:38.076250pt;}
.h2{height:42.205000pt;}
.h6{height:45.875000pt;}
.h9{height:54.598989pt;}
.h5{height:58.563750pt;}
.h3{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:54.592000pt;}
.wc{width:101.632000pt;}
.w15{width:108.832000pt;}
.w13{width:110.112000pt;}
.w17{width:113.472000pt;}
.w14{width:116.000000pt;}
.w11{width:118.592000pt;}
.w12{width:119.872000pt;}
.w16{width:121.792000pt;}
.w6{width:148.506667pt;}
.w9{width:169.466667pt;}
.wf{width:172.826667pt;}
.wd{width:224.226667pt;}
.w7{width:226.946667pt;}
.w4{width:245.186667pt;}
.wa{width:276.386667pt;}
.w8{width:290.466667pt;}
.we{width:298.946667pt;}
.w5{width:302.466667pt;}
.wb{width:317.826667pt;}
.w10{width:579.493333pt;}
.w2{width:653.253333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x49{left:0.960000pt;}
.x36{left:2.080000pt;}
.x18{left:3.360000pt;}
.x60{left:5.600000pt;}
.x42{left:6.720000pt;}
.x5{left:7.680000pt;}
.x3d{left:8.640000pt;}
.x4c{left:9.600000pt;}
.x40{left:11.040000pt;}
.x7{left:12.640000pt;}
.x1f{left:14.880000pt;}
.x21{left:16.320000pt;}
.x34{left:17.280000pt;}
.x26{left:18.560000pt;}
.x5c{left:19.840000pt;}
.x45{left:20.800000pt;}
.x1b{left:21.920000pt;}
.x23{left:23.680000pt;}
.x1e{left:25.760000pt;}
.x19{left:26.720000pt;}
.x2e{left:28.640000pt;}
.x5e{left:30.080000pt;}
.x4f{left:31.200000pt;}
.x24{left:32.480000pt;}
.x4b{left:34.080000pt;}
.x5f{left:36.320000pt;}
.x4d{left:38.080000pt;}
.x1d{left:39.360000pt;}
.x33{left:41.920000pt;}
.x4{left:43.040000pt;}
.x53{left:44.640000pt;}
.x13{left:47.040000pt;}
.x8{left:48.000000pt;}
.x29{left:51.520000pt;}
.x20{left:53.952000pt;}
.x17{left:54.880000pt;}
.x35{left:56.352000pt;}
.x10{left:57.440000pt;}
.x32{left:59.200000pt;}
.x31{left:60.992000pt;}
.x25{left:64.192000pt;}
.x2d{left:65.440000pt;}
.x1a{left:66.720000pt;}
.x11{left:72.000000pt;}
.x4e{left:74.272000pt;}
.x2b{left:75.840000pt;}
.x37{left:78.560000pt;}
.x15{left:81.920000pt;}
.x3e{left:85.632000pt;}
.x3b{left:89.466667pt;}
.x14{left:90.746667pt;}
.x30{left:92.186667pt;}
.x41{left:95.866667pt;}
.x3f{left:100.986667pt;}
.x43{left:103.226667pt;}
.x39{left:106.266667pt;}
.x22{left:108.346667pt;}
.x44{left:109.466667pt;}
.x57{left:110.426667pt;}
.x56{left:113.146667pt;}
.x2f{left:117.440000pt;}
.x1c{left:122.426667pt;}
.x27{left:126.906667pt;}
.x46{left:129.312000pt;}
.x4a{left:133.626667pt;}
.x12{left:142.746667pt;}
.x50{left:157.466667pt;}
.x59{left:168.826667pt;}
.x1{left:171.386667pt;}
.x28{left:188.986667pt;}
.x55{left:194.786667pt;}
.x38{left:202.266667pt;}
.xa{left:206.746667pt;}
.x58{left:211.866667pt;}
.x9{left:216.346667pt;}
.xe{left:217.306667pt;}
.x52{left:218.626667pt;}
.x54{left:222.466667pt;}
.xc{left:227.386667pt;}
.x3{left:231.546667pt;}
.x47{left:273.186667pt;}
.x2a{left:280.386667pt;}
.xb{left:294.786667pt;}
.x2{left:308.706667pt;}
.x3a{left:325.506667pt;}
.xd{left:367.586667pt;}
.x5a{left:398.946667pt;}
.xf{left:409.213333pt;}
.x5b{left:509.853333pt;}
.x2c{left:572.933333pt;}
.x48{left:574.213333pt;}
.x16{left:598.533333pt;}
.x51{left:628.453333pt;}
.x5d{left:633.573333pt;}
.x3c{left:645.253333pt;}
.x6{left:696.293333pt;}
}




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