
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5f40479b5d9b55c69281b22f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_7e16ac67d05423ea9f142401.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_78508a347cad1442d2b3ab53.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_688611a55223dc9c300fb432.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_e191d4730e34b9692d30c2ac.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_ca68e73be5b0d8d7791f5c03.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_dabde6fc50ea8c2167022649.woff')format("woff");}.ff8{font-family:ff8;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls14{letter-spacing:-0.299400px;}
.ls11{letter-spacing:-0.186600px;}
.ls17{letter-spacing:-0.162000px;}
.ls1d{letter-spacing:-0.158400px;}
.lsa{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls1e{letter-spacing:-0.063600px;}
.ls18{letter-spacing:-0.015480px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls15{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.060480px;}
.ls13{letter-spacing:0.060600px;}
.lsc{letter-spacing:0.068400px;}
.lse{letter-spacing:0.074160px;}
.ls16{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.098400px;}
.ls8{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls1c{letter-spacing:0.178800px;}
.ls4{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.180480px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:2.613600px;}
.ls1a{letter-spacing:47.726640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wse{word-spacing:-13.324800px;}
.wsc{word-spacing:-13.300800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.210920px;}
.ws11{word-spacing:-13.162800px;}
.wsb{word-spacing:-13.064400px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsf{word-spacing:-8.732400px;}
.ws3{word-spacing:-8.553600px;}
.ws10{word-spacing:-8.395200px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._18{margin-left:-4.030440px;}
._b{margin-left:-3.006000px;}
._0{margin-left:-1.110000px;}
._1{width:1.006896px;}
._2{width:2.194609px;}
._6{width:3.246600px;}
._9{width:4.512512px;}
._8{width:5.530800px;}
._a{width:6.567250px;}
._5{width:7.755600px;}
._7{width:8.878967px;}
._3{width:9.919800px;}
._4{width:11.217240px;}
._c{width:14.729400px;}
._e{width:16.616520px;}
._d{width:17.795520px;}
._17{width:20.981880px;}
._f{width:22.424760px;}
._19{width:43.953240px;}
._16{width:49.178160px;}
._14{width:83.687040px;}
._13{width:85.851360px;}
._10{width:117.534600px;}
._15{width:118.917360px;}
._12{width:125.169840px;}
._11{width:139.117680px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y90{bottom:7.830000px;}
.y8f{bottom:7.920000px;}
.yd3{bottom:12.330000px;}
.y9d{bottom:13.140000px;}
.yd5{bottom:25.380000px;}
.y9f{bottom:25.470000px;}
.yda{bottom:26.550000px;}
.yb0{bottom:29.970000px;}
.y8d{bottom:35.190000px;}
.ycf{bottom:38.520000px;}
.ybc{bottom:40.410000px;}
.yd1{bottom:43.020000px;}
.yd2{bottom:47.520000px;}
.y9c{bottom:52.830000px;}
.yce{bottom:56.160000px;}
.yae{bottom:57.420000px;}
.yd0{bottom:60.660000px;}
.ybb{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.yad{bottom:74.970000px;}
.ycd{bottom:78.210000px;}
.ycb{bottom:87.930000px;}
.y1{bottom:101.640000px;}
.yd9{bottom:109.380000px;}
.yca{bottom:109.980000px;}
.ya4{bottom:122.880000px;}
.y63{bottom:125.490000px;}
.yc9{bottom:127.620000px;}
.yd8{bottom:136.740000px;}
.y106{bottom:141.240000px;}
.y62{bottom:143.040000px;}
.y5b{bottom:143.580000px;}
.yc8{bottom:145.170000px;}
.ya3{bottom:150.150000px;}
.y105{bottom:158.880000px;}
.y27{bottom:160.050000px;}
.y5a{bottom:161.130000px;}
.y97{bottom:170.850000px;}
.y104{bottom:176.430000px;}
.ya2{bottom:177.510000px;}
.y26{bottom:177.600000px;}
.y88{bottom:178.050000px;}
.y61{bottom:178.590000px;}
.y59{bottom:178.680000px;}
.yab{bottom:179.760000px;}
.yd7{bottom:181.650000px;}
.y25{bottom:195.240000px;}
.y58{bottom:196.320000px;}
.y96{bottom:197.490000px;}
.y103{bottom:203.070000px;}
.y87{bottom:204.600000px;}
.ya1{bottom:204.870000px;}
.yd6{bottom:209.010000px;}
.y24{bottom:212.790000px;}
.y60{bottom:213.510000px;}
.y57{bottom:213.870000px;}
.yaa{bottom:215.310000px;}
.y102{bottom:220.620000px;}
.y5f{bottom:224.940000px;}
.y23{bottom:230.340000px;}
.y95{bottom:230.430000px;}
.y56{bottom:231.510000px;}
.ya0{bottom:232.230000px;}
.y101{bottom:238.170000px;}
.y86{bottom:240.510000px;}
.y22{bottom:247.980000px;}
.ya9{bottom:250.860000px;}
.yd4{bottom:253.920000px;}
.y94{bottom:257.790000px;}
.y9b{bottom:259.500000px;}
.y100{bottom:264.810000px;}
.y55{bottom:267.060000px;}
.yff{bottom:282.360000px;}
.y21{bottom:283.530000px;}
.y54{bottom:284.610000px;}
.y93{bottom:285.150000px;}
.ya8{bottom:286.500000px;}
.y85{bottom:288.840000px;}
.yc7{bottom:298.830000px;}
.y20{bottom:301.170000px;}
.y53{bottom:302.250000px;}
.y9e{bottom:304.410000px;}
.y84{bottom:306.390000px;}
.yfe{bottom:309.000000px;}
.y92{bottom:312.420000px;}
.y1f{bottom:318.720000px;}
.y52{bottom:319.800000px;}
.ya7{bottom:322.050000px;}
.y83{bottom:323.940000px;}
.yfd{bottom:326.550000px;}
.y1e{bottom:336.270000px;}
.y91{bottom:339.780000px;}
.y82{bottom:341.580000px;}
.yfc{bottom:353.100000px;}
.y9a{bottom:353.190000px;}
.y1d{bottom:353.910000px;}
.y51{bottom:355.440000px;}
.ya6{bottom:358.050000px;}
.y81{bottom:359.130000px;}
.ycc{bottom:365.790000px;}
.y8c{bottom:367.140000px;}
.yfb{bottom:370.740000px;}
.y50{bottom:372.990000px;}
.y80{bottom:376.770000px;}
.y1c{bottom:380.820000px;}
.y99{bottom:388.740000px;}
.y4f{bottom:390.540000px;}
.y8e{bottom:394.410000px;}
.yfa{bottom:397.290000px;}
.y4e{bottom:408.180000px;}
.y7f{bottom:412.320000px;}
.yf9{bottom:414.840000px;}
.y98{bottom:420.960000px;}
.y4d{bottom:425.730000px;}
.y1b{bottom:429.420000px;}
.y7e{bottom:429.870000px;}
.yf8{bottom:432.480000px;}
.y8b{bottom:443.190000px;}
.y4c{bottom:443.370000px;}
.y7d{bottom:447.510000px;}
.yf7{bottom:450.030000px;}
.y4b{bottom:460.920000px;}
.y7c{bottom:465.060000px;}
.y1a{bottom:466.410000px;}
.yf6{bottom:476.700000px;}
.y4a{bottom:478.500000px;}
.y8a{bottom:478.770000px;}
.y7b{bottom:482.730000px;}
.y19{bottom:484.080000px;}
.yc6{bottom:484.890000px;}
.y49{bottom:496.140000px;}
.y18{bottom:501.630000px;}
.yc5{bottom:502.440000px;}
.yf5{bottom:503.250000px;}
.y89{bottom:514.770000px;}
.y7a{bottom:518.280000px;}
.y17{bottom:519.180000px;}
.yf4{bottom:529.800000px;}
.y48{bottom:531.690000px;}
.y79{bottom:535.830000px;}
.y16{bottom:536.820000px;}
.yc4{bottom:538.080000px;}
.yf3{bottom:547.440000px;}
.y47{bottom:549.330000px;}
.yc3{bottom:553.020000px;}
.y78{bottom:553.470000px;}
.y15{bottom:554.370000px;}
.y46{bottom:566.880000px;}
.y77{bottom:571.020000px;}
.y14{bottom:571.920000px;}
.yf2{bottom:573.990000px;}
.yc2{bottom:580.380000px;}
.y45{bottom:584.430000px;}
.y76{bottom:588.660000px;}
.y13{bottom:589.560000px;}
.yf1{bottom:591.630000px;}
.y44{bottom:602.070000px;}
.y12{bottom:607.110000px;}
.yc1{bottom:607.740000px;}
.y75{bottom:615.210000px;}
.yf0{bottom:618.540000px;}
.y43{bottom:619.620000px;}
.y11{bottom:624.750000px;}
.yc0{bottom:635.010000px;}
.y42{bottom:637.260000px;}
.y10{bottom:642.300000px;}
.y74{bottom:650.760000px;}
.y41{bottom:654.810000px;}
.yf{bottom:659.850000px;}
.ybf{bottom:662.370000px;}
.yef{bottom:666.780000px;}
.y73{bottom:668.400000px;}
.ye{bottom:677.490000px;}
.y72{bottom:685.950000px;}
.yba{bottom:689.730000px;}
.y40{bottom:690.360000px;}
.yee{bottom:693.690000px;}
.yd{bottom:695.040000px;}
.y3f{bottom:708.000000px;}
.yc{bottom:712.680000px;}
.y71{bottom:712.860000px;}
.ybe{bottom:717.000000px;}
.y3e{bottom:725.550000px;}
.yb{bottom:730.230000px;}
.yed{bottom:731.040000px;}
.y3d{bottom:743.190000px;}
.ybd{bottom:744.360000px;}
.ya{bottom:757.140000px;}
.y5e{bottom:760.740000px;}
.y70{bottom:761.190000px;}
.y3c{bottom:769.740000px;}
.y5d{bottom:778.290000px;}
.y6f{bottom:778.740000px;}
.yec{bottom:779.280000px;}
.yb9{bottom:793.050000px;}
.y6e{bottom:796.290000px;}
.yeb{bottom:796.920000px;}
.y5c{bottom:804.930000px;}
.y3b{bottom:805.290000px;}
.y9{bottom:805.380000px;}
.yb8{bottom:810.690000px;}
.y6d{bottom:813.930000px;}
.yea{bottom:814.470000px;}
.y3a{bottom:822.930000px;}
.y6c{bottom:831.480000px;}
.ye9{bottom:832.020000px;}
.yb7{bottom:837.240000px;}
.y39{bottom:840.480000px;}
.y8{bottom:841.200000px;}
.y6b{bottom:849.030000px;}
.ye8{bottom:849.660000px;}
.y38{bottom:858.030000px;}
.y6a{bottom:866.670000px;}
.ye7{bottom:867.210000px;}
.yb6{bottom:872.880000px;}
.y37{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.y69{bottom:884.220000px;}
.ye6{bottom:884.850000px;}
.yb5{bottom:887.820000px;}
.y36{bottom:893.220000px;}
.y68{bottom:901.860000px;}
.ye5{bottom:902.400000px;}
.y6{bottom:913.200000px;}
.yb4{bottom:915.180000px;}
.y67{bottom:919.410000px;}
.ye4{bottom:919.950000px;}
.y35{bottom:928.860000px;}
.ye3{bottom:937.590000px;}
.yb3{bottom:942.450000px;}
.y66{bottom:945.960000px;}
.y34{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y10b{bottom:963.600000px;}
.y33{bottom:963.960000px;}
.ye2{bottom:964.500000px;}
.yb2{bottom:969.810000px;}
.y32{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y10a{bottom:990.150000px;}
.yb1{bottom:997.170000px;}
.y31{bottom:999.150000px;}
.y109{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.ye1{bottom:1012.770000px;}
.y30{bottom:1016.820000px;}
.yac{bottom:1024.470000px;}
.ye0{bottom:1030.320000px;}
.y65{bottom:1034.370000px;}
.ydf{bottom:1047.960000px;}
.y64{bottom:1051.920000px;}
.y2f{bottom:1052.370000px;}
.yde{bottom:1065.510000px;}
.yaf{bottom:1069.470000px;}
.y2e{bottom:1069.920000px;}
.y108{bottom:1078.560000px;}
.ydd{bottom:1083.150000px;}
.y2d{bottom:1087.560000px;}
.y107{bottom:1096.110000px;}
.ydc{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.ya5{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.ydb{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hd{height:26.550000px;}
.h12{height:26.580000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.ha{height:32.918906px;}
.h3{height:38.100586px;}
.h8{height:40.539023px;}
.h17{height:44.100000px;}
.hf{height:44.190000px;}
.h11{height:48.690000px;}
.h6{height:50.902383px;}
.hb{height:53.910000px;}
.h5{height:55.779258px;}
.h18{height:61.793886px;}
.h7{height:62.585859px;}
.h16{height:66.240000px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.he{height:71.550000px;}
.h13{height:81.270000px;}
.h10{height:93.690000px;}
.h15{height:96.930000px;}
.h14{height:163.890000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w18{width:40.950000px;}
.w1f{width:51.750000px;}
.w20{width:68.430000px;}
.w11{width:74.610000px;}
.w21{width:76.680000px;}
.wa{width:77.760000px;}
.w25{width:77.850000px;}
.w3{width:78.870000px;}
.w24{width:79.830000px;}
.w27{width:79.860000px;}
.w28{width:79.920000px;}
.w23{width:83.010000px;}
.w22{width:89.910000px;}
.w26{width:90.720000px;}
.w1e{width:93.240000px;}
.w19{width:95.580000px;}
.w14{width:97.020000px;}
.wd{width:103.320000px;}
.w4{width:103.950000px;}
.w6{width:106.020000px;}
.w17{width:108.810000px;}
.w10{width:113.220000px;}
.w9{width:115.020000px;}
.w1c{width:120.990000px;}
.w1d{width:129.240000px;}
.w15{width:129.900000px;}
.we{width:137.910000px;}
.w7{width:141.060000px;}
.w1b{width:145.800000px;}
.w16{width:147.060000px;}
.wb{width:158.880000px;}
.wf{width:160.830000px;}
.w8{width:166.500000px;}
.w12{width:194.880000px;}
.w1a{width:397.470000px;}
.w13{width:485.040000px;}
.wc{width:517.620000px;}
.w5{width:530.850000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x1{left:68.040000px;}
.x9{left:89.010000px;}
.x2d{left:111.239987px;}
.x19{left:143.820000px;}
.x12{left:147.240000px;}
.x25{left:159.480000px;}
.xb{left:168.690000px;}
.x1e{left:178.950000px;}
.x2{left:202.799987px;}
.x1f{left:220.620000px;}
.x26{left:243.300000px;}
.x18{left:259.589987px;}
.x6{left:261.029987px;}
.x8{left:264.269987px;}
.x11{left:265.799987px;}
.xc{left:273.360000px;}
.x5{left:288.029987px;}
.x13{left:306.840000px;}
.x20{left:316.920000px;}
.x27{left:323.850000px;}
.x1a{left:339.420000px;}
.xd{left:380.100000px;}
.x28{left:402.420000px;}
.x14{left:410.970000px;}
.x1b{left:437.250000px;}
.x21{left:463.440000px;}
.x29{left:493.950000px;}
.xe{left:521.970000px;}
.x23{left:532.680000px;}
.x15{left:549.600000px;}
.x1c{left:567.870000px;}
.x2a{left:574.530000px;}
.x22{left:585.150000px;}
.x2b{left:655.170000px;}
.x24{left:662.640000px;}
.xf{left:689.190000px;}
.x7{left:690.809987px;}
.x16{left:711.240000px;}
.x1d{left:715.650000px;}
.x17{left:723.389987px;}
.x10{left:724.559987px;}
.x2c{left:733.740000px;}
.x4{left:785.309987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls14{letter-spacing:-0.266133pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls17{letter-spacing:-0.144000pt;}
.ls1d{letter-spacing:-0.140800pt;}
.lsa{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls1e{letter-spacing:-0.056533pt;}
.ls18{letter-spacing:-0.013760pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls15{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.053760pt;}
.ls13{letter-spacing:0.053867pt;}
.lsc{letter-spacing:0.060800pt;}
.lse{letter-spacing:0.065920pt;}
.ls16{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.087467pt;}
.ls8{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls1c{letter-spacing:0.158933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.160427pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:2.323200pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.844267pt;}
.wsc{word-spacing:-11.822933pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.743040pt;}
.ws11{word-spacing:-11.700267pt;}
.wsb{word-spacing:-11.612800pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsf{word-spacing:-7.762133pt;}
.ws3{word-spacing:-7.603200pt;}
.ws10{word-spacing:-7.462400pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._18{margin-left:-3.582613pt;}
._b{margin-left:-2.672000pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.895018pt;}
._2{width:1.950764pt;}
._6{width:2.885867pt;}
._9{width:4.011122pt;}
._8{width:4.916266pt;}
._a{width:5.837555pt;}
._5{width:6.893867pt;}
._7{width:7.892415pt;}
._3{width:8.817600pt;}
._4{width:9.970880pt;}
._c{width:13.092800pt;}
._e{width:14.770240pt;}
._d{width:15.818240pt;}
._17{width:18.650560pt;}
._f{width:19.933120pt;}
._19{width:39.069547pt;}
._16{width:43.713920pt;}
._14{width:74.388480pt;}
._13{width:76.312320pt;}
._10{width:104.475200pt;}
._15{width:105.704320pt;}
._12{width:111.262080pt;}
._11{width:123.660160pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:6.960000pt;}
.y8f{bottom:7.040000pt;}
.yd3{bottom:10.960000pt;}
.y9d{bottom:11.680000pt;}
.yd5{bottom:22.560000pt;}
.y9f{bottom:22.640000pt;}
.yda{bottom:23.600000pt;}
.yb0{bottom:26.640000pt;}
.y8d{bottom:31.280000pt;}
.ycf{bottom:34.240000pt;}
.ybc{bottom:35.920000pt;}
.yd1{bottom:38.240000pt;}
.yd2{bottom:42.240000pt;}
.y9c{bottom:46.960000pt;}
.yce{bottom:49.920000pt;}
.yae{bottom:51.040000pt;}
.yd0{bottom:53.920000pt;}
.ybb{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.yad{bottom:66.640000pt;}
.ycd{bottom:69.520000pt;}
.ycb{bottom:78.160000pt;}
.y1{bottom:90.346667pt;}
.yd9{bottom:97.226667pt;}
.yca{bottom:97.760000pt;}
.ya4{bottom:109.226667pt;}
.y63{bottom:111.546667pt;}
.yc9{bottom:113.440000pt;}
.yd8{bottom:121.546667pt;}
.y106{bottom:125.546667pt;}
.y62{bottom:127.146667pt;}
.y5b{bottom:127.626667pt;}
.yc8{bottom:129.040000pt;}
.ya3{bottom:133.466667pt;}
.y105{bottom:141.226667pt;}
.y27{bottom:142.266667pt;}
.y5a{bottom:143.226667pt;}
.y97{bottom:151.866667pt;}
.y104{bottom:156.826667pt;}
.ya2{bottom:157.786667pt;}
.y26{bottom:157.866667pt;}
.y88{bottom:158.266667pt;}
.y61{bottom:158.746667pt;}
.y59{bottom:158.826667pt;}
.yab{bottom:159.786667pt;}
.yd7{bottom:161.466667pt;}
.y25{bottom:173.546667pt;}
.y58{bottom:174.506667pt;}
.y96{bottom:175.546667pt;}
.y103{bottom:180.506667pt;}
.y87{bottom:181.866667pt;}
.ya1{bottom:182.106667pt;}
.yd6{bottom:185.786667pt;}
.y24{bottom:189.146667pt;}
.y60{bottom:189.786667pt;}
.y57{bottom:190.106667pt;}
.yaa{bottom:191.386667pt;}
.y102{bottom:196.106667pt;}
.y5f{bottom:199.946667pt;}
.y23{bottom:204.746667pt;}
.y95{bottom:204.826667pt;}
.y56{bottom:205.786667pt;}
.ya0{bottom:206.426667pt;}
.y101{bottom:211.706667pt;}
.y86{bottom:213.786667pt;}
.y22{bottom:220.426667pt;}
.ya9{bottom:222.986667pt;}
.yd4{bottom:225.706667pt;}
.y94{bottom:229.146667pt;}
.y9b{bottom:230.666667pt;}
.y100{bottom:235.386667pt;}
.y55{bottom:237.386667pt;}
.yff{bottom:250.986667pt;}
.y21{bottom:252.026667pt;}
.y54{bottom:252.986667pt;}
.y93{bottom:253.466667pt;}
.ya8{bottom:254.666667pt;}
.y85{bottom:256.746667pt;}
.yc7{bottom:265.626667pt;}
.y20{bottom:267.706667pt;}
.y53{bottom:268.666667pt;}
.y9e{bottom:270.586667pt;}
.y84{bottom:272.346667pt;}
.yfe{bottom:274.666667pt;}
.y92{bottom:277.706667pt;}
.y1f{bottom:283.306667pt;}
.y52{bottom:284.266667pt;}
.ya7{bottom:286.266667pt;}
.y83{bottom:287.946667pt;}
.yfd{bottom:290.266667pt;}
.y1e{bottom:298.906667pt;}
.y91{bottom:302.026667pt;}
.y82{bottom:303.626667pt;}
.yfc{bottom:313.866667pt;}
.y9a{bottom:313.946667pt;}
.y1d{bottom:314.586667pt;}
.y51{bottom:315.946667pt;}
.ya6{bottom:318.266667pt;}
.y81{bottom:319.226667pt;}
.ycc{bottom:325.146667pt;}
.y8c{bottom:326.346667pt;}
.yfb{bottom:329.546667pt;}
.y50{bottom:331.546667pt;}
.y80{bottom:334.906667pt;}
.y1c{bottom:338.506667pt;}
.y99{bottom:345.546667pt;}
.y4f{bottom:347.146667pt;}
.y8e{bottom:350.586667pt;}
.yfa{bottom:353.146667pt;}
.y4e{bottom:362.826667pt;}
.y7f{bottom:366.506667pt;}
.yf9{bottom:368.746667pt;}
.y98{bottom:374.186667pt;}
.y4d{bottom:378.426667pt;}
.y1b{bottom:381.706667pt;}
.y7e{bottom:382.106667pt;}
.yf8{bottom:384.426667pt;}
.y8b{bottom:393.946667pt;}
.y4c{bottom:394.106667pt;}
.y7d{bottom:397.786667pt;}
.yf7{bottom:400.026667pt;}
.y4b{bottom:409.706667pt;}
.y7c{bottom:413.386667pt;}
.y1a{bottom:414.586667pt;}
.yf6{bottom:423.733333pt;}
.y4a{bottom:425.333333pt;}
.y8a{bottom:425.573333pt;}
.y7b{bottom:429.093333pt;}
.y19{bottom:430.293333pt;}
.yc6{bottom:431.013333pt;}
.y49{bottom:441.013333pt;}
.y18{bottom:445.893333pt;}
.yc5{bottom:446.613333pt;}
.yf5{bottom:447.333333pt;}
.y89{bottom:457.573333pt;}
.y7a{bottom:460.693333pt;}
.y17{bottom:461.493333pt;}
.yf4{bottom:470.933333pt;}
.y48{bottom:472.613333pt;}
.y79{bottom:476.293333pt;}
.y16{bottom:477.173333pt;}
.yc4{bottom:478.293333pt;}
.yf3{bottom:486.613333pt;}
.y47{bottom:488.293333pt;}
.yc3{bottom:491.573333pt;}
.y78{bottom:491.973333pt;}
.y15{bottom:492.773333pt;}
.y46{bottom:503.893333pt;}
.y77{bottom:507.573333pt;}
.y14{bottom:508.373333pt;}
.yf2{bottom:510.213333pt;}
.yc2{bottom:515.893333pt;}
.y45{bottom:519.493333pt;}
.y76{bottom:523.253333pt;}
.y13{bottom:524.053333pt;}
.yf1{bottom:525.893333pt;}
.y44{bottom:535.173333pt;}
.y12{bottom:539.653333pt;}
.yc1{bottom:540.213333pt;}
.y75{bottom:546.853333pt;}
.yf0{bottom:549.813333pt;}
.y43{bottom:550.773333pt;}
.y11{bottom:555.333333pt;}
.yc0{bottom:564.453333pt;}
.y42{bottom:566.453333pt;}
.y10{bottom:570.933333pt;}
.y74{bottom:578.453333pt;}
.y41{bottom:582.053333pt;}
.yf{bottom:586.533333pt;}
.ybf{bottom:588.773333pt;}
.yef{bottom:592.693333pt;}
.y73{bottom:594.133333pt;}
.ye{bottom:602.213333pt;}
.y72{bottom:609.733333pt;}
.yba{bottom:613.093333pt;}
.y40{bottom:613.653333pt;}
.yee{bottom:616.613333pt;}
.yd{bottom:617.813333pt;}
.y3f{bottom:629.333333pt;}
.yc{bottom:633.493333pt;}
.y71{bottom:633.653333pt;}
.ybe{bottom:637.333333pt;}
.y3e{bottom:644.933333pt;}
.yb{bottom:649.093333pt;}
.yed{bottom:649.813333pt;}
.y3d{bottom:660.613333pt;}
.ybd{bottom:661.653333pt;}
.ya{bottom:673.013333pt;}
.y5e{bottom:676.213333pt;}
.y70{bottom:676.613333pt;}
.y3c{bottom:684.213333pt;}
.y5d{bottom:691.813333pt;}
.y6f{bottom:692.213333pt;}
.yec{bottom:692.693333pt;}
.yb9{bottom:704.933333pt;}
.y6e{bottom:707.813333pt;}
.yeb{bottom:708.373333pt;}
.y5c{bottom:715.493333pt;}
.y3b{bottom:715.813333pt;}
.y9{bottom:715.893333pt;}
.yb8{bottom:720.613333pt;}
.y6d{bottom:723.493333pt;}
.yea{bottom:723.973333pt;}
.y3a{bottom:731.493333pt;}
.y6c{bottom:739.093333pt;}
.ye9{bottom:739.573333pt;}
.yb7{bottom:744.213333pt;}
.y39{bottom:747.093333pt;}
.y8{bottom:747.733333pt;}
.y6b{bottom:754.693333pt;}
.ye8{bottom:755.253333pt;}
.y38{bottom:762.693333pt;}
.y6a{bottom:770.373333pt;}
.ye7{bottom:770.853333pt;}
.yb6{bottom:775.893333pt;}
.y37{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.y69{bottom:785.973333pt;}
.ye6{bottom:786.533333pt;}
.yb5{bottom:789.173333pt;}
.y36{bottom:793.973333pt;}
.y68{bottom:801.653333pt;}
.ye5{bottom:802.133333pt;}
.y6{bottom:811.733333pt;}
.yb4{bottom:813.493333pt;}
.y67{bottom:817.253333pt;}
.ye4{bottom:817.733333pt;}
.y35{bottom:825.653333pt;}
.ye3{bottom:833.413333pt;}
.yb3{bottom:837.733333pt;}
.y66{bottom:840.853333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y10b{bottom:856.533333pt;}
.y33{bottom:856.853333pt;}
.ye2{bottom:857.333333pt;}
.yb2{bottom:862.053333pt;}
.y32{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y10a{bottom:880.133333pt;}
.yb1{bottom:886.373333pt;}
.y31{bottom:888.133333pt;}
.y109{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.ye1{bottom:900.240000pt;}
.y30{bottom:903.840000pt;}
.yac{bottom:910.640000pt;}
.ye0{bottom:915.840000pt;}
.y65{bottom:919.440000pt;}
.ydf{bottom:931.520000pt;}
.y64{bottom:935.040000pt;}
.y2f{bottom:935.440000pt;}
.yde{bottom:947.120000pt;}
.yaf{bottom:950.640000pt;}
.y2e{bottom:951.040000pt;}
.y108{bottom:958.720000pt;}
.ydd{bottom:962.800000pt;}
.y2d{bottom:966.720000pt;}
.y107{bottom:974.320000pt;}
.ydc{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.ya5{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.ydb{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.h12{height:23.626667pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.ha{height:29.261250pt;}
.h3{height:33.867188pt;}
.h8{height:36.034687pt;}
.h17{height:39.200000pt;}
.hf{height:39.280000pt;}
.h11{height:43.280000pt;}
.h6{height:45.246562pt;}
.hb{height:47.920000pt;}
.h5{height:49.581562pt;}
.h18{height:54.927899pt;}
.h7{height:55.631875pt;}
.h16{height:58.880000pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.he{height:63.600000pt;}
.h13{height:72.240000pt;}
.h10{height:83.280000pt;}
.h15{height:86.160000pt;}
.h14{height:145.680000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w18{width:36.400000pt;}
.w1f{width:46.000000pt;}
.w20{width:60.826667pt;}
.w11{width:66.320000pt;}
.w21{width:68.160000pt;}
.wa{width:69.120000pt;}
.w25{width:69.200000pt;}
.w3{width:70.106667pt;}
.w24{width:70.960000pt;}
.w27{width:70.986667pt;}
.w28{width:71.040000pt;}
.w23{width:73.786667pt;}
.w22{width:79.920000pt;}
.w26{width:80.640000pt;}
.w1e{width:82.880000pt;}
.w19{width:84.960000pt;}
.w14{width:86.240000pt;}
.wd{width:91.840000pt;}
.w4{width:92.400000pt;}
.w6{width:94.240000pt;}
.w17{width:96.720000pt;}
.w10{width:100.640000pt;}
.w9{width:102.240000pt;}
.w1c{width:107.546667pt;}
.w1d{width:114.880000pt;}
.w15{width:115.466667pt;}
.we{width:122.586667pt;}
.w7{width:125.386667pt;}
.w1b{width:129.600000pt;}
.w16{width:130.720000pt;}
.wb{width:141.226667pt;}
.wf{width:142.960000pt;}
.w8{width:148.000000pt;}
.w12{width:173.226667pt;}
.w1a{width:353.306667pt;}
.w13{width:431.146667pt;}
.wc{width:460.106667pt;}
.w5{width:471.866667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x1{left:60.480000pt;}
.x9{left:79.120000pt;}
.x2d{left:98.879988pt;}
.x19{left:127.840000pt;}
.x12{left:130.880000pt;}
.x25{left:141.760000pt;}
.xb{left:149.946667pt;}
.x1e{left:159.066667pt;}
.x2{left:180.266655pt;}
.x1f{left:196.106667pt;}
.x26{left:216.266667pt;}
.x18{left:230.746655pt;}
.x6{left:232.026655pt;}
.x8{left:234.906655pt;}
.x11{left:236.266655pt;}
.xc{left:242.986667pt;}
.x5{left:256.026655pt;}
.x13{left:272.746667pt;}
.x20{left:281.706667pt;}
.x27{left:287.866667pt;}
.x1a{left:301.706667pt;}
.xd{left:337.866667pt;}
.x28{left:357.706667pt;}
.x14{left:365.306667pt;}
.x1b{left:388.666667pt;}
.x21{left:411.946667pt;}
.x29{left:439.066667pt;}
.xe{left:463.973333pt;}
.x23{left:473.493333pt;}
.x15{left:488.533333pt;}
.x1c{left:504.773333pt;}
.x2a{left:510.693333pt;}
.x22{left:520.133333pt;}
.x2b{left:582.373333pt;}
.x24{left:589.013333pt;}
.xf{left:612.613333pt;}
.x7{left:614.053322pt;}
.x16{left:632.213333pt;}
.x1d{left:636.133333pt;}
.x17{left:643.013322pt;}
.x10{left:644.053322pt;}
.x2c{left:652.213333pt;}
.x4{left:698.053322pt;}
.x3{left:704.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  