
    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_fd2aa2049731ab091829a47a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_9deddfe810bff110edf1a38f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_74387bd9dfa5fbda5509ab50.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_4f6ad58b183db4ac6414c76c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_09f63b84a5cdfa481390dd05.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_b3be7a73bbe1deeda19877c8.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e8eb98363c8eecde8a3ce09b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_ea879aa35ec7dbb23f6f79d0.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_5e72bd33317146377e8bc3e8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.942383;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_e119f6d83b32c3917d7b5308.woff')format("woff");}.ffd{font-family:ffd;line-height:0.694336;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_7a8b5d17382d135350186aab.woff')format("woff");}.ffe{font-family:ffe;line-height:0.892578;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.fff{font-family:fff;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_204669e400c4e588231c8867.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0fb418731f8bab469f81565b.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_3ca7de19fb99034d5c443c7b.woff')format("woff");}.ff12{font-family:ff12;line-height:1.096191;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:ff13;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_370bb8f73a79282b9894e236.woff')format("woff");}.ff14{font-family:ff14;line-height:0.850586;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);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.ls1b{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.134000px;}
.ls20{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.642000px;}
.lse{letter-spacing:-0.570000px;}
.lsc{letter-spacing:-0.483600px;}
.ls9{letter-spacing:-0.457800px;}
.lsd{letter-spacing:-0.420600px;}
.ls14{letter-spacing:-0.305400px;}
.ls18{letter-spacing:-0.250800px;}
.ls8{letter-spacing:-0.023040px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.012000px;}
.ls6{letter-spacing:0.078000px;}
.ls1d{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.305400px;}
.ls19{letter-spacing:0.561600px;}
.ls7{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.731520px;}
.ls2{letter-spacing:0.732000px;}
.lsf{letter-spacing:0.828000px;}
.ls13{letter-spacing:1.440000px;}
.ls1{letter-spacing:2.280000px;}
.ls1e{letter-spacing:7.505280px;}
.ls17{letter-spacing:12.240000px;}
.ls4{letter-spacing:40.625280px;}
.ls3{letter-spacing:40.637280px;}
.ls1c{letter-spacing:40.769280px;}
.lsb{letter-spacing:63.946560px;}
.ls10{letter-spacing:63.970560px;}
.ls11{letter-spacing:199.596000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-83.520000px;}
.ws4{word-spacing:-60.480000px;}
.ws8{word-spacing:-23.549640px;}
.ws0{word-spacing:-19.010880px;}
.wsc{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.890800px;}
.wsb{word-spacing:-17.388000px;}
.ws12{word-spacing:-16.865400px;}
.ws5{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.416000px;}
.wsd{word-spacing:-16.254600px;}
.wse{word-spacing:-16.102200px;}
.ws10{word-spacing:-15.134400px;}
.ws9{word-spacing:-15.120000px;}
.ws2{word-spacing:-14.650800px;}
.wsf{word-spacing:-14.322000px;}
.ws11{word-spacing:-13.930800px;}
.wsa{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-4.409280px;}
._3{margin-left:-2.949120px;}
._2{margin-left:-1.722240px;}
._0{width:1.085760px;}
._1{width:2.589120px;}
._b{width:3.876000px;}
._a{width:5.063520px;}
._5{width:6.226560px;}
._6{width:7.344000px;}
._e{width:9.141120px;}
._27{width:10.175040px;}
._c{width:11.194560px;}
._37{width:12.245760px;}
._7{width:13.446720px;}
._d{width:14.705280px;}
._8{width:18.282240px;}
._9{width:19.284480px;}
._10{width:20.799360px;}
._f{width:22.737600px;}
._1d{width:24.442560px;}
._1c{width:26.098560px;}
._29{width:27.123840px;}
._22{width:28.748160px;}
._1a{width:30.021120px;}
._1b{width:31.106880px;}
._19{width:32.604480px;}
._3a{width:33.606720px;}
._24{width:35.403840px;}
._23{width:36.829440px;}
._35{width:38.344320px;}
._21{width:39.346560px;}
._28{width:41.495040px;}
._1e{width:42.710400px;}
._2a{width:44.064000px;}
._2b{width:45.952320px;}
._3b{width:47.695680px;}
._33{width:48.775680px;}
._3c{width:50.434560px;}
._2c{width:52.384320px;}
._2d{width:53.395200px;}
._42{width:54.979200px;}
._43{width:56.160480px;}
._41{width:57.663360px;}
._3d{width:59.218560px;}
._1f{width:60.940800px;}
._20{width:62.835840px;}
._34{width:64.025280px;}
._36{width:65.153760px;}
._26{width:66.344160px;}
._25{width:67.380480px;}
._17{width:68.889600px;}
._47{width:70.420320px;}
._39{width:72.656640px;}
._38{width:74.626560px;}
._3f{width:76.746720px;}
._3e{width:77.774400px;}
._32{width:80.098560px;}
._44{width:81.504000px;}
._40{width:82.932480px;}
._2e{width:85.924800px;}
._18{width:86.973120px;}
._30{width:93.795840px;}
._31{width:94.840800px;}
._4e{width:101.015760px;}
._49{width:102.274560px;}
._4a{width:103.461120px;}
._12{width:105.390720px;}
._11{width:107.475840px;}
._45{width:110.131200px;}
._2f{width:112.890240px;}
._4b{width:114.640320px;}
._4d{width:120.440160px;}
._16{width:130.389120px;}
._15{width:154.875840px;}
._46{width:156.221760px;}
._4c{width:160.672320px;}
._48{width:169.905600px;}
._13{width:190.783200px;}
._14{width:197.745600px;}
._4f{width:847.896000px;}
.fc4{color:rgb(36,64,97);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.720000px;}
.fs5{font-size:24.480000px;}
.fsa{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fs8{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fs9{font-size:93.600000px;}
.y0{bottom:0.000000px;}
.ye{bottom:1.080000px;}
.y1d{bottom:1.425000px;}
.y13{bottom:2.160000px;}
.y8d{bottom:3.585000px;}
.y3{bottom:3.600000px;}
.y8f{bottom:3.945000px;}
.y9c{bottom:3.960000px;}
.y91{bottom:4.305000px;}
.y9e{bottom:4.320000px;}
.yb{bottom:6.480000px;}
.y9{bottom:6.840000px;}
.yc{bottom:7.200000px;}
.y11{bottom:7.920000px;}
.y8{bottom:8.280000px;}
.y6{bottom:8.640000px;}
.y8b{bottom:13.305000px;}
.ya0{bottom:13.680000px;}
.y8c{bottom:22.665000px;}
.y98{bottom:23.025000px;}
.y9a{bottom:23.040000px;}
.ya1{bottom:23.400000px;}
.y1a{bottom:26.265000px;}
.y5{bottom:33.120000px;}
.y10{bottom:33.840000px;}
.y95{bottom:42.105000px;}
.y9b{bottom:42.150000px;}
.y19{bottom:47.865000px;}
.y1{bottom:51.120000px;}
.y97{bottom:61.185000px;}
.y41{bottom:75.240000px;}
.y18{bottom:79.185000px;}
.y96{bottom:79.905000px;}
.y17{bottom:94.305000px;}
.y76{bottom:111.276000px;}
.yb5{bottom:114.876000px;}
.y16{bottom:125.655000px;}
.y75{bottom:129.276000px;}
.ydf{bottom:131.796000px;}
.yc3{bottom:132.876000px;}
.yf7{bottom:133.236000px;}
.yf8{bottom:133.956000px;}
.y86{bottom:134.316000px;}
.yb4{bottom:139.716000px;}
.y15{bottom:140.775000px;}
.y3e{bottom:143.676000px;}
.y74{bottom:147.276000px;}
.yde{bottom:156.270000px;}
.yc2{bottom:157.350000px;}
.yf6{bottom:157.710000px;}
.y85{bottom:158.790000px;}
.yb3{bottom:164.190000px;}
.y73{bottom:165.270000px;}
.y3c{bottom:168.510000px;}
.y72{bottom:172.110000px;}
.ydd{bottom:181.110000px;}
.yc1{bottom:182.190000px;}
.yf5{bottom:182.550000px;}
.y71{bottom:183.630000px;}
.y82{bottom:184.350000px;}
.yb2{bottom:189.030000px;}
.y3b{bottom:192.990000px;}
.y70{bottom:200.910000px;}
.ydc{bottom:205.635000px;}
.yc0{bottom:206.715000px;}
.yf4{bottom:207.075000px;}
.y81{bottom:208.155000px;}
.yb1{bottom:213.555000px;}
.y3a{bottom:217.875000px;}
.y6f{bottom:218.235000px;}
.y6e{bottom:225.075000px;}
.ydb{bottom:230.115000px;}
.ybf{bottom:231.555000px;}
.yf3{bottom:231.915000px;}
.y80{bottom:232.995000px;}
.y6d{bottom:235.515000px;}
.yb0{bottom:238.395000px;}
.y39{bottom:241.995000px;}
.y3d{bottom:242.355000px;}
.y6c{bottom:252.435000px;}
.yda{bottom:255.315000px;}
.ybe{bottom:256.035000px;}
.yf2{bottom:256.395000px;}
.y88{bottom:257.115000px;}
.y7f{bottom:257.475000px;}
.yaf{bottom:262.875000px;}
.y38{bottom:266.835000px;}
.y6b{bottom:269.715000px;}
.ybd{bottom:280.875000px;}
.yf1{bottom:281.235000px;}
.y87{bottom:281.955000px;}
.y7e{bottom:282.315000px;}
.y6a{bottom:287.355000px;}
.yae{bottom:287.715000px;}
.y37{bottom:290.955000px;}
.y69{bottom:294.915000px;}
.ybc{bottom:305.355000px;}
.yf0{bottom:305.715000px;}
.y68{bottom:306.075000px;}
.y7d{bottom:306.795000px;}
.yad{bottom:312.195000px;}
.y36{bottom:313.275000px;}
.ybb{bottom:330.225000px;}
.yef{bottom:330.585000px;}
.y67{bottom:331.665000px;}
.y35{bottom:337.065000px;}
.yba{bottom:354.705000px;}
.yee{bottom:355.425000px;}
.y66{bottom:356.145000px;}
.y34{bottom:359.025000px;}
.yac{bottom:361.545000px;}
.yb9{bottom:379.185000px;}
.yd9{bottom:379.545000px;}
.yed{bottom:379.905000px;}
.y33{bottom:380.625000px;}
.y65{bottom:380.985000px;}
.yab{bottom:386.385000px;}
.y32{bottom:402.585000px;}
.yd8{bottom:404.025000px;}
.yb8{bottom:404.385000px;}
.yec{bottom:404.745000px;}
.y64{bottom:405.465000px;}
.yaa{bottom:410.865000px;}
.y31{bottom:424.545000px;}
.yd7{bottom:428.865000px;}
.yeb{bottom:429.225000px;}
.yb7{bottom:429.585000px;}
.y62{bottom:430.305000px;}
.ya9{bottom:435.705000px;}
.y63{bottom:437.865000px;}
.y30{bottom:446.145000px;}
.yd6{bottom:453.390000px;}
.yea{bottom:454.110000px;}
.y61{bottom:454.830000px;}
.ya8{bottom:460.230000px;}
.y2f{bottom:468.150000px;}
.yd5{bottom:478.230000px;}
.ye9{bottom:478.590000px;}
.y60{bottom:479.670000px;}
.ya7{bottom:485.070000px;}
.y2e{bottom:490.110000px;}
.yd4{bottom:502.710000px;}
.ye8{bottom:503.430000px;}
.y5f{bottom:504.150000px;}
.ya6{bottom:509.550000px;}
.y2d{bottom:511.710000px;}
.yd3{bottom:527.550000px;}
.ye7{bottom:527.910000px;}
.y5e{bottom:528.990000px;}
.y2c{bottom:533.670000px;}
.ya5{bottom:534.390000px;}
.ya4{bottom:549.870000px;}
.yd2{bottom:552.030000px;}
.ye6{bottom:552.750000px;}
.y5d{bottom:553.470000px;}
.y2b{bottom:555.270000px;}
.ya3{bottom:569.670000px;}
.yd1{bottom:576.900000px;}
.y2a{bottom:577.260000px;}
.y5c{bottom:578.340000px;}
.ya2{bottom:589.500000px;}
.y29{bottom:599.220000px;}
.yd0{bottom:601.380000px;}
.ye5{bottom:602.100000px;}
.y5a{bottom:602.820000px;}
.y9f{bottom:608.940000px;}
.y5b{bottom:610.380000px;}
.y28{bottom:620.820000px;}
.ycf{bottom:626.220000px;}
.ye4{bottom:626.580000px;}
.y59{bottom:627.660000px;}
.y27{bottom:642.780000px;}
.y9d{bottom:647.820000px;}
.yce{bottom:650.700000px;}
.ye3{bottom:651.420000px;}
.y58{bottom:652.140000px;}
.y26{bottom:664.380000px;}
.y99{bottom:667.620000px;}
.ycd{bottom:675.540000px;}
.ye2{bottom:675.900000px;}
.y57{bottom:676.980000px;}
.y25{bottom:686.340000px;}
.ycc{bottom:700.020000px;}
.ye1{bottom:700.380000px;}
.y56{bottom:701.490000px;}
.y24{bottom:708.330000px;}
.ycb{bottom:724.890000px;}
.y94{bottom:725.265000px;}
.ye0{bottom:725.610000px;}
.y55{bottom:726.330000px;}
.y23{bottom:729.930000px;}
.yca{bottom:749.370000px;}
.y54{bottom:750.810000px;}
.y22{bottom:751.890000px;}
.y21{bottom:773.490000px;}
.yc9{bottom:774.210000px;}
.y52{bottom:775.650000px;}
.y53{bottom:783.210000px;}
.y20{bottom:795.450000px;}
.yc8{bottom:798.690000px;}
.y51{bottom:800.130000px;}
.y1f{bottom:817.050000px;}
.y93{bottom:820.665000px;}
.yc7{bottom:823.530000px;}
.y50{bottom:824.970000px;}
.y1e{bottom:836.535000px;}
.y92{bottom:840.510000px;}
.y1c{bottom:844.830000px;}
.yc6{bottom:848.055000px;}
.yb6{bottom:849.135000px;}
.y4f{bottom:849.495000px;}
.y14{bottom:852.030000px;}
.y1b{bottom:856.186294px;}
.y90{bottom:860.310000px;}
.yc5{bottom:873.255000px;}
.y4e{bottom:874.335000px;}
.y8e{bottom:880.110000px;}
.yc4{bottom:898.455000px;}
.y7c{bottom:898.815000px;}
.y4d{bottom:899.175000px;}
.y8a{bottom:899.910000px;}
.y7b{bottom:923.295000px;}
.y4c{bottom:923.655000px;}
.y4b{bottom:948.495000px;}
.y4a{bottom:973.005000px;}
.y49{bottom:997.485000px;}
.y7a{bottom:997.845000px;}
.y12{bottom:1018.365000px;}
.y48{bottom:1021.965000px;}
.y79{bottom:1022.325000px;}
.yf{bottom:1024.845000px;}
.y47{bottom:1046.805000px;}
.y77{bottom:1047.165000px;}
.y78{bottom:1054.725000px;}
.y84{bottom:1071.285000px;}
.y46{bottom:1071.645000px;}
.yd{bottom:1076.730000px;}
.ya{bottom:1082.130000px;}
.y83{bottom:1096.170000px;}
.y45{bottom:1096.530000px;}
.y2{bottom:1106.250000px;}
.y89{bottom:1120.650000px;}
.y44{bottom:1121.010000px;}
.y7{bottom:1128.570000px;}
.y43{bottom:1145.850000px;}
.y4{bottom:1156.650000px;}
.y42{bottom:1170.330000px;}
.y40{bottom:1187.250000px;}
.y3f{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h18{height:7.185000px;}
.hd{height:13.857187px;}
.h19{height:18.120938px;}
.h2d{height:18.705000px;}
.h34{height:18.720000px;}
.h35{height:18.750000px;}
.h2e{height:19.065000px;}
.h32{height:19.080000px;}
.h2f{height:19.101000px;}
.h11{height:19.584000px;}
.h8{height:22.305000px;}
.ha{height:24.105000px;}
.h7{height:28.065000px;}
.h20{height:30.480469px;}
.h1a{height:36.861328px;}
.h2c{height:37.785000px;}
.h28{height:38.139609px;}
.h2a{height:38.158594px;}
.h33{height:38.160000px;}
.h25{height:38.671172px;}
.h23{height:40.985156px;}
.h24{height:46.251562px;}
.h14{height:47.891250px;}
.he{height:51.870000px;}
.h5{height:52.950000px;}
.h1c{height:54.596250px;}
.h36{height:55.825312px;}
.h9{height:56.084062px;}
.h31{height:56.916000px;}
.h29{height:59.328281px;}
.h27{height:59.357813px;}
.h26{height:60.155156px;}
.hb{height:60.960938px;}
.h2{height:61.742812px;}
.h16{height:63.984375px;}
.h1b{height:64.978594px;}
.h1e{height:65.010937px;}
.h21{height:65.884219px;}
.h1d{height:66.757500px;}
.h15{height:67.803750px;}
.h1f{height:68.084282px;}
.h6{height:70.714687px;}
.h2b{height:71.225156px;}
.h17{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.011250px;}
.h30{height:94.665000px;}
.h3{height:103.350000px;}
.h12{height:166.320000px;}
.h22{height:1262.876085px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:53.302500px;}
.wb{width:93.996000px;}
.w2{width:108.022500px;}
.w4{width:108.030000px;}
.wa{width:262.890000px;}
.wc{width:263.250000px;}
.w6{width:276.570000px;}
.w5{width:276.930000px;}
.w3{width:553.500000px;}
.w7{width:671.310000px;}
.w8{width:893.156250px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.266500px;}
.x5{left:11.145000px;}
.x10{left:20.520000px;}
.x16{left:29.542500px;}
.xb{left:33.840000px;}
.x14{left:36.742500px;}
.xe{left:49.666500px;}
.x9{left:53.295000px;}
.x2{left:60.889500px;}
.xc{left:81.735000px;}
.xf{left:85.335000px;}
.x15{left:87.505500px;}
.xd{left:96.150000px;}
.x8{left:108.405000px;}
.x3{left:110.185500px;}
.x13{left:113.815500px;}
.x1b{left:123.516000px;}
.x17{left:129.655500px;}
.x26{left:135.068250px;}
.x27{left:140.112000px;}
.x1c{left:150.555000px;}
.x21{left:162.075000px;}
.x31{left:163.170000px;}
.x4{left:168.930000px;}
.x12{left:170.695500px;}
.x18{left:173.215500px;}
.x6{left:208.860000px;}
.x24{left:309.341250px;}
.x22{left:310.826250px;}
.x25{left:314.430000px;}
.x23{left:320.910000px;}
.x19{left:325.030998px;}
.x11{left:335.650500px;}
.x1f{left:355.466250px;}
.x20{left:360.510000px;}
.x32{left:426.420000px;}
.xa{left:445.860000px;}
.x28{left:473.580000px;}
.x2c{left:478.620000px;}
.x1d{left:489.090000px;}
.x2f{left:493.766250px;}
.x30{left:498.810000px;}
.x2d{left:505.650000px;}
.x1e{left:516.090000px;}
.x33{left:520.785000px;}
.x2b{left:527.610000px;}
.x29{left:597.491250px;}
.x2a{left:602.535000px;}
.x2e{left:689.685000px;}
.x7{left:722.445000px;}
.x1{left:761.370000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.ls1b{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-1.008000pt;}
.ls20{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.570667pt;}
.lse{letter-spacing:-0.506667pt;}
.lsc{letter-spacing:-0.429867pt;}
.ls9{letter-spacing:-0.406933pt;}
.lsd{letter-spacing:-0.373867pt;}
.ls14{letter-spacing:-0.271467pt;}
.ls18{letter-spacing:-0.222933pt;}
.ls8{letter-spacing:-0.020480pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.010667pt;}
.ls6{letter-spacing:0.069333pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.271467pt;}
.ls19{letter-spacing:0.499200pt;}
.ls7{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.650240pt;}
.ls2{letter-spacing:0.650667pt;}
.lsf{letter-spacing:0.736000pt;}
.ls13{letter-spacing:1.280000pt;}
.ls1{letter-spacing:2.026667pt;}
.ls1e{letter-spacing:6.671360pt;}
.ls17{letter-spacing:10.880000pt;}
.ls4{letter-spacing:36.111360pt;}
.ls3{letter-spacing:36.122027pt;}
.ls1c{letter-spacing:36.239360pt;}
.lsb{letter-spacing:56.841387pt;}
.ls10{letter-spacing:56.862720pt;}
.ls11{letter-spacing:177.418667pt;}
.ws1{word-spacing:-74.240000pt;}
.ws4{word-spacing:-53.760000pt;}
.ws8{word-spacing:-20.933013pt;}
.ws0{word-spacing:-16.898560pt;}
.wsc{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.902933pt;}
.wsb{word-spacing:-15.456000pt;}
.ws12{word-spacing:-14.991467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.592000pt;}
.wsd{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.313067pt;}
.ws10{word-spacing:-13.452800pt;}
.ws9{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.022933pt;}
.wsf{word-spacing:-12.730667pt;}
.ws11{word-spacing:-12.382933pt;}
.wsa{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-3.919360pt;}
._3{margin-left:-2.621440pt;}
._2{margin-left:-1.530880pt;}
._0{width:0.965120pt;}
._1{width:2.301440pt;}
._b{width:3.445333pt;}
._a{width:4.500907pt;}
._5{width:5.534720pt;}
._6{width:6.528000pt;}
._e{width:8.125440pt;}
._27{width:9.044480pt;}
._c{width:9.950720pt;}
._37{width:10.885120pt;}
._7{width:11.952640pt;}
._d{width:13.071360pt;}
._8{width:16.250880pt;}
._9{width:17.141760pt;}
._10{width:18.488320pt;}
._f{width:20.211200pt;}
._1d{width:21.726720pt;}
._1c{width:23.198720pt;}
._29{width:24.110080pt;}
._22{width:25.553920pt;}
._1a{width:26.685440pt;}
._1b{width:27.650560pt;}
._19{width:28.981760pt;}
._3a{width:29.872640pt;}
._24{width:31.470080pt;}
._23{width:32.737280pt;}
._35{width:34.083840pt;}
._21{width:34.974720pt;}
._28{width:36.884480pt;}
._1e{width:37.964800pt;}
._2a{width:39.168000pt;}
._2b{width:40.846507pt;}
._3b{width:42.396160pt;}
._33{width:43.356160pt;}
._3c{width:44.830720pt;}
._2c{width:46.563840pt;}
._2d{width:47.462400pt;}
._42{width:48.870400pt;}
._43{width:49.920427pt;}
._41{width:51.256320pt;}
._3d{width:52.638720pt;}
._1f{width:54.169600pt;}
._20{width:55.854080pt;}
._34{width:56.911360pt;}
._36{width:57.914453pt;}
._26{width:58.972587pt;}
._25{width:59.893760pt;}
._17{width:61.235200pt;}
._47{width:62.595840pt;}
._39{width:64.583680pt;}
._38{width:66.334720pt;}
._3f{width:68.219307pt;}
._3e{width:69.132800pt;}
._32{width:71.198720pt;}
._44{width:72.448000pt;}
._40{width:73.717760pt;}
._2e{width:76.377600pt;}
._18{width:77.309440pt;}
._30{width:83.374080pt;}
._31{width:84.302933pt;}
._4e{width:89.791787pt;}
._49{width:90.910720pt;}
._4a{width:91.965440pt;}
._12{width:93.680640pt;}
._11{width:95.534080pt;}
._45{width:97.894400pt;}
._2f{width:100.346880pt;}
._4b{width:101.902507pt;}
._4d{width:107.057920pt;}
._16{width:115.901440pt;}
._15{width:137.667413pt;}
._46{width:138.863787pt;}
._4c{width:142.819840pt;}
._48{width:151.027200pt;}
._13{width:169.585067pt;}
._14{width:175.773867pt;}
._4f{width:753.685333pt;}
.fs4{font-size:16.640000pt;}
.fs5{font-size:21.760000pt;}
.fsa{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fs8{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fs9{font-size:83.200000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.960000pt;}
.y1d{bottom:1.266667pt;}
.y13{bottom:1.920000pt;}
.y8d{bottom:3.186667pt;}
.y3{bottom:3.200000pt;}
.y8f{bottom:3.506667pt;}
.y9c{bottom:3.520000pt;}
.y91{bottom:3.826667pt;}
.y9e{bottom:3.840000pt;}
.yb{bottom:5.760000pt;}
.y9{bottom:6.080000pt;}
.yc{bottom:6.400000pt;}
.y11{bottom:7.040000pt;}
.y8{bottom:7.360000pt;}
.y6{bottom:7.680000pt;}
.y8b{bottom:11.826667pt;}
.ya0{bottom:12.160000pt;}
.y8c{bottom:20.146667pt;}
.y98{bottom:20.466667pt;}
.y9a{bottom:20.480000pt;}
.ya1{bottom:20.800000pt;}
.y1a{bottom:23.346667pt;}
.y5{bottom:29.440000pt;}
.y10{bottom:30.080000pt;}
.y95{bottom:37.426667pt;}
.y9b{bottom:37.466667pt;}
.y19{bottom:42.546667pt;}
.y1{bottom:45.440000pt;}
.y97{bottom:54.386667pt;}
.y41{bottom:66.880000pt;}
.y18{bottom:70.386667pt;}
.y96{bottom:71.026667pt;}
.y17{bottom:83.826667pt;}
.y76{bottom:98.912000pt;}
.yb5{bottom:102.112000pt;}
.y16{bottom:111.693333pt;}
.y75{bottom:114.912000pt;}
.ydf{bottom:117.152000pt;}
.yc3{bottom:118.112000pt;}
.yf7{bottom:118.432000pt;}
.yf8{bottom:119.072000pt;}
.y86{bottom:119.392000pt;}
.yb4{bottom:124.192000pt;}
.y15{bottom:125.133333pt;}
.y3e{bottom:127.712000pt;}
.y74{bottom:130.912000pt;}
.yde{bottom:138.906667pt;}
.yc2{bottom:139.866667pt;}
.yf6{bottom:140.186667pt;}
.y85{bottom:141.146667pt;}
.yb3{bottom:145.946667pt;}
.y73{bottom:146.906667pt;}
.y3c{bottom:149.786667pt;}
.y72{bottom:152.986667pt;}
.ydd{bottom:160.986667pt;}
.yc1{bottom:161.946667pt;}
.yf5{bottom:162.266667pt;}
.y71{bottom:163.226667pt;}
.y82{bottom:163.866667pt;}
.yb2{bottom:168.026667pt;}
.y3b{bottom:171.546667pt;}
.y70{bottom:178.586667pt;}
.ydc{bottom:182.786667pt;}
.yc0{bottom:183.746667pt;}
.yf4{bottom:184.066667pt;}
.y81{bottom:185.026667pt;}
.yb1{bottom:189.826667pt;}
.y3a{bottom:193.666667pt;}
.y6f{bottom:193.986667pt;}
.y6e{bottom:200.066667pt;}
.ydb{bottom:204.546667pt;}
.ybf{bottom:205.826667pt;}
.yf3{bottom:206.146667pt;}
.y80{bottom:207.106667pt;}
.y6d{bottom:209.346667pt;}
.yb0{bottom:211.906667pt;}
.y39{bottom:215.106667pt;}
.y3d{bottom:215.426667pt;}
.y6c{bottom:224.386667pt;}
.yda{bottom:226.946667pt;}
.ybe{bottom:227.586667pt;}
.yf2{bottom:227.906667pt;}
.y88{bottom:228.546667pt;}
.y7f{bottom:228.866667pt;}
.yaf{bottom:233.666667pt;}
.y38{bottom:237.186667pt;}
.y6b{bottom:239.746667pt;}
.ybd{bottom:249.666667pt;}
.yf1{bottom:249.986667pt;}
.y87{bottom:250.626667pt;}
.y7e{bottom:250.946667pt;}
.y6a{bottom:255.426667pt;}
.yae{bottom:255.746667pt;}
.y37{bottom:258.626667pt;}
.y69{bottom:262.146667pt;}
.ybc{bottom:271.426667pt;}
.yf0{bottom:271.746667pt;}
.y68{bottom:272.066667pt;}
.y7d{bottom:272.706667pt;}
.yad{bottom:277.506667pt;}
.y36{bottom:278.466667pt;}
.ybb{bottom:293.533333pt;}
.yef{bottom:293.853333pt;}
.y67{bottom:294.813333pt;}
.y35{bottom:299.613333pt;}
.yba{bottom:315.293333pt;}
.yee{bottom:315.933333pt;}
.y66{bottom:316.573333pt;}
.y34{bottom:319.133333pt;}
.yac{bottom:321.373333pt;}
.yb9{bottom:337.053333pt;}
.yd9{bottom:337.373333pt;}
.yed{bottom:337.693333pt;}
.y33{bottom:338.333333pt;}
.y65{bottom:338.653333pt;}
.yab{bottom:343.453333pt;}
.y32{bottom:357.853333pt;}
.yd8{bottom:359.133333pt;}
.yb8{bottom:359.453333pt;}
.yec{bottom:359.773333pt;}
.y64{bottom:360.413333pt;}
.yaa{bottom:365.213333pt;}
.y31{bottom:377.373333pt;}
.yd7{bottom:381.213333pt;}
.yeb{bottom:381.533333pt;}
.yb7{bottom:381.853333pt;}
.y62{bottom:382.493333pt;}
.ya9{bottom:387.293333pt;}
.y63{bottom:389.213333pt;}
.y30{bottom:396.573333pt;}
.yd6{bottom:403.013333pt;}
.yea{bottom:403.653333pt;}
.y61{bottom:404.293333pt;}
.ya8{bottom:409.093333pt;}
.y2f{bottom:416.133333pt;}
.yd5{bottom:425.093333pt;}
.ye9{bottom:425.413333pt;}
.y60{bottom:426.373333pt;}
.ya7{bottom:431.173333pt;}
.y2e{bottom:435.653333pt;}
.yd4{bottom:446.853333pt;}
.ye8{bottom:447.493333pt;}
.y5f{bottom:448.133333pt;}
.ya6{bottom:452.933333pt;}
.y2d{bottom:454.853333pt;}
.yd3{bottom:468.933333pt;}
.ye7{bottom:469.253333pt;}
.y5e{bottom:470.213333pt;}
.y2c{bottom:474.373333pt;}
.ya5{bottom:475.013333pt;}
.ya4{bottom:488.773333pt;}
.yd2{bottom:490.693333pt;}
.ye6{bottom:491.333333pt;}
.y5d{bottom:491.973333pt;}
.y2b{bottom:493.573333pt;}
.ya3{bottom:506.373333pt;}
.yd1{bottom:512.800000pt;}
.y2a{bottom:513.120000pt;}
.y5c{bottom:514.080000pt;}
.ya2{bottom:524.000000pt;}
.y29{bottom:532.640000pt;}
.yd0{bottom:534.560000pt;}
.ye5{bottom:535.200000pt;}
.y5a{bottom:535.840000pt;}
.y9f{bottom:541.280000pt;}
.y5b{bottom:542.560000pt;}
.y28{bottom:551.840000pt;}
.ycf{bottom:556.640000pt;}
.ye4{bottom:556.960000pt;}
.y59{bottom:557.920000pt;}
.y27{bottom:571.360000pt;}
.y9d{bottom:575.840000pt;}
.yce{bottom:578.400000pt;}
.ye3{bottom:579.040000pt;}
.y58{bottom:579.680000pt;}
.y26{bottom:590.560000pt;}
.y99{bottom:593.440000pt;}
.ycd{bottom:600.480000pt;}
.ye2{bottom:600.800000pt;}
.y57{bottom:601.760000pt;}
.y25{bottom:610.080000pt;}
.ycc{bottom:622.240000pt;}
.ye1{bottom:622.560000pt;}
.y56{bottom:623.546667pt;}
.y24{bottom:629.626667pt;}
.ycb{bottom:644.346667pt;}
.y94{bottom:644.680000pt;}
.ye0{bottom:644.986667pt;}
.y55{bottom:645.626667pt;}
.y23{bottom:648.826667pt;}
.yca{bottom:666.106667pt;}
.y54{bottom:667.386667pt;}
.y22{bottom:668.346667pt;}
.y21{bottom:687.546667pt;}
.yc9{bottom:688.186667pt;}
.y52{bottom:689.466667pt;}
.y53{bottom:696.186667pt;}
.y20{bottom:707.066667pt;}
.yc8{bottom:709.946667pt;}
.y51{bottom:711.226667pt;}
.y1f{bottom:726.266667pt;}
.y93{bottom:729.480000pt;}
.yc7{bottom:732.026667pt;}
.y50{bottom:733.306667pt;}
.y1e{bottom:743.586667pt;}
.y92{bottom:747.120000pt;}
.y1c{bottom:750.960000pt;}
.yc6{bottom:753.826667pt;}
.yb6{bottom:754.786667pt;}
.y4f{bottom:755.106667pt;}
.y14{bottom:757.360000pt;}
.y1b{bottom:761.054484pt;}
.y90{bottom:764.720000pt;}
.yc5{bottom:776.226667pt;}
.y4e{bottom:777.186667pt;}
.y8e{bottom:782.320000pt;}
.yc4{bottom:798.626667pt;}
.y7c{bottom:798.946667pt;}
.y4d{bottom:799.266667pt;}
.y8a{bottom:799.920000pt;}
.y7b{bottom:820.706667pt;}
.y4c{bottom:821.026667pt;}
.y4b{bottom:843.106667pt;}
.y4a{bottom:864.893333pt;}
.y49{bottom:886.653333pt;}
.y7a{bottom:886.973333pt;}
.y12{bottom:905.213333pt;}
.y48{bottom:908.413333pt;}
.y79{bottom:908.733333pt;}
.yf{bottom:910.973333pt;}
.y47{bottom:930.493333pt;}
.y77{bottom:930.813333pt;}
.y78{bottom:937.533333pt;}
.y84{bottom:952.253333pt;}
.y46{bottom:952.573333pt;}
.yd{bottom:957.093333pt;}
.ya{bottom:961.893333pt;}
.y83{bottom:974.373333pt;}
.y45{bottom:974.693333pt;}
.y2{bottom:983.333333pt;}
.y89{bottom:996.133333pt;}
.y44{bottom:996.453333pt;}
.y7{bottom:1003.173333pt;}
.y43{bottom:1018.533333pt;}
.y4{bottom:1028.133333pt;}
.y42{bottom:1040.293333pt;}
.y40{bottom:1055.333333pt;}
.y3f{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h18{height:6.386667pt;}
.hd{height:12.317500pt;}
.h19{height:16.107500pt;}
.h2d{height:16.626667pt;}
.h34{height:16.640000pt;}
.h35{height:16.666667pt;}
.h2e{height:16.946667pt;}
.h32{height:16.960000pt;}
.h2f{height:16.978667pt;}
.h11{height:17.408000pt;}
.h8{height:19.826667pt;}
.ha{height:21.426667pt;}
.h7{height:24.946667pt;}
.h20{height:27.093750pt;}
.h1a{height:32.765625pt;}
.h2c{height:33.586667pt;}
.h28{height:33.901875pt;}
.h2a{height:33.918750pt;}
.h33{height:33.920000pt;}
.h25{height:34.374375pt;}
.h23{height:36.431250pt;}
.h24{height:41.112500pt;}
.h14{height:42.570000pt;}
.he{height:46.106667pt;}
.h5{height:47.066667pt;}
.h1c{height:48.530000pt;}
.h36{height:49.622500pt;}
.h9{height:49.852500pt;}
.h31{height:50.592000pt;}
.h29{height:52.736250pt;}
.h27{height:52.762500pt;}
.h26{height:53.471250pt;}
.hb{height:54.187500pt;}
.h2{height:54.882500pt;}
.h16{height:56.875000pt;}
.h1b{height:57.758750pt;}
.h1e{height:57.787500pt;}
.h21{height:58.563750pt;}
.h1d{height:59.340000pt;}
.h15{height:60.270000pt;}
.h1f{height:60.519362pt;}
.h6{height:62.857500pt;}
.h2b{height:63.311250pt;}
.h17{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.010000pt;}
.h30{height:84.146667pt;}
.h3{height:91.866667pt;}
.h12{height:147.840000pt;}
.h22{height:1122.556520pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:47.380000pt;}
.wb{width:83.552000pt;}
.w2{width:96.020000pt;}
.w4{width:96.026667pt;}
.wa{width:233.680000pt;}
.wc{width:234.000000pt;}
.w6{width:245.840000pt;}
.w5{width:246.160000pt;}
.w3{width:492.000000pt;}
.w7{width:596.720000pt;}
.w8{width:793.916667pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.348000pt;}
.x5{left:9.906667pt;}
.x10{left:18.240000pt;}
.x16{left:26.260000pt;}
.xb{left:30.080000pt;}
.x14{left:32.660000pt;}
.xe{left:44.148000pt;}
.x9{left:47.373333pt;}
.x2{left:54.124000pt;}
.xc{left:72.653333pt;}
.xf{left:75.853333pt;}
.x15{left:77.782667pt;}
.xd{left:85.466667pt;}
.x8{left:96.360000pt;}
.x3{left:97.942667pt;}
.x13{left:101.169333pt;}
.x1b{left:109.792000pt;}
.x17{left:115.249333pt;}
.x26{left:120.060667pt;}
.x27{left:124.544000pt;}
.x1c{left:133.826667pt;}
.x21{left:144.066667pt;}
.x31{left:145.040000pt;}
.x4{left:150.160000pt;}
.x12{left:151.729333pt;}
.x18{left:153.969333pt;}
.x6{left:185.653333pt;}
.x24{left:274.970000pt;}
.x22{left:276.290000pt;}
.x25{left:279.493333pt;}
.x23{left:285.253333pt;}
.x19{left:288.916443pt;}
.x11{left:298.356000pt;}
.x1f{left:315.970000pt;}
.x20{left:320.453333pt;}
.x32{left:379.040000pt;}
.xa{left:396.320000pt;}
.x28{left:420.960000pt;}
.x2c{left:425.440000pt;}
.x1d{left:434.746667pt;}
.x2f{left:438.903333pt;}
.x30{left:443.386667pt;}
.x2d{left:449.466667pt;}
.x1e{left:458.746667pt;}
.x33{left:462.920000pt;}
.x2b{left:468.986667pt;}
.x29{left:531.103333pt;}
.x2a{left:535.586667pt;}
.x2e{left:613.053333pt;}
.x7{left:642.173333pt;}
.x1{left:676.773333pt;}
}




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