
    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_375259be6ba545132e2f6e55.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_6543726eb73bcf630c19522d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959473;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_fee7a128eb0b94133c006c4e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.959473;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_b6f4bac02b5fed23fafbdbee.woff')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8ad2de66a837a79c6c5c63e6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.927734;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_2672cede3d9e3974be3bc979.woff')format("woff");}.ff7{font-family:ff7;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d382e685bf72270bfaa8d823.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_0460f784197329d22ec429db.woff')format("woff");}.ff9{font-family:ff9;line-height:0.933594;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_ae3a4dce0f8c97b0fb51c399.woff')format("woff");}.ffa{font-family:ffa;line-height:0.927734;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls10{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.111000px;}
.ls7{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013440px;}
.ls11{letter-spacing:0.046080px;}
.ls1{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.174000px;}
.lsa{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.288000px;}
.ls4{letter-spacing:5.760000px;}
.ls13{letter-spacing:9.360000px;}
.lsc{letter-spacing:29.520000px;}
.ls2{letter-spacing:44.640000px;}
.ls8{letter-spacing:1322.250240px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.wsd{word-spacing:-18.288000px;}
.ws8{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.352000px;}
.ws5{word-spacing:-16.560000px;}
.wsc{word-spacing:-10.486080px;}
.wsb{word-spacing:-10.329000px;}
.ws7{word-spacing:0.000000px;}
._15{margin-left:-4.428000px;}
._0{margin-left:-2.700000px;}
._1{margin-left:-1.026000px;}
._2{width:1.038000px;}
._13{width:2.178000px;}
._7{width:3.249120px;}
._1c{width:4.346640px;}
._10{width:5.634000px;}
._f{width:6.912000px;}
._e{width:7.968000px;}
._d{width:9.000000px;}
._25{width:10.224000px;}
._33{width:11.232000px;}
._38{width:12.312000px;}
._1e{width:13.752000px;}
._17{width:14.760000px;}
._18{width:15.984000px;}
._28{width:16.992000px;}
._c{width:19.008000px;}
._b{width:20.016000px;}
._19{width:21.816000px;}
._12{width:23.112000px;}
._11{width:24.120000px;}
._1b{width:26.064000px;}
._1a{width:27.792000px;}
._4{width:29.754000px;}
._27{width:31.488000px;}
._26{width:32.778000px;}
._22{width:33.840000px;}
._21{width:35.136000px;}
._1d{width:36.720000px;}
._3c{width:37.872000px;}
._2f{width:38.952000px;}
._32{width:40.320000px;}
._2c{width:42.336000px;}
._3d{width:43.626000px;}
._14{width:44.688000px;}
._20{width:46.008000px;}
._1f{width:47.016000px;}
._34{width:48.384000px;}
._31{width:49.680000px;}
._36{width:51.282000px;}
._2a{width:52.560000px;}
._29{width:53.568000px;}
._49{width:55.314000px;}
._35{width:56.520000px;}
._41{width:57.600000px;}
._2b{width:58.896000px;}
._39{width:60.420000px;}
._4c{width:63.072000px;}
._43{width:64.080000px;}
._42{width:65.232000px;}
._3b{width:66.384000px;}
._24{width:67.896000px;}
._46{width:69.120000px;}
._a{width:71.208000px;}
._16{width:72.288000px;}
._40{width:73.296000px;}
._3a{width:74.808000px;}
._47{width:75.858000px;}
._4d{width:77.184000px;}
._58{width:78.624000px;}
._4f{width:81.000000px;}
._55{width:82.112160px;}
._52{width:83.940000px;}
._8{width:85.404000px;}
._45{width:89.064000px;}
._3{width:90.504000px;}
._54{width:91.512000px;}
._53{width:92.664000px;}
._51{width:94.680000px;}
._50{width:95.904000px;}
._4e{width:97.776000px;}
._3f{width:99.288000px;}
._37{width:101.160000px;}
._9{width:104.592000px;}
._3e{width:112.032000px;}
._48{width:120.126240px;}
._4a{width:121.464000px;}
._57{width:126.144000px;}
._44{width:144.720000px;}
._4b{width:145.950000px;}
._30{width:162.000000px;}
._5b{width:165.888000px;}
._23{width:180.120720px;}
._56{width:194.184000px;}
._2e{width:203.256000px;}
._2d{width:204.264000px;}
._59{width:225.072000px;}
._6{width:641.556000px;}
._5a{width:907.848000px;}
._5{width:1433.832000px;}
.fc8{color:rgb(5,99,193);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(19,20,74);}
.fc1{color:rgb(10,120,154);}
.fc7{color:rgb(128,128,128);}
.fc6{color:rgb(34,34,34);}
.fc4{color:rgb(53,53,53);}
.fc2{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y41{bottom:-5.400000px;}
.y0{bottom:0.000000px;}
.y6{bottom:57.600000px;}
.y3f{bottom:69.660000px;}
.y5{bottom:76.860000px;}
.y4{bottom:91.980000px;}
.y40{bottom:104.580000px;}
.y3{bottom:107.280000px;}
.y2{bottom:122.400000px;}
.y1{bottom:137.520000px;}
.y3e{bottom:148.500000px;}
.y3c{bottom:156.990000px;}
.y31{bottom:164.730000px;}
.y1e5{bottom:166.710000px;}
.y73{bottom:166.890000px;}
.y156{bottom:169.050000px;}
.y16d{bottom:171.390000px;}
.y1c5{bottom:172.470000px;}
.yb2{bottom:176.970000px;}
.y3b{bottom:177.150000px;}
.y80{bottom:178.050000px;}
.yfb{bottom:179.310000px;}
.yd9{bottom:180.390000px;}
.y149{bottom:181.470000px;}
.y18d{bottom:182.550000px;}
.y11d{bottom:184.890000px;}
.y30{bottom:185.070000px;}
.y72{bottom:187.050000px;}
.y155{bottom:189.390000px;}
.y199{bottom:191.550000px;}
.y1c4{bottom:192.810000px;}
.yb1{bottom:197.310000px;}
.y3a{bottom:197.490000px;}
.y7f{bottom:198.390000px;}
.yfa{bottom:199.470000px;}
.yd8{bottom:200.550000px;}
.y148{bottom:201.810000px;}
.y18c{bottom:202.890000px;}
.y11c{bottom:205.050000px;}
.y2f{bottom:205.230000px;}
.y71{bottom:207.390000px;}
.y154{bottom:209.550000px;}
.yb0{bottom:217.470000px;}
.y39{bottom:217.650000px;}
.y7e{bottom:218.550000px;}
.yf9{bottom:219.810000px;}
.y198{bottom:220.710000px;}
.yd7{bottom:220.890000px;}
.y1c3{bottom:221.970000px;}
.y197{bottom:223.050000px;}
.y2e{bottom:225.570000px;}
.y70{bottom:227.550000px;}
.y153{bottom:229.890000px;}
.y147{bottom:230.970000px;}
.y18b{bottom:232.050000px;}
.y11b{bottom:234.210000px;}
.y1e4{bottom:236.550000px;}
.yaf{bottom:237.810000px;}
.y38{bottom:237.990000px;}
.y1b8{bottom:238.710000px;}
.y7d{bottom:238.890000px;}
.yf8{bottom:239.970000px;}
.yd6{bottom:241.050000px;}
.y1c2{bottom:242.310000px;}
.y196{bottom:243.390000px;}
.y2d{bottom:245.730000px;}
.y6f{bottom:247.890000px;}
.y152{bottom:250.050000px;}
.y146{bottom:251.310000px;}
.y18a{bottom:252.390000px;}
.y11a{bottom:254.550000px;}
.y1e3{bottom:256.890000px;}
.y37{bottom:258.150000px;}
.y7c{bottom:259.050000px;}
.yf7{bottom:260.310000px;}
.yd5{bottom:261.390000px;}
.y1c1{bottom:262.470000px;}
.y2c{bottom:266.070000px;}
.yae{bottom:266.970000px;}
.y6e{bottom:268.050000px;}
.y151{bottom:270.390000px;}
.y145{bottom:271.470000px;}
.y189{bottom:272.550000px;}
.y119{bottom:274.890000px;}
.y1e2{bottom:277.050000px;}
.y36{bottom:278.490000px;}
.y7b{bottom:279.390000px;}
.yf6{bottom:280.470000px;}
.yd4{bottom:281.550000px;}
.y2b{bottom:286.230000px;}
.yad{bottom:287.310000px;}
.y6d{bottom:288.390000px;}
.y168{bottom:290.550000px;}
.y1c0{bottom:291.630000px;}
.y144{bottom:291.810000px;}
.y188{bottom:292.890000px;}
.y118{bottom:295.050000px;}
.y1e1{bottom:297.390000px;}
.y35{bottom:298.650000px;}
.y150{bottom:299.550000px;}
.yd3{bottom:301.890000px;}
.y2a{bottom:306.570000px;}
.yac{bottom:307.470000px;}
.y6c{bottom:308.550000px;}
.yf5{bottom:309.630000px;}
.y167{bottom:310.890000px;}
.y143{bottom:311.970000px;}
.y187{bottom:313.050000px;}
.y117{bottom:315.390000px;}
.y34{bottom:318.990000px;}
.y14f{bottom:319.890000px;}
.y16c{bottom:322.050000px;}
.y1e0{bottom:326.550000px;}
.y29{bottom:326.730000px;}
.yab{bottom:327.810000px;}
.y6b{bottom:328.890000px;}
.yf4{bottom:329.970000px;}
.yd2{bottom:331.050000px;}
.y142{bottom:332.310000px;}
.y186{bottom:333.390000px;}
.y116{bottom:335.550000px;}
.y33{bottom:339.150000px;}
.y14e{bottom:340.050000px;}
.y16b{bottom:342.390000px;}
.y1df{bottom:346.890000px;}
.yaa{bottom:347.970000px;}
.y6a{bottom:349.050000px;}
.yf3{bottom:350.310000px;}
.y166{bottom:351.390000px;}
.y141{bottom:352.470000px;}
.y185{bottom:353.550000px;}
.y115{bottom:355.890000px;}
.y28{bottom:356.790000px;}
.y32{bottom:359.490000px;}
.yd1{bottom:360.210000px;}
.y14d{bottom:360.390000px;}
.y193{bottom:362.550000px;}
.y1de{bottom:367.050000px;}
.ya9{bottom:368.310000px;}
.y69{bottom:369.390000px;}
.yf2{bottom:370.470000px;}
.y165{bottom:371.550000px;}
.y140{bottom:372.810000px;}
.y184{bottom:373.890000px;}
.yd0{bottom:380.550000px;}
.y1bf{bottom:381.630000px;}
.y192{bottom:382.890000px;}
.y114{bottom:385.050000px;}
.y1dd{bottom:387.390000px;}
.ya8{bottom:388.470000px;}
.y27{bottom:388.650000px;}
.y68{bottom:389.550000px;}
.yf1{bottom:390.810000px;}
.y164{bottom:391.890000px;}
.y13f{bottom:392.970000px;}
.y183{bottom:394.050000px;}
.ycf{bottom:400.935000px;}
.y1be{bottom:402.015000px;}
.y191{bottom:403.095000px;}
.y113{bottom:405.435000px;}
.ya7{bottom:408.855000px;}
.y67{bottom:409.935000px;}
.yf0{bottom:411.015000px;}
.y163{bottom:412.095000px;}
.y13e{bottom:413.355000px;}
.y1dc{bottom:416.595000px;}
.y26{bottom:417.855000px;}
.y1b7{bottom:418.755000px;}
.yce{bottom:421.095000px;}
.y1bd{bottom:422.355000px;}
.y182{bottom:423.255000px;}
.y195{bottom:423.435000px;}
.y112{bottom:425.595000px;}
.ya6{bottom:429.015000px;}
.y66{bottom:430.095000px;}
.yef{bottom:431.355000px;}
.y190{bottom:432.255000px;}
.y162{bottom:432.435000px;}
.y13d{bottom:433.515000px;}
.y1db{bottom:436.935000px;}
.y1b6{bottom:439.095000px;}
.ycd{bottom:441.435000px;}
.y181{bottom:443.595000px;}
.y111{bottom:445.935000px;}
.ya5{bottom:449.355000px;}
.y65{bottom:450.435000px;}
.yee{bottom:451.515000px;}
.y161{bottom:452.595000px;}
.y25{bottom:453.315000px;}
.y1da{bottom:457.095000px;}
.y1b5{bottom:459.435000px;}
.ycc{bottom:461.595000px;}
.y13c{bottom:462.675000px;}
.y180{bottom:463.935000px;}
.y110{bottom:466.095000px;}
.ya4{bottom:469.515000px;}
.y64{bottom:470.595000px;}
.yed{bottom:471.855000px;}
.y160{bottom:472.935000px;}
.y24{bottom:476.715000px;}
.y1d9{bottom:477.435000px;}
.y1b4{bottom:479.595000px;}
.y16f{bottom:481.755000px;}
.ycb{bottom:481.935000px;}
.y13b{bottom:483.015000px;}
.y17f{bottom:484.095000px;}
.y10f{bottom:486.435000px;}
.ya3{bottom:489.855000px;}
.y63{bottom:490.935000px;}
.y1bc{bottom:492.015000px;}
.y15f{bottom:493.095000px;}
.y1d8{bottom:497.595000px;}
.y23{bottom:499.935000px;}
.yec{bottom:501.735000px;}
.yca{bottom:502.095000px;}
.y17e{bottom:504.435000px;}
.y10e{bottom:506.595000px;}
.ya2{bottom:510.015000px;}
.y62{bottom:511.095000px;}
.y13a{bottom:512.175000px;}
.y1bb{bottom:512.355000px;}
.y15e{bottom:513.435000px;}
.y1d7{bottom:517.935000px;}
.y1b3{bottom:520.095000px;}
.yc9{bottom:522.435000px;}
.y17d{bottom:524.595000px;}
.y10d{bottom:526.935000px;}
.y22{bottom:528.915000px;}
.ya1{bottom:530.355000px;}
.y61{bottom:531.435000px;}
.y139{bottom:532.515000px;}
.yeb{bottom:533.595000px;}
.y1d6{bottom:538.095000px;}
.y8f{bottom:540.255000px;}
.y1b2{bottom:540.435000px;}
.yc8{bottom:542.595000px;}
.y17c{bottom:544.935000px;}
.y10c{bottom:547.095000px;}
.y21{bottom:549.255000px;}
.ya0{bottom:550.515000px;}
.y60{bottom:551.595000px;}
.yea{bottom:553.935000px;}
.y8e{bottom:560.595000px;}
.y138{bottom:561.675000px;}
.y15d{bottom:562.755000px;}
.y14c{bottom:562.935000px;}
.y17b{bottom:565.095000px;}
.y1d5{bottom:567.255000px;}
.yc7{bottom:571.755000px;}
.y5f{bottom:571.935000px;}
.ye9{bottom:574.095000px;}
.y10b{bottom:576.255000px;}
.y20{bottom:578.415000px;}
.y9f{bottom:579.675000px;}
.y8d{bottom:580.935000px;}
.y137{bottom:582.015000px;}
.y15c{bottom:583.095000px;}
.y17a{bottom:585.435000px;}
.y1d4{bottom:587.595000px;}
.y5e{bottom:592.095000px;}
.ye8{bottom:594.435000px;}
.y1e7{bottom:596.595000px;}
.y1f{bottom:598.755000px;}
.y8c{bottom:601.095000px;}
.y136{bottom:602.355000px;}
.y15b{bottom:603.435000px;}
.y10a{bottom:605.595000px;}
.y9e{bottom:609.015000px;}
.y1b1{bottom:610.095000px;}
.y1ba{bottom:612.075000px;}
.y5d{bottom:612.435000px;}
.ye7{bottom:614.595000px;}
.y1d3{bottom:616.755000px;}
.y1e6{bottom:616.935000px;}
.y1e{bottom:619.095000px;}
.y8b{bottom:621.435000px;}
.y135{bottom:622.515000px;}
.y15a{bottom:623.595000px;}
.y109{bottom:625.935000px;}
.y9d{bottom:629.355000px;}
.y1b0{bottom:630.435000px;}
.y5c{bottom:632.595000px;}
.ye6{bottom:634.935000px;}
.y1d2{bottom:637.095000px;}
.y1d{bottom:639.255000px;}
.y8a{bottom:641.595000px;}
.y134{bottom:642.855000px;}
.y18f{bottom:643.755000px;}
.y159{bottom:643.935000px;}
.y108{bottom:646.095000px;}
.y9c{bottom:649.545000px;}
.y1af{bottom:650.625000px;}
.y16a{bottom:652.785000px;}
.y5b{bottom:652.965000px;}
.ye5{bottom:655.125000px;}
.y1d1{bottom:657.465000px;}
.y1c{bottom:659.625000px;}
.y7a{bottom:661.785000px;}
.y89{bottom:661.965000px;}
.y133{bottom:663.045000px;}
.y158{bottom:664.125000px;}
.y107{bottom:666.465000px;}
.y9b{bottom:669.885000px;}
.y1ae{bottom:670.965000px;}
.y5a{bottom:673.125000px;}
.y179{bottom:675.465000px;}
.y1d0{bottom:677.625000px;}
.y1b{bottom:679.785000px;}
.y79{bottom:682.125000px;}
.y132{bottom:683.385000px;}
.ye4{bottom:684.285000px;}
.y157{bottom:684.465000px;}
.y106{bottom:686.625000px;}
.y9a{bottom:690.045000px;}
.y1ad{bottom:691.125000px;}
.y59{bottom:693.465000px;}
.y178{bottom:695.625000px;}
.y1cf{bottom:697.965000px;}
.y1a{bottom:700.125000px;}
.y14b{bottom:702.285000px;}
.y78{bottom:702.465000px;}
.y131{bottom:703.545000px;}
.ye3{bottom:704.625000px;}
.y105{bottom:706.965000px;}
.y99{bottom:710.385000px;}
.y1ac{bottom:711.465000px;}
.y58{bottom:713.625000px;}
.y177{bottom:715.965000px;}
.y1ce{bottom:718.125000px;}
.y19{bottom:720.285000px;}
.y77{bottom:722.625000px;}
.y130{bottom:723.885000px;}
.ye2{bottom:724.965000px;}
.y104{bottom:727.125000px;}
.y98{bottom:730.545000px;}
.y1ab{bottom:731.625000px;}
.y57{bottom:733.965000px;}
.y176{bottom:736.125000px;}
.y18{bottom:740.625000px;}
.y76{bottom:742.965000px;}
.y12f{bottom:744.045000px;}
.ye1{bottom:745.125000px;}
.y1cd{bottom:747.285000px;}
.y97{bottom:750.885000px;}
.yc6{bottom:754.125000px;}
.y103{bottom:756.285000px;}
.y175{bottom:756.465000px;}
.y17{bottom:760.785000px;}
.y56{bottom:763.125000px;}
.y12e{bottom:764.385000px;}
.ye0{bottom:765.465000px;}
.y1cc{bottom:767.625000px;}
.y96{bottom:771.045000px;}
.y194{bottom:774.285000px;}
.yc5{bottom:774.465000px;}
.y174{bottom:776.625000px;}
.y16{bottom:781.125000px;}
.y55{bottom:783.465000px;}
.y12d{bottom:784.545000px;}
.ydf{bottom:785.625000px;}
.y1cb{bottom:787.965000px;}
.y95{bottom:791.385000px;}
.yc4{bottom:794.625000px;}
.y173{bottom:796.965000px;}
.y15{bottom:801.285000px;}
.y1aa{bottom:801.465000px;}
.y54{bottom:803.625000px;}
.y12c{bottom:804.885000px;}
.yde{bottom:805.965000px;}
.y1ca{bottom:808.125000px;}
.y18e{bottom:814.785000px;}
.yc3{bottom:814.965000px;}
.y172{bottom:817.125000px;}
.y94{bottom:821.265000px;}
.y1a9{bottom:821.625000px;}
.y16e{bottom:823.785000px;}
.y53{bottom:823.965000px;}
.y12b{bottom:825.045000px;}
.ydd{bottom:826.125000px;}
.y14{bottom:831.345000px;}
.yc2{bottom:835.125000px;}
.y1c9{bottom:837.285000px;}
.y1a8{bottom:841.965000px;}
.y52{bottom:844.125000px;}
.y12a{bottom:845.385000px;}
.y171{bottom:846.285000px;}
.ydc{bottom:846.465000px;}
.y93{bottom:853.125000px;}
.y1b9{bottom:855.285000px;}
.yc1{bottom:855.465000px;}
.y1c8{bottom:857.625000px;}
.y1a7{bottom:862.125000px;}
.y13{bottom:863.205000px;}
.y51{bottom:864.465000px;}
.y129{bottom:865.545000px;}
.y102{bottom:866.625000px;}
.y92{bottom:873.465000px;}
.yc0{bottom:875.625000px;}
.y1c7{bottom:877.965000px;}
.y1a6{bottom:882.465000px;}
.y50{bottom:884.625000px;}
.y128{bottom:885.885000px;}
.y101{bottom:886.965000px;}
.y12{bottom:892.365000px;}
.y91{bottom:893.625000px;}
.y170{bottom:895.785000px;}
.ybf{bottom:895.965000px;}
.y1a5{bottom:902.670000px;}
.y4f{bottom:905.010000px;}
.y127{bottom:906.090000px;}
.y100{bottom:907.170000px;}
.y11{bottom:912.750000px;}
.y90{bottom:914.010000px;}
.ybe{bottom:916.170000px;}
.y1a4{bottom:923.010000px;}
.y4e{bottom:925.170000px;}
.y126{bottom:926.430000px;}
.yff{bottom:927.510000px;}
.y88{bottom:934.170000px;}
.ybd{bottom:936.510000px;}
.y10{bottom:941.910000px;}
.y1a3{bottom:943.170000px;}
.y4d{bottom:945.510000px;}
.y125{bottom:946.590000px;}
.yfe{bottom:947.670000px;}
.y87{bottom:954.510000px;}
.ybc{bottom:956.670000px;}
.y1a2{bottom:963.510000px;}
.y4c{bottom:965.670000px;}
.y124{bottom:966.930000px;}
.yf{bottom:971.250000px;}
.y86{bottom:974.670000px;}
.yfd{bottom:976.830000px;}
.ybb{bottom:977.010000px;}
.y1a1{bottom:983.670000px;}
.y169{bottom:985.830000px;}
.y4b{bottom:986.010000px;}
.y123{bottom:987.090000px;}
.ye{bottom:991.590000px;}
.y14a{bottom:994.830000px;}
.y85{bottom:995.010000px;}
.yba{bottom:997.170000px;}
.y1a0{bottom:1004.010000px;}
.y4a{bottom:1006.170000px;}
.y122{bottom:1007.430000px;}
.yd{bottom:1011.750000px;}
.y84{bottom:1015.170000px;}
.yb9{bottom:1017.510000px;}
.y19f{bottom:1024.170000px;}
.y49{bottom:1026.510000px;}
.yfc{bottom:1035.330000px;}
.y83{bottom:1035.510000px;}
.y121{bottom:1037.310000px;}
.yb8{bottom:1037.670000px;}
.yc{bottom:1041.630000px;}
.y19e{bottom:1044.510000px;}
.y48{bottom:1046.670000px;}
.y82{bottom:1055.670000px;}
.yb7{bottom:1058.010000px;}
.y120{bottom:1061.250000px;}
.yb{bottom:1061.970000px;}
.y1c6{bottom:1066.830000px;}
.y47{bottom:1067.010000px;}
.y19d{bottom:1074.570000px;}
.y81{bottom:1076.010000px;}
.yb6{bottom:1078.170000px;}
.ya{bottom:1082.130000px;}
.y11f{bottom:1084.830000px;}
.y75{bottom:1087.170000px;}
.y46{bottom:1096.170000px;}
.y19c{bottom:1098.330000px;}
.yb5{bottom:1098.510000px;}
.y74{bottom:1107.510000px;}
.y11e{bottom:1116.330000px;}
.y45{bottom:1116.510000px;}
.yb4{bottom:1118.670000px;}
.y19b{bottom:1121.910000px;}
.y9{bottom:1122.090000px;}
.ydb{bottom:1127.670000px;}
.y44{bottom:1136.670000px;}
.y19a{bottom:1145.490000px;}
.yb3{bottom:1147.860000px;}
.yda{bottom:1148.040000px;}
.y8{bottom:1149.120000px;}
.y43{bottom:1157.040000px;}
.y42{bottom:1177.200000px;}
.y7{bottom:1183.320000px;}
.y3d{bottom:1196.820000px;}
.he{height:10.620000px;}
.h2{height:36.571289px;}
.h3{height:37.599609px;}
.hc{height:41.610234px;}
.h8{height:48.761719px;}
.h5{height:50.132812px;}
.ha{height:51.398851px;}
.hf{height:55.641797px;}
.h10{height:56.437031px;}
.hb{height:57.051211px;}
.hd{height:59.439023px;}
.h6{height:64.853086px;}
.h4{height:65.884219px;}
.h7{height:66.676641px;}
.h9{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:719.640000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:10.836000px;}
.x2{left:84.995987px;}
.x3{left:108.755987px;}
.xb{left:136.475987px;}
.x4{left:199.109987px;}
.x6{left:254.549987px;}
.x7{left:324.794987px;}
.x5{left:366.914987px;}
.x8{left:379.874987px;}
.xa{left:387.794987px;}
.xe{left:409.214987px;}
.x9{left:446.504987px;}
.xf{left:473.144987px;}
.xc{left:676.589987px;}
.xd{left:681.089987px;}
.x1{left:808.019987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.098667pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011947pt;}
.ls11{letter-spacing:0.040960pt;}
.ls1{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.154667pt;}
.lsa{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls4{letter-spacing:5.120000pt;}
.ls13{letter-spacing:8.320000pt;}
.lsc{letter-spacing:26.240000pt;}
.ls2{letter-spacing:39.680000pt;}
.ls8{letter-spacing:1175.333547pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.wsd{word-spacing:-16.256000pt;}
.ws8{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.424000pt;}
.ws5{word-spacing:-14.720000pt;}
.wsc{word-spacing:-9.320960pt;}
.wsb{word-spacing:-9.181333pt;}
.ws7{word-spacing:0.000000pt;}
._15{margin-left:-3.936000pt;}
._0{margin-left:-2.400000pt;}
._1{margin-left:-0.912000pt;}
._2{width:0.922667pt;}
._13{width:1.936000pt;}
._7{width:2.888107pt;}
._1c{width:3.863680pt;}
._10{width:5.008000pt;}
._f{width:6.144000pt;}
._e{width:7.082667pt;}
._d{width:8.000000pt;}
._25{width:9.088000pt;}
._33{width:9.984000pt;}
._38{width:10.944000pt;}
._1e{width:12.224000pt;}
._17{width:13.120000pt;}
._18{width:14.208000pt;}
._28{width:15.104000pt;}
._c{width:16.896000pt;}
._b{width:17.792000pt;}
._19{width:19.392000pt;}
._12{width:20.544000pt;}
._11{width:21.440000pt;}
._1b{width:23.168000pt;}
._1a{width:24.704000pt;}
._4{width:26.448000pt;}
._27{width:27.989333pt;}
._26{width:29.136000pt;}
._22{width:30.080000pt;}
._21{width:31.232000pt;}
._1d{width:32.640000pt;}
._3c{width:33.664000pt;}
._2f{width:34.624000pt;}
._32{width:35.840000pt;}
._2c{width:37.632000pt;}
._3d{width:38.778667pt;}
._14{width:39.722667pt;}
._20{width:40.896000pt;}
._1f{width:41.792000pt;}
._34{width:43.008000pt;}
._31{width:44.160000pt;}
._36{width:45.584000pt;}
._2a{width:46.720000pt;}
._29{width:47.616000pt;}
._49{width:49.168000pt;}
._35{width:50.240000pt;}
._41{width:51.200000pt;}
._2b{width:52.352000pt;}
._39{width:53.706667pt;}
._4c{width:56.064000pt;}
._43{width:56.960000pt;}
._42{width:57.984000pt;}
._3b{width:59.008000pt;}
._24{width:60.352000pt;}
._46{width:61.440000pt;}
._a{width:63.296000pt;}
._16{width:64.256000pt;}
._40{width:65.152000pt;}
._3a{width:66.496000pt;}
._47{width:67.429333pt;}
._4d{width:68.608000pt;}
._58{width:69.888000pt;}
._4f{width:72.000000pt;}
._55{width:72.988587pt;}
._52{width:74.613333pt;}
._8{width:75.914667pt;}
._45{width:79.168000pt;}
._3{width:80.448000pt;}
._54{width:81.344000pt;}
._53{width:82.368000pt;}
._51{width:84.160000pt;}
._50{width:85.248000pt;}
._4e{width:86.912000pt;}
._3f{width:88.256000pt;}
._37{width:89.920000pt;}
._9{width:92.970667pt;}
._3e{width:99.584000pt;}
._48{width:106.778880pt;}
._4a{width:107.968000pt;}
._57{width:112.128000pt;}
._44{width:128.640000pt;}
._4b{width:129.733333pt;}
._30{width:144.000000pt;}
._5b{width:147.456000pt;}
._23{width:160.107307pt;}
._56{width:172.608000pt;}
._2e{width:180.672000pt;}
._2d{width:181.568000pt;}
._59{width:200.064000pt;}
._6{width:570.272000pt;}
._5a{width:806.976000pt;}
._5{width:1274.517333pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y41{bottom:-4.800000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:51.200000pt;}
.y3f{bottom:61.920000pt;}
.y5{bottom:68.320000pt;}
.y4{bottom:81.760000pt;}
.y40{bottom:92.960000pt;}
.y3{bottom:95.360000pt;}
.y2{bottom:108.800000pt;}
.y1{bottom:122.240000pt;}
.y3e{bottom:132.000000pt;}
.y3c{bottom:139.546667pt;}
.y31{bottom:146.426667pt;}
.y1e5{bottom:148.186667pt;}
.y73{bottom:148.346667pt;}
.y156{bottom:150.266667pt;}
.y16d{bottom:152.346667pt;}
.y1c5{bottom:153.306667pt;}
.yb2{bottom:157.306667pt;}
.y3b{bottom:157.466667pt;}
.y80{bottom:158.266667pt;}
.yfb{bottom:159.386667pt;}
.yd9{bottom:160.346667pt;}
.y149{bottom:161.306667pt;}
.y18d{bottom:162.266667pt;}
.y11d{bottom:164.346667pt;}
.y30{bottom:164.506667pt;}
.y72{bottom:166.266667pt;}
.y155{bottom:168.346667pt;}
.y199{bottom:170.266667pt;}
.y1c4{bottom:171.386667pt;}
.yb1{bottom:175.386667pt;}
.y3a{bottom:175.546667pt;}
.y7f{bottom:176.346667pt;}
.yfa{bottom:177.306667pt;}
.yd8{bottom:178.266667pt;}
.y148{bottom:179.386667pt;}
.y18c{bottom:180.346667pt;}
.y11c{bottom:182.266667pt;}
.y2f{bottom:182.426667pt;}
.y71{bottom:184.346667pt;}
.y154{bottom:186.266667pt;}
.yb0{bottom:193.306667pt;}
.y39{bottom:193.466667pt;}
.y7e{bottom:194.266667pt;}
.yf9{bottom:195.386667pt;}
.y198{bottom:196.186667pt;}
.yd7{bottom:196.346667pt;}
.y1c3{bottom:197.306667pt;}
.y197{bottom:198.266667pt;}
.y2e{bottom:200.506667pt;}
.y70{bottom:202.266667pt;}
.y153{bottom:204.346667pt;}
.y147{bottom:205.306667pt;}
.y18b{bottom:206.266667pt;}
.y11b{bottom:208.186667pt;}
.y1e4{bottom:210.266667pt;}
.yaf{bottom:211.386667pt;}
.y38{bottom:211.546667pt;}
.y1b8{bottom:212.186667pt;}
.y7d{bottom:212.346667pt;}
.yf8{bottom:213.306667pt;}
.yd6{bottom:214.266667pt;}
.y1c2{bottom:215.386667pt;}
.y196{bottom:216.346667pt;}
.y2d{bottom:218.426667pt;}
.y6f{bottom:220.346667pt;}
.y152{bottom:222.266667pt;}
.y146{bottom:223.386667pt;}
.y18a{bottom:224.346667pt;}
.y11a{bottom:226.266667pt;}
.y1e3{bottom:228.346667pt;}
.y37{bottom:229.466667pt;}
.y7c{bottom:230.266667pt;}
.yf7{bottom:231.386667pt;}
.yd5{bottom:232.346667pt;}
.y1c1{bottom:233.306667pt;}
.y2c{bottom:236.506667pt;}
.yae{bottom:237.306667pt;}
.y6e{bottom:238.266667pt;}
.y151{bottom:240.346667pt;}
.y145{bottom:241.306667pt;}
.y189{bottom:242.266667pt;}
.y119{bottom:244.346667pt;}
.y1e2{bottom:246.266667pt;}
.y36{bottom:247.546667pt;}
.y7b{bottom:248.346667pt;}
.yf6{bottom:249.306667pt;}
.yd4{bottom:250.266667pt;}
.y2b{bottom:254.426667pt;}
.yad{bottom:255.386667pt;}
.y6d{bottom:256.346667pt;}
.y168{bottom:258.266667pt;}
.y1c0{bottom:259.226667pt;}
.y144{bottom:259.386667pt;}
.y188{bottom:260.346667pt;}
.y118{bottom:262.266667pt;}
.y1e1{bottom:264.346667pt;}
.y35{bottom:265.466667pt;}
.y150{bottom:266.266667pt;}
.yd3{bottom:268.346667pt;}
.y2a{bottom:272.506667pt;}
.yac{bottom:273.306667pt;}
.y6c{bottom:274.266667pt;}
.yf5{bottom:275.226667pt;}
.y167{bottom:276.346667pt;}
.y143{bottom:277.306667pt;}
.y187{bottom:278.266667pt;}
.y117{bottom:280.346667pt;}
.y34{bottom:283.546667pt;}
.y14f{bottom:284.346667pt;}
.y16c{bottom:286.266667pt;}
.y1e0{bottom:290.266667pt;}
.y29{bottom:290.426667pt;}
.yab{bottom:291.386667pt;}
.y6b{bottom:292.346667pt;}
.yf4{bottom:293.306667pt;}
.yd2{bottom:294.266667pt;}
.y142{bottom:295.386667pt;}
.y186{bottom:296.346667pt;}
.y116{bottom:298.266667pt;}
.y33{bottom:301.466667pt;}
.y14e{bottom:302.266667pt;}
.y16b{bottom:304.346667pt;}
.y1df{bottom:308.346667pt;}
.yaa{bottom:309.306667pt;}
.y6a{bottom:310.266667pt;}
.yf3{bottom:311.386667pt;}
.y166{bottom:312.346667pt;}
.y141{bottom:313.306667pt;}
.y185{bottom:314.266667pt;}
.y115{bottom:316.346667pt;}
.y28{bottom:317.146667pt;}
.y32{bottom:319.546667pt;}
.yd1{bottom:320.186667pt;}
.y14d{bottom:320.346667pt;}
.y193{bottom:322.266667pt;}
.y1de{bottom:326.266667pt;}
.ya9{bottom:327.386667pt;}
.y69{bottom:328.346667pt;}
.yf2{bottom:329.306667pt;}
.y165{bottom:330.266667pt;}
.y140{bottom:331.386667pt;}
.y184{bottom:332.346667pt;}
.yd0{bottom:338.266667pt;}
.y1bf{bottom:339.226667pt;}
.y192{bottom:340.346667pt;}
.y114{bottom:342.266667pt;}
.y1dd{bottom:344.346667pt;}
.ya8{bottom:345.306667pt;}
.y27{bottom:345.466667pt;}
.y68{bottom:346.266667pt;}
.yf1{bottom:347.386667pt;}
.y164{bottom:348.346667pt;}
.y13f{bottom:349.306667pt;}
.y183{bottom:350.266667pt;}
.ycf{bottom:356.386667pt;}
.y1be{bottom:357.346667pt;}
.y191{bottom:358.306667pt;}
.y113{bottom:360.386667pt;}
.ya7{bottom:363.426667pt;}
.y67{bottom:364.386667pt;}
.yf0{bottom:365.346667pt;}
.y163{bottom:366.306667pt;}
.y13e{bottom:367.426667pt;}
.y1dc{bottom:370.306667pt;}
.y26{bottom:371.426667pt;}
.y1b7{bottom:372.226667pt;}
.yce{bottom:374.306667pt;}
.y1bd{bottom:375.426667pt;}
.y182{bottom:376.226667pt;}
.y195{bottom:376.386667pt;}
.y112{bottom:378.306667pt;}
.ya6{bottom:381.346667pt;}
.y66{bottom:382.306667pt;}
.yef{bottom:383.426667pt;}
.y190{bottom:384.226667pt;}
.y162{bottom:384.386667pt;}
.y13d{bottom:385.346667pt;}
.y1db{bottom:388.386667pt;}
.y1b6{bottom:390.306667pt;}
.ycd{bottom:392.386667pt;}
.y181{bottom:394.306667pt;}
.y111{bottom:396.386667pt;}
.ya5{bottom:399.426667pt;}
.y65{bottom:400.386667pt;}
.yee{bottom:401.346667pt;}
.y161{bottom:402.306667pt;}
.y25{bottom:402.946667pt;}
.y1da{bottom:406.306667pt;}
.y1b5{bottom:408.386667pt;}
.ycc{bottom:410.306667pt;}
.y13c{bottom:411.266667pt;}
.y180{bottom:412.386667pt;}
.y110{bottom:414.306667pt;}
.ya4{bottom:417.346667pt;}
.y64{bottom:418.306667pt;}
.yed{bottom:419.426667pt;}
.y160{bottom:420.386667pt;}
.y24{bottom:423.746667pt;}
.y1d9{bottom:424.386667pt;}
.y1b4{bottom:426.306667pt;}
.y16f{bottom:428.226667pt;}
.ycb{bottom:428.386667pt;}
.y13b{bottom:429.346667pt;}
.y17f{bottom:430.306667pt;}
.y10f{bottom:432.386667pt;}
.ya3{bottom:435.426667pt;}
.y63{bottom:436.386667pt;}
.y1bc{bottom:437.346667pt;}
.y15f{bottom:438.306667pt;}
.y1d8{bottom:442.306667pt;}
.y23{bottom:444.386667pt;}
.yec{bottom:445.986667pt;}
.yca{bottom:446.306667pt;}
.y17e{bottom:448.386667pt;}
.y10e{bottom:450.306667pt;}
.ya2{bottom:453.346667pt;}
.y62{bottom:454.306667pt;}
.y13a{bottom:455.266667pt;}
.y1bb{bottom:455.426667pt;}
.y15e{bottom:456.386667pt;}
.y1d7{bottom:460.386667pt;}
.y1b3{bottom:462.306667pt;}
.yc9{bottom:464.386667pt;}
.y17d{bottom:466.306667pt;}
.y10d{bottom:468.386667pt;}
.y22{bottom:470.146667pt;}
.ya1{bottom:471.426667pt;}
.y61{bottom:472.386667pt;}
.y139{bottom:473.346667pt;}
.yeb{bottom:474.306667pt;}
.y1d6{bottom:478.306667pt;}
.y8f{bottom:480.226667pt;}
.y1b2{bottom:480.386667pt;}
.yc8{bottom:482.306667pt;}
.y17c{bottom:484.386667pt;}
.y10c{bottom:486.306667pt;}
.y21{bottom:488.226667pt;}
.ya0{bottom:489.346667pt;}
.y60{bottom:490.306667pt;}
.yea{bottom:492.386667pt;}
.y8e{bottom:498.306667pt;}
.y138{bottom:499.266667pt;}
.y15d{bottom:500.226667pt;}
.y14c{bottom:500.386667pt;}
.y17b{bottom:502.306667pt;}
.y1d5{bottom:504.226667pt;}
.yc7{bottom:508.226667pt;}
.y5f{bottom:508.386667pt;}
.ye9{bottom:510.306667pt;}
.y10b{bottom:512.226667pt;}
.y20{bottom:514.146667pt;}
.y9f{bottom:515.266667pt;}
.y8d{bottom:516.386667pt;}
.y137{bottom:517.346667pt;}
.y15c{bottom:518.306667pt;}
.y17a{bottom:520.386667pt;}
.y1d4{bottom:522.306667pt;}
.y5e{bottom:526.306667pt;}
.ye8{bottom:528.386667pt;}
.y1e7{bottom:530.306667pt;}
.y1f{bottom:532.226667pt;}
.y8c{bottom:534.306667pt;}
.y136{bottom:535.426667pt;}
.y15b{bottom:536.386667pt;}
.y10a{bottom:538.306667pt;}
.y9e{bottom:541.346667pt;}
.y1b1{bottom:542.306667pt;}
.y1ba{bottom:544.066667pt;}
.y5d{bottom:544.386667pt;}
.ye7{bottom:546.306667pt;}
.y1d3{bottom:548.226667pt;}
.y1e6{bottom:548.386667pt;}
.y1e{bottom:550.306667pt;}
.y8b{bottom:552.386667pt;}
.y135{bottom:553.346667pt;}
.y15a{bottom:554.306667pt;}
.y109{bottom:556.386667pt;}
.y9d{bottom:559.426667pt;}
.y1b0{bottom:560.386667pt;}
.y5c{bottom:562.306667pt;}
.ye6{bottom:564.386667pt;}
.y1d2{bottom:566.306667pt;}
.y1d{bottom:568.226667pt;}
.y8a{bottom:570.306667pt;}
.y134{bottom:571.426667pt;}
.y18f{bottom:572.226667pt;}
.y159{bottom:572.386667pt;}
.y108{bottom:574.306667pt;}
.y9c{bottom:577.373333pt;}
.y1af{bottom:578.333333pt;}
.y16a{bottom:580.253333pt;}
.y5b{bottom:580.413333pt;}
.ye5{bottom:582.333333pt;}
.y1d1{bottom:584.413333pt;}
.y1c{bottom:586.333333pt;}
.y7a{bottom:588.253333pt;}
.y89{bottom:588.413333pt;}
.y133{bottom:589.373333pt;}
.y158{bottom:590.333333pt;}
.y107{bottom:592.413333pt;}
.y9b{bottom:595.453333pt;}
.y1ae{bottom:596.413333pt;}
.y5a{bottom:598.333333pt;}
.y179{bottom:600.413333pt;}
.y1d0{bottom:602.333333pt;}
.y1b{bottom:604.253333pt;}
.y79{bottom:606.333333pt;}
.y132{bottom:607.453333pt;}
.ye4{bottom:608.253333pt;}
.y157{bottom:608.413333pt;}
.y106{bottom:610.333333pt;}
.y9a{bottom:613.373333pt;}
.y1ad{bottom:614.333333pt;}
.y59{bottom:616.413333pt;}
.y178{bottom:618.333333pt;}
.y1cf{bottom:620.413333pt;}
.y1a{bottom:622.333333pt;}
.y14b{bottom:624.253333pt;}
.y78{bottom:624.413333pt;}
.y131{bottom:625.373333pt;}
.ye3{bottom:626.333333pt;}
.y105{bottom:628.413333pt;}
.y99{bottom:631.453333pt;}
.y1ac{bottom:632.413333pt;}
.y58{bottom:634.333333pt;}
.y177{bottom:636.413333pt;}
.y1ce{bottom:638.333333pt;}
.y19{bottom:640.253333pt;}
.y77{bottom:642.333333pt;}
.y130{bottom:643.453333pt;}
.ye2{bottom:644.413333pt;}
.y104{bottom:646.333333pt;}
.y98{bottom:649.373333pt;}
.y1ab{bottom:650.333333pt;}
.y57{bottom:652.413333pt;}
.y176{bottom:654.333333pt;}
.y18{bottom:658.333333pt;}
.y76{bottom:660.413333pt;}
.y12f{bottom:661.373333pt;}
.ye1{bottom:662.333333pt;}
.y1cd{bottom:664.253333pt;}
.y97{bottom:667.453333pt;}
.yc6{bottom:670.333333pt;}
.y103{bottom:672.253333pt;}
.y175{bottom:672.413333pt;}
.y17{bottom:676.253333pt;}
.y56{bottom:678.333333pt;}
.y12e{bottom:679.453333pt;}
.ye0{bottom:680.413333pt;}
.y1cc{bottom:682.333333pt;}
.y96{bottom:685.373333pt;}
.y194{bottom:688.253333pt;}
.yc5{bottom:688.413333pt;}
.y174{bottom:690.333333pt;}
.y16{bottom:694.333333pt;}
.y55{bottom:696.413333pt;}
.y12d{bottom:697.373333pt;}
.ydf{bottom:698.333333pt;}
.y1cb{bottom:700.413333pt;}
.y95{bottom:703.453333pt;}
.yc4{bottom:706.333333pt;}
.y173{bottom:708.413333pt;}
.y15{bottom:712.253333pt;}
.y1aa{bottom:712.413333pt;}
.y54{bottom:714.333333pt;}
.y12c{bottom:715.453333pt;}
.yde{bottom:716.413333pt;}
.y1ca{bottom:718.333333pt;}
.y18e{bottom:724.253333pt;}
.yc3{bottom:724.413333pt;}
.y172{bottom:726.333333pt;}
.y94{bottom:730.013333pt;}
.y1a9{bottom:730.333333pt;}
.y16e{bottom:732.253333pt;}
.y53{bottom:732.413333pt;}
.y12b{bottom:733.373333pt;}
.ydd{bottom:734.333333pt;}
.y14{bottom:738.973333pt;}
.yc2{bottom:742.333333pt;}
.y1c9{bottom:744.253333pt;}
.y1a8{bottom:748.413333pt;}
.y52{bottom:750.333333pt;}
.y12a{bottom:751.453333pt;}
.y171{bottom:752.253333pt;}
.ydc{bottom:752.413333pt;}
.y93{bottom:758.333333pt;}
.y1b9{bottom:760.253333pt;}
.yc1{bottom:760.413333pt;}
.y1c8{bottom:762.333333pt;}
.y1a7{bottom:766.333333pt;}
.y13{bottom:767.293333pt;}
.y51{bottom:768.413333pt;}
.y129{bottom:769.373333pt;}
.y102{bottom:770.333333pt;}
.y92{bottom:776.413333pt;}
.yc0{bottom:778.333333pt;}
.y1c7{bottom:780.413333pt;}
.y1a6{bottom:784.413333pt;}
.y50{bottom:786.333333pt;}
.y128{bottom:787.453333pt;}
.y101{bottom:788.413333pt;}
.y12{bottom:793.213333pt;}
.y91{bottom:794.333333pt;}
.y170{bottom:796.253333pt;}
.ybf{bottom:796.413333pt;}
.y1a5{bottom:802.373333pt;}
.y4f{bottom:804.453333pt;}
.y127{bottom:805.413333pt;}
.y100{bottom:806.373333pt;}
.y11{bottom:811.333333pt;}
.y90{bottom:812.453333pt;}
.ybe{bottom:814.373333pt;}
.y1a4{bottom:820.453333pt;}
.y4e{bottom:822.373333pt;}
.y126{bottom:823.493333pt;}
.yff{bottom:824.453333pt;}
.y88{bottom:830.373333pt;}
.ybd{bottom:832.453333pt;}
.y10{bottom:837.253333pt;}
.y1a3{bottom:838.373333pt;}
.y4d{bottom:840.453333pt;}
.y125{bottom:841.413333pt;}
.yfe{bottom:842.373333pt;}
.y87{bottom:848.453333pt;}
.ybc{bottom:850.373333pt;}
.y1a2{bottom:856.453333pt;}
.y4c{bottom:858.373333pt;}
.y124{bottom:859.493333pt;}
.yf{bottom:863.333333pt;}
.y86{bottom:866.373333pt;}
.yfd{bottom:868.293333pt;}
.ybb{bottom:868.453333pt;}
.y1a1{bottom:874.373333pt;}
.y169{bottom:876.293333pt;}
.y4b{bottom:876.453333pt;}
.y123{bottom:877.413333pt;}
.ye{bottom:881.413333pt;}
.y14a{bottom:884.293333pt;}
.y85{bottom:884.453333pt;}
.yba{bottom:886.373333pt;}
.y1a0{bottom:892.453333pt;}
.y4a{bottom:894.373333pt;}
.y122{bottom:895.493333pt;}
.yd{bottom:899.333333pt;}
.y84{bottom:902.373333pt;}
.yb9{bottom:904.453333pt;}
.y19f{bottom:910.373333pt;}
.y49{bottom:912.453333pt;}
.yfc{bottom:920.293333pt;}
.y83{bottom:920.453333pt;}
.y121{bottom:922.053333pt;}
.yb8{bottom:922.373333pt;}
.yc{bottom:925.893333pt;}
.y19e{bottom:928.453333pt;}
.y48{bottom:930.373333pt;}
.y82{bottom:938.373333pt;}
.yb7{bottom:940.453333pt;}
.y120{bottom:943.333333pt;}
.yb{bottom:943.973333pt;}
.y1c6{bottom:948.293333pt;}
.y47{bottom:948.453333pt;}
.y19d{bottom:955.173333pt;}
.y81{bottom:956.453333pt;}
.yb6{bottom:958.373333pt;}
.ya{bottom:961.893333pt;}
.y11f{bottom:964.293333pt;}
.y75{bottom:966.373333pt;}
.y46{bottom:974.373333pt;}
.y19c{bottom:976.293333pt;}
.yb5{bottom:976.453333pt;}
.y74{bottom:984.453333pt;}
.y11e{bottom:992.293333pt;}
.y45{bottom:992.453333pt;}
.yb4{bottom:994.373333pt;}
.y19b{bottom:997.253333pt;}
.y9{bottom:997.413333pt;}
.ydb{bottom:1002.373333pt;}
.y44{bottom:1010.373333pt;}
.y19a{bottom:1018.213333pt;}
.yb3{bottom:1020.320000pt;}
.yda{bottom:1020.480000pt;}
.y8{bottom:1021.440000pt;}
.y43{bottom:1028.480000pt;}
.y42{bottom:1046.400000pt;}
.y7{bottom:1051.840000pt;}
.y3d{bottom:1063.840000pt;}
.he{height:9.440000pt;}
.h2{height:32.507812pt;}
.h3{height:33.421875pt;}
.hc{height:36.986875pt;}
.h8{height:43.343750pt;}
.h5{height:44.562500pt;}
.ha{height:45.687867pt;}
.hf{height:49.459375pt;}
.h10{height:50.166250pt;}
.hb{height:50.712187pt;}
.hd{height:52.834688pt;}
.h6{height:57.647187pt;}
.h4{height:58.563750pt;}
.h7{height:59.268125pt;}
.h9{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:639.680000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:9.632000pt;}
.x2{left:75.551988pt;}
.x3{left:96.671988pt;}
.xb{left:121.311988pt;}
.x4{left:176.986655pt;}
.x6{left:226.266655pt;}
.x7{left:288.706655pt;}
.x5{left:326.146655pt;}
.x8{left:337.666655pt;}
.xa{left:344.706655pt;}
.xe{left:363.746655pt;}
.x9{left:396.893322pt;}
.xf{left:420.573322pt;}
.xc{left:601.413322pt;}
.xd{left:605.413322pt;}
.x1{left:718.239988pt;}
}




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