
    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_9351e2b700da0edfb084e3b5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_3ad9ee1ea168ed2ebf85d0dd.woff')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_48f207f436c761e484aca512.woff')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e573dddf6a4b3019477531e3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_382fcf0f3d6fd4bf850e1267.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_58b8d1781e767fefec1fec28.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e1b9ba7d6fb7030d76429ea1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1eb22acb14a8149aac3061ee.woff')format("woff");}.ff9{font-family:ff9;line-height:0.942383;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_d806246b111f03ec8fa6673b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.401855;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_3eecce9234cdacee86d14183.woff')format("woff");}.ffb{font-family:ffb;line-height:0.915527;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);}
.v1{vertical-align:-24.000000px;}
.v3{vertical-align:-21.600000px;}
.v5{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.600000px;}
.v2{vertical-align:24.000000px;}
.ls8{letter-spacing:-5.580000px;}
.ls13{letter-spacing:-2.400000px;}
.ls18{letter-spacing:-2.280000px;}
.lse{letter-spacing:-1.800000px;}
.ls11{letter-spacing:-1.200000px;}
.ls1a{letter-spacing:-1.002000px;}
.ls7{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.348000px;}
.ls1b{letter-spacing:-0.240000px;}
.lsf{letter-spacing:-0.120000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.420000px;}
.ls2{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.600000px;}
.lsc{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.960000px;}
.ls15{letter-spacing:1.080000px;}
.ls19{letter-spacing:1.320000px;}
.ls1d{letter-spacing:1.440000px;}
.lsb{letter-spacing:1.800000px;}
.ls10{letter-spacing:2.400000px;}
.ls14{letter-spacing:4.200000px;}
.ls1c{letter-spacing:5.400000px;}
.lsd{letter-spacing:6.660000px;}
.ls4{letter-spacing:8.100000px;}
.ls12{letter-spacing:10.200000px;}
.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;}
}
.ws1{word-spacing:-18.852000px;}
.ws7{word-spacing:-17.400000px;}
.ws0{word-spacing:-16.680000px;}
.wse{word-spacing:-16.440000px;}
.wsb{word-spacing:-16.320000px;}
.ws9{word-spacing:-15.420000px;}
.ws2{word-spacing:-15.000000px;}
.ws6{word-spacing:-14.880000px;}
.wsd{word-spacing:-14.760000px;}
.wsa{word-spacing:-12.720000px;}
.ws8{word-spacing:-12.600000px;}
.ws3{word-spacing:-9.900000px;}
.wsc{word-spacing:-8.898000px;}
.ws5{word-spacing:-8.100000px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-7.920000px;}
._11{margin-left:-5.940000px;}
._2{margin-left:-4.926000px;}
._4{margin-left:-3.900000px;}
._6{margin-left:-2.532000px;}
._0{margin-left:-1.080000px;}
._1{width:1.050000px;}
._3{width:2.940000px;}
._d{width:4.830000px;}
._9{width:6.066000px;}
._8{width:7.440000px;}
._7{width:8.472000px;}
._10{width:9.528000px;}
._b{width:10.560000px;}
._a{width:11.940000px;}
._c{width:12.960000px;}
._12{width:13.962000px;}
._f{width:16.782000px;}
._e{width:18.120000px;}
._13{width:19.392000px;}
.fc7{color:rgb(4,12,40);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(5,99,193);}
.fc6{color:rgb(34,34,34);}
.fc4{color:rgb(13,13,13);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(31,56,100);}
.fc0{color:rgb(31,78,121);}
.fs2{font-size:30.000000px;}
.fs6{font-size:39.600000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.837500px;}
.y56{bottom:2.985000px;}
.y4{bottom:3.900000px;}
.y3{bottom:4.500000px;}
.y2{bottom:8.737500px;}
.y4c{bottom:27.900000px;}
.y4a{bottom:28.500000px;}
.y51{bottom:31.500000px;}
.y48{bottom:34.185000px;}
.yc3{bottom:34.537500px;}
.y45{bottom:36.637500px;}
.y116{bottom:36.937500px;}
.y7e{bottom:44.437500px;}
.y50{bottom:48.600000px;}
.y4e{bottom:49.830000px;}
.yc2{bottom:51.937500px;}
.y44{bottom:54.037500px;}
.y115{bottom:55.537500px;}
.y53{bottom:60.300000px;}
.y7d{bottom:61.837500px;}
.yc1{bottom:69.037500px;}
.y43{bottom:71.137500px;}
.y7c{bottom:78.937500px;}
.y114{bottom:86.137500px;}
.yc0{bottom:86.437500px;}
.y42{bottom:88.537500px;}
.ye6{bottom:90.037500px;}
.y7b{bottom:96.337500px;}
.y55{bottom:97.485000px;}
.ybf{bottom:103.537500px;}
.y113{bottom:104.737500px;}
.y41{bottom:105.637500px;}
.y7a{bottom:113.437500px;}
.ybe{bottom:120.637500px;}
.ycc{bottom:120.937500px;}
.y40{bottom:123.037500px;}
.y112{bottom:123.337500px;}
.y79{bottom:130.837500px;}
.ycb{bottom:137.737500px;}
.ybd{bottom:138.037500px;}
.y3f{bottom:140.137500px;}
.y78{bottom:147.637500px;}
.ye5{bottom:151.230000px;}
.y111{bottom:153.930000px;}
.ybc{bottom:155.430000px;}
.y3e{bottom:157.530000px;}
.y77{bottom:165.330000px;}
.ybb{bottom:172.575000px;}
.y3d{bottom:174.675000px;}
.ye4{bottom:181.875000px;}
.y76{bottom:182.475000px;}
.yba{bottom:189.975000px;}
.y3c{bottom:192.075000px;}
.y75{bottom:199.875000px;}
.ye3{bottom:200.475000px;}
.y110{bottom:203.175000px;}
.yb9{bottom:207.075000px;}
.y3b{bottom:209.175000px;}
.y74{bottom:216.975000px;}
.y10f{bottom:221.775000px;}
.yb8{bottom:224.475000px;}
.y3a{bottom:226.575000px;}
.ye2{bottom:229.275000px;}
.y73{bottom:234.375000px;}
.yb7{bottom:241.575000px;}
.y39{bottom:243.675000px;}
.ye1{bottom:246.975000px;}
.y72{bottom:251.475000px;}
.y10e{bottom:252.375000px;}
.yca{bottom:258.675000px;}
.yb6{bottom:258.975000px;}
.y38{bottom:261.075000px;}
.ye0{bottom:264.075000px;}
.y71{bottom:268.875000px;}
.y10d{bottom:270.975000px;}
.yb5{bottom:275.775000px;}
.yc9{bottom:276.075000px;}
.y37{bottom:278.175000px;}
.ydf{bottom:281.475000px;}
.y70{bottom:285.675000px;}
.y10c{bottom:289.575000px;}
.yb4{bottom:293.475000px;}
.y36{bottom:295.575000px;}
.yde{bottom:298.575000px;}
.y6f{bottom:303.375000px;}
.yb3{bottom:310.575000px;}
.y35{bottom:312.675000px;}
.ydd{bottom:315.975000px;}
.y10b{bottom:320.175000px;}
.y6e{bottom:320.475000px;}
.yb2{bottom:327.975000px;}
.y34{bottom:330.075000px;}
.ydc{bottom:333.075000px;}
.y6d{bottom:337.905000px;}
.y10a{bottom:338.820000px;}
.yb1{bottom:345.120000px;}
.y33{bottom:347.205000px;}
.ydb{bottom:350.505000px;}
.y6c{bottom:355.005000px;}
.y109{bottom:357.405000px;}
.yb0{bottom:362.505000px;}
.y32{bottom:364.605000px;}
.yda{bottom:367.605000px;}
.y6b{bottom:372.420000px;}
.yaf{bottom:379.620000px;}
.y31{bottom:381.720000px;}
.yd9{bottom:385.005000px;}
.y108{bottom:388.005000px;}
.y6a{bottom:389.505000px;}
.yae{bottom:397.005000px;}
.y30{bottom:399.120000px;}
.yd8{bottom:402.120000px;}
.y107{bottom:406.620000px;}
.y69{bottom:406.905000px;}
.yad{bottom:414.120000px;}
.y2f{bottom:416.205000px;}
.yd7{bottom:419.505000px;}
.y68{bottom:424.005000px;}
.yac{bottom:431.205000px;}
.y2e{bottom:433.620000px;}
.yd6{bottom:436.620000px;}
.y106{bottom:437.205000px;}
.y67{bottom:441.405000px;}
.yab{bottom:448.620000px;}
.y2d{bottom:450.705000px;}
.yd5{bottom:454.005000px;}
.y105{bottom:455.820000px;}
.y66{bottom:458.205000px;}
.yaa{bottom:466.005000px;}
.y2c{bottom:468.120000px;}
.yd4{bottom:471.105000px;}
.y65{bottom:475.905000px;}
.ya9{bottom:483.120000px;}
.y2b{bottom:485.205000px;}
.y104{bottom:486.405000px;}
.yd3{bottom:488.505000px;}
.y64{bottom:493.005000px;}
.ya8{bottom:500.505000px;}
.y2a{bottom:502.620000px;}
.y103{bottom:505.305000px;}
.yd2{bottom:505.605000px;}
.y63{bottom:510.450000px;}
.ya7{bottom:517.650000px;}
.y29{bottom:519.750000px;}
.yd1{bottom:523.050000px;}
.y102{bottom:523.950000px;}
.y62{bottom:527.550000px;}
.ya6{bottom:535.050000px;}
.y28{bottom:537.150000px;}
.y61{bottom:544.950000px;}
.yd0{bottom:551.850000px;}
.ya5{bottom:552.150000px;}
.y27{bottom:554.250000px;}
.y101{bottom:554.550000px;}
.y60{bottom:562.050000px;}
.ya4{bottom:569.250000px;}
.y26{bottom:571.650000px;}
.y100{bottom:573.150000px;}
.y5f{bottom:579.450000px;}
.ya3{bottom:586.650000px;}
.y25{bottom:588.750000px;}
.yff{bottom:591.750000px;}
.y5e{bottom:596.250000px;}
.ya2{bottom:604.050000px;}
.y24{bottom:606.150000px;}
.y5d{bottom:613.650000px;}
.ya1{bottom:621.150000px;}
.yfe{bottom:622.350000px;}
.y23{bottom:623.250000px;}
.y5c{bottom:630.750000px;}
.ya0{bottom:638.550000px;}
.y22{bottom:640.650000px;}
.yfd{bottom:640.950000px;}
.y5b{bottom:648.450000px;}
.y9f{bottom:655.650000px;}
.y21{bottom:657.750000px;}
.y5a{bottom:665.550000px;}
.yfc{bottom:671.550000px;}
.y9e{bottom:673.050000px;}
.y20{bottom:675.150000px;}
.y59{bottom:682.995000px;}
.y9d{bottom:690.195000px;}
.y1f{bottom:692.280000px;}
.yc8{bottom:707.280000px;}
.y9c{bottom:707.580000px;}
.yfb{bottom:708.780000px;}
.y1e{bottom:709.680000px;}
.y58{bottom:711.780000px;}
.y9b{bottom:724.680000px;}
.y57{bottom:729.195000px;}
.yfa{bottom:739.380000px;}
.y1d{bottom:739.980000px;}
.y9a{bottom:742.080000px;}
.y54{bottom:743.595000px;}
.y1c{bottom:757.080000px;}
.yf9{bottom:757.980000px;}
.ycf{bottom:758.880000px;}
.y99{bottom:759.195000px;}
.y1b{bottom:774.795000px;}
.y98{bottom:776.580000px;}
.yf8{bottom:788.580000px;}
.y1a{bottom:791.580000px;}
.y97{bottom:793.695000px;}
.yf7{bottom:807.195000px;}
.y19{bottom:809.280000px;}
.y96{bottom:811.080000px;}
.yf6{bottom:825.795000px;}
.y18{bottom:826.080000px;}
.y95{bottom:828.195000px;}
.y17{bottom:843.480000px;}
.yc7{bottom:845.325000px;}
.y94{bottom:845.625000px;}
.y52{bottom:855.225000px;}
.yf5{bottom:856.425000px;}
.y16{bottom:860.625000px;}
.y93{bottom:862.725000px;}
.yf4{bottom:875.025000px;}
.y15{bottom:878.025000px;}
.y92{bottom:880.125000px;}
.y14{bottom:895.125000px;}
.y91{bottom:897.225000px;}
.y120{bottom:903.525000px;}
.yf3{bottom:905.625000px;}
.y13{bottom:912.525000px;}
.yce{bottom:914.325000px;}
.y90{bottom:914.625000px;}
.yf2{bottom:924.225000px;}
.y12{bottom:929.625000px;}
.y4f{bottom:929.925000px;}
.y8f{bottom:931.725000px;}
.y11f{bottom:936.225000px;}
.yf1{bottom:942.825000px;}
.y11{bottom:947.025000px;}
.y8e{bottom:949.125000px;}
.y10{bottom:964.125000px;}
.y8d{bottom:966.225000px;}
.y11e{bottom:966.825000px;}
.yf0{bottom:973.425000px;}
.yf{bottom:981.525000px;}
.yc6{bottom:983.325000px;}
.y8c{bottom:983.625000px;}
.y11d{bottom:985.425000px;}
.yef{bottom:992.325000px;}
.y4d{bottom:992.925000px;}
.y8b{bottom:1000.725000px;}
.ye{bottom:1004.025000px;}
.y11c{bottom:1004.325000px;}
.yee{bottom:1010.925000px;}
.y8a{bottom:1018.155000px;}
.yd{bottom:1021.755000px;}
.y11b{bottom:1034.955000px;}
.y89{bottom:1035.255000px;}
.yc{bottom:1038.870000px;}
.yed{bottom:1041.570000px;}
.y88{bottom:1052.355000px;}
.y11a{bottom:1053.570000px;}
.yb{bottom:1056.255000px;}
.y4b{bottom:1057.170000px;}
.yec{bottom:1060.155000px;}
.y87{bottom:1069.755000px;}
.y119{bottom:1072.155000px;}
.ya{bottom:1073.955000px;}
.y9{bottom:1086.255000px;}
.y86{bottom:1086.870000px;}
.yeb{bottom:1090.755000px;}
.y49{bottom:1099.455000px;}
.y118{bottom:1102.755000px;}
.ycd{bottom:1103.955000px;}
.y85{bottom:1104.255000px;}
.y8{bottom:1105.170000px;}
.yea{bottom:1109.355000px;}
.y84{bottom:1121.370000px;}
.yc5{bottom:1138.455000px;}
.y83{bottom:1138.755000px;}
.ye9{bottom:1139.955000px;}
.y47{bottom:1142.070000px;}
.y7{bottom:1146.570000px;}
.y82{bottom:1155.870000px;}
.ye8{bottom:1158.570000px;}
.y117{bottom:1170.570000px;}
.y81{bottom:1172.955000px;}
.yc4{bottom:1173.255000px;}
.y6{bottom:1188.000000px;}
.ye7{bottom:1189.200000px;}
.y80{bottom:1190.400000px;}
.y46{bottom:1207.500000px;}
.y7f{bottom:1207.800000px;}
.y1{bottom:1238.400000px;}
.h3{height:18.900000px;}
.hc{height:28.368750px;}
.h5{height:29.838867px;}
.hb{height:37.226719px;}
.ha{height:37.286719px;}
.h14{height:41.400000px;}
.h10{height:41.894531px;}
.h13{height:42.000000px;}
.h1a{height:42.011719px;}
.he{height:42.333984px;}
.h9{height:44.707031px;}
.h12{height:47.722500px;}
.h11{height:49.250391px;}
.h19{height:49.310391px;}
.h8{height:49.968750px;}
.hf{height:58.886719px;}
.hd{height:60.468750px;}
.h16{height:62.100000px;}
.h4{height:62.460938px;}
.h15{height:63.337500px;}
.h1b{height:65.645508px;}
.h2{height:67.579102px;}
.h17{height:73.800000px;}
.h6{height:101.601562px;}
.h18{height:111.037500px;}
.h7{height:149.906250px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w5{width:53.700000px;}
.w3{width:128.137500px;}
.w6{width:335.205000px;}
.w7{width:335.220000px;}
.w4{width:620.610000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x18{left:22.500000px;}
.x17{left:24.600000px;}
.x2{left:43.800000px;}
.x1{left:47.399987px;}
.x6{left:85.837487px;}
.x12{left:89.145000px;}
.x7{left:91.237487px;}
.x10{left:110.137500px;}
.x14{left:114.337500px;}
.x1a{left:126.337500px;}
.x16{left:127.537500px;}
.x13{left:136.830000px;}
.x1b{left:139.837500px;}
.x15{left:143.145000px;}
.x19{left:144.645000px;}
.x11{left:149.437500px;}
.x4{left:172.545000px;}
.xd{left:188.474987px;}
.xe{left:245.474987px;}
.x1c{left:248.175000px;}
.x8{left:267.674987px;}
.xc{left:318.404987px;}
.xb{left:326.219987px;}
.xa{left:353.819987px;}
.xf{left:380.519987px;}
.x9{left:445.649987px;}
.x5{left:793.755000px;}
@media print{
.v1{vertical-align:-21.333333pt;}
.v3{vertical-align:-19.200000pt;}
.v5{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.200000pt;}
.v2{vertical-align:21.333333pt;}
.ls8{letter-spacing:-4.960000pt;}
.ls13{letter-spacing:-2.133333pt;}
.ls18{letter-spacing:-2.026667pt;}
.lse{letter-spacing:-1.600000pt;}
.ls11{letter-spacing:-1.066667pt;}
.ls1a{letter-spacing:-0.890667pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.309333pt;}
.ls1b{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:-0.106667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.373333pt;}
.ls2{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.533333pt;}
.lsc{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.853333pt;}
.ls15{letter-spacing:0.960000pt;}
.ls19{letter-spacing:1.173333pt;}
.ls1d{letter-spacing:1.280000pt;}
.lsb{letter-spacing:1.600000pt;}
.ls10{letter-spacing:2.133333pt;}
.ls14{letter-spacing:3.733333pt;}
.ls1c{letter-spacing:4.800000pt;}
.lsd{letter-spacing:5.920000pt;}
.ls4{letter-spacing:7.200000pt;}
.ls12{letter-spacing:9.066667pt;}
.ws1{word-spacing:-16.757333pt;}
.ws7{word-spacing:-15.466667pt;}
.ws0{word-spacing:-14.826667pt;}
.wse{word-spacing:-14.613333pt;}
.wsb{word-spacing:-14.506667pt;}
.ws9{word-spacing:-13.706667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws6{word-spacing:-13.226667pt;}
.wsd{word-spacing:-13.120000pt;}
.wsa{word-spacing:-11.306667pt;}
.ws8{word-spacing:-11.200000pt;}
.ws3{word-spacing:-8.800000pt;}
.wsc{word-spacing:-7.909333pt;}
.ws5{word-spacing:-7.200000pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-7.040000pt;}
._11{margin-left:-5.280000pt;}
._2{margin-left:-4.378667pt;}
._4{margin-left:-3.466667pt;}
._6{margin-left:-2.250667pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.933333pt;}
._3{width:2.613333pt;}
._d{width:4.293333pt;}
._9{width:5.392000pt;}
._8{width:6.613333pt;}
._7{width:7.530667pt;}
._10{width:8.469333pt;}
._b{width:9.386667pt;}
._a{width:10.613333pt;}
._c{width:11.520000pt;}
._12{width:12.410667pt;}
._f{width:14.917333pt;}
._e{width:16.106667pt;}
._13{width:17.237333pt;}
.fs2{font-size:26.666667pt;}
.fs6{font-size:35.200000pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.633333pt;}
.y56{bottom:2.653333pt;}
.y4{bottom:3.466667pt;}
.y3{bottom:4.000000pt;}
.y2{bottom:7.766667pt;}
.y4c{bottom:24.800000pt;}
.y4a{bottom:25.333333pt;}
.y51{bottom:28.000000pt;}
.y48{bottom:30.386667pt;}
.yc3{bottom:30.700000pt;}
.y45{bottom:32.566667pt;}
.y116{bottom:32.833333pt;}
.y7e{bottom:39.500000pt;}
.y50{bottom:43.200000pt;}
.y4e{bottom:44.293333pt;}
.yc2{bottom:46.166667pt;}
.y44{bottom:48.033333pt;}
.y115{bottom:49.366667pt;}
.y53{bottom:53.600000pt;}
.y7d{bottom:54.966667pt;}
.yc1{bottom:61.366667pt;}
.y43{bottom:63.233333pt;}
.y7c{bottom:70.166667pt;}
.y114{bottom:76.566667pt;}
.yc0{bottom:76.833333pt;}
.y42{bottom:78.700000pt;}
.ye6{bottom:80.033333pt;}
.y7b{bottom:85.633333pt;}
.y55{bottom:86.653333pt;}
.ybf{bottom:92.033333pt;}
.y113{bottom:93.100000pt;}
.y41{bottom:93.900000pt;}
.y7a{bottom:100.833333pt;}
.ybe{bottom:107.233333pt;}
.ycc{bottom:107.500000pt;}
.y40{bottom:109.366667pt;}
.y112{bottom:109.633333pt;}
.y79{bottom:116.300000pt;}
.ycb{bottom:122.433333pt;}
.ybd{bottom:122.700000pt;}
.y3f{bottom:124.566667pt;}
.y78{bottom:131.233333pt;}
.ye5{bottom:134.426667pt;}
.y111{bottom:136.826667pt;}
.ybc{bottom:138.160000pt;}
.y3e{bottom:140.026667pt;}
.y77{bottom:146.960000pt;}
.ybb{bottom:153.400000pt;}
.y3d{bottom:155.266667pt;}
.ye4{bottom:161.666667pt;}
.y76{bottom:162.200000pt;}
.yba{bottom:168.866667pt;}
.y3c{bottom:170.733333pt;}
.y75{bottom:177.666667pt;}
.ye3{bottom:178.200000pt;}
.y110{bottom:180.600000pt;}
.yb9{bottom:184.066667pt;}
.y3b{bottom:185.933333pt;}
.y74{bottom:192.866667pt;}
.y10f{bottom:197.133333pt;}
.yb8{bottom:199.533333pt;}
.y3a{bottom:201.400000pt;}
.ye2{bottom:203.800000pt;}
.y73{bottom:208.333333pt;}
.yb7{bottom:214.733333pt;}
.y39{bottom:216.600000pt;}
.ye1{bottom:219.533333pt;}
.y72{bottom:223.533333pt;}
.y10e{bottom:224.333333pt;}
.yca{bottom:229.933333pt;}
.yb6{bottom:230.200000pt;}
.y38{bottom:232.066667pt;}
.ye0{bottom:234.733333pt;}
.y71{bottom:239.000000pt;}
.y10d{bottom:240.866667pt;}
.yb5{bottom:245.133333pt;}
.yc9{bottom:245.400000pt;}
.y37{bottom:247.266667pt;}
.ydf{bottom:250.200000pt;}
.y70{bottom:253.933333pt;}
.y10c{bottom:257.400000pt;}
.yb4{bottom:260.866667pt;}
.y36{bottom:262.733333pt;}
.yde{bottom:265.400000pt;}
.y6f{bottom:269.666667pt;}
.yb3{bottom:276.066667pt;}
.y35{bottom:277.933333pt;}
.ydd{bottom:280.866667pt;}
.y10b{bottom:284.600000pt;}
.y6e{bottom:284.866667pt;}
.yb2{bottom:291.533333pt;}
.y34{bottom:293.400000pt;}
.ydc{bottom:296.066667pt;}
.y6d{bottom:300.360000pt;}
.y10a{bottom:301.173333pt;}
.yb1{bottom:306.773333pt;}
.y33{bottom:308.626667pt;}
.ydb{bottom:311.560000pt;}
.y6c{bottom:315.560000pt;}
.y109{bottom:317.693333pt;}
.yb0{bottom:322.226667pt;}
.y32{bottom:324.093333pt;}
.yda{bottom:326.760000pt;}
.y6b{bottom:331.040000pt;}
.yaf{bottom:337.440000pt;}
.y31{bottom:339.306667pt;}
.yd9{bottom:342.226667pt;}
.y108{bottom:344.893333pt;}
.y6a{bottom:346.226667pt;}
.yae{bottom:352.893333pt;}
.y30{bottom:354.773333pt;}
.yd8{bottom:357.440000pt;}
.y107{bottom:361.440000pt;}
.y69{bottom:361.693333pt;}
.yad{bottom:368.106667pt;}
.y2f{bottom:369.960000pt;}
.yd7{bottom:372.893333pt;}
.y68{bottom:376.893333pt;}
.yac{bottom:383.293333pt;}
.y2e{bottom:385.440000pt;}
.yd6{bottom:388.106667pt;}
.y106{bottom:388.626667pt;}
.y67{bottom:392.360000pt;}
.yab{bottom:398.773333pt;}
.y2d{bottom:400.626667pt;}
.yd5{bottom:403.560000pt;}
.y105{bottom:405.173333pt;}
.y66{bottom:407.293333pt;}
.yaa{bottom:414.226667pt;}
.y2c{bottom:416.106667pt;}
.yd4{bottom:418.760000pt;}
.y65{bottom:423.026667pt;}
.ya9{bottom:429.440000pt;}
.y2b{bottom:431.293333pt;}
.y104{bottom:432.360000pt;}
.yd3{bottom:434.226667pt;}
.y64{bottom:438.226667pt;}
.ya8{bottom:444.893333pt;}
.y2a{bottom:446.773333pt;}
.y103{bottom:449.160000pt;}
.yd2{bottom:449.426667pt;}
.y63{bottom:453.733333pt;}
.ya7{bottom:460.133333pt;}
.y29{bottom:462.000000pt;}
.yd1{bottom:464.933333pt;}
.y102{bottom:465.733333pt;}
.y62{bottom:468.933333pt;}
.ya6{bottom:475.600000pt;}
.y28{bottom:477.466667pt;}
.y61{bottom:484.400000pt;}
.yd0{bottom:490.533333pt;}
.ya5{bottom:490.800000pt;}
.y27{bottom:492.666667pt;}
.y101{bottom:492.933333pt;}
.y60{bottom:499.600000pt;}
.ya4{bottom:506.000000pt;}
.y26{bottom:508.133333pt;}
.y100{bottom:509.466667pt;}
.y5f{bottom:515.066667pt;}
.ya3{bottom:521.466667pt;}
.y25{bottom:523.333333pt;}
.yff{bottom:526.000000pt;}
.y5e{bottom:530.000000pt;}
.ya2{bottom:536.933333pt;}
.y24{bottom:538.800000pt;}
.y5d{bottom:545.466667pt;}
.ya1{bottom:552.133333pt;}
.yfe{bottom:553.200000pt;}
.y23{bottom:554.000000pt;}
.y5c{bottom:560.666667pt;}
.ya0{bottom:567.600000pt;}
.y22{bottom:569.466667pt;}
.yfd{bottom:569.733333pt;}
.y5b{bottom:576.400000pt;}
.y9f{bottom:582.800000pt;}
.y21{bottom:584.666667pt;}
.y5a{bottom:591.600000pt;}
.yfc{bottom:596.933333pt;}
.y9e{bottom:598.266667pt;}
.y20{bottom:600.133333pt;}
.y59{bottom:607.106667pt;}
.y9d{bottom:613.506667pt;}
.y1f{bottom:615.360000pt;}
.yc8{bottom:628.693333pt;}
.y9c{bottom:628.960000pt;}
.yfb{bottom:630.026667pt;}
.y1e{bottom:630.826667pt;}
.y58{bottom:632.693333pt;}
.y9b{bottom:644.160000pt;}
.y57{bottom:648.173333pt;}
.yfa{bottom:657.226667pt;}
.y1d{bottom:657.760000pt;}
.y9a{bottom:659.626667pt;}
.y54{bottom:660.973333pt;}
.y1c{bottom:672.960000pt;}
.yf9{bottom:673.760000pt;}
.ycf{bottom:674.560000pt;}
.y99{bottom:674.840000pt;}
.y1b{bottom:688.706667pt;}
.y98{bottom:690.293333pt;}
.yf8{bottom:700.960000pt;}
.y1a{bottom:703.626667pt;}
.y97{bottom:705.506667pt;}
.yf7{bottom:717.506667pt;}
.y19{bottom:719.360000pt;}
.y96{bottom:720.960000pt;}
.yf6{bottom:734.040000pt;}
.y18{bottom:734.293333pt;}
.y95{bottom:736.173333pt;}
.y17{bottom:749.760000pt;}
.yc7{bottom:751.400000pt;}
.y94{bottom:751.666667pt;}
.y52{bottom:760.200000pt;}
.yf5{bottom:761.266667pt;}
.y16{bottom:765.000000pt;}
.y93{bottom:766.866667pt;}
.yf4{bottom:777.800000pt;}
.y15{bottom:780.466667pt;}
.y92{bottom:782.333333pt;}
.y14{bottom:795.666667pt;}
.y91{bottom:797.533333pt;}
.y120{bottom:803.133333pt;}
.yf3{bottom:805.000000pt;}
.y13{bottom:811.133333pt;}
.yce{bottom:812.733333pt;}
.y90{bottom:813.000000pt;}
.yf2{bottom:821.533333pt;}
.y12{bottom:826.333333pt;}
.y4f{bottom:826.600000pt;}
.y8f{bottom:828.200000pt;}
.y11f{bottom:832.200000pt;}
.yf1{bottom:838.066667pt;}
.y11{bottom:841.800000pt;}
.y8e{bottom:843.666667pt;}
.y10{bottom:857.000000pt;}
.y8d{bottom:858.866667pt;}
.y11e{bottom:859.400000pt;}
.yf0{bottom:865.266667pt;}
.yf{bottom:872.466667pt;}
.yc6{bottom:874.066667pt;}
.y8c{bottom:874.333333pt;}
.y11d{bottom:875.933333pt;}
.yef{bottom:882.066667pt;}
.y4d{bottom:882.600000pt;}
.y8b{bottom:889.533333pt;}
.ye{bottom:892.466667pt;}
.y11c{bottom:892.733333pt;}
.yee{bottom:898.600000pt;}
.y8a{bottom:905.026667pt;}
.yd{bottom:908.226667pt;}
.y11b{bottom:919.960000pt;}
.y89{bottom:920.226667pt;}
.yc{bottom:923.440000pt;}
.yed{bottom:925.840000pt;}
.y88{bottom:935.426667pt;}
.y11a{bottom:936.506667pt;}
.yb{bottom:938.893333pt;}
.y4b{bottom:939.706667pt;}
.yec{bottom:942.360000pt;}
.y87{bottom:950.893333pt;}
.y119{bottom:953.026667pt;}
.ya{bottom:954.626667pt;}
.y9{bottom:965.560000pt;}
.y86{bottom:966.106667pt;}
.yeb{bottom:969.560000pt;}
.y49{bottom:977.293333pt;}
.y118{bottom:980.226667pt;}
.ycd{bottom:981.293333pt;}
.y85{bottom:981.560000pt;}
.y8{bottom:982.373333pt;}
.yea{bottom:986.093333pt;}
.y84{bottom:996.773333pt;}
.yc5{bottom:1011.960000pt;}
.y83{bottom:1012.226667pt;}
.ye9{bottom:1013.293333pt;}
.y47{bottom:1015.173333pt;}
.y7{bottom:1019.173333pt;}
.y82{bottom:1027.440000pt;}
.ye8{bottom:1029.840000pt;}
.y117{bottom:1040.506667pt;}
.y81{bottom:1042.626667pt;}
.yc4{bottom:1042.893333pt;}
.y6{bottom:1056.000000pt;}
.ye7{bottom:1057.066667pt;}
.y80{bottom:1058.133333pt;}
.y46{bottom:1073.333333pt;}
.y7f{bottom:1073.600000pt;}
.y1{bottom:1100.800000pt;}
.h3{height:16.800000pt;}
.hc{height:25.216667pt;}
.h5{height:26.523438pt;}
.hb{height:33.090417pt;}
.ha{height:33.143750pt;}
.h14{height:36.800000pt;}
.h10{height:37.239583pt;}
.h13{height:37.333333pt;}
.h1a{height:37.343750pt;}
.he{height:37.630208pt;}
.h9{height:39.739583pt;}
.h12{height:42.420000pt;}
.h11{height:43.778125pt;}
.h19{height:43.831458pt;}
.h8{height:44.416667pt;}
.hf{height:52.343750pt;}
.hd{height:53.750000pt;}
.h16{height:55.200000pt;}
.h4{height:55.520833pt;}
.h15{height:56.300000pt;}
.h1b{height:58.351562pt;}
.h2{height:60.070312pt;}
.h17{height:65.600000pt;}
.h6{height:90.312500pt;}
.h18{height:98.700000pt;}
.h7{height:133.250000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w5{width:47.733333pt;}
.w3{width:113.900000pt;}
.w6{width:297.960000pt;}
.w7{width:297.973333pt;}
.w4{width:551.653333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x18{left:20.000000pt;}
.x17{left:21.866667pt;}
.x2{left:38.933333pt;}
.x1{left:42.133322pt;}
.x6{left:76.299988pt;}
.x12{left:79.240000pt;}
.x7{left:81.099988pt;}
.x10{left:97.900000pt;}
.x14{left:101.633333pt;}
.x1a{left:112.300000pt;}
.x16{left:113.366667pt;}
.x13{left:121.626667pt;}
.x1b{left:124.300000pt;}
.x15{left:127.240000pt;}
.x19{left:128.573333pt;}
.x11{left:132.833333pt;}
.x4{left:153.373333pt;}
.xd{left:167.533322pt;}
.xe{left:218.199988pt;}
.x1c{left:220.600000pt;}
.x8{left:237.933322pt;}
.xc{left:283.026655pt;}
.xb{left:289.973322pt;}
.xa{left:314.506655pt;}
.xf{left:338.239988pt;}
.x9{left:396.133322pt;}
.x5{left:705.560000pt;}
}




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