
    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_d4d6e9a7749989fc71572860.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_879118ca4e044cea428583d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_625571f01625aaa761343095.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0fb1daae9c396a2fd8bab035.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_425b1f4737ac386195845264.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_7ce8d51ddab186e28e2ac8d6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a07e014e02354a97b0fbd91e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_014bed4a2864b7682c7e7cfd.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_070c48b038ecff92a9224649.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916016;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_6731bf6064d9da16286f6a59.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.767578;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_9ca21e9c09520b2f9201abff.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.097168;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_f627615a57e97b8ec2282c80.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.978027;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_422561cae2badf7a7828d17e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861816;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_50790d07941f545754db8162.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.750000;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_07392dbfa891c9a31e436fab.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_52ca44a3ae3c7663ff4935c5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.776855;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);}
.v1{vertical-align:-98.640000px;}
.v2{vertical-align:-38.880000px;}
.v3{vertical-align:-30.240000px;}
.v5{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:38.880000px;}
.ls11{letter-spacing:-1.476000px;}
.ls22{letter-spacing:-1.458000px;}
.ls1e{letter-spacing:-1.080000px;}
.ls1f{letter-spacing:-0.750000px;}
.ls1b{letter-spacing:-0.738000px;}
.ls24{letter-spacing:-0.690000px;}
.ls1d{letter-spacing:-0.378600px;}
.ls1c{letter-spacing:-0.369600px;}
.ls13{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.341400px;}
.ls9{letter-spacing:-0.180000px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.028080px;}
.ls3{letter-spacing:0.149760px;}
.lsf{letter-spacing:0.150000px;}
.ls15{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.252720px;}
.ls25{letter-spacing:0.256200px;}
.ls27{letter-spacing:0.291600px;}
.ls12{letter-spacing:0.341400px;}
.ls14{letter-spacing:0.350400px;}
.lsa{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.378720px;}
.ls10{letter-spacing:0.427680px;}
.ls19{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.540000px;}
.ls18{letter-spacing:1.980000px;}
.ls16{letter-spacing:2.700000px;}
.ls17{letter-spacing:8.460000px;}
.ls7{letter-spacing:9.360000px;}
.ls4{letter-spacing:11.340000px;}
.ls21{letter-spacing:13.500000px;}
.ls26{letter-spacing:21.221280px;}
.ls20{letter-spacing:22.860000px;}
.lse{letter-spacing:39.420000px;}
.lsc{letter-spacing:58.140000px;}
.ls6{letter-spacing:191.340000px;}
.ls0{letter-spacing:197.429760px;}
.ls2{letter-spacing:235.260000px;}
.ls1{letter-spacing:1083.329760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(91,155,213),0 0.015em rgb(91,155,213),0.015em 0 rgb(91,155,213),0 -0.015em  rgb(91,155,213);}
.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(91,155,213);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-21.420000px;}
.ws9{word-spacing:-21.410400px;}
.ws7{word-spacing:-21.401400px;}
.wsb{word-spacing:-21.312720px;}
.ws11{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.wsd{word-spacing:-20.718600px;}
.ws8{word-spacing:-20.700000px;}
.wsf{word-spacing:-20.690400px;}
.ws10{word-spacing:-20.681400px;}
.ws15{word-spacing:-20.370000px;}
.wse{word-spacing:-20.322000px;}
.ws13{word-spacing:-20.310000px;}
.ws12{word-spacing:-19.980000px;}
.ws14{word-spacing:-19.602000px;}
.ws5{word-spacing:-19.584000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.560000px;}
.wsc{word-spacing:-14.940000px;}
.wsa{word-spacing:-9.720000px;}
.ws16{word-spacing:-0.322440px;}
.ws0{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._36{margin-left:-12.817920px;}
._b{margin-left:-2.417760px;}
._1{margin-left:-1.126080px;}
._3{width:1.347840px;}
._d{width:2.489280px;}
._7{width:4.212000px;}
._8{width:5.222880px;}
._9{width:6.433200px;}
._16{width:7.466400px;}
._e{width:8.536080px;}
._c{width:9.868800px;}
._5{width:11.319120px;}
._6{width:12.405840px;}
._a{width:14.405040px;}
._5e{width:15.418560px;}
._21{width:16.426800px;}
._f{width:18.111600px;}
._1f{width:20.049120px;}
._1a{width:22.186080px;}
._2e{width:23.309520px;}
._15{width:24.314160px;}
._14{width:25.487040px;}
._25{width:27.190080px;}
._1d{width:28.304640px;}
._1e{width:29.321280px;}
._34{width:30.497760px;}
._33{width:31.674240px;}
._1c{width:33.024240px;}
._4{width:34.147920px;}
._3c{width:35.336160px;}
._2f{width:36.560160px;}
._1b{width:37.602000px;}
._22{width:39.202560px;}
._19{width:40.215360px;}
._17{width:41.277600px;}
._18{width:43.021440px;}
._37{width:44.425440px;}
._50{width:45.773280px;}
._13{width:46.784160px;}
._12{width:48.216240px;}
._44{width:49.816800px;}
._2d{width:51.136560px;}
._2c{width:52.428240px;}
._3e{width:54.078240px;}
._61{width:55.774080px;}
._20{width:57.451680px;}
._3a{width:58.605840px;}
._23{width:59.987040px;}
._30{width:61.020720px;}
._3f{width:62.452800px;}
._35{width:64.053360px;}
._64{width:65.698800px;}
._5c{width:67.228320px;}
._11{width:68.855040px;}
._10{width:69.950160px;}
._5b{width:71.241120px;}
._5a{width:72.428880px;}
._3b{width:73.710000px;}
._56{width:83.650320px;}
._62{width:85.082400px;}
._59{width:86.851440px;}
._58{width:88.258320px;}
._5f{width:90.305280px;}
._60{width:92.000640px;}
._32{width:93.537360px;}
._63{width:99.602640px;}
._4b{width:101.088000px;}
._47{width:103.309200px;}
._2b{width:105.636960px;}
._2a{width:107.296560px;}
._66{width:110.691360px;}
._31{width:112.070160px;}
._67{width:114.086160px;}
._4d{width:115.860960px;}
._40{width:116.925120px;}
._38{width:121.757760px;}
._39{width:123.246480px;}
._43{width:136.013760px;}
._54{width:139.700880px;}
._24{width:141.607440px;}
._3d{width:144.614880px;}
._5d{width:148.852080px;}
._4e{width:151.126560px;}
._52{width:155.790720px;}
._57{width:163.257120px;}
._51{width:167.974560px;}
._65{width:169.150320px;}
._4a{width:178.189920px;}
._55{width:179.630640px;}
._4f{width:181.284480px;}
._41{width:191.340000px;}
._26{width:198.762960px;}
._53{width:201.280320px;}
._28{width:211.358160px;}
._27{width:213.102000px;}
._46{width:221.045760px;}
._49{width:257.858640px;}
._29{width:264.769680px;}
._45{width:269.820720px;}
._4c{width:276.438000px;}
._48{width:296.718240px;}
._42{width:327.556080px;}
._2{width:638.842080px;}
.fca{color:rgb(33,37,41);}
.fc6{color:rgb(91,155,213);}
.fc7{color:rgb(19,134,0);}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(5,98,193);}
.fc1{color:rgb(0,112,192);}
.fcb{color:rgb(79,79,79);}
.fc9{color:rgb(34,34,34);}
.fc8{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.yb4{bottom:8.496000px;}
.y65{bottom:8.640000px;}
.yb5{bottom:8.856000px;}
.y78{bottom:23.220000px;}
.y67{bottom:23.400000px;}
.y47{bottom:23.580000px;}
.y96{bottom:23.625000px;}
.y61{bottom:23.754000px;}
.y4e{bottom:23.760000px;}
.y8d{bottom:23.790000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.ydf{bottom:31.860000px;}
.ye1{bottom:31.890000px;}
.ye4{bottom:32.220000px;}
.ye2{bottom:32.250000px;}
.y7f{bottom:33.480000px;}
.y63{bottom:36.000000px;}
.yb3{bottom:36.210000px;}
.y64{bottom:36.360000px;}
.yd4{bottom:50.940000px;}
.y77{bottom:51.120000px;}
.y7b{bottom:51.165000px;}
.y91{bottom:51.300000px;}
.y60{bottom:51.474000px;}
.y4d{bottom:51.480000px;}
.y8c{bottom:51.510000px;}
.y95{bottom:51.525000px;}
.yb2{bottom:63.930000px;}
.y83{bottom:78.120000px;}
.y76{bottom:78.840000px;}
.y4a{bottom:78.870000px;}
.y7a{bottom:78.885000px;}
.y57{bottom:79.020000px;}
.y8a{bottom:79.050000px;}
.y54{bottom:79.200000px;}
.y4c{bottom:79.230000px;}
.y7c{bottom:79.245000px;}
.y5f{bottom:79.374000px;}
.y59{bottom:79.380000px;}
.y8b{bottom:79.410000px;}
.yd8{bottom:79.425000px;}
.y41{bottom:82.440000px;}
.y62{bottom:84.600000px;}
.y9b{bottom:84.960000px;}
.y2a{bottom:94.500000px;}
.y9a{bottom:96.300000px;}
.ycf{bottom:104.040000px;}
.y8f{bottom:106.560000px;}
.y93{bottom:106.605000px;}
.y5c{bottom:106.734000px;}
.y51{bottom:106.740000px;}
.y49{bottom:106.770000px;}
.y56{bottom:106.785000px;}
.y90{bottom:106.920000px;}
.y94{bottom:106.965000px;}
.y5e{bottom:107.094000px;}
.y53{bottom:107.100000px;}
.y4b{bottom:107.130000px;}
.y58{bottom:107.145000px;}
.y40{bottom:118.620000px;}
.y82{bottom:119.340000px;}
.yb1{bottom:123.480000px;}
.yef{bottom:124.920000px;}
.y29{bottom:130.896000px;}
.y5b{bottom:134.454000px;}
.y50{bottom:134.460000px;}
.yad{bottom:134.640000px;}
.y5d{bottom:134.814000px;}
.y52{bottom:134.820000px;}
.ya4{bottom:134.850000px;}
.yce{bottom:140.616000px;}
.y5a{bottom:141.516000px;}
.yf3{bottom:154.650000px;}
.y3f{bottom:155.010000px;}
.yee{bottom:161.310000px;}
.y81{bottom:161.490000px;}
.y87{bottom:162.225000px;}
.yac{bottom:162.540000px;}
.ya3{bottom:162.570000px;}
.y88{bottom:162.585000px;}
.y28{bottom:167.070000px;}
.ydc{bottom:170.850000px;}
.y99{bottom:174.090000px;}
.ycd{bottom:176.790000px;}
.yb8{bottom:190.260000px;}
.yab{bottom:190.305000px;}
.ya2{bottom:190.470000px;}
.y3e{bottom:191.190000px;}
.yed{bottom:197.490000px;}
.y80{bottom:197.670000px;}
.y27{bottom:203.250000px;}
.ydb{bottom:207.210000px;}
.ya6{bottom:208.470000px;}
.y98{bottom:210.450000px;}
.ycc{bottom:212.970000px;}
.yaa{bottom:217.665000px;}
.yb7{bottom:217.830000px;}
.yb0{bottom:218.025000px;}
.ya1{bottom:218.190000px;}
.y7e{bottom:218.550000px;}
.y3d{bottom:227.370000px;}
.y97{bottom:231.330000px;}
.yec{bottom:233.670000px;}
.y26{bottom:239.070000px;}
.yda{bottom:243.030000px;}
.ya9{bottom:245.385000px;}
.ya5{bottom:245.550000px;}
.yaf{bottom:245.745000px;}
.ya0{bottom:245.910000px;}
.ycb{bottom:249.330000px;}
.yf5{bottom:263.190000px;}
.y3c{bottom:263.550000px;}
.yeb{bottom:269.850000px;}
.y9f{bottom:273.270000px;}
.ya8{bottom:273.285000px;}
.yae{bottom:273.645000px;}
.y25{bottom:275.430000px;}
.yd9{bottom:279.210000px;}
.yca{bottom:285.510000px;}
.y7d{bottom:290.550000px;}
.y55{bottom:296.850000px;}
.y24{bottom:299.910000px;}
.yd7{bottom:300.090000px;}
.ya7{bottom:301.005000px;}
.yfb{bottom:303.330000px;}
.yea{bottom:306.210000px;}
.yc9{bottom:321.690000px;}
.y23{bottom:324.030000px;}
.y79{bottom:334.830000px;}
.y3b{bottom:336.090000px;}
.ye9{bottom:342.390000px;}
.y22{bottom:348.150000px;}
.yc8{bottom:357.870000px;}
.y92{bottom:358.950000px;}
.y21{bottom:372.270000px;}
.ye8{bottom:378.570000px;}
.yc7{bottom:394.095000px;}
.y20{bottom:396.435000px;}
.ye7{bottom:399.135000px;}
.yd6{bottom:400.035000px;}
.y3a{bottom:408.495000px;}
.y1f{bottom:420.555000px;}
.y4f{bottom:424.515000px;}
.yc6{bottom:430.455000px;}
.y75{bottom:434.775000px;}
.y1e{bottom:444.315000px;}
.y39{bottom:444.855000px;}
.ye6{bottom:451.875000px;}
.yc5{bottom:466.635000px;}
.y1d{bottom:468.975000px;}
.yd5{bottom:472.035000px;}
.yf4{bottom:480.675000px;}
.y38{bottom:481.035000px;}
.y8e{bottom:486.615000px;}
.y1c{bottom:492.555000px;}
.yc4{bottom:502.815000px;}
.ye5{bottom:504.615000px;}
.y37{bottom:517.215000px;}
.y1b{bottom:529.275000px;}
.y9e{bottom:530.355000px;}
.y74{bottom:534.495000px;}
.yc3{bottom:538.635000px;}
.y36{bottom:553.395000px;}
.ye3{bottom:557.355000px;}
.y1a{bottom:565.455000px;}
.yd3{bottom:571.935000px;}
.yc2{bottom:574.995000px;}
.y48{bottom:579.855000px;}
.y73{bottom:580.755000px;}
.yf2{bottom:589.395000px;}
.y35{bottom:589.755000px;}
.y19{bottom:601.815000px;}
.ye0{bottom:610.095000px;}
.yc1{bottom:611.535000px;}
.y89{bottom:614.055000px;}
.y34{bottom:625.935000px;}
.y18{bottom:638.025000px;}
.y72{bottom:641.805000px;}
.yc0{bottom:647.745000px;}
.y33{bottom:662.145000px;}
.yde{bottom:664.665000px;}
.yd2{bottom:671.685000px;}
.y17{bottom:674.205000px;}
.y71{bottom:678.345000px;}
.ybf{bottom:683.925000px;}
.y32{bottom:698.325000px;}
.y46{bottom:709.485000px;}
.y16{bottom:710.385000px;}
.y70{bottom:714.525000px;}
.yd1{bottom:717.765000px;}
.ybe{bottom:720.285000px;}
.y31{bottom:734.145000px;}
.yf1{bottom:734.505000px;}
.y86{bottom:741.705000px;}
.y15{bottom:746.745000px;}
.y6f{bottom:750.885000px;}
.ybd{bottom:756.465000px;}
.y30{bottom:758.805000px;}
.y45{bottom:770.505000px;}
.ydd{bottom:770.865000px;}
.y14{bottom:782.925000px;}
.y6e{bottom:787.065000px;}
.ybc{bottom:792.645000px;}
.yfa{bottom:794.985000px;}
.yd0{bottom:806.685000px;}
.y13{bottom:807.045000px;}
.yf9{bottom:819.105000px;}
.y6d{bottom:823.245000px;}
.y9d{bottom:826.485000px;}
.ybb{bottom:828.825000px;}
.y12{bottom:831.165000px;}
.y44{bottom:843.225000px;}
.y11{bottom:855.285000px;}
.y6c{bottom:859.425000px;}
.yba{bottom:864.825000px;}
.y10{bottom:879.405000px;}
.y6b{bottom:895.650000px;}
.yb9{bottom:901.050000px;}
.y2f{bottom:903.210000px;}
.yf{bottom:903.750000px;}
.y9c{bottom:915.450000px;}
.y43{bottom:915.810000px;}
.yb6{bottom:921.930000px;}
.y85{bottom:926.790000px;}
.ye{bottom:927.870000px;}
.y6a{bottom:932.010000px;}
.yd{bottom:951.450000px;}
.yf0{bottom:951.630000px;}
.y42{bottom:951.990000px;}
.y69{bottom:967.830000px;}
.yc{bottom:976.110000px;}
.y84{bottom:987.810000px;}
.y2e{bottom:988.170000px;}
.y68{bottom:988.710000px;}
.yb{bottom:1000.230000px;}
.ya{bottom:1024.350000px;}
.y9{bottom:1048.470000px;}
.y2d{bottom:1060.710000px;}
.yf8{bottom:1072.770000px;}
.y8{bottom:1096.890000px;}
.yf7{bottom:1121.010000px;}
.y7{bottom:1132.710000px;}
.y2c{bottom:1133.070000px;}
.y66{bottom:1144.080000px;}
.yf6{bottom:1145.160000px;}
.y6{bottom:1168.920000px;}
.y2b{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.h14{height:36.517500px;}
.h1a{height:38.158594px;}
.ha{height:42.660000px;}
.he{height:42.840000px;}
.h21{height:51.300000px;}
.h22{height:51.336000px;}
.h13{height:52.998047px;}
.hd{height:55.476000px;}
.h15{height:58.651172px;}
.h8{height:59.436914px;}
.h2{height:65.884219px;}
.h12{height:70.560000px;}
.h1b{height:70.596000px;}
.h3{height:70.628906px;}
.h9{height:74.244727px;}
.h7{height:82.635820px;}
.h6{height:82.676953px;}
.h1e{height:83.376000px;}
.h5{height:84.898125px;}
.h23{height:86.585445px;}
.h16{height:91.878047px;}
.h10{height:98.280000px;}
.h11{height:98.316000px;}
.h20{height:98.496000px;}
.h18{height:126.000000px;}
.h19{height:126.036000px;}
.hb{height:126.216000px;}
.hc{height:153.900000px;}
.hf{height:153.930000px;}
.h17{height:181.650000px;}
.h1f{height:264.990000px;}
.h1c{height:292.710000px;}
.h1d{height:320.430000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.wa{width:62.100000px;}
.w6{width:62.280000px;}
.w9{width:62.316000px;}
.w7{width:62.460000px;}
.w8{width:72.936000px;}
.wb{width:75.456000px;}
.w12{width:83.700000px;}
.w13{width:104.796000px;}
.w16{width:142.956000px;}
.wc{width:157.350000px;}
.w11{width:158.070000px;}
.wf{width:183.270000px;}
.we{width:183.315000px;}
.w10{width:183.450000px;}
.w5{width:198.075000px;}
.w17{width:244.875000px;}
.w3{width:269.175000px;}
.w14{width:325.515000px;}
.w15{width:346.935000px;}
.w4{width:449.385000px;}
.wd{width:578.850000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.416000px;}
.x3d{left:16.410000px;}
.x4{left:20.550000px;}
.x2c{left:22.716000px;}
.x2f{left:42.165000px;}
.x21{left:60.480000px;}
.x1e{left:88.380000px;}
.x1{left:95.796000px;}
.x15{left:97.236000px;}
.x3a{left:103.896000px;}
.x1c{left:109.116000px;}
.x2{left:111.636000px;}
.x5{left:115.056000px;}
.x2a{left:116.496000px;}
.xe{left:148.896000px;}
.x2e{left:158.445000px;}
.x36{left:173.010000px;}
.x3f{left:180.750000px;}
.x30{left:185.790000px;}
.x40{left:207.750000px;}
.x2d{left:247.170000px;}
.x33{left:273.135000px;}
.x23{left:287.895000px;}
.x3e{left:297.255000px;}
.x37{left:322.275000px;}
.x10{left:326.955000px;}
.x31{left:330.915000px;}
.x24{left:351.615000px;}
.x13{left:354.855000px;}
.x20{left:358.995000px;}
.x2b{left:366.015000px;}
.x12{left:376.635000px;}
.x16{left:380.595000px;}
.x18{left:401.835000px;}
.x38{left:407.415000px;}
.x25{left:415.515000px;}
.x6{left:422.895000px;}
.x3b{left:436.755000px;}
.x3{left:438.915000px;}
.x8{left:454.785000px;}
.x34{left:457.845000px;}
.x1a{left:468.285000px;}
.x1b{left:477.645000px;}
.xb{left:485.925000px;}
.x26{left:489.885000px;}
.x39{left:513.825000px;}
.xf{left:519.225000px;}
.xa{left:523.725000px;}
.x17{left:525.885000px;}
.x7{left:531.105000px;}
.x27{left:553.785000px;}
.xd{left:569.265000px;}
.x3c{left:581.145000px;}
.x11{left:588.165000px;}
.x14{left:601.485000px;}
.x9{left:617.685000px;}
.x19{left:622.365000px;}
.x35{left:642.750000px;}
.xc{left:644.910000px;}
.x28{left:681.450000px;}
.x22{left:726.090000px;}
.x29{left:745.170000px;}
.x1d{left:750.570000px;}
.x32{left:755.970000px;}
@media print{
.v1{vertical-align:-87.680000pt;}
.v2{vertical-align:-34.560000pt;}
.v3{vertical-align:-26.880000pt;}
.v5{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:34.560000pt;}
.ls11{letter-spacing:-1.312000pt;}
.ls22{letter-spacing:-1.296000pt;}
.ls1e{letter-spacing:-0.960000pt;}
.ls1f{letter-spacing:-0.666667pt;}
.ls1b{letter-spacing:-0.656000pt;}
.ls24{letter-spacing:-0.613333pt;}
.ls1d{letter-spacing:-0.336533pt;}
.ls1c{letter-spacing:-0.328533pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.303467pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.024960pt;}
.ls3{letter-spacing:0.133120pt;}
.lsf{letter-spacing:0.133333pt;}
.ls15{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.224640pt;}
.ls25{letter-spacing:0.227733pt;}
.ls27{letter-spacing:0.259200pt;}
.ls12{letter-spacing:0.303467pt;}
.ls14{letter-spacing:0.311467pt;}
.lsa{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.336640pt;}
.ls10{letter-spacing:0.380160pt;}
.ls19{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.480000pt;}
.ls18{letter-spacing:1.760000pt;}
.ls16{letter-spacing:2.400000pt;}
.ls17{letter-spacing:7.520000pt;}
.ls7{letter-spacing:8.320000pt;}
.ls4{letter-spacing:10.080000pt;}
.ls21{letter-spacing:12.000000pt;}
.ls26{letter-spacing:18.863360pt;}
.ls20{letter-spacing:20.320000pt;}
.lse{letter-spacing:35.040000pt;}
.lsc{letter-spacing:51.680000pt;}
.ls6{letter-spacing:170.080000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls2{letter-spacing:209.120000pt;}
.ls1{letter-spacing:962.959787pt;}
.ws3{word-spacing:-19.040000pt;}
.ws9{word-spacing:-19.031467pt;}
.ws7{word-spacing:-19.023467pt;}
.wsb{word-spacing:-18.944640pt;}
.ws11{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.wsd{word-spacing:-18.416533pt;}
.ws8{word-spacing:-18.400000pt;}
.wsf{word-spacing:-18.391467pt;}
.ws10{word-spacing:-18.383467pt;}
.ws15{word-spacing:-18.106667pt;}
.wse{word-spacing:-18.064000pt;}
.ws13{word-spacing:-18.053333pt;}
.ws12{word-spacing:-17.760000pt;}
.ws14{word-spacing:-17.424000pt;}
.ws5{word-spacing:-17.408000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.720000pt;}
.wsc{word-spacing:-13.280000pt;}
.wsa{word-spacing:-8.640000pt;}
.ws16{word-spacing:-0.286613pt;}
.ws0{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._36{margin-left:-11.393707pt;}
._b{margin-left:-2.149120pt;}
._1{margin-left:-1.000960pt;}
._3{width:1.198080pt;}
._d{width:2.212693pt;}
._7{width:3.744000pt;}
._8{width:4.642560pt;}
._9{width:5.718400pt;}
._16{width:6.636800pt;}
._e{width:7.587627pt;}
._c{width:8.772267pt;}
._5{width:10.061440pt;}
._6{width:11.027413pt;}
._a{width:12.804480pt;}
._5e{width:13.705387pt;}
._21{width:14.601600pt;}
._f{width:16.099200pt;}
._1f{width:17.821440pt;}
._1a{width:19.720960pt;}
._2e{width:20.719573pt;}
._15{width:21.612587pt;}
._14{width:22.655147pt;}
._25{width:24.168960pt;}
._1d{width:25.159680pt;}
._1e{width:26.063360pt;}
._34{width:27.109120pt;}
._33{width:28.154880pt;}
._1c{width:29.354880pt;}
._4{width:30.353707pt;}
._3c{width:31.409920pt;}
._2f{width:32.497920pt;}
._1b{width:33.424000pt;}
._22{width:34.846720pt;}
._19{width:35.746987pt;}
._17{width:36.691200pt;}
._18{width:38.241280pt;}
._37{width:39.489280pt;}
._50{width:40.687360pt;}
._13{width:41.585920pt;}
._12{width:42.858880pt;}
._44{width:44.281600pt;}
._2d{width:45.454720pt;}
._2c{width:46.602880pt;}
._3e{width:48.069547pt;}
._61{width:49.576960pt;}
._20{width:51.068160pt;}
._3a{width:52.094080pt;}
._23{width:53.321813pt;}
._30{width:54.240640pt;}
._3f{width:55.513600pt;}
._35{width:56.936320pt;}
._64{width:58.398933pt;}
._5c{width:59.758507pt;}
._11{width:61.204480pt;}
._10{width:62.177920pt;}
._5b{width:63.325440pt;}
._5a{width:64.381227pt;}
._3b{width:65.520000pt;}
._56{width:74.355840pt;}
._62{width:75.628800pt;}
._59{width:77.201280pt;}
._58{width:78.451840pt;}
._5f{width:80.271360pt;}
._60{width:81.778347pt;}
._32{width:83.144320pt;}
._63{width:88.535680pt;}
._4b{width:89.856000pt;}
._47{width:91.830400pt;}
._2b{width:93.899520pt;}
._2a{width:95.374720pt;}
._66{width:98.392320pt;}
._31{width:99.617920pt;}
._67{width:101.409920pt;}
._4d{width:102.987520pt;}
._40{width:103.933440pt;}
._38{width:108.229120pt;}
._39{width:109.552427pt;}
._43{width:120.901120pt;}
._54{width:124.178560pt;}
._24{width:125.873280pt;}
._3d{width:128.546560pt;}
._5d{width:132.312960pt;}
._4e{width:134.334720pt;}
._52{width:138.480640pt;}
._57{width:145.117440pt;}
._51{width:149.310720pt;}
._65{width:150.355840pt;}
._4a{width:158.391040pt;}
._55{width:159.671680pt;}
._4f{width:161.141760pt;}
._41{width:170.080000pt;}
._26{width:176.678187pt;}
._53{width:178.915840pt;}
._28{width:187.873920pt;}
._27{width:189.424000pt;}
._46{width:196.485120pt;}
._49{width:229.207680pt;}
._29{width:235.350827pt;}
._45{width:239.840640pt;}
._4c{width:245.722667pt;}
._48{width:263.749547pt;}
._42{width:291.160960pt;}
._2{width:567.859627pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.yb4{bottom:7.552000pt;}
.y65{bottom:7.680000pt;}
.yb5{bottom:7.872000pt;}
.y78{bottom:20.640000pt;}
.y67{bottom:20.800000pt;}
.y47{bottom:20.960000pt;}
.y96{bottom:21.000000pt;}
.y61{bottom:21.114667pt;}
.y4e{bottom:21.120000pt;}
.y8d{bottom:21.146667pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.ydf{bottom:28.320000pt;}
.ye1{bottom:28.346667pt;}
.ye4{bottom:28.640000pt;}
.ye2{bottom:28.666667pt;}
.y7f{bottom:29.760000pt;}
.y63{bottom:32.000000pt;}
.yb3{bottom:32.186667pt;}
.y64{bottom:32.320000pt;}
.yd4{bottom:45.280000pt;}
.y77{bottom:45.440000pt;}
.y7b{bottom:45.480000pt;}
.y91{bottom:45.600000pt;}
.y60{bottom:45.754667pt;}
.y4d{bottom:45.760000pt;}
.y8c{bottom:45.786667pt;}
.y95{bottom:45.800000pt;}
.yb2{bottom:56.826667pt;}
.y83{bottom:69.440000pt;}
.y76{bottom:70.080000pt;}
.y4a{bottom:70.106667pt;}
.y7a{bottom:70.120000pt;}
.y57{bottom:70.240000pt;}
.y8a{bottom:70.266667pt;}
.y54{bottom:70.400000pt;}
.y4c{bottom:70.426667pt;}
.y7c{bottom:70.440000pt;}
.y5f{bottom:70.554667pt;}
.y59{bottom:70.560000pt;}
.y8b{bottom:70.586667pt;}
.yd8{bottom:70.600000pt;}
.y41{bottom:73.280000pt;}
.y62{bottom:75.200000pt;}
.y9b{bottom:75.520000pt;}
.y2a{bottom:84.000000pt;}
.y9a{bottom:85.600000pt;}
.ycf{bottom:92.480000pt;}
.y8f{bottom:94.720000pt;}
.y93{bottom:94.760000pt;}
.y5c{bottom:94.874667pt;}
.y51{bottom:94.880000pt;}
.y49{bottom:94.906667pt;}
.y56{bottom:94.920000pt;}
.y90{bottom:95.040000pt;}
.y94{bottom:95.080000pt;}
.y5e{bottom:95.194667pt;}
.y53{bottom:95.200000pt;}
.y4b{bottom:95.226667pt;}
.y58{bottom:95.240000pt;}
.y40{bottom:105.440000pt;}
.y82{bottom:106.080000pt;}
.yb1{bottom:109.760000pt;}
.yef{bottom:111.040000pt;}
.y29{bottom:116.352000pt;}
.y5b{bottom:119.514667pt;}
.y50{bottom:119.520000pt;}
.yad{bottom:119.680000pt;}
.y5d{bottom:119.834667pt;}
.y52{bottom:119.840000pt;}
.ya4{bottom:119.866667pt;}
.yce{bottom:124.992000pt;}
.y5a{bottom:125.792000pt;}
.yf3{bottom:137.466667pt;}
.y3f{bottom:137.786667pt;}
.yee{bottom:143.386667pt;}
.y81{bottom:143.546667pt;}
.y87{bottom:144.200000pt;}
.yac{bottom:144.480000pt;}
.ya3{bottom:144.506667pt;}
.y88{bottom:144.520000pt;}
.y28{bottom:148.506667pt;}
.ydc{bottom:151.866667pt;}
.y99{bottom:154.746667pt;}
.ycd{bottom:157.146667pt;}
.yb8{bottom:169.120000pt;}
.yab{bottom:169.160000pt;}
.ya2{bottom:169.306667pt;}
.y3e{bottom:169.946667pt;}
.yed{bottom:175.546667pt;}
.y80{bottom:175.706667pt;}
.y27{bottom:180.666667pt;}
.ydb{bottom:184.186667pt;}
.ya6{bottom:185.306667pt;}
.y98{bottom:187.066667pt;}
.ycc{bottom:189.306667pt;}
.yaa{bottom:193.480000pt;}
.yb7{bottom:193.626667pt;}
.yb0{bottom:193.800000pt;}
.ya1{bottom:193.946667pt;}
.y7e{bottom:194.266667pt;}
.y3d{bottom:202.106667pt;}
.y97{bottom:205.626667pt;}
.yec{bottom:207.706667pt;}
.y26{bottom:212.506667pt;}
.yda{bottom:216.026667pt;}
.ya9{bottom:218.120000pt;}
.ya5{bottom:218.266667pt;}
.yaf{bottom:218.440000pt;}
.ya0{bottom:218.586667pt;}
.ycb{bottom:221.626667pt;}
.yf5{bottom:233.946667pt;}
.y3c{bottom:234.266667pt;}
.yeb{bottom:239.866667pt;}
.y9f{bottom:242.906667pt;}
.ya8{bottom:242.920000pt;}
.yae{bottom:243.240000pt;}
.y25{bottom:244.826667pt;}
.yd9{bottom:248.186667pt;}
.yca{bottom:253.786667pt;}
.y7d{bottom:258.266667pt;}
.y55{bottom:263.866667pt;}
.y24{bottom:266.586667pt;}
.yd7{bottom:266.746667pt;}
.ya7{bottom:267.560000pt;}
.yfb{bottom:269.626667pt;}
.yea{bottom:272.186667pt;}
.yc9{bottom:285.946667pt;}
.y23{bottom:288.026667pt;}
.y79{bottom:297.626667pt;}
.y3b{bottom:298.746667pt;}
.ye9{bottom:304.346667pt;}
.y22{bottom:309.466667pt;}
.yc8{bottom:318.106667pt;}
.y92{bottom:319.066667pt;}
.y21{bottom:330.906667pt;}
.ye8{bottom:336.506667pt;}
.yc7{bottom:350.306667pt;}
.y20{bottom:352.386667pt;}
.ye7{bottom:354.786667pt;}
.yd6{bottom:355.586667pt;}
.y3a{bottom:363.106667pt;}
.y1f{bottom:373.826667pt;}
.y4f{bottom:377.346667pt;}
.yc6{bottom:382.626667pt;}
.y75{bottom:386.466667pt;}
.y1e{bottom:394.946667pt;}
.y39{bottom:395.426667pt;}
.ye6{bottom:401.666667pt;}
.yc5{bottom:414.786667pt;}
.y1d{bottom:416.866667pt;}
.yd5{bottom:419.586667pt;}
.yf4{bottom:427.266667pt;}
.y38{bottom:427.586667pt;}
.y8e{bottom:432.546667pt;}
.y1c{bottom:437.826667pt;}
.yc4{bottom:446.946667pt;}
.ye5{bottom:448.546667pt;}
.y37{bottom:459.746667pt;}
.y1b{bottom:470.466667pt;}
.y9e{bottom:471.426667pt;}
.y74{bottom:475.106667pt;}
.yc3{bottom:478.786667pt;}
.y36{bottom:491.906667pt;}
.ye3{bottom:495.426667pt;}
.y1a{bottom:502.626667pt;}
.yd3{bottom:508.386667pt;}
.yc2{bottom:511.106667pt;}
.y48{bottom:515.426667pt;}
.y73{bottom:516.226667pt;}
.yf2{bottom:523.906667pt;}
.y35{bottom:524.226667pt;}
.y19{bottom:534.946667pt;}
.ye0{bottom:542.306667pt;}
.yc1{bottom:543.586667pt;}
.y89{bottom:545.826667pt;}
.y34{bottom:556.386667pt;}
.y18{bottom:567.133333pt;}
.y72{bottom:570.493333pt;}
.yc0{bottom:575.773333pt;}
.y33{bottom:588.573333pt;}
.yde{bottom:590.813333pt;}
.yd2{bottom:597.053333pt;}
.y17{bottom:599.293333pt;}
.y71{bottom:602.973333pt;}
.ybf{bottom:607.933333pt;}
.y32{bottom:620.733333pt;}
.y46{bottom:630.653333pt;}
.y16{bottom:631.453333pt;}
.y70{bottom:635.133333pt;}
.yd1{bottom:638.013333pt;}
.ybe{bottom:640.253333pt;}
.y31{bottom:652.573333pt;}
.yf1{bottom:652.893333pt;}
.y86{bottom:659.293333pt;}
.y15{bottom:663.773333pt;}
.y6f{bottom:667.453333pt;}
.ybd{bottom:672.413333pt;}
.y30{bottom:674.493333pt;}
.y45{bottom:684.893333pt;}
.ydd{bottom:685.213333pt;}
.y14{bottom:695.933333pt;}
.y6e{bottom:699.613333pt;}
.ybc{bottom:704.573333pt;}
.yfa{bottom:706.653333pt;}
.yd0{bottom:717.053333pt;}
.y13{bottom:717.373333pt;}
.yf9{bottom:728.093333pt;}
.y6d{bottom:731.773333pt;}
.y9d{bottom:734.653333pt;}
.ybb{bottom:736.733333pt;}
.y12{bottom:738.813333pt;}
.y44{bottom:749.533333pt;}
.y11{bottom:760.253333pt;}
.y6c{bottom:763.933333pt;}
.yba{bottom:768.733333pt;}
.y10{bottom:781.693333pt;}
.y6b{bottom:796.133333pt;}
.yb9{bottom:800.933333pt;}
.y2f{bottom:802.853333pt;}
.yf{bottom:803.333333pt;}
.y9c{bottom:813.733333pt;}
.y43{bottom:814.053333pt;}
.yb6{bottom:819.493333pt;}
.y85{bottom:823.813333pt;}
.ye{bottom:824.773333pt;}
.y6a{bottom:828.453333pt;}
.yd{bottom:845.733333pt;}
.yf0{bottom:845.893333pt;}
.y42{bottom:846.213333pt;}
.y69{bottom:860.293333pt;}
.yc{bottom:867.653333pt;}
.y84{bottom:878.053333pt;}
.y2e{bottom:878.373333pt;}
.y68{bottom:878.853333pt;}
.yb{bottom:889.093333pt;}
.ya{bottom:910.533333pt;}
.y9{bottom:931.973333pt;}
.y2d{bottom:942.853333pt;}
.yf8{bottom:953.573333pt;}
.y8{bottom:975.013333pt;}
.yf7{bottom:996.453333pt;}
.y7{bottom:1006.853333pt;}
.y2c{bottom:1007.173333pt;}
.y66{bottom:1016.960000pt;}
.yf6{bottom:1017.920000pt;}
.y6{bottom:1039.040000pt;}
.y2b{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.h14{height:32.460000pt;}
.h1a{height:33.918750pt;}
.ha{height:37.920000pt;}
.he{height:38.080000pt;}
.h21{height:45.600000pt;}
.h22{height:45.632000pt;}
.h13{height:47.109375pt;}
.hd{height:49.312000pt;}
.h15{height:52.134375pt;}
.h8{height:52.832812pt;}
.h2{height:58.563750pt;}
.h12{height:62.720000pt;}
.h1b{height:62.752000pt;}
.h3{height:62.781250pt;}
.h9{height:65.995312pt;}
.h7{height:73.454062pt;}
.h6{height:73.490625pt;}
.h1e{height:74.112000pt;}
.h5{height:75.465000pt;}
.h23{height:76.964840pt;}
.h16{height:81.669375pt;}
.h10{height:87.360000pt;}
.h11{height:87.392000pt;}
.h20{height:87.552000pt;}
.h18{height:112.000000pt;}
.h19{height:112.032000pt;}
.hb{height:112.192000pt;}
.hc{height:136.800000pt;}
.hf{height:136.826667pt;}
.h17{height:161.466667pt;}
.h1f{height:235.546667pt;}
.h1c{height:260.186667pt;}
.h1d{height:284.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.wa{width:55.200000pt;}
.w6{width:55.360000pt;}
.w9{width:55.392000pt;}
.w7{width:55.520000pt;}
.w8{width:64.832000pt;}
.wb{width:67.072000pt;}
.w12{width:74.400000pt;}
.w13{width:93.152000pt;}
.w16{width:127.072000pt;}
.wc{width:139.866667pt;}
.w11{width:140.506667pt;}
.wf{width:162.906667pt;}
.we{width:162.946667pt;}
.w10{width:163.066667pt;}
.w5{width:176.066667pt;}
.w17{width:217.666667pt;}
.w3{width:239.266667pt;}
.w14{width:289.346667pt;}
.w15{width:308.386667pt;}
.w4{width:399.453333pt;}
.wd{width:514.533333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.592000pt;}
.x3d{left:14.586667pt;}
.x4{left:18.266667pt;}
.x2c{left:20.192000pt;}
.x2f{left:37.480000pt;}
.x21{left:53.760000pt;}
.x1e{left:78.560000pt;}
.x1{left:85.152000pt;}
.x15{left:86.432000pt;}
.x3a{left:92.352000pt;}
.x1c{left:96.992000pt;}
.x2{left:99.232000pt;}
.x5{left:102.272000pt;}
.x2a{left:103.552000pt;}
.xe{left:132.352000pt;}
.x2e{left:140.840000pt;}
.x36{left:153.786667pt;}
.x3f{left:160.666667pt;}
.x30{left:165.146667pt;}
.x40{left:184.666667pt;}
.x2d{left:219.706667pt;}
.x33{left:242.786667pt;}
.x23{left:255.906667pt;}
.x3e{left:264.226667pt;}
.x37{left:286.466667pt;}
.x10{left:290.626667pt;}
.x31{left:294.146667pt;}
.x24{left:312.546667pt;}
.x13{left:315.426667pt;}
.x20{left:319.106667pt;}
.x2b{left:325.346667pt;}
.x12{left:334.786667pt;}
.x16{left:338.306667pt;}
.x18{left:357.186667pt;}
.x38{left:362.146667pt;}
.x25{left:369.346667pt;}
.x6{left:375.906667pt;}
.x3b{left:388.226667pt;}
.x3{left:390.146667pt;}
.x8{left:404.253333pt;}
.x34{left:406.973333pt;}
.x1a{left:416.253333pt;}
.x1b{left:424.573333pt;}
.xb{left:431.933333pt;}
.x26{left:435.453333pt;}
.x39{left:456.733333pt;}
.xf{left:461.533333pt;}
.xa{left:465.533333pt;}
.x17{left:467.453333pt;}
.x7{left:472.093333pt;}
.x27{left:492.253333pt;}
.xd{left:506.013333pt;}
.x3c{left:516.573333pt;}
.x11{left:522.813333pt;}
.x14{left:534.653333pt;}
.x9{left:549.053333pt;}
.x19{left:553.213333pt;}
.x35{left:571.333333pt;}
.xc{left:573.253333pt;}
.x28{left:605.733333pt;}
.x22{left:645.413333pt;}
.x29{left:662.373333pt;}
.x1d{left:667.173333pt;}
.x32{left:671.973333pt;}
}




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