
    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_51b77aebbe903a766801c9c2.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_de030c5a5599fbdfa91c56e9.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_623145a2eadc7cc8a7a72b01.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_51ac0ba86e2470d76cd8cc60.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_faa466fcd38828f0453c63b1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_535d37b6fc0d69b2ad99c36a.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_7fe6991be83fce3b9c67f618.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f61e94df9cc00e103aef392a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.084961;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_c3556648eb45e28edf53e06a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.694336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c0209face7bba90225e1d597.woff')format("woff");}.ffe{font-family:ffe;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.fff{font-family:fff;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_f9699b8f8fc1951a9d402f26.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_5b789926bffcf28185ce0477.woff')format("woff");}.ff12{font-family:ff12;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls19{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.567600px;}
.ls12{letter-spacing:-0.457800px;}
.ls15{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.190200px;}
.lsb{letter-spacing:-0.152400px;}
.ls7{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.114000px;}
.ls8{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.078000px;}
.ls18{letter-spacing:0.152400px;}
.lsa{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls13{letter-spacing:0.262200px;}
.ls10{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.414600px;}
.ls3{letter-spacing:0.576000px;}
.ls16{letter-spacing:39.881280px;}
.ls17{letter-spacing:39.905280px;}
.ls14{letter-spacing:43.920000px;}
.lsc{letter-spacing:59.321280px;}
.lsd{letter-spacing:59.345280px;}
.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;}
}
.ws7{word-spacing:-77.760000px;}
.wsc{word-spacing:-66.240000px;}
.wsa{word-spacing:-24.062880px;}
.ws6{word-spacing:-19.440000px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.wsb{word-spacing:-16.974600px;}
.wsd{word-spacing:-16.865400px;}
.ws10{word-spacing:-16.712400px;}
.wse{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.407600px;}
.wsf{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._9{width:2.098080px;}
._8{width:3.448800px;}
._6{width:4.504320px;}
._7{width:6.098400px;}
._3{width:7.785360px;}
._2{width:8.809920px;}
._5{width:9.902400px;}
._12{width:11.575200px;}
._11{width:12.819600px;}
._a{width:14.241600px;}
._4{width:15.301440px;}
._13{width:17.704080px;}
._c{width:19.249200px;}
._b{width:20.269440px;}
._d{width:21.792960px;}
._e{width:23.153040px;}
._1d{width:24.243840px;}
._1e{width:25.655040px;}
._10{width:27.489600px;}
._29{width:28.681920px;}
._17{width:30.337920px;}
._18{width:31.647600px;}
._23{width:33.235920px;}
._26{width:34.876800px;}
._43{width:35.899200px;}
._1f{width:36.961920px;}
._45{width:38.321280px;}
._31{width:39.448080px;}
._24{width:40.538880px;}
._33{width:41.744160px;}
._20{width:42.857280px;}
._32{width:43.983360px;}
._15{width:45.060480px;}
._16{width:46.417680px;}
._2d{width:47.612160px;}
._28{width:48.686400px;}
._3c{width:49.731120px;}
._25{width:51.070320px;}
._f{width:52.078080px;}
._19{width:53.278800px;}
._35{width:54.314640px;}
._22{width:55.478160px;}
._21{width:56.502720px;}
._3d{width:57.562560px;}
._4d{width:58.926960px;}
._34{width:59.947200px;}
._37{width:64.848960px;}
._40{width:65.975040px;}
._41{width:67.136400px;}
._4a{width:70.063920px;}
._2c{width:71.309520px;}
._2b{width:72.664560px;}
._14{width:74.321280px;}
._38{width:75.579840px;}
._39{width:77.169600px;}
._27{width:78.825600px;}
._30{width:80.680320px;}
._3e{width:81.872640px;}
._3f{width:82.932480px;}
._46{width:87.635520px;}
._36{width:89.887680px;}
._47{width:91.446480px;}
._42{width:94.789440px;}
._44{width:96.710400px;}
._4c{width:98.070480px;}
._2e{width:101.214720px;}
._2f{width:102.641040px;}
._3a{width:112.475520px;}
._3b{width:113.644080px;}
._48{width:119.629440px;}
._49{width:120.826080px;}
._4b{width:126.650880px;}
._1c{width:152.893440px;}
._4e{width:168.315840px;}
._1a{width:189.617520px;}
._1b{width:197.647200px;}
._2a{width:203.457600px;}
._51{width:256.017600px;}
._50{width:619.313040px;}
._4f{width:750.697920px;}
._52{width:847.596000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs7{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.y15{bottom:26.460000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y14{bottom:48.060000px;}
.y1{bottom:51.480000px;}
.y13{bottom:71.460000px;}
.y3f{bottom:75.240000px;}
.y115{bottom:122.400000px;}
.yea{bottom:127.080000px;}
.ycf{bottom:128.160000px;}
.ybb{bottom:129.420000px;}
.y6a{bottom:130.500000px;}
.y3b{bottom:131.220000px;}
.ya3{bottom:133.740000px;}
.yec{bottom:134.100000px;}
.y114{bottom:144.540000px;}
.ye9{bottom:151.380000px;}
.yce{bottom:152.820000px;}
.yba{bottom:154.080000px;}
.y69{bottom:155.160000px;}
.y3a{bottom:155.880000px;}
.ya2{bottom:158.760000px;}
.yf0{bottom:164.520000px;}
.y113{bottom:166.320000px;}
.ycd{bottom:177.480000px;}
.yb9{bottom:178.740000px;}
.y68{bottom:179.820000px;}
.y39{bottom:180.540000px;}
.ya1{bottom:183.420000px;}
.yef{bottom:186.300000px;}
.y112{bottom:188.100000px;}
.ycc{bottom:202.140000px;}
.yb8{bottom:203.400000px;}
.y8e{bottom:204.480000px;}
.y67{bottom:204.660000px;}
.y38{bottom:205.200000px;}
.yee{bottom:207.750000px;}
.ya0{bottom:208.110000px;}
.y111{bottom:210.090000px;}
.ycb{bottom:226.650000px;}
.ye8{bottom:226.830000px;}
.yb7{bottom:227.730000px;}
.y8d{bottom:229.170000px;}
.y37{bottom:229.890000px;}
.y66{bottom:230.430000px;}
.y110{bottom:231.870000px;}
.y9f{bottom:232.770000px;}
.ye7{bottom:251.490000px;}
.yca{bottom:252.390000px;}
.yb6{bottom:253.650000px;}
.y8c{bottom:254.010000px;}
.y36{bottom:254.550000px;}
.y65{bottom:255.090000px;}
.y9e{bottom:257.430000px;}
.y10f{bottom:275.430000px;}
.ye6{bottom:276.150000px;}
.yc9{bottom:277.410000px;}
.y8b{bottom:278.670000px;}
.y35{bottom:279.210000px;}
.y64{bottom:279.750000px;}
.y9d{bottom:282.090000px;}
.y10e{bottom:297.390000px;}
.ye5{bottom:300.990000px;}
.yc8{bottom:302.070000px;}
.y8a{bottom:303.330000px;}
.y34{bottom:303.870000px;}
.y63{bottom:304.410000px;}
.y9c{bottom:306.750000px;}
.y10d{bottom:319.170000px;}
.yc7{bottom:326.730000px;}
.y89{bottom:327.990000px;}
.y33{bottom:328.530000px;}
.y62{bottom:329.070000px;}
.y9b{bottom:331.410000px;}
.y10c{bottom:340.950000px;}
.yc6{bottom:351.390000px;}
.y88{bottom:352.650000px;}
.y32{bottom:352.830000px;}
.y3c{bottom:353.190000px;}
.y61{bottom:353.730000px;}
.y9a{bottom:356.070000px;}
.y10b{bottom:362.730000px;}
.yc5{bottom:376.050000px;}
.y87{bottom:377.310000px;}
.y31{bottom:377.490000px;}
.yb5{bottom:378.390000px;}
.y60{bottom:378.570000px;}
.y99{bottom:380.730000px;}
.y10a{bottom:384.510000px;}
.yc4{bottom:400.710000px;}
.y30{bottom:401.610000px;}
.y86{bottom:401.970000px;}
.yb4{bottom:403.050000px;}
.y5f{bottom:404.310000px;}
.y98{bottom:405.390000px;}
.y109{bottom:406.470000px;}
.y2f{bottom:423.570000px;}
.yc3{bottom:425.370000px;}
.y85{bottom:426.630000px;}
.yb3{bottom:427.710000px;}
.y108{bottom:428.250000px;}
.y5e{bottom:428.970000px;}
.y97{bottom:430.050000px;}
.yc2{bottom:450.075000px;}
.y2e{bottom:450.255000px;}
.y84{bottom:450.975000px;}
.yb2{bottom:452.415000px;}
.y5d{bottom:453.675000px;}
.y96{bottom:454.755000px;}
.y107{bottom:471.855000px;}
.y2d{bottom:472.035000px;}
.yc1{bottom:474.735000px;}
.ye4{bottom:474.915000px;}
.y83{bottom:475.995000px;}
.yb1{bottom:477.075000px;}
.y5c{bottom:478.335000px;}
.y95{bottom:479.595000px;}
.y2c{bottom:493.815000px;}
.yc0{bottom:499.215000px;}
.ye3{bottom:500.295000px;}
.y82{bottom:500.655000px;}
.yb0{bottom:501.735000px;}
.y5b{bottom:502.995000px;}
.y94{bottom:504.255000px;}
.y2b{bottom:515.595000px;}
.y81{bottom:525.315000px;}
.yaf{bottom:526.575000px;}
.y5a{bottom:527.655000px;}
.y93{bottom:528.915000px;}
.y106{bottom:537.375000px;}
.y2a{bottom:537.555000px;}
.y80{bottom:549.975000px;}
.y59{bottom:552.315000px;}
.y92{bottom:553.575000px;}
.y105{bottom:559.155000px;}
.y29{bottom:559.335000px;}
.y7f{bottom:574.635000px;}
.y58{bottom:576.975000px;}
.y91{bottom:578.235000px;}
.y104{bottom:580.935000px;}
.y28{bottom:581.115000px;}
.y7e{bottom:599.295000px;}
.y57{bottom:601.455000px;}
.yae{bottom:601.635000px;}
.y27{bottom:602.895000px;}
.y7d{bottom:623.955000px;}
.y26{bottom:624.675000px;}
.yad{bottom:626.295000px;}
.y56{bottom:627.555000px;}
.y103{bottom:646.455000px;}
.y25{bottom:646.635000px;}
.y7c{bottom:648.615000px;}
.yac{bottom:650.955000px;}
.y55{bottom:652.215000px;}
.y102{bottom:668.235000px;}
.y24{bottom:668.415000px;}
.ye2{bottom:672.915000px;}
.y7b{bottom:673.275000px;}
.yab{bottom:675.615000px;}
.y54{bottom:676.905000px;}
.y23{bottom:690.225000px;}
.ye1{bottom:697.605000px;}
.y7a{bottom:697.965000px;}
.yaa{bottom:700.305000px;}
.y53{bottom:701.565000px;}
.y22{bottom:712.005000px;}
.y79{bottom:722.625000px;}
.ybf{bottom:722.805000px;}
.ya9{bottom:724.965000px;}
.y52{bottom:725.865000px;}
.y90{bottom:726.225000px;}
.y21{bottom:733.785000px;}
.ye0{bottom:747.285000px;}
.y78{bottom:747.465000px;}
.ybe{bottom:748.185000px;}
.ya8{bottom:749.625000px;}
.y51{bottom:750.525000px;}
.y8f{bottom:750.885000px;}
.y101{bottom:755.565000px;}
.y20{bottom:755.745000px;}
.ydf{bottom:771.945000px;}
.y77{bottom:773.205000px;}
.ya7{bottom:774.105000px;}
.y50{bottom:775.545000px;}
.y100{bottom:777.345000px;}
.y1f{bottom:777.525000px;}
.yde{bottom:796.605000px;}
.y76{bottom:797.865000px;}
.y1e{bottom:799.305000px;}
.ya6{bottom:799.845000px;}
.y4f{bottom:800.205000px;}
.y1d{bottom:821.085000px;}
.ydd{bottom:821.265000px;}
.y75{bottom:822.525000px;}
.ya5{bottom:824.505000px;}
.y4e{bottom:824.865000px;}
.yff{bottom:842.865000px;}
.y1c{bottom:843.045000px;}
.ydc{bottom:845.925000px;}
.y74{bottom:847.185000px;}
.y4d{bottom:849.525000px;}
.yfe{bottom:864.645000px;}
.y1b{bottom:864.825000px;}
.ydb{bottom:870.585000px;}
.y73{bottom:871.845000px;}
.y4c{bottom:874.185000px;}
.y1a{bottom:886.245000px;}
.yfd{bottom:886.425000px;}
.yda{bottom:895.425000px;}
.y72{bottom:896.505000px;}
.y4b{bottom:898.845000px;}
.y19{bottom:905.505000px;}
.yfc{bottom:908.385000px;}
.y17{bottom:914.190000px;}
.y71{bottom:920.850000px;}
.ybd{bottom:921.210000px;}
.y12{bottom:921.390000px;}
.y4a{bottom:923.550000px;}
.y16{bottom:925.496201px;}
.yfb{bottom:930.210000px;}
.yd9{bottom:945.870000px;}
.y70{bottom:947.130000px;}
.y49{bottom:948.210000px;}
.yfa{bottom:951.990000px;}
.yd8{bottom:970.530000px;}
.y6f{bottom:971.790000px;}
.y48{bottom:972.870000px;}
.yf9{bottom:973.770000px;}
.yd7{bottom:995.190000px;}
.yf8{bottom:995.730000px;}
.y6e{bottom:996.450000px;}
.y47{bottom:997.530000px;}
.yf7{bottom:1017.510000px;}
.y10{bottom:1018.590000px;}
.yd6{bottom:1019.850000px;}
.y6d{bottom:1021.110000px;}
.y46{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.yf6{bottom:1039.290000px;}
.yd5{bottom:1044.510000px;}
.y6c{bottom:1045.770000px;}
.y45{bottom:1046.850000px;}
.yf5{bottom:1061.070000px;}
.yd4{bottom:1068.990000px;}
.y6b{bottom:1070.430000px;}
.yeb{bottom:1071.150000px;}
.y44{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.yf4{bottom:1082.850000px;}
.ybc{bottom:1094.730000px;}
.yd3{bottom:1095.090000px;}
.yed{bottom:1095.810000px;}
.y43{bottom:1096.170000px;}
.yf3{bottom:1104.810000px;}
.y2{bottom:1106.250000px;}
.yd2{bottom:1119.750000px;}
.y42{bottom:1120.830000px;}
.yf2{bottom:1126.590000px;}
.y7{bottom:1128.570000px;}
.yd1{bottom:1144.410000px;}
.y41{bottom:1145.520000px;}
.yf1{bottom:1148.400000px;}
.y4{bottom:1156.860000px;}
.yd0{bottom:1169.100000px;}
.ya4{bottom:1169.820000px;}
.y40{bottom:1170.180000px;}
.y3e{bottom:1187.280000px;}
.y3d{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.185000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1c{height:30.480469px;}
.h18{height:36.861328px;}
.h1f{height:46.251562px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h19{height:64.978594px;}
.h1b{height:65.010937px;}
.h1d{height:65.499609px;}
.h1a{height:66.757500px;}
.h1e{height:68.084282px;}
.h14{height:70.628906px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h12{height:97.185000px;}
.h3{height:103.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.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;}
.x10{left:20.685000px;}
.x13{left:31.129500px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x14{left:59.023500px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.x16{left:94.483500px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x1d{left:123.516000px;}
.x1e{left:150.510000px;}
.x17{left:158.608500px;}
.x1a{left:162.030000px;}
.x4{left:168.885000px;}
.x6{left:209.010000px;}
.x15{left:210.448500px;}
.x18{left:324.965515px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x1b{left:473.505000px;}
.x20{left:488.985000px;}
.x1f{left:515.985000px;}
.x1c{left:527.505000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.504533pt;}
.ls12{letter-spacing:-0.406933pt;}
.ls15{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.169067pt;}
.lsb{letter-spacing:-0.135467pt;}
.ls7{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.101333pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.069333pt;}
.ls18{letter-spacing:0.135467pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls13{letter-spacing:0.233067pt;}
.ls10{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.368533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls16{letter-spacing:35.450027pt;}
.ls17{letter-spacing:35.471360pt;}
.ls14{letter-spacing:39.040000pt;}
.lsc{letter-spacing:52.730027pt;}
.lsd{letter-spacing:52.751360pt;}
.ws7{word-spacing:-69.120000pt;}
.wsc{word-spacing:-58.880000pt;}
.wsa{word-spacing:-21.389227pt;}
.ws6{word-spacing:-17.280000pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.wsb{word-spacing:-15.088533pt;}
.wsd{word-spacing:-14.991467pt;}
.ws10{word-spacing:-14.855467pt;}
.wse{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.584533pt;}
.wsf{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._9{width:1.864960pt;}
._8{width:3.065600pt;}
._6{width:4.003840pt;}
._7{width:5.420800pt;}
._3{width:6.920320pt;}
._2{width:7.831040pt;}
._5{width:8.802133pt;}
._12{width:10.289067pt;}
._11{width:11.395200pt;}
._a{width:12.659200pt;}
._4{width:13.601280pt;}
._13{width:15.736960pt;}
._c{width:17.110400pt;}
._b{width:18.017280pt;}
._d{width:19.371520pt;}
._e{width:20.580480pt;}
._1d{width:21.550080pt;}
._1e{width:22.804480pt;}
._10{width:24.435200pt;}
._29{width:25.495040pt;}
._17{width:26.967040pt;}
._18{width:28.131200pt;}
._23{width:29.543040pt;}
._26{width:31.001600pt;}
._43{width:31.910400pt;}
._1f{width:32.855040pt;}
._45{width:34.063360pt;}
._31{width:35.064960pt;}
._24{width:36.034560pt;}
._33{width:37.105920pt;}
._20{width:38.095360pt;}
._32{width:39.096320pt;}
._15{width:40.053760pt;}
._16{width:41.260160pt;}
._2d{width:42.321920pt;}
._28{width:43.276800pt;}
._3c{width:44.205440pt;}
._25{width:45.395840pt;}
._f{width:46.291627pt;}
._19{width:47.358933pt;}
._35{width:48.279680pt;}
._22{width:49.313920pt;}
._21{width:50.224640pt;}
._3d{width:51.166720pt;}
._4d{width:52.379520pt;}
._34{width:53.286400pt;}
._37{width:57.643520pt;}
._40{width:58.644480pt;}
._41{width:59.676800pt;}
._4a{width:62.279040pt;}
._2c{width:63.386240pt;}
._2b{width:64.590720pt;}
._14{width:66.063360pt;}
._38{width:67.182080pt;}
._39{width:68.595200pt;}
._27{width:70.067200pt;}
._30{width:71.715840pt;}
._3e{width:72.775680pt;}
._3f{width:73.717760pt;}
._46{width:77.898240pt;}
._36{width:79.900160pt;}
._47{width:81.285760pt;}
._42{width:84.257280pt;}
._44{width:85.964800pt;}
._4c{width:87.173760pt;}
._2e{width:89.968640pt;}
._2f{width:91.236480pt;}
._3a{width:99.978240pt;}
._3b{width:101.016960pt;}
._48{width:106.337280pt;}
._49{width:107.400960pt;}
._4b{width:112.578560pt;}
._1c{width:135.905280pt;}
._4e{width:149.614080pt;}
._1a{width:168.548907pt;}
._1b{width:175.686400pt;}
._2a{width:180.851200pt;}
._51{width:227.571200pt;}
._50{width:550.500480pt;}
._4f{width:667.287040pt;}
._52{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs7{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.y15{bottom:23.520000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y14{bottom:42.720000pt;}
.y1{bottom:45.760000pt;}
.y13{bottom:63.520000pt;}
.y3f{bottom:66.880000pt;}
.y115{bottom:108.800000pt;}
.yea{bottom:112.960000pt;}
.ycf{bottom:113.920000pt;}
.ybb{bottom:115.040000pt;}
.y6a{bottom:116.000000pt;}
.y3b{bottom:116.640000pt;}
.ya3{bottom:118.880000pt;}
.yec{bottom:119.200000pt;}
.y114{bottom:128.480000pt;}
.ye9{bottom:134.560000pt;}
.yce{bottom:135.840000pt;}
.yba{bottom:136.960000pt;}
.y69{bottom:137.920000pt;}
.y3a{bottom:138.560000pt;}
.ya2{bottom:141.120000pt;}
.yf0{bottom:146.240000pt;}
.y113{bottom:147.840000pt;}
.ycd{bottom:157.760000pt;}
.yb9{bottom:158.880000pt;}
.y68{bottom:159.840000pt;}
.y39{bottom:160.480000pt;}
.ya1{bottom:163.040000pt;}
.yef{bottom:165.600000pt;}
.y112{bottom:167.200000pt;}
.ycc{bottom:179.680000pt;}
.yb8{bottom:180.800000pt;}
.y8e{bottom:181.760000pt;}
.y67{bottom:181.920000pt;}
.y38{bottom:182.400000pt;}
.yee{bottom:184.666667pt;}
.ya0{bottom:184.986667pt;}
.y111{bottom:186.746667pt;}
.ycb{bottom:201.466667pt;}
.ye8{bottom:201.626667pt;}
.yb7{bottom:202.426667pt;}
.y8d{bottom:203.706667pt;}
.y37{bottom:204.346667pt;}
.y66{bottom:204.826667pt;}
.y110{bottom:206.106667pt;}
.y9f{bottom:206.906667pt;}
.ye7{bottom:223.546667pt;}
.yca{bottom:224.346667pt;}
.yb6{bottom:225.466667pt;}
.y8c{bottom:225.786667pt;}
.y36{bottom:226.266667pt;}
.y65{bottom:226.746667pt;}
.y9e{bottom:228.826667pt;}
.y10f{bottom:244.826667pt;}
.ye6{bottom:245.466667pt;}
.yc9{bottom:246.586667pt;}
.y8b{bottom:247.706667pt;}
.y35{bottom:248.186667pt;}
.y64{bottom:248.666667pt;}
.y9d{bottom:250.746667pt;}
.y10e{bottom:264.346667pt;}
.ye5{bottom:267.546667pt;}
.yc8{bottom:268.506667pt;}
.y8a{bottom:269.626667pt;}
.y34{bottom:270.106667pt;}
.y63{bottom:270.586667pt;}
.y9c{bottom:272.666667pt;}
.y10d{bottom:283.706667pt;}
.yc7{bottom:290.426667pt;}
.y89{bottom:291.546667pt;}
.y33{bottom:292.026667pt;}
.y62{bottom:292.506667pt;}
.y9b{bottom:294.586667pt;}
.y10c{bottom:303.066667pt;}
.yc6{bottom:312.346667pt;}
.y88{bottom:313.466667pt;}
.y32{bottom:313.626667pt;}
.y3c{bottom:313.946667pt;}
.y61{bottom:314.426667pt;}
.y9a{bottom:316.506667pt;}
.y10b{bottom:322.426667pt;}
.yc5{bottom:334.266667pt;}
.y87{bottom:335.386667pt;}
.y31{bottom:335.546667pt;}
.yb5{bottom:336.346667pt;}
.y60{bottom:336.506667pt;}
.y99{bottom:338.426667pt;}
.y10a{bottom:341.786667pt;}
.yc4{bottom:356.186667pt;}
.y30{bottom:356.986667pt;}
.y86{bottom:357.306667pt;}
.yb4{bottom:358.266667pt;}
.y5f{bottom:359.386667pt;}
.y98{bottom:360.346667pt;}
.y109{bottom:361.306667pt;}
.y2f{bottom:376.506667pt;}
.yc3{bottom:378.106667pt;}
.y85{bottom:379.226667pt;}
.yb3{bottom:380.186667pt;}
.y108{bottom:380.666667pt;}
.y5e{bottom:381.306667pt;}
.y97{bottom:382.266667pt;}
.yc2{bottom:400.066667pt;}
.y2e{bottom:400.226667pt;}
.y84{bottom:400.866667pt;}
.yb2{bottom:402.146667pt;}
.y5d{bottom:403.266667pt;}
.y96{bottom:404.226667pt;}
.y107{bottom:419.426667pt;}
.y2d{bottom:419.586667pt;}
.yc1{bottom:421.986667pt;}
.ye4{bottom:422.146667pt;}
.y83{bottom:423.106667pt;}
.yb1{bottom:424.066667pt;}
.y5c{bottom:425.186667pt;}
.y95{bottom:426.306667pt;}
.y2c{bottom:438.946667pt;}
.yc0{bottom:443.746667pt;}
.ye3{bottom:444.706667pt;}
.y82{bottom:445.026667pt;}
.yb0{bottom:445.986667pt;}
.y5b{bottom:447.106667pt;}
.y94{bottom:448.226667pt;}
.y2b{bottom:458.306667pt;}
.y81{bottom:466.946667pt;}
.yaf{bottom:468.066667pt;}
.y5a{bottom:469.026667pt;}
.y93{bottom:470.146667pt;}
.y106{bottom:477.666667pt;}
.y2a{bottom:477.826667pt;}
.y80{bottom:488.866667pt;}
.y59{bottom:490.946667pt;}
.y92{bottom:492.066667pt;}
.y105{bottom:497.026667pt;}
.y29{bottom:497.186667pt;}
.y7f{bottom:510.786667pt;}
.y58{bottom:512.866667pt;}
.y91{bottom:513.986667pt;}
.y104{bottom:516.386667pt;}
.y28{bottom:516.546667pt;}
.y7e{bottom:532.706667pt;}
.y57{bottom:534.626667pt;}
.yae{bottom:534.786667pt;}
.y27{bottom:535.906667pt;}
.y7d{bottom:554.626667pt;}
.y26{bottom:555.266667pt;}
.yad{bottom:556.706667pt;}
.y56{bottom:557.826667pt;}
.y103{bottom:574.626667pt;}
.y25{bottom:574.786667pt;}
.y7c{bottom:576.546667pt;}
.yac{bottom:578.626667pt;}
.y55{bottom:579.746667pt;}
.y102{bottom:593.986667pt;}
.y24{bottom:594.146667pt;}
.ye2{bottom:598.146667pt;}
.y7b{bottom:598.466667pt;}
.yab{bottom:600.546667pt;}
.y54{bottom:601.693333pt;}
.y23{bottom:613.533333pt;}
.ye1{bottom:620.093333pt;}
.y7a{bottom:620.413333pt;}
.yaa{bottom:622.493333pt;}
.y53{bottom:623.613333pt;}
.y22{bottom:632.893333pt;}
.y79{bottom:642.333333pt;}
.ybf{bottom:642.493333pt;}
.ya9{bottom:644.413333pt;}
.y52{bottom:645.213333pt;}
.y90{bottom:645.533333pt;}
.y21{bottom:652.253333pt;}
.ye0{bottom:664.253333pt;}
.y78{bottom:664.413333pt;}
.ybe{bottom:665.053333pt;}
.ya8{bottom:666.333333pt;}
.y51{bottom:667.133333pt;}
.y8f{bottom:667.453333pt;}
.y101{bottom:671.613333pt;}
.y20{bottom:671.773333pt;}
.ydf{bottom:686.173333pt;}
.y77{bottom:687.293333pt;}
.ya7{bottom:688.093333pt;}
.y50{bottom:689.373333pt;}
.y100{bottom:690.973333pt;}
.y1f{bottom:691.133333pt;}
.yde{bottom:708.093333pt;}
.y76{bottom:709.213333pt;}
.y1e{bottom:710.493333pt;}
.ya6{bottom:710.973333pt;}
.y4f{bottom:711.293333pt;}
.y1d{bottom:729.853333pt;}
.ydd{bottom:730.013333pt;}
.y75{bottom:731.133333pt;}
.ya5{bottom:732.893333pt;}
.y4e{bottom:733.213333pt;}
.yff{bottom:749.213333pt;}
.y1c{bottom:749.373333pt;}
.ydc{bottom:751.933333pt;}
.y74{bottom:753.053333pt;}
.y4d{bottom:755.133333pt;}
.yfe{bottom:768.573333pt;}
.y1b{bottom:768.733333pt;}
.ydb{bottom:773.853333pt;}
.y73{bottom:774.973333pt;}
.y4c{bottom:777.053333pt;}
.y1a{bottom:787.773333pt;}
.yfd{bottom:787.933333pt;}
.yda{bottom:795.933333pt;}
.y72{bottom:796.893333pt;}
.y4b{bottom:798.973333pt;}
.y19{bottom:804.893333pt;}
.yfc{bottom:807.453333pt;}
.y17{bottom:812.613333pt;}
.y71{bottom:818.533333pt;}
.ybd{bottom:818.853333pt;}
.y12{bottom:819.013333pt;}
.y4a{bottom:820.933333pt;}
.y16{bottom:822.663289pt;}
.yfb{bottom:826.853333pt;}
.yd9{bottom:840.773333pt;}
.y70{bottom:841.893333pt;}
.y49{bottom:842.853333pt;}
.yfa{bottom:846.213333pt;}
.yd8{bottom:862.693333pt;}
.y6f{bottom:863.813333pt;}
.y48{bottom:864.773333pt;}
.yf9{bottom:865.573333pt;}
.yd7{bottom:884.613333pt;}
.yf8{bottom:885.093333pt;}
.y6e{bottom:885.733333pt;}
.y47{bottom:886.693333pt;}
.yf7{bottom:904.453333pt;}
.y10{bottom:905.413333pt;}
.yd6{bottom:906.533333pt;}
.y6d{bottom:907.653333pt;}
.y46{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.yf6{bottom:923.813333pt;}
.yd5{bottom:928.453333pt;}
.y6c{bottom:929.573333pt;}
.y45{bottom:930.533333pt;}
.yf5{bottom:943.173333pt;}
.yd4{bottom:950.213333pt;}
.y6b{bottom:951.493333pt;}
.yeb{bottom:952.133333pt;}
.y44{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.yf4{bottom:962.533333pt;}
.ybc{bottom:973.093333pt;}
.yd3{bottom:973.413333pt;}
.yed{bottom:974.053333pt;}
.y43{bottom:974.373333pt;}
.yf3{bottom:982.053333pt;}
.y2{bottom:983.333333pt;}
.yd2{bottom:995.333333pt;}
.y42{bottom:996.293333pt;}
.yf2{bottom:1001.413333pt;}
.y7{bottom:1003.173333pt;}
.yd1{bottom:1017.253333pt;}
.y41{bottom:1018.240000pt;}
.yf1{bottom:1020.800000pt;}
.y4{bottom:1028.320000pt;}
.yd0{bottom:1039.200000pt;}
.ya4{bottom:1039.840000pt;}
.y40{bottom:1040.160000pt;}
.y3e{bottom:1055.360000pt;}
.y3d{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.386667pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1c{height:27.093750pt;}
.h18{height:32.765625pt;}
.h1f{height:41.112500pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1b{height:57.787500pt;}
.h1d{height:58.221875pt;}
.h1a{height:59.340000pt;}
.h1e{height:60.519362pt;}
.h14{height:62.781250pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h12{height:86.386667pt;}
.h3{height:92.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.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;}
.x10{left:18.386667pt;}
.x13{left:27.670667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x14{left:52.465333pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.x16{left:83.985333pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x1d{left:109.792000pt;}
.x1e{left:133.786667pt;}
.x17{left:140.985333pt;}
.x1a{left:144.026667pt;}
.x4{left:150.120000pt;}
.x6{left:185.786667pt;}
.x15{left:187.065333pt;}
.x18{left:288.858236pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x1b{left:420.893333pt;}
.x20{left:434.653333pt;}
.x1f{left:458.653333pt;}
.x1c{left:468.893333pt;}
.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; }
  