
    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_f86f51ca1a0f850354f0623f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_261cb27dcbf26269dd3f1340.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_99687bc1e2cb0fbce958f5c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091797;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_86d3762f2ab4f80c8922b4c7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.087891;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_88350da296fa64df8273f29f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.030273;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_6c585111dc5549413df876f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.087891;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_88d9aae4be79484a46d47eb5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_b3ae7700cbe5c00e0b6b11d5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_f7fcd83b2dde6cd253f138a7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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_d0e59fbaeb3f70c881546cba.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.030273;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_a4a6ebd017bf7484bb6a8625.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.020996;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_2ea3361d10c26a56567c3ede.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.091797;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_4b0f5c97c0625fe14afbb0f2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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);}
.va{vertical-align:-55.860000px;}
.v7{vertical-align:-36.000000px;}
.v8{vertical-align:-32.400000px;}
.v2{vertical-align:-25.200000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.140000px;}
.v5{vertical-align:18.000000px;}
.v9{vertical-align:23.760000px;}
.v3{vertical-align:28.800000px;}
.v4{vertical-align:32.400000px;}
.v6{vertical-align:36.000000px;}
.v1{vertical-align:43.200000px;}
.lsa{letter-spacing:-1.008000px;}
.ls21{letter-spacing:-0.696000px;}
.ls23{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.522600px;}
.ls1e{letter-spacing:-0.457200px;}
.ls1d{letter-spacing:-0.363000px;}
.ls4{letter-spacing:-0.302400px;}
.lsf{letter-spacing:-0.231600px;}
.ls9{letter-spacing:-0.205200px;}
.ls22{letter-spacing:-0.201000px;}
.ls2c{letter-spacing:-0.197400px;}
.ls2d{letter-spacing:-0.194400px;}
.ls2b{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.128400px;}
.ls24{letter-spacing:-0.115800px;}
.lse{letter-spacing:-0.106800px;}
.ls29{letter-spacing:-0.072000px;}
.ls33{letter-spacing:-0.060600px;}
.ls1f{letter-spacing:-0.051240px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.007500px;}
.ls1a{letter-spacing:0.028200px;}
.ls2e{letter-spacing:0.040920px;}
.ls19{letter-spacing:0.049680px;}
.ls32{letter-spacing:0.060600px;}
.ls16{letter-spacing:0.062400px;}
.ls14{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.121200px;}
.ls12{letter-spacing:0.132600px;}
.ls11{letter-spacing:0.137400px;}
.ls1c{letter-spacing:0.158400px;}
.ls25{letter-spacing:0.179280px;}
.ls35{letter-spacing:0.182400px;}
.ls30{letter-spacing:0.184800px;}
.ls13{letter-spacing:0.186600px;}
.ls10{letter-spacing:0.188400px;}
.ls31{letter-spacing:0.258000px;}
.ls34{letter-spacing:0.269400px;}
.ls2a{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.291600px;}
.ls3{letter-spacing:0.299400px;}
.lsd{letter-spacing:0.344400px;}
.ls28{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.396000px;}
.ls5{letter-spacing:0.405600px;}
.ls20{letter-spacing:0.762000px;}
.ls1{letter-spacing:11.050560px;}
.ls15{letter-spacing:24.609600px;}
.ls18{letter-spacing:25.263360px;}
.ls17{letter-spacing:25.329600px;}
.ls0{letter-spacing:30.344160px;}
.ls27{letter-spacing:41.097600px;}
.ls26{letter-spacing:41.148000px;}
.lsc{letter-spacing:65.865600px;}
.lsb{letter-spacing:65.916000px;}
.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;}
}
.ws25{word-spacing:-144.000000px;}
.ws22{word-spacing:-120.240000px;}
.ws16{word-spacing:-108.000000px;}
.ws17{word-spacing:-46.273680px;}
.ws45{word-spacing:-37.102320px;}
.ws43{word-spacing:-25.221552px;}
.ws18{word-spacing:-24.753120px;}
.ws44{word-spacing:-24.688920px;}
.ws3d{word-spacing:-24.644352px;}
.ws26{word-spacing:-24.595320px;}
.ws3c{word-spacing:-24.540720px;}
.ws3a{word-spacing:-24.500472px;}
.ws23{word-spacing:-24.471120px;}
.ws24{word-spacing:-24.466152px;}
.ws12{word-spacing:-24.437952px;}
.ws34{word-spacing:-24.419520px;}
.ws10{word-spacing:-24.408720px;}
.ws41{word-spacing:-24.358920px;}
.ws21{word-spacing:-24.106320px;}
.ws35{word-spacing:-22.217760px;}
.ws14{word-spacing:-21.924000px;}
.ws38{word-spacing:-20.304000px;}
.ws47{word-spacing:-19.468512px;}
.wsa{word-spacing:-19.439280px;}
.ws31{word-spacing:-17.831520px;}
.ws1b{word-spacing:-16.613280px;}
.ws1c{word-spacing:-16.506480px;}
.ws33{word-spacing:-16.252992px;}
.ws20{word-spacing:-16.223760px;}
.ws28{word-spacing:-16.201752px;}
.ws2b{word-spacing:-16.107960px;}
.wsd{word-spacing:-15.785280px;}
.ws27{word-spacing:-15.766560px;}
.ws2a{word-spacing:-15.623760px;}
.ws29{word-spacing:-15.527760px;}
.ws37{word-spacing:-15.069840px;}
.ws2e{word-spacing:-14.976000px;}
.ws30{word-spacing:-14.472000px;}
.ws15{word-spacing:-13.608000px;}
.ws46{word-spacing:-13.190640px;}
.ws2f{word-spacing:-13.008240px;}
.ws1f{word-spacing:-12.268680px;}
.ws1e{word-spacing:-12.263880px;}
.ws19{word-spacing:-12.131280px;}
.ws32{word-spacing:-10.621440px;}
.ws2{word-spacing:-1.242960px;}
.ws4{word-spacing:-1.070640px;}
.ws7{word-spacing:-1.014000px;}
.ws5{word-spacing:-0.781200px;}
.ws9{word-spacing:-0.581760px;}
.ws1{word-spacing:-0.575640px;}
.ws8{word-spacing:-0.480960px;}
.ws2d{word-spacing:-0.297360px;}
.ws0{word-spacing:-0.269280px;}
.ws2c{word-spacing:-0.030960px;}
.wse{word-spacing:0.000000px;}
.ws6{word-spacing:0.010800px;}
.ws3{word-spacing:0.481680px;}
.ws3e{word-spacing:0.583200px;}
.ws3f{word-spacing:0.988920px;}
.ws40{word-spacing:1.352160px;}
.wsb{word-spacing:7.527960px;}
.ws42{word-spacing:15.079008px;}
.wsc{word-spacing:25.086240px;}
.ws13{word-spacing:29.502912px;}
.ws1a{word-spacing:41.867280px;}
.ws1d{word-spacing:47.560320px;}
.ws3b{word-spacing:63.958320px;}
.ws39{word-spacing:64.039032px;}
.wsf{word-spacing:93.499680px;}
.ws11{word-spacing:93.582768px;}
.ws36{word-spacing:1775.307120px;}
._1{margin-left:-29.875392px;}
._c{margin-left:-18.465600px;}
._2{margin-left:-14.541120px;}
._8{margin-left:-9.980640px;}
._17{margin-left:-8.974368px;}
._6{margin-left:-7.890768px;}
._12{margin-left:-6.724080px;}
._0{margin-left:-5.389440px;}
._7{margin-left:-4.088880px;}
._4{margin-left:-2.998080px;}
._3{margin-left:-1.321920px;}
._9{width:1.082160px;}
._d{width:3.081600px;}
._e{width:4.915680px;}
._5{width:17.174640px;}
._16{width:18.261360px;}
._18{width:19.576080px;}
._10{width:22.479600px;}
._13{width:38.360016px;}
._15{width:41.282640px;}
._14{width:42.330720px;}
._19{width:629.769840px;}
._a{width:652.485840px;}
._11{width:653.925840px;}
._1a{width:1326.562560px;}
._f{width:1423.512480px;}
._b{width:1481.112480px;}
.fc8{color:rgb(16,72,98);}
.fc7{color:transparent;}
.fc4{color:rgb(97,192,228);}
.fc3{color:rgb(70,120,134);}
.fc5{color:rgb(0,2,108);}
.fc1{color:rgb(0,15,121);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs10{font-size:40.320000px;}
.fs15{font-size:53.280000px;}
.fs4{font-size:56.160000px;}
.fsf{font-size:59.760000px;}
.fs11{font-size:59.904000px;}
.fs6{font-size:64.080000px;}
.fse{font-size:72.000000px;}
.fs16{font-size:72.144000px;}
.fs8{font-size:77.760000px;}
.fs12{font-size:79.920000px;}
.fs13{font-size:80.064000px;}
.fs5{font-size:84.240000px;}
.fs14{font-size:87.840000px;}
.fs17{font-size:87.984000px;}
.fs3{font-size:95.760000px;}
.fs7{font-size:95.904000px;}
.fsd{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fsb{font-size:120.240000px;}
.fsc{font-size:120.384000px;}
.fs2{font-size:144.000000px;}
.fs19{font-size:192.240000px;}
.fs18{font-size:192.384000px;}
.fsa{font-size:239.760000px;}
.fs0{font-size:264.240000px;}
.fs1{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:14.148000px;}
.y71{bottom:27.540000px;}
.y95{bottom:28.332000px;}
.yca{bottom:48.456000px;}
.y94{bottom:52.272000px;}
.y37{bottom:52.524000px;}
.y3c{bottom:53.316000px;}
.y4c{bottom:54.360000px;}
.y4a{bottom:62.064000px;}
.y3b{bottom:71.352000px;}
.y4b{bottom:72.360000px;}
.y6e{bottom:74.340000px;}
.yc9{bottom:74.952000px;}
.y93{bottom:76.212000px;}
.y49{bottom:80.064000px;}
.y3a{bottom:89.352000px;}
.y45{bottom:95.616000px;}
.y7f{bottom:95.688000px;}
.y75{bottom:96.876000px;}
.y48{bottom:98.064000px;}
.yc8{bottom:101.412000px;}
.y76{bottom:105.876000px;}
.y92{bottom:106.308000px;}
.y39{bottom:106.632000px;}
.y47{bottom:116.064000px;}
.y72{bottom:116.172000px;}
.y6c{bottom:116.175000px;}
.y67{bottom:116.355000px;}
.y5e{bottom:116.385000px;}
.y6b{bottom:121.140000px;}
.y38{bottom:124.632000px;}
.yc7{bottom:127.692000px;}
.y7e{bottom:128.088000px;}
.y91{bottom:130.248000px;}
.y2e{bottom:133.056000px;}
.y46{bottom:134.064000px;}
.y44{bottom:135.576000px;}
.y74{bottom:143.712000px;}
.y73{bottom:152.715000px;}
.yc6{bottom:154.155000px;}
.y90{bottom:154.365000px;}
.y7d{bottom:160.485000px;}
.y19{bottom:169.635000px;}
.y2d{bottom:173.010000px;}
.yc5{bottom:180.615000px;}
.y43{bottom:182.910000px;}
.y8f{bottom:184.245000px;}
.y70{bottom:190.515000px;}
.y7c{bottom:192.930000px;}
.y6f{bottom:199.515000px;}
.yc4{bottom:206.895000px;}
.y8e{bottom:208.185000px;}
.yd{bottom:209.445000px;}
.yce{bottom:209.520000px;}
.y2c{bottom:213.015000px;}
.y18{bottom:216.975000px;}
.y52{bottom:220.395000px;}
.y42{bottom:222.915000px;}
.y7b{bottom:225.330000px;}
.yc3{bottom:233.385000px;}
.ydb{bottom:233.670000px;}
.y6d{bottom:237.315000px;}
.y35{bottom:245.415000px;}
.y2b{bottom:252.795000px;}
.y8d{bottom:254.670000px;}
.ycd{bottom:257.580000px;}
.y7a{bottom:257.730000px;}
.yc2{bottom:259.845000px;}
.y41{bottom:262.695000px;}
.y17{bottom:264.495000px;}
.y5b{bottom:270.540000px;}
.y66{bottom:272.340000px;}
.yda{bottom:274.755000px;}
.y5{bottom:276.810000px;}
.ycc{bottom:281.520000px;}
.y6a{bottom:284.115000px;}
.y34{bottom:285.195000px;}
.yc1{bottom:286.305000px;}
.y79{bottom:290.130000px;}
.y2a{bottom:292.755000px;}
.yaa{bottom:294.015000px;}
.y21{bottom:294.375000px;}
.yd9{bottom:300.675000px;}
.ycb{bottom:306.000000px;}
.y40{bottom:310.215000px;}
.y5a{bottom:310.500000px;}
.y16{bottom:311.835000px;}
.yc0{bottom:312.585000px;}
.y4{bottom:314.430000px;}
.y63{bottom:319.140000px;}
.ya9{bottom:322.125000px;}
.y2f{bottom:322.665000px;}
.y33{bottom:325.155000px;}
.y8c{bottom:326.235000px;}
.yd8{bottom:326.595000px;}
.y29{bottom:332.715000px;}
.y20{bottom:334.365000px;}
.ybf{bottom:339.045000px;}
.y78{bottom:341.925000px;}
.y3{bottom:349.890000px;}
.y3f{bottom:349.995000px;}
.y59{bottom:350.490000px;}
.y8b{bottom:354.675000px;}
.y32{bottom:357.585000px;}
.y15{bottom:359.205000px;}
.ya1{bottom:359.535000px;}
.ybe{bottom:365.505000px;}
.y60{bottom:365.940000px;}
.yd7{bottom:367.455000px;}
.y28{bottom:372.525000px;}
.y36{bottom:380.160000px;}
.y1f{bottom:381.705000px;}
.ya0{bottom:383.475000px;}
.y8a{bottom:385.095000px;}
.ya8{bottom:385.665000px;}
.y69{bottom:388.695000px;}
.y3e{bottom:389.985000px;}
.y58{bottom:390.270000px;}
.ybd{bottom:391.830000px;}
.yd6{bottom:393.375000px;}
.yc{bottom:394.200000px;}
.y31{bottom:397.545000px;}
.y68{bottom:397.695000px;}
.y4f{bottom:404.925000px;}
.y14{bottom:406.725000px;}
.y9f{bottom:407.415000px;}
.y27{bottom:412.485000px;}
.y5d{bottom:412.740000px;}
.y89{bottom:413.535000px;}
.y77{bottom:414.105000px;}
.y2{bottom:415.695000px;}
.ybc{bottom:418.290000px;}
.yd5{bottom:419.325000px;}
.ybb{bottom:421.020000px;}
.y1e{bottom:421.665000px;}
.yb{bottom:423.000000px;}
.y57{bottom:430.230000px;}
.y9e{bottom:431.535000px;}
.yaf{bottom:434.670000px;}
.y65{bottom:435.525000px;}
.y30{bottom:437.325000px;}
.yba{bottom:442.620000px;}
.y64{bottom:444.525000px;}
.y4e{bottom:444.885000px;}
.y88{bottom:451.365000px;}
.ya7{bottom:451.725000px;}
.ya{bottom:451.800000px;}
.y26{bottom:452.445000px;}
.y13{bottom:454.065000px;}
.y9d{bottom:455.475000px;}
.yd4{bottom:460.185000px;}
.y4d{bottom:461.625000px;}
.yae{bottom:467.070000px;}
.y1d{bottom:469.005000px;}
.yb9{bottom:470.700000px;}
.y3d{bottom:477.285000px;}
.y56{bottom:477.615000px;}
.y87{bottom:479.085000px;}
.y9c{bottom:479.415000px;}
.y9{bottom:480.630000px;}
.yb4{bottom:481.755000px;}
.y62{bottom:482.325000px;}
.y25{bottom:484.845000px;}
.ydd{bottom:485.820000px;}
.y1{bottom:486.975000px;}
.ya6{bottom:487.230000px;}
.y61{bottom:491.325000px;}
.y51{bottom:492.225000px;}
.yad{bottom:499.470000px;}
.yd3{bottom:501.225000px;}
.y12{bottom:501.450000px;}
.y9b{bottom:503.565000px;}
.y86{bottom:506.625000px;}
.y22{bottom:509.010000px;}
.yb3{bottom:509.295000px;}
.y8{bottom:509.430000px;}
.ya5{bottom:515.310000px;}
.y1c{bottom:516.570000px;}
.y24{bottom:524.670000px;}
.y55{bottom:525.135000px;}
.y9a{bottom:527.505000px;}
.y5f{bottom:529.125000px;}
.yac{bottom:531.900000px;}
.y50{bottom:532.230000px;}
.y85{bottom:534.165000px;}
.yb2{bottom:536.865000px;}
.yd2{bottom:542.085000px;}
.yb8{bottom:544.170000px;}
.y11{bottom:548.970000px;}
.y99{bottom:551.445000px;}
.ya4{bottom:555.270000px;}
.y1b{bottom:556.350000px;}
.y54{bottom:557.535000px;}
.y84{bottom:562.605000px;}
.y7{bottom:563.250000px;}
.yab{bottom:564.300000px;}
.y23{bottom:564.630000px;}
.yb1{bottom:565.305000px;}
.yb7{bottom:568.110000px;}
.y98{bottom:575.385000px;}
.y5c{bottom:575.925000px;}
.ya3{bottom:583.350000px;}
.yd1{bottom:585.645000px;}
.yb6{bottom:592.050000px;}
.y10{bottom:596.310000px;}
.y97{bottom:599.505000px;}
.y53{bottom:604.875000px;}
.y6{bottom:616.245000px;}
.yb5{bottom:616.530000px;}
.y83{bottom:619.305000px;}
.yb0{bottom:621.795000px;}
.y96{bottom:623.985000px;}
.yd0{bottom:637.485000px;}
.ya2{bottom:643.035000px;}
.ydc{bottom:670.965000px;}
.yf{bottom:672.375000px;}
.ycf{bottom:689.370000px;}
.y82{bottom:697.935000px;}
.y81{bottom:730.335000px;}
.ye{bottom:761.190000px;}
.y80{bottom:762.765000px;}
.h13{height:43.681992px;}
.h4{height:48.673828px;}
.h11{height:51.793945px;}
.h14{height:51.918750px;}
.h2b{height:52.628906px;}
.h12{height:52.945312px;}
.h2c{height:58.418086px;}
.h30{height:58.523344px;}
.h21{height:62.402344px;}
.h27{height:62.527148px;}
.h2a{height:63.344531px;}
.h2d{height:63.824062px;}
.h2f{height:64.207266px;}
.h2e{height:64.312523px;}
.h29{height:66.051562px;}
.h9{height:67.394531px;}
.h18{height:69.071484px;}
.h1a{height:69.195937px;}
.h23{height:69.266602px;}
.h24{height:69.383672px;}
.h25{height:69.391406px;}
.h26{height:70.015781px;}
.h22{height:73.010742px;}
.h20{height:73.134141px;}
.h1f{height:76.259531px;}
.h35{height:82.761328px;}
.h36{height:82.885781px;}
.h33{height:82.995117px;}
.h34{height:83.119922px;}
.h8{height:83.135391px;}
.h6{height:83.260406px;}
.h5{height:84.338086px;}
.h7{height:84.431953px;}
.ha{height:93.464297px;}
.h28{height:93.603516px;}
.h1d{height:93.761719px;}
.h1c{height:93.886734px;}
.he{height:94.802344px;}
.h1e{height:94.907813px;}
.h17{height:103.918359px;}
.h19{height:104.042812px;}
.hc{height:104.211914px;}
.hd{height:104.336719px;}
.hf{height:104.388047px;}
.h10{height:104.513063px;}
.h15{height:105.266602px;}
.h38{height:125.944688px;}
.h3{height:126.195117px;}
.h32{height:162.484102px;}
.h31{height:162.605813px;}
.h1{height:193.148086px;}
.h2{height:193.253344px;}
.hb{height:202.648711px;}
.h37{height:223.339570px;}
.h1b{height:232.920000px;}
.h16{height:252.180000px;}
.h0{height:810.000000px;}
.w2{width:110.700000px;}
.w5{width:110.880000px;}
.w6{width:178.740000px;}
.w3{width:178.920000px;}
.w4{width:322.920000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x10{left:11.010000px;}
.x1d{left:16.199979px;}
.x2e{left:29.699979px;}
.x1a{left:44.963979px;}
.x1e{left:46.439979px;}
.x2f{left:70.199979px;}
.x2{left:81.467979px;}
.x19{left:99.503979px;}
.xa{left:101.447979px;}
.x3{left:109.799979px;}
.x17{left:111.563979px;}
.x1c{left:114.191979px;}
.xb{left:128.447979px;}
.xd{left:136.799979px;}
.x4{left:163.829979px;}
.x5{left:190.829979px;}
.x1b{left:195.089979px;}
.x31{left:208.949979px;}
.x6{left:217.829979px;}
.x8{left:244.829979px;}
.x1{left:381.494979px;}
.x21{left:564.119979px;}
.x22{left:581.399979px;}
.x20{left:614.444979px;}
.x2b{left:666.509979px;}
.x1f{left:689.789979px;}
.x18{left:733.139979px;}
.x7{left:735.404979px;}
.xf{left:779.400000px;}
.xe{left:806.909979px;}
.x30{left:848.489979px;}
.x16{left:856.979979px;}
.x11{left:889.920000px;}
.x9{left:982.154979px;}
.x26{left:1006.409979px;}
.x27{left:1017.389979px;}
.x2a{left:1049.789979px;}
.x24{left:1057.214979px;}
.x2c{left:1060.709979px;}
.x12{left:1068.660000px;}
.x29{left:1098.614979px;}
.x25{left:1102.574979px;}
.x2d{left:1106.069979px;}
.xc{left:1130.654979px;}
.x14{left:1151.099979px;}
.x15{left:1158.119979px;}
.x13{left:1162.079979px;}
.x28{left:1165.754979px;}
.x23{left:1210.829979px;}
@media print{
.va{vertical-align:-49.653333pt;}
.v7{vertical-align:-32.000000pt;}
.v8{vertical-align:-28.800000pt;}
.v2{vertical-align:-22.400000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.013333pt;}
.v5{vertical-align:16.000000pt;}
.v9{vertical-align:21.120000pt;}
.v3{vertical-align:25.600000pt;}
.v4{vertical-align:28.800000pt;}
.v6{vertical-align:32.000000pt;}
.v1{vertical-align:38.400000pt;}
.lsa{letter-spacing:-0.896000pt;}
.ls21{letter-spacing:-0.618667pt;}
.ls23{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.464533pt;}
.ls1e{letter-spacing:-0.406400pt;}
.ls1d{letter-spacing:-0.322667pt;}
.ls4{letter-spacing:-0.268800pt;}
.lsf{letter-spacing:-0.205867pt;}
.ls9{letter-spacing:-0.182400pt;}
.ls22{letter-spacing:-0.178667pt;}
.ls2c{letter-spacing:-0.175467pt;}
.ls2d{letter-spacing:-0.172800pt;}
.ls2b{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.114133pt;}
.ls24{letter-spacing:-0.102933pt;}
.lse{letter-spacing:-0.094933pt;}
.ls29{letter-spacing:-0.064000pt;}
.ls33{letter-spacing:-0.053867pt;}
.ls1f{letter-spacing:-0.045547pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.006667pt;}
.ls1a{letter-spacing:0.025067pt;}
.ls2e{letter-spacing:0.036373pt;}
.ls19{letter-spacing:0.044160pt;}
.ls32{letter-spacing:0.053867pt;}
.ls16{letter-spacing:0.055467pt;}
.ls14{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.107733pt;}
.ls12{letter-spacing:0.117867pt;}
.ls11{letter-spacing:0.122133pt;}
.ls1c{letter-spacing:0.140800pt;}
.ls25{letter-spacing:0.159360pt;}
.ls35{letter-spacing:0.162133pt;}
.ls30{letter-spacing:0.164267pt;}
.ls13{letter-spacing:0.165867pt;}
.ls10{letter-spacing:0.167467pt;}
.ls31{letter-spacing:0.229333pt;}
.ls34{letter-spacing:0.239467pt;}
.ls2a{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.259200pt;}
.ls3{letter-spacing:0.266133pt;}
.lsd{letter-spacing:0.306133pt;}
.ls28{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.352000pt;}
.ls5{letter-spacing:0.360533pt;}
.ls20{letter-spacing:0.677333pt;}
.ls1{letter-spacing:9.822720pt;}
.ls15{letter-spacing:21.875200pt;}
.ls18{letter-spacing:22.456320pt;}
.ls17{letter-spacing:22.515200pt;}
.ls0{letter-spacing:26.972587pt;}
.ls27{letter-spacing:36.531200pt;}
.ls26{letter-spacing:36.576000pt;}
.lsc{letter-spacing:58.547200pt;}
.lsb{letter-spacing:58.592000pt;}
.ws25{word-spacing:-128.000000pt;}
.ws22{word-spacing:-106.880000pt;}
.ws16{word-spacing:-96.000000pt;}
.ws17{word-spacing:-41.132160pt;}
.ws45{word-spacing:-32.979840pt;}
.ws43{word-spacing:-22.419157pt;}
.ws18{word-spacing:-22.002773pt;}
.ws44{word-spacing:-21.945707pt;}
.ws3d{word-spacing:-21.906091pt;}
.ws26{word-spacing:-21.862507pt;}
.ws3c{word-spacing:-21.813973pt;}
.ws3a{word-spacing:-21.778197pt;}
.ws23{word-spacing:-21.752107pt;}
.ws24{word-spacing:-21.747691pt;}
.ws12{word-spacing:-21.722624pt;}
.ws34{word-spacing:-21.706240pt;}
.ws10{word-spacing:-21.696640pt;}
.ws41{word-spacing:-21.652373pt;}
.ws21{word-spacing:-21.427840pt;}
.ws35{word-spacing:-19.749120pt;}
.ws14{word-spacing:-19.488000pt;}
.ws38{word-spacing:-18.048000pt;}
.ws47{word-spacing:-17.305344pt;}
.wsa{word-spacing:-17.279360pt;}
.ws31{word-spacing:-15.850240pt;}
.ws1b{word-spacing:-14.767360pt;}
.ws1c{word-spacing:-14.672427pt;}
.ws33{word-spacing:-14.447104pt;}
.ws20{word-spacing:-14.421120pt;}
.ws28{word-spacing:-14.401557pt;}
.ws2b{word-spacing:-14.318187pt;}
.wsd{word-spacing:-14.031360pt;}
.ws27{word-spacing:-14.014720pt;}
.ws2a{word-spacing:-13.887787pt;}
.ws29{word-spacing:-13.802453pt;}
.ws37{word-spacing:-13.395413pt;}
.ws2e{word-spacing:-13.312000pt;}
.ws30{word-spacing:-12.864000pt;}
.ws15{word-spacing:-12.096000pt;}
.ws46{word-spacing:-11.725013pt;}
.ws2f{word-spacing:-11.562880pt;}
.ws1f{word-spacing:-10.905493pt;}
.ws1e{word-spacing:-10.901227pt;}
.ws19{word-spacing:-10.783360pt;}
.ws32{word-spacing:-9.441280pt;}
.ws2{word-spacing:-1.104853pt;}
.ws4{word-spacing:-0.951680pt;}
.ws7{word-spacing:-0.901333pt;}
.ws5{word-spacing:-0.694400pt;}
.ws9{word-spacing:-0.517120pt;}
.ws1{word-spacing:-0.511680pt;}
.ws8{word-spacing:-0.427520pt;}
.ws2d{word-spacing:-0.264320pt;}
.ws0{word-spacing:-0.239360pt;}
.ws2c{word-spacing:-0.027520pt;}
.wse{word-spacing:0.000000pt;}
.ws6{word-spacing:0.009600pt;}
.ws3{word-spacing:0.428160pt;}
.ws3e{word-spacing:0.518400pt;}
.ws3f{word-spacing:0.879040pt;}
.ws40{word-spacing:1.201920pt;}
.wsb{word-spacing:6.691520pt;}
.ws42{word-spacing:13.403563pt;}
.wsc{word-spacing:22.298880pt;}
.ws13{word-spacing:26.224811pt;}
.ws1a{word-spacing:37.215360pt;}
.ws1d{word-spacing:42.275840pt;}
.ws3b{word-spacing:56.851840pt;}
.ws39{word-spacing:56.923584pt;}
.wsf{word-spacing:83.110827pt;}
.ws11{word-spacing:83.184683pt;}
.ws36{word-spacing:1578.050773pt;}
._1{margin-left:-26.555904pt;}
._c{margin-left:-16.413867pt;}
._2{margin-left:-12.925440pt;}
._8{margin-left:-8.871680pt;}
._17{margin-left:-7.977216pt;}
._6{margin-left:-7.014016pt;}
._12{margin-left:-5.976960pt;}
._0{margin-left:-4.790613pt;}
._7{margin-left:-3.634560pt;}
._4{margin-left:-2.664960pt;}
._3{margin-left:-1.175040pt;}
._9{width:0.961920pt;}
._d{width:2.739200pt;}
._e{width:4.369493pt;}
._5{width:15.266347pt;}
._16{width:16.232320pt;}
._18{width:17.400960pt;}
._10{width:19.981867pt;}
._13{width:34.097792pt;}
._15{width:36.695680pt;}
._14{width:37.627307pt;}
._19{width:559.795413pt;}
._a{width:579.987413pt;}
._11{width:581.267413pt;}
._1a{width:1179.166720pt;}
._f{width:1265.344427pt;}
._b{width:1316.544427pt;}
.fs10{font-size:35.840000pt;}
.fs15{font-size:47.360000pt;}
.fs4{font-size:49.920000pt;}
.fsf{font-size:53.120000pt;}
.fs11{font-size:53.248000pt;}
.fs6{font-size:56.960000pt;}
.fse{font-size:64.000000pt;}
.fs16{font-size:64.128000pt;}
.fs8{font-size:69.120000pt;}
.fs12{font-size:71.040000pt;}
.fs13{font-size:71.168000pt;}
.fs5{font-size:74.880000pt;}
.fs14{font-size:78.080000pt;}
.fs17{font-size:78.208000pt;}
.fs3{font-size:85.120000pt;}
.fs7{font-size:85.248000pt;}
.fsd{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fsb{font-size:106.880000pt;}
.fsc{font-size:107.008000pt;}
.fs2{font-size:128.000000pt;}
.fs19{font-size:170.880000pt;}
.fs18{font-size:171.008000pt;}
.fsa{font-size:213.120000pt;}
.fs0{font-size:234.880000pt;}
.fs1{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:12.576000pt;}
.y71{bottom:24.480000pt;}
.y95{bottom:25.184000pt;}
.yca{bottom:43.072000pt;}
.y94{bottom:46.464000pt;}
.y37{bottom:46.688000pt;}
.y3c{bottom:47.392000pt;}
.y4c{bottom:48.320000pt;}
.y4a{bottom:55.168000pt;}
.y3b{bottom:63.424000pt;}
.y4b{bottom:64.320000pt;}
.y6e{bottom:66.080000pt;}
.yc9{bottom:66.624000pt;}
.y93{bottom:67.744000pt;}
.y49{bottom:71.168000pt;}
.y3a{bottom:79.424000pt;}
.y45{bottom:84.992000pt;}
.y7f{bottom:85.056000pt;}
.y75{bottom:86.112000pt;}
.y48{bottom:87.168000pt;}
.yc8{bottom:90.144000pt;}
.y76{bottom:94.112000pt;}
.y92{bottom:94.496000pt;}
.y39{bottom:94.784000pt;}
.y47{bottom:103.168000pt;}
.y72{bottom:103.264000pt;}
.y6c{bottom:103.266667pt;}
.y67{bottom:103.426667pt;}
.y5e{bottom:103.453333pt;}
.y6b{bottom:107.680000pt;}
.y38{bottom:110.784000pt;}
.yc7{bottom:113.504000pt;}
.y7e{bottom:113.856000pt;}
.y91{bottom:115.776000pt;}
.y2e{bottom:118.272000pt;}
.y46{bottom:119.168000pt;}
.y44{bottom:120.512000pt;}
.y74{bottom:127.744000pt;}
.y73{bottom:135.746667pt;}
.yc6{bottom:137.026667pt;}
.y90{bottom:137.213333pt;}
.y7d{bottom:142.653333pt;}
.y19{bottom:150.786667pt;}
.y2d{bottom:153.786667pt;}
.yc5{bottom:160.546667pt;}
.y43{bottom:162.586667pt;}
.y8f{bottom:163.773333pt;}
.y70{bottom:169.346667pt;}
.y7c{bottom:171.493333pt;}
.y6f{bottom:177.346667pt;}
.yc4{bottom:183.906667pt;}
.y8e{bottom:185.053333pt;}
.yd{bottom:186.173333pt;}
.yce{bottom:186.240000pt;}
.y2c{bottom:189.346667pt;}
.y18{bottom:192.866667pt;}
.y52{bottom:195.906667pt;}
.y42{bottom:198.146667pt;}
.y7b{bottom:200.293333pt;}
.yc3{bottom:207.453333pt;}
.ydb{bottom:207.706667pt;}
.y6d{bottom:210.946667pt;}
.y35{bottom:218.146667pt;}
.y2b{bottom:224.706667pt;}
.y8d{bottom:226.373333pt;}
.ycd{bottom:228.960000pt;}
.y7a{bottom:229.093333pt;}
.yc2{bottom:230.973333pt;}
.y41{bottom:233.506667pt;}
.y17{bottom:235.106667pt;}
.y5b{bottom:240.480000pt;}
.y66{bottom:242.080000pt;}
.yda{bottom:244.226667pt;}
.y5{bottom:246.053333pt;}
.ycc{bottom:250.240000pt;}
.y6a{bottom:252.546667pt;}
.y34{bottom:253.506667pt;}
.yc1{bottom:254.493333pt;}
.y79{bottom:257.893333pt;}
.y2a{bottom:260.226667pt;}
.yaa{bottom:261.346667pt;}
.y21{bottom:261.666667pt;}
.yd9{bottom:267.266667pt;}
.ycb{bottom:272.000000pt;}
.y40{bottom:275.746667pt;}
.y5a{bottom:276.000000pt;}
.y16{bottom:277.186667pt;}
.yc0{bottom:277.853333pt;}
.y4{bottom:279.493333pt;}
.y63{bottom:283.680000pt;}
.ya9{bottom:286.333333pt;}
.y2f{bottom:286.813333pt;}
.y33{bottom:289.026667pt;}
.y8c{bottom:289.986667pt;}
.yd8{bottom:290.306667pt;}
.y29{bottom:295.746667pt;}
.y20{bottom:297.213333pt;}
.ybf{bottom:301.373333pt;}
.y78{bottom:303.933333pt;}
.y3{bottom:311.013333pt;}
.y3f{bottom:311.106667pt;}
.y59{bottom:311.546667pt;}
.y8b{bottom:315.266667pt;}
.y32{bottom:317.853333pt;}
.y15{bottom:319.293333pt;}
.ya1{bottom:319.586667pt;}
.ybe{bottom:324.893333pt;}
.y60{bottom:325.280000pt;}
.yd7{bottom:326.626667pt;}
.y28{bottom:331.133333pt;}
.y36{bottom:337.920000pt;}
.y1f{bottom:339.293333pt;}
.ya0{bottom:340.866667pt;}
.y8a{bottom:342.306667pt;}
.ya8{bottom:342.813333pt;}
.y69{bottom:345.506667pt;}
.y3e{bottom:346.653333pt;}
.y58{bottom:346.906667pt;}
.ybd{bottom:348.293333pt;}
.yd6{bottom:349.666667pt;}
.yc{bottom:350.400000pt;}
.y31{bottom:353.373333pt;}
.y68{bottom:353.506667pt;}
.y4f{bottom:359.933333pt;}
.y14{bottom:361.533333pt;}
.y9f{bottom:362.146667pt;}
.y27{bottom:366.653333pt;}
.y5d{bottom:366.880000pt;}
.y89{bottom:367.586667pt;}
.y77{bottom:368.093333pt;}
.y2{bottom:369.506667pt;}
.ybc{bottom:371.813333pt;}
.yd5{bottom:372.733333pt;}
.ybb{bottom:374.240000pt;}
.y1e{bottom:374.813333pt;}
.yb{bottom:376.000000pt;}
.y57{bottom:382.426667pt;}
.y9e{bottom:383.586667pt;}
.yaf{bottom:386.373333pt;}
.y65{bottom:387.133333pt;}
.y30{bottom:388.733333pt;}
.yba{bottom:393.440000pt;}
.y64{bottom:395.133333pt;}
.y4e{bottom:395.453333pt;}
.y88{bottom:401.213333pt;}
.ya7{bottom:401.533333pt;}
.ya{bottom:401.600000pt;}
.y26{bottom:402.173333pt;}
.y13{bottom:403.613333pt;}
.y9d{bottom:404.866667pt;}
.yd4{bottom:409.053333pt;}
.y4d{bottom:410.333333pt;}
.yae{bottom:415.173333pt;}
.y1d{bottom:416.893333pt;}
.yb9{bottom:418.400000pt;}
.y3d{bottom:424.253333pt;}
.y56{bottom:424.546667pt;}
.y87{bottom:425.853333pt;}
.y9c{bottom:426.146667pt;}
.y9{bottom:427.226667pt;}
.yb4{bottom:428.226667pt;}
.y62{bottom:428.733333pt;}
.y25{bottom:430.973333pt;}
.ydd{bottom:431.840000pt;}
.y1{bottom:432.866667pt;}
.ya6{bottom:433.093333pt;}
.y61{bottom:436.733333pt;}
.y51{bottom:437.533333pt;}
.yad{bottom:443.973333pt;}
.yd3{bottom:445.533333pt;}
.y12{bottom:445.733333pt;}
.y9b{bottom:447.613333pt;}
.y86{bottom:450.333333pt;}
.y22{bottom:452.453333pt;}
.yb3{bottom:452.706667pt;}
.y8{bottom:452.826667pt;}
.ya5{bottom:458.053333pt;}
.y1c{bottom:459.173333pt;}
.y24{bottom:466.373333pt;}
.y55{bottom:466.786667pt;}
.y9a{bottom:468.893333pt;}
.y5f{bottom:470.333333pt;}
.yac{bottom:472.800000pt;}
.y50{bottom:473.093333pt;}
.y85{bottom:474.813333pt;}
.yb2{bottom:477.213333pt;}
.yd2{bottom:481.853333pt;}
.yb8{bottom:483.706667pt;}
.y11{bottom:487.973333pt;}
.y99{bottom:490.173333pt;}
.ya4{bottom:493.573333pt;}
.y1b{bottom:494.533333pt;}
.y54{bottom:495.586667pt;}
.y84{bottom:500.093333pt;}
.y7{bottom:500.666667pt;}
.yab{bottom:501.600000pt;}
.y23{bottom:501.893333pt;}
.yb1{bottom:502.493333pt;}
.yb7{bottom:504.986667pt;}
.y98{bottom:511.453333pt;}
.y5c{bottom:511.933333pt;}
.ya3{bottom:518.533333pt;}
.yd1{bottom:520.573333pt;}
.yb6{bottom:526.266667pt;}
.y10{bottom:530.053333pt;}
.y97{bottom:532.893333pt;}
.y53{bottom:537.666667pt;}
.y6{bottom:547.773333pt;}
.yb5{bottom:548.026667pt;}
.y83{bottom:550.493333pt;}
.yb0{bottom:552.706667pt;}
.y96{bottom:554.653333pt;}
.yd0{bottom:566.653333pt;}
.ya2{bottom:571.586667pt;}
.ydc{bottom:596.413333pt;}
.yf{bottom:597.666667pt;}
.ycf{bottom:612.773333pt;}
.y82{bottom:620.386667pt;}
.y81{bottom:649.186667pt;}
.ye{bottom:676.613333pt;}
.y80{bottom:678.013333pt;}
.h13{height:38.828437pt;}
.h4{height:43.265625pt;}
.h11{height:46.039063pt;}
.h14{height:46.150000pt;}
.h2b{height:46.781250pt;}
.h12{height:47.062500pt;}
.h2c{height:51.927188pt;}
.h30{height:52.020750pt;}
.h21{height:55.468750pt;}
.h27{height:55.579687pt;}
.h2a{height:56.306250pt;}
.h2d{height:56.732500pt;}
.h2f{height:57.073125pt;}
.h2e{height:57.166687pt;}
.h29{height:58.712500pt;}
.h9{height:59.906250pt;}
.h18{height:61.396875pt;}
.h1a{height:61.507500pt;}
.h23{height:61.570312pt;}
.h24{height:61.674375pt;}
.h25{height:61.681250pt;}
.h26{height:62.236250pt;}
.h22{height:64.898438pt;}
.h20{height:65.008125pt;}
.h1f{height:67.786250pt;}
.h35{height:73.565625pt;}
.h36{height:73.676250pt;}
.h33{height:73.773438pt;}
.h34{height:73.884375pt;}
.h8{height:73.898125pt;}
.h6{height:74.009250pt;}
.h5{height:74.967187pt;}
.h7{height:75.050625pt;}
.ha{height:83.079375pt;}
.h28{height:83.203125pt;}
.h1d{height:83.343750pt;}
.h1c{height:83.454875pt;}
.he{height:84.268750pt;}
.h1e{height:84.362500pt;}
.h17{height:92.371875pt;}
.h19{height:92.482500pt;}
.hc{height:92.632812pt;}
.hd{height:92.743750pt;}
.hf{height:92.789375pt;}
.h10{height:92.900500pt;}
.h15{height:93.570312pt;}
.h38{height:111.950833pt;}
.h3{height:112.173438pt;}
.h32{height:144.430312pt;}
.h31{height:144.538500pt;}
.h1{height:171.687187pt;}
.h2{height:171.780750pt;}
.hb{height:180.132187pt;}
.h37{height:198.524062pt;}
.h1b{height:207.040000pt;}
.h16{height:224.160000pt;}
.h0{height:720.000000pt;}
.w2{width:98.400000pt;}
.w5{width:98.560000pt;}
.w6{width:158.880000pt;}
.w3{width:159.040000pt;}
.w4{width:287.040000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x10{left:9.786667pt;}
.x1d{left:14.399981pt;}
.x2e{left:26.399981pt;}
.x1a{left:39.967981pt;}
.x1e{left:41.279981pt;}
.x2f{left:62.399981pt;}
.x2{left:72.415981pt;}
.x19{left:88.447981pt;}
.xa{left:90.175981pt;}
.x3{left:97.599981pt;}
.x17{left:99.167981pt;}
.x1c{left:101.503981pt;}
.xb{left:114.175981pt;}
.xd{left:121.599981pt;}
.x4{left:145.626648pt;}
.x5{left:169.626648pt;}
.x1b{left:173.413314pt;}
.x31{left:185.733314pt;}
.x6{left:193.626648pt;}
.x8{left:217.626648pt;}
.x1{left:339.106648pt;}
.x21{left:501.439981pt;}
.x22{left:516.799981pt;}
.x20{left:546.173314pt;}
.x2b{left:592.453314pt;}
.x1f{left:613.146648pt;}
.x18{left:651.679981pt;}
.x7{left:653.693314pt;}
.xf{left:692.800000pt;}
.xe{left:717.253314pt;}
.x30{left:754.213314pt;}
.x16{left:761.759981pt;}
.x11{left:791.040000pt;}
.x9{left:873.026648pt;}
.x26{left:894.586648pt;}
.x27{left:904.346648pt;}
.x2a{left:933.146648pt;}
.x24{left:939.746648pt;}
.x2c{left:942.853314pt;}
.x12{left:949.920000pt;}
.x29{left:976.546648pt;}
.x25{left:980.066648pt;}
.x2d{left:983.173314pt;}
.xc{left:1005.026648pt;}
.x14{left:1023.199981pt;}
.x15{left:1029.439981pt;}
.x13{left:1032.959981pt;}
.x28{left:1036.226648pt;}
.x23{left:1076.293314pt;}
}




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