
    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_aeeb14c43cc489c89decf39a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937500;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_87313305d20ef7d6a8d46788.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_bbb8ed53c45707d6129ecaf1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_78e320f4078228fea8ea3d9d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.087891;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_f5a6457fd9d18c860d4bffd3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_29004c11d253262a17db0352.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_45e771e1524458c125b93c44.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3417d5e691340511690fd0da.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_73fc24f472c836ce83a03e38.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.766602;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);}
.v3{vertical-align:-27.360000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls15{letter-spacing:-1.008000px;}
.ls33{letter-spacing:-0.936000px;}
.ls25{letter-spacing:-0.864000px;}
.ls4{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.648000px;}
.ls2{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.190200px;}
.ls6{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.115200px;}
.ls34{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls2a{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.149760px;}
.ls14{letter-spacing:0.180000px;}
.ls36{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.256200px;}
.ls1b{letter-spacing:0.289440px;}
.lsb{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.432000px;}
.ls2e{letter-spacing:0.504000px;}
.ls2f{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.576000px;}
.lse{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.792000px;}
.ls11{letter-spacing:1.025280px;}
.ls23{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.440000px;}
.ls27{letter-spacing:1.620000px;}
.ls28{letter-spacing:2.340000px;}
.ls2c{letter-spacing:3.180000px;}
.lsf{letter-spacing:4.320000px;}
.ls18{letter-spacing:4.500000px;}
.ls1e{letter-spacing:5.040000px;}
.ls16{letter-spacing:5.189760px;}
.ls29{letter-spacing:5.256000px;}
.ls17{letter-spacing:5.940000px;}
.ls2b{letter-spacing:7.380000px;}
.ls26{letter-spacing:9.360000px;}
.ls2d{letter-spacing:9.540000px;}
.ls10{letter-spacing:14.580000px;}
.lsa{letter-spacing:15.461280px;}
.ls1d{letter-spacing:18.180000px;}
.ls9{letter-spacing:23.040000px;}
.ls24{letter-spacing:23.940000px;}
.ls37{letter-spacing:24.624000px;}
.ls22{letter-spacing:24.660000px;}
.ls32{letter-spacing:39.000000px;}
.ls35{letter-spacing:42.600000px;}
.ls19{letter-spacing:44.100000px;}
.ls30{letter-spacing:57.000000px;}
.ls31{letter-spacing:60.600000px;}
.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;}
}
.ws14{word-spacing:-22.320000px;}
.ws1{word-spacing:-20.016000px;}
.ws2{word-spacing:-19.800000px;}
.wse{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.342600px;}
.ws8{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws15{word-spacing:-17.064000px;}
.wsf{word-spacing:-16.560000px;}
.ws13{word-spacing:-15.226440px;}
.wsb{word-spacing:-14.970240px;}
.ws3{word-spacing:-14.855040px;}
.wsc{word-spacing:-12.420000px;}
.ws12{word-spacing:-12.349440px;}
.wsa{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.700000px;}
.ws11{word-spacing:-10.440000px;}
.ws0{word-spacing:0.000000px;}
._15{margin-left:-15.684000px;}
._3{margin-left:-14.400000px;}
._16{margin-left:-12.012000px;}
._17{margin-left:-6.947040px;}
._14{margin-left:-5.928000px;}
._18{margin-left:-2.700000px;}
._0{margin-left:-1.635840px;}
._1{width:1.226880px;}
._2{width:2.445120px;}
._7{width:3.450240px;}
._8{width:5.045760px;}
._1b{width:6.048000px;}
._9{width:7.056000px;}
._a{width:8.640000px;}
._11{width:10.512000px;}
._e{width:12.188640px;}
._d{width:13.371840px;}
._19{width:14.832000px;}
._1a{width:15.847680px;}
._f{width:16.899840px;}
._22{width:18.414720px;}
._5{width:19.944000px;}
._6{width:21.648000px;}
._12{width:22.824000px;}
._13{width:23.856960px;}
._1e{width:25.632000px;}
._1f{width:26.640000px;}
._1c{width:28.440000px;}
._1d{width:29.889120px;}
._23{width:31.013760px;}
._20{width:32.843520px;}
._4{width:34.344000px;}
._10{width:35.403840px;}
._b{width:37.008000px;}
._c{width:38.013120px;}
._25{width:41.184000px;}
._26{width:42.202080px;}
._21{width:43.848000px;}
._27{width:54.720000px;}
._28{width:56.193120px;}
._24{width:197.976000px;}
.fc5{color:rgb(79,129,189);}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(46,116,181);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(31,73,125);}
.fc6{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.240000px;}
.fs7{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:58.500000px;}
.y39{bottom:78.696000px;}
.yee{bottom:115.776000px;}
.y1e{bottom:115.956000px;}
.y38{bottom:121.536000px;}
.y8c{bottom:125.316000px;}
.y109{bottom:125.856000px;}
.y145{bottom:126.036000px;}
.y53{bottom:134.676000px;}
.y1d{bottom:136.836000px;}
.y126{bottom:139.176000px;}
.y13b{bottom:140.436000px;}
.yb6{bottom:140.976000px;}
.y7f{bottom:141.336000px;}
.y67{bottom:146.196000px;}
.yd4{bottom:146.376000px;}
.yed{bottom:146.916000px;}
.y108{bottom:147.816000px;}
.yfe{bottom:149.256000px;}
.y144{bottom:156.990000px;}
.y1c{bottom:157.530000px;}
.y37{bottom:160.410000px;}
.y8b{bottom:164.190000px;}
.y107{bottom:169.590000px;}
.y125{bottom:170.130000px;}
.y13a{bottom:171.570000px;}
.yb5{bottom:172.110000px;}
.y52{bottom:173.550000px;}
.yd3{bottom:177.330000px;}
.yec{bottom:177.870000px;}
.y1b{bottom:178.230000px;}
.y7e{bottom:180.210000px;}
.yfd{bottom:180.390000px;}
.y66{bottom:184.890000px;}
.y143{bottom:188.130000px;}
.y106{bottom:191.370000px;}
.y1a{bottom:198.930000px;}
.y36{bottom:199.290000px;}
.y124{bottom:201.270000px;}
.y139{bottom:202.530000px;}
.y8a{bottom:202.890000px;}
.yb4{bottom:203.070000px;}
.yd2{bottom:208.470000px;}
.yeb{bottom:209.010000px;}
.yfc{bottom:211.350000px;}
.y51{bottom:212.430000px;}
.y105{bottom:213.150000px;}
.y7d{bottom:218.910000px;}
.y142{bottom:219.090000px;}
.y19{bottom:219.630000px;}
.y65{bottom:223.770000px;}
.y123{bottom:232.230000px;}
.y138{bottom:233.670000px;}
.yb3{bottom:234.210000px;}
.y35{bottom:237.990000px;}
.yd1{bottom:239.430000px;}
.yea{bottom:239.970000px;}
.y18{bottom:240.330000px;}
.y89{bottom:241.770000px;}
.yfb{bottom:242.490000px;}
.y104{bottom:244.110000px;}
.y141{bottom:250.230000px;}
.y50{bottom:251.130000px;}
.y103{bottom:256.890000px;}
.y7c{bottom:257.790000px;}
.y64{bottom:262.470000px;}
.y122{bottom:263.370000px;}
.y137{bottom:264.630000px;}
.yb2{bottom:265.170000px;}
.yd0{bottom:270.570000px;}
.y17{bottom:271.110000px;}
.yfa{bottom:273.450000px;}
.y88{bottom:280.650000px;}
.y140{bottom:281.190000px;}
.y34{bottom:284.070000px;}
.y4f{bottom:290.010000px;}
.y121{bottom:294.330000px;}
.y136{bottom:295.770000px;}
.yb1{bottom:296.310000px;}
.y7b{bottom:296.670000px;}
.y63{bottom:301.350000px;}
.ycf{bottom:301.530000px;}
.ye9{bottom:302.070000px;}
.y16{bottom:302.250000px;}
.yf9{bottom:304.590000px;}
.y13f{bottom:312.330000px;}
.y87{bottom:319.395000px;}
.y120{bottom:325.515000px;}
.y135{bottom:326.775000px;}
.yb0{bottom:327.315000px;}
.y4e{bottom:328.755000px;}
.y33{bottom:330.195000px;}
.yce{bottom:332.715000px;}
.y15{bottom:333.255000px;}
.yf8{bottom:335.595000px;}
.y7a{bottom:335.775000px;}
.y62{bottom:340.095000px;}
.y13e{bottom:343.335000px;}
.y14{bottom:354.135000px;}
.y11f{bottom:356.475000px;}
.y134{bottom:357.915000px;}
.y86{bottom:358.275000px;}
.yaf{bottom:358.455000px;}
.ycd{bottom:363.675000px;}
.ye8{bottom:364.215000px;}
.yf7{bottom:366.735000px;}
.y4d{bottom:367.635000px;}
.y13d{bottom:374.475000px;}
.y79{bottom:374.655000px;}
.y13{bottom:374.835000px;}
.y32{bottom:376.275000px;}
.y61{bottom:378.975000px;}
.y11e{bottom:387.615000px;}
.y133{bottom:388.875000px;}
.yae{bottom:389.415000px;}
.ycc{bottom:394.815000px;}
.ye7{bottom:395.355000px;}
.y12{bottom:395.535000px;}
.y85{bottom:396.975000px;}
.yf6{bottom:397.695000px;}
.y78{bottom:398.415000px;}
.y4c{bottom:406.335000px;}
.y31{bottom:407.235000px;}
.y13c{bottom:407.775000px;}
.y11{bottom:416.235000px;}
.y60{bottom:417.855000px;}
.y11d{bottom:418.575000px;}
.y132{bottom:420.015000px;}
.yad{bottom:420.555000px;}
.ycb{bottom:425.775000px;}
.ye6{bottom:426.315000px;}
.yf5{bottom:428.835000px;}
.y84{bottom:435.855000px;}
.y10{bottom:436.935000px;}
.y77{bottom:437.295000px;}
.y4b{bottom:445.215000px;}
.y11c{bottom:449.715000px;}
.y131{bottom:450.975000px;}
.yac{bottom:451.515000px;}
.y30{bottom:453.315000px;}
.y5f{bottom:456.555000px;}
.yca{bottom:456.915000px;}
.ye5{bottom:457.455000px;}
.yf{bottom:457.635000px;}
.yf4{bottom:459.795000px;}
.y83{bottom:474.915000px;}
.y76{bottom:475.995000px;}
.ye{bottom:478.515000px;}
.y11b{bottom:480.675000px;}
.y130{bottom:482.115000px;}
.yab{bottom:482.475000px;}
.y4a{bottom:484.095000px;}
.y2f{bottom:484.275000px;}
.yc9{bottom:487.875000px;}
.ye4{bottom:488.415000px;}
.yf3{bottom:490.935000px;}
.y5e{bottom:495.435000px;}
.y82{bottom:498.855000px;}
.y11a{bottom:511.815000px;}
.y12f{bottom:513.075000px;}
.yaa{bottom:513.615000px;}
.y2e{bottom:515.415000px;}
.yc8{bottom:519.015000px;}
.yd{bottom:519.195000px;}
.ye3{bottom:519.555000px;}
.y75{bottom:522.075000px;}
.y49{bottom:522.795000px;}
.yf2{bottom:529.275000px;}
.y5d{bottom:534.135000px;}
.y81{bottom:537.195000px;}
.y119{bottom:542.775000px;}
.y12e{bottom:544.215000px;}
.ya9{bottom:544.575000px;}
.y96{bottom:549.075000px;}
.yc7{bottom:549.975000px;}
.ye2{bottom:550.515000px;}
.y74{bottom:553.035000px;}
.yc{bottom:557.355000px;}
.yf1{bottom:560.415000px;}
.y2d{bottom:561.495000px;}
.y48{bottom:561.675000px;}
.y5c{bottom:573.045000px;}
.y118{bottom:573.945000px;}
.y12d{bottom:575.205000px;}
.ya8{bottom:575.745000px;}
.y80{bottom:576.465000px;}
.yc6{bottom:581.145000px;}
.ye1{bottom:581.685000px;}
.y73{bottom:584.205000px;}
.yb{bottom:593.385000px;}
.yf0{bottom:594.105000px;}
.y95{bottom:597.525000px;}
.y47{bottom:600.405000px;}
.y2c{bottom:600.765000px;}
.y117{bottom:604.905000px;}
.ya7{bottom:606.705000px;}
.yc5{bottom:612.105000px;}
.ye0{bottom:612.645000px;}
.y12c{bottom:613.725000px;}
.y72{bottom:615.165000px;}
.y5b{bottom:619.485000px;}
.y116{bottom:636.045000px;}
.ya{bottom:637.305000px;}
.y12b{bottom:637.485000px;}
.ya6{bottom:637.845000px;}
.y2b{bottom:638.925000px;}
.y46{bottom:639.285000px;}
.yc4{bottom:643.245000px;}
.ydf{bottom:643.785000px;}
.y71{bottom:646.305000px;}
.yef{bottom:650.625000px;}
.y5a{bottom:665.565000px;}
.y115{bottom:667.005000px;}
.y12a{bottom:668.445000px;}
.ya5{bottom:668.805000px;}
.yc3{bottom:674.205000px;}
.yde{bottom:674.745000px;}
.y2a{bottom:677.085000px;}
.y70{bottom:677.265000px;}
.y45{bottom:677.985000px;}
.y9{bottom:683.385000px;}
.y94{bottom:695.265000px;}
.y114{bottom:697.965000px;}
.ya4{bottom:699.945000px;}
.y129{bottom:702.285000px;}
.yc2{bottom:705.345000px;}
.ydd{bottom:705.885000px;}
.y6f{bottom:708.405000px;}
.y59{bottom:711.465000px;}
.y29{bottom:715.245000px;}
.y44{bottom:716.865000px;}
.y8{bottom:721.545000px;}
.y113{bottom:729.105000px;}
.ya3{bottom:730.905000px;}
.yc1{bottom:736.305000px;}
.y128{bottom:736.485000px;}
.ydc{bottom:736.845000px;}
.y6e{bottom:739.365000px;}
.y93{bottom:744.225000px;}
.y28{bottom:753.405000px;}
.y43{bottom:755.745000px;}
.y58{bottom:757.545000px;}
.y7{bottom:759.705000px;}
.y112{bottom:760.065000px;}
.ya2{bottom:762.045000px;}
.yc0{bottom:767.445000px;}
.y127{bottom:767.625000px;}
.ydb{bottom:767.985000px;}
.y6d{bottom:770.505000px;}
.y111{bottom:791.205000px;}
.y92{bottom:793.005000px;}
.y42{bottom:794.445000px;}
.ybf{bottom:798.405000px;}
.yda{bottom:798.945000px;}
.y27{bottom:800.745000px;}
.y6c{bottom:801.465000px;}
.y57{bottom:803.625000px;}
.y6{bottom:804.705000px;}
.ya1{bottom:824.190000px;}
.y110{bottom:829.050000px;}
.ybe{bottom:829.590000px;}
.yd9{bottom:830.130000px;}
.y6b{bottom:832.650000px;}
.y41{bottom:833.370000px;}
.y91{bottom:842.010000px;}
.y56{bottom:849.750000px;}
.y26{bottom:849.930000px;}
.y5{bottom:850.830000px;}
.y10f{bottom:853.350000px;}
.ya0{bottom:855.150000px;}
.ybd{bottom:860.550000px;}
.yd8{bottom:861.090000px;}
.y6a{bottom:863.610000px;}
.y40{bottom:879.630000px;}
.y10e{bottom:884.310000px;}
.y9f{bottom:886.290000px;}
.y25{bottom:888.090000px;}
.y4{bottom:890.070000px;}
.y90{bottom:890.970000px;}
.ybc{bottom:891.510000px;}
.yd7{bottom:892.050000px;}
.y69{bottom:894.750000px;}
.y55{bottom:895.830000px;}
.y3f{bottom:910.770000px;}
.y10d{bottom:915.450000px;}
.y9e{bottom:917.250000px;}
.ybb{bottom:922.650000px;}
.yd6{bottom:923.190000px;}
.y68{bottom:925.710000px;}
.y24{bottom:926.250000px;}
.y3{bottom:928.230000px;}
.y8f{bottom:939.750000px;}
.y54{bottom:941.730000px;}
.y10c{bottom:946.410000px;}
.y9d{bottom:948.390000px;}
.y102{bottom:953.610000px;}
.yba{bottom:953.790000px;}
.yd5{bottom:954.150000px;}
.y3e{bottom:956.850000px;}
.y2{bottom:966.390000px;}
.y23{bottom:971.070000px;}
.y10b{bottom:977.550000px;}
.y9c{bottom:979.350000px;}
.y101{bottom:984.750000px;}
.yb9{bottom:985.290000px;}
.y3d{bottom:987.810000px;}
.y8e{bottom:988.710000px;}
.y1{bottom:1000.050000px;}
.y10a{bottom:1008.510000px;}
.y9b{bottom:1010.490000px;}
.y100{bottom:1015.710000px;}
.yb8{bottom:1016.250000px;}
.y22{bottom:1017.150000px;}
.y3c{bottom:1026.330000px;}
.y8d{bottom:1027.410000px;}
.y9a{bottom:1043.790000px;}
.yff{bottom:1047.030000px;}
.yb7{bottom:1047.390000px;}
.y3b{bottom:1059.990000px;}
.y21{bottom:1063.230000px;}
.y99{bottom:1068.450000px;}
.y98{bottom:1091.520000px;}
.y20{bottom:1095.300000px;}
.y97{bottom:1118.340000px;}
.y1f{bottom:1118.520000px;}
.hc{height:9.245742px;}
.hb{height:47.344922px;}
.h1{height:50.294531px;}
.h9{height:64.546875px;}
.hd{height:65.010937px;}
.h7{height:70.664062px;}
.h8{height:72.562500px;}
.h6{height:73.956797px;}
.he{height:74.680922px;}
.ha{height:74.704922px;}
.h2{height:75.093750px;}
.h4{height:81.101250px;}
.hf{height:84.898125px;}
.h5{height:87.859687px;}
.h3{height:106.633125px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:108.036000px;}
.x1a{left:118.116000px;}
.x1c{left:119.376000px;}
.xd{left:122.256000px;}
.x13{left:124.596000px;}
.x19{left:128.376000px;}
.x15{left:135.036000px;}
.x1b{left:156.270000px;}
.x10{left:162.030000px;}
.x18{left:166.530000px;}
.x1d{left:182.550000px;}
.xa{left:196.770000px;}
.x5{left:198.210000px;}
.xc{left:255.450000px;}
.xb{left:275.430000px;}
.x6{left:306.795000px;}
.x4{left:327.495000px;}
.x7{left:331.095000px;}
.x3{left:336.495000px;}
.xe{left:374.475000px;}
.x1{left:390.315000px;}
.x9{left:414.975000px;}
.x14{left:441.075000px;}
.x8{left:459.075000px;}
.x17{left:793.410000px;}
.x12{left:798.810000px;}
.x11{left:802.590000px;}
.xf{left:806.370000px;}
.x16{left:809.970000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls15{letter-spacing:-0.896000pt;}
.ls33{letter-spacing:-0.832000pt;}
.ls25{letter-spacing:-0.768000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.576000pt;}
.ls2{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.169067pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.102400pt;}
.ls34{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.133120pt;}
.ls14{letter-spacing:0.160000pt;}
.ls36{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.227733pt;}
.ls1b{letter-spacing:0.257280pt;}
.lsb{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.384000pt;}
.ls2e{letter-spacing:0.448000pt;}
.ls2f{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.704000pt;}
.ls11{letter-spacing:0.911360pt;}
.ls23{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls27{letter-spacing:1.440000pt;}
.ls28{letter-spacing:2.080000pt;}
.ls2c{letter-spacing:2.826667pt;}
.lsf{letter-spacing:3.840000pt;}
.ls18{letter-spacing:4.000000pt;}
.ls1e{letter-spacing:4.480000pt;}
.ls16{letter-spacing:4.613120pt;}
.ls29{letter-spacing:4.672000pt;}
.ls17{letter-spacing:5.280000pt;}
.ls2b{letter-spacing:6.560000pt;}
.ls26{letter-spacing:8.320000pt;}
.ls2d{letter-spacing:8.480000pt;}
.ls10{letter-spacing:12.960000pt;}
.lsa{letter-spacing:13.743360pt;}
.ls1d{letter-spacing:16.160000pt;}
.ls9{letter-spacing:20.480000pt;}
.ls24{letter-spacing:21.280000pt;}
.ls37{letter-spacing:21.888000pt;}
.ls22{letter-spacing:21.920000pt;}
.ls32{letter-spacing:34.666667pt;}
.ls35{letter-spacing:37.866667pt;}
.ls19{letter-spacing:39.200000pt;}
.ls30{letter-spacing:50.666667pt;}
.ls31{letter-spacing:53.866667pt;}
.ws14{word-spacing:-19.840000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws2{word-spacing:-17.600000pt;}
.wse{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.304533pt;}
.ws8{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws15{word-spacing:-15.168000pt;}
.wsf{word-spacing:-14.720000pt;}
.ws13{word-spacing:-13.534613pt;}
.wsb{word-spacing:-13.306880pt;}
.ws3{word-spacing:-13.204480pt;}
.wsc{word-spacing:-11.040000pt;}
.ws12{word-spacing:-10.977280pt;}
.wsa{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.400000pt;}
.ws11{word-spacing:-9.280000pt;}
.ws0{word-spacing:0.000000pt;}
._15{margin-left:-13.941333pt;}
._3{margin-left:-12.800000pt;}
._16{margin-left:-10.677333pt;}
._17{margin-left:-6.175147pt;}
._14{margin-left:-5.269333pt;}
._18{margin-left:-2.400000pt;}
._0{margin-left:-1.454080pt;}
._1{width:1.090560pt;}
._2{width:2.173440pt;}
._7{width:3.066880pt;}
._8{width:4.485120pt;}
._1b{width:5.376000pt;}
._9{width:6.272000pt;}
._a{width:7.680000pt;}
._11{width:9.344000pt;}
._e{width:10.834347pt;}
._d{width:11.886080pt;}
._19{width:13.184000pt;}
._1a{width:14.086827pt;}
._f{width:15.022080pt;}
._22{width:16.368640pt;}
._5{width:17.728000pt;}
._6{width:19.242667pt;}
._12{width:20.288000pt;}
._13{width:21.206187pt;}
._1e{width:22.784000pt;}
._1f{width:23.680000pt;}
._1c{width:25.280000pt;}
._1d{width:26.568107pt;}
._23{width:27.567787pt;}
._20{width:29.194240pt;}
._4{width:30.528000pt;}
._10{width:31.470080pt;}
._b{width:32.896000pt;}
._c{width:33.789440pt;}
._25{width:36.608000pt;}
._26{width:37.512960pt;}
._21{width:38.976000pt;}
._27{width:48.640000pt;}
._28{width:49.949440pt;}
._24{width:175.978667pt;}
.fs6{font-size:10.880000pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:52.000000pt;}
.y39{bottom:69.952000pt;}
.yee{bottom:102.912000pt;}
.y1e{bottom:103.072000pt;}
.y38{bottom:108.032000pt;}
.y8c{bottom:111.392000pt;}
.y109{bottom:111.872000pt;}
.y145{bottom:112.032000pt;}
.y53{bottom:119.712000pt;}
.y1d{bottom:121.632000pt;}
.y126{bottom:123.712000pt;}
.y13b{bottom:124.832000pt;}
.yb6{bottom:125.312000pt;}
.y7f{bottom:125.632000pt;}
.y67{bottom:129.952000pt;}
.yd4{bottom:130.112000pt;}
.yed{bottom:130.592000pt;}
.y108{bottom:131.392000pt;}
.yfe{bottom:132.672000pt;}
.y144{bottom:139.546667pt;}
.y1c{bottom:140.026667pt;}
.y37{bottom:142.586667pt;}
.y8b{bottom:145.946667pt;}
.y107{bottom:150.746667pt;}
.y125{bottom:151.226667pt;}
.y13a{bottom:152.506667pt;}
.yb5{bottom:152.986667pt;}
.y52{bottom:154.266667pt;}
.yd3{bottom:157.626667pt;}
.yec{bottom:158.106667pt;}
.y1b{bottom:158.426667pt;}
.y7e{bottom:160.186667pt;}
.yfd{bottom:160.346667pt;}
.y66{bottom:164.346667pt;}
.y143{bottom:167.226667pt;}
.y106{bottom:170.106667pt;}
.y1a{bottom:176.826667pt;}
.y36{bottom:177.146667pt;}
.y124{bottom:178.906667pt;}
.y139{bottom:180.026667pt;}
.y8a{bottom:180.346667pt;}
.yb4{bottom:180.506667pt;}
.yd2{bottom:185.306667pt;}
.yeb{bottom:185.786667pt;}
.yfc{bottom:187.866667pt;}
.y51{bottom:188.826667pt;}
.y105{bottom:189.466667pt;}
.y7d{bottom:194.586667pt;}
.y142{bottom:194.746667pt;}
.y19{bottom:195.226667pt;}
.y65{bottom:198.906667pt;}
.y123{bottom:206.426667pt;}
.y138{bottom:207.706667pt;}
.yb3{bottom:208.186667pt;}
.y35{bottom:211.546667pt;}
.yd1{bottom:212.826667pt;}
.yea{bottom:213.306667pt;}
.y18{bottom:213.626667pt;}
.y89{bottom:214.906667pt;}
.yfb{bottom:215.546667pt;}
.y104{bottom:216.986667pt;}
.y141{bottom:222.426667pt;}
.y50{bottom:223.226667pt;}
.y103{bottom:228.346667pt;}
.y7c{bottom:229.146667pt;}
.y64{bottom:233.306667pt;}
.y122{bottom:234.106667pt;}
.y137{bottom:235.226667pt;}
.yb2{bottom:235.706667pt;}
.yd0{bottom:240.506667pt;}
.y17{bottom:240.986667pt;}
.yfa{bottom:243.066667pt;}
.y88{bottom:249.466667pt;}
.y140{bottom:249.946667pt;}
.y34{bottom:252.506667pt;}
.y4f{bottom:257.786667pt;}
.y121{bottom:261.626667pt;}
.y136{bottom:262.906667pt;}
.yb1{bottom:263.386667pt;}
.y7b{bottom:263.706667pt;}
.y63{bottom:267.866667pt;}
.ycf{bottom:268.026667pt;}
.ye9{bottom:268.506667pt;}
.y16{bottom:268.666667pt;}
.yf9{bottom:270.746667pt;}
.y13f{bottom:277.626667pt;}
.y87{bottom:283.906667pt;}
.y120{bottom:289.346667pt;}
.y135{bottom:290.466667pt;}
.yb0{bottom:290.946667pt;}
.y4e{bottom:292.226667pt;}
.y33{bottom:293.506667pt;}
.yce{bottom:295.746667pt;}
.y15{bottom:296.226667pt;}
.yf8{bottom:298.306667pt;}
.y7a{bottom:298.466667pt;}
.y62{bottom:302.306667pt;}
.y13e{bottom:305.186667pt;}
.y14{bottom:314.786667pt;}
.y11f{bottom:316.866667pt;}
.y134{bottom:318.146667pt;}
.y86{bottom:318.466667pt;}
.yaf{bottom:318.626667pt;}
.ycd{bottom:323.266667pt;}
.ye8{bottom:323.746667pt;}
.yf7{bottom:325.986667pt;}
.y4d{bottom:326.786667pt;}
.y13d{bottom:332.866667pt;}
.y79{bottom:333.026667pt;}
.y13{bottom:333.186667pt;}
.y32{bottom:334.466667pt;}
.y61{bottom:336.866667pt;}
.y11e{bottom:344.546667pt;}
.y133{bottom:345.666667pt;}
.yae{bottom:346.146667pt;}
.ycc{bottom:350.946667pt;}
.ye7{bottom:351.426667pt;}
.y12{bottom:351.586667pt;}
.y85{bottom:352.866667pt;}
.yf6{bottom:353.506667pt;}
.y78{bottom:354.146667pt;}
.y4c{bottom:361.186667pt;}
.y31{bottom:361.986667pt;}
.y13c{bottom:362.466667pt;}
.y11{bottom:369.986667pt;}
.y60{bottom:371.426667pt;}
.y11d{bottom:372.066667pt;}
.y132{bottom:373.346667pt;}
.yad{bottom:373.826667pt;}
.ycb{bottom:378.466667pt;}
.ye6{bottom:378.946667pt;}
.yf5{bottom:381.186667pt;}
.y84{bottom:387.426667pt;}
.y10{bottom:388.386667pt;}
.y77{bottom:388.706667pt;}
.y4b{bottom:395.746667pt;}
.y11c{bottom:399.746667pt;}
.y131{bottom:400.866667pt;}
.yac{bottom:401.346667pt;}
.y30{bottom:402.946667pt;}
.y5f{bottom:405.826667pt;}
.yca{bottom:406.146667pt;}
.ye5{bottom:406.626667pt;}
.yf{bottom:406.786667pt;}
.yf4{bottom:408.706667pt;}
.y83{bottom:422.146667pt;}
.y76{bottom:423.106667pt;}
.ye{bottom:425.346667pt;}
.y11b{bottom:427.266667pt;}
.y130{bottom:428.546667pt;}
.yab{bottom:428.866667pt;}
.y4a{bottom:430.306667pt;}
.y2f{bottom:430.466667pt;}
.yc9{bottom:433.666667pt;}
.ye4{bottom:434.146667pt;}
.yf3{bottom:436.386667pt;}
.y5e{bottom:440.386667pt;}
.y82{bottom:443.426667pt;}
.y11a{bottom:454.946667pt;}
.y12f{bottom:456.066667pt;}
.yaa{bottom:456.546667pt;}
.y2e{bottom:458.146667pt;}
.yc8{bottom:461.346667pt;}
.yd{bottom:461.506667pt;}
.ye3{bottom:461.826667pt;}
.y75{bottom:464.066667pt;}
.y49{bottom:464.706667pt;}
.yf2{bottom:470.466667pt;}
.y5d{bottom:474.786667pt;}
.y81{bottom:477.506667pt;}
.y119{bottom:482.466667pt;}
.y12e{bottom:483.746667pt;}
.ya9{bottom:484.066667pt;}
.y96{bottom:488.066667pt;}
.yc7{bottom:488.866667pt;}
.ye2{bottom:489.346667pt;}
.y74{bottom:491.586667pt;}
.yc{bottom:495.426667pt;}
.yf1{bottom:498.146667pt;}
.y2d{bottom:499.106667pt;}
.y48{bottom:499.266667pt;}
.y5c{bottom:509.373333pt;}
.y118{bottom:510.173333pt;}
.y12d{bottom:511.293333pt;}
.ya8{bottom:511.773333pt;}
.y80{bottom:512.413333pt;}
.yc6{bottom:516.573333pt;}
.ye1{bottom:517.053333pt;}
.y73{bottom:519.293333pt;}
.yb{bottom:527.453333pt;}
.yf0{bottom:528.093333pt;}
.y95{bottom:531.133333pt;}
.y47{bottom:533.693333pt;}
.y2c{bottom:534.013333pt;}
.y117{bottom:537.693333pt;}
.ya7{bottom:539.293333pt;}
.yc5{bottom:544.093333pt;}
.ye0{bottom:544.573333pt;}
.y12c{bottom:545.533333pt;}
.y72{bottom:546.813333pt;}
.y5b{bottom:550.653333pt;}
.y116{bottom:565.373333pt;}
.ya{bottom:566.493333pt;}
.y12b{bottom:566.653333pt;}
.ya6{bottom:566.973333pt;}
.y2b{bottom:567.933333pt;}
.y46{bottom:568.253333pt;}
.yc4{bottom:571.773333pt;}
.ydf{bottom:572.253333pt;}
.y71{bottom:574.493333pt;}
.yef{bottom:578.333333pt;}
.y5a{bottom:591.613333pt;}
.y115{bottom:592.893333pt;}
.y12a{bottom:594.173333pt;}
.ya5{bottom:594.493333pt;}
.yc3{bottom:599.293333pt;}
.yde{bottom:599.773333pt;}
.y2a{bottom:601.853333pt;}
.y70{bottom:602.013333pt;}
.y45{bottom:602.653333pt;}
.y9{bottom:607.453333pt;}
.y94{bottom:618.013333pt;}
.y114{bottom:620.413333pt;}
.ya4{bottom:622.173333pt;}
.y129{bottom:624.253333pt;}
.yc2{bottom:626.973333pt;}
.ydd{bottom:627.453333pt;}
.y6f{bottom:629.693333pt;}
.y59{bottom:632.413333pt;}
.y29{bottom:635.773333pt;}
.y44{bottom:637.213333pt;}
.y8{bottom:641.373333pt;}
.y113{bottom:648.093333pt;}
.ya3{bottom:649.693333pt;}
.yc1{bottom:654.493333pt;}
.y128{bottom:654.653333pt;}
.ydc{bottom:654.973333pt;}
.y6e{bottom:657.213333pt;}
.y93{bottom:661.533333pt;}
.y28{bottom:669.693333pt;}
.y43{bottom:671.773333pt;}
.y58{bottom:673.373333pt;}
.y7{bottom:675.293333pt;}
.y112{bottom:675.613333pt;}
.ya2{bottom:677.373333pt;}
.yc0{bottom:682.173333pt;}
.y127{bottom:682.333333pt;}
.ydb{bottom:682.653333pt;}
.y6d{bottom:684.893333pt;}
.y111{bottom:703.293333pt;}
.y92{bottom:704.893333pt;}
.y42{bottom:706.173333pt;}
.ybf{bottom:709.693333pt;}
.yda{bottom:710.173333pt;}
.y27{bottom:711.773333pt;}
.y6c{bottom:712.413333pt;}
.y57{bottom:714.333333pt;}
.y6{bottom:715.293333pt;}
.ya1{bottom:732.613333pt;}
.y110{bottom:736.933333pt;}
.ybe{bottom:737.413333pt;}
.yd9{bottom:737.893333pt;}
.y6b{bottom:740.133333pt;}
.y41{bottom:740.773333pt;}
.y91{bottom:748.453333pt;}
.y56{bottom:755.333333pt;}
.y26{bottom:755.493333pt;}
.y5{bottom:756.293333pt;}
.y10f{bottom:758.533333pt;}
.ya0{bottom:760.133333pt;}
.ybd{bottom:764.933333pt;}
.yd8{bottom:765.413333pt;}
.y6a{bottom:767.653333pt;}
.y40{bottom:781.893333pt;}
.y10e{bottom:786.053333pt;}
.y9f{bottom:787.813333pt;}
.y25{bottom:789.413333pt;}
.y4{bottom:791.173333pt;}
.y90{bottom:791.973333pt;}
.ybc{bottom:792.453333pt;}
.yd7{bottom:792.933333pt;}
.y69{bottom:795.333333pt;}
.y55{bottom:796.293333pt;}
.y3f{bottom:809.573333pt;}
.y10d{bottom:813.733333pt;}
.y9e{bottom:815.333333pt;}
.ybb{bottom:820.133333pt;}
.yd6{bottom:820.613333pt;}
.y68{bottom:822.853333pt;}
.y24{bottom:823.333333pt;}
.y3{bottom:825.093333pt;}
.y8f{bottom:835.333333pt;}
.y54{bottom:837.093333pt;}
.y10c{bottom:841.253333pt;}
.y9d{bottom:843.013333pt;}
.y102{bottom:847.653333pt;}
.yba{bottom:847.813333pt;}
.yd5{bottom:848.133333pt;}
.y3e{bottom:850.533333pt;}
.y2{bottom:859.013333pt;}
.y23{bottom:863.173333pt;}
.y10b{bottom:868.933333pt;}
.y9c{bottom:870.533333pt;}
.y101{bottom:875.333333pt;}
.yb9{bottom:875.813333pt;}
.y3d{bottom:878.053333pt;}
.y8e{bottom:878.853333pt;}
.y1{bottom:888.933333pt;}
.y10a{bottom:896.453333pt;}
.y9b{bottom:898.213333pt;}
.y100{bottom:902.853333pt;}
.yb8{bottom:903.333333pt;}
.y22{bottom:904.133333pt;}
.y3c{bottom:912.293333pt;}
.y8d{bottom:913.253333pt;}
.y9a{bottom:927.813333pt;}
.yff{bottom:930.693333pt;}
.yb7{bottom:931.013333pt;}
.y3b{bottom:942.213333pt;}
.y21{bottom:945.093333pt;}
.y99{bottom:949.733333pt;}
.y98{bottom:970.240000pt;}
.y20{bottom:973.600000pt;}
.y97{bottom:994.080000pt;}
.y1f{bottom:994.240000pt;}
.hc{height:8.218437pt;}
.hb{height:42.084375pt;}
.h1{height:44.706250pt;}
.h9{height:57.375000pt;}
.hd{height:57.787500pt;}
.h7{height:62.812500pt;}
.h8{height:64.500000pt;}
.h6{height:65.739375pt;}
.he{height:66.383042pt;}
.ha{height:66.404375pt;}
.h2{height:66.750000pt;}
.h4{height:72.090000pt;}
.hf{height:75.465000pt;}
.h5{height:78.097500pt;}
.h3{height:94.785000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.032000pt;}
.x1a{left:104.992000pt;}
.x1c{left:106.112000pt;}
.xd{left:108.672000pt;}
.x13{left:110.752000pt;}
.x19{left:114.112000pt;}
.x15{left:120.032000pt;}
.x1b{left:138.906667pt;}
.x10{left:144.026667pt;}
.x18{left:148.026667pt;}
.x1d{left:162.266667pt;}
.xa{left:174.906667pt;}
.x5{left:176.186667pt;}
.xc{left:227.066667pt;}
.xb{left:244.826667pt;}
.x6{left:272.706667pt;}
.x4{left:291.106667pt;}
.x7{left:294.306667pt;}
.x3{left:299.106667pt;}
.xe{left:332.866667pt;}
.x1{left:346.946667pt;}
.x9{left:368.866667pt;}
.x14{left:392.066667pt;}
.x8{left:408.066667pt;}
.x17{left:705.253333pt;}
.x12{left:710.053333pt;}
.x11{left:713.413333pt;}
.xf{left:716.773333pt;}
.x16{left:719.973333pt;}
}




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