
    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_7425fecdf79260d578720a2b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.860000;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_0dc80c3344b7b8fe440b96ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_8f13b97a71ee7c4e71e94510.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.015625;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_438efaa7964a8cffa04ee5a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.163086;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_7e203b8df3457c3f3cbf337a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_3937de75292a137fca2c6593.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986000;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_6f08dfa6c4e1ffad3394fd86.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.980000;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_4c2e22f4c41a7c758073da87.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.699000;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_f6356e9651aba2affdaadfec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.995000;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_01ecb0b4bf41d8ee45cb4661.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.975000;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_d137a4f71116f930cc91ba0e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.149000;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_155bde17b0328d1d744aaf2a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.141000;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_549ff3c22ef0d11ea75c51f5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.699000;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_4937a67b50bbb681adf584cb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.756000;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_6cdc67a4d6049d28cb21d877.woff2')format("woff");}.fff{font-family:fff;line-height:0.894000;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_7b37cdb496a975f6fff32b43.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.972000;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_cc5e644b0061ada96d7cf0ac.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.149000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-20.979000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.000000px;}
.v3{vertical-align:21.978000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000300px;}
.ls9{letter-spacing:0.048000px;}
.ls2e{letter-spacing:0.054000px;}
.lsc{letter-spacing:0.063000px;}
.ls8{letter-spacing:0.096000px;}
.ls25{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.126000px;}
.ls29{letter-spacing:0.162000px;}
.lsd{letter-spacing:0.189000px;}
.ls16{letter-spacing:0.190200px;}
.ls2{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.252000px;}
.ls38{letter-spacing:0.270000px;}
.ls30{letter-spacing:0.308700px;}
.lse{letter-spacing:0.315000px;}
.ls31{letter-spacing:0.315600px;}
.ls2f{letter-spacing:0.324000px;}
.ls7{letter-spacing:0.336000px;}
.ls14{letter-spacing:0.378000px;}
.lsa{letter-spacing:0.384000px;}
.ls22{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.441000px;}
.ls1{letter-spacing:0.486000px;}
.lsf{letter-spacing:0.504000px;}
.ls34{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.567000px;}
.ls4{letter-spacing:0.593088px;}
.ls35{letter-spacing:0.594000px;}
.lsb{letter-spacing:0.630000px;}
.ls24{letter-spacing:0.648000px;}
.ls1d{letter-spacing:0.693000px;}
.ls3{letter-spacing:0.702000px;}
.ls26{letter-spacing:0.756000px;}
.ls1c{letter-spacing:0.810000px;}
.ls27{letter-spacing:0.819000px;}
.ls15{letter-spacing:0.882000px;}
.ls39{letter-spacing:0.918000px;}
.ls5{letter-spacing:0.960000px;}
.ls1b{letter-spacing:0.972000px;}
.ls2a{letter-spacing:1.008000px;}
.ls2c{letter-spacing:1.026000px;}
.ls23{letter-spacing:1.071000px;}
.ls3a{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.134000px;}
.ls3b{letter-spacing:1.188000px;}
.ls32{letter-spacing:1.260000px;}
.ls6{letter-spacing:1.392000px;}
.ls36{letter-spacing:1.458000px;}
.ls2b{letter-spacing:1.512000px;}
.ls37{letter-spacing:1.566000px;}
.ls28{letter-spacing:1.575000px;}
.ls20{letter-spacing:1.831800px;}
.ls21{letter-spacing:1.832400px;}
.ls1a{letter-spacing:2.052000px;}
.ls1e{letter-spacing:2.520000px;}
.ls1f{letter-spacing:5.214000px;}
.ls33{letter-spacing:5.332200px;}
.ls2d{letter-spacing:5.491800px;}
.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;}
}
.ws5{word-spacing:-22.500000px;}
.ws10{word-spacing:-16.884000px;}
.ws18{word-spacing:-16.758000px;}
.ws1c{word-spacing:-16.569000px;}
.ws13{word-spacing:-16.443000px;}
.ws1d{word-spacing:-16.380000px;}
.ws12{word-spacing:-16.254000px;}
.ws1b{word-spacing:-16.191000px;}
.ws11{word-spacing:-16.065000px;}
.wse{word-spacing:-16.002000px;}
.ws17{word-spacing:-15.939000px;}
.wsf{word-spacing:-15.876000px;}
.ws8{word-spacing:-15.750000px;}
.ws1e{word-spacing:-15.000000px;}
.ws19{word-spacing:-14.526000px;}
.ws7{word-spacing:-14.202000px;}
.ws15{word-spacing:-14.148000px;}
.ws14{word-spacing:-13.932000px;}
.ws16{word-spacing:-13.662000px;}
.ws6{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.104000px;}
.ws9{word-spacing:-12.096000px;}
.wsa{word-spacing:-12.000000px;}
.ws3{word-spacing:-11.970000px;}
.wsb{word-spacing:-9.619500px;}
.wsd{word-spacing:-9.182250px;}
.ws0{word-spacing:-7.650000px;}
.wsc{word-spacing:-6.996000px;}
.ws1a{word-spacing:-0.352800px;}
.ws1{word-spacing:-0.110160px;}
.ws4{word-spacing:0.000000px;}
._f{margin-left:-17.533187px;}
._b{margin-left:-16.435222px;}
._a{margin-left:-15.289194px;}
._d{margin-left:-13.747232px;}
._8{margin-left:-12.574188px;}
._e{margin-left:-6.424793px;}
._c{margin-left:-4.968033px;}
._0{margin-left:-3.851998px;}
._2{margin-left:-2.549996px;}
._1{margin-left:-1.470000px;}
._4{width:1.260000px;}
._7{width:2.261994px;}
._5{width:3.929999px;}
._6{width:5.609999px;}
._3{width:7.193999px;}
._9{width:11.040000px;}
.fc1{color:rgb(164,164,164);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:27.984000px;}
.fs2{font-size:30.600000px;}
.fsc{font-size:36.000000px;}
.fse{font-size:36.729000px;}
.fsd{font-size:38.478000px;}
.fs5{font-size:42.000000px;}
.fs10{font-size:44.100000px;}
.fsb{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fsf{font-size:54.832992px;}
.fs11{font-size:60.000000px;}
.fs1{font-size:61.200000px;}
.fs6{font-size:63.000000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:73.440000px;}
.fs7{font-size:90.000000px;}
.fs4{font-size:110.160006px;}
.fs0{font-size:183.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.315000px;}
.y43{bottom:93.413550px;}
.y42{bottom:107.669550px;}
.y6c{bottom:112.677300px;}
.y89{bottom:112.913550px;}
.ycc{bottom:112.913700px;}
.ya2{bottom:112.915050px;}
.ya7{bottom:112.916550px;}
.y41{bottom:121.913550px;}
.y6b{bottom:126.927300px;}
.y88{bottom:132.413550px;}
.ycb{bottom:132.413700px;}
.y9e{bottom:132.415050px;}
.yd6{bottom:132.419550px;}
.y40{bottom:136.169550px;}
.y78{bottom:141.177300px;}
.y99{bottom:141.183300px;}
.y6a{bottom:145.173300px;}
.y3f{bottom:150.413550px;}
.y87{bottom:151.913550px;}
.yca{bottom:151.913700px;}
.yd5{bottom:151.919550px;}
.y77{bottom:155.433300px;}
.y80{bottom:155.439300px;}
.y98{bottom:159.423300px;}
.y3e{bottom:164.675550px;}
.y76{bottom:169.677300px;}
.y7f{bottom:169.683300px;}
.y86{bottom:171.413550px;}
.yc9{bottom:171.413700px;}
.yde{bottom:171.419550px;}
.y3d{bottom:178.919550px;}
.y75{bottom:183.927300px;}
.y69{bottom:190.913550px;}
.yc8{bottom:190.913700px;}
.y9d{bottom:190.915050px;}
.y3c{bottom:193.163550px;}
.y74{bottom:198.177300px;}
.y3b{bottom:207.413550px;}
.y68{bottom:210.413550px;}
.yd4{bottom:210.419550px;}
.yc7{bottom:210.419700px;}
.y7e{bottom:212.433300px;}
.y73{bottom:216.423300px;}
.y3a{bottom:221.663550px;}
.y7d{bottom:226.677300px;}
.y67{bottom:229.913550px;}
.y92{bottom:229.915050px;}
.y8c{bottom:229.919550px;}
.yc6{bottom:229.919700px;}
.y39{bottom:235.925550px;}
.y7c{bottom:244.923300px;}
.y72{bottom:249.413550px;}
.yc5{bottom:249.413700px;}
.y66{bottom:249.415050px;}
.ydd{bottom:249.419550px;}
.y38{bottom:250.169550px;}
.y37{bottom:264.413550px;}
.y65{bottom:268.913550px;}
.y71{bottom:268.915050px;}
.yd3{bottom:268.919550px;}
.yc4{bottom:268.919700px;}
.y36{bottom:278.663550px;}
.y64{bottom:288.413550px;}
.yc3{bottom:288.413700px;}
.y85{bottom:288.415050px;}
.ya3{bottom:288.419550px;}
.y35{bottom:292.913550px;}
.y63{bottom:307.913550px;}
.yc2{bottom:307.913700px;}
.y34{bottom:311.159550px;}
.y62{bottom:327.413550px;}
.yc1{bottom:327.413700px;}
.y61{bottom:346.913550px;}
.y33{bottom:346.913700px;}
.ya8{bottom:346.915050px;}
.y60{bottom:366.413550px;}
.y32{bottom:366.413700px;}
.y90{bottom:366.415050px;}
.y8b{bottom:366.419550px;}
.y21{bottom:369.427471px;}
.y20{bottom:384.127544px;}
.y5f{bottom:385.913550px;}
.yc0{bottom:385.913700px;}
.y1f{bottom:398.827526px;}
.y5e{bottom:405.413550px;}
.ybf{bottom:405.413700px;}
.y84{bottom:405.415050px;}
.yd2{bottom:405.419550px;}
.y5d{bottom:424.913550px;}
.ybe{bottom:424.913700px;}
.y91{bottom:424.915050px;}
.y1e{bottom:428.527507px;}
.y31{bottom:435.413700px;}
.y1d{bottom:443.227489px;}
.y5c{bottom:444.413550px;}
.ybd{bottom:444.413700px;}
.y70{bottom:444.415050px;}
.ydc{bottom:444.419550px;}
.y30{bottom:451.919700px;}
.y1c{bottom:457.927516px;}
.y5b{bottom:463.913550px;}
.ybc{bottom:463.913700px;}
.ydb{bottom:463.919550px;}
.y5a{bottom:483.413550px;}
.ybb{bottom:483.413700px;}
.y83{bottom:483.415050px;}
.y1b{bottom:487.627498px;}
.y2f{bottom:495.416700px;}
.y1a{bottom:502.327480px;}
.y59{bottom:502.913550px;}
.yba{bottom:502.913700px;}
.yd1{bottom:502.919550px;}
.y2e{bottom:511.913700px;}
.y19{bottom:517.027507px;}
.y58{bottom:522.413550px;}
.yb9{bottom:522.413700px;}
.y96{bottom:522.415050px;}
.y9a{bottom:522.419550px;}
.y2d{bottom:528.413700px;}
.y18{bottom:529.627498px;}
.y57{bottom:541.913550px;}
.yb8{bottom:541.913700px;}
.y7b{bottom:541.915050px;}
.y2c{bottom:544.913700px;}
.y17{bottom:554.896511px;}
.y56{bottom:561.413550px;}
.y2b{bottom:561.413700px;}
.y6f{bottom:561.415050px;}
.ya6{bottom:561.416550px;}
.yda{bottom:561.419550px;}
.y2a{bottom:577.916700px;}
.y16{bottom:580.357509px;}
.y55{bottom:580.913550px;}
.yb7{bottom:580.913700px;}
.y82{bottom:580.915050px;}
.y15{bottom:592.957500px;}
.y29{bottom:594.413700px;}
.y54{bottom:600.413550px;}
.yb6{bottom:600.413700px;}
.y9c{bottom:600.415050px;}
.ya5{bottom:600.416550px;}
.y97{bottom:600.419550px;}
.y28{bottom:610.913700px;}
.y53{bottom:619.913550px;}
.yb5{bottom:619.913700px;}
.y8a{bottom:619.915050px;}
.yd0{bottom:619.919550px;}
.y27{bottom:627.413700px;}
.y52{bottom:639.413550px;}
.yb4{bottom:639.413700px;}
.ya0{bottom:639.415050px;}
.ya1{bottom:639.416550px;}
.yd9{bottom:639.419550px;}
.ye5{bottom:639.425700px;}
.y26{bottom:643.913700px;}
.y6e{bottom:658.913550px;}
.yb3{bottom:658.913700px;}
.y51{bottom:658.915050px;}
.y95{bottom:658.916550px;}
.ye4{bottom:658.919700px;}
.y50{bottom:678.413550px;}
.yb2{bottom:678.413700px;}
.y94{bottom:678.415050px;}
.y25{bottom:687.413700px;}
.y14{bottom:687.727489px;}
.y4f{bottom:697.913550px;}
.yb1{bottom:697.913700px;}
.y9f{bottom:697.915050px;}
.ycf{bottom:697.919550px;}
.ye3{bottom:697.919700px;}
.y13{bottom:702.427516px;}
.y24{bottom:714.413700px;}
.y12{bottom:717.127498px;}
.y4e{bottom:717.413550px;}
.yb0{bottom:717.413700px;}
.y11{bottom:731.827480px;}
.y4d{bottom:736.913550px;}
.yaf{bottom:736.913700px;}
.y93{bottom:736.915050px;}
.ye2{bottom:736.919700px;}
.y23{bottom:741.413700px;}
.y10{bottom:746.527507px;}
.y4c{bottom:756.413550px;}
.yae{bottom:756.413700px;}
.y7a{bottom:756.416550px;}
.yf{bottom:761.227489px;}
.y4b{bottom:775.913550px;}
.yad{bottom:775.913700px;}
.y79{bottom:775.915050px;}
.yd8{bottom:775.919550px;}
.ye1{bottom:775.925700px;}
.ye{bottom:775.927516px;}
.yd{bottom:790.627498px;}
.y4a{bottom:795.413550px;}
.y22{bottom:795.413700px;}
.y81{bottom:795.415050px;}
.ye0{bottom:795.419700px;}
.yc{bottom:804.277507px;}
.y49{bottom:814.913550px;}
.yac{bottom:814.913700px;}
.ya4{bottom:814.915050px;}
.y8f{bottom:814.918050px;}
.yd7{bottom:814.919550px;}
.y48{bottom:834.413550px;}
.yab{bottom:834.413700px;}
.y9b{bottom:834.415050px;}
.y8e{bottom:834.416550px;}
.ydf{bottom:834.419700px;}
.yce{bottom:834.425550px;}
.y47{bottom:853.913550px;}
.yaa{bottom:853.913700px;}
.y8d{bottom:853.915050px;}
.ycd{bottom:853.919550px;}
.yb{bottom:865.906505px;}
.y46{bottom:873.413550px;}
.ya9{bottom:873.413700px;}
.ya{bottom:904.669498px;}
.y6d{bottom:915.897450px;}
.y45{bottom:915.909300px;}
.y44{bottom:917.961300px;}
.y9{bottom:937.717495px;}
.y8{bottom:970.765491px;}
.y7{bottom:1007.443508px;}
.y6{bottom:1048.762504px;}
.y5{bottom:1082.737495px;}
.y4{bottom:1101.097503px;}
.y3{bottom:1131.547502px;}
.y2{bottom:1177.447500px;}
.h5{height:20.899800px;}
.h14{height:27.000000px;}
.h12{height:28.512000px;}
.h8{height:33.591797px;}
.h15{height:35.616000px;}
.h9{height:38.944336px;}
.hf{height:39.906000px;}
.h10{height:40.068000px;}
.h4{height:41.799600px;}
.h13{height:44.496000px;}
.hd{height:46.746000px;}
.h17{height:49.626000px;}
.h16{height:50.058000px;}
.h6{height:50.159520px;}
.h18{height:50.830184px;}
.h1a{height:55.620000px;}
.h19{height:58.395000px;}
.h11{height:58.401000px;}
.he{height:66.780000px;}
.h7{height:88.106489px;}
.h3{height:125.398800px;}
.hc{height:977.953500px;}
.ha{height:977.955000px;}
.hb{height:978.000000px;}
.h2{height:1262.520000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:659.055000px;}
.w3{width:659.250000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x4{left:97.795350px;}
.x7{left:102.040950px;}
.x5{left:114.803100px;}
.xa{left:141.962400px;}
.xb{left:152.870250px;}
.xd{left:192.664200px;}
.xe{left:203.669100px;}
.x1{left:234.000009px;}
.x3{left:303.256200px;}
.xf{left:347.674950px;}
.x8{left:348.922800px;}
.x6{left:350.290800px;}
.xc{left:561.259800px;}
.x9{left:574.015800px;}
@media print{
.v4{vertical-align:-18.648000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.666667pt;}
.v3{vertical-align:19.536000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000267pt;}
.ls9{letter-spacing:0.042667pt;}
.ls2e{letter-spacing:0.048000pt;}
.lsc{letter-spacing:0.056000pt;}
.ls8{letter-spacing:0.085333pt;}
.ls25{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.112000pt;}
.ls29{letter-spacing:0.144000pt;}
.lsd{letter-spacing:0.168000pt;}
.ls16{letter-spacing:0.169067pt;}
.ls2{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.224000pt;}
.ls38{letter-spacing:0.240000pt;}
.ls30{letter-spacing:0.274400pt;}
.lse{letter-spacing:0.280000pt;}
.ls31{letter-spacing:0.280533pt;}
.ls2f{letter-spacing:0.288000pt;}
.ls7{letter-spacing:0.298667pt;}
.ls14{letter-spacing:0.336000pt;}
.lsa{letter-spacing:0.341333pt;}
.ls22{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.392000pt;}
.ls1{letter-spacing:0.432000pt;}
.lsf{letter-spacing:0.448000pt;}
.ls34{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.504000pt;}
.ls4{letter-spacing:0.527189pt;}
.ls35{letter-spacing:0.528000pt;}
.lsb{letter-spacing:0.560000pt;}
.ls24{letter-spacing:0.576000pt;}
.ls1d{letter-spacing:0.616000pt;}
.ls3{letter-spacing:0.624000pt;}
.ls26{letter-spacing:0.672000pt;}
.ls1c{letter-spacing:0.720000pt;}
.ls27{letter-spacing:0.728000pt;}
.ls15{letter-spacing:0.784000pt;}
.ls39{letter-spacing:0.816000pt;}
.ls5{letter-spacing:0.853333pt;}
.ls1b{letter-spacing:0.864000pt;}
.ls2a{letter-spacing:0.896000pt;}
.ls2c{letter-spacing:0.912000pt;}
.ls23{letter-spacing:0.952000pt;}
.ls3a{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.008000pt;}
.ls3b{letter-spacing:1.056000pt;}
.ls32{letter-spacing:1.120000pt;}
.ls6{letter-spacing:1.237333pt;}
.ls36{letter-spacing:1.296000pt;}
.ls2b{letter-spacing:1.344000pt;}
.ls37{letter-spacing:1.392000pt;}
.ls28{letter-spacing:1.400000pt;}
.ls20{letter-spacing:1.628267pt;}
.ls21{letter-spacing:1.628800pt;}
.ls1a{letter-spacing:1.824000pt;}
.ls1e{letter-spacing:2.240000pt;}
.ls1f{letter-spacing:4.634667pt;}
.ls33{letter-spacing:4.739733pt;}
.ls2d{letter-spacing:4.881600pt;}
.ws5{word-spacing:-20.000000pt;}
.ws10{word-spacing:-15.008000pt;}
.ws18{word-spacing:-14.896000pt;}
.ws1c{word-spacing:-14.728000pt;}
.ws13{word-spacing:-14.616000pt;}
.ws1d{word-spacing:-14.560000pt;}
.ws12{word-spacing:-14.448000pt;}
.ws1b{word-spacing:-14.392000pt;}
.ws11{word-spacing:-14.280000pt;}
.wse{word-spacing:-14.224000pt;}
.ws17{word-spacing:-14.168000pt;}
.wsf{word-spacing:-14.112000pt;}
.ws8{word-spacing:-14.000000pt;}
.ws1e{word-spacing:-13.333333pt;}
.ws19{word-spacing:-12.912000pt;}
.ws7{word-spacing:-12.624000pt;}
.ws15{word-spacing:-12.576000pt;}
.ws14{word-spacing:-12.384000pt;}
.ws16{word-spacing:-12.144000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.648000pt;}
.ws9{word-spacing:-10.752000pt;}
.wsa{word-spacing:-10.666667pt;}
.ws3{word-spacing:-10.640000pt;}
.wsb{word-spacing:-8.550667pt;}
.wsd{word-spacing:-8.162000pt;}
.ws0{word-spacing:-6.800000pt;}
.wsc{word-spacing:-6.218667pt;}
.ws1a{word-spacing:-0.313600pt;}
.ws1{word-spacing:-0.097920pt;}
.ws4{word-spacing:0.000000pt;}
._f{margin-left:-15.585055pt;}
._b{margin-left:-14.609086pt;}
._a{margin-left:-13.590395pt;}
._d{margin-left:-12.219762pt;}
._8{margin-left:-11.177056pt;}
._e{margin-left:-5.710928pt;}
._c{margin-left:-4.416030pt;}
._0{margin-left:-3.423998pt;}
._2{margin-left:-2.266663pt;}
._1{margin-left:-1.306667pt;}
._4{width:1.120000pt;}
._7{width:2.010661pt;}
._5{width:3.493332pt;}
._6{width:4.986666pt;}
._3{width:6.394666pt;}
._9{width:9.813333pt;}
.fsa{font-size:24.874667pt;}
.fs2{font-size:27.200000pt;}
.fsc{font-size:32.000000pt;}
.fse{font-size:32.648000pt;}
.fsd{font-size:34.202667pt;}
.fs5{font-size:37.333333pt;}
.fs10{font-size:39.200000pt;}
.fsb{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fsf{font-size:48.740438pt;}
.fs11{font-size:53.333333pt;}
.fs1{font-size:54.400000pt;}
.fs6{font-size:56.000000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:65.280000pt;}
.fs7{font-size:80.000000pt;}
.fs4{font-size:97.920005pt;}
.fs0{font-size:163.200000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.280000pt;}
.y43{bottom:83.034267pt;}
.y42{bottom:95.706267pt;}
.y6c{bottom:100.157600pt;}
.y89{bottom:100.367600pt;}
.ycc{bottom:100.367733pt;}
.ya2{bottom:100.368933pt;}
.ya7{bottom:100.370267pt;}
.y41{bottom:108.367600pt;}
.y6b{bottom:112.824267pt;}
.y88{bottom:117.700933pt;}
.ycb{bottom:117.701067pt;}
.y9e{bottom:117.702267pt;}
.yd6{bottom:117.706267pt;}
.y40{bottom:121.039600pt;}
.y78{bottom:125.490933pt;}
.y99{bottom:125.496267pt;}
.y6a{bottom:129.042933pt;}
.y3f{bottom:133.700933pt;}
.y87{bottom:135.034267pt;}
.yca{bottom:135.034400pt;}
.yd5{bottom:135.039600pt;}
.y77{bottom:138.162933pt;}
.y80{bottom:138.168267pt;}
.y98{bottom:141.709600pt;}
.y3e{bottom:146.378267pt;}
.y76{bottom:150.824267pt;}
.y7f{bottom:150.829600pt;}
.y86{bottom:152.367600pt;}
.yc9{bottom:152.367733pt;}
.yde{bottom:152.372933pt;}
.y3d{bottom:159.039600pt;}
.y75{bottom:163.490933pt;}
.y69{bottom:169.700933pt;}
.yc8{bottom:169.701067pt;}
.y9d{bottom:169.702267pt;}
.y3c{bottom:171.700933pt;}
.y74{bottom:176.157600pt;}
.y3b{bottom:184.367600pt;}
.y68{bottom:187.034267pt;}
.yd4{bottom:187.039600pt;}
.yc7{bottom:187.039733pt;}
.y7e{bottom:188.829600pt;}
.y73{bottom:192.376267pt;}
.y3a{bottom:197.034267pt;}
.y7d{bottom:201.490933pt;}
.y67{bottom:204.367600pt;}
.y92{bottom:204.368933pt;}
.y8c{bottom:204.372933pt;}
.yc6{bottom:204.373067pt;}
.y39{bottom:209.711600pt;}
.y7c{bottom:217.709600pt;}
.y72{bottom:221.700933pt;}
.yc5{bottom:221.701067pt;}
.y66{bottom:221.702267pt;}
.ydd{bottom:221.706267pt;}
.y38{bottom:222.372933pt;}
.y37{bottom:235.034267pt;}
.y65{bottom:239.034267pt;}
.y71{bottom:239.035600pt;}
.yd3{bottom:239.039600pt;}
.yc4{bottom:239.039733pt;}
.y36{bottom:247.700933pt;}
.y64{bottom:256.367600pt;}
.yc3{bottom:256.367733pt;}
.y85{bottom:256.368933pt;}
.ya3{bottom:256.372933pt;}
.y35{bottom:260.367600pt;}
.y63{bottom:273.700933pt;}
.yc2{bottom:273.701067pt;}
.y34{bottom:276.586267pt;}
.y62{bottom:291.034267pt;}
.yc1{bottom:291.034400pt;}
.y61{bottom:308.367600pt;}
.y33{bottom:308.367733pt;}
.ya8{bottom:308.368933pt;}
.y60{bottom:325.700933pt;}
.y32{bottom:325.701067pt;}
.y90{bottom:325.702267pt;}
.y8b{bottom:325.706267pt;}
.y21{bottom:328.379974pt;}
.y20{bottom:341.446706pt;}
.y5f{bottom:343.034267pt;}
.yc0{bottom:343.034400pt;}
.y1f{bottom:354.513356pt;}
.y5e{bottom:360.367600pt;}
.ybf{bottom:360.367733pt;}
.y84{bottom:360.368933pt;}
.yd2{bottom:360.372933pt;}
.y5d{bottom:377.700933pt;}
.ybe{bottom:377.701067pt;}
.y91{bottom:377.702267pt;}
.y1e{bottom:380.913340pt;}
.y31{bottom:387.034400pt;}
.y1d{bottom:393.979990pt;}
.y5c{bottom:395.034267pt;}
.ybd{bottom:395.034400pt;}
.y70{bottom:395.035600pt;}
.ydc{bottom:395.039600pt;}
.y30{bottom:401.706400pt;}
.y1c{bottom:407.046681pt;}
.y5b{bottom:412.367600pt;}
.ybc{bottom:412.367733pt;}
.ydb{bottom:412.372933pt;}
.y5a{bottom:429.700933pt;}
.ybb{bottom:429.701067pt;}
.y83{bottom:429.702267pt;}
.y1b{bottom:433.446665pt;}
.y2f{bottom:440.370400pt;}
.y1a{bottom:446.513315pt;}
.y59{bottom:447.034267pt;}
.yba{bottom:447.034400pt;}
.yd1{bottom:447.039600pt;}
.y2e{bottom:455.034400pt;}
.y19{bottom:459.580007pt;}
.y58{bottom:464.367600pt;}
.yb9{bottom:464.367733pt;}
.y96{bottom:464.368933pt;}
.y9a{bottom:464.372933pt;}
.y2d{bottom:469.701067pt;}
.y18{bottom:470.779998pt;}
.y57{bottom:481.700933pt;}
.yb8{bottom:481.701067pt;}
.y7b{bottom:481.702267pt;}
.y2c{bottom:484.367733pt;}
.y17{bottom:493.241343pt;}
.y56{bottom:499.034267pt;}
.y2b{bottom:499.034400pt;}
.y6f{bottom:499.035600pt;}
.ya6{bottom:499.036933pt;}
.yda{bottom:499.039600pt;}
.y2a{bottom:513.703733pt;}
.y16{bottom:515.873341pt;}
.y55{bottom:516.367600pt;}
.yb7{bottom:516.367733pt;}
.y82{bottom:516.368933pt;}
.y15{bottom:527.073333pt;}
.y29{bottom:528.367733pt;}
.y54{bottom:533.700933pt;}
.yb6{bottom:533.701067pt;}
.y9c{bottom:533.702267pt;}
.ya5{bottom:533.703600pt;}
.y97{bottom:533.706267pt;}
.y28{bottom:543.034400pt;}
.y53{bottom:551.034267pt;}
.yb5{bottom:551.034400pt;}
.y8a{bottom:551.035600pt;}
.yd0{bottom:551.039600pt;}
.y27{bottom:557.701067pt;}
.y52{bottom:568.367600pt;}
.yb4{bottom:568.367733pt;}
.ya0{bottom:568.368933pt;}
.ya1{bottom:568.370267pt;}
.yd9{bottom:568.372933pt;}
.ye5{bottom:568.378400pt;}
.y26{bottom:572.367733pt;}
.y6e{bottom:585.700933pt;}
.yb3{bottom:585.701067pt;}
.y51{bottom:585.702267pt;}
.y95{bottom:585.703600pt;}
.ye4{bottom:585.706400pt;}
.y50{bottom:603.034267pt;}
.yb2{bottom:603.034400pt;}
.y94{bottom:603.035600pt;}
.y25{bottom:611.034400pt;}
.y14{bottom:611.313324pt;}
.y4f{bottom:620.367600pt;}
.yb1{bottom:620.367733pt;}
.y9f{bottom:620.368933pt;}
.ycf{bottom:620.372933pt;}
.ye3{bottom:620.373067pt;}
.y13{bottom:624.380015pt;}
.y24{bottom:635.034400pt;}
.y12{bottom:637.446665pt;}
.y4e{bottom:637.700933pt;}
.yb0{bottom:637.701067pt;}
.y11{bottom:650.513315pt;}
.y4d{bottom:655.034267pt;}
.yaf{bottom:655.034400pt;}
.y93{bottom:655.035600pt;}
.ye2{bottom:655.039733pt;}
.y23{bottom:659.034400pt;}
.y10{bottom:663.580007pt;}
.y4c{bottom:672.367600pt;}
.yae{bottom:672.367733pt;}
.y7a{bottom:672.370267pt;}
.yf{bottom:676.646657pt;}
.y4b{bottom:689.700933pt;}
.yad{bottom:689.701067pt;}
.y79{bottom:689.702267pt;}
.yd8{bottom:689.706267pt;}
.ye1{bottom:689.711733pt;}
.ye{bottom:689.713348pt;}
.yd{bottom:702.779998pt;}
.y4a{bottom:707.034267pt;}
.y22{bottom:707.034400pt;}
.y81{bottom:707.035600pt;}
.ye0{bottom:707.039733pt;}
.yc{bottom:714.913340pt;}
.y49{bottom:724.367600pt;}
.yac{bottom:724.367733pt;}
.ya4{bottom:724.368933pt;}
.y8f{bottom:724.371600pt;}
.yd7{bottom:724.372933pt;}
.y48{bottom:741.700933pt;}
.yab{bottom:741.701067pt;}
.y9b{bottom:741.702267pt;}
.y8e{bottom:741.703600pt;}
.ydf{bottom:741.706400pt;}
.yce{bottom:741.711600pt;}
.y47{bottom:759.034267pt;}
.yaa{bottom:759.034400pt;}
.y8d{bottom:759.035600pt;}
.ycd{bottom:759.039600pt;}
.yb{bottom:769.694671pt;}
.y46{bottom:776.367600pt;}
.ya9{bottom:776.367733pt;}
.ya{bottom:804.150665pt;}
.y6d{bottom:814.131067pt;}
.y45{bottom:814.141600pt;}
.y44{bottom:815.965600pt;}
.y9{bottom:833.526662pt;}
.y8{bottom:862.902659pt;}
.y7{bottom:895.505340pt;}
.y6{bottom:932.233337pt;}
.y5{bottom:962.433329pt;}
.y4{bottom:978.753336pt;}
.y3{bottom:1005.820002pt;}
.y2{bottom:1046.620000pt;}
.h5{height:18.577600pt;}
.h14{height:24.000000pt;}
.h12{height:25.344000pt;}
.h8{height:29.859375pt;}
.h15{height:31.658667pt;}
.h9{height:34.617188pt;}
.hf{height:35.472000pt;}
.h10{height:35.616000pt;}
.h4{height:37.155200pt;}
.h13{height:39.552000pt;}
.hd{height:41.552000pt;}
.h17{height:44.112000pt;}
.h16{height:44.496000pt;}
.h6{height:44.586240pt;}
.h18{height:45.182386pt;}
.h1a{height:49.440000pt;}
.h19{height:51.906667pt;}
.h11{height:51.912000pt;}
.he{height:59.360000pt;}
.h7{height:78.316879pt;}
.h3{height:111.465600pt;}
.hc{height:869.292000pt;}
.ha{height:869.293333pt;}
.hb{height:869.333333pt;}
.h2{height:1122.240000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:585.826667pt;}
.w3{width:586.000000pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x4{left:86.929200pt;}
.x7{left:90.703067pt;}
.x5{left:102.047200pt;}
.xa{left:126.188800pt;}
.xb{left:135.884667pt;}
.xd{left:171.257067pt;}
.xe{left:181.039200pt;}
.x1{left:208.000008pt;}
.x3{left:269.561067pt;}
.xf{left:309.044400pt;}
.x8{left:310.153600pt;}
.x6{left:311.369600pt;}
.xc{left:498.897600pt;}
.x9{left:510.236267pt;}
}




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