
    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_eff59c83bb255f254643ce44.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_5ca95f424442c63df90a866d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1645bf06e7ac35486b9a096f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_16524f0f8043930540f0d39c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1a2cb26b4edc38be5e92f8e3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_15b7cb666f15c10b2bef7988.woff')format("woff");}.ff6{font-family:ff6;line-height:0.957520;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7ad471b1d2a43a1bcada6980.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_874de3923ccf0fcb2fe192fa.woff')format("woff");}.ff9{font-family:ff9;line-height:0.769531;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_d87acd9a08c0d9a8cd82e612.woff')format("woff");}.ffa{font-family:ffa;line-height:0.973633;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_a11635561daca8b427da497d.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c2320acfda4954fbbd3aedd1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.774902;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_79d90f6f3021828c5755c175.woff')format("woff");}.ffd{font-family:ffd;line-height:0.774902;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;}
.m8{transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221428,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235715,0.000000,0.000000,0.250000,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);}
.m6{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258625,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.259800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259800,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-12.240000px;}
.v2{vertical-align:-5.760000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v4{vertical-align:12.240000px;}
.ls19{letter-spacing:-1.236000px;}
.ls1b{letter-spacing:-1.080000px;}
.ls1a{letter-spacing:-0.518400px;}
.ls13{letter-spacing:-0.425400px;}
.lsf{letter-spacing:-0.259800px;}
.lsc{letter-spacing:-0.253800px;}
.ls2{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.150600px;}
.ls15{letter-spacing:-0.044640px;}
.ls10{letter-spacing:-0.008640px;}
.ls12{letter-spacing:-0.005436px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.024000px;}
.ls5{letter-spacing:0.072720px;}
.ls3{letter-spacing:0.093000px;}
.lse{letter-spacing:0.119400px;}
.ls7{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.206400px;}
.ls11{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.286560px;}
.ls0{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.433200px;}
.ls9{letter-spacing:0.480253px;}
.ls1e{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.559800px;}
.ls14{letter-spacing:0.708000px;}
.lsd{letter-spacing:0.810000px;}
.lsa{letter-spacing:12.285227px;}
.ls1f{letter-spacing:84.162720px;}
.ls1c{letter-spacing:114.402720px;}
.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;}
}
.ws2{word-spacing:-19.131240px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.784000px;}
.wsc{word-spacing:-15.499800px;}
.ws7{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.146400px;}
.wsa{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.680200px;}
.wse{word-spacing:-13.860000px;}
.ws5{word-spacing:-11.625840px;}
.ws6{word-spacing:-9.720000px;}
.ws9{word-spacing:-9.711360px;}
.ws4{word-spacing:0.000000px;}
._1d{margin-left:-4.339440px;}
._18{margin-left:-2.828160px;}
._0{margin-left:-1.152000px;}
._2{width:1.149120px;}
._1{width:2.688000px;}
._f{width:3.751200px;}
._5{width:4.867920px;}
._4{width:5.994720px;}
._9{width:6.996960px;}
._a{width:8.130960px;}
._e{width:9.667440px;}
._6{width:10.862640px;}
._d{width:11.874960px;}
._10{width:13.386240px;}
._b{width:15.988320px;}
._c{width:17.446080px;}
._11{width:18.741120px;}
._3{width:20.171520px;}
._7{width:21.592080px;}
._8{width:22.993920px;}
._15{width:24.621120px;}
._14{width:26.294400px;}
._1e{width:27.356400px;}
._1b{width:28.825920px;}
._13{width:29.847600px;}
._12{width:31.001760px;}
._1c{width:32.628960px;}
._1a{width:52.740000px;}
._19{width:153.540000px;}
._16{width:179.580000px;}
._1f{width:181.298640px;}
._17{width:201.060000px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(0,177,80);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(255,153,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs5{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:3.240000px;}
.yeb{bottom:3.285000px;}
.y2{bottom:12.960000px;}
.y4{bottom:13.140000px;}
.ydb{bottom:20.520000px;}
.yd7{bottom:20.550000px;}
.y7a{bottom:41.934000px;}
.y6{bottom:47.160000px;}
.y9{bottom:57.780000px;}
.y8{bottom:78.516000px;}
.y3d{bottom:99.216000px;}
.y79{bottom:119.916000px;}
.ye8{bottom:120.276000px;}
.y96{bottom:123.876000px;}
.yff{bottom:126.576000px;}
.y144{bottom:130.716000px;}
.y145{bottom:131.976000px;}
.yd3{bottom:134.316000px;}
.ye7{bottom:137.556000px;}
.yfe{bottom:140.616000px;}
.y3a{bottom:140.796000px;}
.y143{bottom:147.996000px;}
.y78{bottom:149.076000px;}
.yd2{bottom:151.410000px;}
.ye6{bottom:154.830000px;}
.y39{bottom:158.070000px;}
.y142{bottom:165.090000px;}
.y77{bottom:166.350000px;}
.yd1{bottom:168.690000px;}
.ye5{bottom:172.110000px;}
.y38{bottom:175.350000px;}
.y95{bottom:181.830000px;}
.y141{bottom:182.370000px;}
.y76{bottom:183.630000px;}
.yd0{bottom:185.970000px;}
.ye4{bottom:186.150000px;}
.y37{bottom:192.630000px;}
.y121{bottom:198.390000px;}
.y94{bottom:199.110000px;}
.y140{bottom:199.650000px;}
.y75{bottom:200.910000px;}
.ycf{bottom:203.250000px;}
.y36{bottom:209.910000px;}
.y120{bottom:215.670000px;}
.y93{bottom:216.390000px;}
.y13f{bottom:216.930000px;}
.y74{bottom:218.190000px;}
.yce{bottom:220.530000px;}
.y35{bottom:227.190000px;}
.y11f{bottom:232.770000px;}
.y92{bottom:233.670000px;}
.y13e{bottom:234.210000px;}
.y73{bottom:235.470000px;}
.ycd{bottom:237.630000px;}
.y34{bottom:244.290000px;}
.y11e{bottom:250.050000px;}
.y91{bottom:250.950000px;}
.y13d{bottom:251.490000px;}
.y72{bottom:252.570000px;}
.ycc{bottom:254.910000px;}
.y33{bottom:261.570000px;}
.y11d{bottom:265.530000px;}
.y90{bottom:268.230000px;}
.y13c{bottom:268.590000px;}
.y71{bottom:269.850000px;}
.ycb{bottom:272.190000px;}
.y32{bottom:278.850000px;}
.y13b{bottom:282.630000px;}
.y11c{bottom:282.810000px;}
.y8f{bottom:285.330000px;}
.y70{bottom:287.130000px;}
.yca{bottom:289.470000px;}
.y31{bottom:296.130000px;}
.y11b{bottom:300.090000px;}
.y8e{bottom:302.610000px;}
.y6f{bottom:304.410000px;}
.yc9{bottom:306.750000px;}
.y30{bottom:313.410000px;}
.y11a{bottom:317.370000px;}
.y8d{bottom:319.890000px;}
.y6e{bottom:321.690000px;}
.yc8{bottom:324.030000px;}
.y2f{bottom:330.690000px;}
.y119{bottom:334.650000px;}
.y8c{bottom:337.215000px;}
.y6d{bottom:339.015000px;}
.yc7{bottom:341.175000px;}
.y2e{bottom:347.835000px;}
.y118{bottom:353.055000px;}
.y8b{bottom:354.495000px;}
.y6c{bottom:356.115000px;}
.yc6{bottom:358.455000px;}
.y2d{bottom:365.115000px;}
.yfd{bottom:369.255000px;}
.y8a{bottom:371.775000px;}
.y6b{bottom:373.395000px;}
.y117{bottom:374.295000px;}
.yc5{bottom:375.735000px;}
.y2c{bottom:382.395000px;}
.yfc{bottom:386.535000px;}
.y89{bottom:388.875000px;}
.y6a{bottom:390.675000px;}
.y116{bottom:391.575000px;}
.yc4{bottom:393.015000px;}
.y2b{bottom:399.675000px;}
.yfb{bottom:403.635000px;}
.y88{bottom:406.155000px;}
.y69{bottom:407.955000px;}
.y115{bottom:408.675000px;}
.yc3{bottom:410.295000px;}
.y2a{bottom:416.955000px;}
.yfa{bottom:420.915000px;}
.y87{bottom:423.435000px;}
.y68{bottom:425.235000px;}
.y114{bottom:425.955000px;}
.yc2{bottom:427.575000px;}
.y29{bottom:432.615000px;}
.yf9{bottom:438.195000px;}
.ye3{bottom:439.095000px;}
.y86{bottom:440.715000px;}
.y67{bottom:442.515000px;}
.y28{bottom:442.695000px;}
.y113{bottom:443.235000px;}
.yc1{bottom:444.675000px;}
.yf8{bottom:455.475000px;}
.ye2{bottom:456.375000px;}
.y85{bottom:457.995000px;}
.y66{bottom:459.615000px;}
.y27{bottom:459.975000px;}
.y112{bottom:460.515000px;}
.yc0{bottom:461.955000px;}
.yf7{bottom:472.755000px;}
.ye1{bottom:473.475000px;}
.y84{bottom:475.095000px;}
.y65{bottom:476.895000px;}
.y26{bottom:477.255000px;}
.y111{bottom:477.795000px;}
.ybf{bottom:479.235000px;}
.yde{bottom:488.235000px;}
.yf6{bottom:490.035000px;}
.y83{bottom:492.375000px;}
.y64{bottom:494.175000px;}
.y25{bottom:494.535000px;}
.y110{bottom:494.895000px;}
.ybe{bottom:496.515000px;}
.yf5{bottom:503.895000px;}
.ye0{bottom:505.515000px;}
.y82{bottom:509.655000px;}
.y63{bottom:511.455000px;}
.y24{bottom:511.815000px;}
.y10f{bottom:512.175000px;}
.ybd{bottom:513.795000px;}
.y13a{bottom:515.595000px;}
.ydf{bottom:522.795000px;}
.y81{bottom:526.935000px;}
.y62{bottom:528.735000px;}
.y23{bottom:529.095000px;}
.y10e{bottom:529.455000px;}
.ybc{bottom:529.635000px;}
.ybb{bottom:531.075000px;}
.y139{bottom:532.875000px;}
.yda{bottom:540.075000px;}
.y80{bottom:544.215000px;}
.y61{bottom:545.835000px;}
.y22{bottom:546.195000px;}
.y10d{bottom:546.735000px;}
.yba{bottom:548.355000px;}
.y138{bottom:550.155000px;}
.yb9{bottom:551.415000px;}
.ydd{bottom:557.355000px;}
.y10c{bottom:560.775000px;}
.y7f{bottom:561.495000px;}
.y60{bottom:563.115000px;}
.y21{bottom:563.475000px;}
.y137{bottom:567.435000px;}
.yb8{bottom:568.515000px;}
.ydc{bottom:574.635000px;}
.y7e{bottom:578.595000px;}
.y5f{bottom:580.395000px;}
.y20{bottom:580.755000px;}
.y136{bottom:584.715000px;}
.yb7{bottom:585.795000px;}
.yd6{bottom:591.735000px;}
.y7d{bottom:595.875000px;}
.y5e{bottom:597.675000px;}
.y1f{bottom:598.035000px;}
.y135{bottom:601.995000px;}
.yb6{bottom:602.895000px;}
.yd9{bottom:609.045000px;}
.y7c{bottom:613.185000px;}
.y5d{bottom:614.985000px;}
.y1e{bottom:615.345000px;}
.y134{bottom:619.125000px;}
.yb5{bottom:620.205000px;}
.yd8{bottom:626.325000px;}
.y7b{bottom:627.225000px;}
.y5c{bottom:632.265000px;}
.y1d{bottom:632.625000px;}
.y133{bottom:636.405000px;}
.yb4{bottom:637.485000px;}
.yd4{bottom:644.685000px;}
.y5b{bottom:649.365000px;}
.y1c{bottom:649.725000px;}
.y132{bottom:653.685000px;}
.yb3{bottom:654.765000px;}
.y5a{bottom:666.645000px;}
.y1b{bottom:667.005000px;}
.y131{bottom:670.965000px;}
.yb2{bottom:672.045000px;}
.y59{bottom:683.925000px;}
.y1a{bottom:684.285000px;}
.y130{bottom:688.245000px;}
.yb1{bottom:688.605000px;}
.yb0{bottom:691.665000px;}
.y58{bottom:701.205000px;}
.y19{bottom:701.565000px;}
.y12f{bottom:705.525000px;}
.yaf{bottom:713.805000px;}
.yf4{bottom:715.065000px;}
.y57{bottom:718.485000px;}
.y18{bottom:718.845000px;}
.y12e{bottom:722.625000px;}
.yae{bottom:731.085000px;}
.yf3{bottom:732.345000px;}
.y56{bottom:735.765000px;}
.y17{bottom:735.945000px;}
.y12d{bottom:739.905000px;}
.yad{bottom:748.365000px;}
.yf2{bottom:749.625000px;}
.y55{bottom:752.865000px;}
.y16{bottom:753.225000px;}
.y12c{bottom:757.185000px;}
.yf1{bottom:766.725000px;}
.y54{bottom:770.145000px;}
.y15{bottom:770.505000px;}
.y12b{bottom:774.465000px;}
.yf0{bottom:784.005000px;}
.y53{bottom:787.425000px;}
.y14{bottom:787.785000px;}
.y12a{bottom:791.745000px;}
.yac{bottom:793.365000px;}
.yef{bottom:801.285000px;}
.y10b{bottom:802.365000px;}
.y52{bottom:804.705000px;}
.y13{bottom:805.065000px;}
.y129{bottom:808.845000px;}
.yab{bottom:810.465000px;}
.yee{bottom:816.045000px;}
.y10a{bottom:819.645000px;}
.y51{bottom:821.985000px;}
.y12{bottom:824.865000px;}
.y128{bottom:826.125000px;}
.yaa{bottom:827.745000px;}
.yed{bottom:833.325000px;}
.y109{bottom:836.925000px;}
.y50{bottom:839.265000px;}
.y127{bottom:843.405000px;}
.y11{bottom:844.665000px;}
.ya9{bottom:845.025000px;}
.yec{bottom:850.605000px;}
.y108{bottom:854.205000px;}
.y4f{bottom:856.365000px;}
.y126{bottom:860.685000px;}
.ya8{bottom:862.305000px;}
.y10{bottom:864.465000px;}
.yea{bottom:867.885000px;}
.y107{bottom:871.530000px;}
.y4e{bottom:873.690000px;}
.y125{bottom:878.010000px;}
.ya7{bottom:881.070000px;}
.yf{bottom:881.790000px;}
.ye9{bottom:886.290000px;}
.y106{bottom:888.630000px;}
.y4d{bottom:890.970000px;}
.y124{bottom:895.290000px;}
.ye{bottom:899.790000px;}
.ya6{bottom:903.210000px;}
.y105{bottom:903.390000px;}
.ya5{bottom:906.270000px;}
.y4c{bottom:908.250000px;}
.y123{bottom:912.390000px;}
.yd{bottom:920.490000px;}
.y104{bottom:920.670000px;}
.y4b{bottom:925.530000px;}
.y122{bottom:926.430000px;}
.ya4{bottom:928.410000px;}
.y103{bottom:937.950000px;}
.yc{bottom:942.450000px;}
.y4a{bottom:942.630000px;}
.ya3{bottom:945.690000px;}
.y102{bottom:955.230000px;}
.y49{bottom:959.910000px;}
.ya2{bottom:962.970000px;}
.yb{bottom:970.170000px;}
.y101{bottom:972.510000px;}
.y48{bottom:977.190000px;}
.ya1{bottom:980.070000px;}
.y100{bottom:990.510000px;}
.y47{bottom:994.470000px;}
.ya0{bottom:997.350000px;}
.ya{bottom:997.710000px;}
.y46{bottom:1011.750000px;}
.y9f{bottom:1014.630000px;}
.y7{bottom:1023.990000px;}
.y45{bottom:1029.030000px;}
.y9e{bottom:1031.910000px;}
.y5{bottom:1040.730000px;}
.y44{bottom:1046.130000px;}
.y9d{bottom:1049.190000px;}
.y43{bottom:1063.410000px;}
.y9c{bottom:1066.470000px;}
.y42{bottom:1080.690000px;}
.y9b{bottom:1083.030000px;}
.y9a{bottom:1086.090000px;}
.y41{bottom:1097.970000px;}
.y99{bottom:1108.230000px;}
.y40{bottom:1115.250000px;}
.y98{bottom:1125.330000px;}
.y3f{bottom:1132.530000px;}
.y97{bottom:1144.800000px;}
.y3{bottom:1149.300000px;}
.y3e{bottom:1149.660000px;}
.y3c{bottom:1167.660000px;}
.y1{bottom:1179.180000px;}
.y3b{bottom:1192.140000px;}
.h19{height:17.100000px;}
.h1b{height:17.136000px;}
.h15{height:17.280000px;}
.h17{height:17.316000px;}
.hd{height:21.336328px;}
.h2{height:29.700000px;}
.h4{height:29.880000px;}
.h12{height:36.509766px;}
.ha{height:42.164648px;}
.hb{height:42.894141px;}
.h1c{height:43.506914px;}
.h14{height:48.654141px;}
.hc{height:49.255313px;}
.h5{height:50.800781px;}
.h18{height:51.660000px;}
.h3{height:51.679688px;}
.h1a{height:51.840000px;}
.h16{height:51.876000px;}
.he{height:52.171875px;}
.h10{height:52.417969px;}
.h11{height:52.769531px;}
.h13{height:54.703125px;}
.hf{height:55.800000px;}
.h9{height:67.565039px;}
.h7{height:67.824844px;}
.h8{height:86.255508px;}
.h6{height:108.576000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:25.740000px;}
.wd{width:33.840000px;}
.w15{width:39.600000px;}
.wb{width:39.960000px;}
.w14{width:43.416000px;}
.wc{width:57.816000px;}
.w16{width:57.996000px;}
.w19{width:60.840000px;}
.wa{width:61.200000px;}
.w12{width:73.080000px;}
.w1a{width:73.440000px;}
.w1b{width:76.536000px;}
.w9{width:87.696000px;}
.w17{width:89.820000px;}
.w8{width:95.580000px;}
.w11{width:95.616000px;}
.we{width:96.696000px;}
.wf{width:99.900000px;}
.w13{width:132.336000px;}
.w10{width:144.036000px;}
.w18{width:157.350000px;}
.w5{width:199.830000px;}
.w3{width:252.750000px;}
.w4{width:265.755000px;}
.w2{width:718.350000px;}
.w6{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x57{left:3.240000px;}
.x7a{left:4.500000px;}
.x4c{left:9.000000px;}
.x78{left:10.800000px;}
.x58{left:12.060000px;}
.x56{left:14.040000px;}
.x79{left:15.300000px;}
.x69{left:17.460000px;}
.x8{left:23.940000px;}
.x55{left:25.020000px;}
.x68{left:31.185000px;}
.x53{left:33.120000px;}
.x5d{left:35.280000px;}
.x6a{left:37.440000px;}
.x3{left:42.300000px;}
.x5c{left:44.325000px;}
.x5b{left:46.080000px;}
.x5a{left:47.700000px;}
.x7e{left:53.460000px;}
.x67{left:55.470000px;}
.x6b{left:59.430000px;}
.x4d{left:60.480000px;}
.x6{left:62.310000px;}
.x54{left:70.560000px;}
.x66{left:72.720000px;}
.x81{left:76.545000px;}
.x59{left:78.330000px;}
.x4e{left:87.510000px;}
.x76{left:89.460000px;}
.xc{left:95.255987px;}
.x14{left:97.235987px;}
.x1{left:99.936000px;}
.x87{left:102.095987px;}
.x71{left:106.785000px;}
.x9{left:108.035987px;}
.x13{left:110.195987px;}
.xb{left:111.635987px;}
.x84{left:112.680000px;}
.x6d{left:113.795987px;}
.x7b{left:121.355987px;}
.x77{left:124.965000px;}
.x82{left:126.720000px;}
.x85{left:132.480000px;}
.x63{left:143.850000px;}
.x83{left:157.530000px;}
.x8b{left:161.849987px;}
.x11{left:177.689987px;}
.x4{left:182.199000px;}
.x61{left:191.910000px;}
.x1d{left:194.789987px;}
.x1e{left:206.309987px;}
.x27{left:207.389987px;}
.x5f{left:219.089987px;}
.x70{left:234.390000px;}
.x28{left:238.754987px;}
.x2{left:240.519000px;}
.x39{left:243.974987px;}
.x1f{left:253.694987px;}
.x4b{left:258.555000px;}
.x7d{left:262.515000px;}
.x29{left:267.734987px;}
.x19{left:270.434987px;}
.x1b{left:278.174987px;}
.x6f{left:280.334987px;}
.x33{left:281.774987px;}
.x4a{left:286.274987px;}
.x62{left:288.615000px;}
.x2a{left:295.274987px;}
.xd{left:296.894987px;}
.x3a{left:301.034987px;}
.x34{left:303.014987px;}
.x20{left:304.274987px;}
.x7c{left:305.714987px;}
.x2b{left:308.594987px;}
.x3b{left:314.354987px;}
.x60{left:315.614987px;}
.x2c{left:321.194987px;}
.x89{left:323.894987px;}
.xf{left:335.234987px;}
.x2d{left:348.734987px;}
.x1c{left:351.254987px;}
.x5{left:352.695000px;}
.x49{left:354.494987px;}
.x3c{left:357.014987px;}
.x21{left:366.734987px;}
.x3d{left:370.154987px;}
.x35{left:374.654987px;}
.x2e{left:377.894987px;}
.x22{left:380.234987px;}
.x17{left:383.834987px;}
.x15{left:386.534987px;}
.x36{left:388.334987px;}
.x23{left:390.674987px;}
.x3e{left:394.094987px;}
.x8a{left:395.714987px;}
.x42{left:406.364987px;}
.x12{left:408.164987px;}
.x72{left:410.145000px;}
.x2f{left:417.344987px;}
.x24{left:420.224987px;}
.x37{left:421.484987px;}
.x30{left:430.664987px;}
.x16{left:433.004987px;}
.x18{left:435.345000px;}
.x3f{left:440.024987px;}
.x4f{left:441.825000px;}
.x31{left:443.444987px;}
.xa{left:445.604987px;}
.xe{left:452.264987px;}
.x43{left:457.664987px;}
.x10{left:459.104987px;}
.x25{left:464.864987px;}
.x44{left:468.464987px;}
.x73{left:471.345000px;}
.x32{left:476.744987px;}
.x40{left:478.364987px;}
.x7f{left:480.705000px;}
.x50{left:503.025000px;}
.x74{left:510.945000px;}
.x41{left:518.864987px;}
.x45{left:523.364987px;}
.x64{left:532.545000px;}
.x46{left:534.164987px;}
.x51{left:542.985000px;}
.x80{left:554.145000px;}
.x75{left:568.950000px;}
.x47{left:587.669987px;}
.x1a{left:594.869987px;}
.x48{left:598.469987px;}
.x52{left:600.810000px;}
.x38{left:609.989987px;}
.x7{left:618.450000px;}
.x5e{left:622.229987px;}
.x65{left:628.170000px;}
.x88{left:660.929987px;}
.x6c{left:671.549987px;}
.x26{left:680.909987px;}
.x86{left:699.449987px;}
.x6e{left:704.489987px;}
@media print{
.v3{vertical-align:-10.880000pt;}
.v2{vertical-align:-5.120000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v4{vertical-align:10.880000pt;}
.ls19{letter-spacing:-1.098667pt;}
.ls1b{letter-spacing:-0.960000pt;}
.ls1a{letter-spacing:-0.460800pt;}
.ls13{letter-spacing:-0.378133pt;}
.lsf{letter-spacing:-0.230933pt;}
.lsc{letter-spacing:-0.225600pt;}
.ls2{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.133867pt;}
.ls15{letter-spacing:-0.039680pt;}
.ls10{letter-spacing:-0.007680pt;}
.ls12{letter-spacing:-0.004832pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.021333pt;}
.ls5{letter-spacing:0.064640pt;}
.ls3{letter-spacing:0.082667pt;}
.lse{letter-spacing:0.106133pt;}
.ls7{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.183467pt;}
.ls11{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.254720pt;}
.ls0{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.385067pt;}
.ls9{letter-spacing:0.426892pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.497600pt;}
.ls14{letter-spacing:0.629333pt;}
.lsd{letter-spacing:0.720000pt;}
.lsa{letter-spacing:10.920202pt;}
.ls1f{letter-spacing:74.811307pt;}
.ls1c{letter-spacing:101.691307pt;}
.ws2{word-spacing:-17.005547pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.808000pt;}
.wsc{word-spacing:-13.777600pt;}
.ws7{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.049067pt;}
.wse{word-spacing:-12.320000pt;}
.ws5{word-spacing:-10.334080pt;}
.ws6{word-spacing:-8.640000pt;}
.ws9{word-spacing:-8.632320pt;}
.ws4{word-spacing:0.000000pt;}
._1d{margin-left:-3.857280pt;}
._18{margin-left:-2.513920pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.021440pt;}
._1{width:2.389333pt;}
._f{width:3.334400pt;}
._5{width:4.327040pt;}
._4{width:5.328640pt;}
._9{width:6.219520pt;}
._a{width:7.227520pt;}
._e{width:8.593280pt;}
._6{width:9.655680pt;}
._d{width:10.555520pt;}
._10{width:11.898880pt;}
._b{width:14.211840pt;}
._c{width:15.507627pt;}
._11{width:16.658773pt;}
._3{width:17.930240pt;}
._7{width:19.192960pt;}
._8{width:20.439040pt;}
._15{width:21.885440pt;}
._14{width:23.372800pt;}
._1e{width:24.316800pt;}
._1b{width:25.623040pt;}
._13{width:26.531200pt;}
._12{width:27.557120pt;}
._1c{width:29.003520pt;}
._1a{width:46.880000pt;}
._19{width:136.480000pt;}
._16{width:159.626667pt;}
._1f{width:161.154347pt;}
._17{width:178.720000pt;}
.fs5{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:2.880000pt;}
.yeb{bottom:2.920000pt;}
.y2{bottom:11.520000pt;}
.y4{bottom:11.680000pt;}
.ydb{bottom:18.240000pt;}
.yd7{bottom:18.266667pt;}
.y7a{bottom:37.274667pt;}
.y6{bottom:41.920000pt;}
.y9{bottom:51.360000pt;}
.y8{bottom:69.792000pt;}
.y3d{bottom:88.192000pt;}
.y79{bottom:106.592000pt;}
.ye8{bottom:106.912000pt;}
.y96{bottom:110.112000pt;}
.yff{bottom:112.512000pt;}
.y144{bottom:116.192000pt;}
.y145{bottom:117.312000pt;}
.yd3{bottom:119.392000pt;}
.ye7{bottom:122.272000pt;}
.yfe{bottom:124.992000pt;}
.y3a{bottom:125.152000pt;}
.y143{bottom:131.552000pt;}
.y78{bottom:132.512000pt;}
.yd2{bottom:134.586667pt;}
.ye6{bottom:137.626667pt;}
.y39{bottom:140.506667pt;}
.y142{bottom:146.746667pt;}
.y77{bottom:147.866667pt;}
.yd1{bottom:149.946667pt;}
.ye5{bottom:152.986667pt;}
.y38{bottom:155.866667pt;}
.y95{bottom:161.626667pt;}
.y141{bottom:162.106667pt;}
.y76{bottom:163.226667pt;}
.yd0{bottom:165.306667pt;}
.ye4{bottom:165.466667pt;}
.y37{bottom:171.226667pt;}
.y121{bottom:176.346667pt;}
.y94{bottom:176.986667pt;}
.y140{bottom:177.466667pt;}
.y75{bottom:178.586667pt;}
.ycf{bottom:180.666667pt;}
.y36{bottom:186.586667pt;}
.y120{bottom:191.706667pt;}
.y93{bottom:192.346667pt;}
.y13f{bottom:192.826667pt;}
.y74{bottom:193.946667pt;}
.yce{bottom:196.026667pt;}
.y35{bottom:201.946667pt;}
.y11f{bottom:206.906667pt;}
.y92{bottom:207.706667pt;}
.y13e{bottom:208.186667pt;}
.y73{bottom:209.306667pt;}
.ycd{bottom:211.226667pt;}
.y34{bottom:217.146667pt;}
.y11e{bottom:222.266667pt;}
.y91{bottom:223.066667pt;}
.y13d{bottom:223.546667pt;}
.y72{bottom:224.506667pt;}
.ycc{bottom:226.586667pt;}
.y33{bottom:232.506667pt;}
.y11d{bottom:236.026667pt;}
.y90{bottom:238.426667pt;}
.y13c{bottom:238.746667pt;}
.y71{bottom:239.866667pt;}
.ycb{bottom:241.946667pt;}
.y32{bottom:247.866667pt;}
.y13b{bottom:251.226667pt;}
.y11c{bottom:251.386667pt;}
.y8f{bottom:253.626667pt;}
.y70{bottom:255.226667pt;}
.yca{bottom:257.306667pt;}
.y31{bottom:263.226667pt;}
.y11b{bottom:266.746667pt;}
.y8e{bottom:268.986667pt;}
.y6f{bottom:270.586667pt;}
.yc9{bottom:272.666667pt;}
.y30{bottom:278.586667pt;}
.y11a{bottom:282.106667pt;}
.y8d{bottom:284.346667pt;}
.y6e{bottom:285.946667pt;}
.yc8{bottom:288.026667pt;}
.y2f{bottom:293.946667pt;}
.y119{bottom:297.466667pt;}
.y8c{bottom:299.746667pt;}
.y6d{bottom:301.346667pt;}
.yc7{bottom:303.266667pt;}
.y2e{bottom:309.186667pt;}
.y118{bottom:313.826667pt;}
.y8b{bottom:315.106667pt;}
.y6c{bottom:316.546667pt;}
.yc6{bottom:318.626667pt;}
.y2d{bottom:324.546667pt;}
.yfd{bottom:328.226667pt;}
.y8a{bottom:330.466667pt;}
.y6b{bottom:331.906667pt;}
.y117{bottom:332.706667pt;}
.yc5{bottom:333.986667pt;}
.y2c{bottom:339.906667pt;}
.yfc{bottom:343.586667pt;}
.y89{bottom:345.666667pt;}
.y6a{bottom:347.266667pt;}
.y116{bottom:348.066667pt;}
.yc4{bottom:349.346667pt;}
.y2b{bottom:355.266667pt;}
.yfb{bottom:358.786667pt;}
.y88{bottom:361.026667pt;}
.y69{bottom:362.626667pt;}
.y115{bottom:363.266667pt;}
.yc3{bottom:364.706667pt;}
.y2a{bottom:370.626667pt;}
.yfa{bottom:374.146667pt;}
.y87{bottom:376.386667pt;}
.y68{bottom:377.986667pt;}
.y114{bottom:378.626667pt;}
.yc2{bottom:380.066667pt;}
.y29{bottom:384.546667pt;}
.yf9{bottom:389.506667pt;}
.ye3{bottom:390.306667pt;}
.y86{bottom:391.746667pt;}
.y67{bottom:393.346667pt;}
.y28{bottom:393.506667pt;}
.y113{bottom:393.986667pt;}
.yc1{bottom:395.266667pt;}
.yf8{bottom:404.866667pt;}
.ye2{bottom:405.666667pt;}
.y85{bottom:407.106667pt;}
.y66{bottom:408.546667pt;}
.y27{bottom:408.866667pt;}
.y112{bottom:409.346667pt;}
.yc0{bottom:410.626667pt;}
.yf7{bottom:420.226667pt;}
.ye1{bottom:420.866667pt;}
.y84{bottom:422.306667pt;}
.y65{bottom:423.906667pt;}
.y26{bottom:424.226667pt;}
.y111{bottom:424.706667pt;}
.ybf{bottom:425.986667pt;}
.yde{bottom:433.986667pt;}
.yf6{bottom:435.586667pt;}
.y83{bottom:437.666667pt;}
.y64{bottom:439.266667pt;}
.y25{bottom:439.586667pt;}
.y110{bottom:439.906667pt;}
.ybe{bottom:441.346667pt;}
.yf5{bottom:447.906667pt;}
.ye0{bottom:449.346667pt;}
.y82{bottom:453.026667pt;}
.y63{bottom:454.626667pt;}
.y24{bottom:454.946667pt;}
.y10f{bottom:455.266667pt;}
.ybd{bottom:456.706667pt;}
.y13a{bottom:458.306667pt;}
.ydf{bottom:464.706667pt;}
.y81{bottom:468.386667pt;}
.y62{bottom:469.986667pt;}
.y23{bottom:470.306667pt;}
.y10e{bottom:470.626667pt;}
.ybc{bottom:470.786667pt;}
.ybb{bottom:472.066667pt;}
.y139{bottom:473.666667pt;}
.yda{bottom:480.066667pt;}
.y80{bottom:483.746667pt;}
.y61{bottom:485.186667pt;}
.y22{bottom:485.506667pt;}
.y10d{bottom:485.986667pt;}
.yba{bottom:487.426667pt;}
.y138{bottom:489.026667pt;}
.yb9{bottom:490.146667pt;}
.ydd{bottom:495.426667pt;}
.y10c{bottom:498.466667pt;}
.y7f{bottom:499.106667pt;}
.y60{bottom:500.546667pt;}
.y21{bottom:500.866667pt;}
.y137{bottom:504.386667pt;}
.yb8{bottom:505.346667pt;}
.ydc{bottom:510.786667pt;}
.y7e{bottom:514.306667pt;}
.y5f{bottom:515.906667pt;}
.y20{bottom:516.226667pt;}
.y136{bottom:519.746667pt;}
.yb7{bottom:520.706667pt;}
.yd6{bottom:525.986667pt;}
.y7d{bottom:529.666667pt;}
.y5e{bottom:531.266667pt;}
.y1f{bottom:531.586667pt;}
.y135{bottom:535.106667pt;}
.yb6{bottom:535.906667pt;}
.yd9{bottom:541.373333pt;}
.y7c{bottom:545.053333pt;}
.y5d{bottom:546.653333pt;}
.y1e{bottom:546.973333pt;}
.y134{bottom:550.333333pt;}
.yb5{bottom:551.293333pt;}
.yd8{bottom:556.733333pt;}
.y7b{bottom:557.533333pt;}
.y5c{bottom:562.013333pt;}
.y1d{bottom:562.333333pt;}
.y133{bottom:565.693333pt;}
.yb4{bottom:566.653333pt;}
.yd4{bottom:573.053333pt;}
.y5b{bottom:577.213333pt;}
.y1c{bottom:577.533333pt;}
.y132{bottom:581.053333pt;}
.yb3{bottom:582.013333pt;}
.y5a{bottom:592.573333pt;}
.y1b{bottom:592.893333pt;}
.y131{bottom:596.413333pt;}
.yb2{bottom:597.373333pt;}
.y59{bottom:607.933333pt;}
.y1a{bottom:608.253333pt;}
.y130{bottom:611.773333pt;}
.yb1{bottom:612.093333pt;}
.yb0{bottom:614.813333pt;}
.y58{bottom:623.293333pt;}
.y19{bottom:623.613333pt;}
.y12f{bottom:627.133333pt;}
.yaf{bottom:634.493333pt;}
.yf4{bottom:635.613333pt;}
.y57{bottom:638.653333pt;}
.y18{bottom:638.973333pt;}
.y12e{bottom:642.333333pt;}
.yae{bottom:649.853333pt;}
.yf3{bottom:650.973333pt;}
.y56{bottom:654.013333pt;}
.y17{bottom:654.173333pt;}
.y12d{bottom:657.693333pt;}
.yad{bottom:665.213333pt;}
.yf2{bottom:666.333333pt;}
.y55{bottom:669.213333pt;}
.y16{bottom:669.533333pt;}
.y12c{bottom:673.053333pt;}
.yf1{bottom:681.533333pt;}
.y54{bottom:684.573333pt;}
.y15{bottom:684.893333pt;}
.y12b{bottom:688.413333pt;}
.yf0{bottom:696.893333pt;}
.y53{bottom:699.933333pt;}
.y14{bottom:700.253333pt;}
.y12a{bottom:703.773333pt;}
.yac{bottom:705.213333pt;}
.yef{bottom:712.253333pt;}
.y10b{bottom:713.213333pt;}
.y52{bottom:715.293333pt;}
.y13{bottom:715.613333pt;}
.y129{bottom:718.973333pt;}
.yab{bottom:720.413333pt;}
.yee{bottom:725.373333pt;}
.y10a{bottom:728.573333pt;}
.y51{bottom:730.653333pt;}
.y12{bottom:733.213333pt;}
.y128{bottom:734.333333pt;}
.yaa{bottom:735.773333pt;}
.yed{bottom:740.733333pt;}
.y109{bottom:743.933333pt;}
.y50{bottom:746.013333pt;}
.y127{bottom:749.693333pt;}
.y11{bottom:750.813333pt;}
.ya9{bottom:751.133333pt;}
.yec{bottom:756.093333pt;}
.y108{bottom:759.293333pt;}
.y4f{bottom:761.213333pt;}
.y126{bottom:765.053333pt;}
.ya8{bottom:766.493333pt;}
.y10{bottom:768.413333pt;}
.yea{bottom:771.453333pt;}
.y107{bottom:774.693333pt;}
.y4e{bottom:776.613333pt;}
.y125{bottom:780.453333pt;}
.ya7{bottom:783.173333pt;}
.yf{bottom:783.813333pt;}
.ye9{bottom:787.813333pt;}
.y106{bottom:789.893333pt;}
.y4d{bottom:791.973333pt;}
.y124{bottom:795.813333pt;}
.ye{bottom:799.813333pt;}
.ya6{bottom:802.853333pt;}
.y105{bottom:803.013333pt;}
.ya5{bottom:805.573333pt;}
.y4c{bottom:807.333333pt;}
.y123{bottom:811.013333pt;}
.yd{bottom:818.213333pt;}
.y104{bottom:818.373333pt;}
.y4b{bottom:822.693333pt;}
.y122{bottom:823.493333pt;}
.ya4{bottom:825.253333pt;}
.y103{bottom:833.733333pt;}
.yc{bottom:837.733333pt;}
.y4a{bottom:837.893333pt;}
.ya3{bottom:840.613333pt;}
.y102{bottom:849.093333pt;}
.y49{bottom:853.253333pt;}
.ya2{bottom:855.973333pt;}
.yb{bottom:862.373333pt;}
.y101{bottom:864.453333pt;}
.y48{bottom:868.613333pt;}
.ya1{bottom:871.173333pt;}
.y100{bottom:880.453333pt;}
.y47{bottom:883.973333pt;}
.ya0{bottom:886.533333pt;}
.ya{bottom:886.853333pt;}
.y46{bottom:899.333333pt;}
.y9f{bottom:901.893333pt;}
.y7{bottom:910.213333pt;}
.y45{bottom:914.693333pt;}
.y9e{bottom:917.253333pt;}
.y5{bottom:925.093333pt;}
.y44{bottom:929.893333pt;}
.y9d{bottom:932.613333pt;}
.y43{bottom:945.253333pt;}
.y9c{bottom:947.973333pt;}
.y42{bottom:960.613333pt;}
.y9b{bottom:962.693333pt;}
.y9a{bottom:965.413333pt;}
.y41{bottom:975.973333pt;}
.y99{bottom:985.093333pt;}
.y40{bottom:991.333333pt;}
.y98{bottom:1000.293333pt;}
.y3f{bottom:1006.693333pt;}
.y97{bottom:1017.600000pt;}
.y3{bottom:1021.600000pt;}
.y3e{bottom:1021.920000pt;}
.y3c{bottom:1037.920000pt;}
.y1{bottom:1048.160000pt;}
.y3b{bottom:1059.680000pt;}
.h19{height:15.200000pt;}
.h1b{height:15.232000pt;}
.h15{height:15.360000pt;}
.h17{height:15.392000pt;}
.hd{height:18.965625pt;}
.h2{height:26.400000pt;}
.h4{height:26.560000pt;}
.h12{height:32.453125pt;}
.ha{height:37.479688pt;}
.hb{height:38.128125pt;}
.h1c{height:38.672812pt;}
.h14{height:43.248125pt;}
.hc{height:43.782500pt;}
.h5{height:45.156250pt;}
.h18{height:45.920000pt;}
.h3{height:45.937500pt;}
.h1a{height:46.080000pt;}
.h16{height:46.112000pt;}
.he{height:46.375000pt;}
.h10{height:46.593750pt;}
.h11{height:46.906250pt;}
.h13{height:48.625000pt;}
.hf{height:49.600000pt;}
.h9{height:60.057813pt;}
.h7{height:60.288750pt;}
.h8{height:76.671562pt;}
.h6{height:96.512000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:22.880000pt;}
.wd{width:30.080000pt;}
.w15{width:35.200000pt;}
.wb{width:35.520000pt;}
.w14{width:38.592000pt;}
.wc{width:51.392000pt;}
.w16{width:51.552000pt;}
.w19{width:54.080000pt;}
.wa{width:54.400000pt;}
.w12{width:64.960000pt;}
.w1a{width:65.280000pt;}
.w1b{width:68.032000pt;}
.w9{width:77.952000pt;}
.w17{width:79.840000pt;}
.w8{width:84.960000pt;}
.w11{width:84.992000pt;}
.we{width:85.952000pt;}
.wf{width:88.800000pt;}
.w13{width:117.632000pt;}
.w10{width:128.032000pt;}
.w18{width:139.866667pt;}
.w5{width:177.626667pt;}
.w3{width:224.666667pt;}
.w4{width:236.226667pt;}
.w2{width:638.533333pt;}
.w6{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x57{left:2.880000pt;}
.x7a{left:4.000000pt;}
.x4c{left:8.000000pt;}
.x78{left:9.600000pt;}
.x58{left:10.720000pt;}
.x56{left:12.480000pt;}
.x79{left:13.600000pt;}
.x69{left:15.520000pt;}
.x8{left:21.280000pt;}
.x55{left:22.240000pt;}
.x68{left:27.720000pt;}
.x53{left:29.440000pt;}
.x5d{left:31.360000pt;}
.x6a{left:33.280000pt;}
.x3{left:37.600000pt;}
.x5c{left:39.400000pt;}
.x5b{left:40.960000pt;}
.x5a{left:42.400000pt;}
.x7e{left:47.520000pt;}
.x67{left:49.306667pt;}
.x6b{left:52.826667pt;}
.x4d{left:53.760000pt;}
.x6{left:55.386667pt;}
.x54{left:62.720000pt;}
.x66{left:64.640000pt;}
.x81{left:68.040000pt;}
.x59{left:69.626667pt;}
.x4e{left:77.786667pt;}
.x76{left:79.520000pt;}
.xc{left:84.671988pt;}
.x14{left:86.431988pt;}
.x1{left:88.832000pt;}
.x87{left:90.751988pt;}
.x71{left:94.920000pt;}
.x9{left:96.031988pt;}
.x13{left:97.951988pt;}
.xb{left:99.231988pt;}
.x84{left:100.160000pt;}
.x6d{left:101.151988pt;}
.x7b{left:107.871988pt;}
.x77{left:111.080000pt;}
.x82{left:112.640000pt;}
.x85{left:117.760000pt;}
.x63{left:127.866667pt;}
.x83{left:140.026667pt;}
.x8b{left:143.866655pt;}
.x11{left:157.946655pt;}
.x4{left:161.954667pt;}
.x61{left:170.586667pt;}
.x1d{left:173.146655pt;}
.x1e{left:183.386655pt;}
.x27{left:184.346655pt;}
.x5f{left:194.746655pt;}
.x70{left:208.346667pt;}
.x28{left:212.226655pt;}
.x2{left:213.794667pt;}
.x39{left:216.866655pt;}
.x1f{left:225.506655pt;}
.x4b{left:229.826667pt;}
.x7d{left:233.346667pt;}
.x29{left:237.986655pt;}
.x19{left:240.386655pt;}
.x1b{left:247.266655pt;}
.x6f{left:249.186655pt;}
.x33{left:250.466655pt;}
.x4a{left:254.466655pt;}
.x62{left:256.546667pt;}
.x2a{left:262.466655pt;}
.xd{left:263.906655pt;}
.x3a{left:267.586655pt;}
.x34{left:269.346655pt;}
.x20{left:270.466655pt;}
.x7c{left:271.746655pt;}
.x2b{left:274.306655pt;}
.x3b{left:279.426655pt;}
.x60{left:280.546655pt;}
.x2c{left:285.506655pt;}
.x89{left:287.906655pt;}
.xf{left:297.986655pt;}
.x2d{left:309.986655pt;}
.x1c{left:312.226655pt;}
.x5{left:313.506667pt;}
.x49{left:315.106655pt;}
.x3c{left:317.346655pt;}
.x21{left:325.986655pt;}
.x3d{left:329.026655pt;}
.x35{left:333.026655pt;}
.x2e{left:335.906655pt;}
.x22{left:337.986655pt;}
.x17{left:341.186655pt;}
.x15{left:343.586655pt;}
.x36{left:345.186655pt;}
.x23{left:347.266655pt;}
.x3e{left:350.306655pt;}
.x8a{left:351.746655pt;}
.x42{left:361.213322pt;}
.x12{left:362.813322pt;}
.x72{left:364.573333pt;}
.x2f{left:370.973322pt;}
.x24{left:373.533322pt;}
.x37{left:374.653322pt;}
.x30{left:382.813322pt;}
.x16{left:384.893322pt;}
.x18{left:386.973333pt;}
.x3f{left:391.133322pt;}
.x4f{left:392.733333pt;}
.x31{left:394.173322pt;}
.xa{left:396.093322pt;}
.xe{left:402.013322pt;}
.x43{left:406.813322pt;}
.x10{left:408.093322pt;}
.x25{left:413.213322pt;}
.x44{left:416.413322pt;}
.x73{left:418.973333pt;}
.x32{left:423.773322pt;}
.x40{left:425.213322pt;}
.x7f{left:427.293333pt;}
.x50{left:447.133333pt;}
.x74{left:454.173333pt;}
.x41{left:461.213322pt;}
.x45{left:465.213322pt;}
.x64{left:473.373333pt;}
.x46{left:474.813322pt;}
.x51{left:482.653333pt;}
.x80{left:492.573333pt;}
.x75{left:505.733333pt;}
.x47{left:522.373322pt;}
.x1a{left:528.773322pt;}
.x48{left:531.973322pt;}
.x52{left:534.053333pt;}
.x38{left:542.213322pt;}
.x7{left:549.733333pt;}
.x5e{left:553.093322pt;}
.x65{left:558.373333pt;}
.x88{left:587.493322pt;}
.x6c{left:596.933322pt;}
.x26{left:605.253322pt;}
.x86{left:621.733322pt;}
.x6e{left:626.213322pt;}
}




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