
    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_2ac749b8b056c46066bcb9bb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_65678fce10799f67707db3d9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_75e2aaff36fed7e64ee3ba94.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_ecad89cf5a8873c9f53b1029.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_0de7694c24b471c8e04a5140.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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);}
.v5{vertical-align:-69.000000px;}
.v2{vertical-align:-22.500000px;}
.v4{vertical-align:-21.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.000000px;}
.v1{vertical-align:22.500000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.006000px;}
.lsa{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.750750px;}
.ls5{letter-spacing:0.933000px;}
.ls0{letter-spacing:1.482000px;}
.ls7{letter-spacing:1.494000px;}
.ls4{letter-spacing:1.500000px;}
.lsb{letter-spacing:1.506000px;}
.ls1{letter-spacing:1.518000px;}
.ls6{letter-spacing:2.970000px;}
.ls8{letter-spacing:15.000000px;}
.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;}
}
.wse{word-spacing:-18.438000px;}
.ws88{word-spacing:-18.120000px;}
.ws13{word-spacing:-17.910000px;}
.ws6c{word-spacing:-17.832000px;}
.ws3b{word-spacing:-17.826000px;}
.ws2b{word-spacing:-17.742000px;}
.ws43{word-spacing:-17.628000px;}
.ws76{word-spacing:-17.592000px;}
.ws4e{word-spacing:-17.532000px;}
.ws6e{word-spacing:-17.430000px;}
.ws72{word-spacing:-17.376000px;}
.ws8c{word-spacing:-17.316000px;}
.ws79{word-spacing:-17.310000px;}
.ws69{word-spacing:-17.220000px;}
.ws85{word-spacing:-17.208000px;}
.ws9d{word-spacing:-17.160000px;}
.ws34{word-spacing:-17.148000px;}
.ws94{word-spacing:-17.112000px;}
.ws78{word-spacing:-17.070000px;}
.ws1a{word-spacing:-17.052000px;}
.ws3f{word-spacing:-17.028000px;}
.ws4{word-spacing:-17.022000px;}
.ws42{word-spacing:-17.004000px;}
.ws83{word-spacing:-16.986000px;}
.ws4b{word-spacing:-16.974000px;}
.ws3c{word-spacing:-16.962000px;}
.ws3d{word-spacing:-16.956000px;}
.ws7b{word-spacing:-16.944000px;}
.ws1f{word-spacing:-16.908000px;}
.ws9e{word-spacing:-16.890000px;}
.ws82{word-spacing:-16.872000px;}
.ws90{word-spacing:-16.860000px;}
.wsc{word-spacing:-16.854000px;}
.wsa1{word-spacing:-16.848000px;}
.wsa2{word-spacing:-16.842000px;}
.wsa{word-spacing:-16.830000px;}
.ws31{word-spacing:-16.818000px;}
.ws10{word-spacing:-16.806000px;}
.ws7f{word-spacing:-16.788000px;}
.ws37{word-spacing:-16.782000px;}
.ws25{word-spacing:-16.776000px;}
.ws9c{word-spacing:-16.740000px;}
.ws77{word-spacing:-16.728000px;}
.ws1d{word-spacing:-16.710000px;}
.ws2f{word-spacing:-16.704000px;}
.ws6{word-spacing:-16.680000px;}
.ws29{word-spacing:-16.674000px;}
.ws1b{word-spacing:-16.608000px;}
.ws75{word-spacing:-16.602000px;}
.ws49{word-spacing:-16.590000px;}
.ws33{word-spacing:-16.578000px;}
.ws22{word-spacing:-16.572000px;}
.ws96{word-spacing:-16.554000px;}
.ws38{word-spacing:-16.542000px;}
.ws15{word-spacing:-16.536000px;}
.ws44{word-spacing:-16.518000px;}
.ws2c{word-spacing:-16.506000px;}
.ws8{word-spacing:-16.500000px;}
.wsa0{word-spacing:-16.494000px;}
.ws47{word-spacing:-16.482000px;}
.ws2d{word-spacing:-16.470000px;}
.ws8d{word-spacing:-16.458000px;}
.ws2e{word-spacing:-16.452000px;}
.ws66{word-spacing:-16.440000px;}
.ws95{word-spacing:-16.428000px;}
.ws18{word-spacing:-16.404000px;}
.ws56{word-spacing:-16.398000px;}
.ws12{word-spacing:-16.386000px;}
.ws39{word-spacing:-16.374000px;}
.ws48{word-spacing:-16.356000px;}
.ws46{word-spacing:-16.344000px;}
.ws7c{word-spacing:-16.326000px;}
.ws4f{word-spacing:-16.320000px;}
.ws8f{word-spacing:-16.290000px;}
.ws68{word-spacing:-16.272000px;}
.ws6b{word-spacing:-16.266000px;}
.ws14{word-spacing:-16.260000px;}
.ws87{word-spacing:-16.254000px;}
.wsd{word-spacing:-16.242000px;}
.ws21{word-spacing:-16.230000px;}
.wsa4{word-spacing:-16.224000px;}
.ws4d{word-spacing:-16.212000px;}
.ws40{word-spacing:-16.206000px;}
.ws60{word-spacing:-16.200000px;}
.ws8e{word-spacing:-16.176000px;}
.ws5b{word-spacing:-16.170000px;}
.ws93{word-spacing:-16.152000px;}
.ws5e{word-spacing:-16.134000px;}
.ws28{word-spacing:-16.128000px;}
.ws50{word-spacing:-16.032000px;}
.ws53{word-spacing:-15.996000px;}
.ws58{word-spacing:-15.990000px;}
.wsa5{word-spacing:-15.972000px;}
.ws8a{word-spacing:-15.936000px;}
.ws89{word-spacing:-15.924000px;}
.ws54{word-spacing:-15.888000px;}
.ws20{word-spacing:-15.876000px;}
.ws99{word-spacing:-15.870000px;}
.ws6d{word-spacing:-15.852000px;}
.ws27{word-spacing:-15.828000px;}
.ws73{word-spacing:-15.822000px;}
.ws5{word-spacing:-15.768000px;}
.ws6f{word-spacing:-15.714000px;}
.ws55{word-spacing:-15.660000px;}
.ws64{word-spacing:-15.612000px;}
.ws84{word-spacing:-15.558000px;}
.ws3e{word-spacing:-15.432000px;}
.ws57{word-spacing:-15.330000px;}
.ws5d{word-spacing:-15.246000px;}
.ws59{word-spacing:-15.240000px;}
.ws5f{word-spacing:-15.180000px;}
.ws5a{word-spacing:-15.156000px;}
.ws86{word-spacing:-15.036000px;}
.ws71{word-spacing:-15.000000px;}
.ws62{word-spacing:-14.964000px;}
.ws9b{word-spacing:-14.958000px;}
.ws67{word-spacing:-14.862000px;}
.wsaf{word-spacing:-14.748000px;}
.ws61{word-spacing:-14.724000px;}
.ws30{word-spacing:-14.352000px;}
.ws3{word-spacing:-14.262000px;}
.ws5c{word-spacing:-14.058000px;}
.wsa6{word-spacing:-13.770000px;}
.wsa9{word-spacing:-12.361248px;}
.ws0{word-spacing:-12.240000px;}
.wsac{word-spacing:-11.866500px;}
.wsa3{word-spacing:-11.782584px;}
.ws6a{word-spacing:-11.665620px;}
.wsb0{word-spacing:-11.560500px;}
.ws17{word-spacing:-11.542500px;}
.ws65{word-spacing:-11.456316px;}
.wsb2{word-spacing:-11.290500px;}
.wsa7{word-spacing:-11.250000px;}
.ws8b{word-spacing:-11.148516px;}
.wsad{word-spacing:-11.146500px;}
.wsab{word-spacing:-11.115000px;}
.wsb1{word-spacing:-11.097000px;}
.wsae{word-spacing:-11.002500px;}
.wsaa{word-spacing:-10.552512px;}
.ws52{word-spacing:-10.499625px;}
.ws7e{word-spacing:-10.125000px;}
.ws9f{word-spacing:-2.100000px;}
.ws98{word-spacing:-1.410000px;}
.ws91{word-spacing:-1.260000px;}
.ws23{word-spacing:-0.954000px;}
.ws3a{word-spacing:-0.918000px;}
.ws1e{word-spacing:-0.852000px;}
.wsf{word-spacing:-0.822000px;}
.ws36{word-spacing:-0.810000px;}
.ws7a{word-spacing:-0.762000px;}
.ws19{word-spacing:-0.732000px;}
.wsb{word-spacing:-0.720000px;}
.ws32{word-spacing:-0.678000px;}
.ws45{word-spacing:-0.660000px;}
.ws80{word-spacing:-0.654000px;}
.ws70{word-spacing:-0.624000px;}
.ws7d{word-spacing:-0.540000px;}
.ws74{word-spacing:-0.474000px;}
.ws16{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:0.018000px;}
.ws1{word-spacing:0.234000px;}
.ws4c{word-spacing:0.480000px;}
.ws35{word-spacing:0.510000px;}
.ws9a{word-spacing:0.516000px;}
.ws1c{word-spacing:0.684000px;}
.ws81{word-spacing:1.020000px;}
.ws26{word-spacing:1.038000px;}
.ws24{word-spacing:1.044000px;}
.ws4a{word-spacing:1.086000px;}
.ws41{word-spacing:1.104000px;}
.ws92{word-spacing:1.230000px;}
.ws11{word-spacing:1.254000px;}
.wsa8{word-spacing:1.470000px;}
.ws63{word-spacing:9.000000px;}
.ws97{word-spacing:9.018000px;}
.ws7{word-spacing:35.724000px;}
.ws2a{word-spacing:36.000000px;}
.ws51{word-spacing:36.018000px;}
._2{margin-left:-9.048000px;}
._8{margin-left:-7.284000px;}
._d{margin-left:-6.024000px;}
._a{margin-left:-4.920000px;}
._4{margin-left:-2.964000px;}
._1{margin-left:-1.488000px;}
._3{width:1.494000px;}
._6{width:2.889000px;}
._13{width:4.497000px;}
._7{width:5.913000px;}
._11{width:9.843000px;}
._5{width:11.550000px;}
._16{width:12.603000px;}
._15{width:13.764000px;}
._e{width:14.868000px;}
._f{width:16.524000px;}
._12{width:18.018000px;}
._10{width:19.398000px;}
._14{width:22.518000px;}
._c{width:46.344000px;}
._0{width:49.344000px;}
._b{width:655.062000px;}
._9{width:1084.344000px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:40.500000px;}
.fs8{font-size:41.998500px;}
.fsa{font-size:45.000000px;}
.fs6{font-size:46.170000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:20.734245px;}
.y4c{bottom:24.484245px;}
.y21{bottom:25.609245px;}
.y4d{bottom:34.984245px;}
.y4b{bottom:41.734245px;}
.y20{bottom:42.859245px;}
.y76{bottom:49.234245px;}
.yf4{bottom:56.359245px;}
.y4a{bottom:58.984245px;}
.y1f{bottom:60.109245px;}
.yec{bottom:62.359245px;}
.y9c{bottom:63.484245px;}
.yf3{bottom:73.609245px;}
.y49{bottom:76.234245px;}
.y1e{bottom:77.359245px;}
.yeb{bottom:79.609245px;}
.yf2{bottom:85.609245px;}
.y9e{bottom:90.859245px;}
.y48{bottom:93.484245px;}
.y1d{bottom:94.609245px;}
.yea{bottom:96.859245px;}
.ybd{bottom:99.859245px;}
.y9b{bottom:101.359245px;}
.y75{bottom:108.109245px;}
.y47{bottom:110.734245px;}
.ye2{bottom:111.484245px;}
.y1c{bottom:111.859245px;}
.ye9{bottom:114.109245px;}
.ybc{bottom:117.109245px;}
.y9a{bottom:118.609245px;}
.y74{bottom:125.359245px;}
.ye1{bottom:127.234245px;}
.y46{bottom:127.984245px;}
.y1b{bottom:129.109245px;}
.ye8{bottom:131.359245px;}
.y110{bottom:132.859245px;}
.ybb{bottom:134.359245px;}
.y99{bottom:135.859245px;}
.y73{bottom:142.609245px;}
.ye0{bottom:142.984245px;}
.y45{bottom:145.234245px;}
.y1a{bottom:146.359245px;}
.y10f{bottom:148.609245px;}
.yba{bottom:151.609245px;}
.y98{bottom:153.109245px;}
.ydf{bottom:158.734245px;}
.y72{bottom:159.859245px;}
.y10e{bottom:164.359245px;}
.ye7{bottom:165.859245px;}
.yb9{bottom:168.859245px;}
.y97{bottom:170.359245px;}
.y44{bottom:171.109245px;}
.yde{bottom:174.484245px;}
.y71{bottom:177.109245px;}
.y10d{bottom:180.109245px;}
.ye6{bottom:181.609245px;}
.yb8{bottom:186.109245px;}
.y96{bottom:187.609245px;}
.ydd{bottom:190.234245px;}
.y19{bottom:193.609245px;}
.y70{bottom:194.359245px;}
.y10c{bottom:195.859245px;}
.ye5{bottom:197.359245px;}
.yb7{bottom:203.359245px;}
.y95{bottom:204.859245px;}
.ydc{bottom:205.984245px;}
.y18{bottom:208.609245px;}
.y6f{bottom:211.609245px;}
.ye4{bottom:213.109245px;}
.y43{bottom:214.234245px;}
.yb6{bottom:220.609245px;}
.ydb{bottom:221.734245px;}
.y94{bottom:222.109245px;}
.y10b{bottom:227.359245px;}
.y6e{bottom:228.859245px;}
.y17{bottom:229.609245px;}
.y42{bottom:231.484245px;}
.ye3{bottom:237.484245px;}
.yb5{bottom:237.859245px;}
.y93{bottom:239.359245px;}
.y10a{bottom:243.109245px;}
.y16{bottom:244.609245px;}
.y6d{bottom:246.109245px;}
.y41{bottom:248.734245px;}
.yda{bottom:254.734245px;}
.yb4{bottom:255.109245px;}
.y92{bottom:256.609245px;}
.y109{bottom:258.859245px;}
.y15{bottom:259.609245px;}
.y6c{bottom:263.359245px;}
.y40{bottom:265.984245px;}
.yd9{bottom:271.984245px;}
.yb3{bottom:272.359245px;}
.y91{bottom:273.859245px;}
.y14{bottom:274.609245px;}
.y6b{bottom:280.609245px;}
.y3f{bottom:283.234245px;}
.yd8{bottom:289.234245px;}
.y13{bottom:289.609245px;}
.y90{bottom:291.109245px;}
.y6a{bottom:297.859245px;}
.y3e{bottom:300.484245px;}
.y12{bottom:304.609245px;}
.yf1{bottom:305.359245px;}
.yd7{bottom:306.484245px;}
.yb2{bottom:306.859245px;}
.y108{bottom:307.609245px;}
.y8f{bottom:308.359245px;}
.y69{bottom:315.109245px;}
.y3d{bottom:317.734245px;}
.y11{bottom:319.609245px;}
.yf0{bottom:321.109245px;}
.y107{bottom:323.359245px;}
.yd6{bottom:323.734245px;}
.yb1{bottom:324.109245px;}
.y8e{bottom:325.609245px;}
.y68{bottom:332.359245px;}
.y3c{bottom:334.984245px;}
.yef{bottom:336.859245px;}
.y106{bottom:339.109245px;}
.yd5{bottom:340.984245px;}
.yb0{bottom:341.359245px;}
.y8d{bottom:342.859245px;}
.y10{bottom:349.609245px;}
.y3b{bottom:352.234245px;}
.yee{bottom:352.609245px;}
.y105{bottom:354.859245px;}
.yd4{bottom:358.234245px;}
.yaf{bottom:358.609245px;}
.y8c{bottom:360.109245px;}
.y67{bottom:366.859245px;}
.yed{bottom:368.359245px;}
.y3a{bottom:369.484245px;}
.y104{bottom:370.609245px;}
.yd3{bottom:375.484245px;}
.yae{bottom:375.859245px;}
.y8b{bottom:377.359245px;}
.y66{bottom:384.109245px;}
.yf{bottom:385.609245px;}
.y103{bottom:386.359245px;}
.y39{bottom:386.734245px;}
.yd2{bottom:392.734245px;}
.yad{bottom:393.109245px;}
.y8a{bottom:394.609245px;}
.ye{bottom:400.609245px;}
.y65{bottom:401.359245px;}
.y102{bottom:402.109245px;}
.y38{bottom:403.984245px;}
.yd1{bottom:409.984245px;}
.yac{bottom:410.359245px;}
.y89{bottom:411.859245px;}
.y101{bottom:417.859245px;}
.y64{bottom:418.609245px;}
.y37{bottom:421.234245px;}
.yd{bottom:421.609245px;}
.yd0{bottom:427.234245px;}
.yab{bottom:427.609245px;}
.y100{bottom:433.609245px;}
.y63{bottom:435.859245px;}
.yc{bottom:436.609245px;}
.y36{bottom:438.484245px;}
.ycf{bottom:444.484245px;}
.yaa{bottom:444.859245px;}
.y88{bottom:446.359245px;}
.yb{bottom:451.609245px;}
.y62{bottom:453.109245px;}
.y35{bottom:455.734245px;}
.yff{bottom:457.984245px;}
.yce{bottom:461.734245px;}
.y87{bottom:462.109245px;}
.ya{bottom:466.609245px;}
.y61{bottom:470.359245px;}
.y34{bottom:472.984245px;}
.ycd{bottom:478.984245px;}
.ya9{bottom:479.359245px;}
.y9{bottom:481.609245px;}
.y60{bottom:487.609245px;}
.y33{bottom:490.234245px;}
.y86{bottom:495.109245px;}
.ycc{bottom:496.234245px;}
.y8{bottom:496.609245px;}
.yfe{bottom:501.109245px;}
.y5f{bottom:504.859245px;}
.y32{bottom:507.484245px;}
.y7{bottom:511.609245px;}
.y85{bottom:512.359245px;}
.y9d{bottom:513.484245px;}
.ya8{bottom:513.859245px;}
.yfd{bottom:518.359245px;}
.y5e{bottom:522.109245px;}
.y31{bottom:524.734245px;}
.y84{bottom:529.609245px;}
.ycb{bottom:530.734245px;}
.ya7{bottom:531.109245px;}
.yfc{bottom:535.609245px;}
.y5d{bottom:539.359245px;}
.y6{bottom:541.609245px;}
.y30{bottom:541.984245px;}
.y83{bottom:546.859245px;}
.yca{bottom:547.984245px;}
.ya6{bottom:548.359245px;}
.y5c{bottom:556.609245px;}
.y2f{bottom:559.234245px;}
.y82{bottom:564.109245px;}
.yc9{bottom:565.234245px;}
.ya5{bottom:565.609245px;}
.yfb{bottom:570.109245px;}
.y5b{bottom:573.859245px;}
.y2e{bottom:576.484245px;}
.y81{bottom:581.359245px;}
.yc8{bottom:582.484245px;}
.ya4{bottom:582.859245px;}
.yfa{bottom:585.859245px;}
.y5a{bottom:591.109245px;}
.y2d{bottom:593.734245px;}
.y80{bottom:598.609245px;}
.yc7{bottom:599.734245px;}
.ya3{bottom:600.109245px;}
.yf9{bottom:601.609245px;}
.y59{bottom:608.359245px;}
.y2c{bottom:610.984245px;}
.y7f{bottom:615.859245px;}
.yc6{bottom:616.984245px;}
.ya2{bottom:617.359245px;}
.y58{bottom:625.609245px;}
.y2b{bottom:628.234245px;}
.y7e{bottom:633.109245px;}
.yc5{bottom:634.234245px;}
.ya1{bottom:634.609245px;}
.y57{bottom:642.859245px;}
.y2a{bottom:645.484245px;}
.yf8{bottom:648.859245px;}
.y7d{bottom:650.359245px;}
.yc4{bottom:651.484245px;}
.ya0{bottom:651.859245px;}
.y56{bottom:660.109245px;}
.y29{bottom:662.734245px;}
.yf7{bottom:664.609245px;}
.y7c{bottom:667.609245px;}
.yc3{bottom:668.734245px;}
.y55{bottom:677.359245px;}
.y28{bottom:679.984245px;}
.yf6{bottom:680.359245px;}
.yc2{bottom:685.984245px;}
.y9f{bottom:686.359245px;}
.y54{bottom:694.609245px;}
.yf5{bottom:696.109245px;}
.y27{bottom:697.234245px;}
.y5{bottom:699.109245px;}
.y7b{bottom:702.109245px;}
.yc1{bottom:703.234245px;}
.y53{bottom:711.859245px;}
.y4{bottom:713.359245px;}
.y26{bottom:714.484245px;}
.y7a{bottom:717.859245px;}
.yc0{bottom:720.484245px;}
.y52{bottom:729.109245px;}
.y3{bottom:731.359245px;}
.y25{bottom:731.734245px;}
.y79{bottom:733.609245px;}
.ybf{bottom:737.734245px;}
.y51{bottom:746.359245px;}
.y24{bottom:748.984245px;}
.y78{bottom:749.359245px;}
.ybe{bottom:754.984245px;}
.y50{bottom:763.609245px;}
.y77{bottom:765.109245px;}
.y23{bottom:766.234245px;}
.y2{bottom:776.359245px;}
.y4f{bottom:780.859245px;}
.y22{bottom:783.484245px;}
.y1{bottom:828.109245px;}
.h2{height:51.216000px;}
.h5{height:57.618000px;}
.ha{height:58.536000px;}
.h6{height:60.819000px;}
.h7{height:61.788000px;}
.hc{height:64.020000px;}
.he{height:65.040000px;}
.hd{height:65.812399px;}
.h8{height:70.422000px;}
.h9{height:71.544000px;}
.hb{height:71.763390px;}
.h4{height:76.824000px;}
.h3{height:102.432000px;}
.h0{height:858.484245px;}
.h1{height:858.750000px;}
.w1{width:552.750000px;}
.w0{width:552.980325px;}
.x0{left:0.000000px;}
.x2{left:32.588325px;}
.x5{left:47.615325px;}
.x3{left:54.701325px;}
.x4{left:77.156325px;}
.x1{left:384.042825px;}
@media print{
.v5{vertical-align:-61.333333pt;}
.v2{vertical-align:-20.000000pt;}
.v4{vertical-align:-18.666667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.666667pt;}
.v1{vertical-align:20.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.005333pt;}
.lsa{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.667333pt;}
.ls5{letter-spacing:0.829333pt;}
.ls0{letter-spacing:1.317333pt;}
.ls7{letter-spacing:1.328000pt;}
.ls4{letter-spacing:1.333333pt;}
.lsb{letter-spacing:1.338667pt;}
.ls1{letter-spacing:1.349333pt;}
.ls6{letter-spacing:2.640000pt;}
.ls8{letter-spacing:13.333333pt;}
.wse{word-spacing:-16.389333pt;}
.ws88{word-spacing:-16.106667pt;}
.ws13{word-spacing:-15.920000pt;}
.ws6c{word-spacing:-15.850667pt;}
.ws3b{word-spacing:-15.845333pt;}
.ws2b{word-spacing:-15.770667pt;}
.ws43{word-spacing:-15.669333pt;}
.ws76{word-spacing:-15.637333pt;}
.ws4e{word-spacing:-15.584000pt;}
.ws6e{word-spacing:-15.493333pt;}
.ws72{word-spacing:-15.445333pt;}
.ws8c{word-spacing:-15.392000pt;}
.ws79{word-spacing:-15.386667pt;}
.ws69{word-spacing:-15.306667pt;}
.ws85{word-spacing:-15.296000pt;}
.ws9d{word-spacing:-15.253333pt;}
.ws34{word-spacing:-15.242667pt;}
.ws94{word-spacing:-15.210667pt;}
.ws78{word-spacing:-15.173333pt;}
.ws1a{word-spacing:-15.157333pt;}
.ws3f{word-spacing:-15.136000pt;}
.ws4{word-spacing:-15.130667pt;}
.ws42{word-spacing:-15.114667pt;}
.ws83{word-spacing:-15.098667pt;}
.ws4b{word-spacing:-15.088000pt;}
.ws3c{word-spacing:-15.077333pt;}
.ws3d{word-spacing:-15.072000pt;}
.ws7b{word-spacing:-15.061333pt;}
.ws1f{word-spacing:-15.029333pt;}
.ws9e{word-spacing:-15.013333pt;}
.ws82{word-spacing:-14.997333pt;}
.ws90{word-spacing:-14.986667pt;}
.wsc{word-spacing:-14.981333pt;}
.wsa1{word-spacing:-14.976000pt;}
.wsa2{word-spacing:-14.970667pt;}
.wsa{word-spacing:-14.960000pt;}
.ws31{word-spacing:-14.949333pt;}
.ws10{word-spacing:-14.938667pt;}
.ws7f{word-spacing:-14.922667pt;}
.ws37{word-spacing:-14.917333pt;}
.ws25{word-spacing:-14.912000pt;}
.ws9c{word-spacing:-14.880000pt;}
.ws77{word-spacing:-14.869333pt;}
.ws1d{word-spacing:-14.853333pt;}
.ws2f{word-spacing:-14.848000pt;}
.ws6{word-spacing:-14.826667pt;}
.ws29{word-spacing:-14.821333pt;}
.ws1b{word-spacing:-14.762667pt;}
.ws75{word-spacing:-14.757333pt;}
.ws49{word-spacing:-14.746667pt;}
.ws33{word-spacing:-14.736000pt;}
.ws22{word-spacing:-14.730667pt;}
.ws96{word-spacing:-14.714667pt;}
.ws38{word-spacing:-14.704000pt;}
.ws15{word-spacing:-14.698667pt;}
.ws44{word-spacing:-14.682667pt;}
.ws2c{word-spacing:-14.672000pt;}
.ws8{word-spacing:-14.666667pt;}
.wsa0{word-spacing:-14.661333pt;}
.ws47{word-spacing:-14.650667pt;}
.ws2d{word-spacing:-14.640000pt;}
.ws8d{word-spacing:-14.629333pt;}
.ws2e{word-spacing:-14.624000pt;}
.ws66{word-spacing:-14.613333pt;}
.ws95{word-spacing:-14.602667pt;}
.ws18{word-spacing:-14.581333pt;}
.ws56{word-spacing:-14.576000pt;}
.ws12{word-spacing:-14.565333pt;}
.ws39{word-spacing:-14.554667pt;}
.ws48{word-spacing:-14.538667pt;}
.ws46{word-spacing:-14.528000pt;}
.ws7c{word-spacing:-14.512000pt;}
.ws4f{word-spacing:-14.506667pt;}
.ws8f{word-spacing:-14.480000pt;}
.ws68{word-spacing:-14.464000pt;}
.ws6b{word-spacing:-14.458667pt;}
.ws14{word-spacing:-14.453333pt;}
.ws87{word-spacing:-14.448000pt;}
.wsd{word-spacing:-14.437333pt;}
.ws21{word-spacing:-14.426667pt;}
.wsa4{word-spacing:-14.421333pt;}
.ws4d{word-spacing:-14.410667pt;}
.ws40{word-spacing:-14.405333pt;}
.ws60{word-spacing:-14.400000pt;}
.ws8e{word-spacing:-14.378667pt;}
.ws5b{word-spacing:-14.373333pt;}
.ws93{word-spacing:-14.357333pt;}
.ws5e{word-spacing:-14.341333pt;}
.ws28{word-spacing:-14.336000pt;}
.ws50{word-spacing:-14.250667pt;}
.ws53{word-spacing:-14.218667pt;}
.ws58{word-spacing:-14.213333pt;}
.wsa5{word-spacing:-14.197333pt;}
.ws8a{word-spacing:-14.165333pt;}
.ws89{word-spacing:-14.154667pt;}
.ws54{word-spacing:-14.122667pt;}
.ws20{word-spacing:-14.112000pt;}
.ws99{word-spacing:-14.106667pt;}
.ws6d{word-spacing:-14.090667pt;}
.ws27{word-spacing:-14.069333pt;}
.ws73{word-spacing:-14.064000pt;}
.ws5{word-spacing:-14.016000pt;}
.ws6f{word-spacing:-13.968000pt;}
.ws55{word-spacing:-13.920000pt;}
.ws64{word-spacing:-13.877333pt;}
.ws84{word-spacing:-13.829333pt;}
.ws3e{word-spacing:-13.717333pt;}
.ws57{word-spacing:-13.626667pt;}
.ws5d{word-spacing:-13.552000pt;}
.ws59{word-spacing:-13.546667pt;}
.ws5f{word-spacing:-13.493333pt;}
.ws5a{word-spacing:-13.472000pt;}
.ws86{word-spacing:-13.365333pt;}
.ws71{word-spacing:-13.333333pt;}
.ws62{word-spacing:-13.301333pt;}
.ws9b{word-spacing:-13.296000pt;}
.ws67{word-spacing:-13.210667pt;}
.wsaf{word-spacing:-13.109333pt;}
.ws61{word-spacing:-13.088000pt;}
.ws30{word-spacing:-12.757333pt;}
.ws3{word-spacing:-12.677333pt;}
.ws5c{word-spacing:-12.496000pt;}
.wsa6{word-spacing:-12.240000pt;}
.wsa9{word-spacing:-10.987776pt;}
.ws0{word-spacing:-10.880000pt;}
.wsac{word-spacing:-10.548000pt;}
.wsa3{word-spacing:-10.473408pt;}
.ws6a{word-spacing:-10.369440pt;}
.wsb0{word-spacing:-10.276000pt;}
.ws17{word-spacing:-10.260000pt;}
.ws65{word-spacing:-10.183392pt;}
.wsb2{word-spacing:-10.036000pt;}
.wsa7{word-spacing:-10.000000pt;}
.ws8b{word-spacing:-9.909792pt;}
.wsad{word-spacing:-9.908000pt;}
.wsab{word-spacing:-9.880000pt;}
.wsb1{word-spacing:-9.864000pt;}
.wsae{word-spacing:-9.780000pt;}
.wsaa{word-spacing:-9.380011pt;}
.ws52{word-spacing:-9.333000pt;}
.ws7e{word-spacing:-9.000000pt;}
.ws9f{word-spacing:-1.866667pt;}
.ws98{word-spacing:-1.253333pt;}
.ws91{word-spacing:-1.120000pt;}
.ws23{word-spacing:-0.848000pt;}
.ws3a{word-spacing:-0.816000pt;}
.ws1e{word-spacing:-0.757333pt;}
.wsf{word-spacing:-0.730667pt;}
.ws36{word-spacing:-0.720000pt;}
.ws7a{word-spacing:-0.677333pt;}
.ws19{word-spacing:-0.650667pt;}
.wsb{word-spacing:-0.640000pt;}
.ws32{word-spacing:-0.602667pt;}
.ws45{word-spacing:-0.586667pt;}
.ws80{word-spacing:-0.581333pt;}
.ws70{word-spacing:-0.554667pt;}
.ws7d{word-spacing:-0.480000pt;}
.ws74{word-spacing:-0.421333pt;}
.ws16{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:0.016000pt;}
.ws1{word-spacing:0.208000pt;}
.ws4c{word-spacing:0.426667pt;}
.ws35{word-spacing:0.453333pt;}
.ws9a{word-spacing:0.458667pt;}
.ws1c{word-spacing:0.608000pt;}
.ws81{word-spacing:0.906667pt;}
.ws26{word-spacing:0.922667pt;}
.ws24{word-spacing:0.928000pt;}
.ws4a{word-spacing:0.965333pt;}
.ws41{word-spacing:0.981333pt;}
.ws92{word-spacing:1.093333pt;}
.ws11{word-spacing:1.114667pt;}
.wsa8{word-spacing:1.306667pt;}
.ws63{word-spacing:8.000000pt;}
.ws97{word-spacing:8.016000pt;}
.ws7{word-spacing:31.754667pt;}
.ws2a{word-spacing:32.000000pt;}
.ws51{word-spacing:32.016000pt;}
._2{margin-left:-8.042667pt;}
._8{margin-left:-6.474667pt;}
._d{margin-left:-5.354667pt;}
._a{margin-left:-4.373333pt;}
._4{margin-left:-2.634667pt;}
._1{margin-left:-1.322667pt;}
._3{width:1.328000pt;}
._6{width:2.568000pt;}
._13{width:3.997333pt;}
._7{width:5.256000pt;}
._11{width:8.749333pt;}
._5{width:10.266667pt;}
._16{width:11.202667pt;}
._15{width:12.234667pt;}
._e{width:13.216000pt;}
._f{width:14.688000pt;}
._12{width:16.016000pt;}
._10{width:17.242667pt;}
._14{width:20.016000pt;}
._c{width:41.194667pt;}
._0{width:43.861333pt;}
._b{width:582.277333pt;}
._9{width:963.861333pt;}
.fs9{font-size:36.000000pt;}
.fs8{font-size:37.332000pt;}
.fsa{font-size:40.000000pt;}
.fs6{font-size:41.040000pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:18.430440pt;}
.y4c{bottom:21.763773pt;}
.y21{bottom:22.763773pt;}
.y4d{bottom:31.097107pt;}
.y4b{bottom:37.097107pt;}
.y20{bottom:38.097107pt;}
.y76{bottom:43.763773pt;}
.yf4{bottom:50.097107pt;}
.y4a{bottom:52.430440pt;}
.y1f{bottom:53.430440pt;}
.yec{bottom:55.430440pt;}
.y9c{bottom:56.430440pt;}
.yf3{bottom:65.430440pt;}
.y49{bottom:67.763773pt;}
.y1e{bottom:68.763773pt;}
.yeb{bottom:70.763773pt;}
.yf2{bottom:76.097107pt;}
.y9e{bottom:80.763773pt;}
.y48{bottom:83.097107pt;}
.y1d{bottom:84.097107pt;}
.yea{bottom:86.097107pt;}
.ybd{bottom:88.763773pt;}
.y9b{bottom:90.097107pt;}
.y75{bottom:96.097107pt;}
.y47{bottom:98.430440pt;}
.ye2{bottom:99.097107pt;}
.y1c{bottom:99.430440pt;}
.ye9{bottom:101.430440pt;}
.ybc{bottom:104.097107pt;}
.y9a{bottom:105.430440pt;}
.y74{bottom:111.430440pt;}
.ye1{bottom:113.097107pt;}
.y46{bottom:113.763773pt;}
.y1b{bottom:114.763773pt;}
.ye8{bottom:116.763773pt;}
.y110{bottom:118.097107pt;}
.ybb{bottom:119.430440pt;}
.y99{bottom:120.763773pt;}
.y73{bottom:126.763773pt;}
.ye0{bottom:127.097107pt;}
.y45{bottom:129.097107pt;}
.y1a{bottom:130.097107pt;}
.y10f{bottom:132.097107pt;}
.yba{bottom:134.763773pt;}
.y98{bottom:136.097107pt;}
.ydf{bottom:141.097107pt;}
.y72{bottom:142.097107pt;}
.y10e{bottom:146.097107pt;}
.ye7{bottom:147.430440pt;}
.yb9{bottom:150.097107pt;}
.y97{bottom:151.430440pt;}
.y44{bottom:152.097107pt;}
.yde{bottom:155.097107pt;}
.y71{bottom:157.430440pt;}
.y10d{bottom:160.097107pt;}
.ye6{bottom:161.430440pt;}
.yb8{bottom:165.430440pt;}
.y96{bottom:166.763773pt;}
.ydd{bottom:169.097107pt;}
.y19{bottom:172.097107pt;}
.y70{bottom:172.763773pt;}
.y10c{bottom:174.097107pt;}
.ye5{bottom:175.430440pt;}
.yb7{bottom:180.763773pt;}
.y95{bottom:182.097107pt;}
.ydc{bottom:183.097107pt;}
.y18{bottom:185.430440pt;}
.y6f{bottom:188.097107pt;}
.ye4{bottom:189.430440pt;}
.y43{bottom:190.430440pt;}
.yb6{bottom:196.097107pt;}
.ydb{bottom:197.097107pt;}
.y94{bottom:197.430440pt;}
.y10b{bottom:202.097107pt;}
.y6e{bottom:203.430440pt;}
.y17{bottom:204.097107pt;}
.y42{bottom:205.763773pt;}
.ye3{bottom:211.097107pt;}
.yb5{bottom:211.430440pt;}
.y93{bottom:212.763773pt;}
.y10a{bottom:216.097107pt;}
.y16{bottom:217.430440pt;}
.y6d{bottom:218.763773pt;}
.y41{bottom:221.097107pt;}
.yda{bottom:226.430440pt;}
.yb4{bottom:226.763773pt;}
.y92{bottom:228.097107pt;}
.y109{bottom:230.097107pt;}
.y15{bottom:230.763773pt;}
.y6c{bottom:234.097107pt;}
.y40{bottom:236.430440pt;}
.yd9{bottom:241.763773pt;}
.yb3{bottom:242.097107pt;}
.y91{bottom:243.430440pt;}
.y14{bottom:244.097107pt;}
.y6b{bottom:249.430440pt;}
.y3f{bottom:251.763773pt;}
.yd8{bottom:257.097107pt;}
.y13{bottom:257.430440pt;}
.y90{bottom:258.763773pt;}
.y6a{bottom:264.763773pt;}
.y3e{bottom:267.097107pt;}
.y12{bottom:270.763773pt;}
.yf1{bottom:271.430440pt;}
.yd7{bottom:272.430440pt;}
.yb2{bottom:272.763773pt;}
.y108{bottom:273.430440pt;}
.y8f{bottom:274.097107pt;}
.y69{bottom:280.097107pt;}
.y3d{bottom:282.430440pt;}
.y11{bottom:284.097107pt;}
.yf0{bottom:285.430440pt;}
.y107{bottom:287.430440pt;}
.yd6{bottom:287.763773pt;}
.yb1{bottom:288.097107pt;}
.y8e{bottom:289.430440pt;}
.y68{bottom:295.430440pt;}
.y3c{bottom:297.763773pt;}
.yef{bottom:299.430440pt;}
.y106{bottom:301.430440pt;}
.yd5{bottom:303.097107pt;}
.yb0{bottom:303.430440pt;}
.y8d{bottom:304.763773pt;}
.y10{bottom:310.763773pt;}
.y3b{bottom:313.097107pt;}
.yee{bottom:313.430440pt;}
.y105{bottom:315.430440pt;}
.yd4{bottom:318.430440pt;}
.yaf{bottom:318.763773pt;}
.y8c{bottom:320.097107pt;}
.y67{bottom:326.097107pt;}
.yed{bottom:327.430440pt;}
.y3a{bottom:328.430440pt;}
.y104{bottom:329.430440pt;}
.yd3{bottom:333.763773pt;}
.yae{bottom:334.097107pt;}
.y8b{bottom:335.430440pt;}
.y66{bottom:341.430440pt;}
.yf{bottom:342.763773pt;}
.y103{bottom:343.430440pt;}
.y39{bottom:343.763773pt;}
.yd2{bottom:349.097107pt;}
.yad{bottom:349.430440pt;}
.y8a{bottom:350.763773pt;}
.ye{bottom:356.097107pt;}
.y65{bottom:356.763773pt;}
.y102{bottom:357.430440pt;}
.y38{bottom:359.097107pt;}
.yd1{bottom:364.430440pt;}
.yac{bottom:364.763773pt;}
.y89{bottom:366.097107pt;}
.y101{bottom:371.430440pt;}
.y64{bottom:372.097107pt;}
.y37{bottom:374.430440pt;}
.yd{bottom:374.763773pt;}
.yd0{bottom:379.763773pt;}
.yab{bottom:380.097107pt;}
.y100{bottom:385.430440pt;}
.y63{bottom:387.430440pt;}
.yc{bottom:388.097107pt;}
.y36{bottom:389.763773pt;}
.ycf{bottom:395.097107pt;}
.yaa{bottom:395.430440pt;}
.y88{bottom:396.763773pt;}
.yb{bottom:401.430440pt;}
.y62{bottom:402.763773pt;}
.y35{bottom:405.097107pt;}
.yff{bottom:407.097107pt;}
.yce{bottom:410.430440pt;}
.y87{bottom:410.763773pt;}
.ya{bottom:414.763773pt;}
.y61{bottom:418.097107pt;}
.y34{bottom:420.430440pt;}
.ycd{bottom:425.763773pt;}
.ya9{bottom:426.097107pt;}
.y9{bottom:428.097107pt;}
.y60{bottom:433.430440pt;}
.y33{bottom:435.763773pt;}
.y86{bottom:440.097107pt;}
.ycc{bottom:441.097107pt;}
.y8{bottom:441.430440pt;}
.yfe{bottom:445.430440pt;}
.y5f{bottom:448.763773pt;}
.y32{bottom:451.097107pt;}
.y7{bottom:454.763773pt;}
.y85{bottom:455.430440pt;}
.y9d{bottom:456.430440pt;}
.ya8{bottom:456.763773pt;}
.yfd{bottom:460.763773pt;}
.y5e{bottom:464.097107pt;}
.y31{bottom:466.430440pt;}
.y84{bottom:470.763773pt;}
.ycb{bottom:471.763773pt;}
.ya7{bottom:472.097107pt;}
.yfc{bottom:476.097107pt;}
.y5d{bottom:479.430440pt;}
.y6{bottom:481.430440pt;}
.y30{bottom:481.763773pt;}
.y83{bottom:486.097107pt;}
.yca{bottom:487.097107pt;}
.ya6{bottom:487.430440pt;}
.y5c{bottom:494.763773pt;}
.y2f{bottom:497.097107pt;}
.y82{bottom:501.430440pt;}
.yc9{bottom:502.430440pt;}
.ya5{bottom:502.763773pt;}
.yfb{bottom:506.763773pt;}
.y5b{bottom:510.097107pt;}
.y2e{bottom:512.430440pt;}
.y81{bottom:516.763773pt;}
.yc8{bottom:517.763773pt;}
.ya4{bottom:518.097107pt;}
.yfa{bottom:520.763773pt;}
.y5a{bottom:525.430440pt;}
.y2d{bottom:527.763773pt;}
.y80{bottom:532.097107pt;}
.yc7{bottom:533.097107pt;}
.ya3{bottom:533.430440pt;}
.yf9{bottom:534.763773pt;}
.y59{bottom:540.763773pt;}
.y2c{bottom:543.097107pt;}
.y7f{bottom:547.430440pt;}
.yc6{bottom:548.430440pt;}
.ya2{bottom:548.763773pt;}
.y58{bottom:556.097107pt;}
.y2b{bottom:558.430440pt;}
.y7e{bottom:562.763773pt;}
.yc5{bottom:563.763773pt;}
.ya1{bottom:564.097107pt;}
.y57{bottom:571.430440pt;}
.y2a{bottom:573.763773pt;}
.yf8{bottom:576.763773pt;}
.y7d{bottom:578.097107pt;}
.yc4{bottom:579.097107pt;}
.ya0{bottom:579.430440pt;}
.y56{bottom:586.763773pt;}
.y29{bottom:589.097107pt;}
.yf7{bottom:590.763773pt;}
.y7c{bottom:593.430440pt;}
.yc3{bottom:594.430440pt;}
.y55{bottom:602.097107pt;}
.y28{bottom:604.430440pt;}
.yf6{bottom:604.763773pt;}
.yc2{bottom:609.763773pt;}
.y9f{bottom:610.097107pt;}
.y54{bottom:617.430440pt;}
.yf5{bottom:618.763773pt;}
.y27{bottom:619.763773pt;}
.y5{bottom:621.430440pt;}
.y7b{bottom:624.097107pt;}
.yc1{bottom:625.097107pt;}
.y53{bottom:632.763773pt;}
.y4{bottom:634.097107pt;}
.y26{bottom:635.097107pt;}
.y7a{bottom:638.097107pt;}
.yc0{bottom:640.430440pt;}
.y52{bottom:648.097107pt;}
.y3{bottom:650.097107pt;}
.y25{bottom:650.430440pt;}
.y79{bottom:652.097107pt;}
.ybf{bottom:655.763773pt;}
.y51{bottom:663.430440pt;}
.y24{bottom:665.763773pt;}
.y78{bottom:666.097107pt;}
.ybe{bottom:671.097107pt;}
.y50{bottom:678.763773pt;}
.y77{bottom:680.097107pt;}
.y23{bottom:681.097107pt;}
.y2{bottom:690.097107pt;}
.y4f{bottom:694.097107pt;}
.y22{bottom:696.430440pt;}
.y1{bottom:736.097107pt;}
.h2{height:45.525333pt;}
.h5{height:51.216000pt;}
.ha{height:52.032000pt;}
.h6{height:54.061333pt;}
.h7{height:54.922667pt;}
.hc{height:56.906667pt;}
.he{height:57.813333pt;}
.hd{height:58.499911pt;}
.h8{height:62.597333pt;}
.h9{height:63.594667pt;}
.hb{height:63.789680pt;}
.h4{height:68.288000pt;}
.h3{height:91.050667pt;}
.h0{height:763.097107pt;}
.h1{height:763.333333pt;}
.w1{width:491.333333pt;}
.w0{width:491.538067pt;}
.x0{left:0.000000pt;}
.x2{left:28.967400pt;}
.x5{left:42.324733pt;}
.x3{left:48.623400pt;}
.x4{left:68.583400pt;}
.x1{left:341.371400pt;}
}




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