
    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_b1b951b5707a98516acc34f0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_91217f891fd3b55d411678ae.woff')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_655afaf7c5d0718101157028.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_79d1d75106db9e63f593239c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.091309;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_9ed640705ec3d1504a7d5281.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6a426f4f6fd126eee3df9b32.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_52eea97169339635584fdd04.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c2649c35f98d04cca90934a6.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_42983238fd060dc0f5b14129.woff')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_ae94a7ceb19b3a359bba7624.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_b8e5fb4ff2ddd7b988c9b0b4.woff')format("woff");}.ffb{font-family:ffb;line-height:1.128000;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_07170e33cd7daa7315c7fc07.woff')format("woff");}.ffc{font-family:ffc;line-height:1.332520;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_15b85c1690be186875539e97.woff')format("woff");}.ffd{font-family:ffd;line-height:1.330078;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_37ce9b17ecbcc72c6737764d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.911000;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_b2898133a12976b84e2879d6.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_ba10f954ac23e98df1288593.woff')format("woff");}.ff10{font-family:ff10;line-height:0.853027;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_dd66819be3fcb1f0390a2d69.woff')format("woff");}.ff11{font-family:ff11;line-height:0.946777;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_f032b43bc74c576b86cec80d.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_76ec2db1910691595038350b.woff')format("woff");}.ff13{font-family:ff13;line-height:1.313477;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_67e15118f42715b9c470b65d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.946777;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:ff15;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_b408034f9540f851781aeaee.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_39952827db96fdcc2acaeab0.woff')format("woff");}.ff17{font-family:ff17;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;}
.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(0.257467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);}
.m4{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:-18.000000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:20.879940px;}
.ls19{letter-spacing:-8.700000px;}
.ls18{letter-spacing:-0.584400px;}
.ls6{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.427118px;}
.ls10{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.263122px;}
.ls1a{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.106800px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000060px;}
.ls1b{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.057334px;}
.ls11{letter-spacing:0.106800px;}
.ls17{letter-spacing:0.135600px;}
.ls1e{letter-spacing:0.179940px;}
.ls1{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.206640px;}
.lsc{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.360060px;}
.ls9{letter-spacing:0.447957px;}
.lsa{letter-spacing:1.202407px;}
.ls13{letter-spacing:5.219940px;}
.ls12{letter-spacing:5.220000px;}
.ls1c{letter-spacing:16.506720px;}
.ls14{letter-spacing:46.026720px;}
.ls3{letter-spacing:1091.976000px;}
.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;}
}
.ws19{word-spacing:-59.966400px;}
.ws12{word-spacing:-59.760000px;}
.ws14{word-spacing:-16.506480px;}
.ws13{word-spacing:-15.300000px;}
.ws1b{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.199800px;}
.ws17{word-spacing:-15.046800px;}
.ws4{word-spacing:-15.012000px;}
.ws1f{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.833200px;}
.ws1e{word-spacing:-14.680200px;}
.ws16{word-spacing:-14.580000px;}
.ws18{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.030110px;}
.ws8{word-spacing:-12.865582px;}
.wsb{word-spacing:-11.872984px;}
.ws9{word-spacing:-11.788350px;}
.ws1{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.000000px;}
.ws1d{word-spacing:-0.419760px;}
.ws20{word-spacing:-0.059760px;}
.wsc{word-spacing:0.000000px;}
.ws1c{word-spacing:0.300240px;}
.wsf{word-spacing:2.942372px;}
.wse{word-spacing:3.696827px;}
.wsd{word-spacing:4.597450px;}
.wsa{word-spacing:8.250788px;}
.ws10{word-spacing:8.832435px;}
.ws1a{word-spacing:11.106720px;}
.ws7{word-spacing:618.361702px;}
._10{margin-left:-1118.976000px;}
._f{margin-left:-13.500000px;}
._e{margin-left:-3.538080px;}
._d{margin-left:-2.230560px;}
._3{margin-left:-1.116000px;}
._1{width:1.149120px;}
._5{width:2.484000px;}
._4{width:3.924000px;}
._8{width:5.598000px;}
._7{width:7.020000px;}
._9{width:8.514000px;}
._b{width:10.386000px;}
._a{width:12.204000px;}
._12{width:13.221660px;}
._6{width:14.796000px;}
._c{width:15.806880px;}
._11{width:16.975440px;}
._0{width:19.630800px;}
._13{width:21.931920px;}
._17{width:23.664960px;}
._15{width:25.318800px;}
._14{width:26.593200px;}
._18{width:36.035280px;}
._2{width:69.617520px;}
._16{width:1875.515940px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs8{font-size:45.900000px;}
.fs9{font-size:47.153400px;}
.fsa{font-size:47.262600px;}
.fs0{font-size:48.240000px;}
.fs7{font-size:53.170800px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:60.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y81{bottom:5.939985px;}
.y85{bottom:6.119985px;}
.y83{bottom:6.120015px;}
.y89{bottom:6.120030px;}
.y8b{bottom:6.165015px;}
.y99{bottom:11.519985px;}
.y2f{bottom:11.528550px;}
.y80{bottom:15.300015px;}
.y9c{bottom:17.099985px;}
.y53{bottom:18.000000px;}
.y69{bottom:18.165000px;}
.yf1{bottom:18.210000px;}
.y95{bottom:19.259985px;}
.y2d{bottom:24.887550px;}
.y2e{bottom:25.006605px;}
.y97{bottom:27.000000px;}
.y2c{bottom:29.506050px;}
.y7f{bottom:30.779985px;}
.y7d{bottom:34.200015px;}
.y93{bottom:34.740000px;}
.y96{bottom:42.480000px;}
.y1{bottom:44.820000px;}
.y94{bottom:50.219970px;}
.y98{bottom:58.139970px;}
.y52{bottom:73.440000px;}
.y28{bottom:77.760000px;}
.yaa{bottom:84.780000px;}
.yf0{bottom:85.680000px;}
.y27{bottom:94.320000px;}
.y51{bottom:95.040000px;}
.yc4{bottom:97.560000px;}
.ya9{bottom:101.880000px;}
.yef{bottom:107.460000px;}
.y90{bottom:108.540000px;}
.yc3{bottom:114.840000px;}
.ya8{bottom:119.160000px;}
.yee{bottom:124.740000px;}
.y68{bottom:126.360000px;}
.y26{bottom:127.800000px;}
.y8f{bottom:130.140000px;}
.yc2{bottom:132.120000px;}
.ya7{bottom:136.440000px;}
.yed{bottom:142.020000px;}
.y67{bottom:143.640000px;}
.y25{bottom:145.080000px;}
.yc1{bottom:149.400000px;}
.y66{bottom:160.920000px;}
.y24{bottom:162.360000px;}
.yec{bottom:163.620000px;}
.yc0{bottom:171.180000px;}
.y65{bottom:178.200000px;}
.y23{bottom:179.460000px;}
.yeb{bottom:180.900000px;}
.ya6{bottom:183.960000px;}
.ybf{bottom:188.460000px;}
.y64{bottom:195.480015px;}
.y22{bottom:196.740000px;}
.yea{bottom:202.710000px;}
.ybe{bottom:210.090000px;}
.y63{bottom:212.610015px;}
.y21{bottom:214.050000px;}
.ye9{bottom:219.990000px;}
.ybd{bottom:227.370000px;}
.y62{bottom:229.889985px;}
.y20{bottom:231.330000px;}
.ye8{bottom:241.769985px;}
.ybc{bottom:244.650015px;}
.y1f{bottom:248.610015px;}
.y61{bottom:255.809985px;}
.ye7{bottom:259.050000px;}
.ybb{bottom:261.930000px;}
.y1e{bottom:265.710000px;}
.ye6{bottom:276.150015px;}
.y60{bottom:277.410000px;}
.y1d{bottom:282.990000px;}
.yba{bottom:283.710000px;}
.ye5{bottom:297.930000px;}
.yb9{bottom:300.809985px;}
.y1c{bottom:313.590000px;}
.ye4{bottom:315.210000px;}
.yb8{bottom:318.090000px;}
.ye3{bottom:332.490000px;}
.yb7{bottom:335.370000px;}
.y8e{bottom:341.130000px;}
.y50{bottom:352.650015px;}
.ye2{bottom:354.269985px;}
.yb6{bottom:357.150015px;}
.y8d{bottom:358.410000px;}
.y4f{bottom:369.930000px;}
.ye1{bottom:371.550000px;}
.y8c{bottom:372.990000px;}
.yb5{bottom:374.430000px;}
.y1b{bottom:375.870000px;}
.y4e{bottom:387.210015px;}
.ye0{bottom:388.650015px;}
.y1a{bottom:391.529985px;}
.yb4{bottom:391.710015px;}
.y8a{bottom:394.590000px;}
.y4d{bottom:404.535000px;}
.ydf{bottom:405.974985px;}
.y19{bottom:407.055000px;}
.yb3{bottom:413.355015px;}
.y88{bottom:416.234985px;}
.y4c{bottom:421.635000px;}
.y18{bottom:422.535000px;}
.yde{bottom:427.755015px;}
.yb2{bottom:430.635000px;}
.y87{bottom:437.835015px;}
.y17{bottom:438.015015px;}
.y4b{bottom:438.914985px;}
.ydd{bottom:445.035000px;}
.yb1{bottom:447.914985px;}
.ya5{bottom:452.775015px;}
.y16{bottom:453.675015px;}
.y4a{bottom:456.195000px;}
.y86{bottom:459.435015px;}
.ydc{bottom:462.314985px;}
.y15{bottom:469.154985px;}
.ya4{bottom:470.055000px;}
.y49{bottom:473.474985px;}
.yb0{bottom:478.335015px;}
.y84{bottom:481.035000px;}
.ydb{bottom:483.914985px;}
.y14{bottom:484.635000px;}
.ya3{bottom:487.335015px;}
.y48{bottom:490.935015px;}
.y13{bottom:500.115000px;}
.yda{bottom:501.195000px;}
.y82{bottom:502.635000px;}
.ya2{bottom:504.615000px;}
.y47{bottom:508.215000px;}
.y12{bottom:515.775015px;}
.yd9{bottom:518.474985px;}
.ya1{bottom:521.894985px;}
.yaf{bottom:523.875000px;}
.y7c{bottom:525.135000px;}
.y46{bottom:525.494985px;}
.y11{bottom:531.255015px;}
.yd8{bottom:535.755015px;}
.ya0{bottom:539.175015px;}
.yae{bottom:539.355015px;}
.y10{bottom:546.734985px;}
.y7e{bottom:547.455000px;}
.yad{bottom:554.835015px;}
.y45{bottom:556.095015px;}
.y9f{bottom:556.275015px;}
.yd7{bottom:557.535000px;}
.yf{bottom:562.215000px;}
.yac{bottom:570.314985px;}
.y9e{bottom:573.555000px;}
.yd6{bottom:574.814985px;}
.ye{bottom:577.875000px;}
.yab{bottom:585.974985px;}
.yd5{bottom:591.945000px;}
.yd{bottom:593.385000px;}
.y5f{bottom:598.064985px;}
.y44{bottom:601.845015px;}
.y9d{bottom:604.185015px;}
.yc{bottom:608.865000px;}
.yd4{bottom:609.224985px;}
.y5e{bottom:615.345015px;}
.y7b{bottom:615.885000px;}
.y43{bottom:618.945000px;}
.yb{bottom:624.345015px;}
.yd3{bottom:631.005015px;}
.y5d{bottom:632.445000px;}
.y42{bottom:636.224985px;}
.y7a{bottom:640.724985px;}
.y9b{bottom:647.385000px;}
.yd2{bottom:648.285000px;}
.y5c{bottom:649.724985px;}
.y41{bottom:653.505015px;}
.y79{bottom:658.005015px;}
.yd1{bottom:665.564985px;}
.y5b{bottom:667.005015px;}
.y9a{bottom:669.705000px;}
.y40{bottom:670.785000px;}
.y78{bottom:675.285000px;}
.ya{bottom:678.525015px;}
.yd0{bottom:682.845015px;}
.y5a{bottom:684.285000px;}
.y3f{bottom:688.064985px;}
.y9{bottom:689.505015px;}
.y92{bottom:692.025015px;}
.y77{bottom:692.564985px;}
.y59{bottom:701.564985px;}
.ycf{bottom:704.445000px;}
.y8{bottom:705.164985px;}
.y3e{bottom:705.345015px;}
.y76{bottom:709.845015px;}
.y58{bottom:718.845015px;}
.yce{bottom:721.724985px;}
.y3d{bottom:722.445000px;}
.y7{bottom:725.144985px;}
.y75{bottom:726.945000px;}
.y57{bottom:735.945000px;}
.ycd{bottom:739.005015px;}
.y3c{bottom:739.724985px;}
.y74{bottom:744.224985px;}
.y5{bottom:744.945000px;}
.y6{bottom:750.164985px;}
.y56{bottom:753.224985px;}
.y3b{bottom:757.005015px;}
.ycc{bottom:760.785000px;}
.y73{bottom:761.505015px;}
.y55{bottom:770.504970px;}
.y3a{bottom:774.285000px;}
.ycb{bottom:778.065030px;}
.y72{bottom:778.785000px;}
.y91{bottom:783.870030px;}
.y4{bottom:789.629970px;}
.y39{bottom:791.609985px;}
.yca{bottom:795.210015px;}
.y71{bottom:796.109985px;}
.y54{bottom:800.430000px;}
.y38{bottom:808.710015px;}
.y70{bottom:813.210015px;}
.yc9{bottom:816.989955px;}
.y3{bottom:817.170045px;}
.y37{bottom:825.989955px;}
.y6f{bottom:830.489955px;}
.yc8{bottom:834.269985px;}
.y36{bottom:843.269985px;}
.y2{bottom:844.710015px;}
.y6e{bottom:847.769985px;}
.yc7{bottom:851.550015px;}
.y35{bottom:860.550015px;}
.y6d{bottom:865.050015px;}
.yc6{bottom:873.329955px;}
.y34{bottom:877.829955px;}
.y6c{bottom:882.329955px;}
.yc5{bottom:890.609985px;}
.y33{bottom:895.109985px;}
.y6b{bottom:899.609985px;}
.y32{bottom:912.210015px;}
.y6a{bottom:916.710015px;}
.y31{bottom:929.489955px;}
.y30{bottom:946.769985px;}
.y29{bottom:1007.820000px;}
.y2b{bottom:1016.490645px;}
.y2a{bottom:1035.674835px;}
.h21{height:21.600000px;}
.h22{height:21.636000px;}
.h7{height:31.517578px;}
.h10{height:31.900500px;}
.h11{height:32.771613px;}
.h12{height:32.818773px;}
.h13{height:32.942007px;}
.h6{height:34.038984px;}
.h1e{height:37.705078px;}
.h16{height:38.100586px;}
.ha{height:41.726953px;}
.h1c{height:42.164648px;}
.h3{height:42.233555px;}
.h20{height:43.136719px;}
.h15{height:43.681992px;}
.h24{height:43.920000px;}
.h18{height:44.936719px;}
.h8{height:47.276367px;}
.h1b{height:48.027536px;}
.hd{height:48.410156px;}
.h26{height:49.255313px;}
.h19{height:49.299549px;}
.h1a{height:49.299669px;}
.hc{height:49.439180px;}
.h14{height:50.364141px;}
.h25{height:52.319180px;}
.h9{height:54.140625px;}
.he{height:54.387630px;}
.h5{height:54.918924px;}
.hf{height:55.265625px;}
.h1f{height:55.836000px;}
.h17{height:60.410156px;}
.hb{height:63.035156px;}
.h4{height:72.007031px;}
.h1d{height:78.156000px;}
.h23{height:79.200000px;}
.h1{height:1062.750000px;}
.h2{height:1062.899878px;}
.h0{height:1062.900000px;}
.w7{width:57.060000px;}
.w6{width:68.940000px;}
.wb{width:72.000000px;}
.w8{width:72.036000px;}
.wa{width:110.916000px;}
.w9{width:124.560000px;}
.w4{width:124.596000px;}
.w5{width:126.000000px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x26{left:6.119970px;}
.x18{left:9.899970px;}
.x19{left:13.859985px;}
.x16{left:14.939985px;}
.x28{left:17.459970px;}
.x1a{left:19.260000px;}
.x24{left:20.340000px;}
.x13{left:21.419985px;}
.x2a{left:22.494000px;}
.x2c{left:24.119985px;}
.x1b{left:26.099985px;}
.x14{left:28.079985px;}
.x8{left:30.403815px;}
.x1d{left:32.220000px;}
.x1f{left:34.019985px;}
.x2b{left:40.170000px;}
.x17{left:41.219985px;}
.x1c{left:42.479985px;}
.x1e{left:45.719985px;}
.xb{left:52.601625px;}
.xc{left:54.294765px;}
.xa{left:61.650315px;}
.x9{left:75.384915px;}
.x1{left:84.995989px;}
.x6{left:91.655989px;}
.xd{left:106.235989px;}
.x2d{left:111.995989px;}
.x22{left:135.756000px;}
.x4{left:157.349989px;}
.x21{left:187.229989px;}
.x2{left:192.809963px;}
.x3{left:197.669989px;}
.x23{left:207.795000px;}
.x12{left:236.235015px;}
.x11{left:259.454989px;}
.x5{left:301.034989px;}
.x25{left:332.355015px;}
.xf{left:357.847500px;}
.x7{left:361.365000px;}
.x15{left:429.765015px;}
.x27{left:443.265015px;}
.x29{left:515.310015px;}
.x10{left:535.109974px;}
.x20{left:569.489989px;}
.xe{left:578.489989px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:18.559947pt;}
.ls19{letter-spacing:-7.733333pt;}
.ls18{letter-spacing:-0.519467pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.379661pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.233886pt;}
.ls1a{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000053pt;}
.ls1b{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.050964pt;}
.ls11{letter-spacing:0.094933pt;}
.ls17{letter-spacing:0.120533pt;}
.ls1e{letter-spacing:0.159947pt;}
.ls1{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.183680pt;}
.lsc{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.320053pt;}
.ls9{letter-spacing:0.398184pt;}
.lsa{letter-spacing:1.068806pt;}
.ls13{letter-spacing:4.639947pt;}
.ls12{letter-spacing:4.640000pt;}
.ls1c{letter-spacing:14.672640pt;}
.ls14{letter-spacing:40.912640pt;}
.ls3{letter-spacing:970.645333pt;}
.ws19{word-spacing:-53.303467pt;}
.ws12{word-spacing:-53.120000pt;}
.ws14{word-spacing:-14.672427pt;}
.ws13{word-spacing:-13.600000pt;}
.ws1b{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.510933pt;}
.ws17{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.344000pt;}
.ws1f{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws15{word-spacing:-13.185067pt;}
.ws1e{word-spacing:-13.049067pt;}
.ws16{word-spacing:-12.960000pt;}
.ws18{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.582320pt;}
.ws8{word-spacing:-11.436073pt;}
.wsb{word-spacing:-10.553764pt;}
.ws9{word-spacing:-10.478533pt;}
.ws1{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws1d{word-spacing:-0.373120pt;}
.ws20{word-spacing:-0.053120pt;}
.wsc{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.266880pt;}
.wsf{word-spacing:2.615442pt;}
.wse{word-spacing:3.286068pt;}
.wsd{word-spacing:4.086623pt;}
.wsa{word-spacing:7.334034pt;}
.ws10{word-spacing:7.851053pt;}
.ws1a{word-spacing:9.872640pt;}
.ws7{word-spacing:549.654846pt;}
._10{margin-left:-994.645333pt;}
._f{margin-left:-12.000000pt;}
._e{margin-left:-3.144960pt;}
._d{margin-left:-1.982720pt;}
._3{margin-left:-0.992000pt;}
._1{width:1.021440pt;}
._5{width:2.208000pt;}
._4{width:3.488000pt;}
._8{width:4.976000pt;}
._7{width:6.240000pt;}
._9{width:7.568000pt;}
._b{width:9.232000pt;}
._a{width:10.848000pt;}
._12{width:11.752587pt;}
._6{width:13.152000pt;}
._c{width:14.050560pt;}
._11{width:15.089280pt;}
._0{width:17.449600pt;}
._13{width:19.495040pt;}
._17{width:21.035520pt;}
._15{width:22.505600pt;}
._14{width:23.638400pt;}
._18{width:32.031360pt;}
._2{width:61.882240pt;}
._16{width:1667.125280pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs8{font-size:40.800000pt;}
.fs9{font-size:41.914133pt;}
.fsa{font-size:42.011200pt;}
.fs0{font-size:42.880000pt;}
.fs7{font-size:47.262933pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:53.333333pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:5.279987pt;}
.y85{bottom:5.439987pt;}
.y83{bottom:5.440013pt;}
.y89{bottom:5.440027pt;}
.y8b{bottom:5.480013pt;}
.y99{bottom:10.239987pt;}
.y2f{bottom:10.247600pt;}
.y80{bottom:13.600013pt;}
.y9c{bottom:15.199987pt;}
.y53{bottom:16.000000pt;}
.y69{bottom:16.146667pt;}
.yf1{bottom:16.186667pt;}
.y95{bottom:17.119987pt;}
.y2d{bottom:22.122267pt;}
.y2e{bottom:22.228094pt;}
.y97{bottom:24.000000pt;}
.y2c{bottom:26.227600pt;}
.y7f{bottom:27.359987pt;}
.y7d{bottom:30.400013pt;}
.y93{bottom:30.880000pt;}
.y96{bottom:37.760000pt;}
.y1{bottom:39.840000pt;}
.y94{bottom:44.639973pt;}
.y98{bottom:51.679973pt;}
.y52{bottom:65.280000pt;}
.y28{bottom:69.120000pt;}
.yaa{bottom:75.360000pt;}
.yf0{bottom:76.160000pt;}
.y27{bottom:83.840000pt;}
.y51{bottom:84.480000pt;}
.yc4{bottom:86.720000pt;}
.ya9{bottom:90.560000pt;}
.yef{bottom:95.520000pt;}
.y90{bottom:96.480000pt;}
.yc3{bottom:102.080000pt;}
.ya8{bottom:105.920000pt;}
.yee{bottom:110.880000pt;}
.y68{bottom:112.320000pt;}
.y26{bottom:113.600000pt;}
.y8f{bottom:115.680000pt;}
.yc2{bottom:117.440000pt;}
.ya7{bottom:121.280000pt;}
.yed{bottom:126.240000pt;}
.y67{bottom:127.680000pt;}
.y25{bottom:128.960000pt;}
.yc1{bottom:132.800000pt;}
.y66{bottom:143.040000pt;}
.y24{bottom:144.320000pt;}
.yec{bottom:145.440000pt;}
.yc0{bottom:152.160000pt;}
.y65{bottom:158.400000pt;}
.y23{bottom:159.520000pt;}
.yeb{bottom:160.800000pt;}
.ya6{bottom:163.520000pt;}
.ybf{bottom:167.520000pt;}
.y64{bottom:173.760013pt;}
.y22{bottom:174.880000pt;}
.yea{bottom:180.186667pt;}
.ybe{bottom:186.746667pt;}
.y63{bottom:188.986680pt;}
.y21{bottom:190.266667pt;}
.ye9{bottom:195.546667pt;}
.ybd{bottom:202.106667pt;}
.y62{bottom:204.346653pt;}
.y20{bottom:205.626667pt;}
.ye8{bottom:214.906653pt;}
.ybc{bottom:217.466680pt;}
.y1f{bottom:220.986680pt;}
.y61{bottom:227.386653pt;}
.ye7{bottom:230.266667pt;}
.ybb{bottom:232.826667pt;}
.y1e{bottom:236.186667pt;}
.ye6{bottom:245.466680pt;}
.y60{bottom:246.586667pt;}
.y1d{bottom:251.546667pt;}
.yba{bottom:252.186667pt;}
.ye5{bottom:264.826667pt;}
.yb9{bottom:267.386653pt;}
.y1c{bottom:278.746667pt;}
.ye4{bottom:280.186667pt;}
.yb8{bottom:282.746667pt;}
.ye3{bottom:295.546667pt;}
.yb7{bottom:298.106667pt;}
.y8e{bottom:303.226667pt;}
.y50{bottom:313.466680pt;}
.ye2{bottom:314.906653pt;}
.yb6{bottom:317.466680pt;}
.y8d{bottom:318.586667pt;}
.y4f{bottom:328.826667pt;}
.ye1{bottom:330.266667pt;}
.y8c{bottom:331.546667pt;}
.yb5{bottom:332.826667pt;}
.y1b{bottom:334.106667pt;}
.y4e{bottom:344.186680pt;}
.ye0{bottom:345.466680pt;}
.y1a{bottom:348.026653pt;}
.yb4{bottom:348.186680pt;}
.y8a{bottom:350.746667pt;}
.y4d{bottom:359.586667pt;}
.ydf{bottom:360.866653pt;}
.y19{bottom:361.826667pt;}
.yb3{bottom:367.426680pt;}
.y88{bottom:369.986653pt;}
.y4c{bottom:374.786667pt;}
.y18{bottom:375.586667pt;}
.yde{bottom:380.226680pt;}
.yb2{bottom:382.786667pt;}
.y87{bottom:389.186680pt;}
.y17{bottom:389.346680pt;}
.y4b{bottom:390.146653pt;}
.ydd{bottom:395.586667pt;}
.yb1{bottom:398.146653pt;}
.ya5{bottom:402.466680pt;}
.y16{bottom:403.266680pt;}
.y4a{bottom:405.506667pt;}
.y86{bottom:408.386680pt;}
.ydc{bottom:410.946653pt;}
.y15{bottom:417.026653pt;}
.ya4{bottom:417.826667pt;}
.y49{bottom:420.866653pt;}
.yb0{bottom:425.186680pt;}
.y84{bottom:427.586667pt;}
.ydb{bottom:430.146653pt;}
.y14{bottom:430.786667pt;}
.ya3{bottom:433.186680pt;}
.y48{bottom:436.386680pt;}
.y13{bottom:444.546667pt;}
.yda{bottom:445.506667pt;}
.y82{bottom:446.786667pt;}
.ya2{bottom:448.546667pt;}
.y47{bottom:451.746667pt;}
.y12{bottom:458.466680pt;}
.yd9{bottom:460.866653pt;}
.ya1{bottom:463.906653pt;}
.yaf{bottom:465.666667pt;}
.y7c{bottom:466.786667pt;}
.y46{bottom:467.106653pt;}
.y11{bottom:472.226680pt;}
.yd8{bottom:476.226680pt;}
.ya0{bottom:479.266680pt;}
.yae{bottom:479.426680pt;}
.y10{bottom:485.986653pt;}
.y7e{bottom:486.626667pt;}
.yad{bottom:493.186680pt;}
.y45{bottom:494.306680pt;}
.y9f{bottom:494.466680pt;}
.yd7{bottom:495.586667pt;}
.yf{bottom:499.746667pt;}
.yac{bottom:506.946653pt;}
.y9e{bottom:509.826667pt;}
.yd6{bottom:510.946653pt;}
.ye{bottom:513.666667pt;}
.yab{bottom:520.866653pt;}
.yd5{bottom:526.173333pt;}
.yd{bottom:527.453333pt;}
.y5f{bottom:531.613320pt;}
.y44{bottom:534.973347pt;}
.y9d{bottom:537.053347pt;}
.yc{bottom:541.213333pt;}
.yd4{bottom:541.533320pt;}
.y5e{bottom:546.973347pt;}
.y7b{bottom:547.453333pt;}
.y43{bottom:550.173333pt;}
.yb{bottom:554.973347pt;}
.yd3{bottom:560.893347pt;}
.y5d{bottom:562.173333pt;}
.y42{bottom:565.533320pt;}
.y7a{bottom:569.533320pt;}
.y9b{bottom:575.453333pt;}
.yd2{bottom:576.253333pt;}
.y5c{bottom:577.533320pt;}
.y41{bottom:580.893347pt;}
.y79{bottom:584.893347pt;}
.yd1{bottom:591.613320pt;}
.y5b{bottom:592.893347pt;}
.y9a{bottom:595.293333pt;}
.y40{bottom:596.253333pt;}
.y78{bottom:600.253333pt;}
.ya{bottom:603.133347pt;}
.yd0{bottom:606.973347pt;}
.y5a{bottom:608.253333pt;}
.y3f{bottom:611.613320pt;}
.y9{bottom:612.893347pt;}
.y92{bottom:615.133347pt;}
.y77{bottom:615.613320pt;}
.y59{bottom:623.613320pt;}
.ycf{bottom:626.173333pt;}
.y8{bottom:626.813320pt;}
.y3e{bottom:626.973347pt;}
.y76{bottom:630.973347pt;}
.y58{bottom:638.973347pt;}
.yce{bottom:641.533320pt;}
.y3d{bottom:642.173333pt;}
.y7{bottom:644.573320pt;}
.y75{bottom:646.173333pt;}
.y57{bottom:654.173333pt;}
.ycd{bottom:656.893347pt;}
.y3c{bottom:657.533320pt;}
.y74{bottom:661.533320pt;}
.y5{bottom:662.173333pt;}
.y6{bottom:666.813320pt;}
.y56{bottom:669.533320pt;}
.y3b{bottom:672.893347pt;}
.ycc{bottom:676.253333pt;}
.y73{bottom:676.893347pt;}
.y55{bottom:684.893307pt;}
.y3a{bottom:688.253333pt;}
.ycb{bottom:691.613360pt;}
.y72{bottom:692.253333pt;}
.y91{bottom:696.773360pt;}
.y4{bottom:701.893307pt;}
.y39{bottom:703.653320pt;}
.yca{bottom:706.853347pt;}
.y71{bottom:707.653320pt;}
.y54{bottom:711.493333pt;}
.y38{bottom:718.853347pt;}
.y70{bottom:722.853347pt;}
.yc9{bottom:726.213293pt;}
.y3{bottom:726.373373pt;}
.y37{bottom:734.213293pt;}
.y6f{bottom:738.213293pt;}
.yc8{bottom:741.573320pt;}
.y36{bottom:749.573320pt;}
.y2{bottom:750.853347pt;}
.y6e{bottom:753.573320pt;}
.yc7{bottom:756.933347pt;}
.y35{bottom:764.933347pt;}
.y6d{bottom:768.933347pt;}
.yc6{bottom:776.293293pt;}
.y34{bottom:780.293293pt;}
.y6c{bottom:784.293293pt;}
.yc5{bottom:791.653320pt;}
.y33{bottom:795.653320pt;}
.y6b{bottom:799.653320pt;}
.y32{bottom:810.853347pt;}
.y6a{bottom:814.853347pt;}
.y31{bottom:826.213293pt;}
.y30{bottom:841.573320pt;}
.y29{bottom:895.840000pt;}
.y2b{bottom:903.547240pt;}
.y2a{bottom:920.599853pt;}
.h21{height:19.200000pt;}
.h22{height:19.232000pt;}
.h7{height:28.015625pt;}
.h10{height:28.356000pt;}
.h11{height:29.130323pt;}
.h12{height:29.172243pt;}
.h13{height:29.281784pt;}
.h6{height:30.256875pt;}
.h1e{height:33.515625pt;}
.h16{height:33.867188pt;}
.ha{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h3{height:37.540937pt;}
.h20{height:38.343750pt;}
.h15{height:38.828437pt;}
.h24{height:39.040000pt;}
.h18{height:39.943750pt;}
.h8{height:42.023438pt;}
.h1b{height:42.691143pt;}
.hd{height:43.031250pt;}
.h26{height:43.782500pt;}
.h19{height:43.821822pt;}
.h1a{height:43.821928pt;}
.hc{height:43.945938pt;}
.h14{height:44.768125pt;}
.h25{height:46.505938pt;}
.h9{height:48.125000pt;}
.he{height:48.344560pt;}
.h5{height:48.816822pt;}
.hf{height:49.125000pt;}
.h1f{height:49.632000pt;}
.h17{height:53.697917pt;}
.hb{height:56.031250pt;}
.h4{height:64.006250pt;}
.h1d{height:69.472000pt;}
.h23{height:70.400000pt;}
.h1{height:944.666667pt;}
.h2{height:944.799892pt;}
.h0{height:944.800000pt;}
.w7{width:50.720000pt;}
.w6{width:61.280000pt;}
.wb{width:64.000000pt;}
.w8{width:64.032000pt;}
.wa{width:98.592000pt;}
.w9{width:110.720000pt;}
.w4{width:110.752000pt;}
.w5{width:112.000000pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x26{left:5.439973pt;}
.x18{left:8.799973pt;}
.x19{left:12.319987pt;}
.x16{left:13.279987pt;}
.x28{left:15.519973pt;}
.x1a{left:17.120000pt;}
.x24{left:18.080000pt;}
.x13{left:19.039987pt;}
.x2a{left:19.994667pt;}
.x2c{left:21.439987pt;}
.x1b{left:23.199987pt;}
.x14{left:24.959987pt;}
.x8{left:27.025613pt;}
.x1d{left:28.640000pt;}
.x1f{left:30.239987pt;}
.x2b{left:35.706667pt;}
.x17{left:36.639987pt;}
.x1c{left:37.759987pt;}
.x1e{left:40.639987pt;}
.xb{left:46.757000pt;}
.xc{left:48.262013pt;}
.xa{left:54.800280pt;}
.x9{left:67.008813pt;}
.x1{left:75.551990pt;}
.x6{left:81.471990pt;}
.xd{left:94.431990pt;}
.x2d{left:99.551990pt;}
.x22{left:120.672000pt;}
.x4{left:139.866657pt;}
.x21{left:166.426657pt;}
.x2{left:171.386634pt;}
.x3{left:175.706657pt;}
.x23{left:184.706667pt;}
.x12{left:209.986680pt;}
.x11{left:230.626657pt;}
.x5{left:267.586657pt;}
.x25{left:295.426680pt;}
.xf{left:318.086667pt;}
.x7{left:321.213333pt;}
.x15{left:382.013347pt;}
.x27{left:394.013347pt;}
.x29{left:458.053347pt;}
.x10{left:475.653310pt;}
.x20{left:506.213324pt;}
.xe{left:514.213324pt;}
}




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