
    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_ec7ca8293b9d160cb8784980.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_804c6d829b915a1a80cf107c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6a50ec82c81614ba84bdb903.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8e300b80ca8f8db2104ef07c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9fa9a359c9b58c6b8633fd9f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cf5d18061184f7a3c00b56d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_093aa9ce0785ceea37d11f00.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_512f9d81aa6c909dd96eb9cf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f79a3ba823dec9fa5e3205fe.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.066406;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:ffb;src:url('chunks/assets/font_baa31af6c5d01c23142c7911.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.066406;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:ffc;src:url('chunks/assets/font_6b16fe9a819bfd8368c74c95.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.020996;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:ffd;src:url('chunks/assets/font_062e6f21b22dc92c8acc6f58.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.020996;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:ffe;src:url('chunks/assets/font_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.853516;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:fff;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-12.960000px;}
.va{vertical-align:-4.320000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.440000px;}
.v2{vertical-align:2.880000px;}
.v6{vertical-align:12.960000px;}
.vb{vertical-align:14.400000px;}
.v5{vertical-align:21.600000px;}
.v8{vertical-align:30.240000px;}
.v9{vertical-align:34.560000px;}
.v7{vertical-align:36.000000px;}
.vc{vertical-align:51.840000px;}
.ls5{letter-spacing:-2.880000px;}
.ls39{letter-spacing:-2.394000px;}
.ls18{letter-spacing:-1.422000px;}
.ls8{letter-spacing:-0.942000px;}
.ls11{letter-spacing:-0.720000px;}
.ls32{letter-spacing:-0.555600px;}
.ls19{letter-spacing:-0.550200px;}
.lsd{letter-spacing:-0.518400px;}
.lsc{letter-spacing:-0.486600px;}
.lsb{letter-spacing:-0.466800px;}
.ls31{letter-spacing:-0.452400px;}
.lse{letter-spacing:-0.360000px;}
.ls36{letter-spacing:-0.337200px;}
.ls7{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.288000px;}
.ls3a{letter-spacing:-0.234600px;}
.ls38{letter-spacing:-0.222000px;}
.ls17{letter-spacing:-0.020160px;}
.lsf{letter-spacing:-0.015600px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.015840px;}
.ls13{letter-spacing:0.020160px;}
.ls10{letter-spacing:0.250800px;}
.ls33{letter-spacing:0.258000px;}
.ls37{letter-spacing:0.279600px;}
.ls34{letter-spacing:0.341400px;}
.ls16{letter-spacing:0.423360px;}
.ls23{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.466800px;}
.ls30{letter-spacing:0.486600px;}
.ls9{letter-spacing:0.498000px;}
.ls1{letter-spacing:0.519840px;}
.ls35{letter-spacing:0.600000px;}
.ls2f{letter-spacing:0.665280px;}
.ls28{letter-spacing:0.691200px;}
.ls2{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.892800px;}
.ls3b{letter-spacing:0.900000px;}
.ls1d{letter-spacing:0.944640px;}
.ls27{letter-spacing:0.987840px;}
.ls1e{letter-spacing:1.048320px;}
.ls1f{letter-spacing:1.094400px;}
.ls0{letter-spacing:2.208000px;}
.ls2b{letter-spacing:2.504640px;}
.ls22{letter-spacing:4.062240px;}
.ls2a{letter-spacing:4.599360px;}
.ls1c{letter-spacing:4.665600px;}
.ls1b{letter-spacing:6.226560px;}
.ls12{letter-spacing:9.106560px;}
.ls21{letter-spacing:11.262240px;}
.ls25{letter-spacing:12.175200px;}
.ls14{letter-spacing:13.426560px;}
.ls1a{letter-spacing:16.306560px;}
.ls20{letter-spacing:23.760000px;}
.ls15{letter-spacing:26.386560px;}
.ls2c{letter-spacing:26.506560px;}
.ls2d{letter-spacing:40.786560px;}
.ls29{letter-spacing:60.134400px;}
.ls2e{letter-spacing:78.949440px;}
.ls26{letter-spacing:79.519680px;}
.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;}
}
.ws16{word-spacing:-60.480000px;}
.ws3{word-spacing:-36.000000px;}
.ws2{word-spacing:-35.712000px;}
.wse{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.254600px;}
.ws14{word-spacing:-15.606600px;}
.ws15{word-spacing:-15.586800px;}
.ws13{word-spacing:-15.543360px;}
.ws6{word-spacing:-15.120000px;}
.wsf{word-spacing:-15.099840px;}
.ws7{word-spacing:-14.653200px;}
.ws10{word-spacing:-14.633400px;}
.ws1d{word-spacing:-13.905600px;}
.ws5{word-spacing:-13.680000px;}
.ws17{word-spacing:-13.305600px;}
.ws1e{word-spacing:-12.968400px;}
.ws18{word-spacing:-12.853200px;}
.ws19{word-spacing:-12.750000px;}
.wsb{word-spacing:-12.600000px;}
.ws25{word-spacing:-12.545280px;}
.ws0{word-spacing:-12.240000px;}
.wsa{word-spacing:-12.130800px;}
.ws1{word-spacing:-11.880000px;}
.ws9{word-spacing:-11.864400px;}
.ws24{word-spacing:-11.645400px;}
.ws11{word-spacing:-11.160000px;}
.ws12{word-spacing:-10.609800px;}
.ws1c{word-spacing:-9.528600px;}
.ws1f{word-spacing:-9.466800px;}
.ws1a{word-spacing:-9.187200px;}
.ws20{word-spacing:-8.965200px;}
.wsd{word-spacing:0.000000px;}
.ws23{word-spacing:3.528000px;}
.ws21{word-spacing:3.555840px;}
.ws1b{word-spacing:6.574320px;}
.wsc{word-spacing:29.772960px;}
.ws8{word-spacing:29.773080px;}
.ws22{word-spacing:48.713760px;}
._29{margin-left:-25.574400px;}
._2a{margin-left:-23.926295px;}
._7{margin-left:-8.664000px;}
._3{margin-left:-6.281382px;}
._6{margin-left:-4.794496px;}
._5{margin-left:-3.632441px;}
._0{margin-left:-2.056199px;}
._2{margin-left:-1.028402px;}
._1{width:1.087793px;}
._8{width:3.074136px;}
._4{width:4.561825px;}
._b{width:5.728882px;}
._c{width:6.785444px;}
._d{width:8.639184px;}
._13{width:9.695833px;}
._17{width:10.757564px;}
._f{width:12.355957px;}
._1a{width:13.449876px;}
._e{width:15.103563px;}
._14{width:16.452616px;}
._15{width:17.720886px;}
._16{width:19.232398px;}
._1c{width:20.902522px;}
._1d{width:21.933120px;}
._19{width:23.162993px;}
._18{width:24.252601px;}
._23{width:25.622349px;}
._9{width:26.632250px;}
._a{width:28.010419px;}
._1e{width:29.018748px;}
._10{width:30.228679px;}
._11{width:31.404625px;}
._1b{width:33.626396px;}
._12{width:35.199602px;}
._21{width:37.195200px;}
._26{width:38.269924px;}
._20{width:41.912398px;}
._1f{width:43.001401px;}
._22{width:44.755200px;}
._25{width:45.964800px;}
._2c{width:50.561159px;}
._2d{width:52.012921px;}
._30{width:62.113807px;}
._2b{width:95.492464px;}
._2f{width:99.096531px;}
._2e{width:100.608308px;}
._27{width:110.678400px;}
._28{width:116.484359px;}
._24{width:370.106400px;}
.fc4{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc3{color:rgb(0,0,204);}
.fc1{color:rgb(51,51,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs6{font-size:44.640000px;}
.fs1{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.520000px;}
.y94{bottom:2.880000px;}
.ya3{bottom:3.600000px;}
.yc{bottom:5.760000px;}
.y7c{bottom:5.760150px;}
.y9a{bottom:8.640000px;}
.ya2{bottom:9.000000px;}
.y10a{bottom:9.720000px;}
.yaf{bottom:10.080000px;}
.y79{bottom:10.475850px;}
.y9{bottom:10.476000px;}
.y4{bottom:13.716000px;}
.yab{bottom:15.120000px;}
.y9b{bottom:15.480000px;}
.yb3{bottom:15.510000px;}
.y7{bottom:16.560000px;}
.y10b{bottom:16.605000px;}
.y3{bottom:19.116000px;}
.yb{bottom:19.440000px;}
.y7b{bottom:19.440150px;}
.yac{bottom:21.600000px;}
.ya1{bottom:21.960000px;}
.yb2{bottom:21.990000px;}
.y107{bottom:23.400000px;}
.yaa{bottom:28.080000px;}
.ya0{bottom:28.440000px;}
.ya5{bottom:28.470000px;}
.y6{bottom:30.240000px;}
.ya{bottom:33.480000px;}
.y7a{bottom:33.480150px;}
.yb5{bottom:34.920000px;}
.yb6{bottom:41.400000px;}
.ya6{bottom:41.430000px;}
.y5{bottom:43.920000px;}
.y108{bottom:44.280000px;}
.y74{bottom:80.316000px;}
.ybb{bottom:87.876000px;}
.yd6{bottom:96.516000px;}
.y103{bottom:97.236000px;}
.y73{bottom:98.316000px;}
.y42{bottom:98.676000px;}
.yba{bottom:105.876000px;}
.y41{bottom:112.356000px;}
.yd5{bottom:114.516000px;}
.y72{bottom:116.316000px;}
.y13a{bottom:118.836000px;}
.yb9{bottom:123.876000px;}
.y102{bottom:124.596000px;}
.y40{bottom:126.396000px;}
.yd4{bottom:132.552000px;}
.y71{bottom:134.712000px;}
.yb8{bottom:141.912000px;}
.y139{bottom:146.592000px;}
.y70{bottom:152.715000px;}
.y3f{bottom:153.795000px;}
.yd3{bottom:155.955000px;}
.y138{bottom:160.275000px;}
.y3e{bottom:167.835000px;}
.yb7{bottom:168.195000px;}
.y6f{bottom:170.715000px;}
.y137{bottom:173.955000px;}
.y3d{bottom:181.515000px;}
.yd2{bottom:183.315000px;}
.y136{bottom:187.995000px;}
.y6e{bottom:188.715000px;}
.y3c{bottom:195.195000px;}
.yb4{bottom:200.955000px;}
.y135{bottom:201.675000px;}
.y6d{bottom:207.075000px;}
.y3b{bottom:209.235000px;}
.y134{bottom:215.355000px;}
.y101{bottom:216.075000px;}
.y3a{bottom:223.635000px;}
.y6c{bottom:233.355000px;}
.y133{bottom:238.755000px;}
.y39{bottom:240.195000px;}
.y100{bottom:243.435000px;}
.yb1{bottom:253.515000px;}
.y38{bottom:254.235000px;}
.y6b{bottom:269.385000px;}
.y37{bottom:269.745000px;}
.y132{bottom:274.785000px;}
.y36{bottom:285.225000px;}
.y6a{bottom:287.385000px;}
.yb0{bottom:293.145000px;}
.y35{bottom:300.705000px;}
.y69{bottom:305.745000px;}
.y131{bottom:311.145000px;}
.y68{bottom:323.745000px;}
.yff{bottom:328.785000px;}
.y130{bottom:329.145000px;}
.yae{bottom:332.745000px;}
.y67{bottom:341.745000px;}
.y12f{bottom:347.505000px;}
.y66{bottom:360.105000px;}
.yad{bottom:361.545000px;}
.yfe{bottom:363.705000px;}
.y12e{bottom:365.505000px;}
.y34{bottom:367.665000px;}
.yfd{bottom:371.265000px;}
.y65{bottom:378.105000px;}
.y12d{bottom:383.505000px;}
.y33{bottom:385.665000px;}
.yfc{bottom:394.665000px;}
.y64{bottom:396.105000px;}
.ya9{bottom:401.190000px;}
.y12c{bottom:401.910000px;}
.y32{bottom:403.710000px;}
.y63{bottom:414.150000px;}
.yfb{bottom:414.870000px;}
.y12b{bottom:419.910000px;}
.y31{bottom:421.710000px;}
.y62{bottom:432.510000px;}
.yfa{bottom:436.470000px;}
.y12a{bottom:437.910000px;}
.y30{bottom:440.070000px;}
.ya8{bottom:440.430000px;}
.yf9{bottom:445.830000px;}
.y61{bottom:450.510000px;}
.y129{bottom:456.270000px;}
.y2f{bottom:458.070000px;}
.yf8{bottom:459.870000px;}
.yf7{bottom:467.430000px;}
.y60{bottom:468.510000px;}
.y128{bottom:474.270000px;}
.y2e{bottom:476.070000px;}
.ya7{bottom:480.030000px;}
.y5f{bottom:486.870000px;}
.yf6{bottom:491.190000px;}
.y127{bottom:492.270000px;}
.y2d{bottom:494.430000px;}
.y5e{bottom:504.870000px;}
.ya4{bottom:506.670000px;}
.y126{bottom:510.270000px;}
.yf5{bottom:511.350000px;}
.y2c{bottom:516.390000px;}
.y5d{bottom:522.870000px;}
.y125{bottom:528.630000px;}
.yf4{bottom:531.870000px;}
.y5c{bottom:541.260000px;}
.y124{bottom:546.660000px;}
.yf3{bottom:552.060000px;}
.y2b{bottom:556.740000px;}
.y5b{bottom:559.260000px;}
.y123{bottom:564.660000px;}
.yf2{bottom:573.660000px;}
.y5a{bottom:577.260000px;}
.y122{bottom:583.020000px;}
.y9f{bottom:588.060000px;}
.y2a{bottom:592.020000px;}
.yf1{bottom:593.820000px;}
.y59{bottom:595.620000px;}
.y29{bottom:609.300000px;}
.y121{bottom:610.380000px;}
.y58{bottom:613.620000px;}
.y28{bottom:626.220000px;}
.y57{bottom:631.620000px;}
.yf0{bottom:633.420000px;}
.y9e{bottom:636.660000px;}
.y27{bottom:641.700000px;}
.y120{bottom:646.740000px;}
.y56{bottom:649.620000px;}
.yef{bottom:653.220000px;}
.y26{bottom:657.180000px;}
.y9d{bottom:657.540000px;}
.y11f{bottom:664.740000px;}
.y55{bottom:668.010000px;}
.y9c{bottom:671.970000px;}
.y25{bottom:672.690000px;}
.yee{bottom:673.050000px;}
.yd1{bottom:682.410000px;}
.y11e{bottom:682.770000px;}
.y54{bottom:686.010000px;}
.y99{bottom:686.730000px;}
.yed{bottom:693.210000px;}
.y24{bottom:694.290000px;}
.yd0{bottom:700.770000px;}
.y11d{bottom:701.130000px;}
.y53{bottom:704.010000px;}
.y23{bottom:709.770000px;}
.y98{bottom:713.370000px;}
.yec{bottom:714.810000px;}
.ycf{bottom:718.770000px;}
.y11c{bottom:719.130000px;}
.y52{bottom:722.370000px;}
.y22{bottom:725.250000px;}
.y97{bottom:727.770000px;}
.y154{bottom:731.730000px;}
.yce{bottom:736.770000px;}
.y11b{bottom:737.130000px;}
.y51{bottom:740.370000px;}
.y96{bottom:742.170000px;}
.yeb{bottom:743.610000px;}
.y21{bottom:746.850000px;}
.ycd{bottom:755.130000px;}
.y11a{bottom:755.490000px;}
.y95{bottom:756.930000px;}
.y50{bottom:758.370000px;}
.y153{bottom:762.330000px;}
.y20{bottom:762.690000px;}
.yea{bottom:763.410000px;}
.y93{bottom:771.330000px;}
.y119{bottom:773.490000px;}
.y4f{bottom:776.730000px;}
.y1f{bottom:778.170000px;}
.ye9{bottom:783.210000px;}
.y92{bottom:786.090000px;}
.y118{bottom:791.490000px;}
.y152{bottom:792.930000px;}
.y1e{bottom:793.650000px;}
.y4e{bottom:794.730000px;}
.y91{bottom:800.535000px;}
.ye8{bottom:803.055000px;}
.ycc{bottom:803.775000px;}
.y1d{bottom:809.175000px;}
.y117{bottom:809.535000px;}
.y151{bottom:809.895000px;}
.y4d{bottom:812.775000px;}
.y90{bottom:815.295000px;}
.ycb{bottom:822.135000px;}
.y150{bottom:824.295000px;}
.y1c{bottom:824.655000px;}
.ye7{bottom:825.015000px;}
.y116{bottom:827.895000px;}
.y4c{bottom:831.135000px;}
.y8f{bottom:838.695000px;}
.y1b{bottom:840.135000px;}
.y14f{bottom:841.575000px;}
.y115{bottom:845.895000px;}
.y4b{bottom:849.135000px;}
.ye6{bottom:853.815000px;}
.y1a{bottom:855.615000px;}
.yca{bottom:858.135000px;}
.y14e{bottom:858.855000px;}
.y8e{bottom:862.095000px;}
.y114{bottom:863.895000px;}
.y4a{bottom:867.135000px;}
.y19{bottom:871.095000px;}
.ye5{bottom:873.615000px;}
.y14d{bottom:876.135000px;}
.y8d{bottom:879.375000px;}
.yc9{bottom:880.095000px;}
.y113{bottom:882.255000px;}
.y49{bottom:885.135000px;}
.y18{bottom:886.575000px;}
.y14c{bottom:893.055000px;}
.ye4{bottom:893.415000px;}
.y8c{bottom:896.655000px;}
.y112{bottom:900.255000px;}
.y17{bottom:902.415000px;}
.y48{bottom:903.495000px;}
.yc8{bottom:907.095000px;}
.y14b{bottom:910.335000px;}
.ye3{bottom:913.215000px;}
.y8b{bottom:913.935000px;}
.y16{bottom:917.895000px;}
.y111{bottom:918.255000px;}
.y47{bottom:921.495000px;}
.yc7{bottom:925.095000px;}
.y14a{bottom:927.615000px;}
.y8a{bottom:931.215000px;}
.ye2{bottom:933.045000px;}
.y15{bottom:933.405000px;}
.y110{bottom:936.645000px;}
.y46{bottom:939.525000px;}
.yc6{bottom:943.485000px;}
.y149{bottom:944.925000px;}
.y89{bottom:948.525000px;}
.y14{bottom:948.885000px;}
.y10f{bottom:954.645000px;}
.ye1{bottom:955.005000px;}
.y45{bottom:957.885000px;}
.yc5{bottom:961.485000px;}
.y148{bottom:962.205000px;}
.y13{bottom:964.365000px;}
.y88{bottom:965.805000px;}
.y10e{bottom:972.645000px;}
.y44{bottom:975.885000px;}
.y147{bottom:976.245000px;}
.yc4{bottom:979.485000px;}
.y12{bottom:979.845000px;}
.y87{bottom:983.085000px;}
.ye0{bottom:983.805000px;}
.y10d{bottom:991.005000px;}
.y43{bottom:993.885000px;}
.y11{bottom:995.325000px;}
.y146{bottom:996.045000px;}
.yc3{bottom:997.845000px;}
.y86{bottom:1000.365000px;}
.ydf{bottom:1003.605000px;}
.y145{bottom:1010.085000px;}
.y10c{bottom:1016.925000px;}
.y85{bottom:1017.285000px;}
.yc2{bottom:1019.445000px;}
.yde{bottom:1023.405000px;}
.y144{bottom:1023.765000px;}
.y10{bottom:1029.525000px;}
.y84{bottom:1034.565000px;}
.y143{bottom:1037.445000px;}
.ydd{bottom:1043.205000px;}
.yc1{bottom:1046.445000px;}
.y109{bottom:1050.045000px;}
.y142{bottom:1051.485000px;}
.y83{bottom:1051.845000px;}
.ydc{bottom:1063.005000px;}
.yc0{bottom:1064.805000px;}
.y141{bottom:1065.165000px;}
.y82{bottom:1069.170000px;}
.yf{bottom:1070.970000px;}
.y106{bottom:1078.890000px;}
.ybf{bottom:1082.850000px;}
.ydb{bottom:1085.010000px;}
.y81{bottom:1086.450000px;}
.y140{bottom:1092.930000px;}
.ybe{bottom:1100.850000px;}
.y80{bottom:1104.450000px;}
.y13f{bottom:1106.610000px;}
.ye{bottom:1112.370000px;}
.yda{bottom:1113.810000px;}
.ybd{bottom:1119.210000px;}
.y13e{bottom:1120.290000px;}
.y7f{bottom:1122.810000px;}
.yd9{bottom:1133.610000px;}
.y13d{bottom:1134.330000px;}
.y105{bottom:1135.050000px;}
.ybc{bottom:1137.210000px;}
.y7e{bottom:1140.810000px;}
.y13c{bottom:1148.010000px;}
.y104{bottom:1149.450000px;}
.yd8{bottom:1153.410000px;}
.yd{bottom:1153.770000px;}
.y7d{bottom:1158.810000px;}
.y13b{bottom:1161.690000px;}
.yd7{bottom:1173.210000px;}
.y78{bottom:1176.450000px;}
.y77{bottom:1195.530000px;}
.y76{bottom:1214.640000px;}
.y2{bottom:1217.520000px;}
.y75{bottom:1233.360000px;}
.y1{bottom:1234.800000px;}
.h10{height:13.680000px;}
.h11{height:13.716000px;}
.h12{height:14.040000px;}
.h13{height:25.920000px;}
.h17{height:28.080000px;}
.h2a{height:28.116000px;}
.h14{height:31.169531px;}
.h16{height:31.496484px;}
.he{height:33.180469px;}
.hd{height:33.528516px;}
.h25{height:35.194219px;}
.ha{height:38.207812px;}
.h15{height:38.520000px;}
.h1a{height:38.556000px;}
.hc{height:38.608594px;}
.h19{height:38.880000px;}
.h1b{height:38.916000px;}
.h5{height:39.166875px;}
.h3{height:42.229688px;}
.h2{height:42.672656px;}
.hf{height:44.031094px;}
.h9{height:44.406562px;}
.h6{height:44.640000px;}
.h2b{height:44.798906px;}
.h8{height:46.736719px;}
.h2c{height:49.848750px;}
.h21{height:50.970938px;}
.h1c{height:51.840000px;}
.h18{height:51.876000px;}
.h20{height:53.850937px;}
.h1f{height:53.970938px;}
.h4{height:55.080000px;}
.h1d{height:55.290938px;}
.h29{height:55.440000px;}
.h28{height:55.987031px;}
.h1e{height:56.794219px;}
.h26{height:65.370938px;}
.h22{height:71.194219px;}
.h23{height:72.469688px;}
.hb{height:83.453906px;}
.h24{height:85.530937px;}
.h27{height:87.034219px;}
.h7{height:100.546875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:64.476000px;}
.wa{width:70.596000px;}
.w7{width:74.196000px;}
.w9{width:75.276000px;}
.w8{width:76.320000px;}
.w5{width:115.596000px;}
.wc{width:126.396000px;}
.w2{width:194.475000px;}
.wd{width:212.145000px;}
.w3{width:243.075000px;}
.w6{width:254.985000px;}
.w1{width:892.500000px;}
.w4{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x21{left:7.920000px;}
.x1f{left:9.000000px;}
.x4{left:10.800000px;}
.x2e{left:12.603000px;}
.x1d{left:13.680000px;}
.x2f{left:14.760000px;}
.x18{left:16.200000px;}
.x2c{left:17.280000px;}
.x25{left:18.360000px;}
.x1b{left:19.440000px;}
.x28{left:20.883000px;}
.x24{left:22.320000px;}
.x2d{left:23.763000px;}
.x19{left:24.840000px;}
.x2b{left:26.640000px;}
.x15{left:27.720000px;}
.x1c{left:28.800000px;}
.x30{left:30.240000px;}
.x1a{left:32.400000px;}
.x22{left:35.640000px;}
.x1e{left:37.080000px;}
.x20{left:40.320000px;}
.x40{left:42.525000px;}
.x41{left:43.605000px;}
.x23{left:45.750000px;}
.x14{left:67.356000px;}
.x5{left:70.236000px;}
.x38{left:73.475987px;}
.xa{left:81.036000px;}
.x42{left:82.845000px;}
.x12{left:91.475987px;}
.x7{left:99.756000px;}
.x45{left:102.275987px;}
.x17{left:106.590000px;}
.x34{left:109.115987px;}
.x13{left:144.071987px;}
.x27{left:145.872000px;}
.x26{left:150.554987px;}
.x6{left:159.555000px;}
.x31{left:164.234987px;}
.x3b{left:173.594987px;}
.xb{left:177.915000px;}
.x16{left:183.675000px;}
.x39{left:197.714987px;}
.x8{left:202.035000px;}
.x29{left:222.915000px;}
.x35{left:236.624987px;}
.x36{left:238.064987px;}
.x37{left:258.224987px;}
.x11{left:260.384987px;}
.x2a{left:298.905000px;}
.x9{left:326.670000px;}
.x10{left:370.589987px;}
.x1{left:382.470000px;}
.x2{left:430.020000px;}
.x3a{left:433.259987px;}
.x3c{left:435.059987px;}
.xf{left:446.579987px;}
.xd{left:457.380000px;}
.xc{left:468.180000px;}
.x3e{left:470.700000px;}
.x3{left:473.580000px;}
.x44{left:489.419987px;}
.xe{left:536.970000px;}
.x33{left:538.409987px;}
.x43{left:569.009987px;}
.x3d{left:571.529987px;}
.x3f{left:597.810000px;}
.x32{left:820.409987px;}
@media print{
.v1{vertical-align:-11.520000pt;}
.va{vertical-align:-3.840000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.280000pt;}
.v2{vertical-align:2.560000pt;}
.v6{vertical-align:11.520000pt;}
.vb{vertical-align:12.800000pt;}
.v5{vertical-align:19.200000pt;}
.v8{vertical-align:26.880000pt;}
.v9{vertical-align:30.720000pt;}
.v7{vertical-align:32.000000pt;}
.vc{vertical-align:46.080000pt;}
.ls5{letter-spacing:-2.560000pt;}
.ls39{letter-spacing:-2.128000pt;}
.ls18{letter-spacing:-1.264000pt;}
.ls8{letter-spacing:-0.837333pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls32{letter-spacing:-0.493867pt;}
.ls19{letter-spacing:-0.489067pt;}
.lsd{letter-spacing:-0.460800pt;}
.lsc{letter-spacing:-0.432533pt;}
.lsb{letter-spacing:-0.414933pt;}
.ls31{letter-spacing:-0.402133pt;}
.lse{letter-spacing:-0.320000pt;}
.ls36{letter-spacing:-0.299733pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls3a{letter-spacing:-0.208533pt;}
.ls38{letter-spacing:-0.197333pt;}
.ls17{letter-spacing:-0.017920pt;}
.lsf{letter-spacing:-0.013867pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.014080pt;}
.ls13{letter-spacing:0.017920pt;}
.ls10{letter-spacing:0.222933pt;}
.ls33{letter-spacing:0.229333pt;}
.ls37{letter-spacing:0.248533pt;}
.ls34{letter-spacing:0.303467pt;}
.ls16{letter-spacing:0.376320pt;}
.ls23{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.414933pt;}
.ls30{letter-spacing:0.432533pt;}
.ls9{letter-spacing:0.442667pt;}
.ls1{letter-spacing:0.462080pt;}
.ls35{letter-spacing:0.533333pt;}
.ls2f{letter-spacing:0.591360pt;}
.ls28{letter-spacing:0.614400pt;}
.ls2{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.793600pt;}
.ls3b{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:0.839680pt;}
.ls27{letter-spacing:0.878080pt;}
.ls1e{letter-spacing:0.931840pt;}
.ls1f{letter-spacing:0.972800pt;}
.ls0{letter-spacing:1.962667pt;}
.ls2b{letter-spacing:2.226347pt;}
.ls22{letter-spacing:3.610880pt;}
.ls2a{letter-spacing:4.088320pt;}
.ls1c{letter-spacing:4.147200pt;}
.ls1b{letter-spacing:5.534720pt;}
.ls12{letter-spacing:8.094720pt;}
.ls21{letter-spacing:10.010880pt;}
.ls25{letter-spacing:10.822400pt;}
.ls14{letter-spacing:11.934720pt;}
.ls1a{letter-spacing:14.494720pt;}
.ls20{letter-spacing:21.120000pt;}
.ls15{letter-spacing:23.454720pt;}
.ls2c{letter-spacing:23.561387pt;}
.ls2d{letter-spacing:36.254720pt;}
.ls29{letter-spacing:53.452800pt;}
.ls2e{letter-spacing:70.177280pt;}
.ls26{letter-spacing:70.684160pt;}
.ws16{word-spacing:-53.760000pt;}
.ws3{word-spacing:-32.000000pt;}
.ws2{word-spacing:-31.744000pt;}
.wse{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.448533pt;}
.ws14{word-spacing:-13.872533pt;}
.ws15{word-spacing:-13.854933pt;}
.ws13{word-spacing:-13.816320pt;}
.ws6{word-spacing:-13.440000pt;}
.wsf{word-spacing:-13.422080pt;}
.ws7{word-spacing:-13.025067pt;}
.ws10{word-spacing:-13.007467pt;}
.ws1d{word-spacing:-12.360533pt;}
.ws5{word-spacing:-12.160000pt;}
.ws17{word-spacing:-11.827200pt;}
.ws1e{word-spacing:-11.527467pt;}
.ws18{word-spacing:-11.425067pt;}
.ws19{word-spacing:-11.333333pt;}
.wsb{word-spacing:-11.200000pt;}
.ws25{word-spacing:-11.151360pt;}
.ws0{word-spacing:-10.880000pt;}
.wsa{word-spacing:-10.782933pt;}
.ws1{word-spacing:-10.560000pt;}
.ws9{word-spacing:-10.546133pt;}
.ws24{word-spacing:-10.351467pt;}
.ws11{word-spacing:-9.920000pt;}
.ws12{word-spacing:-9.430933pt;}
.ws1c{word-spacing:-8.469867pt;}
.ws1f{word-spacing:-8.414933pt;}
.ws1a{word-spacing:-8.166400pt;}
.ws20{word-spacing:-7.969067pt;}
.wsd{word-spacing:0.000000pt;}
.ws23{word-spacing:3.136000pt;}
.ws21{word-spacing:3.160747pt;}
.ws1b{word-spacing:5.843840pt;}
.wsc{word-spacing:26.464853pt;}
.ws8{word-spacing:26.464960pt;}
.ws22{word-spacing:43.301120pt;}
._29{margin-left:-22.732800pt;}
._2a{margin-left:-21.267818pt;}
._7{margin-left:-7.701333pt;}
._3{margin-left:-5.583450pt;}
._6{margin-left:-4.261774pt;}
._5{margin-left:-3.228837pt;}
._0{margin-left:-1.827732pt;}
._2{margin-left:-0.914135pt;}
._1{width:0.966927pt;}
._8{width:2.732565pt;}
._4{width:4.054956pt;}
._b{width:5.092339pt;}
._c{width:6.031506pt;}
._d{width:7.679275pt;}
._13{width:8.618518pt;}
._17{width:9.562279pt;}
._f{width:10.983073pt;}
._1a{width:11.955446pt;}
._e{width:13.425389pt;}
._14{width:14.624548pt;}
._15{width:15.751898pt;}
._16{width:17.095465pt;}
._1c{width:18.580019pt;}
._1d{width:19.496107pt;}
._19{width:20.589327pt;}
._18{width:21.557868pt;}
._23{width:22.775421pt;}
._9{width:23.673111pt;}
._a{width:24.898150pt;}
._1e{width:25.794442pt;}
._10{width:26.869937pt;}
._11{width:27.915222pt;}
._1b{width:29.890130pt;}
._12{width:31.288535pt;}
._21{width:33.062400pt;}
._26{width:34.017710pt;}
._20{width:37.255465pt;}
._1f{width:38.223468pt;}
._22{width:39.782400pt;}
._25{width:40.857600pt;}
._2c{width:44.943252pt;}
._2d{width:46.233708pt;}
._30{width:55.212273pt;}
._2b{width:84.882191pt;}
._2f{width:88.085805pt;}
._2e{width:89.429607pt;}
._27{width:98.380800pt;}
._28{width:103.541652pt;}
._24{width:328.983467pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:39.680000pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.240000pt;}
.y94{bottom:2.560000pt;}
.ya3{bottom:3.200000pt;}
.yc{bottom:5.120000pt;}
.y7c{bottom:5.120133pt;}
.y9a{bottom:7.680000pt;}
.ya2{bottom:8.000000pt;}
.y10a{bottom:8.640000pt;}
.yaf{bottom:8.960000pt;}
.y79{bottom:9.311867pt;}
.y9{bottom:9.312000pt;}
.y4{bottom:12.192000pt;}
.yab{bottom:13.440000pt;}
.y9b{bottom:13.760000pt;}
.yb3{bottom:13.786667pt;}
.y7{bottom:14.720000pt;}
.y10b{bottom:14.760000pt;}
.y3{bottom:16.992000pt;}
.yb{bottom:17.280000pt;}
.y7b{bottom:17.280133pt;}
.yac{bottom:19.200000pt;}
.ya1{bottom:19.520000pt;}
.yb2{bottom:19.546667pt;}
.y107{bottom:20.800000pt;}
.yaa{bottom:24.960000pt;}
.ya0{bottom:25.280000pt;}
.ya5{bottom:25.306667pt;}
.y6{bottom:26.880000pt;}
.ya{bottom:29.760000pt;}
.y7a{bottom:29.760133pt;}
.yb5{bottom:31.040000pt;}
.yb6{bottom:36.800000pt;}
.ya6{bottom:36.826667pt;}
.y5{bottom:39.040000pt;}
.y108{bottom:39.360000pt;}
.y74{bottom:71.392000pt;}
.ybb{bottom:78.112000pt;}
.yd6{bottom:85.792000pt;}
.y103{bottom:86.432000pt;}
.y73{bottom:87.392000pt;}
.y42{bottom:87.712000pt;}
.yba{bottom:94.112000pt;}
.y41{bottom:99.872000pt;}
.yd5{bottom:101.792000pt;}
.y72{bottom:103.392000pt;}
.y13a{bottom:105.632000pt;}
.yb9{bottom:110.112000pt;}
.y102{bottom:110.752000pt;}
.y40{bottom:112.352000pt;}
.yd4{bottom:117.824000pt;}
.y71{bottom:119.744000pt;}
.yb8{bottom:126.144000pt;}
.y139{bottom:130.304000pt;}
.y70{bottom:135.746667pt;}
.y3f{bottom:136.706667pt;}
.yd3{bottom:138.626667pt;}
.y138{bottom:142.466667pt;}
.y3e{bottom:149.186667pt;}
.yb7{bottom:149.506667pt;}
.y6f{bottom:151.746667pt;}
.y137{bottom:154.626667pt;}
.y3d{bottom:161.346667pt;}
.yd2{bottom:162.946667pt;}
.y136{bottom:167.106667pt;}
.y6e{bottom:167.746667pt;}
.y3c{bottom:173.506667pt;}
.yb4{bottom:178.626667pt;}
.y135{bottom:179.266667pt;}
.y6d{bottom:184.066667pt;}
.y3b{bottom:185.986667pt;}
.y134{bottom:191.426667pt;}
.y101{bottom:192.066667pt;}
.y3a{bottom:198.786667pt;}
.y6c{bottom:207.426667pt;}
.y133{bottom:212.226667pt;}
.y39{bottom:213.506667pt;}
.y100{bottom:216.386667pt;}
.yb1{bottom:225.346667pt;}
.y38{bottom:225.986667pt;}
.y6b{bottom:239.453333pt;}
.y37{bottom:239.773333pt;}
.y132{bottom:244.253333pt;}
.y36{bottom:253.533333pt;}
.y6a{bottom:255.453333pt;}
.yb0{bottom:260.573333pt;}
.y35{bottom:267.293333pt;}
.y69{bottom:271.773333pt;}
.y131{bottom:276.573333pt;}
.y68{bottom:287.773333pt;}
.yff{bottom:292.253333pt;}
.y130{bottom:292.573333pt;}
.yae{bottom:295.773333pt;}
.y67{bottom:303.773333pt;}
.y12f{bottom:308.893333pt;}
.y66{bottom:320.093333pt;}
.yad{bottom:321.373333pt;}
.yfe{bottom:323.293333pt;}
.y12e{bottom:324.893333pt;}
.y34{bottom:326.813333pt;}
.yfd{bottom:330.013333pt;}
.y65{bottom:336.093333pt;}
.y12d{bottom:340.893333pt;}
.y33{bottom:342.813333pt;}
.yfc{bottom:350.813333pt;}
.y64{bottom:352.093333pt;}
.ya9{bottom:356.613333pt;}
.y12c{bottom:357.253333pt;}
.y32{bottom:358.853333pt;}
.y63{bottom:368.133333pt;}
.yfb{bottom:368.773333pt;}
.y12b{bottom:373.253333pt;}
.y31{bottom:374.853333pt;}
.y62{bottom:384.453333pt;}
.yfa{bottom:387.973333pt;}
.y12a{bottom:389.253333pt;}
.y30{bottom:391.173333pt;}
.ya8{bottom:391.493333pt;}
.yf9{bottom:396.293333pt;}
.y61{bottom:400.453333pt;}
.y129{bottom:405.573333pt;}
.y2f{bottom:407.173333pt;}
.yf8{bottom:408.773333pt;}
.yf7{bottom:415.493333pt;}
.y60{bottom:416.453333pt;}
.y128{bottom:421.573333pt;}
.y2e{bottom:423.173333pt;}
.ya7{bottom:426.693333pt;}
.y5f{bottom:432.773333pt;}
.yf6{bottom:436.613333pt;}
.y127{bottom:437.573333pt;}
.y2d{bottom:439.493333pt;}
.y5e{bottom:448.773333pt;}
.ya4{bottom:450.373333pt;}
.y126{bottom:453.573333pt;}
.yf5{bottom:454.533333pt;}
.y2c{bottom:459.013333pt;}
.y5d{bottom:464.773333pt;}
.y125{bottom:469.893333pt;}
.yf4{bottom:472.773333pt;}
.y5c{bottom:481.120000pt;}
.y124{bottom:485.920000pt;}
.yf3{bottom:490.720000pt;}
.y2b{bottom:494.880000pt;}
.y5b{bottom:497.120000pt;}
.y123{bottom:501.920000pt;}
.yf2{bottom:509.920000pt;}
.y5a{bottom:513.120000pt;}
.y122{bottom:518.240000pt;}
.y9f{bottom:522.720000pt;}
.y2a{bottom:526.240000pt;}
.yf1{bottom:527.840000pt;}
.y59{bottom:529.440000pt;}
.y29{bottom:541.600000pt;}
.y121{bottom:542.560000pt;}
.y58{bottom:545.440000pt;}
.y28{bottom:556.640000pt;}
.y57{bottom:561.440000pt;}
.yf0{bottom:563.040000pt;}
.y9e{bottom:565.920000pt;}
.y27{bottom:570.400000pt;}
.y120{bottom:574.880000pt;}
.y56{bottom:577.440000pt;}
.yef{bottom:580.640000pt;}
.y26{bottom:584.160000pt;}
.y9d{bottom:584.480000pt;}
.y11f{bottom:590.880000pt;}
.y55{bottom:593.786667pt;}
.y9c{bottom:597.306667pt;}
.y25{bottom:597.946667pt;}
.yee{bottom:598.266667pt;}
.yd1{bottom:606.586667pt;}
.y11e{bottom:606.906667pt;}
.y54{bottom:609.786667pt;}
.y99{bottom:610.426667pt;}
.yed{bottom:616.186667pt;}
.y24{bottom:617.146667pt;}
.yd0{bottom:622.906667pt;}
.y11d{bottom:623.226667pt;}
.y53{bottom:625.786667pt;}
.y23{bottom:630.906667pt;}
.y98{bottom:634.106667pt;}
.yec{bottom:635.386667pt;}
.ycf{bottom:638.906667pt;}
.y11c{bottom:639.226667pt;}
.y52{bottom:642.106667pt;}
.y22{bottom:644.666667pt;}
.y97{bottom:646.906667pt;}
.y154{bottom:650.426667pt;}
.yce{bottom:654.906667pt;}
.y11b{bottom:655.226667pt;}
.y51{bottom:658.106667pt;}
.y96{bottom:659.706667pt;}
.yeb{bottom:660.986667pt;}
.y21{bottom:663.866667pt;}
.ycd{bottom:671.226667pt;}
.y11a{bottom:671.546667pt;}
.y95{bottom:672.826667pt;}
.y50{bottom:674.106667pt;}
.y153{bottom:677.626667pt;}
.y20{bottom:677.946667pt;}
.yea{bottom:678.586667pt;}
.y93{bottom:685.626667pt;}
.y119{bottom:687.546667pt;}
.y4f{bottom:690.426667pt;}
.y1f{bottom:691.706667pt;}
.ye9{bottom:696.186667pt;}
.y92{bottom:698.746667pt;}
.y118{bottom:703.546667pt;}
.y152{bottom:704.826667pt;}
.y1e{bottom:705.466667pt;}
.y4e{bottom:706.426667pt;}
.y91{bottom:711.586667pt;}
.ye8{bottom:713.826667pt;}
.ycc{bottom:714.466667pt;}
.y1d{bottom:719.266667pt;}
.y117{bottom:719.586667pt;}
.y151{bottom:719.906667pt;}
.y4d{bottom:722.466667pt;}
.y90{bottom:724.706667pt;}
.ycb{bottom:730.786667pt;}
.y150{bottom:732.706667pt;}
.y1c{bottom:733.026667pt;}
.ye7{bottom:733.346667pt;}
.y116{bottom:735.906667pt;}
.y4c{bottom:738.786667pt;}
.y8f{bottom:745.506667pt;}
.y1b{bottom:746.786667pt;}
.y14f{bottom:748.066667pt;}
.y115{bottom:751.906667pt;}
.y4b{bottom:754.786667pt;}
.ye6{bottom:758.946667pt;}
.y1a{bottom:760.546667pt;}
.yca{bottom:762.786667pt;}
.y14e{bottom:763.426667pt;}
.y8e{bottom:766.306667pt;}
.y114{bottom:767.906667pt;}
.y4a{bottom:770.786667pt;}
.y19{bottom:774.306667pt;}
.ye5{bottom:776.546667pt;}
.y14d{bottom:778.786667pt;}
.y8d{bottom:781.666667pt;}
.yc9{bottom:782.306667pt;}
.y113{bottom:784.226667pt;}
.y49{bottom:786.786667pt;}
.y18{bottom:788.066667pt;}
.y14c{bottom:793.826667pt;}
.ye4{bottom:794.146667pt;}
.y8c{bottom:797.026667pt;}
.y112{bottom:800.226667pt;}
.y17{bottom:802.146667pt;}
.y48{bottom:803.106667pt;}
.yc8{bottom:806.306667pt;}
.y14b{bottom:809.186667pt;}
.ye3{bottom:811.746667pt;}
.y8b{bottom:812.386667pt;}
.y16{bottom:815.906667pt;}
.y111{bottom:816.226667pt;}
.y47{bottom:819.106667pt;}
.yc7{bottom:822.306667pt;}
.y14a{bottom:824.546667pt;}
.y8a{bottom:827.746667pt;}
.ye2{bottom:829.373333pt;}
.y15{bottom:829.693333pt;}
.y110{bottom:832.573333pt;}
.y46{bottom:835.133333pt;}
.yc6{bottom:838.653333pt;}
.y149{bottom:839.933333pt;}
.y89{bottom:843.133333pt;}
.y14{bottom:843.453333pt;}
.y10f{bottom:848.573333pt;}
.ye1{bottom:848.893333pt;}
.y45{bottom:851.453333pt;}
.yc5{bottom:854.653333pt;}
.y148{bottom:855.293333pt;}
.y13{bottom:857.213333pt;}
.y88{bottom:858.493333pt;}
.y10e{bottom:864.573333pt;}
.y44{bottom:867.453333pt;}
.y147{bottom:867.773333pt;}
.yc4{bottom:870.653333pt;}
.y12{bottom:870.973333pt;}
.y87{bottom:873.853333pt;}
.ye0{bottom:874.493333pt;}
.y10d{bottom:880.893333pt;}
.y43{bottom:883.453333pt;}
.y11{bottom:884.733333pt;}
.y146{bottom:885.373333pt;}
.yc3{bottom:886.973333pt;}
.y86{bottom:889.213333pt;}
.ydf{bottom:892.093333pt;}
.y145{bottom:897.853333pt;}
.y10c{bottom:903.933333pt;}
.y85{bottom:904.253333pt;}
.yc2{bottom:906.173333pt;}
.yde{bottom:909.693333pt;}
.y144{bottom:910.013333pt;}
.y10{bottom:915.133333pt;}
.y84{bottom:919.613333pt;}
.y143{bottom:922.173333pt;}
.ydd{bottom:927.293333pt;}
.yc1{bottom:930.173333pt;}
.y109{bottom:933.373333pt;}
.y142{bottom:934.653333pt;}
.y83{bottom:934.973333pt;}
.ydc{bottom:944.893333pt;}
.yc0{bottom:946.493333pt;}
.y141{bottom:946.813333pt;}
.y82{bottom:950.373333pt;}
.yf{bottom:951.973333pt;}
.y106{bottom:959.013333pt;}
.ybf{bottom:962.533333pt;}
.ydb{bottom:964.453333pt;}
.y81{bottom:965.733333pt;}
.y140{bottom:971.493333pt;}
.ybe{bottom:978.533333pt;}
.y80{bottom:981.733333pt;}
.y13f{bottom:983.653333pt;}
.ye{bottom:988.773333pt;}
.yda{bottom:990.053333pt;}
.ybd{bottom:994.853333pt;}
.y13e{bottom:995.813333pt;}
.y7f{bottom:998.053333pt;}
.yd9{bottom:1007.653333pt;}
.y13d{bottom:1008.293333pt;}
.y105{bottom:1008.933333pt;}
.ybc{bottom:1010.853333pt;}
.y7e{bottom:1014.053333pt;}
.y13c{bottom:1020.453333pt;}
.y104{bottom:1021.733333pt;}
.yd8{bottom:1025.253333pt;}
.yd{bottom:1025.573333pt;}
.y7d{bottom:1030.053333pt;}
.y13b{bottom:1032.613333pt;}
.yd7{bottom:1042.853333pt;}
.y78{bottom:1045.733333pt;}
.y77{bottom:1062.693333pt;}
.y76{bottom:1079.680000pt;}
.y2{bottom:1082.240000pt;}
.y75{bottom:1096.320000pt;}
.y1{bottom:1097.600000pt;}
.h10{height:12.160000pt;}
.h11{height:12.192000pt;}
.h12{height:12.480000pt;}
.h13{height:23.040000pt;}
.h17{height:24.960000pt;}
.h2a{height:24.992000pt;}
.h14{height:27.706250pt;}
.h16{height:27.996875pt;}
.he{height:29.493750pt;}
.hd{height:29.803125pt;}
.h25{height:31.283750pt;}
.ha{height:33.962500pt;}
.h15{height:34.240000pt;}
.h1a{height:34.272000pt;}
.hc{height:34.318750pt;}
.h19{height:34.560000pt;}
.h1b{height:34.592000pt;}
.h5{height:34.815000pt;}
.h3{height:37.537500pt;}
.h2{height:37.931250pt;}
.hf{height:39.138750pt;}
.h9{height:39.472500pt;}
.h6{height:39.680000pt;}
.h2b{height:39.821250pt;}
.h8{height:41.543750pt;}
.h2c{height:44.310000pt;}
.h21{height:45.307500pt;}
.h1c{height:46.080000pt;}
.h18{height:46.112000pt;}
.h20{height:47.867500pt;}
.h1f{height:47.974167pt;}
.h4{height:48.960000pt;}
.h1d{height:49.147500pt;}
.h29{height:49.280000pt;}
.h28{height:49.766250pt;}
.h1e{height:50.483750pt;}
.h26{height:58.107500pt;}
.h22{height:63.283750pt;}
.h23{height:64.417500pt;}
.hb{height:74.181250pt;}
.h24{height:76.027500pt;}
.h27{height:77.363750pt;}
.h7{height:89.375000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:57.312000pt;}
.wa{width:62.752000pt;}
.w7{width:65.952000pt;}
.w9{width:66.912000pt;}
.w8{width:67.840000pt;}
.w5{width:102.752000pt;}
.wc{width:112.352000pt;}
.w2{width:172.866667pt;}
.wd{width:188.573333pt;}
.w3{width:216.066667pt;}
.w6{width:226.653333pt;}
.w1{width:793.333333pt;}
.w4{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x21{left:7.040000pt;}
.x1f{left:8.000000pt;}
.x4{left:9.600000pt;}
.x2e{left:11.202667pt;}
.x1d{left:12.160000pt;}
.x2f{left:13.120000pt;}
.x18{left:14.400000pt;}
.x2c{left:15.360000pt;}
.x25{left:16.320000pt;}
.x1b{left:17.280000pt;}
.x28{left:18.562667pt;}
.x24{left:19.840000pt;}
.x2d{left:21.122667pt;}
.x19{left:22.080000pt;}
.x2b{left:23.680000pt;}
.x15{left:24.640000pt;}
.x1c{left:25.600000pt;}
.x30{left:26.880000pt;}
.x1a{left:28.800000pt;}
.x22{left:31.680000pt;}
.x1e{left:32.960000pt;}
.x20{left:35.840000pt;}
.x40{left:37.800000pt;}
.x41{left:38.760000pt;}
.x23{left:40.666667pt;}
.x14{left:59.872000pt;}
.x5{left:62.432000pt;}
.x38{left:65.311988pt;}
.xa{left:72.032000pt;}
.x42{left:73.640000pt;}
.x12{left:81.311988pt;}
.x7{left:88.672000pt;}
.x45{left:90.911988pt;}
.x17{left:94.746667pt;}
.x34{left:96.991988pt;}
.x13{left:128.063988pt;}
.x27{left:129.664000pt;}
.x26{left:133.826655pt;}
.x6{left:141.826667pt;}
.x31{left:145.986655pt;}
.x3b{left:154.306655pt;}
.xb{left:158.146667pt;}
.x16{left:163.266667pt;}
.x39{left:175.746655pt;}
.x8{left:179.586667pt;}
.x29{left:198.146667pt;}
.x35{left:210.333322pt;}
.x36{left:211.613322pt;}
.x37{left:229.533322pt;}
.x11{left:231.453322pt;}
.x2a{left:265.693333pt;}
.x9{left:290.373333pt;}
.x10{left:329.413322pt;}
.x1{left:339.973333pt;}
.x2{left:382.240000pt;}
.x3a{left:385.119988pt;}
.x3c{left:386.719988pt;}
.xf{left:396.959988pt;}
.xd{left:406.560000pt;}
.xc{left:416.160000pt;}
.x3e{left:418.400000pt;}
.x3{left:420.960000pt;}
.x44{left:435.039988pt;}
.xe{left:477.306667pt;}
.x33{left:478.586655pt;}
.x43{left:505.786655pt;}
.x3d{left:508.026655pt;}
.x3f{left:531.386667pt;}
.x32{left:729.253322pt;}
}




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