
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_4a786220c10f622f58b7e48e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b93df57f87474f84322b9156.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966309;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_0d0d2e92ad614475e875ff55.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_654b497ee17c4b59805b4492.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_16aa21da4043d52b4af55105.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e35416d05702ec3dd725f891.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1c8a4588e6c29dd8622dbb98.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8bacb575edba05167e737f1b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_7f346a786155048e3cfc8eb0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.859375;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_2044fe0fa26dbc647343bd61.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7116626c4e8aefcdd8266771.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls12{letter-spacing:-1.908000px;}
.ls6{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-0.972000px;}
.ls4{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.630000px;}
.ls1a{letter-spacing:-0.507000px;}
.lse{letter-spacing:-0.486600px;}
.lsd{letter-spacing:-0.466800px;}
.ls5{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.089400px;}
.lsc{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.020160px;}
.ls18{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.423360px;}
.lsf{letter-spacing:0.466800px;}
.ls15{letter-spacing:0.507000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.869760px;}
.ls14{letter-spacing:1.458000px;}
.ls8{letter-spacing:3.600000px;}
.ls9{letter-spacing:7.920000px;}
.ls17{letter-spacing:18.000000px;}
.ls16{letter-spacing:20.880000px;}
.lsa{letter-spacing:45.106560px;}
.ls19{letter-spacing:46.546560px;}
.lsb{letter-spacing:55.186560px;}
.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;}
}
.wsa{word-spacing:-60.480000px;}
.wsf{word-spacing:-16.578000px;}
.ws10{word-spacing:-15.627000px;}
.wsb{word-spacing:-15.586800px;}
.wsd{word-spacing:-15.543360px;}
.wsc{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws8{word-spacing:-15.099840px;}
.ws9{word-spacing:-14.633400px;}
.ws11{word-spacing:-14.613000px;}
.ws4{word-spacing:-13.680000px;}
.wse{word-spacing:-13.212000px;}
.ws6{word-spacing:-13.050000px;}
.ws2{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._1a{margin-left:-14.400000px;}
._19{margin-left:-3.842880px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._7{width:4.446720px;}
._6{width:5.846400px;}
._12{width:7.110720px;}
._16{width:8.130240px;}
._d{width:9.270720px;}
._e{width:10.370880px;}
._c{width:11.638080px;}
._13{width:13.530240px;}
._a{width:14.852160px;}
._8{width:16.243200px;}
._9{width:17.305920px;}
._f{width:18.541440px;}
._b{width:19.558080px;}
._15{width:20.718720px;}
._14{width:21.738240px;}
._11{width:23.647680px;}
._1b{width:25.095840px;}
._10{width:26.288640px;}
._17{width:28.365120px;}
._26{width:29.390400px;}
._18{width:30.597120px;}
._21{width:31.622400px;}
._2f{width:33.894720px;}
._30{width:35.622720px;}
._31{width:36.771840px;}
._3b{width:40.461120px;}
._3c{width:41.670720px;}
._1c{width:43.208640px;}
._1d{width:44.582400px;}
._20{width:46.992960px;}
._3a{width:48.237120px;}
._2a{width:51.952320px;}
._1e{width:53.403840px;}
._2c{width:54.855360px;}
._3e{width:56.089440px;}
._2d{width:57.456000px;}
._2e{width:59.227680px;}
._36{width:60.298560px;}
._35{width:62.138880px;}
._32{width:63.676800px;}
._22{width:64.793280px;}
._23{width:65.862720px;}
._3f{width:70.554240px;}
._33{width:72.696960px;}
._25{width:80.196480px;}
._24{width:81.406080px;}
._28{width:82.641600px;}
._39{width:84.611520px;}
._40{width:85.881600px;}
._38{width:89.449920px;}
._37{width:90.624960px;}
._2b{width:92.292480px;}
._1f{width:96.651840px;}
._3d{width:99.100800px;}
._27{width:109.226880px;}
._29{width:111.222720px;}
._34{width:113.546880px;}
._43{width:126.005760px;}
._44{width:127.344960px;}
._41{width:133.558560px;}
._42{width:195.073920px;}
._45{width:201.024000px;}
._5{width:202.320000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:5.760000px;}
.fs6{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:3.235500px;}
.y9f{bottom:3.585000px;}
.ydc{bottom:3.595500px;}
.y44{bottom:3.600000px;}
.y9c{bottom:3.945000px;}
.yde{bottom:3.955500px;}
.y5{bottom:3.960000px;}
.y5a{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y57{bottom:16.555500px;}
.ya4{bottom:20.505000px;}
.y9e{bottom:20.865000px;}
.ydb{bottom:20.875500px;}
.y43{bottom:20.880000px;}
.yae{bottom:20.925000px;}
.y9b{bottom:21.225000px;}
.ydd{bottom:21.235500px;}
.y4{bottom:21.240000px;}
.yed{bottom:21.270000px;}
.y113{bottom:21.274500px;}
.yaf{bottom:21.285000px;}
.y56{bottom:32.074500px;}
.y4b{bottom:32.794500px;}
.ybf{bottom:37.815000px;}
.ya1{bottom:37.830000px;}
.y99{bottom:38.145000px;}
.y42{bottom:38.160000px;}
.yc0{bottom:38.175000px;}
.ya2{bottom:38.190000px;}
.y111{bottom:38.194500px;}
.y9a{bottom:38.505000px;}
.y97{bottom:38.520000px;}
.yd7{bottom:38.535000px;}
.yab{bottom:38.550000px;}
.y112{bottom:38.554500px;}
.y95{bottom:38.565000px;}
.y3{bottom:44.280000px;}
.y55{bottom:49.354500px;}
.y4a{bottom:53.674500px;}
.yc2{bottom:55.065000px;}
.yc9{bottom:55.110000px;}
.yc3{bottom:55.425000px;}
.y41{bottom:55.440000px;}
.yca{bottom:55.470000px;}
.yf3{bottom:55.485000px;}
.yd9{bottom:55.785000px;}
.ybd{bottom:55.800000px;}
.yd6{bottom:55.815000px;}
.yec{bottom:55.830000px;}
.yf4{bottom:55.845000px;}
.y7{bottom:57.636000px;}
.y54{bottom:65.554500px;}
.y49{bottom:66.994500px;}
.ycc{bottom:72.360000px;}
.y40{bottom:72.720000px;}
.yd4{bottom:72.735000px;}
.yfe{bottom:72.750000px;}
.yce{bottom:73.080000px;}
.yd5{bottom:73.095000px;}
.y100{bottom:73.110000px;}
.y53{bottom:78.154500px;}
.y52{bottom:84.634500px;}
.y48{bottom:86.434500px;}
.y3f{bottom:90.000000px;}
.yfd{bottom:90.030000px;}
.yff{bottom:90.390000px;}
.y51{bottom:100.474500px;}
.yf8{bottom:105.516000px;}
.yda{bottom:105.520500px;}
.y114{bottom:105.876000px;}
.yb9{bottom:106.236000px;}
.y58{bottom:106.596000px;}
.y3e{bottom:107.325000px;}
.y50{bottom:115.954500px;}
.y92{bottom:120.636000px;}
.y45{bottom:121.000500px;}
.yb8{bottom:123.516000px;}
.y3d{bottom:124.605000px;}
.y4f{bottom:131.434500px;}
.yf7{bottom:131.796000px;}
.y110{bottom:136.840500px;}
.y91{bottom:137.916000px;}
.yb7{bottom:140.436000px;}
.y3c{bottom:141.885000px;}
.y4e{bottom:146.914500px;}
.y47{bottom:148.714500px;}
.y90{bottom:154.875000px;}
.y146{bottom:155.955000px;}
.yd8{bottom:155.970000px;}
.yb6{bottom:157.755000px;}
.y3b{bottom:159.165000px;}
.y46{bottom:159.184500px;}
.y4d{bottom:162.064500px;}
.yf6{bottom:162.810000px;}
.y8f{bottom:172.515000px;}
.yb5{bottom:175.035000px;}
.y3a{bottom:176.085000px;}
.y8e{bottom:189.795000px;}
.yb4{bottom:192.315000px;}
.y39{bottom:202.725000px;}
.y10f{bottom:204.570000px;}
.y8d{bottom:206.715000px;}
.y145{bottom:207.075000px;}
.yb3{bottom:209.595000px;}
.y38{bottom:219.645000px;}
.y144{bottom:224.355000px;}
.y8c{bottom:233.355000px;}
.y37{bottom:236.955000px;}
.yb2{bottom:240.210000px;}
.yd3{bottom:240.930000px;}
.y143{bottom:241.635000px;}
.yf5{bottom:247.770000px;}
.y8b{bottom:250.275000px;}
.y36{bottom:254.235000px;}
.y142{bottom:258.915000px;}
.y8a{bottom:267.555000px;}
.y35{bottom:271.515000px;}
.y141{bottom:276.225000px;}
.y89{bottom:285.225000px;}
.y34{bottom:288.795000px;}
.y10e{bottom:289.545000px;}
.yb1{bottom:290.625000px;}
.y140{bottom:293.505000px;}
.y88{bottom:302.145000px;}
.y33{bottom:306.075000px;}
.yf{bottom:310.065000px;}
.y13f{bottom:310.785000px;}
.y87{bottom:319.785000px;}
.y32{bottom:323.355000px;}
.y13e{bottom:327.705000px;}
.y86{bottom:336.705000px;}
.y31{bottom:340.635000px;}
.yb0{bottom:341.025000px;}
.yd2{bottom:343.185000px;}
.y1d{bottom:344.955000px;}
.y13d{bottom:344.985000px;}
.yf2{bottom:350.025000px;}
.y85{bottom:353.985000px;}
.y30{bottom:357.915000px;}
.y13c{bottom:362.265000px;}
.y1c{bottom:369.105000px;}
.y84{bottom:371.625000px;}
.yd1{bottom:372.705000px;}
.y10d{bottom:374.505000px;}
.y2f{bottom:375.225000px;}
.y13b{bottom:379.545000px;}
.y83{bottom:388.545000px;}
.yd0{bottom:389.985000px;}
.yad{bottom:391.425000px;}
.y2e{bottom:392.505000px;}
.y1b{bottom:393.225000px;}
.y13a{bottom:396.825000px;}
.y10c{bottom:403.665000px;}
.y82{bottom:405.870000px;}
.ycf{bottom:406.950000px;}
.y2d{bottom:409.425000px;}
.y139{bottom:414.150000px;}
.y1a{bottom:417.345000px;}
.y81{bottom:423.510000px;}
.y2c{bottom:426.705000px;}
.y10b{bottom:430.350000px;}
.y138{bottom:431.430000px;}
.yf1{bottom:435.030000px;}
.ycd{bottom:437.910000px;}
.y80{bottom:440.430000px;}
.y19{bottom:441.465000px;}
.yac{bottom:441.870000px;}
.y2b{bottom:443.625000px;}
.y10a{bottom:447.630000px;}
.y137{bottom:448.710000px;}
.y7f{bottom:458.070000px;}
.yf0{bottom:464.550000px;}
.y109{bottom:464.910000px;}
.y18{bottom:465.585000px;}
.y136{bottom:465.990000px;}
.y2a{bottom:469.545000px;}
.y7e{bottom:474.990000px;}
.yef{bottom:481.830000px;}
.y108{bottom:482.190000px;}
.y135{bottom:483.270000px;}
.y29{bottom:485.385000px;}
.y17{bottom:489.705000px;}
.y7d{bottom:492.270000px;}
.yee{bottom:498.750000px;}
.y107{bottom:499.470000px;}
.y134{bottom:500.190000px;}
.y28{bottom:500.910000px;}
.yaa{bottom:509.550000px;}
.y7c{bottom:509.910000px;}
.y16{bottom:513.870000px;}
.y27{bottom:516.390000px;}
.y106{bottom:516.750000px;}
.y7b{bottom:526.830000px;}
.yeb{bottom:529.710000px;}
.y26{bottom:531.870000px;}
.y105{bottom:533.310000px;}
.y15{bottom:537.990000px;}
.ycb{bottom:540.180000px;}
.y133{bottom:543.780000px;}
.y25{bottom:547.350000px;}
.y7a{bottom:553.500000px;}
.y104{bottom:559.980000px;}
.y132{bottom:561.060000px;}
.y14{bottom:562.470000px;}
.y24{bottom:562.830000px;}
.y79{bottom:570.780000px;}
.ya9{bottom:577.260000px;}
.y23{bottom:578.310000px;}
.y131{bottom:578.340000px;}
.y13{bottom:586.590000px;}
.y78{bottom:588.060000px;}
.y22{bottom:593.790000px;}
.y103{bottom:594.540000px;}
.y130{bottom:595.620000px;}
.y77{bottom:604.980000px;}
.y21{bottom:609.630000px;}
.y12{bottom:610.710000px;}
.y102{bottom:611.820000px;}
.y12f{bottom:612.900000px;}
.yea{bottom:614.700000px;}
.y20{bottom:625.140000px;}
.ya8{bottom:627.660000px;}
.y12e{bottom:630.180000px;}
.y76{bottom:631.620000px;}
.y101{bottom:633.420000px;}
.y11{bottom:634.860000px;}
.y1f{bottom:640.620000px;}
.yc8{bottom:642.420000px;}
.y12d{bottom:647.460000px;}
.y75{bottom:648.900000px;}
.y1e{bottom:655.740000px;}
.ya7{bottom:657.180000px;}
.y10{bottom:658.980000px;}
.y12c{bottom:664.380000px;}
.y74{bottom:666.180000px;}
.ya6{bottom:674.490000px;}
.ye9{bottom:682.425000px;}
.y73{bottom:683.130000px;}
.y12b{bottom:691.050000px;}
.ya5{bottom:691.410000px;}
.y72{bottom:700.410000px;}
.y12a{bottom:707.970000px;}
.y71{bottom:717.690000px;}
.ya3{bottom:722.745000px;}
.y129{bottom:725.610000px;}
.yc7{bottom:727.065000px;}
.y70{bottom:734.970000px;}
.yfc{bottom:735.705000px;}
.y128{bottom:742.890000px;}
.y6f{bottom:751.890000px;}
.yc6{bottom:756.930000px;}
.y127{bottom:759.810000px;}
.ye8{bottom:767.385000px;}
.y6e{bottom:769.530000px;}
.ya0{bottom:773.145000px;}
.yc5{bottom:774.210000px;}
.y126{bottom:777.450000px;}
.y6d{bottom:786.810000px;}
.yc4{bottom:790.770000px;}
.y125{bottom:794.370000px;}
.ye7{bottom:796.890000px;}
.y6c{bottom:803.775000px;}
.y124{bottom:812.055000px;}
.ye6{bottom:813.855000px;}
.yc1{bottom:822.150000px;}
.y123{bottom:828.975000px;}
.y6b{bottom:830.415000px;}
.ye5{bottom:840.495000px;}
.y9d{bottom:840.510000px;}
.y6a{bottom:847.695000px;}
.yfb{bottom:855.270000px;}
.y122{bottom:855.615000px;}
.ye4{bottom:857.775000px;}
.y69{bottom:864.975000px;}
.y121{bottom:872.535000px;}
.ye3{bottom:875.055000px;}
.y68{bottom:882.255000px;}
.y120{bottom:889.815000px;}
.y98{bottom:890.910000px;}
.ye2{bottom:891.975000px;}
.y67{bottom:899.175000px;}
.y11f{bottom:907.095000px;}
.ybe{bottom:907.110000px;}
.ye1{bottom:909.255000px;}
.y66{bottom:916.455000px;}
.y11e{bottom:924.375000px;}
.ye0{bottom:926.535000px;}
.y65{bottom:933.765000px;}
.yfa{bottom:940.245000px;}
.y11d{bottom:941.685000px;}
.y64{bottom:951.045000px;}
.ydf{bottom:957.525000px;}
.y96{bottom:958.605000px;}
.y11c{bottom:959.325000px;}
.y63{bottom:968.325000px;}
.ybc{bottom:974.445000px;}
.y11b{bottom:976.245000px;}
.y62{bottom:985.605000px;}
.ye{bottom:991.005000px;}
.y11a{bottom:993.525000px;}
.yd{bottom:998.565000px;}
.y61{bottom:1002.885000px;}
.y119{bottom:1019.805000px;}
.y60{bottom:1020.165000px;}
.yc{bottom:1022.685000px;}
.y94{bottom:1026.285000px;}
.y118{bottom:1037.085000px;}
.y5f{bottom:1037.445000px;}
.yb{bottom:1039.965000px;}
.yf9{bottom:1042.125000px;}
.ya{bottom:1050.045000px;}
.y117{bottom:1054.005000px;}
.y5e{bottom:1054.725000px;}
.ybb{bottom:1059.405000px;}
.y9{bottom:1069.530000px;}
.y116{bottom:1071.690000px;}
.y5d{bottom:1072.050000px;}
.y8{bottom:1088.250000px;}
.y115{bottom:1088.610000px;}
.y5c{bottom:1088.970000px;}
.y59{bottom:1091.520000px;}
.y93{bottom:1094.010000px;}
.yba{bottom:1105.890000px;}
.y5b{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h15{height:5.650313px;}
.h19{height:17.265000px;}
.h20{height:17.280000px;}
.h23{height:17.310000px;}
.hc{height:18.372656px;}
.h6{height:24.348516px;}
.h16{height:27.720000px;}
.h13{height:29.678906px;}
.h1f{height:34.185000px;}
.h1d{height:34.545000px;}
.h2b{height:34.555500px;}
.h21{height:34.560000px;}
.h22{height:34.590000px;}
.ha{height:38.158594px;}
.h9{height:39.183750px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h25{height:51.480000px;}
.h1e{height:51.501000px;}
.h1b{height:51.825000px;}
.h1c{height:51.840000px;}
.h1a{height:51.870000px;}
.h31{height:51.871500px;}
.h10{height:53.677969px;}
.h14{height:55.147500px;}
.h5{height:59.357813px;}
.h11{height:60.155156px;}
.hb{height:60.952500px;}
.h18{height:62.163910px;}
.h17{height:63.455625px;}
.h7{height:63.577969px;}
.h3{height:65.884219px;}
.h8{height:66.543750px;}
.h26{height:68.745000px;}
.h27{height:68.796000px;}
.h24{height:69.105000px;}
.h30{height:69.120000px;}
.h2d{height:69.150000px;}
.h2{height:81.390000px;}
.h2c{height:86.025000px;}
.h28{height:86.040000px;}
.h29{height:86.385000px;}
.h2a{height:86.400000px;}
.h2f{height:86.436000px;}
.h2e{height:103.701000px;}
.h4{height:116.640000px;}
.h12{height:187.965000px;}
.hd{height:668.325000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.wb{width:169.245000px;}
.we{width:174.645000px;}
.w11{width:178.605000px;}
.w14{width:180.765000px;}
.w9{width:194.445000px;}
.w17{width:195.525000px;}
.w7{width:200.565000px;}
.w18{width:215.385000px;}
.wf{width:218.265000px;}
.w15{width:226.185000px;}
.w13{width:239.490000px;}
.wc{width:245.625000px;}
.w12{width:256.065000px;}
.w10{width:258.930000px;}
.wd{width:259.290000px;}
.w16{width:267.570000px;}
.w19{width:286.290000px;}
.wa{width:392.520000px;}
.w8{width:407.640000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:6.876000px;}
.x18{left:8.266500px;}
.x4{left:13.305000px;}
.x16{left:17.266500px;}
.x1c{left:18.346500px;}
.x5{left:19.425000px;}
.x17{left:29.146500px;}
.x10{left:43.906500px;}
.x1d{left:47.542500px;}
.x6{left:48.615000px;}
.x11{left:50.782500px;}
.x38{left:51.862500px;}
.x15{left:54.022500px;}
.xf{left:55.102500px;}
.x1e{left:57.262500px;}
.x2a{left:59.425500px;}
.x1a{left:62.295000px;}
.x30{left:64.105500px;}
.x34{left:65.185500px;}
.x26{left:72.015000px;}
.x14{left:73.105500px;}
.x23{left:75.220500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x13{left:90.025500px;}
.x33{left:93.270000px;}
.x2{left:95.425500px;}
.x37{left:97.249500px;}
.x1f{left:102.985500px;}
.x1b{left:106.945500px;}
.x29{left:108.769500px;}
.x21{left:113.436000px;}
.x2d{left:119.929500px;}
.x12{left:124.585500px;}
.x22{left:142.294500px;}
.x25{left:152.730000px;}
.x28{left:158.820000px;}
.xc{left:166.755000px;}
.x3{left:182.250000px;}
.x19{left:218.970000px;}
.xb{left:260.385000px;}
.x2b{left:278.745000px;}
.x31{left:288.105000px;}
.x35{left:290.265000px;}
.x39{left:293.505000px;}
.x2e{left:295.665000px;}
.x24{left:343.590000px;}
.x27{left:348.270000px;}
.x3a{left:509.985000px;}
.x2f{left:514.665000px;}
.x36{left:517.185000px;}
.x2c{left:525.465000px;}
.x32{left:545.265000px;}
.xa{left:580.215000px;}
.xd{left:624.855000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xe{left:807.090000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls12{letter-spacing:-1.696000pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-0.864000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.560000pt;}
.ls1a{letter-spacing:-0.450667pt;}
.lse{letter-spacing:-0.432533pt;}
.lsd{letter-spacing:-0.414933pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.079467pt;}
.lsc{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.017920pt;}
.ls18{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.376320pt;}
.lsf{letter-spacing:0.414933pt;}
.ls15{letter-spacing:0.450667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.773120pt;}
.ls14{letter-spacing:1.296000pt;}
.ls8{letter-spacing:3.200000pt;}
.ls9{letter-spacing:7.040000pt;}
.ls17{letter-spacing:16.000000pt;}
.ls16{letter-spacing:18.560000pt;}
.lsa{letter-spacing:40.094720pt;}
.ls19{letter-spacing:41.374720pt;}
.lsb{letter-spacing:49.054720pt;}
.wsa{word-spacing:-53.760000pt;}
.wsf{word-spacing:-14.736000pt;}
.ws10{word-spacing:-13.890667pt;}
.wsb{word-spacing:-13.854933pt;}
.wsd{word-spacing:-13.816320pt;}
.wsc{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.422080pt;}
.ws9{word-spacing:-13.007467pt;}
.ws11{word-spacing:-12.989333pt;}
.ws4{word-spacing:-12.160000pt;}
.wse{word-spacing:-11.744000pt;}
.ws6{word-spacing:-11.600000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._1a{margin-left:-12.800000pt;}
._19{margin-left:-3.415893pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._7{width:3.952640pt;}
._6{width:5.196800pt;}
._12{width:6.320640pt;}
._16{width:7.226880pt;}
._d{width:8.240640pt;}
._e{width:9.218560pt;}
._c{width:10.344960pt;}
._13{width:12.026880pt;}
._a{width:13.201920pt;}
._8{width:14.438400pt;}
._9{width:15.383040pt;}
._f{width:16.481280pt;}
._b{width:17.384960pt;}
._15{width:18.416640pt;}
._14{width:19.322880pt;}
._11{width:21.020160pt;}
._1b{width:22.307413pt;}
._10{width:23.367680pt;}
._17{width:25.213440pt;}
._26{width:26.124800pt;}
._18{width:27.197440pt;}
._21{width:28.108800pt;}
._2f{width:30.128640pt;}
._30{width:31.664640pt;}
._31{width:32.686080pt;}
._3b{width:35.965440pt;}
._3c{width:37.040640pt;}
._1c{width:38.407680pt;}
._1d{width:39.628800pt;}
._20{width:41.771520pt;}
._3a{width:42.877440pt;}
._2a{width:46.179840pt;}
._1e{width:47.470080pt;}
._2c{width:48.760320pt;}
._3e{width:49.857280pt;}
._2d{width:51.072000pt;}
._2e{width:52.646827pt;}
._36{width:53.598720pt;}
._35{width:55.234560pt;}
._32{width:56.601600pt;}
._22{width:57.594027pt;}
._23{width:58.544640pt;}
._3f{width:62.714880pt;}
._33{width:64.619520pt;}
._25{width:71.285760pt;}
._24{width:72.360960pt;}
._28{width:73.459200pt;}
._39{width:75.210240pt;}
._40{width:76.339200pt;}
._38{width:79.511040pt;}
._37{width:80.555520pt;}
._2b{width:82.037760pt;}
._1f{width:85.912747pt;}
._3d{width:88.089600pt;}
._27{width:97.090560pt;}
._29{width:98.864640pt;}
._34{width:100.930560pt;}
._43{width:112.005120pt;}
._44{width:113.195520pt;}
._41{width:118.718720pt;}
._42{width:173.399040pt;}
._45{width:178.688000pt;}
._5{width:179.840000pt;}
.fsb{font-size:5.120000pt;}
.fs6{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:2.876000pt;}
.y9f{bottom:3.186667pt;}
.ydc{bottom:3.196000pt;}
.y44{bottom:3.200000pt;}
.y9c{bottom:3.506667pt;}
.yde{bottom:3.516000pt;}
.y5{bottom:3.520000pt;}
.y5a{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y57{bottom:14.716000pt;}
.ya4{bottom:18.226667pt;}
.y9e{bottom:18.546667pt;}
.ydb{bottom:18.556000pt;}
.y43{bottom:18.560000pt;}
.yae{bottom:18.600000pt;}
.y9b{bottom:18.866667pt;}
.ydd{bottom:18.876000pt;}
.y4{bottom:18.880000pt;}
.yed{bottom:18.906667pt;}
.y113{bottom:18.910667pt;}
.yaf{bottom:18.920000pt;}
.y56{bottom:28.510667pt;}
.y4b{bottom:29.150667pt;}
.ybf{bottom:33.613333pt;}
.ya1{bottom:33.626667pt;}
.y99{bottom:33.906667pt;}
.y42{bottom:33.920000pt;}
.yc0{bottom:33.933333pt;}
.ya2{bottom:33.946667pt;}
.y111{bottom:33.950667pt;}
.y9a{bottom:34.226667pt;}
.y97{bottom:34.240000pt;}
.yd7{bottom:34.253333pt;}
.yab{bottom:34.266667pt;}
.y112{bottom:34.270667pt;}
.y95{bottom:34.280000pt;}
.y3{bottom:39.360000pt;}
.y55{bottom:43.870667pt;}
.y4a{bottom:47.710667pt;}
.yc2{bottom:48.946667pt;}
.yc9{bottom:48.986667pt;}
.yc3{bottom:49.266667pt;}
.y41{bottom:49.280000pt;}
.yca{bottom:49.306667pt;}
.yf3{bottom:49.320000pt;}
.yd9{bottom:49.586667pt;}
.ybd{bottom:49.600000pt;}
.yd6{bottom:49.613333pt;}
.yec{bottom:49.626667pt;}
.yf4{bottom:49.640000pt;}
.y7{bottom:51.232000pt;}
.y54{bottom:58.270667pt;}
.y49{bottom:59.550667pt;}
.ycc{bottom:64.320000pt;}
.y40{bottom:64.640000pt;}
.yd4{bottom:64.653333pt;}
.yfe{bottom:64.666667pt;}
.yce{bottom:64.960000pt;}
.yd5{bottom:64.973333pt;}
.y100{bottom:64.986667pt;}
.y53{bottom:69.470667pt;}
.y52{bottom:75.230667pt;}
.y48{bottom:76.830667pt;}
.y3f{bottom:80.000000pt;}
.yfd{bottom:80.026667pt;}
.yff{bottom:80.346667pt;}
.y51{bottom:89.310667pt;}
.yf8{bottom:93.792000pt;}
.yda{bottom:93.796000pt;}
.y114{bottom:94.112000pt;}
.yb9{bottom:94.432000pt;}
.y58{bottom:94.752000pt;}
.y3e{bottom:95.400000pt;}
.y50{bottom:103.070667pt;}
.y92{bottom:107.232000pt;}
.y45{bottom:107.556000pt;}
.yb8{bottom:109.792000pt;}
.y3d{bottom:110.760000pt;}
.y4f{bottom:116.830667pt;}
.yf7{bottom:117.152000pt;}
.y110{bottom:121.636000pt;}
.y91{bottom:122.592000pt;}
.yb7{bottom:124.832000pt;}
.y3c{bottom:126.120000pt;}
.y4e{bottom:130.590667pt;}
.y47{bottom:132.190667pt;}
.y90{bottom:137.666667pt;}
.y146{bottom:138.626667pt;}
.yd8{bottom:138.640000pt;}
.yb6{bottom:140.226667pt;}
.y3b{bottom:141.480000pt;}
.y46{bottom:141.497333pt;}
.y4d{bottom:144.057333pt;}
.yf6{bottom:144.720000pt;}
.y8f{bottom:153.346667pt;}
.yb5{bottom:155.586667pt;}
.y3a{bottom:156.520000pt;}
.y8e{bottom:168.706667pt;}
.yb4{bottom:170.946667pt;}
.y39{bottom:180.200000pt;}
.y10f{bottom:181.840000pt;}
.y8d{bottom:183.746667pt;}
.y145{bottom:184.066667pt;}
.yb3{bottom:186.306667pt;}
.y38{bottom:195.240000pt;}
.y144{bottom:199.426667pt;}
.y8c{bottom:207.426667pt;}
.y37{bottom:210.626667pt;}
.yb2{bottom:213.520000pt;}
.yd3{bottom:214.160000pt;}
.y143{bottom:214.786667pt;}
.yf5{bottom:220.240000pt;}
.y8b{bottom:222.466667pt;}
.y36{bottom:225.986667pt;}
.y142{bottom:230.146667pt;}
.y8a{bottom:237.826667pt;}
.y35{bottom:241.346667pt;}
.y141{bottom:245.533333pt;}
.y89{bottom:253.533333pt;}
.y34{bottom:256.706667pt;}
.y10e{bottom:257.373333pt;}
.yb1{bottom:258.333333pt;}
.y140{bottom:260.893333pt;}
.y88{bottom:268.573333pt;}
.y33{bottom:272.066667pt;}
.yf{bottom:275.613333pt;}
.y13f{bottom:276.253333pt;}
.y87{bottom:284.253333pt;}
.y32{bottom:287.426667pt;}
.y13e{bottom:291.293333pt;}
.y86{bottom:299.293333pt;}
.y31{bottom:302.786667pt;}
.yb0{bottom:303.133333pt;}
.yd2{bottom:305.053333pt;}
.y1d{bottom:306.626667pt;}
.y13d{bottom:306.653333pt;}
.yf2{bottom:311.133333pt;}
.y85{bottom:314.653333pt;}
.y30{bottom:318.146667pt;}
.y13c{bottom:322.013333pt;}
.y1c{bottom:328.093333pt;}
.y84{bottom:330.333333pt;}
.yd1{bottom:331.293333pt;}
.y10d{bottom:332.893333pt;}
.y2f{bottom:333.533333pt;}
.y13b{bottom:337.373333pt;}
.y83{bottom:345.373333pt;}
.yd0{bottom:346.653333pt;}
.yad{bottom:347.933333pt;}
.y2e{bottom:348.893333pt;}
.y1b{bottom:349.533333pt;}
.y13a{bottom:352.733333pt;}
.y10c{bottom:358.813333pt;}
.y82{bottom:360.773333pt;}
.ycf{bottom:361.733333pt;}
.y2d{bottom:363.933333pt;}
.y139{bottom:368.133333pt;}
.y1a{bottom:370.973333pt;}
.y81{bottom:376.453333pt;}
.y2c{bottom:379.293333pt;}
.y10b{bottom:382.533333pt;}
.y138{bottom:383.493333pt;}
.yf1{bottom:386.693333pt;}
.ycd{bottom:389.253333pt;}
.y80{bottom:391.493333pt;}
.y19{bottom:392.413333pt;}
.yac{bottom:392.773333pt;}
.y2b{bottom:394.333333pt;}
.y10a{bottom:397.893333pt;}
.y137{bottom:398.853333pt;}
.y7f{bottom:407.173333pt;}
.yf0{bottom:412.933333pt;}
.y109{bottom:413.253333pt;}
.y18{bottom:413.853333pt;}
.y136{bottom:414.213333pt;}
.y2a{bottom:417.373333pt;}
.y7e{bottom:422.213333pt;}
.yef{bottom:428.293333pt;}
.y108{bottom:428.613333pt;}
.y135{bottom:429.573333pt;}
.y29{bottom:431.453333pt;}
.y17{bottom:435.293333pt;}
.y7d{bottom:437.573333pt;}
.yee{bottom:443.333333pt;}
.y107{bottom:443.973333pt;}
.y134{bottom:444.613333pt;}
.y28{bottom:445.253333pt;}
.yaa{bottom:452.933333pt;}
.y7c{bottom:453.253333pt;}
.y16{bottom:456.773333pt;}
.y27{bottom:459.013333pt;}
.y106{bottom:459.333333pt;}
.y7b{bottom:468.293333pt;}
.yeb{bottom:470.853333pt;}
.y26{bottom:472.773333pt;}
.y105{bottom:474.053333pt;}
.y15{bottom:478.213333pt;}
.ycb{bottom:480.160000pt;}
.y133{bottom:483.360000pt;}
.y25{bottom:486.533333pt;}
.y7a{bottom:492.000000pt;}
.y104{bottom:497.760000pt;}
.y132{bottom:498.720000pt;}
.y14{bottom:499.973333pt;}
.y24{bottom:500.293333pt;}
.y79{bottom:507.360000pt;}
.ya9{bottom:513.120000pt;}
.y23{bottom:514.053333pt;}
.y131{bottom:514.080000pt;}
.y13{bottom:521.413333pt;}
.y78{bottom:522.720000pt;}
.y22{bottom:527.813333pt;}
.y103{bottom:528.480000pt;}
.y130{bottom:529.440000pt;}
.y77{bottom:537.760000pt;}
.y21{bottom:541.893333pt;}
.y12{bottom:542.853333pt;}
.y102{bottom:543.840000pt;}
.y12f{bottom:544.800000pt;}
.yea{bottom:546.400000pt;}
.y20{bottom:555.680000pt;}
.ya8{bottom:557.920000pt;}
.y12e{bottom:560.160000pt;}
.y76{bottom:561.440000pt;}
.y101{bottom:563.040000pt;}
.y11{bottom:564.320000pt;}
.y1f{bottom:569.440000pt;}
.yc8{bottom:571.040000pt;}
.y12d{bottom:575.520000pt;}
.y75{bottom:576.800000pt;}
.y1e{bottom:582.880000pt;}
.ya7{bottom:584.160000pt;}
.y10{bottom:585.760000pt;}
.y12c{bottom:590.560000pt;}
.y74{bottom:592.160000pt;}
.ya6{bottom:599.546667pt;}
.ye9{bottom:606.600000pt;}
.y73{bottom:607.226667pt;}
.y12b{bottom:614.266667pt;}
.ya5{bottom:614.586667pt;}
.y72{bottom:622.586667pt;}
.y12a{bottom:629.306667pt;}
.y71{bottom:637.946667pt;}
.ya3{bottom:642.440000pt;}
.y129{bottom:644.986667pt;}
.yc7{bottom:646.280000pt;}
.y70{bottom:653.306667pt;}
.yfc{bottom:653.960000pt;}
.y128{bottom:660.346667pt;}
.y6f{bottom:668.346667pt;}
.yc6{bottom:672.826667pt;}
.y127{bottom:675.386667pt;}
.ye8{bottom:682.120000pt;}
.y6e{bottom:684.026667pt;}
.ya0{bottom:687.240000pt;}
.yc5{bottom:688.186667pt;}
.y126{bottom:691.066667pt;}
.y6d{bottom:699.386667pt;}
.yc4{bottom:702.906667pt;}
.y125{bottom:706.106667pt;}
.ye7{bottom:708.346667pt;}
.y6c{bottom:714.466667pt;}
.y124{bottom:721.826667pt;}
.ye6{bottom:723.426667pt;}
.yc1{bottom:730.800000pt;}
.y123{bottom:736.866667pt;}
.y6b{bottom:738.146667pt;}
.ye5{bottom:747.106667pt;}
.y9d{bottom:747.120000pt;}
.y6a{bottom:753.506667pt;}
.yfb{bottom:760.240000pt;}
.y122{bottom:760.546667pt;}
.ye4{bottom:762.466667pt;}
.y69{bottom:768.866667pt;}
.y121{bottom:775.586667pt;}
.ye3{bottom:777.826667pt;}
.y68{bottom:784.226667pt;}
.y120{bottom:790.946667pt;}
.y98{bottom:791.920000pt;}
.ye2{bottom:792.866667pt;}
.y67{bottom:799.266667pt;}
.y11f{bottom:806.306667pt;}
.ybe{bottom:806.320000pt;}
.ye1{bottom:808.226667pt;}
.y66{bottom:814.626667pt;}
.y11e{bottom:821.666667pt;}
.ye0{bottom:823.586667pt;}
.y65{bottom:830.013333pt;}
.yfa{bottom:835.773333pt;}
.y11d{bottom:837.053333pt;}
.y64{bottom:845.373333pt;}
.ydf{bottom:851.133333pt;}
.y96{bottom:852.093333pt;}
.y11c{bottom:852.733333pt;}
.y63{bottom:860.733333pt;}
.ybc{bottom:866.173333pt;}
.y11b{bottom:867.773333pt;}
.y62{bottom:876.093333pt;}
.ye{bottom:880.893333pt;}
.y11a{bottom:883.133333pt;}
.yd{bottom:887.613333pt;}
.y61{bottom:891.453333pt;}
.y119{bottom:906.493333pt;}
.y60{bottom:906.813333pt;}
.yc{bottom:909.053333pt;}
.y94{bottom:912.253333pt;}
.y118{bottom:921.853333pt;}
.y5f{bottom:922.173333pt;}
.yb{bottom:924.413333pt;}
.yf9{bottom:926.333333pt;}
.ya{bottom:933.373333pt;}
.y117{bottom:936.893333pt;}
.y5e{bottom:937.533333pt;}
.ybb{bottom:941.693333pt;}
.y9{bottom:950.693333pt;}
.y116{bottom:952.613333pt;}
.y5d{bottom:952.933333pt;}
.y8{bottom:967.333333pt;}
.y115{bottom:967.653333pt;}
.y5c{bottom:967.973333pt;}
.y59{bottom:970.240000pt;}
.y93{bottom:972.453333pt;}
.yba{bottom:983.013333pt;}
.y5b{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h15{height:5.022500pt;}
.h19{height:15.346667pt;}
.h20{height:15.360000pt;}
.h23{height:15.386667pt;}
.hc{height:16.331250pt;}
.h6{height:21.643125pt;}
.h16{height:24.640000pt;}
.h13{height:26.381250pt;}
.h1f{height:30.386667pt;}
.h1d{height:30.706667pt;}
.h2b{height:30.716000pt;}
.h21{height:30.720000pt;}
.h22{height:30.746667pt;}
.ha{height:33.918750pt;}
.h9{height:34.830000pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h25{height:45.760000pt;}
.h1e{height:45.778667pt;}
.h1b{height:46.066667pt;}
.h1c{height:46.080000pt;}
.h1a{height:46.106667pt;}
.h31{height:46.108000pt;}
.h10{height:47.713750pt;}
.h14{height:49.020000pt;}
.h5{height:52.762500pt;}
.h11{height:53.471250pt;}
.hb{height:54.180000pt;}
.h18{height:55.256809pt;}
.h17{height:56.405000pt;}
.h7{height:56.513750pt;}
.h3{height:58.563750pt;}
.h8{height:59.150000pt;}
.h26{height:61.106667pt;}
.h27{height:61.152000pt;}
.h24{height:61.426667pt;}
.h30{height:61.440000pt;}
.h2d{height:61.466667pt;}
.h2{height:72.346667pt;}
.h2c{height:76.466667pt;}
.h28{height:76.480000pt;}
.h29{height:76.786667pt;}
.h2a{height:76.800000pt;}
.h2f{height:76.832000pt;}
.h2e{height:92.178667pt;}
.h4{height:103.680000pt;}
.h12{height:167.080000pt;}
.hd{height:594.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.wb{width:150.440000pt;}
.we{width:155.240000pt;}
.w11{width:158.760000pt;}
.w14{width:160.680000pt;}
.w9{width:172.840000pt;}
.w17{width:173.800000pt;}
.w7{width:178.280000pt;}
.w18{width:191.453333pt;}
.wf{width:194.013333pt;}
.w15{width:201.053333pt;}
.w13{width:212.880000pt;}
.wc{width:218.333333pt;}
.w12{width:227.613333pt;}
.w10{width:230.160000pt;}
.wd{width:230.480000pt;}
.w16{width:237.840000pt;}
.w19{width:254.480000pt;}
.wa{width:348.906667pt;}
.w8{width:362.346667pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.112000pt;}
.x18{left:7.348000pt;}
.x4{left:11.826667pt;}
.x16{left:15.348000pt;}
.x1c{left:16.308000pt;}
.x5{left:17.266667pt;}
.x17{left:25.908000pt;}
.x10{left:39.028000pt;}
.x1d{left:42.260000pt;}
.x6{left:43.213333pt;}
.x11{left:45.140000pt;}
.x38{left:46.100000pt;}
.x15{left:48.020000pt;}
.xf{left:48.980000pt;}
.x1e{left:50.900000pt;}
.x2a{left:52.822667pt;}
.x1a{left:55.373333pt;}
.x30{left:56.982667pt;}
.x34{left:57.942667pt;}
.x26{left:64.013333pt;}
.x14{left:64.982667pt;}
.x23{left:66.862667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x13{left:80.022667pt;}
.x33{left:82.906667pt;}
.x2{left:84.822667pt;}
.x37{left:86.444000pt;}
.x1f{left:91.542667pt;}
.x1b{left:95.062667pt;}
.x29{left:96.684000pt;}
.x21{left:100.832000pt;}
.x2d{left:106.604000pt;}
.x12{left:110.742667pt;}
.x22{left:126.484000pt;}
.x25{left:135.760000pt;}
.x28{left:141.173333pt;}
.xc{left:148.226667pt;}
.x3{left:162.000000pt;}
.x19{left:194.640000pt;}
.xb{left:231.453333pt;}
.x2b{left:247.773333pt;}
.x31{left:256.093333pt;}
.x35{left:258.013333pt;}
.x39{left:260.893333pt;}
.x2e{left:262.813333pt;}
.x24{left:305.413333pt;}
.x27{left:309.573333pt;}
.x3a{left:453.320000pt;}
.x2f{left:457.480000pt;}
.x36{left:459.720000pt;}
.x2c{left:467.080000pt;}
.x32{left:484.680000pt;}
.xa{left:515.746667pt;}
.xd{left:555.426667pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xe{left:717.413333pt;}
}




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