
    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_f6d0ad6996b0386e7e557cd0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_727b250eea097c225fae9a99.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_960643d797f453e18547259f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f9818924b591d8cb8edfaa99.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4ed1c141a8f478a87d64c8d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_da5aecef31de9367d870f795.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a044f8341e8774cad87477bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_b7d1d2ee5987255fc33ba253.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0237fbcfc23058efb8c8b6f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0465e594bf357c7dfb13edf5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;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:ffb;src:url('chunks/assets/font_649133b4e575daf9c95ef218.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.710449;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:ffc;src:url('chunks/assets/font_aae639429fef2723e9994d36.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.982910;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:ffd;src:url('chunks/assets/font_3335305df775243b360b7699.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941895;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.143392,-0.204789,0.204789,0.143392,0,0);-ms-transform:matrix(0.143392,-0.204789,0.204789,0.143392,0,0);-webkit-transform:matrix(0.143392,-0.204789,0.204789,0.143392,0,0);}
.m1{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);}
.v2{vertical-align:-33.120000px;}
.v6{vertical-align:-27.360000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.360000px;}
.v5{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.ls18{letter-spacing:-0.792000px;}
.ls6{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.223800px;}
.ls2{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.206400px;}
.ls1{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.078000px;}
.ls14{letter-spacing:-0.074400px;}
.ls8{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.017280px;}
.ls1c{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.269400px;}
.lsf{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.576000px;}
.ls15{letter-spacing:0.648000px;}
.ls3{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.792000px;}
.ls4{letter-spacing:1.224000px;}
.lsc{letter-spacing:1.440000px;}
.ls16{letter-spacing:2.880000px;}
.lsb{letter-spacing:4.320000px;}
.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;}
}
.ws0{word-spacing:-27.000000px;}
.ws12{word-spacing:-19.440000px;}
.wsb{word-spacing:-19.224000px;}
.wsf{word-spacing:-18.792000px;}
.wsa{word-spacing:-18.720000px;}
.ws16{word-spacing:-18.648000px;}
.ws10{word-spacing:-18.576000px;}
.ws19{word-spacing:-18.288000px;}
.ws18{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.ws17{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws11{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.280000px;}
.ws1a{word-spacing:-17.208000px;}
.ws6{word-spacing:-15.012000px;}
.ws1f{word-spacing:-14.993280px;}
.ws1c{word-spacing:-14.940000px;}
.ws1e{word-spacing:-14.733600px;}
.ws1b{word-spacing:-12.329400px;}
.ws2{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.985600px;}
.ws14{word-spacing:-11.982000px;}
.ws13{word-spacing:-11.836200px;}
.ws1d{word-spacing:-9.720000px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:0.216000px;}
.ws8{word-spacing:0.324000px;}
.ws7{word-spacing:0.432000px;}
._13{margin-left:-2.664960px;}
._0{margin-left:-1.368000px;}
._1{width:1.492320px;}
._a{width:2.520000px;}
._b{width:3.579840px;}
._4{width:5.304000px;}
._2{width:6.888000px;}
._3{width:8.232000px;}
._5{width:9.624000px;}
._e{width:10.654992px;}
._9{width:12.216024px;}
._6{width:13.320000px;}
._7{width:14.487384px;}
._8{width:15.619704px;}
._16{width:16.689456px;}
._12{width:19.368000px;}
._c{width:21.360024px;}
._d{width:23.371656px;}
._17{width:24.508344px;}
._f{width:26.568000px;}
._10{width:28.728000px;}
._11{width:30.447408px;}
._1a{width:31.464000px;}
._15{width:33.171360px;}
._14{width:34.200000px;}
._18{width:35.760000px;}
._19{width:36.960000px;}
._1c{width:40.248000px;}
._1b{width:44.568000px;}
._1e{width:45.680640px;}
._1d{width:46.767360px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(216,216,216);}
.fs8{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:120.000000px;}
.fs0{font-size:239.988670px;}
.y0{bottom:0.000000px;}
.yea{bottom:3.600000px;}
.ye3{bottom:3.780000px;}
.y2{bottom:7.742826px;}
.ye2{bottom:20.880000px;}
.ye5{bottom:21.060000px;}
.y3d{bottom:126.000000px;}
.y98{bottom:143.460000px;}
.y58{bottom:146.340000px;}
.y53{bottom:146.700000px;}
.yb1{bottom:163.260000px;}
.yc2{bottom:163.800000px;}
.y97{bottom:164.160000px;}
.y76{bottom:164.340000px;}
.y3c{bottom:167.400000px;}
.yb0{bottom:183.960000px;}
.yc1{bottom:184.500000px;}
.y96{bottom:184.860000px;}
.y75{bottom:185.040000px;}
.y50{bottom:188.100000px;}
.yc0{bottom:205.200000px;}
.y95{bottom:205.560000px;}
.y74{bottom:205.770000px;}
.y3b{bottom:208.830000px;}
.yef{bottom:210.450000px;}
.yaf{bottom:225.570000px;}
.y4f{bottom:229.530000px;}
.yae{bottom:246.270000px;}
.ybf{bottom:246.990000px;}
.y94{bottom:247.170000px;}
.y73{bottom:247.530000px;}
.yee{bottom:247.710000px;}
.yf7{bottom:248.970000px;}
.y3a{bottom:250.230000px;}
.yed{bottom:254.550000px;}
.yad{bottom:266.970000px;}
.ybe{bottom:267.690000px;}
.y93{bottom:267.870000px;}
.y72{bottom:268.230000px;}
.y5a{bottom:270.570000px;}
.y4e{bottom:270.930000px;}
.yec{bottom:282.090000px;}
.yf6{bottom:286.410000px;}
.y92{bottom:288.570000px;}
.y71{bottom:288.930000px;}
.yeb{bottom:289.470000px;}
.y39{bottom:291.630000px;}
.ye9{bottom:306.750000px;}
.yac{bottom:308.730000px;}
.y91{bottom:309.270000px;}
.y56{bottom:311.970000px;}
.y4d{bottom:312.330000px;}
.y20{bottom:320.610000px;}
.ye8{bottom:323.850000px;}
.yab{bottom:329.430000px;}
.ybd{bottom:329.970000px;}
.y70{bottom:330.690000px;}
.y38{bottom:333.030000px;}
.ye7{bottom:341.130000px;}
.y90{bottom:351.030000px;}
.y6f{bottom:351.390000px;}
.y4c{bottom:353.730000px;}
.ye6{bottom:358.410000px;}
.y1f{bottom:370.290000px;}
.yaa{bottom:371.190000px;}
.y8f{bottom:371.730000px;}
.y37{bottom:374.430000px;}
.ye4{bottom:375.690000px;}
.ya9{bottom:391.710000px;}
.y8e{bottom:392.430000px;}
.y6e{bottom:392.970000px;}
.y54{bottom:394.770000px;}
.y1e{bottom:395.130000px;}
.ye1{bottom:410.970000px;}
.y8d{bottom:413.130000px;}
.y6d{bottom:413.670000px;}
.y36{bottom:415.830000px;}
.y1d{bottom:419.970000px;}
.y1{bottom:420.581938px;}
.ya8{bottom:433.470000px;}
.y6c{bottom:434.370000px;}
.y4b{bottom:436.530000px;}
.y1c{bottom:444.855000px;}
.ye0{bottom:450.255000px;}
.ya7{bottom:454.215000px;}
.y8c{bottom:454.755000px;}
.y35{bottom:457.275000px;}
.y1b{bottom:469.695000px;}
.ydf{bottom:472.395000px;}
.y8b{bottom:475.455000px;}
.y6b{bottom:476.175000px;}
.y4a{bottom:477.975000px;}
.yde{bottom:493.095000px;}
.y1a{bottom:494.535000px;}
.ya6{bottom:495.975000px;}
.ybc{bottom:496.155000px;}
.y6a{bottom:496.875000px;}
.y34{bottom:498.675000px;}
.ydd{bottom:513.795000px;}
.ya5{bottom:516.675000px;}
.ybb{bottom:516.855000px;}
.y8a{bottom:517.215000px;}
.y69{bottom:517.575000px;}
.y19{bottom:519.375000px;}
.ydc{bottom:535.935000px;}
.y89{bottom:537.915000px;}
.y33{bottom:540.075000px;}
.y18{bottom:544.215000px;}
.ya4{bottom:558.255000px;}
.y88{bottom:558.615000px;}
.y68{bottom:559.155000px;}
.ydb{bottom:559.335000px;}
.y49{bottom:560.775000px;}
.y17{bottom:569.055000px;}
.ya3{bottom:578.955000px;}
.yba{bottom:579.315000px;}
.y67{bottom:579.855000px;}
.yda{bottom:580.035000px;}
.y32{bottom:581.475000px;}
.y16{bottom:593.895000px;}
.yb9{bottom:600.015000px;}
.y87{bottom:600.375000px;}
.y66{bottom:600.555000px;}
.yd9{bottom:600.735000px;}
.y55{bottom:601.815000px;}
.y48{bottom:602.175000px;}
.y15{bottom:618.735000px;}
.ya2{bottom:620.715000px;}
.y86{bottom:621.075000px;}
.y65{bottom:621.255000px;}
.yd8{bottom:621.435000px;}
.y31{bottom:622.875000px;}
.ya1{bottom:641.415000px;}
.y85{bottom:641.775000px;}
.yd7{bottom:642.135000px;}
.y14{bottom:643.575000px;}
.yb8{bottom:662.475000px;}
.y64{bottom:663.015000px;}
.y30{bottom:664.275000px;}
.y13{bottom:668.415000px;}
.ya0{bottom:683.205000px;}
.y84{bottom:683.385000px;}
.y63{bottom:683.745000px;}
.y47{bottom:685.005000px;}
.yd6{bottom:687.705000px;}
.y12{bottom:693.285000px;}
.y9f{bottom:703.905000px;}
.y83{bottom:704.085000px;}
.y2f{bottom:705.705000px;}
.yf3{bottom:707.505000px;}
.yd5{bottom:708.405000px;}
.y11{bottom:718.125000px;}
.y82{bottom:724.785000px;}
.y62{bottom:725.505000px;}
.y52{bottom:726.045000px;}
.y46{bottom:726.405000px;}
.yd4{bottom:729.105000px;}
.yf1{bottom:740.625000px;}
.y10{bottom:742.965000px;}
.yf2{bottom:744.945000px;}
.y9e{bottom:745.485000px;}
.y61{bottom:746.205000px;}
.y2e{bottom:747.105000px;}
.yd3{bottom:751.245000px;}
.y9d{bottom:766.185000px;}
.y81{bottom:766.545000px;}
.y51{bottom:767.445000px;}
.yf{bottom:767.805000px;}
.yd2{bottom:774.645000px;}
.yf0{bottom:778.065000px;}
.y80{bottom:787.245000px;}
.y60{bottom:787.785000px;}
.y2d{bottom:788.505000px;}
.ye{bottom:792.645000px;}
.yd1{bottom:795.345000px;}
.y9c{bottom:807.945000px;}
.y5f{bottom:808.485000px;}
.y45{bottom:809.205000px;}
.yd0{bottom:816.045000px;}
.yd{bottom:817.485000px;}
.yb7{bottom:828.645000px;}
.y7f{bottom:829.005000px;}
.y5e{bottom:829.185000px;}
.y2c{bottom:829.905000px;}
.ycf{bottom:836.745000px;}
.yb6{bottom:849.345000px;}
.y7e{bottom:849.705000px;}
.y5d{bottom:849.885000px;}
.y59{bottom:850.245000px;}
.y44{bottom:850.605000px;}
.yce{bottom:858.885000px;}
.y9b{bottom:870.405000px;}
.y2b{bottom:871.305000px;}
.ycd{bottom:882.285000px;}
.yc{bottom:890.565000px;}
.y9a{bottom:891.105000px;}
.y5c{bottom:891.285000px;}
.y43{bottom:892.005000px;}
.ycc{bottom:902.985000px;}
.yb{bottom:911.310000px;}
.yb5{bottom:911.850000px;}
.y7d{bottom:912.030000px;}
.y2a{bottom:912.750000px;}
.ycb{bottom:923.730000px;}
.yf5{bottom:929.130000px;}
.ya{bottom:932.010000px;}
.yb4{bottom:932.550000px;}
.y7c{bottom:932.730000px;}
.y5b{bottom:933.090000px;}
.y42{bottom:933.450000px;}
.yca{bottom:944.430000px;}
.y9{bottom:952.710000px;}
.y7b{bottom:953.430000px;}
.y29{bottom:954.150000px;}
.yc9{bottom:965.130000px;}
.yf4{bottom:966.570000px;}
.y8{bottom:973.410000px;}
.y99{bottom:974.130000px;}
.y41{bottom:974.850000px;}
.yff{bottom:979.350000px;}
.yc8{bottom:985.830000px;}
.yb3{bottom:994.830000px;}
.y7a{bottom:995.190000px;}
.y28{bottom:995.550000px;}
.yfe{bottom:999.510000px;}
.yc7{bottom:1006.530000px;}
.y57{bottom:1015.890000px;}
.y7{bottom:1016.250000px;}
.yfd{bottom:1019.670000px;}
.yc6{bottom:1028.670000px;}
.y79{bottom:1036.590000px;}
.y27{bottom:1036.950000px;}
.yfc{bottom:1039.830000px;}
.y6{bottom:1041.090000px;}
.yc5{bottom:1052.070000px;}
.y78{bottom:1057.290000px;}
.y40{bottom:1057.650000px;}
.yfb{bottom:1059.990000px;}
.yc4{bottom:1072.770000px;}
.yb2{bottom:1077.990000px;}
.y26{bottom:1078.350000px;}
.yfa{bottom:1080.150000px;}
.y5{bottom:1094.499000px;}
.yc3{bottom:1094.910000px;}
.y3f{bottom:1099.050000px;}
.yf9{bottom:1100.310000px;}
.y25{bottom:1119.390000px;}
.y77{bottom:1119.750000px;}
.yf8{bottom:1120.470000px;}
.y4{bottom:1131.759000px;}
.y24{bottom:1140.090000px;}
.y3e{bottom:1140.450000px;}
.y23{bottom:1208.518500px;}
.y3{bottom:1212.000000px;}
.y22{bottom:1224.718500px;}
.y21{bottom:1240.918500px;}
.h12{height:17.100000px;}
.h11{height:17.280000px;}
.he{height:34.416000px;}
.hf{height:34.560000px;}
.h13{height:38.158594px;}
.ha{height:39.313477px;}
.h14{height:53.302500px;}
.h7{height:58.621992px;}
.hc{height:58.651172px;}
.hd{height:65.010937px;}
.h10{height:65.518594px;}
.hb{height:70.628906px;}
.h9{height:70.664062px;}
.h8{height:72.562500px;}
.h6{height:80.464922px;}
.h5{height:108.843750px;}
.h4{height:125.156250px;}
.h3{height:250.300684px;}
.h2{height:645.961397px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:35.460000px;}
.w7{width:48.276000px;}
.wb{width:48.456000px;}
.wc{width:63.720000px;}
.w8{width:63.900000px;}
.w3{width:64.800000px;}
.wa{width:95.580000px;}
.w6{width:120.420000px;}
.w5{width:148.896000px;}
.w4{width:166.710000px;}
.w2{width:481.258369px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x2{left:45.756224px;}
.x8{left:66.936000px;}
.x9{left:98.136000px;}
.x7{left:106.236000px;}
.x4{left:133.701000px;}
.x5{left:147.096000px;}
.xb{left:162.930000px;}
.x1{left:184.691962px;}
.x6{left:281.415000px;}
.xc{left:329.655000px;}
.x3{left:351.060000px;}
.x14{left:416.235000px;}
.xd{left:478.545000px;}
.x10{left:514.005000px;}
.x17{left:576.285000px;}
.xe{left:598.965000px;}
.x11{left:609.585000px;}
.xf{left:647.250000px;}
.x16{left:651.570000px;}
.x12{left:658.050000px;}
.x15{left:672.810000px;}
.x13{left:786.030000px;}
.x18{left:787.110000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v6{vertical-align:-24.320000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.320000pt;}
.v5{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls18{letter-spacing:-0.704000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.198933pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.183467pt;}
.ls1{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.069333pt;}
.ls14{letter-spacing:-0.066133pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.015360pt;}
.ls1c{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.239467pt;}
.lsf{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.512000pt;}
.ls15{letter-spacing:0.576000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.704000pt;}
.ls4{letter-spacing:1.088000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls16{letter-spacing:2.560000pt;}
.lsb{letter-spacing:3.840000pt;}
.ws0{word-spacing:-24.000000pt;}
.ws12{word-spacing:-17.280000pt;}
.wsb{word-spacing:-17.088000pt;}
.wsf{word-spacing:-16.704000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws16{word-spacing:-16.576000pt;}
.ws10{word-spacing:-16.512000pt;}
.ws19{word-spacing:-16.256000pt;}
.ws18{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws17{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws11{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.360000pt;}
.ws1a{word-spacing:-15.296000pt;}
.ws6{word-spacing:-13.344000pt;}
.ws1f{word-spacing:-13.327360pt;}
.ws1c{word-spacing:-13.280000pt;}
.ws1e{word-spacing:-13.096533pt;}
.ws1b{word-spacing:-10.959467pt;}
.ws2{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.653867pt;}
.ws14{word-spacing:-10.650667pt;}
.ws13{word-spacing:-10.521067pt;}
.ws1d{word-spacing:-8.640000pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:0.192000pt;}
.ws8{word-spacing:0.288000pt;}
.ws7{word-spacing:0.384000pt;}
._13{margin-left:-2.368853pt;}
._0{margin-left:-1.216000pt;}
._1{width:1.326507pt;}
._a{width:2.240000pt;}
._b{width:3.182080pt;}
._4{width:4.714667pt;}
._2{width:6.122667pt;}
._3{width:7.317333pt;}
._5{width:8.554667pt;}
._e{width:9.471104pt;}
._9{width:10.858688pt;}
._6{width:11.840000pt;}
._7{width:12.877675pt;}
._8{width:13.884181pt;}
._16{width:14.835072pt;}
._12{width:17.216000pt;}
._c{width:18.986688pt;}
._d{width:20.774805pt;}
._17{width:21.785195pt;}
._f{width:23.616000pt;}
._10{width:25.536000pt;}
._11{width:27.064363pt;}
._1a{width:27.968000pt;}
._15{width:29.485653pt;}
._14{width:30.400000pt;}
._18{width:31.786667pt;}
._19{width:32.853333pt;}
._1c{width:35.776000pt;}
._1b{width:39.616000pt;}
._1e{width:40.605013pt;}
._1d{width:41.570987pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:106.666667pt;}
.fs0{font-size:213.323263pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:3.200000pt;}
.ye3{bottom:3.360000pt;}
.y2{bottom:6.882512pt;}
.ye2{bottom:18.560000pt;}
.ye5{bottom:18.720000pt;}
.y3d{bottom:112.000000pt;}
.y98{bottom:127.520000pt;}
.y58{bottom:130.080000pt;}
.y53{bottom:130.400000pt;}
.yb1{bottom:145.120000pt;}
.yc2{bottom:145.600000pt;}
.y97{bottom:145.920000pt;}
.y76{bottom:146.080000pt;}
.y3c{bottom:148.800000pt;}
.yb0{bottom:163.520000pt;}
.yc1{bottom:164.000000pt;}
.y96{bottom:164.320000pt;}
.y75{bottom:164.480000pt;}
.y50{bottom:167.200000pt;}
.yc0{bottom:182.400000pt;}
.y95{bottom:182.720000pt;}
.y74{bottom:182.906667pt;}
.y3b{bottom:185.626667pt;}
.yef{bottom:187.066667pt;}
.yaf{bottom:200.506667pt;}
.y4f{bottom:204.026667pt;}
.yae{bottom:218.906667pt;}
.ybf{bottom:219.546667pt;}
.y94{bottom:219.706667pt;}
.y73{bottom:220.026667pt;}
.yee{bottom:220.186667pt;}
.yf7{bottom:221.306667pt;}
.y3a{bottom:222.426667pt;}
.yed{bottom:226.266667pt;}
.yad{bottom:237.306667pt;}
.ybe{bottom:237.946667pt;}
.y93{bottom:238.106667pt;}
.y72{bottom:238.426667pt;}
.y5a{bottom:240.506667pt;}
.y4e{bottom:240.826667pt;}
.yec{bottom:250.746667pt;}
.yf6{bottom:254.586667pt;}
.y92{bottom:256.506667pt;}
.y71{bottom:256.826667pt;}
.yeb{bottom:257.306667pt;}
.y39{bottom:259.226667pt;}
.ye9{bottom:272.666667pt;}
.yac{bottom:274.426667pt;}
.y91{bottom:274.906667pt;}
.y56{bottom:277.306667pt;}
.y4d{bottom:277.626667pt;}
.y20{bottom:284.986667pt;}
.ye8{bottom:287.866667pt;}
.yab{bottom:292.826667pt;}
.ybd{bottom:293.306667pt;}
.y70{bottom:293.946667pt;}
.y38{bottom:296.026667pt;}
.ye7{bottom:303.226667pt;}
.y90{bottom:312.026667pt;}
.y6f{bottom:312.346667pt;}
.y4c{bottom:314.426667pt;}
.ye6{bottom:318.586667pt;}
.y1f{bottom:329.146667pt;}
.yaa{bottom:329.946667pt;}
.y8f{bottom:330.426667pt;}
.y37{bottom:332.826667pt;}
.ye4{bottom:333.946667pt;}
.ya9{bottom:348.186667pt;}
.y8e{bottom:348.826667pt;}
.y6e{bottom:349.306667pt;}
.y54{bottom:350.906667pt;}
.y1e{bottom:351.226667pt;}
.ye1{bottom:365.306667pt;}
.y8d{bottom:367.226667pt;}
.y6d{bottom:367.706667pt;}
.y36{bottom:369.626667pt;}
.y1d{bottom:373.306667pt;}
.y1{bottom:373.850611pt;}
.ya8{bottom:385.306667pt;}
.y6c{bottom:386.106667pt;}
.y4b{bottom:388.026667pt;}
.y1c{bottom:395.426667pt;}
.ye0{bottom:400.226667pt;}
.ya7{bottom:403.746667pt;}
.y8c{bottom:404.226667pt;}
.y35{bottom:406.466667pt;}
.y1b{bottom:417.506667pt;}
.ydf{bottom:419.906667pt;}
.y8b{bottom:422.626667pt;}
.y6b{bottom:423.266667pt;}
.y4a{bottom:424.866667pt;}
.yde{bottom:438.306667pt;}
.y1a{bottom:439.586667pt;}
.ya6{bottom:440.866667pt;}
.ybc{bottom:441.026667pt;}
.y6a{bottom:441.666667pt;}
.y34{bottom:443.266667pt;}
.ydd{bottom:456.706667pt;}
.ya5{bottom:459.266667pt;}
.ybb{bottom:459.426667pt;}
.y8a{bottom:459.746667pt;}
.y69{bottom:460.066667pt;}
.y19{bottom:461.666667pt;}
.ydc{bottom:476.386667pt;}
.y89{bottom:478.146667pt;}
.y33{bottom:480.066667pt;}
.y18{bottom:483.746667pt;}
.ya4{bottom:496.226667pt;}
.y88{bottom:496.546667pt;}
.y68{bottom:497.026667pt;}
.ydb{bottom:497.186667pt;}
.y49{bottom:498.466667pt;}
.y17{bottom:505.826667pt;}
.ya3{bottom:514.626667pt;}
.yba{bottom:514.946667pt;}
.y67{bottom:515.426667pt;}
.yda{bottom:515.586667pt;}
.y32{bottom:516.866667pt;}
.y16{bottom:527.906667pt;}
.yb9{bottom:533.346667pt;}
.y87{bottom:533.666667pt;}
.y66{bottom:533.826667pt;}
.yd9{bottom:533.986667pt;}
.y55{bottom:534.946667pt;}
.y48{bottom:535.266667pt;}
.y15{bottom:549.986667pt;}
.ya2{bottom:551.746667pt;}
.y86{bottom:552.066667pt;}
.y65{bottom:552.226667pt;}
.yd8{bottom:552.386667pt;}
.y31{bottom:553.666667pt;}
.ya1{bottom:570.146667pt;}
.y85{bottom:570.466667pt;}
.yd7{bottom:570.786667pt;}
.y14{bottom:572.066667pt;}
.yb8{bottom:588.866667pt;}
.y64{bottom:589.346667pt;}
.y30{bottom:590.466667pt;}
.y13{bottom:594.146667pt;}
.ya0{bottom:607.293333pt;}
.y84{bottom:607.453333pt;}
.y63{bottom:607.773333pt;}
.y47{bottom:608.893333pt;}
.yd6{bottom:611.293333pt;}
.y12{bottom:616.253333pt;}
.y9f{bottom:625.693333pt;}
.y83{bottom:625.853333pt;}
.y2f{bottom:627.293333pt;}
.yf3{bottom:628.893333pt;}
.yd5{bottom:629.693333pt;}
.y11{bottom:638.333333pt;}
.y82{bottom:644.253333pt;}
.y62{bottom:644.893333pt;}
.y52{bottom:645.373333pt;}
.y46{bottom:645.693333pt;}
.yd4{bottom:648.093333pt;}
.yf1{bottom:658.333333pt;}
.y10{bottom:660.413333pt;}
.yf2{bottom:662.173333pt;}
.y9e{bottom:662.653333pt;}
.y61{bottom:663.293333pt;}
.y2e{bottom:664.093333pt;}
.yd3{bottom:667.773333pt;}
.y9d{bottom:681.053333pt;}
.y81{bottom:681.373333pt;}
.y51{bottom:682.173333pt;}
.yf{bottom:682.493333pt;}
.yd2{bottom:688.573333pt;}
.yf0{bottom:691.613333pt;}
.y80{bottom:699.773333pt;}
.y60{bottom:700.253333pt;}
.y2d{bottom:700.893333pt;}
.ye{bottom:704.573333pt;}
.yd1{bottom:706.973333pt;}
.y9c{bottom:718.173333pt;}
.y5f{bottom:718.653333pt;}
.y45{bottom:719.293333pt;}
.yd0{bottom:725.373333pt;}
.yd{bottom:726.653333pt;}
.yb7{bottom:736.573333pt;}
.y7f{bottom:736.893333pt;}
.y5e{bottom:737.053333pt;}
.y2c{bottom:737.693333pt;}
.ycf{bottom:743.773333pt;}
.yb6{bottom:754.973333pt;}
.y7e{bottom:755.293333pt;}
.y5d{bottom:755.453333pt;}
.y59{bottom:755.773333pt;}
.y44{bottom:756.093333pt;}
.yce{bottom:763.453333pt;}
.y9b{bottom:773.693333pt;}
.y2b{bottom:774.493333pt;}
.ycd{bottom:784.253333pt;}
.yc{bottom:791.613333pt;}
.y9a{bottom:792.093333pt;}
.y5c{bottom:792.253333pt;}
.y43{bottom:792.893333pt;}
.ycc{bottom:802.653333pt;}
.yb{bottom:810.053333pt;}
.yb5{bottom:810.533333pt;}
.y7d{bottom:810.693333pt;}
.y2a{bottom:811.333333pt;}
.ycb{bottom:821.093333pt;}
.yf5{bottom:825.893333pt;}
.ya{bottom:828.453333pt;}
.yb4{bottom:828.933333pt;}
.y7c{bottom:829.093333pt;}
.y5b{bottom:829.413333pt;}
.y42{bottom:829.733333pt;}
.yca{bottom:839.493333pt;}
.y9{bottom:846.853333pt;}
.y7b{bottom:847.493333pt;}
.y29{bottom:848.133333pt;}
.yc9{bottom:857.893333pt;}
.yf4{bottom:859.173333pt;}
.y8{bottom:865.253333pt;}
.y99{bottom:865.893333pt;}
.y41{bottom:866.533333pt;}
.yff{bottom:870.533333pt;}
.yc8{bottom:876.293333pt;}
.yb3{bottom:884.293333pt;}
.y7a{bottom:884.613333pt;}
.y28{bottom:884.933333pt;}
.yfe{bottom:888.453333pt;}
.yc7{bottom:894.693333pt;}
.y57{bottom:903.013333pt;}
.y7{bottom:903.333333pt;}
.yfd{bottom:906.373333pt;}
.yc6{bottom:914.373333pt;}
.y79{bottom:921.413333pt;}
.y27{bottom:921.733333pt;}
.yfc{bottom:924.293333pt;}
.y6{bottom:925.413333pt;}
.yc5{bottom:935.173333pt;}
.y78{bottom:939.813333pt;}
.y40{bottom:940.133333pt;}
.yfb{bottom:942.213333pt;}
.yc4{bottom:953.573333pt;}
.yb2{bottom:958.213333pt;}
.y26{bottom:958.533333pt;}
.yfa{bottom:960.133333pt;}
.y5{bottom:972.888000pt;}
.yc3{bottom:973.253333pt;}
.y3f{bottom:976.933333pt;}
.yf9{bottom:978.053333pt;}
.y25{bottom:995.013333pt;}
.y77{bottom:995.333333pt;}
.yf8{bottom:995.973333pt;}
.y4{bottom:1006.008000pt;}
.y24{bottom:1013.413333pt;}
.y3e{bottom:1013.733333pt;}
.y23{bottom:1074.238667pt;}
.y3{bottom:1077.333333pt;}
.y22{bottom:1088.638667pt;}
.y21{bottom:1103.038667pt;}
.h12{height:15.200000pt;}
.h11{height:15.360000pt;}
.he{height:30.592000pt;}
.hf{height:30.720000pt;}
.h13{height:33.918750pt;}
.ha{height:34.945312pt;}
.h14{height:47.380000pt;}
.h7{height:52.108438pt;}
.hc{height:52.134375pt;}
.hd{height:57.787500pt;}
.h10{height:58.238750pt;}
.hb{height:62.781250pt;}
.h9{height:62.812500pt;}
.h8{height:64.500000pt;}
.h6{height:71.524375pt;}
.h5{height:96.750000pt;}
.h4{height:111.250000pt;}
.h3{height:222.489497pt;}
.h2{height:574.187909pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:31.520000pt;}
.w7{width:42.912000pt;}
.wb{width:43.072000pt;}
.wc{width:56.640000pt;}
.w8{width:56.800000pt;}
.w3{width:57.600000pt;}
.wa{width:84.960000pt;}
.w6{width:107.040000pt;}
.w5{width:132.352000pt;}
.w4{width:148.186667pt;}
.w2{width:427.785217pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x2{left:40.672199pt;}
.x8{left:59.498667pt;}
.x9{left:87.232000pt;}
.x7{left:94.432000pt;}
.x4{left:118.845333pt;}
.x5{left:130.752000pt;}
.xb{left:144.826667pt;}
.x1{left:164.170633pt;}
.x6{left:250.146667pt;}
.xc{left:293.026667pt;}
.x3{left:312.053333pt;}
.x14{left:369.986667pt;}
.xd{left:425.373333pt;}
.x10{left:456.893333pt;}
.x17{left:512.253333pt;}
.xe{left:532.413333pt;}
.x11{left:541.853333pt;}
.xf{left:575.333333pt;}
.x16{left:579.173333pt;}
.x12{left:584.933333pt;}
.x15{left:598.053333pt;}
.x13{left:698.693333pt;}
.x18{left:699.653333pt;}
}




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