
    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_6b256ea9b20528efab03b9d7.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_375f08b15a89694759dd143c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_943bab2cbca93c3b8176320a.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_40994469490c73533c728a6e.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_f1dfd61212fc20fd3a87f89a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_0c9faa7d9d403727eeca7289.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c497d11a42fc01799e3f4306.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f9bc96bb21153b534a504e93.woff')format("woff");}.ff9{font-family:ff9;line-height:1.649414;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_5241f0c8c6c955de01cdc4b0.woff')format("woff");}.ffa{font-family:ffa;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;}
.v5{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.240000px;}
.v2{vertical-align:15.120000px;}
.vb{vertical-align:18.000000px;}
.v3{vertical-align:27.000000px;}
.v8{vertical-align:29.880000px;}
.v7{vertical-align:35.280000px;}
.vc{vertical-align:40.320000px;}
.vd{vertical-align:45.360000px;}
.va{vertical-align:52.200000px;}
.v4{vertical-align:58.680000px;}
.ve{vertical-align:67.320000px;}
.v9{vertical-align:83.160000px;}
.ls24{letter-spacing:-0.267600px;}
.lsd{letter-spacing:-0.186600px;}
.ls23{letter-spacing:-0.168000px;}
.ls28{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.005400px;}
.ls5{letter-spacing:0.012600px;}
.ls12{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls29{letter-spacing:0.060600px;}
.ls13{letter-spacing:0.061200px;}
.ls3{letter-spacing:0.065520px;}
.ls10{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.090000px;}
.ls20{letter-spacing:0.092520px;}
.ls1{letter-spacing:0.093600px;}
.ls25{letter-spacing:0.118200px;}
.ls8{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.166320px;}
.lse{letter-spacing:0.173400px;}
.ls6{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls1e{letter-spacing:1.620000px;}
.ls16{letter-spacing:2.333520px;}
.ls19{letter-spacing:2.385000px;}
.ls1c{letter-spacing:2.612520px;}
.ls1b{letter-spacing:3.002040px;}
.ls18{letter-spacing:3.709800px;}
.ls17{letter-spacing:12.332520px;}
.ls15{letter-spacing:13.050360px;}
.ls14{letter-spacing:15.572520px;}
.ls22{letter-spacing:16.650360px;}
.ls1d{letter-spacing:31.052520px;}
.ls27{letter-spacing:47.726640px;}
.ls26{letter-spacing:80.846640px;}
.ls21{letter-spacing:113.580000px;}
.ls1a{letter-spacing:130.772520px;}
.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;}
}
.wse{word-spacing:-60.120000px;}
.ws13{word-spacing:-59.933400px;}
.wsf{word-spacing:-43.829640px;}
.wsd{word-spacing:-43.469640px;}
.ws10{word-spacing:-42.120000px;}
.ws11{word-spacing:-41.952000px;}
.ws12{word-spacing:-41.852400px;}
.ws6{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.ws14{word-spacing:-13.344600px;}
.ws16{word-spacing:-13.287000px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws15{word-spacing:-13.072800px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsa{word-spacing:-8.625600px;}
.ws7{word-spacing:-8.553600px;}
.ws9{word-spacing:-0.047880px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._b{margin-left:-3.404406px;}
._3{margin-left:-2.369400px;}
._0{margin-left:-1.110000px;}
._1{width:1.761648px;}
._2{width:2.886000px;}
._9{width:4.572120px;}
._a{width:5.627228px;}
._c{width:6.661544px;}
._d{width:7.971067px;}
._4{width:9.836040px;}
._5{width:11.676122px;}
._7{width:14.702403px;}
._6{width:15.991800px;}
._8{width:17.102401px;}
._f{width:18.272160px;}
._13{width:19.590600px;}
._14{width:20.599080px;}
._10{width:22.179840px;}
._e{width:23.206320px;}
._11{width:85.219920px;}
._12{width:86.455560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:7.830000px;}
.y76{bottom:7.920000px;}
.y6e{bottom:7.950000px;}
.yb3{bottom:29.970000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ya6{bottom:112.530000px;}
.y86{bottom:115.050000px;}
.yda{bottom:121.980000px;}
.y107{bottom:124.950000px;}
.y71{bottom:126.660000px;}
.y53{bottom:131.160000px;}
.ybc{bottom:132.600000px;}
.ya5{bottom:138.360000px;}
.yd9{bottom:139.530000px;}
.y106{bottom:142.500000px;}
.y85{bottom:147.270000px;}
.y52{bottom:148.800000px;}
.ybb{bottom:150.240000px;}
.y24{bottom:157.530000px;}
.y70{bottom:162.210000px;}
.ya4{bottom:164.190000px;}
.yd8{bottom:166.440000px;}
.yba{bottom:167.790000px;}
.y105{bottom:169.140000px;}
.y23{bottom:175.170000px;}
.y51{bottom:180.930000px;}
.y104{bottom:186.690000px;}
.y4f{bottom:191.010000px;}
.y22{bottom:192.720000px;}
.y6f{bottom:194.430000px;}
.y50{bottom:198.210000px;}
.yb9{bottom:203.340000px;}
.yd7{bottom:203.520000px;}
.y21{bottom:210.270000px;}
.ya3{bottom:211.440000px;}
.y103{bottom:213.330000px;}
.yb8{bottom:220.980000px;}
.ya2{bottom:228.990000px;}
.y102{bottom:230.880000px;}
.yd6{bottom:239.070000px;}
.y20{bottom:245.910000px;}
.y4e{bottom:249.330000px;}
.yb7{bottom:253.200000px;}
.yd5{bottom:256.620000px;}
.y101{bottom:257.430000px;}
.y1f{bottom:263.460000px;}
.ya1{bottom:264.630000px;}
.yd4{bottom:274.260000px;}
.y100{bottom:275.070000px;}
.y1e{bottom:281.100000px;}
.ya0{bottom:282.180000px;}
.y4d{bottom:284.880000px;}
.yd3{bottom:291.810000px;}
.y9f{bottom:299.730000px;}
.yff{bottom:301.620000px;}
.y1d{bottom:308.010000px;}
.y9e{bottom:317.370000px;}
.yd2{bottom:318.720000px;}
.yfe{bottom:319.260000px;}
.y4c{bottom:320.430000px;}
.yfd{bottom:345.810000px;}
.y4b{bottom:347.340000px;}
.y9d{bottom:350.310000px;}
.yd1{bottom:356.070000px;}
.y1c{bottom:356.610000px;}
.yfc{bottom:363.360000px;}
.y9c{bottom:377.670000px;}
.y84{bottom:380.100000px;}
.yfb{bottom:390.000000px;}
.y1b{bottom:393.600000px;}
.y83{bottom:395.130000px;}
.y4a{bottom:395.670000px;}
.yd0{bottom:404.310000px;}
.y9b{bottom:405.030000px;}
.yfa{bottom:407.550000px;}
.y1a{bottom:411.150000px;}
.y49{bottom:413.220000px;}
.ycf{bottom:421.950000px;}
.y82{bottom:422.400000px;}
.y19{bottom:428.790000px;}
.y48{bottom:430.770000px;}
.y9a{bottom:432.300000px;}
.yf9{bottom:434.190000px;}
.yce{bottom:439.500000px;}
.y81{bottom:449.760000px;}
.yf8{bottom:451.740000px;}
.ycd{bottom:457.140000px;}
.y47{bottom:457.410000px;}
.y6d{bottom:462.900000px;}
.y18{bottom:464.340000px;}
.yf7{bottom:469.290000px;}
.ycc{bottom:474.720000px;}
.y80{bottom:477.150000px;}
.y99{bottom:481.020000px;}
.y17{bottom:481.920000px;}
.y6c{bottom:490.290000px;}
.ycb{bottom:492.270000px;}
.y46{bottom:492.990000px;}
.yf6{bottom:495.960000px;}
.y16{bottom:499.560000px;}
.y7f{bottom:504.420000px;}
.yca{bottom:509.910000px;}
.y45{bottom:510.630000px;}
.yf5{bottom:513.510000px;}
.yb6{bottom:515.310000px;}
.y98{bottom:516.660000px;}
.y15{bottom:517.110000px;}
.y6b{bottom:517.650000px;}
.yc9{bottom:527.460000px;}
.y44{bottom:528.180000px;}
.yb5{bottom:530.250000px;}
.y97{bottom:534.210000px;}
.y14{bottom:534.750000px;}
.yf4{bottom:540.150000px;}
.y69{bottom:545.010000px;}
.y43{bottom:545.730000px;}
.y96{bottom:551.850000px;}
.y7e{bottom:553.200000px;}
.yc8{bottom:554.370000px;}
.yb4{bottom:557.610000px;}
.yf3{bottom:557.700000px;}
.y42{bottom:563.370000px;}
.y95{bottom:569.400000px;}
.y13{bottom:570.300000px;}
.yf2{bottom:575.250000px;}
.y41{bottom:580.920000px;}
.yb2{bottom:584.970000px;}
.y94{bottom:586.950000px;}
.y12{bottom:587.850000px;}
.y7d{bottom:588.750000px;}
.y68{bottom:593.700000px;}
.y40{bottom:598.560000px;}
.yf1{bottom:601.890000px;}
.yc7{bottom:602.700000px;}
.y93{bottom:604.590000px;}
.y7c{bottom:606.300000px;}
.y3f{bottom:616.110000px;}
.yf0{bottom:619.440000px;}
.yc6{bottom:620.250000px;}
.y92{bottom:622.140000px;}
.y11{bottom:623.490000px;}
.y7b{bottom:623.940000px;}
.y67{bottom:629.250000px;}
.yc5{bottom:637.800000px;}
.y91{bottom:639.780000px;}
.y10{bottom:641.040000px;}
.y7a{bottom:641.490000px;}
.y3e{bottom:642.660000px;}
.yef{bottom:646.080000px;}
.yc4{bottom:655.440000px;}
.yb1{bottom:655.710000px;}
.y66{bottom:656.160000px;}
.y90{bottom:657.330000px;}
.yf{bottom:658.680000px;}
.y79{bottom:659.130000px;}
.yee{bottom:663.630000px;}
.yc3{bottom:672.990000px;}
.yb0{bottom:673.350000px;}
.y8f{bottom:674.880000px;}
.ye{bottom:676.230000px;}
.y3d{bottom:678.300000px;}
.yed{bottom:690.180000px;}
.y78{bottom:694.680000px;}
.y3c{bottom:695.850000px;}
.yd{bottom:703.140000px;}
.y65{bottom:704.400000px;}
.yec{bottom:707.820000px;}
.yc2{bottom:708.630000px;}
.yaf{bottom:708.900000px;}
.y8e{bottom:710.520000px;}
.y3b{bottom:713.490000px;}
.y64{bottom:722.040000px;}
.yc1{bottom:726.180000px;}
.yae{bottom:726.540000px;}
.y77{bottom:726.900000px;}
.yeb{bottom:734.370000px;}
.y63{bottom:739.590000px;}
.y8d{bottom:742.740000px;}
.yad{bottom:744.090000px;}
.y3a{bottom:749.040000px;}
.yc{bottom:751.380000px;}
.yea{bottom:751.920000px;}
.y62{bottom:757.230000px;}
.yc0{bottom:758.400000px;}
.yac{bottom:761.640000px;}
.y39{bottom:766.590000px;}
.y61{bottom:774.780000px;}
.ye9{bottom:778.560000px;}
.yab{bottom:779.280000px;}
.y38{bottom:784.230000px;}
.yb{bottom:787.200000px;}
.y60{bottom:792.330000px;}
.ye8{bottom:796.110000px;}
.yaa{bottom:796.830000px;}
.y37{bottom:801.780000px;}
.y5f{bottom:809.970000px;}
.y36{bottom:819.420000px;}
.ye7{bottom:822.750000px;}
.ya{bottom:823.200000px;}
.y5e{bottom:827.520000px;}
.ya9{bottom:832.470000px;}
.y5d{bottom:845.160000px;}
.ye6{bottom:849.300000px;}
.ya8{bottom:850.020000px;}
.y35{bottom:854.970000px;}
.y9{bottom:859.200000px;}
.y5c{bottom:862.710000px;}
.ye5{bottom:866.850000px;}
.y34{bottom:872.520000px;}
.y8{bottom:877.200000px;}
.ya7{bottom:882.240000px;}
.ye4{bottom:884.490000px;}
.y33{bottom:890.160000px;}
.y7{bottom:895.200000px;}
.y5b{bottom:898.260000px;}
.y32{bottom:907.710000px;}
.ye3{bottom:911.040000px;}
.y6{bottom:913.200000px;}
.y8c{bottom:921.210000px;}
.y31{bottom:925.260000px;}
.ye2{bottom:928.680000px;}
.y5a{bottom:930.660000px;}
.y59{bottom:938.220000px;}
.y30{bottom:942.900000px;}
.y8b{bottom:948.570000px;}
.y5{bottom:949.290000px;}
.ye1{bottom:955.230000px;}
.y2f{bottom:960.450000px;}
.y75{bottom:966.120000px;}
.ye0{bottom:972.780000px;}
.y8a{bottom:975.930000px;}
.y58{bottom:976.290000px;}
.ybf{bottom:982.230000px;}
.y57{bottom:986.370000px;}
.y4{bottom:987.630000px;}
.y74{bottom:993.480000px;}
.y2e{bottom:996.090000px;}
.ybe{bottom:997.260000px;}
.ydf{bottom:999.690000px;}
.y89{bottom:1003.200000px;}
.y3{bottom:1012.320000px;}
.y2d{bottom:1013.670000px;}
.y73{bottom:1020.870000px;}
.ybd{bottom:1024.560000px;}
.y2c{bottom:1031.220000px;}
.y56{bottom:1033.560000px;}
.yde{bottom:1048.050000px;}
.y2b{bottom:1048.860000px;}
.y88{bottom:1051.920000px;}
.y55{bottom:1069.110000px;}
.y72{bottom:1069.560000px;}
.ydd{bottom:1074.960000px;}
.y109{bottom:1078.560000px;}
.y2a{bottom:1084.950000px;}
.y87{bottom:1087.560000px;}
.y108{bottom:1096.110000px;}
.y54{bottom:1104.750000px;}
.y29{bottom:1105.110000px;}
.ydc{bottom:1111.950000px;}
.y28{bottom:1122.750000px;}
.ydb{bottom:1138.860000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.h17{height:25.110000px;}
.h13{height:26.550000px;}
.h15{height:26.580000px;}
.h16{height:26.640000px;}
.h14{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h18{height:48.690000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.h19{height:61.793886px;}
.hb{height:62.585859px;}
.hc{height:68.582109px;}
.h4{height:72.985430px;}
.ha{height:76.213095px;}
.h11{height:90.750234px;}
.hf{height:92.631445px;}
.h12{height:97.023691px;}
.h10{height:114.108574px;}
.he{height:129.948574px;}
.hd{height:161.103691px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1e{width:51.750000px;}
.w18{width:53.280000px;}
.w22{width:61.740000px;}
.w6{width:62.010000px;}
.w1c{width:65.250000px;}
.w12{width:68.850000px;}
.w8{width:77.760000px;}
.w1d{width:79.110000px;}
.w17{width:79.140000px;}
.w16{width:84.150000px;}
.w4{width:88.470000px;}
.w5{width:92.910000px;}
.wd{width:92.970000px;}
.w7{width:93.000000px;}
.w3{width:99.180000px;}
.w11{width:102.180000px;}
.w21{width:104.220000px;}
.w1b{width:111.420000px;}
.w20{width:118.740000px;}
.wa{width:123.030000px;}
.w1a{width:126.930000px;}
.w14{width:135.570000px;}
.w1f{width:137.430000px;}
.w19{width:147.330000px;}
.w15{width:171.360000px;}
.w9{width:172.920000px;}
.wc{width:173.010000px;}
.we{width:174.900000px;}
.w13{width:189.810000px;}
.wb{width:202.590000px;}
.wf{width:230.520000px;}
.w10{width:239.310000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.xe{left:30.510000px;}
.xf{left:37.080000px;}
.x1{left:68.040000px;}
.x39{left:70.289987px;}
.x31{left:71.369987px;}
.x28{left:73.799987px;}
.x3b{left:111.239987px;}
.x1f{left:123.570000px;}
.x2a{left:153.090000px;}
.x32{left:168.240000px;}
.x22{left:171.750000px;}
.x2{left:192.719987px;}
.x1b{left:211.620000px;}
.x1e{left:216.389987px;}
.x2b{left:232.950000px;}
.x23{left:241.320000px;}
.x33{left:248.160000px;}
.x16{left:258.960000px;}
.x15{left:260.939987px;}
.x11{left:284.249987px;}
.x2c{left:286.950000px;}
.x20{left:299.190000px;}
.x34{left:300.630000px;}
.xa{left:305.580000px;}
.x12{left:324.120000px;}
.x17{left:337.530000px;}
.x8{left:387.299987px;}
.x4{left:390.809987px;}
.x3a{left:392.159987px;}
.xc{left:405.480000px;}
.x29{left:411.689987px;}
.x7{left:415.649987px;}
.x9{left:422.759987px;}
.x24{left:431.850000px;}
.x2d{left:435.000000px;}
.x35{left:438.780000px;}
.x19{left:446.609987px;}
.x6{left:453.719987px;}
.x5{left:460.649987px;}
.x13{left:476.130000px;}
.xd{left:494.760000px;}
.x18{left:511.260000px;}
.x21{left:530.430000px;}
.x14{left:555.809987px;}
.x36{left:558.330000px;}
.x2e{left:562.740000px;}
.x25{left:568.230000px;}
.x1c{left:588.660000px;}
.x1a{left:650.309987px;}
.x37{left:663.270000px;}
.x2f{left:674.880000px;}
.x1d{left:685.139987px;}
.x27{left:713.309987px;}
.x10{left:732.389987px;}
.x26{left:740.310000px;}
.x30{left:745.889987px;}
.x38{left:763.889987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v5{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.880000pt;}
.v2{vertical-align:13.440000pt;}
.vb{vertical-align:16.000000pt;}
.v3{vertical-align:24.000000pt;}
.v8{vertical-align:26.560000pt;}
.v7{vertical-align:31.360000pt;}
.vc{vertical-align:35.840000pt;}
.vd{vertical-align:40.320000pt;}
.va{vertical-align:46.400000pt;}
.v4{vertical-align:52.160000pt;}
.ve{vertical-align:59.840000pt;}
.v9{vertical-align:73.920000pt;}
.ls24{letter-spacing:-0.237867pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls23{letter-spacing:-0.149333pt;}
.ls28{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.004800pt;}
.ls5{letter-spacing:0.011200pt;}
.ls12{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls29{letter-spacing:0.053867pt;}
.ls13{letter-spacing:0.054400pt;}
.ls3{letter-spacing:0.058240pt;}
.ls10{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.080000pt;}
.ls20{letter-spacing:0.082240pt;}
.ls1{letter-spacing:0.083200pt;}
.ls25{letter-spacing:0.105067pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.147840pt;}
.lse{letter-spacing:0.154133pt;}
.ls6{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls1e{letter-spacing:1.440000pt;}
.ls16{letter-spacing:2.074240pt;}
.ls19{letter-spacing:2.120000pt;}
.ls1c{letter-spacing:2.322240pt;}
.ls1b{letter-spacing:2.668480pt;}
.ls18{letter-spacing:3.297600pt;}
.ls17{letter-spacing:10.962240pt;}
.ls15{letter-spacing:11.600320pt;}
.ls14{letter-spacing:13.842240pt;}
.ls22{letter-spacing:14.800320pt;}
.ls1d{letter-spacing:27.602240pt;}
.ls27{letter-spacing:42.423680pt;}
.ls26{letter-spacing:71.863680pt;}
.ls21{letter-spacing:100.960000pt;}
.ls1a{letter-spacing:116.242240pt;}
.wse{word-spacing:-53.440000pt;}
.ws13{word-spacing:-53.274133pt;}
.wsf{word-spacing:-38.959680pt;}
.wsd{word-spacing:-38.639680pt;}
.ws10{word-spacing:-37.440000pt;}
.ws11{word-spacing:-37.290667pt;}
.ws12{word-spacing:-37.202133pt;}
.ws6{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.ws14{word-spacing:-11.861867pt;}
.ws16{word-spacing:-11.810667pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws15{word-spacing:-11.620267pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsa{word-spacing:-7.667200pt;}
.ws7{word-spacing:-7.603200pt;}
.ws9{word-spacing:-0.042560pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._b{margin-left:-3.026138pt;}
._3{margin-left:-2.106133pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.565909pt;}
._2{width:2.565334pt;}
._9{width:4.064107pt;}
._a{width:5.001981pt;}
._c{width:5.921373pt;}
._d{width:7.085393pt;}
._4{width:8.743146pt;}
._5{width:10.378775pt;}
._7{width:13.068803pt;}
._6{width:14.214933pt;}
._8{width:15.202134pt;}
._f{width:16.241920pt;}
._13{width:17.413867pt;}
._14{width:18.310293pt;}
._10{width:19.715413pt;}
._e{width:20.627840pt;}
._11{width:75.751040pt;}
._12{width:76.849387pt;}
.fs9{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:6.960000pt;}
.y76{bottom:7.040000pt;}
.y6e{bottom:7.066667pt;}
.yb3{bottom:26.640000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ya6{bottom:100.026667pt;}
.y86{bottom:102.266667pt;}
.yda{bottom:108.426667pt;}
.y107{bottom:111.066667pt;}
.y71{bottom:112.586667pt;}
.y53{bottom:116.586667pt;}
.ybc{bottom:117.866667pt;}
.ya5{bottom:122.986667pt;}
.yd9{bottom:124.026667pt;}
.y106{bottom:126.666667pt;}
.y85{bottom:130.906667pt;}
.y52{bottom:132.266667pt;}
.ybb{bottom:133.546667pt;}
.y24{bottom:140.026667pt;}
.y70{bottom:144.186667pt;}
.ya4{bottom:145.946667pt;}
.yd8{bottom:147.946667pt;}
.yba{bottom:149.146667pt;}
.y105{bottom:150.346667pt;}
.y23{bottom:155.706667pt;}
.y51{bottom:160.826667pt;}
.y104{bottom:165.946667pt;}
.y4f{bottom:169.786667pt;}
.y22{bottom:171.306667pt;}
.y6f{bottom:172.826667pt;}
.y50{bottom:176.186667pt;}
.yb9{bottom:180.746667pt;}
.yd7{bottom:180.906667pt;}
.y21{bottom:186.906667pt;}
.ya3{bottom:187.946667pt;}
.y103{bottom:189.626667pt;}
.yb8{bottom:196.426667pt;}
.ya2{bottom:203.546667pt;}
.y102{bottom:205.226667pt;}
.yd6{bottom:212.506667pt;}
.y20{bottom:218.586667pt;}
.y4e{bottom:221.626667pt;}
.yb7{bottom:225.066667pt;}
.yd5{bottom:228.106667pt;}
.y101{bottom:228.826667pt;}
.y1f{bottom:234.186667pt;}
.ya1{bottom:235.226667pt;}
.yd4{bottom:243.786667pt;}
.y100{bottom:244.506667pt;}
.y1e{bottom:249.866667pt;}
.ya0{bottom:250.826667pt;}
.y4d{bottom:253.226667pt;}
.yd3{bottom:259.386667pt;}
.y9f{bottom:266.426667pt;}
.yff{bottom:268.106667pt;}
.y1d{bottom:273.786667pt;}
.y9e{bottom:282.106667pt;}
.yd2{bottom:283.306667pt;}
.yfe{bottom:283.786667pt;}
.y4c{bottom:284.826667pt;}
.yfd{bottom:307.386667pt;}
.y4b{bottom:308.746667pt;}
.y9d{bottom:311.386667pt;}
.yd1{bottom:316.506667pt;}
.y1c{bottom:316.986667pt;}
.yfc{bottom:322.986667pt;}
.y9c{bottom:335.706667pt;}
.y84{bottom:337.866667pt;}
.yfb{bottom:346.666667pt;}
.y1b{bottom:349.866667pt;}
.y83{bottom:351.226667pt;}
.y4a{bottom:351.706667pt;}
.yd0{bottom:359.386667pt;}
.y9b{bottom:360.026667pt;}
.yfa{bottom:362.266667pt;}
.y1a{bottom:365.466667pt;}
.y49{bottom:367.306667pt;}
.ycf{bottom:375.066667pt;}
.y82{bottom:375.466667pt;}
.y19{bottom:381.146667pt;}
.y48{bottom:382.906667pt;}
.y9a{bottom:384.266667pt;}
.yf9{bottom:385.946667pt;}
.yce{bottom:390.666667pt;}
.y81{bottom:399.786667pt;}
.yf8{bottom:401.546667pt;}
.ycd{bottom:406.346667pt;}
.y47{bottom:406.586667pt;}
.y6d{bottom:411.466667pt;}
.y18{bottom:412.746667pt;}
.yf7{bottom:417.146667pt;}
.ycc{bottom:421.973333pt;}
.y80{bottom:424.133333pt;}
.y99{bottom:427.573333pt;}
.y17{bottom:428.373333pt;}
.y6c{bottom:435.813333pt;}
.ycb{bottom:437.573333pt;}
.y46{bottom:438.213333pt;}
.yf6{bottom:440.853333pt;}
.y16{bottom:444.053333pt;}
.y7f{bottom:448.373333pt;}
.yca{bottom:453.253333pt;}
.y45{bottom:453.893333pt;}
.yf5{bottom:456.453333pt;}
.yb6{bottom:458.053333pt;}
.y98{bottom:459.253333pt;}
.y15{bottom:459.653333pt;}
.y6b{bottom:460.133333pt;}
.yc9{bottom:468.853333pt;}
.y44{bottom:469.493333pt;}
.yb5{bottom:471.333333pt;}
.y97{bottom:474.853333pt;}
.y14{bottom:475.333333pt;}
.yf4{bottom:480.133333pt;}
.y69{bottom:484.453333pt;}
.y43{bottom:485.093333pt;}
.y96{bottom:490.533333pt;}
.y7e{bottom:491.733333pt;}
.yc8{bottom:492.773333pt;}
.yb4{bottom:495.653333pt;}
.yf3{bottom:495.733333pt;}
.y42{bottom:500.773333pt;}
.y95{bottom:506.133333pt;}
.y13{bottom:506.933333pt;}
.yf2{bottom:511.333333pt;}
.y41{bottom:516.373333pt;}
.yb2{bottom:519.973333pt;}
.y94{bottom:521.733333pt;}
.y12{bottom:522.533333pt;}
.y7d{bottom:523.333333pt;}
.y68{bottom:527.733333pt;}
.y40{bottom:532.053333pt;}
.yf1{bottom:535.013333pt;}
.yc7{bottom:535.733333pt;}
.y93{bottom:537.413333pt;}
.y7c{bottom:538.933333pt;}
.y3f{bottom:547.653333pt;}
.yf0{bottom:550.613333pt;}
.yc6{bottom:551.333333pt;}
.y92{bottom:553.013333pt;}
.y11{bottom:554.213333pt;}
.y7b{bottom:554.613333pt;}
.y67{bottom:559.333333pt;}
.yc5{bottom:566.933333pt;}
.y91{bottom:568.693333pt;}
.y10{bottom:569.813333pt;}
.y7a{bottom:570.213333pt;}
.y3e{bottom:571.253333pt;}
.yef{bottom:574.293333pt;}
.yc4{bottom:582.613333pt;}
.yb1{bottom:582.853333pt;}
.y66{bottom:583.253333pt;}
.y90{bottom:584.293333pt;}
.yf{bottom:585.493333pt;}
.y79{bottom:585.893333pt;}
.yee{bottom:589.893333pt;}
.yc3{bottom:598.213333pt;}
.yb0{bottom:598.533333pt;}
.y8f{bottom:599.893333pt;}
.ye{bottom:601.093333pt;}
.y3d{bottom:602.933333pt;}
.yed{bottom:613.493333pt;}
.y78{bottom:617.493333pt;}
.y3c{bottom:618.533333pt;}
.yd{bottom:625.013333pt;}
.y65{bottom:626.133333pt;}
.yec{bottom:629.173333pt;}
.yc2{bottom:629.893333pt;}
.yaf{bottom:630.133333pt;}
.y8e{bottom:631.573333pt;}
.y3b{bottom:634.213333pt;}
.y64{bottom:641.813333pt;}
.yc1{bottom:645.493333pt;}
.yae{bottom:645.813333pt;}
.y77{bottom:646.133333pt;}
.yeb{bottom:652.773333pt;}
.y63{bottom:657.413333pt;}
.y8d{bottom:660.213333pt;}
.yad{bottom:661.413333pt;}
.y3a{bottom:665.813333pt;}
.yc{bottom:667.893333pt;}
.yea{bottom:668.373333pt;}
.y62{bottom:673.093333pt;}
.yc0{bottom:674.133333pt;}
.yac{bottom:677.013333pt;}
.y39{bottom:681.413333pt;}
.y61{bottom:688.693333pt;}
.ye9{bottom:692.053333pt;}
.yab{bottom:692.693333pt;}
.y38{bottom:697.093333pt;}
.yb{bottom:699.733333pt;}
.y60{bottom:704.293333pt;}
.ye8{bottom:707.653333pt;}
.yaa{bottom:708.293333pt;}
.y37{bottom:712.693333pt;}
.y5f{bottom:719.973333pt;}
.y36{bottom:728.373333pt;}
.ye7{bottom:731.333333pt;}
.ya{bottom:731.733333pt;}
.y5e{bottom:735.573333pt;}
.ya9{bottom:739.973333pt;}
.y5d{bottom:751.253333pt;}
.ye6{bottom:754.933333pt;}
.ya8{bottom:755.573333pt;}
.y35{bottom:759.973333pt;}
.y9{bottom:763.733333pt;}
.y5c{bottom:766.853333pt;}
.ye5{bottom:770.533333pt;}
.y34{bottom:775.573333pt;}
.y8{bottom:779.733333pt;}
.ya7{bottom:784.213333pt;}
.ye4{bottom:786.213333pt;}
.y33{bottom:791.253333pt;}
.y7{bottom:795.733333pt;}
.y5b{bottom:798.453333pt;}
.y32{bottom:806.853333pt;}
.ye3{bottom:809.813333pt;}
.y6{bottom:811.733333pt;}
.y8c{bottom:818.853333pt;}
.y31{bottom:822.453333pt;}
.ye2{bottom:825.493333pt;}
.y5a{bottom:827.253333pt;}
.y59{bottom:833.973333pt;}
.y30{bottom:838.133333pt;}
.y8b{bottom:843.173333pt;}
.y5{bottom:843.813333pt;}
.ye1{bottom:849.093333pt;}
.y2f{bottom:853.733333pt;}
.y75{bottom:858.773333pt;}
.ye0{bottom:864.693333pt;}
.y8a{bottom:867.493333pt;}
.y58{bottom:867.813333pt;}
.ybf{bottom:873.093333pt;}
.y57{bottom:876.773333pt;}
.y4{bottom:877.893333pt;}
.y74{bottom:883.093333pt;}
.y2e{bottom:885.413333pt;}
.ybe{bottom:886.453333pt;}
.ydf{bottom:888.613333pt;}
.y89{bottom:891.733333pt;}
.y3{bottom:899.840000pt;}
.y2d{bottom:901.040000pt;}
.y73{bottom:907.440000pt;}
.ybd{bottom:910.720000pt;}
.y2c{bottom:916.640000pt;}
.y56{bottom:918.720000pt;}
.yde{bottom:931.600000pt;}
.y2b{bottom:932.320000pt;}
.y88{bottom:935.040000pt;}
.y55{bottom:950.320000pt;}
.y72{bottom:950.720000pt;}
.ydd{bottom:955.520000pt;}
.y109{bottom:958.720000pt;}
.y2a{bottom:964.400000pt;}
.y87{bottom:966.720000pt;}
.y108{bottom:974.320000pt;}
.y54{bottom:982.000000pt;}
.y29{bottom:982.320000pt;}
.ydc{bottom:988.400000pt;}
.y28{bottom:998.000000pt;}
.ydb{bottom:1012.320000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.h17{height:22.320000pt;}
.h13{height:23.600000pt;}
.h15{height:23.626667pt;}
.h16{height:23.680000pt;}
.h14{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h18{height:43.280000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.h19{height:54.927899pt;}
.hb{height:55.631875pt;}
.hc{height:60.961875pt;}
.h4{height:64.875937pt;}
.ha{height:67.744973pt;}
.h11{height:80.666875pt;}
.hf{height:82.339063pt;}
.h12{height:86.243281pt;}
.h10{height:101.429844pt;}
.he{height:115.509844pt;}
.hd{height:143.203281pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1e{width:46.000000pt;}
.w18{width:47.360000pt;}
.w22{width:54.880000pt;}
.w6{width:55.120000pt;}
.w1c{width:58.000000pt;}
.w12{width:61.200000pt;}
.w8{width:69.120000pt;}
.w1d{width:70.320000pt;}
.w17{width:70.346667pt;}
.w16{width:74.800000pt;}
.w4{width:78.640000pt;}
.w5{width:82.586667pt;}
.wd{width:82.640000pt;}
.w7{width:82.666667pt;}
.w3{width:88.160000pt;}
.w11{width:90.826667pt;}
.w21{width:92.640000pt;}
.w1b{width:99.040000pt;}
.w20{width:105.546667pt;}
.wa{width:109.360000pt;}
.w1a{width:112.826667pt;}
.w14{width:120.506667pt;}
.w1f{width:122.160000pt;}
.w19{width:130.960000pt;}
.w15{width:152.320000pt;}
.w9{width:153.706667pt;}
.wc{width:153.786667pt;}
.we{width:155.466667pt;}
.w13{width:168.720000pt;}
.wb{width:180.080000pt;}
.wf{width:204.906667pt;}
.w10{width:212.720000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.xe{left:27.120000pt;}
.xf{left:32.960000pt;}
.x1{left:60.480000pt;}
.x39{left:62.479988pt;}
.x31{left:63.439988pt;}
.x28{left:65.599988pt;}
.x3b{left:98.879988pt;}
.x1f{left:109.840000pt;}
.x2a{left:136.080000pt;}
.x32{left:149.546667pt;}
.x22{left:152.666667pt;}
.x2{left:171.306655pt;}
.x1b{left:188.106667pt;}
.x1e{left:192.346655pt;}
.x2b{left:207.066667pt;}
.x23{left:214.506667pt;}
.x33{left:220.586667pt;}
.x16{left:230.186667pt;}
.x15{left:231.946655pt;}
.x11{left:252.666655pt;}
.x2c{left:255.066667pt;}
.x20{left:265.946667pt;}
.x34{left:267.226667pt;}
.xa{left:271.626667pt;}
.x12{left:288.106667pt;}
.x17{left:300.026667pt;}
.x8{left:344.266655pt;}
.x4{left:347.386655pt;}
.x3a{left:348.586655pt;}
.xc{left:360.426667pt;}
.x29{left:365.946655pt;}
.x7{left:369.466655pt;}
.x9{left:375.786655pt;}
.x24{left:383.866667pt;}
.x2d{left:386.666667pt;}
.x35{left:390.026667pt;}
.x19{left:396.986655pt;}
.x6{left:403.306655pt;}
.x5{left:409.466655pt;}
.x13{left:423.226667pt;}
.xd{left:439.786667pt;}
.x18{left:454.453333pt;}
.x21{left:471.493333pt;}
.x14{left:494.053322pt;}
.x36{left:496.293333pt;}
.x2e{left:500.213333pt;}
.x25{left:505.093333pt;}
.x1c{left:523.253333pt;}
.x1a{left:578.053322pt;}
.x37{left:589.573333pt;}
.x2f{left:599.893333pt;}
.x1d{left:609.013322pt;}
.x27{left:634.053322pt;}
.x10{left:651.013322pt;}
.x26{left:658.053333pt;}
.x30{left:663.013322pt;}
.x38{left:679.013322pt;}
.x3{left:711.413322pt;}
}




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