
    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_a4c746061cf91c92e6f20c59.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_7e95cf109f68093856baa626.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_cb76b81972a5ab51f24f6baa.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_9fa19f391f67930d4339abd8.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_53035891b1af7096170231ca.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_0b2df9d0d51b34790b702966.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_f2b3cd212748b29e7968aa6c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_51f34a6f2c259e5e8151dc89.woff')format("woff");}.ffb{font-family:ffb;line-height:0.970703;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_15740ab69777714078181b8d.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7a247562abc3ff4f81fd2ebc.woff')format("woff");}.ffd{font-family:ffd;line-height:0.884766;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_4cb0b12d940f753e2276fca4.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b584ad268a37d818e51fd40c.woff')format("woff");}.ff10{font-family:ff10;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff11{font-family:ff11;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;}
.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;}
.v1{vertical-align:30.240000px;}
.lsa{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.414600px;}
.lsf{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.190200px;}
.ls9{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.114000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.034560px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.ls13{letter-spacing:0.109200px;}
.lsb{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.lse{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.457800px;}
.ls3{letter-spacing:0.576000px;}
.ls12{letter-spacing:0.720000px;}
.ls10{letter-spacing:13.680000px;}
.ls18{letter-spacing:39.881280px;}
.ls17{letter-spacing:39.905280px;}
.ls11{letter-spacing:53.280000px;}
.ls14{letter-spacing:59.321280px;}
.lsc{letter-spacing:59.345280px;}
.ls5{letter-spacing:199.416000px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.ws8{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.wsd{word-spacing:-17.017800px;}
.wsc{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.wsb{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._4b{margin-left:-11.694960px;}
._3c{margin-left:-6.947520px;}
._2{margin-left:-2.302560px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._4{width:2.954160px;}
._3{width:4.239360px;}
._6{width:6.129360px;}
._5{width:7.153920px;}
._13{width:8.210160px;}
._12{width:10.062480px;}
._1a{width:11.308320px;}
._d{width:12.519360px;}
._1c{width:14.307840px;}
._7{width:15.469200px;}
._35{width:18.679680px;}
._36{width:19.872000px;}
._49{width:21.033360px;}
._28{width:22.307040px;}
._f{width:23.382720px;}
._10{width:24.641280px;}
._14{width:25.833600px;}
._19{width:27.030240px;}
._c{width:28.319760px;}
._e{width:29.476800px;}
._8{width:31.000320px;}
._9{width:32.060160px;}
._a{width:33.119520px;}
._2e{width:34.312320px;}
._2f{width:35.420160px;}
._2c{width:36.732240px;}
._17{width:38.220480px;}
._18{width:39.448080px;}
._44{width:40.649040px;}
._4f{width:42.459840px;}
._45{width:43.519680px;}
._34{width:44.778240px;}
._29{width:46.301760px;}
._3b{width:47.462400px;}
._16{width:48.620160px;}
._4d{width:49.894560px;}
._42{width:52.704720px;}
._11{width:53.919360px;}
._31{width:56.347920px;}
._2a{width:59.296080px;}
._2d{width:60.598320px;}
._37{width:62.729280px;}
._20{width:64.120320px;}
._4c{width:65.180880px;}
._33{width:67.052880px;}
._21{width:68.624640px;}
._22{width:69.883200px;}
._38{width:71.671680px;}
._39{width:72.883440px;}
._24{width:75.564720px;}
._23{width:76.955040px;}
._48{width:78.097680px;}
._40{width:81.276480px;}
._32{width:82.769040px;}
._4e{width:86.310720px;}
._4a{width:87.708960px;}
._50{width:92.071200px;}
._27{width:93.126720px;}
._3f{width:94.259520px;}
._43{width:96.330960px;}
._1b{width:99.525600px;}
._25{width:103.135680px;}
._26{width:104.245920px;}
._3e{width:119.732400px;}
._3d{width:120.918720px;}
._41{width:123.826560px;}
._46{width:137.339520px;}
._47{width:138.889440px;}
._51{width:141.855120px;}
._30{width:143.429760px;}
._2b{width:151.678560px;}
._1f{width:152.893440px;}
._53{width:166.129920px;}
._54{width:167.556240px;}
._15{width:175.530000px;}
._3a{width:185.637360px;}
._1d{width:189.617520px;}
._1e{width:197.647200px;}
._b{width:199.416000px;}
._52{width:452.551680px;}
._55{width:492.891840px;}
._56{width:847.596000px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs9{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.ydf{bottom:3.600000px;}
.yd9{bottom:3.780000px;}
.y82{bottom:3.945000px;}
.y40{bottom:3.960000px;}
.y84{bottom:4.125000px;}
.y42{bottom:4.140000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.y44{bottom:13.500000px;}
.yd6{bottom:22.680000px;}
.yde{bottom:22.725000px;}
.yf1{bottom:22.860000px;}
.y86{bottom:23.025000px;}
.y45{bottom:23.040000px;}
.yf7{bottom:23.070000px;}
.ye0{bottom:23.085000px;}
.y15{bottom:26.460000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.ydb{bottom:41.580000px;}
.yfc{bottom:41.925000px;}
.ydc{bottom:41.940000px;}
.yff{bottom:42.105000px;}
.y10f{bottom:42.120000px;}
.yf6{bottom:42.150000px;}
.y11b{bottom:42.480000px;}
.y14{bottom:47.880000px;}
.y1{bottom:51.480000px;}
.y116{bottom:51.870000px;}
.y10c{bottom:52.200000px;}
.yfe{bottom:60.645000px;}
.yf0{bottom:60.840000px;}
.yfb{bottom:61.005000px;}
.yf5{bottom:61.050000px;}
.y11a{bottom:61.380000px;}
.y13{bottom:70.380000px;}
.y10b{bottom:71.280000px;}
.y3d{bottom:75.240000px;}
.yf9{bottom:79.545000px;}
.yee{bottom:79.560000px;}
.yf3{bottom:79.590000px;}
.yfa{bottom:79.905000px;}
.yef{bottom:79.920000px;}
.yf4{bottom:79.950000px;}
.y106{bottom:114.120000px;}
.yb4{bottom:115.920000px;}
.y12e{bottom:129.960000px;}
.y161{bottom:130.500000px;}
.y13a{bottom:131.220000px;}
.y184{bottom:134.100000px;}
.y3a{bottom:135.000000px;}
.y104{bottom:138.780000px;}
.yb3{bottom:140.580000px;}
.y89{bottom:149.580000px;}
.y12d{bottom:154.800000px;}
.y160{bottom:155.160000px;}
.y139{bottom:155.880000px;}
.y183{bottom:158.760000px;}
.y39{bottom:159.660000px;}
.yd0{bottom:160.560000px;}
.y103{bottom:163.440000px;}
.yb2{bottom:165.240000px;}
.y88{bottom:174.960000px;}
.y15f{bottom:179.820000px;}
.y12c{bottom:180.540000px;}
.y182{bottom:183.420000px;}
.y38{bottom:184.320000px;}
.ycf{bottom:185.220000px;}
.y102{bottom:188.100000px;}
.yb1{bottom:189.900000px;}
.y87{bottom:190.800000px;}
.y15e{bottom:204.480000px;}
.y12b{bottom:205.200000px;}
.y181{bottom:208.110000px;}
.y36{bottom:209.370000px;}
.yce{bottom:209.910000px;}
.y85{bottom:210.465000px;}
.y105{bottom:212.430000px;}
.y101{bottom:212.790000px;}
.yb0{bottom:214.590000px;}
.y15d{bottom:229.170000px;}
.y138{bottom:229.890000px;}
.y12a{bottom:230.970000px;}
.y180{bottom:232.770000px;}
.y35{bottom:234.030000px;}
.ycd{bottom:234.570000px;}
.y100{bottom:237.450000px;}
.yaf{bottom:239.250000px;}
.y83{bottom:249.165000px;}
.yfd{bottom:253.125000px;}
.y15c{bottom:254.010000px;}
.y137{bottom:254.550000px;}
.y129{bottom:255.810000px;}
.y17f{bottom:257.430000px;}
.y34{bottom:258.690000px;}
.ycc{bottom:259.230000px;}
.yae{bottom:263.910000px;}
.y81{bottom:268.965000px;}
.y15b{bottom:278.670000px;}
.y136{bottom:279.210000px;}
.y128{bottom:281.550000px;}
.y17e{bottom:282.090000px;}
.y33{bottom:283.350000px;}
.ycb{bottom:283.890000px;}
.yad{bottom:288.570000px;}
.y80{bottom:297.930000px;}
.y15a{bottom:303.330000px;}
.y135{bottom:303.870000px;}
.y127{bottom:306.210000px;}
.y17d{bottom:306.750000px;}
.y32{bottom:308.010000px;}
.yca{bottom:308.550000px;}
.yac{bottom:313.230000px;}
.y7f{bottom:322.950000px;}
.y64{bottom:326.550000px;}
.y159{bottom:327.990000px;}
.y134{bottom:328.530000px;}
.yf8{bottom:329.805000px;}
.y126{bottom:330.870000px;}
.y17c{bottom:331.410000px;}
.y31{bottom:332.670000px;}
.yc9{bottom:333.210000px;}
.yab{bottom:337.890000px;}
.y7e{bottom:347.610000px;}
.y63{bottom:351.210000px;}
.y158{bottom:352.650000px;}
.y133{bottom:353.190000px;}
.y125{bottom:355.530000px;}
.y17b{bottom:356.070000px;}
.y30{bottom:357.330000px;}
.yc8{bottom:358.950000px;}
.yaa{bottom:362.550000px;}
.y7d{bottom:372.270000px;}
.y62{bottom:375.870000px;}
.y157{bottom:377.310000px;}
.y132{bottom:377.850000px;}
.y124{bottom:379.830000px;}
.y17a{bottom:380.730000px;}
.y2f{bottom:381.990000px;}
.yc7{bottom:383.610000px;}
.ya9{bottom:387.210000px;}
.y7c{bottom:396.930000px;}
.y61{bottom:400.530000px;}
.y156{bottom:401.970000px;}
.y131{bottom:403.590000px;}
.y123{bottom:404.490000px;}
.y179{bottom:405.390000px;}
.y2e{bottom:406.830000px;}
.yc6{bottom:408.450000px;}
.ya8{bottom:411.870000px;}
.y7b{bottom:421.770000px;}
.y60{bottom:425.190000px;}
.yf2{bottom:425.385000px;}
.y155{bottom:426.630000px;}
.y130{bottom:428.250000px;}
.y122{bottom:429.510000px;}
.y178{bottom:430.050000px;}
.y2d{bottom:431.490000px;}
.yc5{bottom:434.190000px;}
.ya7{bottom:436.530000px;}
.y7a{bottom:446.475000px;}
.y5f{bottom:449.895000px;}
.y154{bottom:451.335000px;}
.y12f{bottom:453.135000px;}
.y121{bottom:454.215000px;}
.y177{bottom:454.755000px;}
.y2c{bottom:456.195000px;}
.yc4{bottom:458.895000px;}
.ya6{bottom:461.235000px;}
.y79{bottom:471.135000px;}
.y5e{bottom:474.555000px;}
.y153{bottom:475.995000px;}
.y120{bottom:478.875000px;}
.y176{bottom:479.595000px;}
.y2b{bottom:480.855000px;}
.yc3{bottom:483.735000px;}
.ya5{bottom:485.895000px;}
.y78{bottom:495.795000px;}
.y5d{bottom:499.215000px;}
.y152{bottom:500.295000px;}
.y11f{bottom:503.535000px;}
.y175{bottom:504.255000px;}
.y2a{bottom:505.515000px;}
.yc2{bottom:509.475000px;}
.ya4{bottom:510.555000px;}
.y77{bottom:520.455000px;}
.yed{bottom:521.175000px;}
.y5c{bottom:523.875000px;}
.y151{bottom:524.955000px;}
.y11e{bottom:528.195000px;}
.y174{bottom:528.915000px;}
.y29{bottom:530.175000px;}
.yc1{bottom:534.135000px;}
.ya3{bottom:535.215000px;}
.y119{bottom:543.855000px;}
.y76{bottom:545.115000px;}
.y5b{bottom:548.535000px;}
.y150{bottom:549.975000px;}
.y173{bottom:553.575000px;}
.y28{bottom:554.835000px;}
.yc0{bottom:558.795000px;}
.ya2{bottom:559.875000px;}
.y75{bottom:569.775000px;}
.y5a{bottom:573.195000px;}
.y14f{bottom:574.635000px;}
.y172{bottom:578.235000px;}
.y27{bottom:579.495000px;}
.y11d{bottom:582.555000px;}
.ybf{bottom:583.455000px;}
.ya1{bottom:584.535000px;}
.y74{bottom:594.435000px;}
.y59{bottom:597.855000px;}
.y14e{bottom:599.295000px;}
.y171{bottom:602.895000px;}
.y26{bottom:604.155000px;}
.ybe{bottom:608.115000px;}
.ya0{bottom:609.195000px;}
.yec{bottom:616.755000px;}
.y73{bottom:619.095000px;}
.y11c{bottom:621.255000px;}
.y58{bottom:622.515000px;}
.y14d{bottom:623.955000px;}
.y170{bottom:627.555000px;}
.y25{bottom:628.455000px;}
.y37{bottom:628.815000px;}
.ybd{bottom:632.775000px;}
.y9f{bottom:633.855000px;}
.y72{bottom:643.755000px;}
.yeb{bottom:645.735000px;}
.y57{bottom:647.355000px;}
.y14c{bottom:648.615000px;}
.y16f{bottom:652.215000px;}
.y24{bottom:653.115000px;}
.ybc{bottom:657.435000px;}
.y9e{bottom:658.515000px;}
.y115{bottom:659.955000px;}
.y71{bottom:668.415000px;}
.yea{bottom:670.755000px;}
.y56{bottom:672.015000px;}
.y14b{bottom:673.275000px;}
.y16e{bottom:676.905000px;}
.y23{bottom:677.265000px;}
.ybb{bottom:682.125000px;}
.y9d{bottom:683.385000px;}
.y70{bottom:693.105000px;}
.ye8{bottom:695.445000px;}
.y55{bottom:696.705000px;}
.y14a{bottom:698.145000px;}
.y118{bottom:698.685000px;}
.y22{bottom:699.045000px;}
.y16d{bottom:701.565000px;}
.yba{bottom:706.965000px;}
.y9c{bottom:709.125000px;}
.y6f{bottom:717.765000px;}
.ye7{bottom:720.105000px;}
.y54{bottom:721.365000px;}
.y149{bottom:723.885000px;}
.y21{bottom:725.685000px;}
.y16c{bottom:726.225000px;}
.yb9{bottom:732.705000px;}
.y9b{bottom:733.785000px;}
.y117{bottom:737.385000px;}
.y6e{bottom:742.425000px;}
.ye6{bottom:744.945000px;}
.y53{bottom:746.025000px;}
.y20{bottom:747.465000px;}
.y148{bottom:748.545000px;}
.y16b{bottom:750.885000px;}
.y9a{bottom:758.625000px;}
.y6d{bottom:767.265000px;}
.y1f{bottom:769.245000px;}
.ye5{bottom:769.605000px;}
.y52{bottom:770.325000px;}
.y147{bottom:773.205000px;}
.y16a{bottom:775.545000px;}
.y111{bottom:776.085000px;}
.y99{bottom:784.365000px;}
.y1e{bottom:791.205000px;}
.y6c{bottom:793.005000px;}
.ye9{bottom:793.905000px;}
.ye4{bottom:794.265000px;}
.y51{bottom:794.985000px;}
.y146{bottom:797.865000px;}
.y169{bottom:800.205000px;}
.y98{bottom:809.025000px;}
.yb8{bottom:810.285000px;}
.y1d{bottom:812.985000px;}
.y114{bottom:814.785000px;}
.y6b{bottom:817.665000px;}
.ye3{bottom:818.925000px;}
.y50{bottom:819.645000px;}
.y145{bottom:822.165000px;}
.y168{bottom:824.865000px;}
.y97{bottom:833.685000px;}
.y1c{bottom:834.765000px;}
.yb7{bottom:836.025000px;}
.y6a{bottom:842.325000px;}
.ye2{bottom:843.585000px;}
.y4f{bottom:844.665000px;}
.y144{bottom:848.265000px;}
.y167{bottom:849.525000px;}
.y113{bottom:853.485000px;}
.y1b{bottom:856.545000px;}
.ye1{bottom:859.245000px;}
.y96{bottom:859.425000px;}
.yb6{bottom:860.685000px;}
.y69{bottom:866.985000px;}
.y4e{bottom:869.325000px;}
.y143{bottom:872.925000px;}
.y166{bottom:874.185000px;}
.y1a{bottom:878.505000px;}
.y95{bottom:884.265000px;}
.yb5{bottom:885.345000px;}
.y112{bottom:892.185000px;}
.y68{bottom:892.725000px;}
.y4d{bottom:893.985000px;}
.y142{bottom:897.585000px;}
.ydd{bottom:897.945000px;}
.y165{bottom:898.485000px;}
.y19{bottom:899.925000px;}
.y94{bottom:910.005000px;}
.y17{bottom:915.270000px;}
.y67{bottom:917.430000px;}
.y4c{bottom:918.690000px;}
.y12{bottom:922.470000px;}
.y164{bottom:923.190000px;}
.y185{bottom:923.550000px;}
.y16{bottom:926.396347px;}
.y10a{bottom:930.930000px;}
.y93{bottom:934.710000px;}
.yda{bottom:936.690000px;}
.y66{bottom:942.090000px;}
.y4b{bottom:943.350000px;}
.y141{bottom:948.210000px;}
.y110{bottom:950.730000px;}
.y92{bottom:959.370000px;}
.y65{bottom:966.930000px;}
.y4a{bottom:968.010000px;}
.y10e{bottom:970.350000px;}
.y140{bottom:972.870000px;}
.y91{bottom:984.030000px;}
.y49{bottom:992.670000px;}
.yd8{bottom:994.290000px;}
.y13f{bottom:997.530000px;}
.y90{bottom:1008.690000px;}
.yd7{bottom:1014.090000px;}
.y48{bottom:1017.330000px;}
.y10{bottom:1018.590000px;}
.y13e{bottom:1021.830000px;}
.y163{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.y10d{bottom:1028.130000px;}
.y8f{bottom:1033.350000px;}
.y47{bottom:1041.990000px;}
.y13d{bottom:1046.490000px;}
.y162{bottom:1046.850000px;}
.yd5{bottom:1052.790000px;}
.y8e{bottom:1058.010000px;}
.y46{bottom:1066.650000px;}
.y109{bottom:1066.830000px;}
.y13c{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y43{bottom:1082.310000px;}
.y8d{bottom:1082.670000px;}
.yd4{bottom:1091.490000px;}
.y108{bottom:1095.810000px;}
.y13b{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y8c{bottom:1106.970000px;}
.yd3{bottom:1120.470000px;}
.y107{bottom:1120.830000px;}
.y41{bottom:1121.010000px;}
.y7{bottom:1128.570000px;}
.y8b{bottom:1131.630000px;}
.y3f{bottom:1140.810000px;}
.yd2{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y8a{bottom:1169.460000px;}
.y3e{bottom:1169.820000px;}
.yd1{bottom:1170.180000px;}
.y3c{bottom:1187.280000px;}
.y3b{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.185000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h22{height:18.885000px;}
.h1d{height:18.930000px;}
.h23{height:18.936000px;}
.h11{height:19.008000px;}
.h1e{height:19.065000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1b{height:30.480469px;}
.h2d{height:37.785000px;}
.h1f{height:37.965000px;}
.h28{height:37.980000px;}
.h27{height:38.002500px;}
.h31{height:38.010000px;}
.h21{height:46.251562px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h26{height:56.865000px;}
.h2e{height:57.045000px;}
.h1c{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h18{height:64.978594px;}
.h19{height:65.010937px;}
.h24{height:65.884219px;}
.h1a{height:66.757500px;}
.h14{height:67.803750px;}
.h20{height:68.084282px;}
.h25{height:71.225156px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h2b{height:75.945000px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h29{height:94.845000px;}
.h2a{height:94.881000px;}
.h12{height:96.105000px;}
.h3{height:103.530000px;}
.h32{height:115.365000px;}
.h30{height:115.410000px;}
.h2c{height:134.985000px;}
.h2f{height:154.095000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:68.029500px;}
.w8{width:74.865000px;}
.wc{width:107.121000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w16{width:124.740000px;}
.wf{width:126.169500px;}
.w15{width:166.339500px;}
.w12{width:193.699500px;}
.we{width:194.955000px;}
.w9{width:228.660000px;}
.w13{width:231.330000px;}
.w10{width:258.540000px;}
.w14{width:266.100000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.wa{width:282.615000px;}
.wd{width:301.710000px;}
.w11{width:306.240000px;}
.w17{width:400.065000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.089500px;}
.x5{left:10.965000px;}
.x13{left:12.949500px;}
.x10{left:20.685000px;}
.x20{left:23.205000px;}
.x1c{left:25.185000px;}
.x38{left:32.209500px;}
.xb{left:34.185000px;}
.x39{left:37.789500px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x1e{left:59.430000px;}
.x2{left:60.841500px;}
.x16{left:63.343500px;}
.x32{left:69.283500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.x34{left:92.190000px;}
.xd{left:95.925000px;}
.x30{left:100.306500px;}
.x14{left:105.283500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x27{left:113.806500px;}
.x3a{left:123.516000px;}
.x21{left:125.985000px;}
.x2b{left:135.036000px;}
.x2c{left:140.076000px;}
.x3b{left:150.510000px;}
.x1b{left:152.505000px;}
.x35{left:155.910000px;}
.x17{left:160.228500px;}
.x22{left:162.030000px;}
.x4{left:168.885000px;}
.x26{left:171.210000px;}
.x28{left:182.745000px;}
.x2f{left:207.750000px;}
.x6{left:209.010000px;}
.x15{left:214.048500px;}
.x1d{left:228.285000px;}
.x36{left:267.375000px;}
.x29{left:290.775000px;}
.x33{left:294.735000px;}
.x18{left:324.965515px;}
.x12{left:335.578500px;}
.x37{left:392.835000px;}
.xa{left:445.620000px;}
.x1f{left:457.860000px;}
.x1a{left:473.505000px;}
.x23{left:478.545000px;}
.x31{left:486.660000px;}
.x2d{left:488.985000px;}
.x24{left:505.545000px;}
.x2e{left:515.985000px;}
.x25{left:527.505000px;}
.x2a{left:593.220000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.368533pt;}
.lsf{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.101333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.030720pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.ls13{letter-spacing:0.097067pt;}
.lsb{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.lse{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.406933pt;}
.ls3{letter-spacing:0.512000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls10{letter-spacing:12.160000pt;}
.ls18{letter-spacing:35.450027pt;}
.ls17{letter-spacing:35.471360pt;}
.ls11{letter-spacing:47.360000pt;}
.ls14{letter-spacing:52.730027pt;}
.lsc{letter-spacing:52.751360pt;}
.ls5{letter-spacing:177.258667pt;}
.wsa{word-spacing:-58.880000pt;}
.ws8{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.wsd{word-spacing:-15.126933pt;}
.wsc{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.wsb{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._4b{margin-left:-10.395520pt;}
._3c{margin-left:-6.175573pt;}
._2{margin-left:-2.046720pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._4{width:2.625920pt;}
._3{width:3.768320pt;}
._6{width:5.448320pt;}
._5{width:6.359040pt;}
._13{width:7.297920pt;}
._12{width:8.944427pt;}
._1a{width:10.051840pt;}
._d{width:11.128320pt;}
._1c{width:12.718080pt;}
._7{width:13.750400pt;}
._35{width:16.604160pt;}
._36{width:17.664000pt;}
._49{width:18.696320pt;}
._28{width:19.828480pt;}
._f{width:20.784640pt;}
._10{width:21.903360pt;}
._14{width:22.963200pt;}
._19{width:24.026880pt;}
._c{width:25.173120pt;}
._e{width:26.201600pt;}
._8{width:27.555840pt;}
._9{width:28.497920pt;}
._a{width:29.439573pt;}
._2e{width:30.499840pt;}
._2f{width:31.484587pt;}
._2c{width:32.650880pt;}
._17{width:33.973760pt;}
._18{width:35.064960pt;}
._44{width:36.132480pt;}
._4f{width:37.742080pt;}
._45{width:38.684160pt;}
._34{width:39.802880pt;}
._29{width:41.157120pt;}
._3b{width:42.188800pt;}
._16{width:43.217920pt;}
._4d{width:44.350720pt;}
._42{width:46.848640pt;}
._11{width:47.928320pt;}
._31{width:50.087040pt;}
._2a{width:52.707627pt;}
._2d{width:53.865173pt;}
._37{width:55.759360pt;}
._20{width:56.995840pt;}
._4c{width:57.938560pt;}
._33{width:59.602560pt;}
._21{width:60.999680pt;}
._22{width:62.118400pt;}
._38{width:63.708160pt;}
._39{width:64.785280pt;}
._24{width:67.168640pt;}
._23{width:68.404480pt;}
._48{width:69.420160pt;}
._40{width:72.245760pt;}
._32{width:73.572480pt;}
._4e{width:76.720640pt;}
._4a{width:77.963520pt;}
._50{width:81.841067pt;}
._27{width:82.779307pt;}
._3f{width:83.786240pt;}
._43{width:85.627520pt;}
._1b{width:88.467200pt;}
._25{width:91.676160pt;}
._26{width:92.663040pt;}
._3e{width:106.428800pt;}
._3d{width:107.483307pt;}
._41{width:110.068053pt;}
._46{width:122.079573pt;}
._47{width:123.457280pt;}
._51{width:126.093440pt;}
._30{width:127.493120pt;}
._2b{width:134.825387pt;}
._1f{width:135.905280pt;}
._53{width:147.671040pt;}
._54{width:148.938880pt;}
._15{width:156.026667pt;}
._3a{width:165.010987pt;}
._1d{width:168.548907pt;}
._1e{width:175.686400pt;}
._b{width:177.258667pt;}
._52{width:402.268160pt;}
._55{width:438.126080pt;}
._56{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.ydf{bottom:3.200000pt;}
.yd9{bottom:3.360000pt;}
.y82{bottom:3.506667pt;}
.y40{bottom:3.520000pt;}
.y84{bottom:3.666667pt;}
.y42{bottom:3.680000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.y44{bottom:12.000000pt;}
.yd6{bottom:20.160000pt;}
.yde{bottom:20.200000pt;}
.yf1{bottom:20.320000pt;}
.y86{bottom:20.466667pt;}
.y45{bottom:20.480000pt;}
.yf7{bottom:20.506667pt;}
.ye0{bottom:20.520000pt;}
.y15{bottom:23.520000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.ydb{bottom:36.960000pt;}
.yfc{bottom:37.266667pt;}
.ydc{bottom:37.280000pt;}
.yff{bottom:37.426667pt;}
.y10f{bottom:37.440000pt;}
.yf6{bottom:37.466667pt;}
.y11b{bottom:37.760000pt;}
.y14{bottom:42.560000pt;}
.y1{bottom:45.760000pt;}
.y116{bottom:46.106667pt;}
.y10c{bottom:46.400000pt;}
.yfe{bottom:53.906667pt;}
.yf0{bottom:54.080000pt;}
.yfb{bottom:54.226667pt;}
.yf5{bottom:54.266667pt;}
.y11a{bottom:54.560000pt;}
.y13{bottom:62.560000pt;}
.y10b{bottom:63.360000pt;}
.y3d{bottom:66.880000pt;}
.yf9{bottom:70.706667pt;}
.yee{bottom:70.720000pt;}
.yf3{bottom:70.746667pt;}
.yfa{bottom:71.026667pt;}
.yef{bottom:71.040000pt;}
.yf4{bottom:71.066667pt;}
.y106{bottom:101.440000pt;}
.yb4{bottom:103.040000pt;}
.y12e{bottom:115.520000pt;}
.y161{bottom:116.000000pt;}
.y13a{bottom:116.640000pt;}
.y184{bottom:119.200000pt;}
.y3a{bottom:120.000000pt;}
.y104{bottom:123.360000pt;}
.yb3{bottom:124.960000pt;}
.y89{bottom:132.960000pt;}
.y12d{bottom:137.600000pt;}
.y160{bottom:137.920000pt;}
.y139{bottom:138.560000pt;}
.y183{bottom:141.120000pt;}
.y39{bottom:141.920000pt;}
.yd0{bottom:142.720000pt;}
.y103{bottom:145.280000pt;}
.yb2{bottom:146.880000pt;}
.y88{bottom:155.520000pt;}
.y15f{bottom:159.840000pt;}
.y12c{bottom:160.480000pt;}
.y182{bottom:163.040000pt;}
.y38{bottom:163.840000pt;}
.ycf{bottom:164.640000pt;}
.y102{bottom:167.200000pt;}
.yb1{bottom:168.800000pt;}
.y87{bottom:169.600000pt;}
.y15e{bottom:181.760000pt;}
.y12b{bottom:182.400000pt;}
.y181{bottom:184.986667pt;}
.y36{bottom:186.106667pt;}
.yce{bottom:186.586667pt;}
.y85{bottom:187.080000pt;}
.y105{bottom:188.826667pt;}
.y101{bottom:189.146667pt;}
.yb0{bottom:190.746667pt;}
.y15d{bottom:203.706667pt;}
.y138{bottom:204.346667pt;}
.y12a{bottom:205.306667pt;}
.y180{bottom:206.906667pt;}
.y35{bottom:208.026667pt;}
.ycd{bottom:208.506667pt;}
.y100{bottom:211.066667pt;}
.yaf{bottom:212.666667pt;}
.y83{bottom:221.480000pt;}
.yfd{bottom:225.000000pt;}
.y15c{bottom:225.786667pt;}
.y137{bottom:226.266667pt;}
.y129{bottom:227.386667pt;}
.y17f{bottom:228.826667pt;}
.y34{bottom:229.946667pt;}
.ycc{bottom:230.426667pt;}
.yae{bottom:234.586667pt;}
.y81{bottom:239.080000pt;}
.y15b{bottom:247.706667pt;}
.y136{bottom:248.186667pt;}
.y128{bottom:250.266667pt;}
.y17e{bottom:250.746667pt;}
.y33{bottom:251.866667pt;}
.ycb{bottom:252.346667pt;}
.yad{bottom:256.506667pt;}
.y80{bottom:264.826667pt;}
.y15a{bottom:269.626667pt;}
.y135{bottom:270.106667pt;}
.y127{bottom:272.186667pt;}
.y17d{bottom:272.666667pt;}
.y32{bottom:273.786667pt;}
.yca{bottom:274.266667pt;}
.yac{bottom:278.426667pt;}
.y7f{bottom:287.066667pt;}
.y64{bottom:290.266667pt;}
.y159{bottom:291.546667pt;}
.y134{bottom:292.026667pt;}
.yf8{bottom:293.160000pt;}
.y126{bottom:294.106667pt;}
.y17c{bottom:294.586667pt;}
.y31{bottom:295.706667pt;}
.yc9{bottom:296.186667pt;}
.yab{bottom:300.346667pt;}
.y7e{bottom:308.986667pt;}
.y63{bottom:312.186667pt;}
.y158{bottom:313.466667pt;}
.y133{bottom:313.946667pt;}
.y125{bottom:316.026667pt;}
.y17b{bottom:316.506667pt;}
.y30{bottom:317.626667pt;}
.yc8{bottom:319.066667pt;}
.yaa{bottom:322.266667pt;}
.y7d{bottom:330.906667pt;}
.y62{bottom:334.106667pt;}
.y157{bottom:335.386667pt;}
.y132{bottom:335.866667pt;}
.y124{bottom:337.626667pt;}
.y17a{bottom:338.426667pt;}
.y2f{bottom:339.546667pt;}
.yc7{bottom:340.986667pt;}
.ya9{bottom:344.186667pt;}
.y7c{bottom:352.826667pt;}
.y61{bottom:356.026667pt;}
.y156{bottom:357.306667pt;}
.y131{bottom:358.746667pt;}
.y123{bottom:359.546667pt;}
.y179{bottom:360.346667pt;}
.y2e{bottom:361.626667pt;}
.yc6{bottom:363.066667pt;}
.ya8{bottom:366.106667pt;}
.y7b{bottom:374.906667pt;}
.y60{bottom:377.946667pt;}
.yf2{bottom:378.120000pt;}
.y155{bottom:379.226667pt;}
.y130{bottom:380.666667pt;}
.y122{bottom:381.786667pt;}
.y178{bottom:382.266667pt;}
.y2d{bottom:383.546667pt;}
.yc5{bottom:385.946667pt;}
.ya7{bottom:388.026667pt;}
.y7a{bottom:396.866667pt;}
.y5f{bottom:399.906667pt;}
.y154{bottom:401.186667pt;}
.y12f{bottom:402.786667pt;}
.y121{bottom:403.746667pt;}
.y177{bottom:404.226667pt;}
.y2c{bottom:405.506667pt;}
.yc4{bottom:407.906667pt;}
.ya6{bottom:409.986667pt;}
.y79{bottom:418.786667pt;}
.y5e{bottom:421.826667pt;}
.y153{bottom:423.106667pt;}
.y120{bottom:425.666667pt;}
.y176{bottom:426.306667pt;}
.y2b{bottom:427.426667pt;}
.yc3{bottom:429.986667pt;}
.ya5{bottom:431.906667pt;}
.y78{bottom:440.706667pt;}
.y5d{bottom:443.746667pt;}
.y152{bottom:444.706667pt;}
.y11f{bottom:447.586667pt;}
.y175{bottom:448.226667pt;}
.y2a{bottom:449.346667pt;}
.yc2{bottom:452.866667pt;}
.ya4{bottom:453.826667pt;}
.y77{bottom:462.626667pt;}
.yed{bottom:463.266667pt;}
.y5c{bottom:465.666667pt;}
.y151{bottom:466.626667pt;}
.y11e{bottom:469.506667pt;}
.y174{bottom:470.146667pt;}
.y29{bottom:471.266667pt;}
.yc1{bottom:474.786667pt;}
.ya3{bottom:475.746667pt;}
.y119{bottom:483.426667pt;}
.y76{bottom:484.546667pt;}
.y5b{bottom:487.586667pt;}
.y150{bottom:488.866667pt;}
.y173{bottom:492.066667pt;}
.y28{bottom:493.186667pt;}
.yc0{bottom:496.706667pt;}
.ya2{bottom:497.666667pt;}
.y75{bottom:506.466667pt;}
.y5a{bottom:509.506667pt;}
.y14f{bottom:510.786667pt;}
.y172{bottom:513.986667pt;}
.y27{bottom:515.106667pt;}
.y11d{bottom:517.826667pt;}
.ybf{bottom:518.626667pt;}
.ya1{bottom:519.586667pt;}
.y74{bottom:528.386667pt;}
.y59{bottom:531.426667pt;}
.y14e{bottom:532.706667pt;}
.y171{bottom:535.906667pt;}
.y26{bottom:537.026667pt;}
.ybe{bottom:540.546667pt;}
.ya0{bottom:541.506667pt;}
.yec{bottom:548.226667pt;}
.y73{bottom:550.306667pt;}
.y11c{bottom:552.226667pt;}
.y58{bottom:553.346667pt;}
.y14d{bottom:554.626667pt;}
.y170{bottom:557.826667pt;}
.y25{bottom:558.626667pt;}
.y37{bottom:558.946667pt;}
.ybd{bottom:562.466667pt;}
.y9f{bottom:563.426667pt;}
.y72{bottom:572.226667pt;}
.yeb{bottom:573.986667pt;}
.y57{bottom:575.426667pt;}
.y14c{bottom:576.546667pt;}
.y16f{bottom:579.746667pt;}
.y24{bottom:580.546667pt;}
.ybc{bottom:584.386667pt;}
.y9e{bottom:585.346667pt;}
.y115{bottom:586.626667pt;}
.y71{bottom:594.146667pt;}
.yea{bottom:596.226667pt;}
.y56{bottom:597.346667pt;}
.y14b{bottom:598.466667pt;}
.y16e{bottom:601.693333pt;}
.y23{bottom:602.013333pt;}
.ybb{bottom:606.333333pt;}
.y9d{bottom:607.453333pt;}
.y70{bottom:616.093333pt;}
.ye8{bottom:618.173333pt;}
.y55{bottom:619.293333pt;}
.y14a{bottom:620.573333pt;}
.y118{bottom:621.053333pt;}
.y22{bottom:621.373333pt;}
.y16d{bottom:623.613333pt;}
.yba{bottom:628.413333pt;}
.y9c{bottom:630.333333pt;}
.y6f{bottom:638.013333pt;}
.ye7{bottom:640.093333pt;}
.y54{bottom:641.213333pt;}
.y149{bottom:643.453333pt;}
.y21{bottom:645.053333pt;}
.y16c{bottom:645.533333pt;}
.yb9{bottom:651.293333pt;}
.y9b{bottom:652.253333pt;}
.y117{bottom:655.453333pt;}
.y6e{bottom:659.933333pt;}
.ye6{bottom:662.173333pt;}
.y53{bottom:663.133333pt;}
.y20{bottom:664.413333pt;}
.y148{bottom:665.373333pt;}
.y16b{bottom:667.453333pt;}
.y9a{bottom:674.333333pt;}
.y6d{bottom:682.013333pt;}
.y1f{bottom:683.773333pt;}
.ye5{bottom:684.093333pt;}
.y52{bottom:684.733333pt;}
.y147{bottom:687.293333pt;}
.y16a{bottom:689.373333pt;}
.y111{bottom:689.853333pt;}
.y99{bottom:697.213333pt;}
.y1e{bottom:703.293333pt;}
.y6c{bottom:704.893333pt;}
.ye9{bottom:705.693333pt;}
.ye4{bottom:706.013333pt;}
.y51{bottom:706.653333pt;}
.y146{bottom:709.213333pt;}
.y169{bottom:711.293333pt;}
.y98{bottom:719.133333pt;}
.yb8{bottom:720.253333pt;}
.y1d{bottom:722.653333pt;}
.y114{bottom:724.253333pt;}
.y6b{bottom:726.813333pt;}
.ye3{bottom:727.933333pt;}
.y50{bottom:728.573333pt;}
.y145{bottom:730.813333pt;}
.y168{bottom:733.213333pt;}
.y97{bottom:741.053333pt;}
.y1c{bottom:742.013333pt;}
.yb7{bottom:743.133333pt;}
.y6a{bottom:748.733333pt;}
.ye2{bottom:749.853333pt;}
.y4f{bottom:750.813333pt;}
.y144{bottom:754.013333pt;}
.y167{bottom:755.133333pt;}
.y113{bottom:758.653333pt;}
.y1b{bottom:761.373333pt;}
.ye1{bottom:763.773333pt;}
.y96{bottom:763.933333pt;}
.yb6{bottom:765.053333pt;}
.y69{bottom:770.653333pt;}
.y4e{bottom:772.733333pt;}
.y143{bottom:775.933333pt;}
.y166{bottom:777.053333pt;}
.y1a{bottom:780.893333pt;}
.y95{bottom:786.013333pt;}
.yb5{bottom:786.973333pt;}
.y112{bottom:793.053333pt;}
.y68{bottom:793.533333pt;}
.y4d{bottom:794.653333pt;}
.y142{bottom:797.853333pt;}
.ydd{bottom:798.173333pt;}
.y165{bottom:798.653333pt;}
.y19{bottom:799.933333pt;}
.y94{bottom:808.893333pt;}
.y17{bottom:813.573333pt;}
.y67{bottom:815.493333pt;}
.y4c{bottom:816.613333pt;}
.y12{bottom:819.973333pt;}
.y164{bottom:820.613333pt;}
.y185{bottom:820.933333pt;}
.y16{bottom:823.463420pt;}
.y10a{bottom:827.493333pt;}
.y93{bottom:830.853333pt;}
.yda{bottom:832.613333pt;}
.y66{bottom:837.413333pt;}
.y4b{bottom:838.533333pt;}
.y141{bottom:842.853333pt;}
.y110{bottom:845.093333pt;}
.y92{bottom:852.773333pt;}
.y65{bottom:859.493333pt;}
.y4a{bottom:860.453333pt;}
.y10e{bottom:862.533333pt;}
.y140{bottom:864.773333pt;}
.y91{bottom:874.693333pt;}
.y49{bottom:882.373333pt;}
.yd8{bottom:883.813333pt;}
.y13f{bottom:886.693333pt;}
.y90{bottom:896.613333pt;}
.yd7{bottom:901.413333pt;}
.y48{bottom:904.293333pt;}
.y10{bottom:905.413333pt;}
.y13e{bottom:908.293333pt;}
.y163{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.y10d{bottom:913.893333pt;}
.y8f{bottom:918.533333pt;}
.y47{bottom:926.213333pt;}
.y13d{bottom:930.213333pt;}
.y162{bottom:930.533333pt;}
.yd5{bottom:935.813333pt;}
.y8e{bottom:940.453333pt;}
.y46{bottom:948.133333pt;}
.y109{bottom:948.293333pt;}
.y13c{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y43{bottom:962.053333pt;}
.y8d{bottom:962.373333pt;}
.yd4{bottom:970.213333pt;}
.y108{bottom:974.053333pt;}
.y13b{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y8c{bottom:983.973333pt;}
.yd3{bottom:995.973333pt;}
.y107{bottom:996.293333pt;}
.y41{bottom:996.453333pt;}
.y7{bottom:1003.173333pt;}
.y8b{bottom:1005.893333pt;}
.y3f{bottom:1014.053333pt;}
.yd2{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y8a{bottom:1039.520000pt;}
.y3e{bottom:1039.840000pt;}
.yd1{bottom:1040.160000pt;}
.y3c{bottom:1055.360000pt;}
.y3b{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.386667pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h22{height:16.786667pt;}
.h1d{height:16.826667pt;}
.h23{height:16.832000pt;}
.h11{height:16.896000pt;}
.h1e{height:16.946667pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1b{height:27.093750pt;}
.h2d{height:33.586667pt;}
.h1f{height:33.746667pt;}
.h28{height:33.760000pt;}
.h27{height:33.780000pt;}
.h31{height:33.786667pt;}
.h21{height:41.112500pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h26{height:50.546667pt;}
.h2e{height:50.706667pt;}
.h1c{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h18{height:57.758750pt;}
.h19{height:57.787500pt;}
.h24{height:58.563750pt;}
.h1a{height:59.340000pt;}
.h14{height:60.270000pt;}
.h20{height:60.519362pt;}
.h25{height:63.311250pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h2b{height:67.506667pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h29{height:84.306667pt;}
.h2a{height:84.338667pt;}
.h12{height:85.426667pt;}
.h3{height:92.026667pt;}
.h32{height:102.546667pt;}
.h30{height:102.586667pt;}
.h2c{height:119.986667pt;}
.h2f{height:136.973333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:60.470667pt;}
.w8{width:66.546667pt;}
.wc{width:95.218667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w16{width:110.880000pt;}
.wf{width:112.150667pt;}
.w15{width:147.857333pt;}
.w12{width:172.177333pt;}
.we{width:173.293333pt;}
.w9{width:203.253333pt;}
.w13{width:205.626667pt;}
.w10{width:229.813333pt;}
.w14{width:236.533333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.wa{width:251.213333pt;}
.wd{width:268.186667pt;}
.w11{width:272.213333pt;}
.w17{width:355.613333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.190667pt;}
.x5{left:9.746667pt;}
.x13{left:11.510667pt;}
.x10{left:18.386667pt;}
.x20{left:20.626667pt;}
.x1c{left:22.386667pt;}
.x38{left:28.630667pt;}
.xb{left:30.386667pt;}
.x39{left:33.590667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x1e{left:52.826667pt;}
.x2{left:54.081333pt;}
.x16{left:56.305333pt;}
.x32{left:61.585333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.x34{left:81.946667pt;}
.xd{left:85.266667pt;}
.x30{left:89.161333pt;}
.x14{left:93.585333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x27{left:101.161333pt;}
.x3a{left:109.792000pt;}
.x21{left:111.986667pt;}
.x2b{left:120.032000pt;}
.x2c{left:124.512000pt;}
.x3b{left:133.786667pt;}
.x1b{left:135.560000pt;}
.x35{left:138.586667pt;}
.x17{left:142.425333pt;}
.x22{left:144.026667pt;}
.x4{left:150.120000pt;}
.x26{left:152.186667pt;}
.x28{left:162.440000pt;}
.x2f{left:184.666667pt;}
.x6{left:185.786667pt;}
.x15{left:190.265333pt;}
.x1d{left:202.920000pt;}
.x36{left:237.666667pt;}
.x29{left:258.466667pt;}
.x33{left:261.986667pt;}
.x18{left:288.858236pt;}
.x12{left:298.292000pt;}
.x37{left:349.186667pt;}
.xa{left:396.106667pt;}
.x1f{left:406.986667pt;}
.x1a{left:420.893333pt;}
.x23{left:425.373333pt;}
.x31{left:432.586667pt;}
.x2d{left:434.653333pt;}
.x24{left:449.373333pt;}
.x2e{left:458.653333pt;}
.x25{left:468.893333pt;}
.x2a{left:527.306667pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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