
    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_d05e45887f4c2594a4209267.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_eb3c72ff3fdb7b0adfc87a97.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_6f1780add188e9e201282bb9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_026386c427e423c1a7a7dfcc.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_b307596ca537c31d8a732274.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a8712a9da9a209cff6c4703f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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_47c202cdb1fc405cf08f0a18.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_f48fd731df75ce22875de5a6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.999512;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_9a1414f1cdb90fcc284f32a6.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_678a6f8dd1a71938b6322335.woff')format("woff");}.ffe{font-family:ffe;line-height:0.886719;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff10{font-family:ff10;line-height:1.003906;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_bad4274616094e8b71073eb0.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_c0821db435bd5aecd962715c.woff')format("woff");}.ff12{font-family:ff12;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;}
.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:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.ls9{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.305400px;}
.ls6{letter-spacing:-0.190200px;}
.ls8{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.114000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.078000px;}
.lsd{letter-spacing:0.109200px;}
.lsc{letter-spacing:0.152400px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.lsb{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.720000px;}
.ls14{letter-spacing:15.425280px;}
.lse{letter-spacing:39.881280px;}
.lsf{letter-spacing:39.905280px;}
.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;}
}
.ws9{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.wsf{word-spacing:-17.280000px;}
.wse{word-spacing:-16.865400px;}
.wsa{word-spacing:-16.822200px;}
.wsb{word-spacing:-16.712400px;}
.wsc{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.912000px;}
.ws7{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-2.190240px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._8{width:2.124000px;}
._2{width:3.413520px;}
._4{width:4.980960px;}
._5{width:6.345360px;}
._18{width:7.352640px;}
._13{width:9.010560px;}
._12{width:10.110720px;}
._16{width:11.614080px;}
._21{width:13.076880px;}
._e{width:14.574000px;}
._7{width:17.685600px;}
._6{width:18.750240px;}
._27{width:20.070720px;}
._b{width:21.540960px;}
._c{width:22.911120px;}
._d{width:24.666480px;}
._a{width:26.564880px;}
._9{width:27.992880px;}
._2e{width:29.142960px;}
._20{width:30.486240px;}
._19{width:31.698000px;}
._17{width:32.855040px;}
._1b{width:34.020000px;}
._15{width:36.100800px;}
._14{width:37.628640px;}
._37{width:38.980080px;}
._3b{width:40.064400px;}
._3e{width:41.532480px;}
._1c{width:42.739200px;}
._1d{width:44.763840px;}
._1a{width:45.888480px;}
._35{width:47.626560px;}
._2f{width:48.885120px;}
._39{width:49.914000px;}
._43{width:51.040080px;}
._38{width:52.727040px;}
._28{width:54.250560px;}
._3f{width:55.743120px;}
._4f{width:57.363840px;}
._26{width:58.953600px;}
._25{width:60.079680px;}
._3c{width:61.603200px;}
._3d{width:62.928000px;}
._5a{width:64.578240px;}
._2a{width:65.643840px;}
._2b{width:66.884880px;}
._29{width:67.900320px;}
._4d{width:69.088320px;}
._34{width:70.498560px;}
._33{width:71.625600px;}
._32{width:72.731520px;}
._31{width:74.391840px;}
._40{width:75.778560px;}
._48{width:76.842720px;}
._46{width:78.096960px;}
._30{width:79.421760px;}
._50{width:80.879040px;}
._11{width:82.071360px;}
._f{width:84.522240px;}
._10{width:85.621680px;}
._45{width:87.101280px;}
._52{width:89.494560px;}
._4a{width:90.702720px;}
._49{width:91.746720px;}
._44{width:93.632400px;}
._3a{width:95.257440px;}
._47{width:98.105760px;}
._4b{width:100.092240px;}
._57{width:101.678400px;}
._56{width:102.870720px;}
._58{width:108.898560px;}
._36{width:110.395440px;}
._1f{width:111.914640px;}
._1e{width:113.911200px;}
._42{width:115.058880px;}
._41{width:116.226720px;}
._2c{width:118.635840px;}
._2d{width:120.428640px;}
._51{width:124.534800px;}
._4e{width:131.124240px;}
._4c{width:132.546240px;}
._54{width:136.851840px;}
._53{width:138.097920px;}
._55{width:143.974800px;}
._59{width:151.160160px;}
._24{width:152.893440px;}
._5b{width:171.694080px;}
._22{width:189.617520px;}
._23{width:197.647200px;}
._5c{width:846.876000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:5.760000px;}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsb{font-size:36.000000px;}
.fsd{font-size:38.880000px;}
.fs7{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y1c{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.yb1{bottom:18.705000px;}
.y71{bottom:18.720000px;}
.y7a{bottom:19.065000px;}
.y74{bottom:19.080000px;}
.y77{bottom:19.110000px;}
.y89{bottom:19.125000px;}
.ye4{bottom:24.300000px;}
.ye8{bottom:24.660000px;}
.ye6{bottom:24.705000px;}
.y19{bottom:26.460000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y79{bottom:37.965000px;}
.y73{bottom:37.980000px;}
.y18{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.y40{bottom:75.240000px;}
.y17{bottom:78.300000px;}
.y16{bottom:93.465000px;}
.y105{bottom:112.500000px;}
.ybe{bottom:113.040000px;}
.y15{bottom:116.325000px;}
.ye1{bottom:120.060000px;}
.y3c{bottom:122.940000px;}
.ybc{bottom:127.440000px;}
.y6b{bottom:134.100000px;}
.y83{bottom:135.360000px;}
.ybd{bottom:137.160000px;}
.yab{bottom:140.580000px;}
.ye0{bottom:144.720000px;}
.y14{bottom:146.745000px;}
.y3b{bottom:147.600000px;}
.ybb{bottom:152.100000px;}
.y6a{bottom:158.760000px;}
.y82{bottom:160.020000px;}
.y13{bottom:161.685000px;}
.y104{bottom:161.820000px;}
.ya7{bottom:165.240000px;}
.y3a{bottom:172.260000px;}
.ydf{bottom:175.500000px;}
.yba{bottom:176.760000px;}
.y69{bottom:183.420000px;}
.y81{bottom:184.680000px;}
.y103{bottom:186.480000px;}
.ya6{bottom:189.900000px;}
.y39{bottom:196.920000px;}
.yb9{bottom:201.420000px;}
.y68{bottom:208.110000px;}
.y80{bottom:209.550000px;}
.yde{bottom:210.825000px;}
.y102{bottom:211.350000px;}
.ya5{bottom:214.590000px;}
.y38{bottom:221.610000px;}
.yb8{bottom:226.110000px;}
.y67{bottom:232.770000px;}
.y7f{bottom:234.210000px;}
.y101{bottom:236.010000px;}
.ya4{bottom:239.250000px;}
.ydd{bottom:245.925000px;}
.y37{bottom:246.270000px;}
.yb7{bottom:250.770000px;}
.y66{bottom:257.430000px;}
.y7e{bottom:258.510000px;}
.y84{bottom:258.870000px;}
.y100{bottom:260.670000px;}
.ya3{bottom:263.910000px;}
.y36{bottom:270.930000px;}
.yb6{bottom:275.430000px;}
.y65{bottom:282.090000px;}
.y7d{bottom:283.530000px;}
.yff{bottom:285.330000px;}
.ya2{bottom:288.570000px;}
.ydc{bottom:291.810000px;}
.y35{bottom:295.590000px;}
.yb5{bottom:300.090000px;}
.y7c{bottom:300.645000px;}
.y64{bottom:306.750000px;}
.yfe{bottom:309.990000px;}
.ya1{bottom:312.870000px;}
.yaa{bottom:313.230000px;}
.ydb{bottom:316.470000px;}
.y34{bottom:320.250000px;}
.yb4{bottom:324.750000px;}
.y63{bottom:331.410000px;}
.yfd{bottom:334.650000px;}
.y7b{bottom:334.665000px;}
.ya0{bottom:337.890000px;}
.yb3{bottom:339.705000px;}
.yda{bottom:341.130000px;}
.y33{bottom:344.910000px;}
.y62{bottom:356.070000px;}
.yfc{bottom:359.310000px;}
.y9f{bottom:362.550000px;}
.yd9{bottom:365.790000px;}
.y32{bottom:369.570000px;}
.yb2{bottom:373.725000px;}
.y61{bottom:380.730000px;}
.yfb{bottom:383.970000px;}
.y9e{bottom:387.210000px;}
.y78{bottom:387.585000px;}
.yd8{bottom:390.450000px;}
.y31{bottom:394.230000px;}
.y60{bottom:405.390000px;}
.yfa{bottom:408.630000px;}
.yb0{bottom:408.825000px;}
.y9d{bottom:411.870000px;}
.yd7{bottom:415.110000px;}
.y30{bottom:418.530000px;}
.y3d{bottom:418.890000px;}
.y5f{bottom:430.050000px;}
.yf9{bottom:433.290000px;}
.y9c{bottom:436.530000px;}
.y2f{bottom:436.710000px;}
.yd6{bottom:439.950000px;}
.y76{bottom:440.505000px;}
.y2e{bottom:444.675000px;}
.y5e{bottom:454.755000px;}
.yf8{bottom:457.995000px;}
.y10a{bottom:459.435000px;}
.y9b{bottom:461.235000px;}
.yd5{bottom:464.655000px;}
.y2d{bottom:466.455000px;}
.y75{bottom:474.555000px;}
.y5d{bottom:479.595000px;}
.yf7{bottom:482.655000px;}
.ya9{bottom:485.715000px;}
.y9a{bottom:486.075000px;}
.yd4{bottom:489.315000px;}
.y2c{bottom:490.935000px;}
.y109{bottom:503.895000px;}
.y5c{bottom:504.255000px;}
.yf6{bottom:507.315000px;}
.y99{bottom:510.735000px;}
.y2b{bottom:512.715000px;}
.yd3{bottom:513.975000px;}
.y72{bottom:527.475000px;}
.y108{bottom:528.555000px;}
.y5b{bottom:528.915000px;}
.yf5{bottom:531.975000px;}
.y2a{bottom:534.495000px;}
.y98{bottom:535.395000px;}
.yd2{bottom:538.635000px;}
.y5a{bottom:553.575000px;}
.y29{bottom:556.275000px;}
.yf4{bottom:556.635000px;}
.y97{bottom:560.055000px;}
.yd1{bottom:563.295000px;}
.y28{bottom:578.055000px;}
.y59{bottom:578.235000px;}
.y107{bottom:580.935000px;}
.yf3{bottom:581.295000px;}
.y70{bottom:581.475000px;}
.y96{bottom:584.715000px;}
.y27{bottom:600.015000px;}
.y58{bottom:602.895000px;}
.y106{bottom:605.595000px;}
.yf2{bottom:605.955000px;}
.y95{bottom:609.375000px;}
.yd0{bottom:617.835000px;}
.y26{bottom:621.795000px;}
.yad{bottom:627.195000px;}
.y57{bottom:627.555000px;}
.yf1{bottom:630.615000px;}
.y94{bottom:634.035000px;}
.y25{bottom:643.575000px;}
.y6f{bottom:651.855000px;}
.y56{bottom:652.215000px;}
.yf0{bottom:655.275000px;}
.y93{bottom:658.695000px;}
.y24{bottom:665.355000px;}
.y6e{bottom:676.545000px;}
.y55{bottom:676.905000px;}
.yef{bottom:679.965000px;}
.y92{bottom:683.385000px;}
.ycf{bottom:686.985000px;}
.y23{bottom:687.345000px;}
.y54{bottom:701.565000px;}
.yee{bottom:704.625000px;}
.y91{bottom:708.045000px;}
.y22{bottom:709.125000px;}
.y53{bottom:726.225000px;}
.yed{bottom:729.285000px;}
.y21{bottom:730.905000px;}
.y90{bottom:732.705000px;}
.yce{bottom:732.885000px;}
.y52{bottom:750.885000px;}
.y20{bottom:752.685000px;}
.yec{bottom:753.945000px;}
.y8f{bottom:757.365000px;}
.ycd{bottom:757.545000px;}
.y1f{bottom:774.465000px;}
.y51{bottom:775.545000px;}
.yeb{bottom:778.605000px;}
.y8e{bottom:782.025000px;}
.ycc{bottom:789.765000px;}
.y1e{bottom:796.065000px;}
.y50{bottom:800.205000px;}
.yea{bottom:803.265000px;}
.y8d{bottom:806.325000px;}
.ya8{bottom:806.685000px;}
.ycb{bottom:814.425000px;}
.y1d{bottom:815.325000px;}
.y8c{bottom:822.525000px;}
.y8b{bottom:823.785000px;}
.y1b{bottom:823.965000px;}
.y4f{bottom:824.865000px;}
.y12{bottom:831.165000px;}
.y1a{bottom:835.483383px;}
.yca{bottom:839.085000px;}
.ye9{bottom:843.045000px;}
.y4e{bottom:849.525000px;}
.y8a{bottom:857.805000px;}
.ye7{bottom:857.985000px;}
.yc9{bottom:863.745000px;}
.y4d{bottom:874.185000px;}
.yc8{bottom:888.405000px;}
.y88{bottom:891.825000px;}
.ye5{bottom:897.585000px;}
.y4c{bottom:898.845000px;}
.yc7{bottom:913.110000px;}
.y6d{bottom:923.190000px;}
.y4b{bottom:923.550000px;}
.y87{bottom:926.970000px;}
.yc6{bottom:937.770000px;}
.ye3{bottom:938.490000px;}
.y4a{bottom:948.210000px;}
.yc5{bottom:962.430000px;}
.y49{bottom:972.870000px;}
.ye2{bottom:989.970000px;}
.yaf{bottom:997.170000px;}
.y48{bottom:997.530000px;}
.yc4{bottom:1002.030000px;}
.yc3{bottom:1016.970000px;}
.y10{bottom:1018.590000px;}
.yae{bottom:1021.830000px;}
.y47{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.y46{bottom:1046.850000px;}
.y86{bottom:1047.030000px;}
.yc2{bottom:1050.990000px;}
.y45{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.yc1{bottom:1086.090000px;}
.y44{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y85{bottom:1120.470000px;}
.y43{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.yc0{bottom:1131.990000px;}
.yac{bottom:1145.130000px;}
.y42{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.ybf{bottom:1169.460000px;}
.y6c{bottom:1169.820000px;}
.y41{bottom:1170.180000px;}
.y3f{bottom:1187.280000px;}
.y3e{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h1e{height:5.650313px;}
.h28{height:5.653125px;}
.h10{height:6.465000px;}
.h19{height:7.200000px;}
.hd{height:13.324219px;}
.h1a{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h21{height:30.480469px;}
.h23{height:34.005000px;}
.h27{height:34.020000px;}
.h25{height:34.041000px;}
.h26{height:34.042500px;}
.h2b{height:34.050000px;}
.h2c{height:34.056000px;}
.h1b{height:36.861328px;}
.h2d{height:39.585000px;}
.h2f{height:39.600000px;}
.h2e{height:39.622500px;}
.h14{height:44.496211px;}
.he{height:51.465000px;}
.h15{height:52.683750px;}
.h24{height:52.905000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h2a{height:58.651172px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h17{height:63.492188px;}
.h1d{height:64.978594px;}
.h20{height:65.010937px;}
.h22{height:65.499609px;}
.h1c{height:65.884219px;}
.h1f{height:66.757500px;}
.h16{height:67.803750px;}
.h29{height:68.084282px;}
.h6{height:71.324297px;}
.h18{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h3{height:103.530000px;}
.h12{height:187.410000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:106.221000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w8{width:124.761000px;}
.w12{width:133.905000px;}
.w10{width:163.785000px;}
.wf{width:163.815000px;}
.wd{width:169.219500px;}
.w16{width:173.175000px;}
.wc{width:189.375000px;}
.we{width:190.650000px;}
.wa{width:195.499500px;}
.w14{width:196.395000px;}
.w15{width:203.970000px;}
.wb{width:220.530000px;}
.w11{width:260.880000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w9{width:421.995000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:5.205000px;}
.x1d{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.x13{left:25.189500px;}
.x47{left:26.490000px;}
.x17{left:28.249500px;}
.x30{left:29.700000px;}
.x3f{left:32.565000px;}
.xb{left:34.185000px;}
.x19{left:43.003500px;}
.x3d{left:45.900000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2e{left:58.123500px;}
.x2{left:60.841500px;}
.x32{left:63.523500px;}
.x37{left:66.943500px;}
.x39{left:68.070000px;}
.x38{left:69.480000px;}
.x34{left:76.680000px;}
.x33{left:79.590000px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x3b{left:102.826500px;}
.x44{left:106.590000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x4b{left:112.716000px;}
.x1a{left:125.803500px;}
.x4c{left:133.596000px;}
.x2a{left:135.036000px;}
.x2d{left:143.866500px;}
.x14{left:150.283500px;}
.x16{left:157.708500px;}
.x49{left:159.885000px;}
.x1e{left:162.030000px;}
.x4{left:168.885000px;}
.x25{left:170.310000px;}
.x23{left:173.205000px;}
.x29{left:186.690000px;}
.x15{left:189.748500px;}
.x43{left:196.065000px;}
.x6{left:209.010000px;}
.x1b{left:212.068500px;}
.x18{left:265.348500px;}
.x36{left:270.075000px;}
.x3c{left:272.055000px;}
.x3a{left:288.795000px;}
.x24{left:297.975000px;}
.x28{left:312.915000px;}
.x22{left:314.355000px;}
.x1c{left:324.965515px;}
.x12{left:335.578500px;}
.x2f{left:339.375000px;}
.x2c{left:340.635000px;}
.x48{left:346.215000px;}
.x4a{left:356.295000px;}
.x42{left:384.555000px;}
.xa{left:445.620000px;}
.x45{left:456.960000px;}
.x3e{left:462.720000px;}
.x27{left:467.565000px;}
.x4f{left:469.905000px;}
.x1f{left:473.505000px;}
.x4d{left:478.185000px;}
.x41{left:479.985000px;}
.x4e{left:499.065000px;}
.x2b{left:500.505000px;}
.x21{left:515.985000px;}
.x20{left:527.505000px;}
.x31{left:559.920000px;}
.x46{left:590.880000px;}
.x40{left:626.550000px;}
.x35{left:650.310000px;}
.x7{left:722.490000px;}
.x1{left:761.010000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.271467pt;}
.ls6{letter-spacing:-0.169067pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.101333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.069333pt;}
.lsd{letter-spacing:0.097067pt;}
.lsc{letter-spacing:0.135467pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.lsb{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls14{letter-spacing:13.711360pt;}
.lse{letter-spacing:35.450027pt;}
.lsf{letter-spacing:35.471360pt;}
.ws9{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.wsf{word-spacing:-15.360000pt;}
.wse{word-spacing:-14.991467pt;}
.wsa{word-spacing:-14.953067pt;}
.wsb{word-spacing:-14.855467pt;}
.wsc{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.144000pt;}
.ws7{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-1.946880pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._8{width:1.888000pt;}
._2{width:3.034240pt;}
._4{width:4.427520pt;}
._5{width:5.640320pt;}
._18{width:6.535680pt;}
._13{width:8.009387pt;}
._12{width:8.987307pt;}
._16{width:10.323627pt;}
._21{width:11.623893pt;}
._e{width:12.954667pt;}
._7{width:15.720533pt;}
._6{width:16.666880pt;}
._27{width:17.840640pt;}
._b{width:19.147520pt;}
._c{width:20.365440pt;}
._d{width:21.925760pt;}
._a{width:23.613227pt;}
._9{width:24.882560pt;}
._2e{width:25.904853pt;}
._20{width:27.098880pt;}
._19{width:28.176000pt;}
._17{width:29.204480pt;}
._1b{width:30.240000pt;}
._15{width:32.089600pt;}
._14{width:33.447680pt;}
._37{width:34.648960pt;}
._3b{width:35.612800pt;}
._3e{width:36.917760pt;}
._1c{width:37.990400pt;}
._1d{width:39.790080pt;}
._1a{width:40.789760pt;}
._35{width:42.334720pt;}
._2f{width:43.453440pt;}
._39{width:44.368000pt;}
._43{width:45.368960pt;}
._38{width:46.868480pt;}
._28{width:48.222720pt;}
._3f{width:49.549440pt;}
._4f{width:50.990080pt;}
._26{width:52.403200pt;}
._25{width:53.404160pt;}
._3c{width:54.758400pt;}
._3d{width:55.936000pt;}
._5a{width:57.402880pt;}
._2a{width:58.350080pt;}
._2b{width:59.453227pt;}
._29{width:60.355840pt;}
._4d{width:61.411840pt;}
._34{width:62.665387pt;}
._33{width:63.667200pt;}
._32{width:64.650240pt;}
._31{width:66.126080pt;}
._40{width:67.358720pt;}
._48{width:68.304640pt;}
._46{width:69.419520pt;}
._30{width:70.597120pt;}
._50{width:71.892480pt;}
._11{width:72.952320pt;}
._f{width:75.130880pt;}
._10{width:76.108160pt;}
._45{width:77.423360pt;}
._52{width:79.550720pt;}
._4a{width:80.624640pt;}
._49{width:81.552640pt;}
._44{width:83.228800pt;}
._3a{width:84.673280pt;}
._47{width:87.205120pt;}
._4b{width:88.970880pt;}
._57{width:90.380800pt;}
._56{width:91.440640pt;}
._58{width:96.798720pt;}
._36{width:98.129280pt;}
._1f{width:99.479680pt;}
._1e{width:101.254400pt;}
._42{width:102.274560pt;}
._41{width:103.312640pt;}
._2c{width:105.454080pt;}
._2d{width:107.047680pt;}
._51{width:110.697600pt;}
._4e{width:116.554880pt;}
._4c{width:117.818880pt;}
._54{width:121.646080pt;}
._53{width:122.753707pt;}
._55{width:127.977600pt;}
._59{width:134.364587pt;}
._24{width:135.905280pt;}
._5b{width:152.616960pt;}
._22{width:168.548907pt;}
._23{width:175.686400pt;}
._5c{width:752.778667pt;}
.fsc{font-size:5.120000pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsb{font-size:32.000000pt;}
.fsd{font-size:34.560000pt;}
.fs7{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y1c{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.yb1{bottom:16.626667pt;}
.y71{bottom:16.640000pt;}
.y7a{bottom:16.946667pt;}
.y74{bottom:16.960000pt;}
.y77{bottom:16.986667pt;}
.y89{bottom:17.000000pt;}
.ye4{bottom:21.600000pt;}
.ye8{bottom:21.920000pt;}
.ye6{bottom:21.960000pt;}
.y19{bottom:23.520000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y79{bottom:33.746667pt;}
.y73{bottom:33.760000pt;}
.y18{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.y40{bottom:66.880000pt;}
.y17{bottom:69.600000pt;}
.y16{bottom:83.080000pt;}
.y105{bottom:100.000000pt;}
.ybe{bottom:100.480000pt;}
.y15{bottom:103.400000pt;}
.ye1{bottom:106.720000pt;}
.y3c{bottom:109.280000pt;}
.ybc{bottom:113.280000pt;}
.y6b{bottom:119.200000pt;}
.y83{bottom:120.320000pt;}
.ybd{bottom:121.920000pt;}
.yab{bottom:124.960000pt;}
.ye0{bottom:128.640000pt;}
.y14{bottom:130.440000pt;}
.y3b{bottom:131.200000pt;}
.ybb{bottom:135.200000pt;}
.y6a{bottom:141.120000pt;}
.y82{bottom:142.240000pt;}
.y13{bottom:143.720000pt;}
.y104{bottom:143.840000pt;}
.ya7{bottom:146.880000pt;}
.y3a{bottom:153.120000pt;}
.ydf{bottom:156.000000pt;}
.yba{bottom:157.120000pt;}
.y69{bottom:163.040000pt;}
.y81{bottom:164.160000pt;}
.y103{bottom:165.760000pt;}
.ya6{bottom:168.800000pt;}
.y39{bottom:175.040000pt;}
.yb9{bottom:179.040000pt;}
.y68{bottom:184.986667pt;}
.y80{bottom:186.266667pt;}
.yde{bottom:187.400000pt;}
.y102{bottom:187.866667pt;}
.ya5{bottom:190.746667pt;}
.y38{bottom:196.986667pt;}
.yb8{bottom:200.986667pt;}
.y67{bottom:206.906667pt;}
.y7f{bottom:208.186667pt;}
.y101{bottom:209.786667pt;}
.ya4{bottom:212.666667pt;}
.ydd{bottom:218.600000pt;}
.y37{bottom:218.906667pt;}
.yb7{bottom:222.906667pt;}
.y66{bottom:228.826667pt;}
.y7e{bottom:229.786667pt;}
.y84{bottom:230.106667pt;}
.y100{bottom:231.706667pt;}
.ya3{bottom:234.586667pt;}
.y36{bottom:240.826667pt;}
.yb6{bottom:244.826667pt;}
.y65{bottom:250.746667pt;}
.y7d{bottom:252.026667pt;}
.yff{bottom:253.626667pt;}
.ya2{bottom:256.506667pt;}
.ydc{bottom:259.386667pt;}
.y35{bottom:262.746667pt;}
.yb5{bottom:266.746667pt;}
.y7c{bottom:267.240000pt;}
.y64{bottom:272.666667pt;}
.yfe{bottom:275.546667pt;}
.ya1{bottom:278.106667pt;}
.yaa{bottom:278.426667pt;}
.ydb{bottom:281.306667pt;}
.y34{bottom:284.666667pt;}
.yb4{bottom:288.666667pt;}
.y63{bottom:294.586667pt;}
.yfd{bottom:297.466667pt;}
.y7b{bottom:297.480000pt;}
.ya0{bottom:300.346667pt;}
.yb3{bottom:301.960000pt;}
.yda{bottom:303.226667pt;}
.y33{bottom:306.586667pt;}
.y62{bottom:316.506667pt;}
.yfc{bottom:319.386667pt;}
.y9f{bottom:322.266667pt;}
.yd9{bottom:325.146667pt;}
.y32{bottom:328.506667pt;}
.yb2{bottom:332.200000pt;}
.y61{bottom:338.426667pt;}
.yfb{bottom:341.306667pt;}
.y9e{bottom:344.186667pt;}
.y78{bottom:344.520000pt;}
.yd8{bottom:347.066667pt;}
.y31{bottom:350.426667pt;}
.y60{bottom:360.346667pt;}
.yfa{bottom:363.226667pt;}
.yb0{bottom:363.400000pt;}
.y9d{bottom:366.106667pt;}
.yd7{bottom:368.986667pt;}
.y30{bottom:372.026667pt;}
.y3d{bottom:372.346667pt;}
.y5f{bottom:382.266667pt;}
.yf9{bottom:385.146667pt;}
.y9c{bottom:388.026667pt;}
.y2f{bottom:388.186667pt;}
.yd6{bottom:391.066667pt;}
.y76{bottom:391.560000pt;}
.y2e{bottom:395.266667pt;}
.y5e{bottom:404.226667pt;}
.yf8{bottom:407.106667pt;}
.y10a{bottom:408.386667pt;}
.y9b{bottom:409.986667pt;}
.yd5{bottom:413.026667pt;}
.y2d{bottom:414.626667pt;}
.y75{bottom:421.826667pt;}
.y5d{bottom:426.306667pt;}
.yf7{bottom:429.026667pt;}
.ya9{bottom:431.746667pt;}
.y9a{bottom:432.066667pt;}
.yd4{bottom:434.946667pt;}
.y2c{bottom:436.386667pt;}
.y109{bottom:447.906667pt;}
.y5c{bottom:448.226667pt;}
.yf6{bottom:450.946667pt;}
.y99{bottom:453.986667pt;}
.y2b{bottom:455.746667pt;}
.yd3{bottom:456.866667pt;}
.y72{bottom:468.866667pt;}
.y108{bottom:469.826667pt;}
.y5b{bottom:470.146667pt;}
.yf5{bottom:472.866667pt;}
.y2a{bottom:475.106667pt;}
.y98{bottom:475.906667pt;}
.yd2{bottom:478.786667pt;}
.y5a{bottom:492.066667pt;}
.y29{bottom:494.466667pt;}
.yf4{bottom:494.786667pt;}
.y97{bottom:497.826667pt;}
.yd1{bottom:500.706667pt;}
.y28{bottom:513.826667pt;}
.y59{bottom:513.986667pt;}
.y107{bottom:516.386667pt;}
.yf3{bottom:516.706667pt;}
.y70{bottom:516.866667pt;}
.y96{bottom:519.746667pt;}
.y27{bottom:533.346667pt;}
.y58{bottom:535.906667pt;}
.y106{bottom:538.306667pt;}
.yf2{bottom:538.626667pt;}
.y95{bottom:541.666667pt;}
.yd0{bottom:549.186667pt;}
.y26{bottom:552.706667pt;}
.yad{bottom:557.506667pt;}
.y57{bottom:557.826667pt;}
.yf1{bottom:560.546667pt;}
.y94{bottom:563.586667pt;}
.y25{bottom:572.066667pt;}
.y6f{bottom:579.426667pt;}
.y56{bottom:579.746667pt;}
.yf0{bottom:582.466667pt;}
.y93{bottom:585.506667pt;}
.y24{bottom:591.426667pt;}
.y6e{bottom:601.373333pt;}
.y55{bottom:601.693333pt;}
.yef{bottom:604.413333pt;}
.y92{bottom:607.453333pt;}
.ycf{bottom:610.653333pt;}
.y23{bottom:610.973333pt;}
.y54{bottom:623.613333pt;}
.yee{bottom:626.333333pt;}
.y91{bottom:629.373333pt;}
.y22{bottom:630.333333pt;}
.y53{bottom:645.533333pt;}
.yed{bottom:648.253333pt;}
.y21{bottom:649.693333pt;}
.y90{bottom:651.293333pt;}
.yce{bottom:651.453333pt;}
.y52{bottom:667.453333pt;}
.y20{bottom:669.053333pt;}
.yec{bottom:670.173333pt;}
.y8f{bottom:673.213333pt;}
.ycd{bottom:673.373333pt;}
.y1f{bottom:688.413333pt;}
.y51{bottom:689.373333pt;}
.yeb{bottom:692.093333pt;}
.y8e{bottom:695.133333pt;}
.ycc{bottom:702.013333pt;}
.y1e{bottom:707.613333pt;}
.y50{bottom:711.293333pt;}
.yea{bottom:714.013333pt;}
.y8d{bottom:716.733333pt;}
.ya8{bottom:717.053333pt;}
.ycb{bottom:723.933333pt;}
.y1d{bottom:724.733333pt;}
.y8c{bottom:731.133333pt;}
.y8b{bottom:732.253333pt;}
.y1b{bottom:732.413333pt;}
.y4f{bottom:733.213333pt;}
.y12{bottom:738.813333pt;}
.y1a{bottom:742.651896pt;}
.yca{bottom:745.853333pt;}
.ye9{bottom:749.373333pt;}
.y4e{bottom:755.133333pt;}
.y8a{bottom:762.493333pt;}
.ye7{bottom:762.653333pt;}
.yc9{bottom:767.773333pt;}
.y4d{bottom:777.053333pt;}
.yc8{bottom:789.693333pt;}
.y88{bottom:792.733333pt;}
.ye5{bottom:797.853333pt;}
.y4c{bottom:798.973333pt;}
.yc7{bottom:811.653333pt;}
.y6d{bottom:820.613333pt;}
.y4b{bottom:820.933333pt;}
.y87{bottom:823.973333pt;}
.yc6{bottom:833.573333pt;}
.ye3{bottom:834.213333pt;}
.y4a{bottom:842.853333pt;}
.yc5{bottom:855.493333pt;}
.y49{bottom:864.773333pt;}
.ye2{bottom:879.973333pt;}
.yaf{bottom:886.373333pt;}
.y48{bottom:886.693333pt;}
.yc4{bottom:890.693333pt;}
.yc3{bottom:903.973333pt;}
.y10{bottom:905.413333pt;}
.yae{bottom:908.293333pt;}
.y47{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.y46{bottom:930.533333pt;}
.y86{bottom:930.693333pt;}
.yc2{bottom:934.213333pt;}
.y45{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.yc1{bottom:965.413333pt;}
.y44{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y85{bottom:995.973333pt;}
.y43{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.yc0{bottom:1006.213333pt;}
.yac{bottom:1017.893333pt;}
.y42{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.ybf{bottom:1039.520000pt;}
.y6c{bottom:1039.840000pt;}
.y41{bottom:1040.160000pt;}
.y3f{bottom:1055.360000pt;}
.y3e{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h1e{height:5.022500pt;}
.h28{height:5.025000pt;}
.h10{height:5.746667pt;}
.h19{height:6.400000pt;}
.hd{height:11.843750pt;}
.h1a{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h21{height:27.093750pt;}
.h23{height:30.226667pt;}
.h27{height:30.240000pt;}
.h25{height:30.258667pt;}
.h26{height:30.260000pt;}
.h2b{height:30.266667pt;}
.h2c{height:30.272000pt;}
.h1b{height:32.765625pt;}
.h2d{height:35.186667pt;}
.h2f{height:35.200000pt;}
.h2e{height:35.220000pt;}
.h14{height:39.552188pt;}
.he{height:45.746667pt;}
.h15{height:46.830000pt;}
.h24{height:47.026667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h2a{height:52.134375pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h17{height:56.437500pt;}
.h1d{height:57.758750pt;}
.h20{height:57.787500pt;}
.h22{height:58.221875pt;}
.h1c{height:58.563750pt;}
.h1f{height:59.340000pt;}
.h16{height:60.270000pt;}
.h29{height:60.519362pt;}
.h6{height:63.399375pt;}
.h18{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h3{height:92.026667pt;}
.h12{height:166.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:94.418667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w8{width:110.898667pt;}
.w12{width:119.026667pt;}
.w10{width:145.586667pt;}
.wf{width:145.613333pt;}
.wd{width:150.417333pt;}
.w16{width:153.933333pt;}
.wc{width:168.333333pt;}
.we{width:169.466667pt;}
.wa{width:173.777333pt;}
.w14{width:174.573333pt;}
.w15{width:181.306667pt;}
.wb{width:196.026667pt;}
.w11{width:231.893333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w9{width:375.106667pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:4.626667pt;}
.x1d{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.x13{left:22.390667pt;}
.x47{left:23.546667pt;}
.x17{left:25.110667pt;}
.x30{left:26.400000pt;}
.x3f{left:28.946667pt;}
.xb{left:30.386667pt;}
.x19{left:38.225333pt;}
.x3d{left:40.800000pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2e{left:51.665333pt;}
.x2{left:54.081333pt;}
.x32{left:56.465333pt;}
.x37{left:59.505333pt;}
.x39{left:60.506667pt;}
.x38{left:61.760000pt;}
.x34{left:68.160000pt;}
.x33{left:70.746667pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x3b{left:91.401333pt;}
.x44{left:94.746667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x4b{left:100.192000pt;}
.x1a{left:111.825333pt;}
.x4c{left:118.752000pt;}
.x2a{left:120.032000pt;}
.x2d{left:127.881333pt;}
.x14{left:133.585333pt;}
.x16{left:140.185333pt;}
.x49{left:142.120000pt;}
.x1e{left:144.026667pt;}
.x4{left:150.120000pt;}
.x25{left:151.386667pt;}
.x23{left:153.960000pt;}
.x29{left:165.946667pt;}
.x15{left:168.665333pt;}
.x43{left:174.280000pt;}
.x6{left:185.786667pt;}
.x1b{left:188.505333pt;}
.x18{left:235.865333pt;}
.x36{left:240.066667pt;}
.x3c{left:241.826667pt;}
.x3a{left:256.706667pt;}
.x24{left:264.866667pt;}
.x28{left:278.146667pt;}
.x22{left:279.426667pt;}
.x1c{left:288.858236pt;}
.x12{left:298.292000pt;}
.x2f{left:301.666667pt;}
.x2c{left:302.786667pt;}
.x48{left:307.746667pt;}
.x4a{left:316.706667pt;}
.x42{left:341.826667pt;}
.xa{left:396.106667pt;}
.x45{left:406.186667pt;}
.x3e{left:411.306667pt;}
.x27{left:415.613333pt;}
.x4f{left:417.693333pt;}
.x1f{left:420.893333pt;}
.x4d{left:425.053333pt;}
.x41{left:426.653333pt;}
.x4e{left:443.613333pt;}
.x2b{left:444.893333pt;}
.x21{left:458.653333pt;}
.x20{left:468.893333pt;}
.x31{left:497.706667pt;}
.x46{left:525.226667pt;}
.x40{left:556.933333pt;}
.x35{left:578.053333pt;}
.x7{left:642.213333pt;}
.x1{left:676.453333pt;}
}




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