
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e7002ded8015e82fa3fdb84f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ab56857d71b2fbd34c952275.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f156ca28df8758e3e9782b3a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8e09a6cb0c114c4b0d56843b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_76a6fa431a563fc8b96a675e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7847daa4ebab472591e02fab.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_93e45885d40ea7a73e5ac7e3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1a{letter-spacing:-0.339600px;}
.ls21{letter-spacing:-0.243600px;}
.lsb{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.160800px;}
.ls1b{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls20{letter-spacing:-0.066000px;}
.ls19{letter-spacing:-0.063600px;}
.ls17{letter-spacing:-0.014760px;}
.ls1c{letter-spacing:-0.006120px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.041760px;}
.lsf{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.053400px;}
.ls14{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.113400px;}
.ls13{letter-spacing:0.116400px;}
.ls1f{letter-spacing:0.143400px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.ls22{letter-spacing:0.181200px;}
.lsc{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls18{letter-spacing:45.926640px;}
.ls1e{letter-spacing:47.726640px;}
.ls15{letter-spacing:63.566640px;}
.ls1d{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-60.120000px;}
.ws8{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.425600px;}
.ws18{word-spacing:-13.407600px;}
.ws3{word-spacing:-13.399800px;}
.ws17{word-spacing:-13.369800px;}
.wse{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.339800px;}
.wsc{word-spacing:-13.275360px;}
.wsf{word-spacing:-13.268160px;}
.ws2{word-spacing:-13.226400px;}
.ws14{word-spacing:-13.220280px;}
.ws10{word-spacing:-13.211640px;}
.ws11{word-spacing:-13.162800px;}
.ws15{word-spacing:-13.160400px;}
.ws13{word-spacing:-13.072800px;}
.wsa{word-spacing:-13.065600px;}
.ws4{word-spacing:-13.039800px;}
.ws16{word-spacing:-12.982800px;}
.ws12{word-spacing:-12.886800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
._13{margin-left:-3.967920px;}
._d{margin-left:-2.886000px;}
._0{margin-left:-1.110000px;}
._1{width:1.006812px;}
._5{width:2.705400px;}
._8{width:4.117920px;}
._7{width:5.410800px;}
._e{width:6.733680px;}
._2{width:7.935600px;}
._3{width:8.958601px;}
._4{width:10.183802px;}
._6{width:11.579397px;}
._9{width:14.488800px;}
._a{width:15.980749px;}
._12{width:17.522760px;}
._f{width:18.577080px;}
._10{width:19.779480px;}
._14{width:20.889600px;}
._b{width:22.003800px;}
._c{width:23.146801px;}
._15{width:25.037760px;}
._11{width:26.152200px;}
._16{width:28.496880px;}
._1b{width:30.150000px;}
._17{width:31.623120px;}
._19{width:46.202040px;}
._1a{width:47.585520px;}
._1d{width:54.438480px;}
._1e{width:55.489800px;}
._21{width:67.722960px;}
._18{width:72.474480px;}
._1f{width:101.806920px;}
._20{width:103.023360px;}
._1c{width:383.685840px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yae{bottom:111.720000px;}
.y6f{bottom:112.530000px;}
.y44{bottom:113.430000px;}
.ydf{bottom:115.860000px;}
.y101{bottom:117.390000px;}
.y132{bottom:122.700000px;}
.yad{bottom:129.270000px;}
.y6e{bottom:130.170000px;}
.y43{bottom:130.980000px;}
.y100{bottom:135.030000px;}
.y19f{bottom:138.720000px;}
.y131{bottom:140.250000px;}
.y152{bottom:142.770000px;}
.yc6{bottom:145.380000px;}
.yac{bottom:146.910000px;}
.y28{bottom:147.630000px;}
.y6d{bottom:147.720000px;}
.yde{bottom:151.410000px;}
.y17d{bottom:152.130000px;}
.yff{bottom:152.580000px;}
.y19e{bottom:156.270000px;}
.y42{bottom:157.620000px;}
.y130{bottom:157.800000px;}
.y151{bottom:160.320000px;}
.yc5{bottom:162.930000px;}
.yab{bottom:164.460000px;}
.y27{bottom:165.270000px;}
.y17c{bottom:169.770000px;}
.yfe{bottom:170.130000px;}
.y19d{bottom:173.910000px;}
.y12f{bottom:175.440000px;}
.y150{bottom:177.870000px;}
.yc4{bottom:180.480000px;}
.yaa{bottom:182.100000px;}
.y26{bottom:182.820000px;}
.y6c{bottom:182.910000px;}
.ydd{bottom:183.630000px;}
.y17b{bottom:187.320000px;}
.yfd{bottom:187.680000px;}
.y83{bottom:193.080000px;}
.y41{bottom:193.170000px;}
.y25{bottom:200.370000px;}
.y19c{bottom:200.460000px;}
.y17a{bottom:204.960000px;}
.y12e{bottom:210.990000px;}
.y14f{bottom:214.320000px;}
.yc3{bottom:216.120000px;}
.ya9{bottom:217.650000px;}
.y24{bottom:218.010000px;}
.y19b{bottom:218.100000px;}
.y6b{bottom:218.460000px;}
.y179{bottom:222.510000px;}
.yfc{bottom:224.130000px;}
.y40{bottom:225.390000px;}
.y12d{bottom:228.540000px;}
.y82{bottom:228.720000px;}
.y14e{bottom:231.960000px;}
.yc2{bottom:233.670000px;}
.ya8{bottom:235.200000px;}
.y23{bottom:235.560000px;}
.y6a{bottom:236.100000px;}
.y178{bottom:240.060000px;}
.y19a{bottom:244.650000px;}
.y12c{bottom:246.180000px;}
.y14d{bottom:249.510000px;}
.yc1{bottom:251.310000px;}
.ya7{bottom:252.840000px;}
.y22{bottom:253.200000px;}
.y69{bottom:253.650000px;}
.yfb{bottom:259.770000px;}
.y81{bottom:260.940000px;}
.y199{bottom:262.200000px;}
.y12b{bottom:263.730000px;}
.yc0{bottom:268.860000px;}
.ya6{bottom:270.390000px;}
.y21{bottom:270.750000px;}
.y177{bottom:275.700000px;}
.y14c{bottom:276.060000px;}
.yfa{bottom:277.320000px;}
.y68{bottom:280.200000px;}
.ybf{bottom:286.410000px;}
.ya5{bottom:287.940000px;}
.y198{bottom:288.840000px;}
.y12a{bottom:290.370000px;}
.y176{bottom:293.250000px;}
.yf9{bottom:294.960000px;}
.y20{bottom:306.300000px;}
.y197{bottom:306.390000px;}
.y175{bottom:310.890000px;}
.y14b{bottom:311.700000px;}
.yf8{bottom:312.510000px;}
.ya4{bottom:314.580000px;}
.y67{bottom:315.840000px;}
.ybe{bottom:322.050000px;}
.y1f{bottom:323.940000px;}
.y129{bottom:325.920000px;}
.y174{bottom:328.440000px;}
.y14a{bottom:329.250000px;}
.yf7{bottom:330.060000px;}
.y66{bottom:333.390000px;}
.ybd{bottom:339.600000px;}
.y1e{bottom:341.490000px;}
.y128{bottom:343.470000px;}
.y173{bottom:345.990000px;}
.yf6{bottom:347.700000px;}
.ya3{bottom:350.130000px;}
.y196{bottom:350.580000px;}
.y65{bottom:350.940000px;}
.ybc{bottom:357.240000px;}
.y1d{bottom:359.130000px;}
.y172{bottom:363.630000px;}
.y149{bottom:364.800000px;}
.ya2{bottom:367.770000px;}
.y195{bottom:368.130000px;}
.y64{bottom:368.580000px;}
.yf5{bottom:374.250000px;}
.ybb{bottom:374.790000px;}
.y1c{bottom:376.680000px;}
.y127{bottom:379.110000px;}
.y148{bottom:382.440000px;}
.ya1{bottom:385.320000px;}
.y63{bottom:386.130000px;}
.yba{bottom:392.340000px;}
.y1b{bottom:394.230000px;}
.y194{bottom:394.770000px;}
.y126{bottom:396.660000px;}
.y171{bottom:399.180000px;}
.y147{bottom:399.990000px;}
.ya0{bottom:402.870000px;}
.y62{bottom:403.770000px;}
.yf4{bottom:409.800000px;}
.yb9{bottom:409.980000px;}
.y1a{bottom:411.870000px;}
.y193{bottom:412.320000px;}
.y125{bottom:414.300000px;}
.y170{bottom:416.730000px;}
.y146{bottom:418.440000px;}
.y9f{bottom:420.510000px;}
.y61{bottom:421.320000px;}
.yf3{bottom:427.440000px;}
.y19{bottom:429.420000px;}
.y124{bottom:431.850000px;}
.y16f{bottom:434.370000px;}
.y145{bottom:435.990000px;}
.y192{bottom:438.870000px;}
.yf2{bottom:444.990000px;}
.yb8{bottom:445.530000px;}
.y123{bottom:449.400000px;}
.y16e{bottom:451.920000px;}
.y144{bottom:453.630000px;}
.y9e{bottom:456.060000px;}
.y18{bottom:456.330000px;}
.y191{bottom:456.510000px;}
.y60{bottom:456.870000px;}
.yf1{bottom:462.630000px;}
.yb7{bottom:463.170000px;}
.y16d{bottom:469.560000px;}
.y143{bottom:471.210000px;}
.y9d{bottom:473.730000px;}
.y190{bottom:474.090000px;}
.y5f{bottom:474.540000px;}
.yb6{bottom:480.750000px;}
.y122{bottom:485.070000px;}
.y16c{bottom:487.140000px;}
.y142{bottom:488.760000px;}
.y9c{bottom:491.280000px;}
.y5e{bottom:492.090000px;}
.yf0{bottom:498.210000px;}
.yb5{bottom:498.300000px;}
.y18f{bottom:500.730000px;}
.y121{bottom:502.620000px;}
.y17{bottom:504.690000px;}
.y141{bottom:507.210000px;}
.y9b{bottom:508.830000px;}
.y5d{bottom:509.730000px;}
.y16b{bottom:514.050000px;}
.yef{bottom:515.760000px;}
.yb4{bottom:515.940000px;}
.y18e{bottom:518.280000px;}
.y120{bottom:520.260000px;}
.ydc{bottom:522.330000px;}
.y16{bottom:522.600000px;}
.y140{bottom:524.760000px;}
.y5c{bottom:527.280000px;}
.yee{bottom:533.400000px;}
.yb3{bottom:533.490000px;}
.y18d{bottom:535.830000px;}
.y11f{bottom:537.810000px;}
.ydb{bottom:539.880000px;}
.y13f{bottom:542.400000px;}
.y9a{bottom:544.470000px;}
.y5b{bottom:544.830000px;}
.yed{bottom:550.950000px;}
.y18c{bottom:553.470000px;}
.y11e{bottom:555.360000px;}
.yda{bottom:557.430000px;}
.y15{bottom:559.590000px;}
.y13e{bottom:559.950000px;}
.yb2{bottom:560.040000px;}
.y99{bottom:562.020000px;}
.y16a{bottom:562.290000px;}
.y5a{bottom:562.470000px;}
.yec{bottom:568.590000px;}
.y18b{bottom:571.020000px;}
.yd9{bottom:575.070000px;}
.y14{bottom:577.140000px;}
.y98{bottom:579.660000px;}
.y169{bottom:579.930000px;}
.y59{bottom:580.020000px;}
.y11d{bottom:582.000000px;}
.yeb{bottom:586.140000px;}
.y18a{bottom:588.660000px;}
.yd8{bottom:592.620000px;}
.y13{bottom:594.780000px;}
.yb1{bottom:595.950000px;}
.y13d{bottom:596.400000px;}
.y97{bottom:597.210000px;}
.y12{bottom:612.330000px;}
.y96{bottom:614.760000px;}
.y189{bottom:615.210000px;}
.y168{bottom:615.480000px;}
.y58{bottom:615.660000px;}
.y11c{bottom:617.550000px;}
.yea{bottom:621.690000px;}
.yd7{bottom:628.260000px;}
.y11{bottom:629.880000px;}
.y13c{bottom:631.950000px;}
.y188{bottom:632.760000px;}
.y167{bottom:633.120000px;}
.y57{bottom:633.210000px;}
.y11b{bottom:635.190000px;}
.ye9{bottom:639.330000px;}
.y95{bottom:641.400000px;}
.yb0{bottom:644.280000px;}
.yd6{bottom:645.810000px;}
.y10{bottom:647.520000px;}
.y13b{bottom:649.590000px;}
.y166{bottom:650.670000px;}
.y56{bottom:650.760000px;}
.ye8{bottom:656.880000px;}
.y187{bottom:659.400000px;}
.y11a{bottom:661.740000px;}
.yd5{bottom:663.360000px;}
.yf{bottom:665.070000px;}
.y13a{bottom:667.140000px;}
.y165{bottom:668.220000px;}
.y55{bottom:668.400000px;}
.ye7{bottom:674.430000px;}
.yaf{bottom:676.500000px;}
.y94{bottom:676.950000px;}
.yd4{bottom:681.000000px;}
.ye{bottom:682.710000px;}
.y139{bottom:684.690000px;}
.y54{bottom:685.950000px;}
.y164{bottom:686.670000px;}
.ye6{bottom:692.880000px;}
.y93{bottom:694.590000px;}
.y119{bottom:697.290000px;}
.yd3{bottom:698.550000px;}
.yd{bottom:700.260000px;}
.y186{bottom:703.590000px;}
.y163{bottom:704.220000px;}
.y80{bottom:707.550000px;}
.ye5{bottom:710.520000px;}
.y138{bottom:711.330000px;}
.y92{bottom:712.140000px;}
.y53{bottom:712.590000px;}
.y118{bottom:714.930000px;}
.yc{bottom:717.810000px;}
.y185{bottom:721.140000px;}
.y162{bottom:721.860000px;}
.y7f{bottom:725.190000px;}
.ye4{bottom:728.070000px;}
.y91{bottom:729.690000px;}
.y3f{bottom:730.590000px;}
.y117{bottom:732.480000px;}
.yb{bottom:735.450000px;}
.y161{bottom:739.410000px;}
.y7e{bottom:742.740000px;}
.ye3{bottom:745.620000px;}
.y137{bottom:747.240000px;}
.y90{bottom:747.330000px;}
.y184{bottom:747.690000px;}
.y3e{bottom:748.140000px;}
.y52{bottom:748.500000px;}
.y116{bottom:750.120000px;}
.ya{bottom:753.000000px;}
.y160{bottom:757.860000px;}
.y7d{bottom:760.290000px;}
.yd2{bottom:760.740000px;}
.ye2{bottom:764.070000px;}
.y183{bottom:765.330000px;}
.y3d{bottom:765.690000px;}
.y115{bottom:767.670000px;}
.y15f{bottom:775.410000px;}
.y7c{bottom:777.930000px;}
.yd1{bottom:778.290000px;}
.y9{bottom:779.910000px;}
.ye1{bottom:781.620000px;}
.y8f{bottom:782.880000px;}
.y3c{bottom:783.330000px;}
.y182{bottom:791.880000px;}
.y15e{bottom:793.050000px;}
.y136{bottom:795.480000px;}
.yd0{bottom:795.930000px;}
.y51{bottom:796.740000px;}
.ye0{bottom:799.170000px;}
.y8e{bottom:800.520000px;}
.y3b{bottom:800.880000px;}
.y114{bottom:803.220000px;}
.y181{bottom:809.520000px;}
.y15d{bottom:810.600000px;}
.y135{bottom:813.030000px;}
.y7b{bottom:813.480000px;}
.y50{bottom:814.290000px;}
.y8d{bottom:818.070000px;}
.y3a{bottom:818.520000px;}
.y113{bottom:820.860000px;}
.y8{bottom:828.240000px;}
.y7a{bottom:831.030000px;}
.y4f{bottom:831.930000px;}
.y8c{bottom:835.620000px;}
.y39{bottom:836.070000px;}
.y112{bottom:838.410000px;}
.y15c{bottom:846.960000px;}
.y79{bottom:848.670000px;}
.y4e{bottom:849.480000px;}
.y38{bottom:853.620000px;}
.y111{bottom:856.050000px;}
.y7{bottom:863.790000px;}
.y78{bottom:866.220000px;}
.ycf{bottom:866.670000px;}
.y4d{bottom:867.030000px;}
.y37{bottom:871.260000px;}
.y110{bottom:873.600000px;}
.y15b{bottom:882.600000px;}
.y134{bottom:883.860000px;}
.yce{bottom:884.220000px;}
.y4c{bottom:884.670000px;}
.y36{bottom:888.810000px;}
.y180{bottom:898.170000px;}
.y6{bottom:899.610000px;}
.y15a{bottom:900.150000px;}
.y77{bottom:901.860000px;}
.y4b{bottom:902.220000px;}
.y35{bottom:906.450000px;}
.y10f{bottom:909.150000px;}
.y159{bottom:917.790000px;}
.y76{bottom:919.410000px;}
.y4a{bottom:919.860000px;}
.y34{bottom:924.000000px;}
.y10e{bottom:926.790000px;}
.y158{bottom:935.340000px;}
.y5{bottom:935.610000px;}
.y75{bottom:936.960000px;}
.y49{bottom:937.410000px;}
.y33{bottom:941.550000px;}
.y10d{bottom:944.340000px;}
.y17f{bottom:946.410000px;}
.y133{bottom:954.600000px;}
.y48{bottom:954.960000px;}
.y10c{bottom:961.890000px;}
.y74{bottom:963.600000px;}
.y17e{bottom:963.960000px;}
.y32{bottom:968.190000px;}
.y4{bottom:971.700000px;}
.ycd{bottom:972.600000px;}
.y8b{bottom:977.190000px;}
.y10b{bottom:980.340000px;}
.y47{bottom:981.600000px;}
.ycc{bottom:990.150000px;}
.y8a{bottom:994.740000px;}
.y157{bottom:997.530000px;}
.y10a{bottom:997.890000px;}
.y73{bottom:999.150000px;}
.y31{bottom:1004.100000px;}
.ycb{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.y89{bottom:1012.320000px;}
.y156{bottom:1015.110000px;}
.y109{bottom:1015.560000px;}
.y72{bottom:1016.820000px;}
.y46{bottom:1017.180000px;}
.yca{bottom:1025.370000px;}
.y88{bottom:1029.960000px;}
.y108{bottom:1033.110000px;}
.y71{bottom:1034.370000px;}
.y45{bottom:1034.820000px;}
.yc9{bottom:1042.920000px;}
.y87{bottom:1047.510000px;}
.y107{bottom:1050.660000px;}
.y155{bottom:1050.750000px;}
.y70{bottom:1051.920000px;}
.y30{bottom:1052.370000px;}
.yc8{bottom:1060.560000px;}
.y86{bottom:1065.150000px;}
.y154{bottom:1068.300000px;}
.y106{bottom:1069.110000px;}
.y2f{bottom:1069.920000px;}
.y153{bottom:1085.850000px;}
.y105{bottom:1086.750000px;}
.yc7{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y85{bottom:1091.700000px;}
.y104{bottom:1104.300000px;}
.y2d{bottom:1105.110000px;}
.y103{bottom:1121.850000px;}
.y2c{bottom:1122.750000px;}
.y84{bottom:1127.610000px;}
.y102{bottom:1139.400000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x9{left:95.039987px;}
.xb{left:111.239987px;}
.xa{left:122.039987px;}
.x2{left:201.539987px;}
.x7{left:209.819987px;}
.x8{left:216.029987px;}
.x6{left:219.539987px;}
.x5{left:234.029987px;}
.x3{left:792.059987px;}
.x4{left:799.889987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1a{letter-spacing:-0.301867pt;}
.ls21{letter-spacing:-0.216533pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.142933pt;}
.ls1b{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls20{letter-spacing:-0.058667pt;}
.ls19{letter-spacing:-0.056533pt;}
.ls17{letter-spacing:-0.013120pt;}
.ls1c{letter-spacing:-0.005440pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.037120pt;}
.lsf{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.047467pt;}
.ls14{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.100800pt;}
.ls13{letter-spacing:0.103467pt;}
.ls1f{letter-spacing:0.127467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.ls22{letter-spacing:0.161067pt;}
.lsc{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls18{letter-spacing:40.823680pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls15{letter-spacing:56.503680pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws5{word-spacing:-53.440000pt;}
.ws8{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.933867pt;}
.ws18{word-spacing:-11.917867pt;}
.ws3{word-spacing:-11.910933pt;}
.ws17{word-spacing:-11.884267pt;}
.wse{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.857600pt;}
.wsc{word-spacing:-11.800320pt;}
.wsf{word-spacing:-11.793920pt;}
.ws2{word-spacing:-11.756800pt;}
.ws14{word-spacing:-11.751360pt;}
.ws10{word-spacing:-11.743680pt;}
.ws11{word-spacing:-11.700267pt;}
.ws15{word-spacing:-11.698133pt;}
.ws13{word-spacing:-11.620267pt;}
.wsa{word-spacing:-11.613867pt;}
.ws4{word-spacing:-11.590933pt;}
.ws16{word-spacing:-11.540267pt;}
.ws12{word-spacing:-11.454933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
._13{margin-left:-3.527040pt;}
._d{margin-left:-2.565334pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.894944pt;}
._5{width:2.404800pt;}
._8{width:3.660374pt;}
._7{width:4.809600pt;}
._e{width:5.985494pt;}
._2{width:7.053866pt;}
._3{width:7.963201pt;}
._4{width:9.052269pt;}
._6{width:10.292797pt;}
._9{width:12.878933pt;}
._a{width:14.205110pt;}
._12{width:15.575787pt;}
._f{width:16.512960pt;}
._10{width:17.581760pt;}
._14{width:18.568534pt;}
._b{width:19.558933pt;}
._c{width:20.574934pt;}
._15{width:22.255787pt;}
._11{width:23.246400pt;}
._16{width:25.330560pt;}
._1b{width:26.800000pt;}
._17{width:28.109440pt;}
._19{width:41.068480pt;}
._1a{width:42.298240pt;}
._1d{width:48.389760pt;}
._1e{width:49.324267pt;}
._21{width:60.198187pt;}
._18{width:64.421760pt;}
._1f{width:90.495040pt;}
._20{width:91.576320pt;}
._1c{width:341.054080pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yae{bottom:99.306667pt;}
.y6f{bottom:100.026667pt;}
.y44{bottom:100.826667pt;}
.ydf{bottom:102.986667pt;}
.y101{bottom:104.346667pt;}
.y132{bottom:109.066667pt;}
.yad{bottom:114.906667pt;}
.y6e{bottom:115.706667pt;}
.y43{bottom:116.426667pt;}
.y100{bottom:120.026667pt;}
.y19f{bottom:123.306667pt;}
.y131{bottom:124.666667pt;}
.y152{bottom:126.906667pt;}
.yc6{bottom:129.226667pt;}
.yac{bottom:130.586667pt;}
.y28{bottom:131.226667pt;}
.y6d{bottom:131.306667pt;}
.yde{bottom:134.586667pt;}
.y17d{bottom:135.226667pt;}
.yff{bottom:135.626667pt;}
.y19e{bottom:138.906667pt;}
.y42{bottom:140.106667pt;}
.y130{bottom:140.266667pt;}
.y151{bottom:142.506667pt;}
.yc5{bottom:144.826667pt;}
.yab{bottom:146.186667pt;}
.y27{bottom:146.906667pt;}
.y17c{bottom:150.906667pt;}
.yfe{bottom:151.226667pt;}
.y19d{bottom:154.586667pt;}
.y12f{bottom:155.946667pt;}
.y150{bottom:158.106667pt;}
.yc4{bottom:160.426667pt;}
.yaa{bottom:161.866667pt;}
.y26{bottom:162.506667pt;}
.y6c{bottom:162.586667pt;}
.ydd{bottom:163.226667pt;}
.y17b{bottom:166.506667pt;}
.yfd{bottom:166.826667pt;}
.y83{bottom:171.626667pt;}
.y41{bottom:171.706667pt;}
.y25{bottom:178.106667pt;}
.y19c{bottom:178.186667pt;}
.y17a{bottom:182.186667pt;}
.y12e{bottom:187.546667pt;}
.y14f{bottom:190.506667pt;}
.yc3{bottom:192.106667pt;}
.ya9{bottom:193.466667pt;}
.y24{bottom:193.786667pt;}
.y19b{bottom:193.866667pt;}
.y6b{bottom:194.186667pt;}
.y179{bottom:197.786667pt;}
.yfc{bottom:199.226667pt;}
.y40{bottom:200.346667pt;}
.y12d{bottom:203.146667pt;}
.y82{bottom:203.306667pt;}
.y14e{bottom:206.186667pt;}
.yc2{bottom:207.706667pt;}
.ya8{bottom:209.066667pt;}
.y23{bottom:209.386667pt;}
.y6a{bottom:209.866667pt;}
.y178{bottom:213.386667pt;}
.y19a{bottom:217.466667pt;}
.y12c{bottom:218.826667pt;}
.y14d{bottom:221.786667pt;}
.yc1{bottom:223.386667pt;}
.ya7{bottom:224.746667pt;}
.y22{bottom:225.066667pt;}
.y69{bottom:225.466667pt;}
.yfb{bottom:230.906667pt;}
.y81{bottom:231.946667pt;}
.y199{bottom:233.066667pt;}
.y12b{bottom:234.426667pt;}
.yc0{bottom:238.986667pt;}
.ya6{bottom:240.346667pt;}
.y21{bottom:240.666667pt;}
.y177{bottom:245.066667pt;}
.y14c{bottom:245.386667pt;}
.yfa{bottom:246.506667pt;}
.y68{bottom:249.066667pt;}
.ybf{bottom:254.586667pt;}
.ya5{bottom:255.946667pt;}
.y198{bottom:256.746667pt;}
.y12a{bottom:258.106667pt;}
.y176{bottom:260.666667pt;}
.yf9{bottom:262.186667pt;}
.y20{bottom:272.266667pt;}
.y197{bottom:272.346667pt;}
.y175{bottom:276.346667pt;}
.y14b{bottom:277.066667pt;}
.yf8{bottom:277.786667pt;}
.ya4{bottom:279.626667pt;}
.y67{bottom:280.746667pt;}
.ybe{bottom:286.266667pt;}
.y1f{bottom:287.946667pt;}
.y129{bottom:289.706667pt;}
.y174{bottom:291.946667pt;}
.y14a{bottom:292.666667pt;}
.yf7{bottom:293.386667pt;}
.y66{bottom:296.346667pt;}
.ybd{bottom:301.866667pt;}
.y1e{bottom:303.546667pt;}
.y128{bottom:305.306667pt;}
.y173{bottom:307.546667pt;}
.yf6{bottom:309.066667pt;}
.ya3{bottom:311.226667pt;}
.y196{bottom:311.626667pt;}
.y65{bottom:311.946667pt;}
.ybc{bottom:317.546667pt;}
.y1d{bottom:319.226667pt;}
.y172{bottom:323.226667pt;}
.y149{bottom:324.266667pt;}
.ya2{bottom:326.906667pt;}
.y195{bottom:327.226667pt;}
.y64{bottom:327.626667pt;}
.yf5{bottom:332.666667pt;}
.ybb{bottom:333.146667pt;}
.y1c{bottom:334.826667pt;}
.y127{bottom:336.986667pt;}
.y148{bottom:339.946667pt;}
.ya1{bottom:342.506667pt;}
.y63{bottom:343.226667pt;}
.yba{bottom:348.746667pt;}
.y1b{bottom:350.426667pt;}
.y194{bottom:350.906667pt;}
.y126{bottom:352.586667pt;}
.y171{bottom:354.826667pt;}
.y147{bottom:355.546667pt;}
.ya0{bottom:358.106667pt;}
.y62{bottom:358.906667pt;}
.yf4{bottom:364.266667pt;}
.yb9{bottom:364.426667pt;}
.y1a{bottom:366.106667pt;}
.y193{bottom:366.506667pt;}
.y125{bottom:368.266667pt;}
.y170{bottom:370.426667pt;}
.y146{bottom:371.946667pt;}
.y9f{bottom:373.786667pt;}
.y61{bottom:374.506667pt;}
.yf3{bottom:379.946667pt;}
.y19{bottom:381.706667pt;}
.y124{bottom:383.866667pt;}
.y16f{bottom:386.106667pt;}
.y145{bottom:387.546667pt;}
.y192{bottom:390.106667pt;}
.yf2{bottom:395.546667pt;}
.yb8{bottom:396.026667pt;}
.y123{bottom:399.466667pt;}
.y16e{bottom:401.706667pt;}
.y144{bottom:403.226667pt;}
.y9e{bottom:405.386667pt;}
.y18{bottom:405.626667pt;}
.y191{bottom:405.786667pt;}
.y60{bottom:406.106667pt;}
.yf1{bottom:411.226667pt;}
.yb7{bottom:411.706667pt;}
.y16d{bottom:417.386667pt;}
.y143{bottom:418.853333pt;}
.y9d{bottom:421.093333pt;}
.y190{bottom:421.413333pt;}
.y5f{bottom:421.813333pt;}
.yb6{bottom:427.333333pt;}
.y122{bottom:431.173333pt;}
.y16c{bottom:433.013333pt;}
.y142{bottom:434.453333pt;}
.y9c{bottom:436.693333pt;}
.y5e{bottom:437.413333pt;}
.yf0{bottom:442.853333pt;}
.yb5{bottom:442.933333pt;}
.y18f{bottom:445.093333pt;}
.y121{bottom:446.773333pt;}
.y17{bottom:448.613333pt;}
.y141{bottom:450.853333pt;}
.y9b{bottom:452.293333pt;}
.y5d{bottom:453.093333pt;}
.y16b{bottom:456.933333pt;}
.yef{bottom:458.453333pt;}
.yb4{bottom:458.613333pt;}
.y18e{bottom:460.693333pt;}
.y120{bottom:462.453333pt;}
.ydc{bottom:464.293333pt;}
.y16{bottom:464.533333pt;}
.y140{bottom:466.453333pt;}
.y5c{bottom:468.693333pt;}
.yee{bottom:474.133333pt;}
.yb3{bottom:474.213333pt;}
.y18d{bottom:476.293333pt;}
.y11f{bottom:478.053333pt;}
.ydb{bottom:479.893333pt;}
.y13f{bottom:482.133333pt;}
.y9a{bottom:483.973333pt;}
.y5b{bottom:484.293333pt;}
.yed{bottom:489.733333pt;}
.y18c{bottom:491.973333pt;}
.y11e{bottom:493.653333pt;}
.yda{bottom:495.493333pt;}
.y15{bottom:497.413333pt;}
.y13e{bottom:497.733333pt;}
.yb2{bottom:497.813333pt;}
.y99{bottom:499.573333pt;}
.y16a{bottom:499.813333pt;}
.y5a{bottom:499.973333pt;}
.yec{bottom:505.413333pt;}
.y18b{bottom:507.573333pt;}
.yd9{bottom:511.173333pt;}
.y14{bottom:513.013333pt;}
.y98{bottom:515.253333pt;}
.y169{bottom:515.493333pt;}
.y59{bottom:515.573333pt;}
.y11d{bottom:517.333333pt;}
.yeb{bottom:521.013333pt;}
.y18a{bottom:523.253333pt;}
.yd8{bottom:526.773333pt;}
.y13{bottom:528.693333pt;}
.yb1{bottom:529.733333pt;}
.y13d{bottom:530.133333pt;}
.y97{bottom:530.853333pt;}
.y12{bottom:544.293333pt;}
.y96{bottom:546.453333pt;}
.y189{bottom:546.853333pt;}
.y168{bottom:547.093333pt;}
.y58{bottom:547.253333pt;}
.y11c{bottom:548.933333pt;}
.yea{bottom:552.613333pt;}
.yd7{bottom:558.453333pt;}
.y11{bottom:559.893333pt;}
.y13c{bottom:561.733333pt;}
.y188{bottom:562.453333pt;}
.y167{bottom:562.773333pt;}
.y57{bottom:562.853333pt;}
.y11b{bottom:564.613333pt;}
.ye9{bottom:568.293333pt;}
.y95{bottom:570.133333pt;}
.yb0{bottom:572.693333pt;}
.yd6{bottom:574.053333pt;}
.y10{bottom:575.573333pt;}
.y13b{bottom:577.413333pt;}
.y166{bottom:578.373333pt;}
.y56{bottom:578.453333pt;}
.ye8{bottom:583.893333pt;}
.y187{bottom:586.133333pt;}
.y11a{bottom:588.213333pt;}
.yd5{bottom:589.653333pt;}
.yf{bottom:591.173333pt;}
.y13a{bottom:593.013333pt;}
.y165{bottom:593.973333pt;}
.y55{bottom:594.133333pt;}
.ye7{bottom:599.493333pt;}
.yaf{bottom:601.333333pt;}
.y94{bottom:601.733333pt;}
.yd4{bottom:605.333333pt;}
.ye{bottom:606.853333pt;}
.y139{bottom:608.613333pt;}
.y54{bottom:609.733333pt;}
.y164{bottom:610.373333pt;}
.ye6{bottom:615.893333pt;}
.y93{bottom:617.413333pt;}
.y119{bottom:619.813333pt;}
.yd3{bottom:620.933333pt;}
.yd{bottom:622.453333pt;}
.y186{bottom:625.413333pt;}
.y163{bottom:625.973333pt;}
.y80{bottom:628.933333pt;}
.ye5{bottom:631.573333pt;}
.y138{bottom:632.293333pt;}
.y92{bottom:633.013333pt;}
.y53{bottom:633.413333pt;}
.y118{bottom:635.493333pt;}
.yc{bottom:638.053333pt;}
.y185{bottom:641.013333pt;}
.y162{bottom:641.653333pt;}
.y7f{bottom:644.613333pt;}
.ye4{bottom:647.173333pt;}
.y91{bottom:648.613333pt;}
.y3f{bottom:649.413333pt;}
.y117{bottom:651.093333pt;}
.yb{bottom:653.733333pt;}
.y161{bottom:657.253333pt;}
.y7e{bottom:660.213333pt;}
.ye3{bottom:662.773333pt;}
.y137{bottom:664.213333pt;}
.y90{bottom:664.293333pt;}
.y184{bottom:664.613333pt;}
.y3e{bottom:665.013333pt;}
.y52{bottom:665.333333pt;}
.y116{bottom:666.773333pt;}
.ya{bottom:669.333333pt;}
.y160{bottom:673.653333pt;}
.y7d{bottom:675.813333pt;}
.yd2{bottom:676.213333pt;}
.ye2{bottom:679.173333pt;}
.y183{bottom:680.293333pt;}
.y3d{bottom:680.613333pt;}
.y115{bottom:682.373333pt;}
.y15f{bottom:689.253333pt;}
.y7c{bottom:691.493333pt;}
.yd1{bottom:691.813333pt;}
.y9{bottom:693.253333pt;}
.ye1{bottom:694.773333pt;}
.y8f{bottom:695.893333pt;}
.y3c{bottom:696.293333pt;}
.y182{bottom:703.893333pt;}
.y15e{bottom:704.933333pt;}
.y136{bottom:707.093333pt;}
.yd0{bottom:707.493333pt;}
.y51{bottom:708.213333pt;}
.ye0{bottom:710.373333pt;}
.y8e{bottom:711.573333pt;}
.y3b{bottom:711.893333pt;}
.y114{bottom:713.973333pt;}
.y181{bottom:719.573333pt;}
.y15d{bottom:720.533333pt;}
.y135{bottom:722.693333pt;}
.y7b{bottom:723.093333pt;}
.y50{bottom:723.813333pt;}
.y8d{bottom:727.173333pt;}
.y3a{bottom:727.573333pt;}
.y113{bottom:729.653333pt;}
.y8{bottom:736.213333pt;}
.y7a{bottom:738.693333pt;}
.y4f{bottom:739.493333pt;}
.y8c{bottom:742.773333pt;}
.y39{bottom:743.173333pt;}
.y112{bottom:745.253333pt;}
.y15c{bottom:752.853333pt;}
.y79{bottom:754.373333pt;}
.y4e{bottom:755.093333pt;}
.y38{bottom:758.773333pt;}
.y111{bottom:760.933333pt;}
.y7{bottom:767.813333pt;}
.y78{bottom:769.973333pt;}
.ycf{bottom:770.373333pt;}
.y4d{bottom:770.693333pt;}
.y37{bottom:774.453333pt;}
.y110{bottom:776.533333pt;}
.y15b{bottom:784.533333pt;}
.y134{bottom:785.653333pt;}
.yce{bottom:785.973333pt;}
.y4c{bottom:786.373333pt;}
.y36{bottom:790.053333pt;}
.y180{bottom:798.373333pt;}
.y6{bottom:799.653333pt;}
.y15a{bottom:800.133333pt;}
.y77{bottom:801.653333pt;}
.y4b{bottom:801.973333pt;}
.y35{bottom:805.733333pt;}
.y10f{bottom:808.133333pt;}
.y159{bottom:815.813333pt;}
.y76{bottom:817.253333pt;}
.y4a{bottom:817.653333pt;}
.y34{bottom:821.333333pt;}
.y10e{bottom:823.813333pt;}
.y158{bottom:831.413333pt;}
.y5{bottom:831.653333pt;}
.y75{bottom:832.853333pt;}
.y49{bottom:833.253333pt;}
.y33{bottom:836.933333pt;}
.y10d{bottom:839.413333pt;}
.y17f{bottom:841.253333pt;}
.y133{bottom:848.533333pt;}
.y48{bottom:848.853333pt;}
.y10c{bottom:855.013333pt;}
.y74{bottom:856.533333pt;}
.y17e{bottom:856.853333pt;}
.y32{bottom:860.613333pt;}
.y4{bottom:863.733333pt;}
.ycd{bottom:864.533333pt;}
.y8b{bottom:868.613333pt;}
.y10b{bottom:871.413333pt;}
.y47{bottom:872.533333pt;}
.ycc{bottom:880.133333pt;}
.y8a{bottom:884.213333pt;}
.y157{bottom:886.693333pt;}
.y10a{bottom:887.013333pt;}
.y73{bottom:888.133333pt;}
.y31{bottom:892.533333pt;}
.ycb{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.y89{bottom:899.840000pt;}
.y156{bottom:902.320000pt;}
.y109{bottom:902.720000pt;}
.y72{bottom:903.840000pt;}
.y46{bottom:904.160000pt;}
.yca{bottom:911.440000pt;}
.y88{bottom:915.520000pt;}
.y108{bottom:918.320000pt;}
.y71{bottom:919.440000pt;}
.y45{bottom:919.840000pt;}
.yc9{bottom:927.040000pt;}
.y87{bottom:931.120000pt;}
.y107{bottom:933.920000pt;}
.y155{bottom:934.000000pt;}
.y70{bottom:935.040000pt;}
.y30{bottom:935.440000pt;}
.yc8{bottom:942.720000pt;}
.y86{bottom:946.800000pt;}
.y154{bottom:949.600000pt;}
.y106{bottom:950.320000pt;}
.y2f{bottom:951.040000pt;}
.y153{bottom:965.200000pt;}
.y105{bottom:966.000000pt;}
.yc7{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y85{bottom:970.400000pt;}
.y104{bottom:981.600000pt;}
.y2d{bottom:982.320000pt;}
.y103{bottom:997.200000pt;}
.y2c{bottom:998.000000pt;}
.y84{bottom:1002.320000pt;}
.y102{bottom:1012.800000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x9{left:84.479988pt;}
.xb{left:98.879988pt;}
.xa{left:108.479988pt;}
.x2{left:179.146655pt;}
.x7{left:186.506655pt;}
.x8{left:192.026655pt;}
.x6{left:195.146655pt;}
.x5{left:208.026655pt;}
.x3{left:704.053322pt;}
.x4{left:711.013322pt;}
}




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