
    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_aec3809be1c5d124aa3d5335.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.928000;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_69ae481c9889e555441a7741.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_8ba58a0d0508907b444e83f2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_46054fdb69d22bdb7fc60f6f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_9007ca38dec64f64425f6a14.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_b8638bb0570f392652eaa29d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a8c21616e17c562664f40d29.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_edaa51751f2ef86fabd6dfe3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_e47169cc1ad728a72630c173.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_e13e3b276aa67a050537b61a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.050000;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_46e4e853990ccb761e6374f9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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_30a315d19ecf318bf4ad82c6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.682617;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_4adcdb85256a0de8d7471a22.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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;}
.m2{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls56{letter-spacing:-1.663200px;}
.ls55{letter-spacing:-1.614816px;}
.ls53{letter-spacing:-1.596672px;}
.ls54{letter-spacing:-1.584576px;}
.ls22{letter-spacing:-1.572480px;}
.ls1f{letter-spacing:-1.554336px;}
.ls20{letter-spacing:-1.536192px;}
.ls4a{letter-spacing:-1.518048px;}
.ls21{letter-spacing:-1.505952px;}
.ls47{letter-spacing:-1.499904px;}
.ls51{letter-spacing:-1.457568px;}
.ls48{letter-spacing:-1.439424px;}
.ls4b{letter-spacing:-1.421280px;}
.ls52{letter-spacing:-1.378944px;}
.ls49{letter-spacing:-1.360800px;}
.ls46{letter-spacing:-1.342656px;}
.ls50{letter-spacing:-1.318464px;}
.ls13{letter-spacing:-1.209600px;}
.ls14{letter-spacing:-1.202400px;}
.ls12{letter-spacing:-1.188000px;}
.ls10{letter-spacing:-0.399168px;}
.ls11{letter-spacing:-0.241920px;}
.ls16{letter-spacing:-0.221760px;}
.lsd{letter-spacing:-0.178848px;}
.ls17{letter-spacing:-0.177408px;}
.ls7{letter-spacing:-0.145728px;}
.lsc{letter-spacing:-0.132480px;}
.lsb{letter-spacing:-0.066240px;}
.ls8{letter-spacing:-0.059616px;}
.ls9{letter-spacing:-0.052992px;}
.lse{letter-spacing:-0.021600px;}
.ls34{letter-spacing:-0.014400px;}
.lsa{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.014400px;}
.lsf{letter-spacing:0.021600px;}
.ls4f{letter-spacing:0.083520px;}
.ls2c{letter-spacing:0.098208px;}
.ls15{letter-spacing:0.202752px;}
.ls3b{letter-spacing:0.950688px;}
.ls3c{letter-spacing:0.951840px;}
.ls45{letter-spacing:1.081440px;}
.ls38{letter-spacing:1.807200px;}
.ls18{letter-spacing:1.809072px;}
.ls28{letter-spacing:1.838304px;}
.ls4e{letter-spacing:2.064096px;}
.ls2f{letter-spacing:2.507760px;}
.ls6{letter-spacing:3.125952px;}
.ls30{letter-spacing:3.354480px;}
.ls31{letter-spacing:3.356640px;}
.ls4c{letter-spacing:3.800160px;}
.ls1d{letter-spacing:3.821760px;}
.ls1e{letter-spacing:3.823200px;}
.ls39{letter-spacing:6.350400px;}
.ls44{letter-spacing:8.065440px;}
.ls0{letter-spacing:8.143056px;}
.ls2e{letter-spacing:8.808480px;}
.ls41{letter-spacing:9.191520px;}
.ls3e{letter-spacing:9.859680px;}
.ls3d{letter-spacing:10.363680px;}
.ls4{letter-spacing:10.537920px;}
.ls1a{letter-spacing:10.792944px;}
.ls19{letter-spacing:11.128464px;}
.ls35{letter-spacing:11.324160px;}
.ls4d{letter-spacing:12.376800px;}
.ls42{letter-spacing:12.624480px;}
.ls37{letter-spacing:12.929760px;}
.ls27{letter-spacing:14.253120px;}
.ls3a{letter-spacing:14.389920px;}
.ls2b{letter-spacing:15.409440px;}
.ls29{letter-spacing:15.558192px;}
.ls36{letter-spacing:16.156512px;}
.ls1b{letter-spacing:16.463376px;}
.ls3f{letter-spacing:17.151840px;}
.ls32{letter-spacing:17.455680px;}
.ls1c{letter-spacing:19.022400px;}
.ls1{letter-spacing:21.351600px;}
.ls2{letter-spacing:21.352320px;}
.ls2a{letter-spacing:22.283280px;}
.ls2d{letter-spacing:22.335840px;}
.ls5{letter-spacing:22.768128px;}
.ls40{letter-spacing:25.586496px;}
.ls25{letter-spacing:26.081280px;}
.ls26{letter-spacing:26.082720px;}
.ls23{letter-spacing:26.082864px;}
.ls24{letter-spacing:26.083440px;}
.ls43{letter-spacing:30.641616px;}
.ls3{letter-spacing:33.417504px;}
.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;}
}
.ws0{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.282240px;}
.ws1{word-spacing:-18.235872px;}
.wsc{word-spacing:-18.014400px;}
.ws6{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.985600px;}
.wsb{word-spacing:-16.813440px;}
.ws5{word-spacing:-16.812000px;}
.ws8{word-spacing:-16.797600px;}
.ws7{word-spacing:-16.790400px;}
.wsa{word-spacing:-15.259104px;}
.wse{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.878080px;}
.ws14{word-spacing:-13.777344px;}
.ws16{word-spacing:-13.759200px;}
.ws15{word-spacing:-13.741056px;}
.ws13{word-spacing:-13.698720px;}
.ws10{word-spacing:-13.680576px;}
.ws11{word-spacing:-13.662432px;}
.ws12{word-spacing:-13.620096px;}
.wsf{word-spacing:-13.583808px;}
.ws3{word-spacing:-0.050400px;}
.ws9{word-spacing:0.000000px;}
._1b{margin-left:-2.090448px;}
._0{margin-left:-1.009872px;}
._1{width:1.028160px;}
._8{width:2.520000px;}
._11{width:4.448736px;}
._c{width:6.408000px;}
._18{width:8.040672px;}
._2{width:9.090864px;}
._13{width:10.360800px;}
._3{width:11.592000px;}
._15{width:12.621600px;}
._7{width:14.184000px;}
._e{width:15.336000px;}
._16{width:16.495200px;}
._9{width:18.288000px;}
._4{width:19.296000px;}
._6{width:20.592000px;}
._5{width:22.536000px;}
._10{width:23.976000px;}
._1c{width:25.848000px;}
._12{width:27.540000px;}
._14{width:28.620000px;}
._17{width:29.829600px;}
._d{width:31.248000px;}
._1d{width:32.400000px;}
._f{width:34.053408px;}
._b{width:35.280000px;}
._a{width:36.432000px;}
._20{width:37.944000px;}
._1f{width:39.096000px;}
._1e{width:40.545792px;}
._23{width:42.372288px;}
._29{width:43.968960px;}
._2a{width:45.206784px;}
._22{width:48.240000px;}
._21{width:51.292800px;}
._19{width:52.545600px;}
._1a{width:56.095200px;}
._27{width:61.629120px;}
._28{width:62.656416px;}
._24{width:69.975360px;}
._25{width:71.089632px;}
._26{width:77.777280px;}
.fc1{color:rgb(28,30,41);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs4{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye4{bottom:4.320000px;}
.yea{bottom:4.560000px;}
.yf2{bottom:4.800000px;}
.yf5{bottom:5.040000px;}
.yfd{bottom:5.400000px;}
.y6{bottom:5.460000px;}
.y103{bottom:5.640000px;}
.ye2{bottom:14.760000px;}
.ye8{bottom:15.000000px;}
.yf7{bottom:15.120000px;}
.yf0{bottom:15.240000px;}
.yff{bottom:15.840000px;}
.y105{bottom:16.080000px;}
.ye3{bottom:25.200000px;}
.yee{bottom:25.320000px;}
.ye6{bottom:25.440000px;}
.yf3{bottom:25.560000px;}
.y101{bottom:26.160000px;}
.yfc{bottom:26.280000px;}
.ye7{bottom:35.520000px;}
.yef{bottom:35.760000px;}
.yf6{bottom:36.000000px;}
.yf9{bottom:36.360000px;}
.y104{bottom:36.600000px;}
.ye9{bottom:45.960000px;}
.yf1{bottom:46.200000px;}
.yf4{bottom:46.440000px;}
.yfb{bottom:46.800000px;}
.y102{bottom:47.040000px;}
.y5{bottom:52.500000px;}
.yfe{bottom:57.240000px;}
.y4{bottom:57.960000px;}
.yfa{bottom:67.320000px;}
.y119{bottom:92.880000px;}
.y69{bottom:95.040000px;}
.y35{bottom:99.000000px;}
.y106{bottom:99.360000px;}
.y174{bottom:101.880000px;}
.yb7{bottom:104.760000px;}
.y99{bottom:113.400000px;}
.y68{bottom:116.280000px;}
.y173{bottom:119.160000px;}
.y34{bottom:119.520000px;}
.y100{bottom:120.000000px;}
.y137{bottom:120.600000px;}
.yb6{bottom:125.640000px;}
.yd5{bottom:128.880000px;}
.y98{bottom:134.280000px;}
.y172{bottom:136.440000px;}
.y67{bottom:137.160000px;}
.y136{bottom:137.880000px;}
.y33{bottom:140.400000px;}
.yb5{bottom:146.160000px;}
.yd4{bottom:149.400000px;}
.y171{bottom:153.720000px;}
.y97{bottom:154.800000px;}
.y135{bottom:155.160000px;}
.y66{bottom:157.680000px;}
.y32{bottom:160.920000px;}
.y118{bottom:166.680000px;}
.yb4{bottom:167.040000px;}
.yd3{bottom:170.280000px;}
.y170{bottom:171.000000px;}
.y134{bottom:172.440000px;}
.y96{bottom:175.680000px;}
.y65{bottom:178.560000px;}
.y31{bottom:181.800000px;}
.yb3{bottom:187.560000px;}
.y16f{bottom:188.280000px;}
.yf8{bottom:189.000000px;}
.y133{bottom:189.720000px;}
.yd2{bottom:190.800000px;}
.y95{bottom:196.200000px;}
.y64{bottom:199.080000px;}
.y30{bottom:202.320000px;}
.y16e{bottom:205.560000px;}
.yb2{bottom:208.440000px;}
.yd1{bottom:211.680000px;}
.y94{bottom:217.080000px;}
.y132{bottom:219.600000px;}
.y63{bottom:219.960000px;}
.y16d{bottom:222.840000px;}
.y2f{bottom:223.200000px;}
.yb1{bottom:228.960000px;}
.y93{bottom:237.600000px;}
.y16c{bottom:240.120000px;}
.y62{bottom:240.480000px;}
.y2e{bottom:243.720000px;}
.yd0{bottom:244.080000px;}
.y117{bottom:249.840000px;}
.y16b{bottom:257.040000px;}
.y92{bottom:258.480000px;}
.y61{bottom:261.360000px;}
.y2d{bottom:264.240000px;}
.ycf{bottom:264.960000px;}
.y116{bottom:270.360000px;}
.y16a{bottom:274.320000px;}
.y91{bottom:279.000000px;}
.y60{bottom:281.880000px;}
.yb0{bottom:282.240000px;}
.y2c{bottom:285.120000px;}
.yce{bottom:285.840000px;}
.y115{bottom:291.240000px;}
.y169{bottom:291.600000px;}
.y90{bottom:299.880000px;}
.y5f{bottom:302.760000px;}
.yaf{bottom:303.120000px;}
.y2b{bottom:305.640000px;}
.ycd{bottom:306.360000px;}
.y168{bottom:308.880000px;}
.y114{bottom:311.760000px;}
.y8f{bottom:320.400000px;}
.y131{bottom:323.280000px;}
.yae{bottom:323.640000px;}
.y167{bottom:326.160000px;}
.y2a{bottom:326.520000px;}
.ycc{bottom:327.240000px;}
.y113{bottom:332.640000px;}
.y5e{bottom:335.160000px;}
.y8e{bottom:341.280000px;}
.y166{bottom:343.440000px;}
.y130{bottom:344.160000px;}
.yad{bottom:344.520000px;}
.y29{bottom:347.040000px;}
.ycb{bottom:347.760000px;}
.yed{bottom:348.000000px;}
.y112{bottom:353.160000px;}
.y5d{bottom:356.040000px;}
.y165{bottom:360.720000px;}
.y11c{bottom:364.680000px;}
.yac{bottom:365.040000px;}
.y28{bottom:367.920000px;}
.yca{bottom:368.640000px;}
.y8d{bottom:373.680000px;}
.y111{bottom:374.040000px;}
.y5c{bottom:377.280000px;}
.y164{bottom:378.000000px;}
.y12f{bottom:385.560000px;}
.yab{bottom:385.920000px;}
.yc9{bottom:389.160000px;}
.y8c{bottom:394.560000px;}
.y163{bottom:395.280000px;}
.y5b{bottom:397.800000px;}
.y27{bottom:400.320000px;}
.y12e{bottom:406.080000px;}
.yaa{bottom:406.440000px;}
.yc8{bottom:410.040000px;}
.y162{bottom:412.560000px;}
.y8b{bottom:415.440000px;}
.yec{bottom:417.000000px;}
.y5a{bottom:418.680000px;}
.y26{bottom:421.200000px;}
.y12d{bottom:426.960000px;}
.ya9{bottom:427.320000px;}
.y161{bottom:429.840000px;}
.yc7{bottom:430.560000px;}
.y8a{bottom:435.960000px;}
.y59{bottom:439.200000px;}
.y160{bottom:447.120000px;}
.y12c{bottom:447.480000px;}
.ya8{bottom:447.840000px;}
.y25{bottom:451.080000px;}
.yc6{bottom:451.440000px;}
.y89{bottom:456.840000px;}
.y58{bottom:460.080000px;}
.y15f{bottom:464.040000px;}
.y12b{bottom:468.360000px;}
.ya7{bottom:468.720000px;}
.y24{bottom:471.960000px;}
.y88{bottom:477.360000px;}
.y57{bottom:480.600000px;}
.y15e{bottom:481.320000px;}
.yeb{bottom:486.000000px;}
.y12a{bottom:488.880000px;}
.ya6{bottom:489.240000px;}
.yc5{bottom:492.840000px;}
.y87{bottom:498.240000px;}
.y15d{bottom:498.600000px;}
.y23{bottom:501.480000px;}
.y129{bottom:509.760000px;}
.ya5{bottom:510.120000px;}
.yc4{bottom:513.360000px;}
.y15c{bottom:515.880000px;}
.y86{bottom:518.760000px;}
.y56{bottom:522.000000px;}
.y22{bottom:522.360000px;}
.y128{bottom:530.280000px;}
.ya4{bottom:530.640000px;}
.y15b{bottom:533.160000px;}
.ye5{bottom:534.000000px;}
.yc3{bottom:534.240000px;}
.y85{bottom:539.640000px;}
.y55{bottom:542.880000px;}
.y21{bottom:543.240000px;}
.y15a{bottom:550.440000px;}
.y110{bottom:551.160000px;}
.ya3{bottom:551.520000px;}
.yc2{bottom:554.760000px;}
.y84{bottom:560.160000px;}
.y54{bottom:563.400000px;}
.y20{bottom:563.760000px;}
.y159{bottom:567.720000px;}
.y127{bottom:571.680000px;}
.ya2{bottom:572.040000px;}
.yc1{bottom:575.640000px;}
.y83{bottom:581.040000px;}
.y53{bottom:584.280000px;}
.y1f{bottom:584.640000px;}
.y158{bottom:585.000000px;}
.y126{bottom:592.560000px;}
.ya1{bottom:592.920000px;}
.yc0{bottom:596.160000px;}
.y82{bottom:601.560000px;}
.y157{bottom:602.280000px;}
.ye1{bottom:603.000000px;}
.y52{bottom:604.800000px;}
.y1e{bottom:605.160000px;}
.y125{bottom:613.080000px;}
.ya0{bottom:613.440000px;}
.ybf{bottom:617.040000px;}
.y156{bottom:619.560000px;}
.y81{bottom:622.440000px;}
.y51{bottom:625.680000px;}
.y1d{bottom:626.040000px;}
.y124{bottom:633.960000px;}
.y9f{bottom:634.320000px;}
.y155{bottom:636.840000px;}
.ybe{bottom:637.560000px;}
.y80{bottom:642.960000px;}
.y50{bottom:646.200000px;}
.y1c{bottom:646.560000px;}
.y154{bottom:653.760000px;}
.y123{bottom:654.480000px;}
.y9e{bottom:654.840000px;}
.ybd{bottom:658.440000px;}
.ye0{bottom:663.120000px;}
.y7f{bottom:663.840000px;}
.y11b{bottom:666.720000px;}
.y4f{bottom:667.080000px;}
.y1b{bottom:667.440000px;}
.y153{bottom:671.040000px;}
.y122{bottom:675.360000px;}
.y10f{bottom:675.720000px;}
.ybc{bottom:678.960000px;}
.y7e{bottom:684.360000px;}
.y9d{bottom:687.240000px;}
.y4e{bottom:687.600000px;}
.y1a{bottom:687.960000px;}
.y152{bottom:688.320000px;}
.y121{bottom:695.880000px;}
.y10e{bottom:696.240000px;}
.ybb{bottom:699.840000px;}
.y7d{bottom:705.240000px;}
.y151{bottom:705.600000px;}
.ydf{bottom:707.040000px;}
.y4d{bottom:708.480000px;}
.y19{bottom:708.840000px;}
.y120{bottom:716.760000px;}
.y10d{bottom:717.120000px;}
.yba{bottom:720.360000px;}
.y150{bottom:722.880000px;}
.yde{bottom:727.560000px;}
.y4c{bottom:729.000000px;}
.y18{bottom:729.360000px;}
.y7c{bottom:737.280000px;}
.y10c{bottom:737.640000px;}
.y14f{bottom:740.160000px;}
.yb9{bottom:741.240000px;}
.ydd{bottom:748.440000px;}
.y9c{bottom:749.880000px;}
.y17{bottom:750.240000px;}
.y14e{bottom:757.440000px;}
.y11f{bottom:758.160000px;}
.y10b{bottom:758.520000px;}
.y4b{bottom:761.400000px;}
.yb8{bottom:761.760000px;}
.ydc{bottom:768.960000px;}
.y7b{bottom:770.040000px;}
.y9b{bottom:770.400000px;}
.y16{bottom:770.760000px;}
.y14d{bottom:774.720000px;}
.y10a{bottom:779.040000px;}
.y4a{bottom:782.280000px;}
.ydb{bottom:789.840000px;}
.y11e{bottom:790.560000px;}
.y7a{bottom:791.280000px;}
.y15{bottom:791.640000px;}
.y14c{bottom:792.000000px;}
.y109{bottom:799.920000px;}
.y49{bottom:803.160000px;}
.y14b{bottom:809.280000px;}
.yda{bottom:810.360000px;}
.y11d{bottom:811.440000px;}
.y79{bottom:811.800000px;}
.y14{bottom:812.160000px;}
.y108{bottom:820.440000px;}
.y48{bottom:823.680000px;}
.y14a{bottom:826.560000px;}
.y78{bottom:832.680000px;}
.y13{bottom:833.040000px;}
.yd9{bottom:842.760000px;}
.y149{bottom:843.480000px;}
.y47{bottom:844.560000px;}
.y107{bottom:852.840000px;}
.y77{bottom:853.200000px;}
.y12{bottom:853.560000px;}
.y148{bottom:860.760000px;}
.yd8{bottom:864.000000px;}
.y46{bottom:865.080000px;}
.y76{bottom:874.080000px;}
.y11{bottom:874.440000px;}
.y147{bottom:878.040000px;}
.y45{bottom:885.960000px;}
.yd7{bottom:893.160000px;}
.y75{bottom:894.600000px;}
.y10{bottom:894.960000px;}
.y146{bottom:895.320000px;}
.y44{bottom:906.480000px;}
.y145{bottom:912.600000px;}
.yf{bottom:915.480000px;}
.y43{bottom:927.360000px;}
.y144{bottom:929.880000px;}
.yd6{bottom:933.120000px;}
.ye{bottom:936.000000px;}
.y143{bottom:947.160000px;}
.y42{bottom:947.880000px;}
.yd{bottom:953.280000px;}
.y74{bottom:956.880000px;}
.y142{bottom:964.440000px;}
.y11a{bottom:968.400000px;}
.y41{bottom:968.760000px;}
.y73{bottom:977.400000px;}
.yc{bottom:979.920000px;}
.y141{bottom:981.720000px;}
.y40{bottom:989.280000px;}
.y72{bottom:998.280000px;}
.y140{bottom:999.000000px;}
.yb{bottom:1000.800000px;}
.y3f{bottom:1010.160000px;}
.y13f{bottom:1016.280000px;}
.y71{bottom:1018.800000px;}
.ya{bottom:1023.840000px;}
.y3e{bottom:1030.680000px;}
.y13e{bottom:1033.560000px;}
.y70{bottom:1039.680000px;}
.y13d{bottom:1050.480000px;}
.y3d{bottom:1051.560000px;}
.y9{bottom:1054.800000px;}
.y6f{bottom:1060.200000px;}
.y13c{bottom:1067.760000px;}
.y9a{bottom:1071.720000px;}
.y3c{bottom:1072.080000px;}
.y6e{bottom:1081.080000px;}
.y13b{bottom:1085.040000px;}
.y8{bottom:1086.120000px;}
.y3b{bottom:1092.960000px;}
.y6d{bottom:1101.600000px;}
.y13a{bottom:1102.320000px;}
.y3a{bottom:1113.480000px;}
.y7{bottom:1117.080000px;}
.y139{bottom:1119.600000px;}
.y6c{bottom:1134.000000px;}
.y39{bottom:1134.360000px;}
.y138{bottom:1136.880000px;}
.y3{bottom:1146.600000px;}
.y38{bottom:1165.680000px;}
.y2{bottom:1168.560000px;}
.y6b{bottom:1171.800000px;}
.y1{bottom:1190.880000px;}
.y37{bottom:1191.240000px;}
.y36{bottom:1191.600000px;}
.y6a{bottom:1192.320000px;}
.h5{height:24.000000px;}
.h8{height:41.993438px;}
.he{height:42.000000px;}
.h12{height:42.022969px;}
.h3{height:44.149219px;}
.hc{height:46.448640px;}
.h9{height:47.988281px;}
.hb{height:48.660480px;}
.hd{height:48.761719px;}
.h7{height:48.796875px;}
.ha{height:50.027344px;}
.h4{height:50.308594px;}
.h2{height:50.872320px;}
.hf{height:63.000000px;}
.h11{height:64.500000px;}
.h6{height:73.195313px;}
.h10{height:84.000000px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w3{width:21.000000px;}
.w2{width:22.500000px;}
.w4{width:96.000000px;}
.w6{width:166.500000px;}
.w5{width:375.000000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:1.200000px;}
.x15{left:4.439928px;}
.x17{left:5.520000px;}
.x14{left:123.000000px;}
.xa{left:127.439928px;}
.x2{left:129.266964px;}
.x4{left:154.439928px;}
.x10{left:166.409928px;}
.xe{left:169.965072px;}
.x8{left:186.257448px;}
.x13{left:202.112892px;}
.x7{left:221.147856px;}
.x1{left:242.852076px;}
.x9{left:256.783104px;}
.xc{left:315.129276px;}
.xd{left:361.132560px;}
.xb{left:388.421280px;}
.x3{left:446.152320px;}
.xf{left:534.392985px;}
.x11{left:553.008240px;}
.x16{left:600.000000px;}
.x5{left:744.000000px;}
.x12{left:796.320000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls56{letter-spacing:-1.478400pt;}
.ls55{letter-spacing:-1.435392pt;}
.ls53{letter-spacing:-1.419264pt;}
.ls54{letter-spacing:-1.408512pt;}
.ls22{letter-spacing:-1.397760pt;}
.ls1f{letter-spacing:-1.381632pt;}
.ls20{letter-spacing:-1.365504pt;}
.ls4a{letter-spacing:-1.349376pt;}
.ls21{letter-spacing:-1.338624pt;}
.ls47{letter-spacing:-1.333248pt;}
.ls51{letter-spacing:-1.295616pt;}
.ls48{letter-spacing:-1.279488pt;}
.ls4b{letter-spacing:-1.263360pt;}
.ls52{letter-spacing:-1.225728pt;}
.ls49{letter-spacing:-1.209600pt;}
.ls46{letter-spacing:-1.193472pt;}
.ls50{letter-spacing:-1.171968pt;}
.ls13{letter-spacing:-1.075200pt;}
.ls14{letter-spacing:-1.068800pt;}
.ls12{letter-spacing:-1.056000pt;}
.ls10{letter-spacing:-0.354816pt;}
.ls11{letter-spacing:-0.215040pt;}
.ls16{letter-spacing:-0.197120pt;}
.lsd{letter-spacing:-0.158976pt;}
.ls17{letter-spacing:-0.157696pt;}
.ls7{letter-spacing:-0.129536pt;}
.lsc{letter-spacing:-0.117760pt;}
.lsb{letter-spacing:-0.058880pt;}
.ls8{letter-spacing:-0.052992pt;}
.ls9{letter-spacing:-0.047104pt;}
.lse{letter-spacing:-0.019200pt;}
.ls34{letter-spacing:-0.012800pt;}
.lsa{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.012800pt;}
.lsf{letter-spacing:0.019200pt;}
.ls4f{letter-spacing:0.074240pt;}
.ls2c{letter-spacing:0.087296pt;}
.ls15{letter-spacing:0.180224pt;}
.ls3b{letter-spacing:0.845056pt;}
.ls3c{letter-spacing:0.846080pt;}
.ls45{letter-spacing:0.961280pt;}
.ls38{letter-spacing:1.606400pt;}
.ls18{letter-spacing:1.608064pt;}
.ls28{letter-spacing:1.634048pt;}
.ls4e{letter-spacing:1.834752pt;}
.ls2f{letter-spacing:2.229120pt;}
.ls6{letter-spacing:2.778624pt;}
.ls30{letter-spacing:2.981760pt;}
.ls31{letter-spacing:2.983680pt;}
.ls4c{letter-spacing:3.377920pt;}
.ls1d{letter-spacing:3.397120pt;}
.ls1e{letter-spacing:3.398400pt;}
.ls39{letter-spacing:5.644800pt;}
.ls44{letter-spacing:7.169280pt;}
.ls0{letter-spacing:7.238272pt;}
.ls2e{letter-spacing:7.829760pt;}
.ls41{letter-spacing:8.170240pt;}
.ls3e{letter-spacing:8.764160pt;}
.ls3d{letter-spacing:9.212160pt;}
.ls4{letter-spacing:9.367040pt;}
.ls1a{letter-spacing:9.593728pt;}
.ls19{letter-spacing:9.891968pt;}
.ls35{letter-spacing:10.065920pt;}
.ls4d{letter-spacing:11.001600pt;}
.ls42{letter-spacing:11.221760pt;}
.ls37{letter-spacing:11.493120pt;}
.ls27{letter-spacing:12.669440pt;}
.ls3a{letter-spacing:12.791040pt;}
.ls2b{letter-spacing:13.697280pt;}
.ls29{letter-spacing:13.829504pt;}
.ls36{letter-spacing:14.361344pt;}
.ls1b{letter-spacing:14.634112pt;}
.ls3f{letter-spacing:15.246080pt;}
.ls32{letter-spacing:15.516160pt;}
.ls1c{letter-spacing:16.908800pt;}
.ls1{letter-spacing:18.979200pt;}
.ls2{letter-spacing:18.979840pt;}
.ls2a{letter-spacing:19.807360pt;}
.ls2d{letter-spacing:19.854080pt;}
.ls5{letter-spacing:20.238336pt;}
.ls40{letter-spacing:22.743552pt;}
.ls25{letter-spacing:23.183360pt;}
.ls26{letter-spacing:23.184640pt;}
.ls23{letter-spacing:23.184768pt;}
.ls24{letter-spacing:23.185280pt;}
.ls43{letter-spacing:27.236992pt;}
.ls3{letter-spacing:29.704448pt;}
.ws0{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.250880pt;}
.ws1{word-spacing:-16.209664pt;}
.wsc{word-spacing:-16.012800pt;}
.ws6{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.987200pt;}
.wsb{word-spacing:-14.945280pt;}
.ws5{word-spacing:-14.944000pt;}
.ws8{word-spacing:-14.931200pt;}
.ws7{word-spacing:-14.924800pt;}
.wsa{word-spacing:-13.563648pt;}
.wse{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.224960pt;}
.ws14{word-spacing:-12.246528pt;}
.ws16{word-spacing:-12.230400pt;}
.ws15{word-spacing:-12.214272pt;}
.ws13{word-spacing:-12.176640pt;}
.ws10{word-spacing:-12.160512pt;}
.ws11{word-spacing:-12.144384pt;}
.ws12{word-spacing:-12.106752pt;}
.wsf{word-spacing:-12.074496pt;}
.ws3{word-spacing:-0.044800pt;}
.ws9{word-spacing:0.000000pt;}
._1b{margin-left:-1.858176pt;}
._0{margin-left:-0.897664pt;}
._1{width:0.913920pt;}
._8{width:2.240000pt;}
._11{width:3.954432pt;}
._c{width:5.696000pt;}
._18{width:7.147264pt;}
._2{width:8.080768pt;}
._13{width:9.209600pt;}
._3{width:10.304000pt;}
._15{width:11.219200pt;}
._7{width:12.608000pt;}
._e{width:13.632000pt;}
._16{width:14.662400pt;}
._9{width:16.256000pt;}
._4{width:17.152000pt;}
._6{width:18.304000pt;}
._5{width:20.032000pt;}
._10{width:21.312000pt;}
._1c{width:22.976000pt;}
._12{width:24.480000pt;}
._14{width:25.440000pt;}
._17{width:26.515200pt;}
._d{width:27.776000pt;}
._1d{width:28.800000pt;}
._f{width:30.269696pt;}
._b{width:31.360000pt;}
._a{width:32.384000pt;}
._20{width:33.728000pt;}
._1f{width:34.752000pt;}
._1e{width:36.040704pt;}
._23{width:37.664256pt;}
._29{width:39.083520pt;}
._2a{width:40.183808pt;}
._22{width:42.880000pt;}
._21{width:45.593600pt;}
._19{width:46.707200pt;}
._1a{width:49.862400pt;}
._27{width:54.781440pt;}
._28{width:55.694592pt;}
._24{width:62.200320pt;}
._25{width:63.190784pt;}
._26{width:69.135360pt;}
.fs5{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs4{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye4{bottom:3.840000pt;}
.yea{bottom:4.053333pt;}
.yf2{bottom:4.266667pt;}
.yf5{bottom:4.480000pt;}
.yfd{bottom:4.800000pt;}
.y6{bottom:4.853333pt;}
.y103{bottom:5.013333pt;}
.ye2{bottom:13.120000pt;}
.ye8{bottom:13.333333pt;}
.yf7{bottom:13.440000pt;}
.yf0{bottom:13.546667pt;}
.yff{bottom:14.080000pt;}
.y105{bottom:14.293333pt;}
.ye3{bottom:22.400000pt;}
.yee{bottom:22.506667pt;}
.ye6{bottom:22.613333pt;}
.yf3{bottom:22.720000pt;}
.y101{bottom:23.253333pt;}
.yfc{bottom:23.360000pt;}
.ye7{bottom:31.573333pt;}
.yef{bottom:31.786667pt;}
.yf6{bottom:32.000000pt;}
.yf9{bottom:32.320000pt;}
.y104{bottom:32.533333pt;}
.ye9{bottom:40.853333pt;}
.yf1{bottom:41.066667pt;}
.yf4{bottom:41.280000pt;}
.yfb{bottom:41.600000pt;}
.y102{bottom:41.813333pt;}
.y5{bottom:46.666667pt;}
.yfe{bottom:50.880000pt;}
.y4{bottom:51.520000pt;}
.yfa{bottom:59.840000pt;}
.y119{bottom:82.560000pt;}
.y69{bottom:84.480000pt;}
.y35{bottom:88.000000pt;}
.y106{bottom:88.320000pt;}
.y174{bottom:90.560000pt;}
.yb7{bottom:93.120000pt;}
.y99{bottom:100.800000pt;}
.y68{bottom:103.360000pt;}
.y173{bottom:105.920000pt;}
.y34{bottom:106.240000pt;}
.y100{bottom:106.666667pt;}
.y137{bottom:107.200000pt;}
.yb6{bottom:111.680000pt;}
.yd5{bottom:114.560000pt;}
.y98{bottom:119.360000pt;}
.y172{bottom:121.280000pt;}
.y67{bottom:121.920000pt;}
.y136{bottom:122.560000pt;}
.y33{bottom:124.800000pt;}
.yb5{bottom:129.920000pt;}
.yd4{bottom:132.800000pt;}
.y171{bottom:136.640000pt;}
.y97{bottom:137.600000pt;}
.y135{bottom:137.920000pt;}
.y66{bottom:140.160000pt;}
.y32{bottom:143.040000pt;}
.y118{bottom:148.160000pt;}
.yb4{bottom:148.480000pt;}
.yd3{bottom:151.360000pt;}
.y170{bottom:152.000000pt;}
.y134{bottom:153.280000pt;}
.y96{bottom:156.160000pt;}
.y65{bottom:158.720000pt;}
.y31{bottom:161.600000pt;}
.yb3{bottom:166.720000pt;}
.y16f{bottom:167.360000pt;}
.yf8{bottom:168.000000pt;}
.y133{bottom:168.640000pt;}
.yd2{bottom:169.600000pt;}
.y95{bottom:174.400000pt;}
.y64{bottom:176.960000pt;}
.y30{bottom:179.840000pt;}
.y16e{bottom:182.720000pt;}
.yb2{bottom:185.280000pt;}
.yd1{bottom:188.160000pt;}
.y94{bottom:192.960000pt;}
.y132{bottom:195.200000pt;}
.y63{bottom:195.520000pt;}
.y16d{bottom:198.080000pt;}
.y2f{bottom:198.400000pt;}
.yb1{bottom:203.520000pt;}
.y93{bottom:211.200000pt;}
.y16c{bottom:213.440000pt;}
.y62{bottom:213.760000pt;}
.y2e{bottom:216.640000pt;}
.yd0{bottom:216.960000pt;}
.y117{bottom:222.080000pt;}
.y16b{bottom:228.480000pt;}
.y92{bottom:229.760000pt;}
.y61{bottom:232.320000pt;}
.y2d{bottom:234.880000pt;}
.ycf{bottom:235.520000pt;}
.y116{bottom:240.320000pt;}
.y16a{bottom:243.840000pt;}
.y91{bottom:248.000000pt;}
.y60{bottom:250.560000pt;}
.yb0{bottom:250.880000pt;}
.y2c{bottom:253.440000pt;}
.yce{bottom:254.080000pt;}
.y115{bottom:258.880000pt;}
.y169{bottom:259.200000pt;}
.y90{bottom:266.560000pt;}
.y5f{bottom:269.120000pt;}
.yaf{bottom:269.440000pt;}
.y2b{bottom:271.680000pt;}
.ycd{bottom:272.320000pt;}
.y168{bottom:274.560000pt;}
.y114{bottom:277.120000pt;}
.y8f{bottom:284.800000pt;}
.y131{bottom:287.360000pt;}
.yae{bottom:287.680000pt;}
.y167{bottom:289.920000pt;}
.y2a{bottom:290.240000pt;}
.ycc{bottom:290.880000pt;}
.y113{bottom:295.680000pt;}
.y5e{bottom:297.920000pt;}
.y8e{bottom:303.360000pt;}
.y166{bottom:305.280000pt;}
.y130{bottom:305.920000pt;}
.yad{bottom:306.240000pt;}
.y29{bottom:308.480000pt;}
.ycb{bottom:309.120000pt;}
.yed{bottom:309.333333pt;}
.y112{bottom:313.920000pt;}
.y5d{bottom:316.480000pt;}
.y165{bottom:320.640000pt;}
.y11c{bottom:324.160000pt;}
.yac{bottom:324.480000pt;}
.y28{bottom:327.040000pt;}
.yca{bottom:327.680000pt;}
.y8d{bottom:332.160000pt;}
.y111{bottom:332.480000pt;}
.y5c{bottom:335.360000pt;}
.y164{bottom:336.000000pt;}
.y12f{bottom:342.720000pt;}
.yab{bottom:343.040000pt;}
.yc9{bottom:345.920000pt;}
.y8c{bottom:350.720000pt;}
.y163{bottom:351.360000pt;}
.y5b{bottom:353.600000pt;}
.y27{bottom:355.840000pt;}
.y12e{bottom:360.960000pt;}
.yaa{bottom:361.280000pt;}
.yc8{bottom:364.480000pt;}
.y162{bottom:366.720000pt;}
.y8b{bottom:369.280000pt;}
.yec{bottom:370.666667pt;}
.y5a{bottom:372.160000pt;}
.y26{bottom:374.400000pt;}
.y12d{bottom:379.520000pt;}
.ya9{bottom:379.840000pt;}
.y161{bottom:382.080000pt;}
.yc7{bottom:382.720000pt;}
.y8a{bottom:387.520000pt;}
.y59{bottom:390.400000pt;}
.y160{bottom:397.440000pt;}
.y12c{bottom:397.760000pt;}
.ya8{bottom:398.080000pt;}
.y25{bottom:400.960000pt;}
.yc6{bottom:401.280000pt;}
.y89{bottom:406.080000pt;}
.y58{bottom:408.960000pt;}
.y15f{bottom:412.480000pt;}
.y12b{bottom:416.320000pt;}
.ya7{bottom:416.640000pt;}
.y24{bottom:419.520000pt;}
.y88{bottom:424.320000pt;}
.y57{bottom:427.200000pt;}
.y15e{bottom:427.840000pt;}
.yeb{bottom:432.000000pt;}
.y12a{bottom:434.560000pt;}
.ya6{bottom:434.880000pt;}
.yc5{bottom:438.080000pt;}
.y87{bottom:442.880000pt;}
.y15d{bottom:443.200000pt;}
.y23{bottom:445.760000pt;}
.y129{bottom:453.120000pt;}
.ya5{bottom:453.440000pt;}
.yc4{bottom:456.320000pt;}
.y15c{bottom:458.560000pt;}
.y86{bottom:461.120000pt;}
.y56{bottom:464.000000pt;}
.y22{bottom:464.320000pt;}
.y128{bottom:471.360000pt;}
.ya4{bottom:471.680000pt;}
.y15b{bottom:473.920000pt;}
.ye5{bottom:474.666667pt;}
.yc3{bottom:474.880000pt;}
.y85{bottom:479.680000pt;}
.y55{bottom:482.560000pt;}
.y21{bottom:482.880000pt;}
.y15a{bottom:489.280000pt;}
.y110{bottom:489.920000pt;}
.ya3{bottom:490.240000pt;}
.yc2{bottom:493.120000pt;}
.y84{bottom:497.920000pt;}
.y54{bottom:500.800000pt;}
.y20{bottom:501.120000pt;}
.y159{bottom:504.640000pt;}
.y127{bottom:508.160000pt;}
.ya2{bottom:508.480000pt;}
.yc1{bottom:511.680000pt;}
.y83{bottom:516.480000pt;}
.y53{bottom:519.360000pt;}
.y1f{bottom:519.680000pt;}
.y158{bottom:520.000000pt;}
.y126{bottom:526.720000pt;}
.ya1{bottom:527.040000pt;}
.yc0{bottom:529.920000pt;}
.y82{bottom:534.720000pt;}
.y157{bottom:535.360000pt;}
.ye1{bottom:536.000000pt;}
.y52{bottom:537.600000pt;}
.y1e{bottom:537.920000pt;}
.y125{bottom:544.960000pt;}
.ya0{bottom:545.280000pt;}
.ybf{bottom:548.480000pt;}
.y156{bottom:550.720000pt;}
.y81{bottom:553.280000pt;}
.y51{bottom:556.160000pt;}
.y1d{bottom:556.480000pt;}
.y124{bottom:563.520000pt;}
.y9f{bottom:563.840000pt;}
.y155{bottom:566.080000pt;}
.ybe{bottom:566.720000pt;}
.y80{bottom:571.520000pt;}
.y50{bottom:574.400000pt;}
.y1c{bottom:574.720000pt;}
.y154{bottom:581.120000pt;}
.y123{bottom:581.760000pt;}
.y9e{bottom:582.080000pt;}
.ybd{bottom:585.280000pt;}
.ye0{bottom:589.440000pt;}
.y7f{bottom:590.080000pt;}
.y11b{bottom:592.640000pt;}
.y4f{bottom:592.960000pt;}
.y1b{bottom:593.280000pt;}
.y153{bottom:596.480000pt;}
.y122{bottom:600.320000pt;}
.y10f{bottom:600.640000pt;}
.ybc{bottom:603.520000pt;}
.y7e{bottom:608.320000pt;}
.y9d{bottom:610.880000pt;}
.y4e{bottom:611.200000pt;}
.y1a{bottom:611.520000pt;}
.y152{bottom:611.840000pt;}
.y121{bottom:618.560000pt;}
.y10e{bottom:618.880000pt;}
.ybb{bottom:622.080000pt;}
.y7d{bottom:626.880000pt;}
.y151{bottom:627.200000pt;}
.ydf{bottom:628.480000pt;}
.y4d{bottom:629.760000pt;}
.y19{bottom:630.080000pt;}
.y120{bottom:637.120000pt;}
.y10d{bottom:637.440000pt;}
.yba{bottom:640.320000pt;}
.y150{bottom:642.560000pt;}
.yde{bottom:646.720000pt;}
.y4c{bottom:648.000000pt;}
.y18{bottom:648.320000pt;}
.y7c{bottom:655.360000pt;}
.y10c{bottom:655.680000pt;}
.y14f{bottom:657.920000pt;}
.yb9{bottom:658.880000pt;}
.ydd{bottom:665.280000pt;}
.y9c{bottom:666.560000pt;}
.y17{bottom:666.880000pt;}
.y14e{bottom:673.280000pt;}
.y11f{bottom:673.920000pt;}
.y10b{bottom:674.240000pt;}
.y4b{bottom:676.800000pt;}
.yb8{bottom:677.120000pt;}
.ydc{bottom:683.520000pt;}
.y7b{bottom:684.480000pt;}
.y9b{bottom:684.800000pt;}
.y16{bottom:685.120000pt;}
.y14d{bottom:688.640000pt;}
.y10a{bottom:692.480000pt;}
.y4a{bottom:695.360000pt;}
.ydb{bottom:702.080000pt;}
.y11e{bottom:702.720000pt;}
.y7a{bottom:703.360000pt;}
.y15{bottom:703.680000pt;}
.y14c{bottom:704.000000pt;}
.y109{bottom:711.040000pt;}
.y49{bottom:713.920000pt;}
.y14b{bottom:719.360000pt;}
.yda{bottom:720.320000pt;}
.y11d{bottom:721.280000pt;}
.y79{bottom:721.600000pt;}
.y14{bottom:721.920000pt;}
.y108{bottom:729.280000pt;}
.y48{bottom:732.160000pt;}
.y14a{bottom:734.720000pt;}
.y78{bottom:740.160000pt;}
.y13{bottom:740.480000pt;}
.yd9{bottom:749.120000pt;}
.y149{bottom:749.760000pt;}
.y47{bottom:750.720000pt;}
.y107{bottom:758.080000pt;}
.y77{bottom:758.400000pt;}
.y12{bottom:758.720000pt;}
.y148{bottom:765.120000pt;}
.yd8{bottom:768.000000pt;}
.y46{bottom:768.960000pt;}
.y76{bottom:776.960000pt;}
.y11{bottom:777.280000pt;}
.y147{bottom:780.480000pt;}
.y45{bottom:787.520000pt;}
.yd7{bottom:793.920000pt;}
.y75{bottom:795.200000pt;}
.y10{bottom:795.520000pt;}
.y146{bottom:795.840000pt;}
.y44{bottom:805.760000pt;}
.y145{bottom:811.200000pt;}
.yf{bottom:813.760000pt;}
.y43{bottom:824.320000pt;}
.y144{bottom:826.560000pt;}
.yd6{bottom:829.440000pt;}
.ye{bottom:832.000000pt;}
.y143{bottom:841.920000pt;}
.y42{bottom:842.560000pt;}
.yd{bottom:847.360000pt;}
.y74{bottom:850.560000pt;}
.y142{bottom:857.280000pt;}
.y11a{bottom:860.800000pt;}
.y41{bottom:861.120000pt;}
.y73{bottom:868.800000pt;}
.yc{bottom:871.040000pt;}
.y141{bottom:872.640000pt;}
.y40{bottom:879.360000pt;}
.y72{bottom:887.360000pt;}
.y140{bottom:888.000000pt;}
.yb{bottom:889.600000pt;}
.y3f{bottom:897.920000pt;}
.y13f{bottom:903.360000pt;}
.y71{bottom:905.600000pt;}
.ya{bottom:910.080000pt;}
.y3e{bottom:916.160000pt;}
.y13e{bottom:918.720000pt;}
.y70{bottom:924.160000pt;}
.y13d{bottom:933.760000pt;}
.y3d{bottom:934.720000pt;}
.y9{bottom:937.600000pt;}
.y6f{bottom:942.400000pt;}
.y13c{bottom:949.120000pt;}
.y9a{bottom:952.640000pt;}
.y3c{bottom:952.960000pt;}
.y6e{bottom:960.960000pt;}
.y13b{bottom:964.480000pt;}
.y8{bottom:965.440000pt;}
.y3b{bottom:971.520000pt;}
.y6d{bottom:979.200000pt;}
.y13a{bottom:979.840000pt;}
.y3a{bottom:989.760000pt;}
.y7{bottom:992.960000pt;}
.y139{bottom:995.200000pt;}
.y6c{bottom:1008.000000pt;}
.y39{bottom:1008.320000pt;}
.y138{bottom:1010.560000pt;}
.y3{bottom:1019.200000pt;}
.y38{bottom:1036.160000pt;}
.y2{bottom:1038.720000pt;}
.y6b{bottom:1041.600000pt;}
.y1{bottom:1058.560000pt;}
.y37{bottom:1058.880000pt;}
.y36{bottom:1059.200000pt;}
.y6a{bottom:1059.840000pt;}
.h5{height:21.333333pt;}
.h8{height:37.327500pt;}
.he{height:37.333333pt;}
.h12{height:37.353750pt;}
.h3{height:39.243750pt;}
.hc{height:41.287680pt;}
.h9{height:42.656250pt;}
.hb{height:43.253760pt;}
.hd{height:43.343750pt;}
.h7{height:43.375000pt;}
.ha{height:44.468750pt;}
.h4{height:44.718750pt;}
.h2{height:45.219840pt;}
.hf{height:56.000000pt;}
.h11{height:57.333333pt;}
.h6{height:65.062500pt;}
.h10{height:74.666667pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w3{width:18.666667pt;}
.w2{width:20.000000pt;}
.w4{width:85.333333pt;}
.w6{width:148.000000pt;}
.w5{width:333.333333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:1.066667pt;}
.x15{left:3.946603pt;}
.x17{left:4.906667pt;}
.x14{left:109.333333pt;}
.xa{left:113.279936pt;}
.x2{left:114.903968pt;}
.x4{left:137.279936pt;}
.x10{left:147.919936pt;}
.xe{left:151.080064pt;}
.x8{left:165.562176pt;}
.x13{left:179.655904pt;}
.x7{left:196.575872pt;}
.x1{left:215.868512pt;}
.x9{left:228.251648pt;}
.xc{left:280.114912pt;}
.xd{left:321.006720pt;}
.xb{left:345.263360pt;}
.x3{left:396.579840pt;}
.xf{left:475.015987pt;}
.x11{left:491.562880pt;}
.x16{left:533.333333pt;}
.x5{left:661.333333pt;}
.x12{left:707.840000pt;}
}




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