
    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_dba5d6a1b5021d4f41921076.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_a14021479db9563020f6d335.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_39885f118d520febff965ad8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9233f9857024288d5e6009e0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6a434f3625f8c053679d992a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_36160a8c5bb3a8a78249e43b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.982422;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_f785b47e022a9c2353a188da.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_a928fd5a74128106db63da52.woff')format("woff");}.ff9{font-family:ff9;line-height:0.738770;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_fe33d1c1e42955d6f4db21c4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.924000px;}
.ls4{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.341400px;}
.lsb{letter-spacing:-0.259800px;}
.ls6{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.008640px;}
.ls16{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.480000px;}
.ls17{letter-spacing:0.900000px;}
.ls15{letter-spacing:16.506720px;}
.ls9{letter-spacing:46.026720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws3{word-spacing:-23.598600px;}
.ws0{word-spacing:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.300000px;}
.wse{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.580000px;}
.ws4{word-spacing:-10.440000px;}
.ws6{word-spacing:-10.080000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-461.868480px;}
._d{margin-left:-3.704640px;}
._6{margin-left:-2.510160px;}
._2{margin-left:-1.059840px;}
._0{width:1.157760px;}
._1{width:2.950080px;}
._16{width:3.962400px;}
._4{width:5.075280px;}
._5{width:6.375360px;}
._9{width:7.504080px;}
._c{width:8.645040px;}
._b{width:10.218960px;}
._11{width:11.451600px;}
._13{width:12.467520px;}
._12{width:13.744800px;}
._1b{width:16.148880px;}
._20{width:17.397360px;}
._f{width:18.465840px;}
._e{width:19.481760px;}
._1f{width:20.583120px;}
._10{width:22.148640px;}
._8{width:23.485680px;}
._7{width:24.740640px;}
._a{width:25.816320px;}
._18{width:28.386000px;}
._1e{width:39.043200px;}
._1c{width:40.119840px;}
._1d{width:41.233440px;}
._1a{width:46.118880px;}
._19{width:47.867760px;}
._14{width:93.464640px;}
._17{width:98.892720px;}
._15{width:150.057360px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.220000px;}
.yf0{bottom:5.760000px;}
.y106{bottom:5.790000px;}
.y4b{bottom:5.940000px;}
.y132{bottom:6.120000px;}
.y135{bottom:6.300000px;}
.y2b{bottom:7.020000px;}
.y105{bottom:7.050000px;}
.yc1{bottom:7.200000px;}
.y16b{bottom:7.380000px;}
.y16d{bottom:7.560000px;}
.yc3{bottom:8.280000px;}
.yd1{bottom:8.460000px;}
.y15b{bottom:9.720000px;}
.y15d{bottom:9.900000px;}
.ycf{bottom:11.160000px;}
.yc8{bottom:11.340000px;}
.ydd{bottom:14.040000px;}
.y6{bottom:14.220000px;}
.ydf{bottom:14.760000px;}
.ydb{bottom:14.940000px;}
.y4a{bottom:25.740000px;}
.y2a{bottom:27.000000px;}
.y49{bottom:45.540000px;}
.y5{bottom:45.720000px;}
.y29{bottom:46.800000px;}
.y9{bottom:60.120000px;}
.y48{bottom:65.385000px;}
.y28{bottom:66.645000px;}
.y4{bottom:77.400000px;}
.y47{bottom:82.665000px;}
.y109{bottom:82.800000px;}
.y8d{bottom:83.700000px;}
.y197{bottom:85.680000px;}
.y188{bottom:86.220000px;}
.y27{bottom:86.445000px;}
.yd8{bottom:88.020000px;}
.y1bb{bottom:92.880000px;}
.y13d{bottom:96.840000px;}
.y167{bottom:97.380000px;}
.y46{bottom:99.945000px;}
.y8c{bottom:103.500000px;}
.y57{bottom:105.300000px;}
.yb1{bottom:105.480000px;}
.y108{bottom:105.840000px;}
.y187{bottom:106.020000px;}
.y26{bottom:106.245000px;}
.yd7{bottom:107.820000px;}
.y3{bottom:109.110000px;}
.y166{bottom:112.140000px;}
.y1ba{bottom:112.680000px;}
.y13c{bottom:116.640000px;}
.y45{bottom:117.225000px;}
.y8b{bottom:123.300000px;}
.y56{bottom:125.100000px;}
.yb0{bottom:125.280000px;}
.y186{bottom:125.820000px;}
.y25{bottom:126.225000px;}
.yd6{bottom:127.800000px;}
.y107{bottom:129.060000px;}
.y1b9{bottom:132.480000px;}
.y44{bottom:134.505000px;}
.y13b{bottom:136.620000px;}
.y165{bottom:139.860000px;}
.y2{bottom:142.230000px;}
.y8a{bottom:143.100000px;}
.y55{bottom:145.080000px;}
.y24{bottom:146.025000px;}
.yd5{bottom:147.600000px;}
.y104{bottom:151.380000px;}
.y43{bottom:151.785000px;}
.y1b8{bottom:152.310000px;}
.y13a{bottom:156.450000px;}
.y185{bottom:157.710000px;}
.yd4{bottom:162.390000px;}
.y89{bottom:162.930000px;}
.y54{bottom:164.910000px;}
.yaf{bottom:165.090000px;}
.y23{bottom:165.825000px;}
.y164{bottom:167.610000px;}
.y42{bottom:168.885000px;}
.y1b7{bottom:172.110000px;}
.y184{bottom:172.470000px;}
.y103{bottom:173.730000px;}
.y139{bottom:176.250000px;}
.y88{bottom:182.910000px;}
.y53{bottom:184.710000px;}
.yae{bottom:184.890000px;}
.y22{bottom:185.625000px;}
.y41{bottom:186.165000px;}
.y1b6{bottom:192.090000px;}
.y183{bottom:192.450000px;}
.y163{bottom:195.330000px;}
.y138{bottom:196.050000px;}
.y102{bottom:196.770000px;}
.y87{bottom:202.710000px;}
.y40{bottom:203.445000px;}
.y52{bottom:204.510000px;}
.yad{bottom:204.690000px;}
.y21{bottom:205.425000px;}
.yd3{bottom:207.210000px;}
.y137{bottom:210.810000px;}
.y1b5{bottom:211.890000px;}
.y101{bottom:219.990000px;}
.y3f{bottom:220.725000px;}
.y86{bottom:222.510000px;}
.y182{bottom:223.050000px;}
.y162{bottom:223.230000px;}
.y51{bottom:224.310000px;}
.yac{bottom:224.490000px;}
.y20{bottom:225.405000px;}
.yd2{bottom:229.710000px;}
.y136{bottom:231.150000px;}
.y1b4{bottom:231.690000px;}
.y3e{bottom:238.005000px;}
.y85{bottom:239.790000px;}
.y100{bottom:242.310000px;}
.y181{bottom:242.850000px;}
.y50{bottom:244.290000px;}
.y1f{bottom:245.205000px;}
.y161{bottom:250.950000px;}
.y134{bottom:251.310000px;}
.y1b3{bottom:251.490000px;}
.yd0{bottom:252.030000px;}
.y3d{bottom:255.285000px;}
.y180{bottom:263.370000px;}
.y4f{bottom:264.090000px;}
.yab{bottom:264.270000px;}
.yff{bottom:264.630000px;}
.y1e{bottom:265.005000px;}
.y84{bottom:268.590000px;}
.y1b2{bottom:271.290000px;}
.y133{bottom:271.650000px;}
.y3c{bottom:272.385000px;}
.yce{bottom:274.530000px;}
.y160{bottom:278.670000px;}
.y4e{bottom:283.890000px;}
.yaa{bottom:284.070000px;}
.y1d{bottom:284.805000px;}
.yfe{bottom:287.670000px;}
.y83{bottom:288.390000px;}
.y3b{bottom:289.665000px;}
.y17f{bottom:289.830000px;}
.y1b1{bottom:291.270000px;}
.y131{bottom:292.710000px;}
.ycd{bottom:296.850000px;}
.y4d{bottom:303.690000px;}
.ya9{bottom:303.870000px;}
.y1c{bottom:304.605000px;}
.y15f{bottom:306.390000px;}
.y3a{bottom:306.945000px;}
.y82{bottom:308.370000px;}
.y17e{bottom:309.630000px;}
.yfd{bottom:310.890000px;}
.y1b0{bottom:311.070000px;}
.ycc{bottom:319.350000px;}
.y4c{bottom:323.490000px;}
.y39{bottom:323.535000px;}
.ya8{bottom:323.670000px;}
.y1b{bottom:324.615000px;}
.y81{bottom:325.650000px;}
.y17d{bottom:329.430000px;}
.y1af{bottom:330.870000px;}
.yfc{bottom:333.210000px;}
.y15e{bottom:334.110000px;}
.y38{bottom:337.215000px;}
.y11{bottom:338.250000px;}
.y130{bottom:339.330000px;}
.ycb{bottom:341.850000px;}
.yb4{bottom:343.470000px;}
.y1a{bottom:344.415000px;}
.y17c{bottom:349.230000px;}
.y1ae{bottom:350.670000px;}
.y37{bottom:351.075000px;}
.ya7{bottom:352.470000px;}
.y80{bottom:354.450000px;}
.yfb{bottom:355.530000px;}
.y12f{bottom:359.130000px;}
.y15c{bottom:361.830000px;}
.yb3{bottom:363.450000px;}
.yca{bottom:364.170000px;}
.y19{bottom:364.215000px;}
.y36{bottom:364.935000px;}
.y17b{bottom:369.210000px;}
.y1ad{bottom:370.470000px;}
.ya6{bottom:372.450000px;}
.y7f{bottom:374.250000px;}
.yfa{bottom:378.570000px;}
.y35{bottom:378.615000px;}
.y12e{bottom:378.930000px;}
.yb2{bottom:383.250000px;}
.y18{bottom:384.015000px;}
.yc9{bottom:386.670000px;}
.y17a{bottom:389.010000px;}
.y15a{bottom:390.450000px;}
.ya5{bottom:392.250000px;}
.y34{bottom:392.475000px;}
.y7e{bottom:394.050000px;}
.y196{bottom:403.095000px;}
.y17{bottom:403.815000px;}
.y33{bottom:406.335000px;}
.y12d{bottom:407.775000px;}
.yf9{bottom:408.315000px;}
.y179{bottom:408.855000px;}
.yc7{bottom:409.035000px;}
.y1ac{bottom:410.295000px;}
.ya4{bottom:412.095000px;}
.y7d{bottom:413.895000px;}
.y32{bottom:420.015000px;}
.y195{bottom:422.895000px;}
.y16{bottom:423.795000px;}
.y159{bottom:424.695000px;}
.y12c{bottom:427.575000px;}
.yf8{bottom:428.115000px;}
.y178{bottom:428.655000px;}
.y1ab{bottom:430.095000px;}
.yc6{bottom:431.535000px;}
.ya3{bottom:431.895000px;}
.y7c{bottom:433.695000px;}
.y31{bottom:433.875000px;}
.y194{bottom:442.695000px;}
.y15{bottom:443.595000px;}
.y158{bottom:444.675000px;}
.y12b{bottom:447.555000px;}
.y30{bottom:447.735000px;}
.yf7{bottom:448.095000px;}
.y1aa{bottom:449.895000px;}
.ya2{bottom:451.695000px;}
.yc5{bottom:453.855000px;}
.y177{bottom:457.455000px;}
.y2f{bottom:461.415000px;}
.y7b{bottom:462.675000px;}
.y14{bottom:463.395000px;}
.y157{bottom:464.475000px;}
.y12a{bottom:467.355000px;}
.yf6{bottom:467.895000px;}
.y1a9{bottom:469.695000px;}
.ya1{bottom:471.675000px;}
.y2e{bottom:475.275000px;}
.yc4{bottom:476.355000px;}
.y176{bottom:477.435000px;}
.y7a{bottom:482.475000px;}
.y13{bottom:483.195000px;}
.y156{bottom:484.275000px;}
.yf5{bottom:485.175000px;}
.y129{bottom:487.155000px;}
.y1a8{bottom:489.675000px;}
.y2d{bottom:489.855000px;}
.ya0{bottom:491.475000px;}
.y175{bottom:497.235000px;}
.yc2{bottom:498.855000px;}
.y79{bottom:502.275000px;}
.y155{bottom:504.075000px;}
.y12{bottom:504.255000px;}
.yf4{bottom:504.975000px;}
.y128{bottom:506.955000px;}
.y2c{bottom:507.135000px;}
.y1a7{bottom:509.475000px;}
.y9f{bottom:511.275000px;}
.y174{bottom:517.035000px;}
.yf3{bottom:519.735000px;}
.yc0{bottom:521.895000px;}
.y78{bottom:522.075000px;}
.y154{bottom:523.875000px;}
.y127{bottom:526.755000px;}
.y1a6{bottom:529.275000px;}
.y9e{bottom:531.075000px;}
.y173{bottom:536.835000px;}
.yf2{bottom:539.715000px;}
.y77{bottom:541.875000px;}
.y1a5{bottom:549.075000px;}
.y9d{bottom:550.875000px;}
.y153{bottom:552.855000px;}
.y126{bottom:555.735000px;}
.y172{bottom:556.635000px;}
.yf1{bottom:559.695000px;}
.y193{bottom:561.855000px;}
.y1a4{bottom:568.875000px;}
.y76{bottom:570.855000px;}
.y152{bottom:572.655000px;}
.y125{bottom:575.535000px;}
.y171{bottom:576.615000px;}
.y9c{bottom:579.855000px;}
.yef{bottom:580.395000px;}
.y192{bottom:581.655000px;}
.y1a3{bottom:588.855000px;}
.y75{bottom:590.655000px;}
.y151{bottom:592.455000px;}
.y124{bottom:595.335000px;}
.y170{bottom:596.415000px;}
.y9b{bottom:599.655000px;}
.y191{bottom:601.455000px;}
.yee{bottom:606.855000px;}
.y1a2{bottom:608.655000px;}
.y74{bottom:610.455000px;}
.y16f{bottom:611.175000px;}
.y150{bottom:612.255000px;}
.y123{bottom:615.135000px;}
.y9a{bottom:619.455000px;}
.y190{bottom:621.255000px;}
.yed{bottom:626.655000px;}
.y1a1{bottom:628.455000px;}
.y73{bottom:630.255000px;}
.y14f{bottom:632.055000px;}
.y16e{bottom:634.395000px;}
.y122{bottom:634.935000px;}
.y99{bottom:639.255000px;}
.y18f{bottom:641.055000px;}
.yec{bottom:646.455000px;}
.y1a0{bottom:648.255000px;}
.ybf{bottom:650.085000px;}
.y14e{bottom:652.065000px;}
.y121{bottom:654.945000px;}
.y16c{bottom:657.645000px;}
.y72{bottom:659.085000px;}
.y18e{bottom:661.065000px;}
.yeb{bottom:666.285000px;}
.y19f{bottom:668.085000px;}
.ybe{bottom:670.065000px;}
.y14d{bottom:671.865000px;}
.y71{bottom:679.065000px;}
.y18d{bottom:680.865000px;}
.y16a{bottom:681.765000px;}
.y120{bottom:683.745000px;}
.yea{bottom:686.265000px;}
.y19e{bottom:688.065000px;}
.ybd{bottom:689.865000px;}
.y14c{bottom:691.665000px;}
.y70{bottom:698.865000px;}
.y18c{bottom:700.665000px;}
.y11f{bottom:703.545000px;}
.ye9{bottom:706.065000px;}
.y19d{bottom:707.865000px;}
.ybc{bottom:709.665000px;}
.y14b{bottom:711.465000px;}
.y6f{bottom:718.665000px;}
.y18b{bottom:720.465000px;}
.y11e{bottom:723.345000px;}
.ye8{bottom:725.865000px;}
.y19c{bottom:727.665000px;}
.ybb{bottom:729.465000px;}
.y14a{bottom:731.265000px;}
.y6e{bottom:738.465000px;}
.y18a{bottom:740.265000px;}
.y11d{bottom:743.145000px;}
.ye7{bottom:745.665000px;}
.y19b{bottom:747.465000px;}
.yba{bottom:749.265000px;}
.y169{bottom:751.245000px;}
.y6d{bottom:758.265000px;}
.y149{bottom:760.245000px;}
.y11c{bottom:763.125000px;}
.ye6{bottom:765.465000px;}
.y19a{bottom:767.265000px;}
.y168{bottom:771.045000px;}
.y6c{bottom:778.245000px;}
.y148{bottom:780.045000px;}
.y11b{bottom:782.925000px;}
.ye5{bottom:785.445000px;}
.y199{bottom:787.245000px;}
.y6b{bottom:798.045000px;}
.y147{bottom:799.845000px;}
.y11a{bottom:802.725000px;}
.ye4{bottom:805.245000px;}
.y198{bottom:807.045000px;}
.y6a{bottom:817.845000px;}
.y146{bottom:819.645000px;}
.ye3{bottom:820.005000px;}
.y119{bottom:822.525000px;}
.y98{bottom:826.845000px;}
.y69{bottom:837.645000px;}
.y145{bottom:839.445000px;}
.y118{bottom:842.325000px;}
.y97{bottom:846.645000px;}
.ye2{bottom:848.085000px;}
.y68{bottom:857.445000px;}
.y144{bottom:859.245000px;}
.y117{bottom:862.305000px;}
.y10{bottom:865.905000px;}
.y96{bottom:866.445000px;}
.y189{bottom:868.245000px;}
.ye1{bottom:876.885000px;}
.y67{bottom:877.245000px;}
.y116{bottom:882.105000px;}
.y95{bottom:886.245000px;}
.y143{bottom:888.225000px;}
.yf{bottom:890.925000px;}
.y66{bottom:897.225000px;}
.y115{bottom:901.950000px;}
.ye0{bottom:905.910000px;}
.y94{bottom:906.270000px;}
.y142{bottom:908.070000px;}
.ye{bottom:910.770000px;}
.y114{bottom:916.710000px;}
.y65{bottom:917.070000px;}
.yd{bottom:925.890000px;}
.y93{bottom:926.070000px;}
.y141{bottom:927.870000px;}
.yde{bottom:934.710000px;}
.y64{bottom:936.870000px;}
.y113{bottom:940.290000px;}
.y92{bottom:945.870000px;}
.yc{bottom:947.310000px;}
.y140{bottom:947.670000px;}
.y63{bottom:956.670000px;}
.ydc{bottom:963.510000px;}
.y112{bottom:964.050000px;}
.y91{bottom:965.670000px;}
.y13f{bottom:967.470000px;}
.yb{bottom:970.710000px;}
.y62{bottom:976.470000px;}
.y90{bottom:985.470000px;}
.y13e{bottom:987.450000px;}
.y111{bottom:987.630000px;}
.yda{bottom:992.310000px;}
.y61{bottom:996.450000px;}
.ya{bottom:1002.390000px;}
.y8f{bottom:1005.450000px;}
.y110{bottom:1011.210000px;}
.y60{bottom:1016.250000px;}
.y8e{bottom:1025.250000px;}
.yd9{bottom:1027.770000px;}
.y8{bottom:1028.670000px;}
.y10f{bottom:1034.790000px;}
.yb9{bottom:1036.050000px;}
.y5f{bottom:1045.050000px;}
.y1{bottom:1046.130000px;}
.yb8{bottom:1055.850000px;}
.y10e{bottom:1058.550000px;}
.y5e{bottom:1064.850000px;}
.yb7{bottom:1075.650000px;}
.y10d{bottom:1082.130000px;}
.y5d{bottom:1084.650000px;}
.yb6{bottom:1095.630000px;}
.y5c{bottom:1104.630000px;}
.y10c{bottom:1105.710000px;}
.yb5{bottom:1115.430000px;}
.y5b{bottom:1124.430000px;}
.y10b{bottom:1129.290000px;}
.y5a{bottom:1144.230000px;}
.y10a{bottom:1153.800000px;}
.y59{bottom:1164.060000px;}
.y58{bottom:1192.140000px;}
.h5{height:2.010938px;}
.h1a{height:19.800000px;}
.h1b{height:19.980000px;}
.h21{height:20.160000px;}
.h22{height:20.340000px;}
.h14{height:22.320000px;}
.h15{height:22.356000px;}
.h13{height:22.500000px;}
.h1c{height:22.536000px;}
.h26{height:23.220000px;}
.h27{height:23.256000px;}
.h1d{height:23.580000px;}
.h1f{height:23.760000px;}
.h1e{height:23.796000px;}
.hb{height:27.147656px;}
.h25{height:27.720000px;}
.h23{height:27.756000px;}
.h24{height:27.900000px;}
.h17{height:28.080000px;}
.h18{height:28.800000px;}
.h16{height:28.980000px;}
.h19{height:29.016000px;}
.h28{height:30.600000px;}
.hf{height:34.036523px;}
.h20{height:40.472227px;}
.he{height:41.726953px;}
.h9{height:42.164648px;}
.h11{height:43.506914px;}
.h7{height:46.251562px;}
.h10{height:48.127500px;}
.h4{height:48.774375px;}
.h12{height:49.255313px;}
.h6{height:50.273438px;}
.hd{height:50.800781px;}
.ha{height:53.224453px;}
.h3{height:57.256875px;}
.h8{height:67.565039px;}
.h2{height:162.750000px;}
.hc{height:520.995000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:77.436000px;}
.wf{width:82.080000px;}
.w10{width:82.260000px;}
.w12{width:88.380000px;}
.w28{width:102.636000px;}
.w11{width:104.256000px;}
.w2b{width:109.800000px;}
.w16{width:115.956000px;}
.wb{width:116.136000px;}
.w22{width:116.640000px;}
.w21{width:116.676000px;}
.w27{width:117.180000px;}
.w26{width:122.040000px;}
.w24{width:122.076000px;}
.w23{width:122.220000px;}
.w18{width:127.656000px;}
.w2a{width:128.016000px;}
.w14{width:133.056000px;}
.w25{width:134.856000px;}
.w17{width:138.276000px;}
.w1f{width:138.636000px;}
.w3{width:147.456000px;}
.w15{width:149.940000px;}
.w1d{width:153.210000px;}
.w1e{width:155.550000px;}
.wa{width:161.490000px;}
.w1a{width:170.100000px;}
.w29{width:171.570000px;}
.w20{width:179.850000px;}
.w9{width:201.090000px;}
.we{width:212.295000px;}
.w1b{width:212.655000px;}
.w6{width:215.535000px;}
.wd{width:216.435000px;}
.w8{width:262.695000px;}
.w1c{width:263.730000px;}
.wc{width:282.270000px;}
.w7{width:321.375000px;}
.w19{width:404.175000px;}
.w5{width:563.685000px;}
.w2{width:633.930000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:54.000000px;}
.x6{left:56.880000px;}
.xc{left:58.320000px;}
.x9{left:80.999987px;}
.x16{left:95.616000px;}
.x2c{left:108.035987px;}
.x27{left:131.976000px;}
.x22{left:134.856000px;}
.x4{left:139.350000px;}
.x1d{left:192.630000px;}
.xd{left:219.810000px;}
.x17{left:245.550000px;}
.x28{left:249.150000px;}
.x23{left:257.070000px;}
.x10{left:266.295000px;}
.x8{left:333.794987px;}
.xe{left:335.955000px;}
.x11{left:348.375000px;}
.x29{left:351.795000px;}
.x18{left:361.515000px;}
.x1e{left:372.495000px;}
.xa{left:375.375000px;}
.x24{left:379.155000px;}
.x5{left:393.014987px;}
.x12{left:430.635000px;}
.x1f{left:489.165000px;}
.x19{left:499.785000px;}
.x25{left:514.005000px;}
.x2a{left:523.365000px;}
.x1b{left:530.385000px;}
.x13{left:534.885000px;}
.x20{left:605.805000px;}
.xf{left:618.225000px;}
.x7{left:620.565000px;}
.x14{left:623.265000px;}
.x1a{left:627.450000px;}
.x26{left:636.090000px;}
.xb{left:638.070000px;}
.x2b{left:651.390000px;}
.x1c{left:683.610000px;}
.x3{left:687.930000px;}
.x15{left:700.710000px;}
.x21{left:722.490000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.821333pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.303467pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.007680pt;}
.ls16{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.426667pt;}
.ls17{letter-spacing:0.800000pt;}
.ls15{letter-spacing:14.672640pt;}
.ls9{letter-spacing:40.912640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws3{word-spacing:-20.976533pt;}
.ws0{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.049067pt;}
.wsb{word-spacing:-12.960000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.960000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-410.549760pt;}
._d{margin-left:-3.293013pt;}
._6{margin-left:-2.231253pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.029120pt;}
._1{width:2.622293pt;}
._16{width:3.522133pt;}
._4{width:4.511360pt;}
._5{width:5.666987pt;}
._9{width:6.670293pt;}
._c{width:7.684480pt;}
._b{width:9.083520pt;}
._11{width:10.179200pt;}
._13{width:11.082240pt;}
._12{width:12.217600pt;}
._1b{width:14.354560pt;}
._20{width:15.464320pt;}
._f{width:16.414080pt;}
._e{width:17.317120pt;}
._1f{width:18.296107pt;}
._10{width:19.687680pt;}
._8{width:20.876160pt;}
._7{width:21.991680pt;}
._a{width:22.947840pt;}
._18{width:25.232000pt;}
._1e{width:34.705067pt;}
._1c{width:35.662080pt;}
._1d{width:36.651947pt;}
._1a{width:40.994560pt;}
._19{width:42.549120pt;}
._14{width:83.079680pt;}
._17{width:87.904640pt;}
._15{width:133.384320pt;}
.fs2{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:4.640000pt;}
.yf0{bottom:5.120000pt;}
.y106{bottom:5.146667pt;}
.y4b{bottom:5.280000pt;}
.y132{bottom:5.440000pt;}
.y135{bottom:5.600000pt;}
.y2b{bottom:6.240000pt;}
.y105{bottom:6.266667pt;}
.yc1{bottom:6.400000pt;}
.y16b{bottom:6.560000pt;}
.y16d{bottom:6.720000pt;}
.yc3{bottom:7.360000pt;}
.yd1{bottom:7.520000pt;}
.y15b{bottom:8.640000pt;}
.y15d{bottom:8.800000pt;}
.ycf{bottom:9.920000pt;}
.yc8{bottom:10.080000pt;}
.ydd{bottom:12.480000pt;}
.y6{bottom:12.640000pt;}
.ydf{bottom:13.120000pt;}
.ydb{bottom:13.280000pt;}
.y4a{bottom:22.880000pt;}
.y2a{bottom:24.000000pt;}
.y49{bottom:40.480000pt;}
.y5{bottom:40.640000pt;}
.y29{bottom:41.600000pt;}
.y9{bottom:53.440000pt;}
.y48{bottom:58.120000pt;}
.y28{bottom:59.240000pt;}
.y4{bottom:68.800000pt;}
.y47{bottom:73.480000pt;}
.y109{bottom:73.600000pt;}
.y8d{bottom:74.400000pt;}
.y197{bottom:76.160000pt;}
.y188{bottom:76.640000pt;}
.y27{bottom:76.840000pt;}
.yd8{bottom:78.240000pt;}
.y1bb{bottom:82.560000pt;}
.y13d{bottom:86.080000pt;}
.y167{bottom:86.560000pt;}
.y46{bottom:88.840000pt;}
.y8c{bottom:92.000000pt;}
.y57{bottom:93.600000pt;}
.yb1{bottom:93.760000pt;}
.y108{bottom:94.080000pt;}
.y187{bottom:94.240000pt;}
.y26{bottom:94.440000pt;}
.yd7{bottom:95.840000pt;}
.y3{bottom:96.986667pt;}
.y166{bottom:99.680000pt;}
.y1ba{bottom:100.160000pt;}
.y13c{bottom:103.680000pt;}
.y45{bottom:104.200000pt;}
.y8b{bottom:109.600000pt;}
.y56{bottom:111.200000pt;}
.yb0{bottom:111.360000pt;}
.y186{bottom:111.840000pt;}
.y25{bottom:112.200000pt;}
.yd6{bottom:113.600000pt;}
.y107{bottom:114.720000pt;}
.y1b9{bottom:117.760000pt;}
.y44{bottom:119.560000pt;}
.y13b{bottom:121.440000pt;}
.y165{bottom:124.320000pt;}
.y2{bottom:126.426667pt;}
.y8a{bottom:127.200000pt;}
.y55{bottom:128.960000pt;}
.y24{bottom:129.800000pt;}
.yd5{bottom:131.200000pt;}
.y104{bottom:134.560000pt;}
.y43{bottom:134.920000pt;}
.y1b8{bottom:135.386667pt;}
.y13a{bottom:139.066667pt;}
.y185{bottom:140.186667pt;}
.yd4{bottom:144.346667pt;}
.y89{bottom:144.826667pt;}
.y54{bottom:146.586667pt;}
.yaf{bottom:146.746667pt;}
.y23{bottom:147.400000pt;}
.y164{bottom:148.986667pt;}
.y42{bottom:150.120000pt;}
.y1b7{bottom:152.986667pt;}
.y184{bottom:153.306667pt;}
.y103{bottom:154.426667pt;}
.y139{bottom:156.666667pt;}
.y88{bottom:162.586667pt;}
.y53{bottom:164.186667pt;}
.yae{bottom:164.346667pt;}
.y22{bottom:165.000000pt;}
.y41{bottom:165.480000pt;}
.y1b6{bottom:170.746667pt;}
.y183{bottom:171.066667pt;}
.y163{bottom:173.626667pt;}
.y138{bottom:174.266667pt;}
.y102{bottom:174.906667pt;}
.y87{bottom:180.186667pt;}
.y40{bottom:180.840000pt;}
.y52{bottom:181.786667pt;}
.yad{bottom:181.946667pt;}
.y21{bottom:182.600000pt;}
.yd3{bottom:184.186667pt;}
.y137{bottom:187.386667pt;}
.y1b5{bottom:188.346667pt;}
.y101{bottom:195.546667pt;}
.y3f{bottom:196.200000pt;}
.y86{bottom:197.786667pt;}
.y182{bottom:198.266667pt;}
.y162{bottom:198.426667pt;}
.y51{bottom:199.386667pt;}
.yac{bottom:199.546667pt;}
.y20{bottom:200.360000pt;}
.yd2{bottom:204.186667pt;}
.y136{bottom:205.466667pt;}
.y1b4{bottom:205.946667pt;}
.y3e{bottom:211.560000pt;}
.y85{bottom:213.146667pt;}
.y100{bottom:215.386667pt;}
.y181{bottom:215.866667pt;}
.y50{bottom:217.146667pt;}
.y1f{bottom:217.960000pt;}
.y161{bottom:223.066667pt;}
.y134{bottom:223.386667pt;}
.y1b3{bottom:223.546667pt;}
.yd0{bottom:224.026667pt;}
.y3d{bottom:226.920000pt;}
.y180{bottom:234.106667pt;}
.y4f{bottom:234.746667pt;}
.yab{bottom:234.906667pt;}
.yff{bottom:235.226667pt;}
.y1e{bottom:235.560000pt;}
.y84{bottom:238.746667pt;}
.y1b2{bottom:241.146667pt;}
.y133{bottom:241.466667pt;}
.y3c{bottom:242.120000pt;}
.yce{bottom:244.026667pt;}
.y160{bottom:247.706667pt;}
.y4e{bottom:252.346667pt;}
.yaa{bottom:252.506667pt;}
.y1d{bottom:253.160000pt;}
.yfe{bottom:255.706667pt;}
.y83{bottom:256.346667pt;}
.y3b{bottom:257.480000pt;}
.y17f{bottom:257.626667pt;}
.y1b1{bottom:258.906667pt;}
.y131{bottom:260.186667pt;}
.ycd{bottom:263.866667pt;}
.y4d{bottom:269.946667pt;}
.ya9{bottom:270.106667pt;}
.y1c{bottom:270.760000pt;}
.y15f{bottom:272.346667pt;}
.y3a{bottom:272.840000pt;}
.y82{bottom:274.106667pt;}
.y17e{bottom:275.226667pt;}
.yfd{bottom:276.346667pt;}
.y1b0{bottom:276.506667pt;}
.ycc{bottom:283.866667pt;}
.y4c{bottom:287.546667pt;}
.y39{bottom:287.586667pt;}
.ya8{bottom:287.706667pt;}
.y1b{bottom:288.546667pt;}
.y81{bottom:289.466667pt;}
.y17d{bottom:292.826667pt;}
.y1af{bottom:294.106667pt;}
.yfc{bottom:296.186667pt;}
.y15e{bottom:296.986667pt;}
.y38{bottom:299.746667pt;}
.y11{bottom:300.666667pt;}
.y130{bottom:301.626667pt;}
.ycb{bottom:303.866667pt;}
.yb4{bottom:305.306667pt;}
.y1a{bottom:306.146667pt;}
.y17c{bottom:310.426667pt;}
.y1ae{bottom:311.706667pt;}
.y37{bottom:312.066667pt;}
.ya7{bottom:313.306667pt;}
.y80{bottom:315.066667pt;}
.yfb{bottom:316.026667pt;}
.y12f{bottom:319.226667pt;}
.y15c{bottom:321.626667pt;}
.yb3{bottom:323.066667pt;}
.yca{bottom:323.706667pt;}
.y19{bottom:323.746667pt;}
.y36{bottom:324.386667pt;}
.y17b{bottom:328.186667pt;}
.y1ad{bottom:329.306667pt;}
.ya6{bottom:331.066667pt;}
.y7f{bottom:332.666667pt;}
.yfa{bottom:336.506667pt;}
.y35{bottom:336.546667pt;}
.y12e{bottom:336.826667pt;}
.yb2{bottom:340.666667pt;}
.y18{bottom:341.346667pt;}
.yc9{bottom:343.706667pt;}
.y17a{bottom:345.786667pt;}
.y15a{bottom:347.066667pt;}
.ya5{bottom:348.666667pt;}
.y34{bottom:348.866667pt;}
.y7e{bottom:350.266667pt;}
.y196{bottom:358.306667pt;}
.y17{bottom:358.946667pt;}
.y33{bottom:361.186667pt;}
.y12d{bottom:362.466667pt;}
.yf9{bottom:362.946667pt;}
.y179{bottom:363.426667pt;}
.yc7{bottom:363.586667pt;}
.y1ac{bottom:364.706667pt;}
.ya4{bottom:366.306667pt;}
.y7d{bottom:367.906667pt;}
.y32{bottom:373.346667pt;}
.y195{bottom:375.906667pt;}
.y16{bottom:376.706667pt;}
.y159{bottom:377.506667pt;}
.y12c{bottom:380.066667pt;}
.yf8{bottom:380.546667pt;}
.y178{bottom:381.026667pt;}
.y1ab{bottom:382.306667pt;}
.yc6{bottom:383.586667pt;}
.ya3{bottom:383.906667pt;}
.y7c{bottom:385.506667pt;}
.y31{bottom:385.666667pt;}
.y194{bottom:393.506667pt;}
.y15{bottom:394.306667pt;}
.y158{bottom:395.266667pt;}
.y12b{bottom:397.826667pt;}
.y30{bottom:397.986667pt;}
.yf7{bottom:398.306667pt;}
.y1aa{bottom:399.906667pt;}
.ya2{bottom:401.506667pt;}
.yc5{bottom:403.426667pt;}
.y177{bottom:406.626667pt;}
.y2f{bottom:410.146667pt;}
.y7b{bottom:411.266667pt;}
.y14{bottom:411.906667pt;}
.y157{bottom:412.866667pt;}
.y12a{bottom:415.426667pt;}
.yf6{bottom:415.906667pt;}
.y1a9{bottom:417.506667pt;}
.ya1{bottom:419.266667pt;}
.y2e{bottom:422.466667pt;}
.yc4{bottom:423.426667pt;}
.y176{bottom:424.386667pt;}
.y7a{bottom:428.866667pt;}
.y13{bottom:429.506667pt;}
.y156{bottom:430.466667pt;}
.yf5{bottom:431.266667pt;}
.y129{bottom:433.026667pt;}
.y1a8{bottom:435.266667pt;}
.y2d{bottom:435.426667pt;}
.ya0{bottom:436.866667pt;}
.y175{bottom:441.986667pt;}
.yc2{bottom:443.426667pt;}
.y79{bottom:446.466667pt;}
.y155{bottom:448.066667pt;}
.y12{bottom:448.226667pt;}
.yf4{bottom:448.866667pt;}
.y128{bottom:450.626667pt;}
.y2c{bottom:450.786667pt;}
.y1a7{bottom:452.866667pt;}
.y9f{bottom:454.466667pt;}
.y174{bottom:459.586667pt;}
.yf3{bottom:461.986667pt;}
.yc0{bottom:463.906667pt;}
.y78{bottom:464.066667pt;}
.y154{bottom:465.666667pt;}
.y127{bottom:468.226667pt;}
.y1a6{bottom:470.466667pt;}
.y9e{bottom:472.066667pt;}
.y173{bottom:477.186667pt;}
.yf2{bottom:479.746667pt;}
.y77{bottom:481.666667pt;}
.y1a5{bottom:488.066667pt;}
.y9d{bottom:489.666667pt;}
.y153{bottom:491.426667pt;}
.y126{bottom:493.986667pt;}
.y172{bottom:494.786667pt;}
.yf1{bottom:497.506667pt;}
.y193{bottom:499.426667pt;}
.y1a4{bottom:505.666667pt;}
.y76{bottom:507.426667pt;}
.y152{bottom:509.026667pt;}
.y125{bottom:511.586667pt;}
.y171{bottom:512.546667pt;}
.y9c{bottom:515.426667pt;}
.yef{bottom:515.906667pt;}
.y192{bottom:517.026667pt;}
.y1a3{bottom:523.426667pt;}
.y75{bottom:525.026667pt;}
.y151{bottom:526.626667pt;}
.y124{bottom:529.186667pt;}
.y170{bottom:530.146667pt;}
.y9b{bottom:533.026667pt;}
.y191{bottom:534.626667pt;}
.yee{bottom:539.426667pt;}
.y1a2{bottom:541.026667pt;}
.y74{bottom:542.626667pt;}
.y16f{bottom:543.266667pt;}
.y150{bottom:544.226667pt;}
.y123{bottom:546.786667pt;}
.y9a{bottom:550.626667pt;}
.y190{bottom:552.226667pt;}
.yed{bottom:557.026667pt;}
.y1a1{bottom:558.626667pt;}
.y73{bottom:560.226667pt;}
.y14f{bottom:561.826667pt;}
.y16e{bottom:563.906667pt;}
.y122{bottom:564.386667pt;}
.y99{bottom:568.226667pt;}
.y18f{bottom:569.826667pt;}
.yec{bottom:574.626667pt;}
.y1a0{bottom:576.226667pt;}
.ybf{bottom:577.853333pt;}
.y14e{bottom:579.613333pt;}
.y121{bottom:582.173333pt;}
.y16c{bottom:584.573333pt;}
.y72{bottom:585.853333pt;}
.y18e{bottom:587.613333pt;}
.yeb{bottom:592.253333pt;}
.y19f{bottom:593.853333pt;}
.ybe{bottom:595.613333pt;}
.y14d{bottom:597.213333pt;}
.y71{bottom:603.613333pt;}
.y18d{bottom:605.213333pt;}
.y16a{bottom:606.013333pt;}
.y120{bottom:607.773333pt;}
.yea{bottom:610.013333pt;}
.y19e{bottom:611.613333pt;}
.ybd{bottom:613.213333pt;}
.y14c{bottom:614.813333pt;}
.y70{bottom:621.213333pt;}
.y18c{bottom:622.813333pt;}
.y11f{bottom:625.373333pt;}
.ye9{bottom:627.613333pt;}
.y19d{bottom:629.213333pt;}
.ybc{bottom:630.813333pt;}
.y14b{bottom:632.413333pt;}
.y6f{bottom:638.813333pt;}
.y18b{bottom:640.413333pt;}
.y11e{bottom:642.973333pt;}
.ye8{bottom:645.213333pt;}
.y19c{bottom:646.813333pt;}
.ybb{bottom:648.413333pt;}
.y14a{bottom:650.013333pt;}
.y6e{bottom:656.413333pt;}
.y18a{bottom:658.013333pt;}
.y11d{bottom:660.573333pt;}
.ye7{bottom:662.813333pt;}
.y19b{bottom:664.413333pt;}
.yba{bottom:666.013333pt;}
.y169{bottom:667.773333pt;}
.y6d{bottom:674.013333pt;}
.y149{bottom:675.773333pt;}
.y11c{bottom:678.333333pt;}
.ye6{bottom:680.413333pt;}
.y19a{bottom:682.013333pt;}
.y168{bottom:685.373333pt;}
.y6c{bottom:691.773333pt;}
.y148{bottom:693.373333pt;}
.y11b{bottom:695.933333pt;}
.ye5{bottom:698.173333pt;}
.y199{bottom:699.773333pt;}
.y6b{bottom:709.373333pt;}
.y147{bottom:710.973333pt;}
.y11a{bottom:713.533333pt;}
.ye4{bottom:715.773333pt;}
.y198{bottom:717.373333pt;}
.y6a{bottom:726.973333pt;}
.y146{bottom:728.573333pt;}
.ye3{bottom:728.893333pt;}
.y119{bottom:731.133333pt;}
.y98{bottom:734.973333pt;}
.y69{bottom:744.573333pt;}
.y145{bottom:746.173333pt;}
.y118{bottom:748.733333pt;}
.y97{bottom:752.573333pt;}
.ye2{bottom:753.853333pt;}
.y68{bottom:762.173333pt;}
.y144{bottom:763.773333pt;}
.y117{bottom:766.493333pt;}
.y10{bottom:769.693333pt;}
.y96{bottom:770.173333pt;}
.y189{bottom:771.773333pt;}
.ye1{bottom:779.453333pt;}
.y67{bottom:779.773333pt;}
.y116{bottom:784.093333pt;}
.y95{bottom:787.773333pt;}
.y143{bottom:789.533333pt;}
.yf{bottom:791.933333pt;}
.y66{bottom:797.533333pt;}
.y115{bottom:801.733333pt;}
.ye0{bottom:805.253333pt;}
.y94{bottom:805.573333pt;}
.y142{bottom:807.173333pt;}
.ye{bottom:809.573333pt;}
.y114{bottom:814.853333pt;}
.y65{bottom:815.173333pt;}
.yd{bottom:823.013333pt;}
.y93{bottom:823.173333pt;}
.y141{bottom:824.773333pt;}
.yde{bottom:830.853333pt;}
.y64{bottom:832.773333pt;}
.y113{bottom:835.813333pt;}
.y92{bottom:840.773333pt;}
.yc{bottom:842.053333pt;}
.y140{bottom:842.373333pt;}
.y63{bottom:850.373333pt;}
.ydc{bottom:856.453333pt;}
.y112{bottom:856.933333pt;}
.y91{bottom:858.373333pt;}
.y13f{bottom:859.973333pt;}
.yb{bottom:862.853333pt;}
.y62{bottom:867.973333pt;}
.y90{bottom:875.973333pt;}
.y13e{bottom:877.733333pt;}
.y111{bottom:877.893333pt;}
.yda{bottom:882.053333pt;}
.y61{bottom:885.733333pt;}
.ya{bottom:891.013333pt;}
.y8f{bottom:893.733333pt;}
.y110{bottom:898.853333pt;}
.y60{bottom:903.333333pt;}
.y8e{bottom:911.333333pt;}
.yd9{bottom:913.573333pt;}
.y8{bottom:914.373333pt;}
.y10f{bottom:919.813333pt;}
.yb9{bottom:920.933333pt;}
.y5f{bottom:928.933333pt;}
.y1{bottom:929.893333pt;}
.yb8{bottom:938.533333pt;}
.y10e{bottom:940.933333pt;}
.y5e{bottom:946.533333pt;}
.yb7{bottom:956.133333pt;}
.y10d{bottom:961.893333pt;}
.y5d{bottom:964.133333pt;}
.yb6{bottom:973.893333pt;}
.y5c{bottom:981.893333pt;}
.y10c{bottom:982.853333pt;}
.yb5{bottom:991.493333pt;}
.y5b{bottom:999.493333pt;}
.y10b{bottom:1003.813333pt;}
.y5a{bottom:1017.093333pt;}
.y10a{bottom:1025.600000pt;}
.y59{bottom:1034.720000pt;}
.y58{bottom:1059.680000pt;}
.h5{height:1.787500pt;}
.h1a{height:17.600000pt;}
.h1b{height:17.760000pt;}
.h21{height:17.920000pt;}
.h22{height:18.080000pt;}
.h14{height:19.840000pt;}
.h15{height:19.872000pt;}
.h13{height:20.000000pt;}
.h1c{height:20.032000pt;}
.h26{height:20.640000pt;}
.h27{height:20.672000pt;}
.h1d{height:20.960000pt;}
.h1f{height:21.120000pt;}
.h1e{height:21.152000pt;}
.hb{height:24.131250pt;}
.h25{height:24.640000pt;}
.h23{height:24.672000pt;}
.h24{height:24.800000pt;}
.h17{height:24.960000pt;}
.h18{height:25.600000pt;}
.h16{height:25.760000pt;}
.h19{height:25.792000pt;}
.h28{height:27.200000pt;}
.hf{height:30.254687pt;}
.h20{height:35.975313pt;}
.he{height:37.090625pt;}
.h9{height:37.479688pt;}
.h11{height:38.672812pt;}
.h7{height:41.112500pt;}
.h10{height:42.780000pt;}
.h4{height:43.355000pt;}
.h12{height:43.782500pt;}
.h6{height:44.687500pt;}
.hd{height:45.156250pt;}
.ha{height:47.310625pt;}
.h3{height:50.895000pt;}
.h8{height:60.057813pt;}
.h2{height:144.666667pt;}
.hc{height:463.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:68.832000pt;}
.wf{width:72.960000pt;}
.w10{width:73.120000pt;}
.w12{width:78.560000pt;}
.w28{width:91.232000pt;}
.w11{width:92.672000pt;}
.w2b{width:97.600000pt;}
.w16{width:103.072000pt;}
.wb{width:103.232000pt;}
.w22{width:103.680000pt;}
.w21{width:103.712000pt;}
.w27{width:104.160000pt;}
.w26{width:108.480000pt;}
.w24{width:108.512000pt;}
.w23{width:108.640000pt;}
.w18{width:113.472000pt;}
.w2a{width:113.792000pt;}
.w14{width:118.272000pt;}
.w25{width:119.872000pt;}
.w17{width:122.912000pt;}
.w1f{width:123.232000pt;}
.w3{width:131.072000pt;}
.w15{width:133.280000pt;}
.w1d{width:136.186667pt;}
.w1e{width:138.266667pt;}
.wa{width:143.546667pt;}
.w1a{width:151.200000pt;}
.w29{width:152.506667pt;}
.w20{width:159.866667pt;}
.w9{width:178.746667pt;}
.we{width:188.706667pt;}
.w1b{width:189.026667pt;}
.w6{width:191.586667pt;}
.wd{width:192.386667pt;}
.w8{width:233.506667pt;}
.w1c{width:234.426667pt;}
.wc{width:250.906667pt;}
.w7{width:285.666667pt;}
.w19{width:359.266667pt;}
.w5{width:501.053333pt;}
.w2{width:563.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:48.000000pt;}
.x6{left:50.560000pt;}
.xc{left:51.840000pt;}
.x9{left:71.999988pt;}
.x16{left:84.992000pt;}
.x2c{left:96.031988pt;}
.x27{left:117.312000pt;}
.x22{left:119.872000pt;}
.x4{left:123.866667pt;}
.x1d{left:171.226667pt;}
.xd{left:195.386667pt;}
.x17{left:218.266667pt;}
.x28{left:221.466667pt;}
.x23{left:228.506667pt;}
.x10{left:236.706667pt;}
.x8{left:296.706655pt;}
.xe{left:298.626667pt;}
.x11{left:309.666667pt;}
.x29{left:312.706667pt;}
.x18{left:321.346667pt;}
.x1e{left:331.106667pt;}
.xa{left:333.666667pt;}
.x24{left:337.026667pt;}
.x5{left:349.346655pt;}
.x12{left:382.786667pt;}
.x1f{left:434.813333pt;}
.x19{left:444.253333pt;}
.x25{left:456.893333pt;}
.x2a{left:465.213333pt;}
.x1b{left:471.453333pt;}
.x13{left:475.453333pt;}
.x20{left:538.493333pt;}
.xf{left:549.533333pt;}
.x7{left:551.613333pt;}
.x14{left:554.013333pt;}
.x1a{left:557.733333pt;}
.x26{left:565.413333pt;}
.xb{left:567.173333pt;}
.x2b{left:579.013333pt;}
.x1c{left:607.653333pt;}
.x3{left:611.493333pt;}
.x15{left:622.853333pt;}
.x21{left:642.213333pt;}
}




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