
    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_f45745fc56bbccf3c7afd24d.woff')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_d9a235825d1a07d3021ee8e2.woff')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_a83d875a653d0e6d4d46d4ef.woff')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_626b19b37e37a16766e3aa72.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ffe915dc53fce3987fff2efb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_e680af41636717df1b6c4100.woff')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_8520582716318c109c05c03e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.331543;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_7ffd22f7a899e62f7a1b0bca.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_72fcf146eeb965ac47f22e9f.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_39cb2be5bd30ea559e7c81ae.woff')format("woff");}.ffb{font-family:ffb;line-height:1.331331;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_0e368d5c489f7d4d992ffb90.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e9c8a04ba5a1d5b76dc7fe86.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_363a5fafde095bc049ff1aec.woff')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_909bb63baaec2f1b2fbdb821.woff')format("woff");}.fff{font-family:fff;line-height:1.435059;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.lsf{letter-spacing:-0.810000px;}
.ls15{letter-spacing:-0.774000px;}
.ls11{letter-spacing:-0.645098px;}
.ls12{letter-spacing:-0.612000px;}
.ls37{letter-spacing:-0.576000px;}
.ls3a{letter-spacing:-0.460200px;}
.ls18{letter-spacing:-0.316800px;}
.ls42{letter-spacing:-0.306600px;}
.lse{letter-spacing:-0.280200px;}
.ls17{letter-spacing:-0.259800px;}
.ls16{letter-spacing:-0.229200px;}
.ls10{letter-spacing:-0.226200px;}
.ls28{letter-spacing:-0.134400px;}
.ls1c{letter-spacing:-0.108000px;}
.ls40{letter-spacing:-0.106800px;}
.ls3b{letter-spacing:-0.097800px;}
.ls1b{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.056161px;}
.lsd{letter-spacing:-0.053280px;}
.ls25{letter-spacing:-0.026640px;}
.ls2d{letter-spacing:-0.018720px;}
.ls2a{letter-spacing:-0.012240px;}
.lsc{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls36{letter-spacing:0.033120px;}
.ls3{letter-spacing:0.036000px;}
.ls13{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.113841px;}
.ls20{letter-spacing:0.117360px;}
.ls19{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.153360px;}
.ls26{letter-spacing:0.153600px;}
.ls9{letter-spacing:0.180000px;}
.ls2e{letter-spacing:0.206400px;}
.ls1d{letter-spacing:0.208708px;}
.ls2c{letter-spacing:0.259800px;}
.ls33{letter-spacing:0.259920px;}
.ls3e{letter-spacing:0.274800px;}
.ls3d{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.305280px;}
.ls29{letter-spacing:0.320400px;}
.ls6{letter-spacing:0.331800px;}
.ls5{letter-spacing:0.338400px;}
.ls1a{letter-spacing:0.346200px;}
.ls0{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.403920px;}
.ls14{letter-spacing:0.490800px;}
.ls41{letter-spacing:0.612000px;}
.ls23{letter-spacing:0.613440px;}
.ls27{letter-spacing:0.666000px;}
.ls30{letter-spacing:0.666720px;}
.ls2b{letter-spacing:0.696000px;}
.lsb{letter-spacing:0.702778px;}
.ls38{letter-spacing:0.798000px;}
.ls3c{letter-spacing:0.837360px;}
.lsa{letter-spacing:0.872780px;}
.ls39{letter-spacing:0.924000px;}
.ls34{letter-spacing:2.826720px;}
.ls31{letter-spacing:6.426720px;}
.ls32{letter-spacing:7.146720px;}
.ls3f{letter-spacing:8.586720px;}
.ls1f{letter-spacing:10.026720px;}
.ls22{letter-spacing:12.186720px;}
.ls7{letter-spacing:12.906720px;}
.ls35{letter-spacing:18.666720px;}
.ls21{letter-spacing:36.666720px;}
.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;}
}
.ws19{word-spacing:-62.991941px;}
.ws20{word-spacing:-59.760000px;}
.ws17{word-spacing:-57.129137px;}
.ws15{word-spacing:-56.920429px;}
.ws4{word-spacing:-18.414720px;}
.ws26{word-spacing:-17.537280px;}
.ws18{word-spacing:-17.511760px;}
.ws25{word-spacing:-17.411280px;}
.ws1f{word-spacing:-17.309280px;}
.ws2c{word-spacing:-17.225280px;}
.wsb{word-spacing:-17.104080px;}
.ws12{word-spacing:-16.959480px;}
.wsc{word-spacing:-16.951680px;}
.wsf{word-spacing:-16.945080px;}
.ws1d{word-spacing:-16.933680px;}
.ws29{word-spacing:-16.912080px;}
.ws2a{word-spacing:-16.888080px;}
.ws21{word-spacing:-16.873080px;}
.ws23{word-spacing:-16.819680px;}
.ws11{word-spacing:-16.757280px;}
.ws28{word-spacing:-16.646400px;}
.ws2{word-spacing:-16.613280px;}
.ws1e{word-spacing:-16.601040px;}
.ws22{word-spacing:-16.594560px;}
.ws1b{word-spacing:-16.586640px;}
.ws0{word-spacing:-16.560000px;}
.ws27{word-spacing:-16.515480px;}
.ws2b{word-spacing:-16.506480px;}
.ws1c{word-spacing:-16.478880px;}
.wsd{word-spacing:-16.384080px;}
.wse{word-spacing:-16.353480px;}
.ws3{word-spacing:-16.333080px;}
.ws2d{word-spacing:-16.306680px;}
.ws10{word-spacing:-16.296480px;}
.ws24{word-spacing:-16.037280px;}
.ws16{word-spacing:-15.823879px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.066000px;}
.ws8{word-spacing:-15.048000px;}
.ws9{word-spacing:-15.030000px;}
.ws7{word-spacing:-15.012000px;}
.ws14{word-spacing:-13.392000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws13{word-spacing:-8.928000px;}
.ws1a{word-spacing:0.000000px;}
._18{margin-left:-9.558000px;}
._d{margin-left:-8.550960px;}
._14{margin-left:-5.757960px;}
._b{margin-left:-4.638000px;}
._13{margin-left:-3.534720px;}
._e{margin-left:-2.474400px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._2{width:2.343600px;}
._11{width:3.354240px;}
._c{width:4.374000px;}
._7{width:5.569680px;}
._6{width:6.588000px;}
._5{width:8.496000px;}
._4{width:10.224000px;}
._10{width:11.687760px;}
._a{width:12.702960px;}
._3{width:13.903680px;}
._f{width:14.982240px;}
._8{width:16.218000px;}
._9{width:17.328240px;}
._16{width:18.871200px;}
._15{width:20.218080px;}
._12{width:23.940000px;}
._17{width:25.678800px;}
._1a{width:27.861120px;}
._1c{width:38.947440px;}
._1b{width:40.111920px;}
._1d{width:41.562000px;}
._19{width:44.414640px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs8{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fsc{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:2.700000px;}
.y3a{bottom:3.765000px;}
.y5{bottom:4.140000px;}
.y53{bottom:5.010000px;}
.y2{bottom:9.900000px;}
.y45{bottom:10.260000px;}
.y51{bottom:23.040000px;}
.y4{bottom:23.070000px;}
.y39{bottom:24.285000px;}
.y44{bottom:40.320000px;}
.y3{bottom:48.090000px;}
.y50{bottom:49.140000px;}
.y38{bottom:50.385000px;}
.y43{bottom:51.660000px;}
.y7{bottom:57.600000px;}
.y42{bottom:62.820000px;}
.y4f{bottom:73.260000px;}
.y41{bottom:74.340000px;}
.y37{bottom:76.665000px;}
.y40{bottom:87.300000px;}
.y4e{bottom:92.340000px;}
.y3b{bottom:93.600000px;}
.ya4{bottom:98.640000px;}
.y36{bottom:99.705000px;}
.y3f{bottom:100.440000px;}
.y4d{bottom:110.160000px;}
.y7d{bottom:115.740000px;}
.y4c{bottom:118.110000px;}
.ya3{bottom:118.800000px;}
.y35{bottom:119.865000px;}
.y3e{bottom:122.250000px;}
.y4b{bottom:133.950000px;}
.y7c{bottom:135.900000px;}
.ya2{bottom:138.960000px;}
.ycc{bottom:141.840000px;}
.y34{bottom:142.950000px;}
.y4a{bottom:149.430000px;}
.ye8{bottom:152.820000px;}
.y7b{bottom:158.940000px;}
.ya1{bottom:162.000000px;}
.ycb{bottom:165.060000px;}
.y49{bottom:165.090000px;}
.y33{bottom:166.170000px;}
.ye7{bottom:178.920000px;}
.y48{bottom:180.570000px;}
.y3d{bottom:184.350000px;}
.y7a{bottom:185.040000px;}
.y32{bottom:186.150000px;}
.yca{bottom:188.100000px;}
.y3c{bottom:194.970000px;}
.y47{bottom:195.690000px;}
.ye6{bottom:205.020000px;}
.y79{bottom:208.290000px;}
.y31{bottom:209.370000px;}
.yc9{bottom:211.350000px;}
.y78{bottom:231.330000px;}
.ya0{bottom:234.390000px;}
.y30{bottom:235.470000px;}
.y77{bottom:254.550000px;}
.y9f{bottom:257.430000px;}
.yc8{bottom:260.490000px;}
.y2f{bottom:261.570000px;}
.y1f{bottom:265.170000px;}
.y76{bottom:274.530000px;}
.y9e{bottom:280.650000px;}
.ye5{bottom:283.530000px;}
.y2e{bottom:284.790000px;}
.yc7{bottom:286.590000px;}
.y1e{bottom:289.290000px;}
.y75{bottom:297.570000px;}
.y2d{bottom:304.770000px;}
.y9d{bottom:306.750000px;}
.ye4{bottom:309.630000px;}
.yc6{bottom:312.690000px;}
.y1d{bottom:313.410000px;}
.y11{bottom:318.465000px;}
.y74{bottom:323.850000px;}
.y2c{bottom:324.570000px;}
.y9c{bottom:329.790000px;}
.ye3{bottom:335.730000px;}
.y1c{bottom:337.530000px;}
.yc5{bottom:338.790000px;}
.y2b{bottom:345.270000px;}
.y73{bottom:346.890000px;}
.y9b{bottom:353.010000px;}
.y1b{bottom:361.680000px;}
.yc4{bottom:362.010000px;}
.y2a{bottom:366.180000px;}
.y72{bottom:370.110000px;}
.y9a{bottom:379.110000px;}
.y29{bottom:384.180000px;}
.yc3{bottom:385.050000px;}
.y1a{bottom:385.800000px;}
.ye2{bottom:388.110000px;}
.y71{bottom:393.150000px;}
.y28{bottom:405.060000px;}
.y99{bottom:405.210000px;}
.y19{bottom:410.100000px;}
.yc2{bottom:411.330000px;}
.ye1{bottom:414.210000px;}
.y70{bottom:416.190000px;}
.y27{bottom:425.940000px;}
.y98{bottom:428.430000px;}
.y18{bottom:434.220000px;}
.yc1{bottom:437.430000px;}
.y6f{bottom:439.410000px;}
.ye0{bottom:440.310000px;}
.y26{bottom:446.640000px;}
.y97{bottom:448.455000px;}
.y17{bottom:458.340000px;}
.y6e{bottom:459.615000px;}
.yc0{bottom:460.515000px;}
.ydf{bottom:466.455000px;}
.y25{bottom:467.520000px;}
.y96{bottom:471.495000px;}
.y16{bottom:482.460000px;}
.y6d{bottom:482.655000px;}
.ybf{bottom:483.735000px;}
.y24{bottom:488.220000px;}
.yde{bottom:492.555000px;}
.y95{bottom:497.775000px;}
.y6c{bottom:505.695000px;}
.y15{bottom:506.580000px;}
.ybe{bottom:509.835000px;}
.y23{bottom:511.800000px;}
.ydd{bottom:518.835000px;}
.y94{bottom:523.875000px;}
.y6b{bottom:528.915000px;}
.y14{bottom:530.700000px;}
.y22{bottom:535.380000px;}
.ybd{bottom:535.935000px;}
.ydc{bottom:544.935000px;}
.y93{bottom:546.915000px;}
.y13{bottom:555.000000px;}
.y6a{bottom:555.015000px;}
.y21{bottom:556.080000px;}
.ybc{bottom:562.035000px;}
.y92{bottom:567.075000px;}
.ydb{bottom:571.035000px;}
.y20{bottom:574.260000px;}
.y69{bottom:578.235000px;}
.y12{bottom:579.120000px;}
.ybb{bottom:585.255000px;}
.y91{bottom:590.115000px;}
.yda{bottom:597.135000px;}
.y68{bottom:598.215000px;}
.yba{bottom:605.235000px;}
.y90{bottom:616.395000px;}
.y67{bottom:621.255000px;}
.yd9{bottom:623.235000px;}
.yb9{bottom:625.395000px;}
.y8f{bottom:642.495000px;}
.y66{bottom:644.475000px;}
.yb8{bottom:645.555000px;}
.yd8{bottom:649.515000px;}
.yb7{bottom:665.535000px;}
.y65{bottom:667.515000px;}
.y8e{bottom:668.595000px;}
.yd7{bottom:675.615000px;}
.yb6{bottom:688.785000px;}
.y8d{bottom:691.845000px;}
.y64{bottom:693.645000px;}
.yd6{bottom:701.745000px;}
.yb5{bottom:711.825000px;}
.y8c{bottom:714.885000px;}
.y63{bottom:719.925000px;}
.yd5{bottom:727.845000px;}
.yb4{bottom:734.865000px;}
.y8b{bottom:740.985000px;}
.y62{bottom:742.965000px;}
.yd4{bottom:753.945000px;}
.yb3{bottom:758.085000px;}
.y61{bottom:766.005000px;}
.y8a{bottom:767.085000px;}
.yd3{bottom:780.225000px;}
.yb2{bottom:781.125000px;}
.y60{bottom:789.225000px;}
.y89{bottom:793.185000px;}
.yd2{bottom:806.325000px;}
.yb1{bottom:807.225000px;}
.y5f{bottom:812.265000px;}
.y88{bottom:816.405000px;}
.yb0{bottom:830.445000px;}
.yd1{bottom:832.425000px;}
.y5e{bottom:835.485000px;}
.y87{bottom:836.565000px;}
.yaf{bottom:850.605000px;}
.y86{bottom:856.545000px;}
.yd0{bottom:858.525000px;}
.y5d{bottom:861.585000px;}
.yae{bottom:870.585000px;}
.y85{bottom:879.585000px;}
.y5c{bottom:884.625000px;}
.yad{bottom:893.805000px;}
.y5b{bottom:904.785000px;}
.y84{bottom:905.865000px;}
.y10{bottom:909.645000px;}
.ycf{bottom:910.770000px;}
.yf{bottom:915.090000px;}
.yac{bottom:916.890000px;}
.y5a{bottom:927.870000px;}
.y83{bottom:928.950000px;}
.ye{bottom:935.610000px;}
.yce{bottom:937.050000px;}
.yab{bottom:939.930000px;}
.y82{bottom:949.110000px;}
.y59{bottom:953.970000px;}
.yd{bottom:958.830000px;}
.yaa{bottom:963.150000px;}
.y81{bottom:972.150000px;}
.yc{bottom:978.990000px;}
.y58{bottom:980.250000px;}
.ya9{bottom:986.190000px;}
.ycd{bottom:989.250000px;}
.y80{bottom:995.370000px;}
.yb{bottom:998.970000px;}
.y57{bottom:1006.350000px;}
.ya8{bottom:1012.290000px;}
.y7f{bottom:1015.350000px;}
.ya{bottom:1019.130000px;}
.y56{bottom:1032.450000px;}
.y7e{bottom:1035.510000px;}
.ya7{bottom:1038.570000px;}
.y9{bottom:1040.910000px;}
.y55{bottom:1058.550000px;}
.ya6{bottom:1064.670000px;}
.y8{bottom:1072.230000px;}
.y52{bottom:1075.680000px;}
.y54{bottom:1084.650000px;}
.ya5{bottom:1087.710000px;}
.y6{bottom:1108.410000px;}
.y1{bottom:1123.890000px;}
.hb{height:4.165313px;}
.h16{height:12.006914px;}
.h19{height:27.540000px;}
.h13{height:29.678906px;}
.h12{height:35.332031px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h14{height:52.971680px;}
.h15{height:54.421875px;}
.hf{height:57.243164px;}
.h7{height:57.324375px;}
.h17{height:58.621992px;}
.h6{height:58.651172px;}
.h10{height:60.338990px;}
.h9{height:63.349102px;}
.h1a{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h18{height:66.775148px;}
.ha{height:70.218281px;}
.h2{height:84.990000px;}
.h8{height:89.299336px;}
.h4{height:117.180000px;}
.h11{height:224.130000px;}
.hc{height:588.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:104.074500px;}
.w4{width:132.694500px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:6.876000px;}
.x1a{left:8.134500px;}
.x4{left:12.765000px;}
.x19{left:16.054500px;}
.x36{left:18.214500px;}
.x17{left:19.654500px;}
.x18{left:26.134500px;}
.x38{left:29.194500px;}
.x11{left:33.334500px;}
.x6{left:35.985000px;}
.x1c{left:44.985000px;}
.x37{left:47.734500px;}
.x12{left:50.794500px;}
.x3e{left:53.130000px;}
.x10{left:55.114500px;}
.x3a{left:57.094500px;}
.x1d{left:62.130000px;}
.x39{left:66.268500px;}
.x15{left:73.288500px;}
.x1{left:78.301500px;}
.x16{left:79.588500px;}
.x14{left:82.468500px;}
.x7{left:86.400000px;}
.x2{left:95.788500px;}
.x3b{left:102.808500px;}
.x35{left:106.768500px;}
.x40{left:113.436000px;}
.x13{left:124.588500px;}
.x21{left:134.670000px;}
.x2b{left:138.090000px;}
.x34{left:140.250000px;}
.x5{left:141.330000px;}
.x2c{left:147.270000px;}
.x3c{left:156.270000px;}
.x3d{left:160.230000px;}
.x22{left:174.630000px;}
.x3{left:182.385000px;}
.x23{left:183.810000px;}
.x1b{left:219.105000px;}
.x2d{left:239.100000px;}
.x2e{left:248.100000px;}
.x2f{left:331.080000px;}
.x30{left:340.080000px;}
.x24{left:359.520000px;}
.x28{left:366.000000px;}
.x25{left:370.320000px;}
.x29{left:375.900000px;}
.x1e{left:389.220000px;}
.x1f{left:400.245000px;}
.x26{left:421.125000px;}
.x27{left:432.105000px;}
.x31{left:467.025000px;}
.x32{left:476.025000px;}
.x2a{left:520.305000px;}
.x33{left:529.665000px;}
.xd{left:567.105000px;}
.x20{left:584.775000px;}
.xe{left:591.405000px;}
.xc{left:618.090000px;}
.xa{left:695.130000px;}
.xb{left:712.950000px;}
.x9{left:766.050000px;}
.x8{left:784.230000px;}
.xf{left:806.760000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.720000pt;}
.ls15{letter-spacing:-0.688000pt;}
.ls11{letter-spacing:-0.573421pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls37{letter-spacing:-0.512000pt;}
.ls3a{letter-spacing:-0.409067pt;}
.ls18{letter-spacing:-0.281600pt;}
.ls42{letter-spacing:-0.272533pt;}
.lse{letter-spacing:-0.249067pt;}
.ls17{letter-spacing:-0.230933pt;}
.ls16{letter-spacing:-0.203733pt;}
.ls10{letter-spacing:-0.201067pt;}
.ls28{letter-spacing:-0.119467pt;}
.ls1c{letter-spacing:-0.096000pt;}
.ls40{letter-spacing:-0.094933pt;}
.ls3b{letter-spacing:-0.086933pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.049921pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls25{letter-spacing:-0.023680pt;}
.ls2d{letter-spacing:-0.016640pt;}
.ls2a{letter-spacing:-0.010880pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls36{letter-spacing:0.029440pt;}
.ls3{letter-spacing:0.032000pt;}
.ls13{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.101192pt;}
.ls20{letter-spacing:0.104320pt;}
.ls19{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.136320pt;}
.ls26{letter-spacing:0.136533pt;}
.ls9{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:0.183467pt;}
.ls1d{letter-spacing:0.185518pt;}
.ls2c{letter-spacing:0.230933pt;}
.ls33{letter-spacing:0.231040pt;}
.ls3e{letter-spacing:0.244267pt;}
.ls3d{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.271360pt;}
.ls29{letter-spacing:0.284800pt;}
.ls6{letter-spacing:0.294933pt;}
.ls5{letter-spacing:0.300800pt;}
.ls1a{letter-spacing:0.307733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.359040pt;}
.ls14{letter-spacing:0.436267pt;}
.ls41{letter-spacing:0.544000pt;}
.ls23{letter-spacing:0.545280pt;}
.ls27{letter-spacing:0.592000pt;}
.ls30{letter-spacing:0.592640pt;}
.ls2b{letter-spacing:0.618667pt;}
.lsb{letter-spacing:0.624691pt;}
.ls38{letter-spacing:0.709333pt;}
.ls3c{letter-spacing:0.744320pt;}
.lsa{letter-spacing:0.775804pt;}
.ls39{letter-spacing:0.821333pt;}
.ls34{letter-spacing:2.512640pt;}
.ls31{letter-spacing:5.712640pt;}
.ls32{letter-spacing:6.352640pt;}
.ls3f{letter-spacing:7.632640pt;}
.ls1f{letter-spacing:8.912640pt;}
.ls22{letter-spacing:10.832640pt;}
.ls7{letter-spacing:11.472640pt;}
.ls35{letter-spacing:16.592640pt;}
.ls21{letter-spacing:32.592640pt;}
.ws19{word-spacing:-55.992837pt;}
.ws20{word-spacing:-53.120000pt;}
.ws17{word-spacing:-50.781455pt;}
.ws15{word-spacing:-50.595937pt;}
.ws4{word-spacing:-16.368640pt;}
.ws26{word-spacing:-15.588693pt;}
.ws18{word-spacing:-15.566009pt;}
.ws25{word-spacing:-15.476693pt;}
.ws1f{word-spacing:-15.386027pt;}
.ws2c{word-spacing:-15.311360pt;}
.wsb{word-spacing:-15.203627pt;}
.ws12{word-spacing:-15.075093pt;}
.wsc{word-spacing:-15.068160pt;}
.wsf{word-spacing:-15.062293pt;}
.ws1d{word-spacing:-15.052160pt;}
.ws29{word-spacing:-15.032960pt;}
.ws2a{word-spacing:-15.011627pt;}
.ws21{word-spacing:-14.998293pt;}
.ws23{word-spacing:-14.950827pt;}
.ws11{word-spacing:-14.895360pt;}
.ws28{word-spacing:-14.796800pt;}
.ws2{word-spacing:-14.767360pt;}
.ws1e{word-spacing:-14.756480pt;}
.ws22{word-spacing:-14.750720pt;}
.ws1b{word-spacing:-14.743680pt;}
.ws0{word-spacing:-14.720000pt;}
.ws27{word-spacing:-14.680427pt;}
.ws2b{word-spacing:-14.672427pt;}
.ws1c{word-spacing:-14.647893pt;}
.wsd{word-spacing:-14.563627pt;}
.wse{word-spacing:-14.536427pt;}
.ws3{word-spacing:-14.518293pt;}
.ws2d{word-spacing:-14.494827pt;}
.ws10{word-spacing:-14.485760pt;}
.ws24{word-spacing:-14.255360pt;}
.ws16{word-spacing:-14.065670pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.392000pt;}
.ws8{word-spacing:-13.376000pt;}
.ws9{word-spacing:-13.360000pt;}
.ws7{word-spacing:-13.344000pt;}
.ws14{word-spacing:-11.904000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws13{word-spacing:-7.936000pt;}
.ws1a{word-spacing:0.000000pt;}
._18{margin-left:-8.496000pt;}
._d{margin-left:-7.600853pt;}
._14{margin-left:-5.118187pt;}
._b{margin-left:-4.122667pt;}
._13{margin-left:-3.141973pt;}
._e{margin-left:-2.199467pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._2{width:2.083200pt;}
._11{width:2.981547pt;}
._c{width:3.888000pt;}
._7{width:4.950827pt;}
._6{width:5.856000pt;}
._5{width:7.552000pt;}
._4{width:9.088000pt;}
._10{width:10.389120pt;}
._a{width:11.291520pt;}
._3{width:12.358827pt;}
._f{width:13.317547pt;}
._8{width:14.416000pt;}
._9{width:15.402880pt;}
._16{width:16.774400pt;}
._15{width:17.971627pt;}
._12{width:21.280000pt;}
._17{width:22.825600pt;}
._1a{width:24.765440pt;}
._1c{width:34.619947pt;}
._1b{width:35.655040pt;}
._1d{width:36.944000pt;}
._19{width:39.479680pt;}
.fs5{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs8{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fsc{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.400000pt;}
.y3a{bottom:3.346667pt;}
.y5{bottom:3.680000pt;}
.y53{bottom:4.453333pt;}
.y2{bottom:8.800000pt;}
.y45{bottom:9.120000pt;}
.y51{bottom:20.480000pt;}
.y4{bottom:20.506667pt;}
.y39{bottom:21.586667pt;}
.y44{bottom:35.840000pt;}
.y3{bottom:42.746667pt;}
.y50{bottom:43.680000pt;}
.y38{bottom:44.786667pt;}
.y43{bottom:45.920000pt;}
.y7{bottom:51.200000pt;}
.y42{bottom:55.840000pt;}
.y4f{bottom:65.120000pt;}
.y41{bottom:66.080000pt;}
.y37{bottom:68.146667pt;}
.y40{bottom:77.600000pt;}
.y4e{bottom:82.080000pt;}
.y3b{bottom:83.200000pt;}
.ya4{bottom:87.680000pt;}
.y36{bottom:88.626667pt;}
.y3f{bottom:89.280000pt;}
.y4d{bottom:97.920000pt;}
.y7d{bottom:102.880000pt;}
.y4c{bottom:104.986667pt;}
.ya3{bottom:105.600000pt;}
.y35{bottom:106.546667pt;}
.y3e{bottom:108.666667pt;}
.y4b{bottom:119.066667pt;}
.y7c{bottom:120.800000pt;}
.ya2{bottom:123.520000pt;}
.ycc{bottom:126.080000pt;}
.y34{bottom:127.066667pt;}
.y4a{bottom:132.826667pt;}
.ye8{bottom:135.840000pt;}
.y7b{bottom:141.280000pt;}
.ya1{bottom:144.000000pt;}
.ycb{bottom:146.720000pt;}
.y49{bottom:146.746667pt;}
.y33{bottom:147.706667pt;}
.ye7{bottom:159.040000pt;}
.y48{bottom:160.506667pt;}
.y3d{bottom:163.866667pt;}
.y7a{bottom:164.480000pt;}
.y32{bottom:165.466667pt;}
.yca{bottom:167.200000pt;}
.y3c{bottom:173.306667pt;}
.y47{bottom:173.946667pt;}
.ye6{bottom:182.240000pt;}
.y79{bottom:185.146667pt;}
.y31{bottom:186.106667pt;}
.yc9{bottom:187.866667pt;}
.y78{bottom:205.626667pt;}
.ya0{bottom:208.346667pt;}
.y30{bottom:209.306667pt;}
.y77{bottom:226.266667pt;}
.y9f{bottom:228.826667pt;}
.yc8{bottom:231.546667pt;}
.y2f{bottom:232.506667pt;}
.y1f{bottom:235.706667pt;}
.y76{bottom:244.026667pt;}
.y9e{bottom:249.466667pt;}
.ye5{bottom:252.026667pt;}
.y2e{bottom:253.146667pt;}
.yc7{bottom:254.746667pt;}
.y1e{bottom:257.146667pt;}
.y75{bottom:264.506667pt;}
.y2d{bottom:270.906667pt;}
.y9d{bottom:272.666667pt;}
.ye4{bottom:275.226667pt;}
.yc6{bottom:277.946667pt;}
.y1d{bottom:278.586667pt;}
.y11{bottom:283.080000pt;}
.y74{bottom:287.866667pt;}
.y2c{bottom:288.506667pt;}
.y9c{bottom:293.146667pt;}
.ye3{bottom:298.426667pt;}
.y1c{bottom:300.026667pt;}
.yc5{bottom:301.146667pt;}
.y2b{bottom:306.906667pt;}
.y73{bottom:308.346667pt;}
.y9b{bottom:313.786667pt;}
.y1b{bottom:321.493333pt;}
.yc4{bottom:321.786667pt;}
.y2a{bottom:325.493333pt;}
.y72{bottom:328.986667pt;}
.y9a{bottom:336.986667pt;}
.y29{bottom:341.493333pt;}
.yc3{bottom:342.266667pt;}
.y1a{bottom:342.933333pt;}
.ye2{bottom:344.986667pt;}
.y71{bottom:349.466667pt;}
.y28{bottom:360.053333pt;}
.y99{bottom:360.186667pt;}
.y19{bottom:364.533333pt;}
.yc2{bottom:365.626667pt;}
.ye1{bottom:368.186667pt;}
.y70{bottom:369.946667pt;}
.y27{bottom:378.613333pt;}
.y98{bottom:380.826667pt;}
.y18{bottom:385.973333pt;}
.yc1{bottom:388.826667pt;}
.y6f{bottom:390.586667pt;}
.ye0{bottom:391.386667pt;}
.y26{bottom:397.013333pt;}
.y97{bottom:398.626667pt;}
.y17{bottom:407.413333pt;}
.y6e{bottom:408.546667pt;}
.yc0{bottom:409.346667pt;}
.ydf{bottom:414.626667pt;}
.y25{bottom:415.573333pt;}
.y96{bottom:419.106667pt;}
.y16{bottom:428.853333pt;}
.y6d{bottom:429.026667pt;}
.ybf{bottom:429.986667pt;}
.y24{bottom:433.973333pt;}
.yde{bottom:437.826667pt;}
.y95{bottom:442.466667pt;}
.y6c{bottom:449.506667pt;}
.y15{bottom:450.293333pt;}
.ybe{bottom:453.186667pt;}
.y23{bottom:454.933333pt;}
.ydd{bottom:461.186667pt;}
.y94{bottom:465.666667pt;}
.y6b{bottom:470.146667pt;}
.y14{bottom:471.733333pt;}
.y22{bottom:475.893333pt;}
.ybd{bottom:476.386667pt;}
.ydc{bottom:484.386667pt;}
.y93{bottom:486.146667pt;}
.y13{bottom:493.333333pt;}
.y6a{bottom:493.346667pt;}
.y21{bottom:494.293333pt;}
.ybc{bottom:499.586667pt;}
.y92{bottom:504.066667pt;}
.ydb{bottom:507.586667pt;}
.y20{bottom:510.453333pt;}
.y69{bottom:513.986667pt;}
.y12{bottom:514.773333pt;}
.ybb{bottom:520.226667pt;}
.y91{bottom:524.546667pt;}
.yda{bottom:530.786667pt;}
.y68{bottom:531.746667pt;}
.yba{bottom:537.986667pt;}
.y90{bottom:547.906667pt;}
.y67{bottom:552.226667pt;}
.yd9{bottom:553.986667pt;}
.yb9{bottom:555.906667pt;}
.y8f{bottom:571.106667pt;}
.y66{bottom:572.866667pt;}
.yb8{bottom:573.826667pt;}
.yd8{bottom:577.346667pt;}
.yb7{bottom:591.586667pt;}
.y65{bottom:593.346667pt;}
.y8e{bottom:594.306667pt;}
.yd7{bottom:600.546667pt;}
.yb6{bottom:612.253333pt;}
.y8d{bottom:614.973333pt;}
.y64{bottom:616.573333pt;}
.yd6{bottom:623.773333pt;}
.yb5{bottom:632.733333pt;}
.y8c{bottom:635.453333pt;}
.y63{bottom:639.933333pt;}
.yd5{bottom:646.973333pt;}
.yb4{bottom:653.213333pt;}
.y8b{bottom:658.653333pt;}
.y62{bottom:660.413333pt;}
.yd4{bottom:670.173333pt;}
.yb3{bottom:673.853333pt;}
.y61{bottom:680.893333pt;}
.y8a{bottom:681.853333pt;}
.yd3{bottom:693.533333pt;}
.yb2{bottom:694.333333pt;}
.y60{bottom:701.533333pt;}
.y89{bottom:705.053333pt;}
.yd2{bottom:716.733333pt;}
.yb1{bottom:717.533333pt;}
.y5f{bottom:722.013333pt;}
.y88{bottom:725.693333pt;}
.yb0{bottom:738.173333pt;}
.yd1{bottom:739.933333pt;}
.y5e{bottom:742.653333pt;}
.y87{bottom:743.613333pt;}
.yaf{bottom:756.093333pt;}
.y86{bottom:761.373333pt;}
.yd0{bottom:763.133333pt;}
.y5d{bottom:765.853333pt;}
.yae{bottom:773.853333pt;}
.y85{bottom:781.853333pt;}
.y5c{bottom:786.333333pt;}
.yad{bottom:794.493333pt;}
.y5b{bottom:804.253333pt;}
.y84{bottom:805.213333pt;}
.y10{bottom:808.573333pt;}
.ycf{bottom:809.573333pt;}
.yf{bottom:813.413333pt;}
.yac{bottom:815.013333pt;}
.y5a{bottom:824.773333pt;}
.y83{bottom:825.733333pt;}
.ye{bottom:831.653333pt;}
.yce{bottom:832.933333pt;}
.yab{bottom:835.493333pt;}
.y82{bottom:843.653333pt;}
.y59{bottom:847.973333pt;}
.yd{bottom:852.293333pt;}
.yaa{bottom:856.133333pt;}
.y81{bottom:864.133333pt;}
.yc{bottom:870.213333pt;}
.y58{bottom:871.333333pt;}
.ya9{bottom:876.613333pt;}
.ycd{bottom:879.333333pt;}
.y80{bottom:884.773333pt;}
.yb{bottom:887.973333pt;}
.y57{bottom:894.533333pt;}
.ya8{bottom:899.813333pt;}
.y7f{bottom:902.533333pt;}
.ya{bottom:905.893333pt;}
.y56{bottom:917.733333pt;}
.y7e{bottom:920.453333pt;}
.ya7{bottom:923.173333pt;}
.y9{bottom:925.253333pt;}
.y55{bottom:940.933333pt;}
.ya6{bottom:946.373333pt;}
.y8{bottom:953.093333pt;}
.y52{bottom:956.160000pt;}
.y54{bottom:964.133333pt;}
.ya5{bottom:966.853333pt;}
.y6{bottom:985.253333pt;}
.y1{bottom:999.013333pt;}
.hb{height:3.702500pt;}
.h16{height:10.672812pt;}
.h19{height:24.480000pt;}
.h13{height:26.381250pt;}
.h12{height:31.406250pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h14{height:47.085938pt;}
.h15{height:48.375000pt;}
.hf{height:50.882812pt;}
.h7{height:50.955000pt;}
.h17{height:52.108438pt;}
.h6{height:52.134375pt;}
.h10{height:53.634657pt;}
.h9{height:56.310313pt;}
.h1a{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h18{height:59.355688pt;}
.ha{height:62.416250pt;}
.h2{height:75.546667pt;}
.h8{height:79.377187pt;}
.h4{height:104.160000pt;}
.h11{height:199.226667pt;}
.hc{height:523.253333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:92.510667pt;}
.w4{width:117.950667pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:6.112000pt;}
.x1a{left:7.230667pt;}
.x4{left:11.346667pt;}
.x19{left:14.270667pt;}
.x36{left:16.190667pt;}
.x17{left:17.470667pt;}
.x18{left:23.230667pt;}
.x38{left:25.950667pt;}
.x11{left:29.630667pt;}
.x6{left:31.986667pt;}
.x1c{left:39.986667pt;}
.x37{left:42.430667pt;}
.x12{left:45.150667pt;}
.x3e{left:47.226667pt;}
.x10{left:48.990667pt;}
.x3a{left:50.750667pt;}
.x1d{left:55.226667pt;}
.x39{left:58.905333pt;}
.x15{left:65.145333pt;}
.x1{left:69.601333pt;}
.x16{left:70.745333pt;}
.x14{left:73.305333pt;}
.x7{left:76.800000pt;}
.x2{left:85.145333pt;}
.x3b{left:91.385333pt;}
.x35{left:94.905333pt;}
.x40{left:100.832000pt;}
.x13{left:110.745333pt;}
.x21{left:119.706667pt;}
.x2b{left:122.746667pt;}
.x34{left:124.666667pt;}
.x5{left:125.626667pt;}
.x2c{left:130.906667pt;}
.x3c{left:138.906667pt;}
.x3d{left:142.426667pt;}
.x22{left:155.226667pt;}
.x3{left:162.120000pt;}
.x23{left:163.386667pt;}
.x1b{left:194.760000pt;}
.x2d{left:212.533333pt;}
.x2e{left:220.533333pt;}
.x2f{left:294.293333pt;}
.x30{left:302.293333pt;}
.x24{left:319.573333pt;}
.x28{left:325.333333pt;}
.x25{left:329.173333pt;}
.x29{left:334.133333pt;}
.x1e{left:345.973333pt;}
.x1f{left:355.773333pt;}
.x26{left:374.333333pt;}
.x27{left:384.093333pt;}
.x31{left:415.133333pt;}
.x32{left:423.133333pt;}
.x2a{left:462.493333pt;}
.x33{left:470.813333pt;}
.xd{left:504.093333pt;}
.x20{left:519.800000pt;}
.xe{left:525.693333pt;}
.xc{left:549.413333pt;}
.xa{left:617.893333pt;}
.xb{left:633.733333pt;}
.x9{left:680.933333pt;}
.x8{left:697.093333pt;}
.xf{left:717.120000pt;}
}




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