
    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_aa5c2321fab2e6bd7a390579.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_dedb6b2d66dd28949befc7d9.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_4310295f946d338256363681.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_abc33524aba42ad366902278.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_20c704d7cd1aafb9eaef7420.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_600bb80d436249dd31d5c79c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e43c0a7ebaa64a171c8abedc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_80a08895268cd029388f56e1.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_20ff928790da28bc95d2fe03.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9ae7cda3d38d2d780c564fa5.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fd88130a2bcb5c52888eeedc.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_78cd1937ec7fa12ac792fcb7.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_54e932796c7e023849d86924.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_2580738afc298f48f9a36ed5.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e92d39039c57feb46db1a560.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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;}
.ls58{letter-spacing:-1.614816px;}
.ls4c{letter-spacing:-1.596672px;}
.ls56{letter-spacing:-1.584576px;}
.ls1b{letter-spacing:-1.536192px;}
.ls46{letter-spacing:-1.518048px;}
.ls11{letter-spacing:-1.512000px;}
.ls19{letter-spacing:-1.505952px;}
.ls4b{letter-spacing:-1.499904px;}
.ls10{letter-spacing:-1.497600px;}
.lsf{letter-spacing:-1.490400px;}
.ls1a{letter-spacing:-1.475712px;}
.ls48{letter-spacing:-1.457568px;}
.ls49{letter-spacing:-1.439424px;}
.ls4a{letter-spacing:-1.421280px;}
.ls47{letter-spacing:-1.360800px;}
.ls59{letter-spacing:-1.342656px;}
.ls57{letter-spacing:-1.318464px;}
.ls12{letter-spacing:-1.209600px;}
.ls13{letter-spacing:-1.202400px;}
.ls14{letter-spacing:-1.188000px;}
.lsa{letter-spacing:-0.399168px;}
.lsc{letter-spacing:-0.338688px;}
.lsd{letter-spacing:-0.302400px;}
.lse{letter-spacing:-0.241920px;}
.ls17{letter-spacing:-0.221760px;}
.ls8{letter-spacing:-0.178848px;}
.ls18{letter-spacing:-0.177408px;}
.lsb{letter-spacing:-0.157248px;}
.ls2{letter-spacing:-0.145728px;}
.ls7{letter-spacing:-0.132480px;}
.ls6{letter-spacing:-0.066240px;}
.ls3{letter-spacing:-0.059616px;}
.ls4{letter-spacing:-0.052992px;}
.ls9{letter-spacing:-0.021600px;}
.ls3c{letter-spacing:-0.014400px;}
.ls5{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.014400px;}
.ls15{letter-spacing:0.202752px;}
.ls21{letter-spacing:0.276480px;}
.ls20{letter-spacing:0.627120px;}
.ls30{letter-spacing:0.842400px;}
.ls3b{letter-spacing:1.284336px;}
.ls1c{letter-spacing:1.494720px;}
.ls52{letter-spacing:2.180160px;}
.ls32{letter-spacing:2.367360px;}
.ls2f{letter-spacing:2.422080px;}
.ls36{letter-spacing:2.963520px;}
.ls37{letter-spacing:3.484944px;}
.ls38{letter-spacing:3.486240px;}
.ls50{letter-spacing:5.099040px;}
.ls4f{letter-spacing:5.099328px;}
.ls34{letter-spacing:5.287680px;}
.ls24{letter-spacing:5.506560px;}
.ls45{letter-spacing:5.617440px;}
.ls43{letter-spacing:5.639040px;}
.ls55{letter-spacing:5.741280px;}
.ls44{letter-spacing:5.770080px;}
.ls4e{letter-spacing:6.937920px;}
.ls22{letter-spacing:7.201152px;}
.ls25{letter-spacing:7.984944px;}
.ls1d{letter-spacing:8.400816px;}
.ls1e{letter-spacing:8.400960px;}
.ls1f{letter-spacing:8.402400px;}
.ls28{letter-spacing:9.227520px;}
.ls26{letter-spacing:9.887040px;}
.ls54{letter-spacing:10.091520px;}
.ls2d{letter-spacing:10.366704px;}
.ls29{letter-spacing:11.993760px;}
.ls31{letter-spacing:12.297600px;}
.ls35{letter-spacing:13.075200px;}
.ls2e{letter-spacing:13.665600px;}
.ls41{letter-spacing:14.183568px;}
.ls39{letter-spacing:16.422480px;}
.ls2c{letter-spacing:16.531200px;}
.ls0{letter-spacing:17.313120px;}
.ls4d{letter-spacing:18.177552px;}
.ls27{letter-spacing:18.554400px;}
.ls16{letter-spacing:19.954080px;}
.ls33{letter-spacing:20.891520px;}
.ls2b{letter-spacing:21.654864px;}
.ls2a{letter-spacing:22.096800px;}
.ls53{letter-spacing:22.962240px;}
.ls42{letter-spacing:23.766912px;}
.ls23{letter-spacing:24.578640px;}
.ls3e{letter-spacing:30.683664px;}
.ls3f{letter-spacing:33.984000px;}
.ls3d{letter-spacing:36.383328px;}
.ls3a{letter-spacing:37.284336px;}
.ls51{letter-spacing:40.402080px;}
.ls1{letter-spacing:62.664480px;}
.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;}
.wse{word-spacing:-18.014400px;}
.ws6{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.985600px;}
.wsb{word-spacing:-16.813440px;}
.wsc{word-spacing:-16.812000px;}
.ws9{word-spacing:-16.797600px;}
.ws7{word-spacing:-16.790400px;}
.ws5{word-spacing:-16.509600px;}
.wsa{word-spacing:-15.307488px;}
.ws4{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.878080px;}
.ws2{word-spacing:-14.781312px;}
.ws13{word-spacing:-13.777344px;}
.ws11{word-spacing:-13.759200px;}
.ws14{word-spacing:-13.698720px;}
.ws10{word-spacing:-13.680576px;}
.wsf{word-spacing:-13.662432px;}
.ws12{word-spacing:-13.620096px;}
.ws1{word-spacing:-0.050400px;}
.ws8{word-spacing:0.000000px;}
._31{margin-left:-5.316336px;}
._6{margin-left:-2.024928px;}
._0{margin-left:-1.009872px;}
._2{width:1.028160px;}
._3{width:2.081664px;}
._11{width:3.168000px;}
._1f{width:4.182336px;}
._7{width:5.256000px;}
._18{width:6.552000px;}
._e{width:7.992000px;}
._d{width:9.072000px;}
._4{width:10.152000px;}
._1c{width:11.448000px;}
._9{width:12.528000px;}
._b{width:13.608000px;}
._1b{width:14.760000px;}
._24{width:15.762816px;}
._30{width:16.768800px;}
._1e{width:17.827200px;}
._c{width:18.864000px;}
._15{width:20.160000px;}
._1a{width:21.240000px;}
._12{width:22.536000px;}
._5{width:24.336000px;}
._10{width:26.208000px;}
._1d{width:27.576000px;}
._21{width:28.728000px;}
._22{width:29.880000px;}
._20{width:30.888000px;}
._27{width:31.896000px;}
._23{width:33.192000px;}
._8{width:34.344000px;}
._2a{width:36.072000px;}
._2e{width:37.080000px;}
._2d{width:38.376000px;}
._17{width:39.528000px;}
._29{width:40.608000px;}
._13{width:41.760000px;}
._a{width:43.776000px;}
._25{width:45.072000px;}
._26{width:46.080000px;}
._19{width:49.536000px;}
._2b{width:50.832000px;}
._28{width:51.912000px;}
._2f{width:54.432000px;}
._f{width:56.304000px;}
._14{width:58.608000px;}
._2c{width:61.920000px;}
._16{width:63.954288px;}
._1{width:1944.000288px;}
.fc1{color:rgb(28,30,41);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs6{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;}
.y6{bottom:5.460000px;}
.y5{bottom:52.500000px;}
.y4{bottom:57.960000px;}
.y35{bottom:90.360000px;}
.y11d{bottom:92.160000px;}
.yab{bottom:96.120000px;}
.yda{bottom:97.200000px;}
.y69{bottom:99.360000px;}
.y144{bottom:101.160000px;}
.y100{bottom:102.240000px;}
.y160{bottom:103.680000px;}
.y70{bottom:108.000000px;}
.y34{bottom:110.880000px;}
.y11c{bottom:113.040000px;}
.yaa{bottom:116.640000px;}
.yd9{bottom:118.080000px;}
.y68{bottom:120.240000px;}
.y15f{bottom:120.600000px;}
.y143{bottom:121.680000px;}
.yff{bottom:123.120000px;}
.y112{bottom:124.920000px;}
.y6f{bottom:128.880000px;}
.y33{bottom:131.760000px;}
.y11b{bottom:133.560000px;}
.ya9{bottom:137.520000px;}
.y15e{bottom:137.880000px;}
.yd8{bottom:138.600000px;}
.y67{bottom:140.760000px;}
.y142{bottom:142.560000px;}
.yfe{bottom:143.640000px;}
.y111{bottom:145.440000px;}
.y6e{bottom:149.400000px;}
.y11a{bottom:154.440000px;}
.y15d{bottom:155.160000px;}
.ya8{bottom:158.040000px;}
.yd7{bottom:159.480000px;}
.y66{bottom:161.640000px;}
.y141{bottom:163.080000px;}
.y32{bottom:163.800000px;}
.yfd{bottom:164.520000px;}
.y110{bottom:166.320000px;}
.y6d{bottom:170.280000px;}
.y15c{bottom:172.440000px;}
.y119{bottom:174.960000px;}
.ya7{bottom:178.920000px;}
.yd6{bottom:180.000000px;}
.y65{bottom:182.160000px;}
.y140{bottom:183.960000px;}
.y31{bottom:184.680000px;}
.yfc{bottom:185.040000px;}
.y10f{bottom:186.840000px;}
.y15b{bottom:189.720000px;}
.y80{bottom:190.800000px;}
.y118{bottom:195.840000px;}
.ya6{bottom:199.440000px;}
.y6c{bottom:202.680000px;}
.y64{bottom:203.040000px;}
.y13f{bottom:204.480000px;}
.yfb{bottom:205.920000px;}
.y15a{bottom:207.000000px;}
.y10e{bottom:207.720000px;}
.y7f{bottom:211.680000px;}
.yd5{bottom:212.400000px;}
.y30{bottom:214.920000px;}
.y117{bottom:216.360000px;}
.ya5{bottom:220.320000px;}
.y63{bottom:223.560000px;}
.y159{bottom:224.280000px;}
.y13e{bottom:225.000000px;}
.yfa{bottom:226.440000px;}
.y10d{bottom:228.240000px;}
.yd4{bottom:231.840000px;}
.y7e{bottom:232.200000px;}
.y2f{bottom:235.800000px;}
.y116{bottom:237.240000px;}
.ya4{bottom:240.840000px;}
.y158{bottom:241.560000px;}
.y62{bottom:244.440000px;}
.y13d{bottom:245.880000px;}
.yf9{bottom:247.320000px;}
.yd3{bottom:247.680000px;}
.y10c{bottom:249.120000px;}
.y7d{bottom:253.080000px;}
.y2e{bottom:256.680000px;}
.y115{bottom:257.760000px;}
.y157{bottom:258.840000px;}
.ya3{bottom:261.720000px;}
.y61{bottom:264.960000px;}
.y13c{bottom:266.400000px;}
.yd2{bottom:268.200000px;}
.y10b{bottom:269.640000px;}
.y7c{bottom:273.600000px;}
.y156{bottom:276.120000px;}
.y14e{bottom:278.280000px;}
.y131{bottom:278.640000px;}
.yf8{bottom:279.720000px;}
.ya2{bottom:282.240000px;}
.y2d{bottom:285.840000px;}
.y13b{bottom:287.280000px;}
.yd1{bottom:289.080000px;}
.y114{bottom:290.160000px;}
.y10a{bottom:290.520000px;}
.y155{bottom:293.400000px;}
.y7b{bottom:294.480000px;}
.y130{bottom:299.160000px;}
.yf7{bottom:299.880000px;}
.ya1{bottom:303.120000px;}
.y60{bottom:306.360000px;}
.y2c{bottom:307.080000px;}
.y13a{bottom:307.800000px;}
.y191{bottom:308.520000px;}
.yd0{bottom:309.600000px;}
.y113{bottom:309.960000px;}
.y109{bottom:311.040000px;}
.y7a{bottom:315.000000px;}
.yf6{bottom:318.240000px;}
.y12f{bottom:320.040000px;}
.y154{bottom:322.920000px;}
.ya0{bottom:323.640000px;}
.y190{bottom:325.800000px;}
.y5f{bottom:327.240000px;}
.y2b{bottom:327.600000px;}
.y139{bottom:328.680000px;}
.ycf{bottom:330.480000px;}
.y108{bottom:331.920000px;}
.y79{bottom:335.880000px;}
.yf5{bottom:338.760000px;}
.y12e{bottom:340.560000px;}
.y18f{bottom:343.440000px;}
.y153{bottom:343.800000px;}
.y9f{bottom:344.520000px;}
.y5e{bottom:347.760000px;}
.y2a{bottom:348.480000px;}
.y138{bottom:349.200000px;}
.yce{bottom:351.000000px;}
.y107{bottom:352.440000px;}
.y78{bottom:356.400000px;}
.yf4{bottom:359.640000px;}
.y18e{bottom:360.720000px;}
.y12d{bottom:361.440000px;}
.y9e{bottom:365.040000px;}
.y5d{bottom:368.640000px;}
.y29{bottom:369.000000px;}
.y137{bottom:370.080000px;}
.ycd{bottom:371.880000px;}
.y106{bottom:373.320000px;}
.y77{bottom:377.280000px;}
.y18d{bottom:378.000000px;}
.yf3{bottom:380.160000px;}
.y12c{bottom:381.960000px;}
.y9d{bottom:385.920000px;}
.y5c{bottom:389.160000px;}
.y28{bottom:389.880000px;}
.y136{bottom:390.600000px;}
.ycc{bottom:392.400000px;}
.y18c{bottom:395.280000px;}
.y76{bottom:397.800000px;}
.yf2{bottom:401.040000px;}
.y12b{bottom:402.840000px;}
.y105{bottom:405.360000px;}
.yb9{bottom:406.440000px;}
.y5b{bottom:410.040000px;}
.y27{bottom:410.400000px;}
.y135{bottom:411.480000px;}
.y18b{bottom:412.560000px;}
.ycb{bottom:413.280000px;}
.y9c{bottom:418.320000px;}
.y75{bottom:418.680000px;}
.yf1{bottom:421.560000px;}
.y12a{bottom:423.360000px;}
.y104{bottom:425.160000px;}
.yb8{bottom:427.320000px;}
.y18a{bottom:429.840000px;}
.y5a{bottom:430.560000px;}
.y26{bottom:431.280000px;}
.y134{bottom:432.000000px;}
.yca{bottom:433.800000px;}
.y74{bottom:439.200000px;}
.yf0{bottom:442.440000px;}
.y129{bottom:444.240000px;}
.y189{bottom:447.120000px;}
.yb7{bottom:447.840000px;}
.y59{bottom:451.440000px;}
.y25{bottom:451.800000px;}
.yc9{bottom:454.680000px;}
.y73{bottom:460.080000px;}
.yef{bottom:462.960000px;}
.y188{bottom:464.040000px;}
.y133{bottom:464.400000px;}
.y128{bottom:464.760000px;}
.yb6{bottom:468.720000px;}
.y58{bottom:471.960000px;}
.y24{bottom:472.680000px;}
.yc8{bottom:475.200000px;}
.y72{bottom:480.600000px;}
.y187{bottom:481.320000px;}
.yee{bottom:483.840000px;}
.y132{bottom:484.200000px;}
.y127{bottom:485.640000px;}
.yb5{bottom:489.240000px;}
.y57{bottom:492.840000px;}
.y23{bottom:493.200000px;}
.yc7{bottom:496.080000px;}
.y186{bottom:498.600000px;}
.y9b{bottom:501.480000px;}
.yed{bottom:504.360000px;}
.y126{bottom:506.160000px;}
.yb4{bottom:510.120000px;}
.y71{bottom:513.000000px;}
.y56{bottom:513.360000px;}
.y22{bottom:514.080000px;}
.y185{bottom:515.880000px;}
.yc6{bottom:516.600000px;}
.y9a{bottom:522.000000px;}
.yec{bottom:525.240000px;}
.y125{bottom:527.040000px;}
.yb3{bottom:530.640000px;}
.y184{bottom:533.160000px;}
.y55{bottom:534.240000px;}
.y21{bottom:534.600000px;}
.yc5{bottom:537.480000px;}
.y99{bottom:542.880000px;}
.yeb{bottom:545.760000px;}
.y124{bottom:547.560000px;}
.y183{bottom:550.440000px;}
.yb2{bottom:551.520000px;}
.y54{bottom:554.760000px;}
.y20{bottom:555.480000px;}
.yc4{bottom:558.000000px;}
.y98{bottom:563.400000px;}
.yea{bottom:566.640000px;}
.y182{bottom:567.720000px;}
.y123{bottom:568.440000px;}
.yb1{bottom:572.040000px;}
.y53{bottom:575.640000px;}
.y1f{bottom:576.000000px;}
.yc3{bottom:578.880000px;}
.ybe{bottom:583.920000px;}
.y97{bottom:584.280000px;}
.y181{bottom:585.000000px;}
.ye9{bottom:587.160000px;}
.y122{bottom:588.960000px;}
.y152{bottom:592.920000px;}
.y52{bottom:596.160000px;}
.y1e{bottom:596.520000px;}
.yc2{bottom:599.400000px;}
.y180{bottom:602.280000px;}
.yb0{bottom:604.440000px;}
.y96{bottom:604.800000px;}
.ye8{bottom:608.040000px;}
.y121{bottom:609.840000px;}
.y151{bottom:613.440000px;}
.y51{bottom:617.040000px;}
.y1d{bottom:617.400000px;}
.y17f{bottom:619.560000px;}
.yc1{bottom:620.280000px;}
.y95{bottom:625.680000px;}
.ye7{bottom:628.560000px;}
.y120{bottom:630.360000px;}
.y17e{bottom:636.840000px;}
.y50{bottom:637.560000px;}
.y1c{bottom:637.920000px;}
.y150{bottom:645.840000px;}
.y94{bottom:646.200000px;}
.ye6{bottom:649.440000px;}
.y14d{bottom:651.240000px;}
.yc0{bottom:652.680000px;}
.y17d{bottom:653.760000px;}
.y4f{bottom:658.440000px;}
.y1b{bottom:658.800000px;}
.y11f{bottom:662.760000px;}
.y93{bottom:667.080000px;}
.ye5{bottom:669.960000px;}
.y17c{bottom:671.040000px;}
.y14c{bottom:671.760000px;}
.ybf{bottom:672.120000px;}
.y4e{bottom:678.960000px;}
.y1a{bottom:679.320000px;}
.y11e{bottom:682.560000px;}
.y92{bottom:687.600000px;}
.y17b{bottom:688.320000px;}
.ye4{bottom:690.840000px;}
.y14b{bottom:692.640000px;}
.yad{bottom:699.480000px;}
.y4d{bottom:699.840000px;}
.y19{bottom:700.200000px;}
.y17a{bottom:705.600000px;}
.y91{bottom:708.480000px;}
.ye3{bottom:711.360000px;}
.y14a{bottom:713.160000px;}
.y4c{bottom:720.360000px;}
.y18{bottom:720.720000px;}
.y179{bottom:722.880000px;}
.y90{bottom:729.000000px;}
.ye2{bottom:732.240000px;}
.y149{bottom:734.040000px;}
.y178{bottom:740.160000px;}
.y4b{bottom:741.240000px;}
.y17{bottom:741.600000px;}
.y8f{bottom:749.880000px;}
.ye1{bottom:752.760000px;}
.y148{bottom:754.560000px;}
.y177{bottom:757.440000px;}
.y4a{bottom:761.760000px;}
.y16{bottom:762.120000px;}
.y8e{bottom:770.400000px;}
.ye0{bottom:773.640000px;}
.y176{bottom:774.720000px;}
.y147{bottom:775.440000px;}
.y49{bottom:782.280000px;}
.y15{bottom:783.000000px;}
.y8d{bottom:791.280000px;}
.y175{bottom:792.000000px;}
.ydf{bottom:794.160000px;}
.y48{bottom:803.160000px;}
.y14{bottom:803.520000px;}
.y146{bottom:807.840000px;}
.y174{bottom:809.280000px;}
.y8c{bottom:811.800000px;}
.yde{bottom:815.040000px;}
.y47{bottom:823.680000px;}
.y13{bottom:824.400000px;}
.y173{bottom:826.560000px;}
.y145{bottom:827.640000px;}
.y8b{bottom:832.680000px;}
.ydd{bottom:835.560000px;}
.y172{bottom:843.480000px;}
.y46{bottom:844.560000px;}
.y12{bottom:844.920000px;}
.y8a{bottom:853.200000px;}
.y103{bottom:856.440000px;}
.y171{bottom:860.760000px;}
.yac{bottom:864.720000px;}
.y45{bottom:865.080000px;}
.y11{bottom:865.800000px;}
.ydc{bottom:867.960000px;}
.y89{bottom:874.080000px;}
.y170{bottom:878.040000px;}
.y44{bottom:885.960000px;}
.y10{bottom:886.320000px;}
.ydb{bottom:888.120000px;}
.y102{bottom:888.840000px;}
.y88{bottom:894.600000px;}
.y16f{bottom:895.320000px;}
.y43{bottom:906.480000px;}
.yf{bottom:906.840000px;}
.y101{bottom:909.000000px;}
.y16e{bottom:912.600000px;}
.y87{bottom:915.480000px;}
.ye{bottom:927.360000px;}
.y16d{bottom:929.880000px;}
.y86{bottom:936.000000px;}
.yd{bottom:944.640000px;}
.y16c{bottom:947.160000px;}
.y42{bottom:947.880000px;}
.y85{bottom:956.880000px;}
.y16b{bottom:964.440000px;}
.y41{bottom:968.760000px;}
.yc{bottom:971.280000px;}
.y84{bottom:977.400000px;}
.y16a{bottom:981.720000px;}
.y14f{bottom:988.920000px;}
.y40{bottom:989.280000px;}
.y83{bottom:998.280000px;}
.y169{bottom:999.000000px;}
.yb{bottom:1001.160000px;}
.y3f{bottom:1010.160000px;}
.y168{bottom:1016.280000px;}
.y82{bottom:1018.800000px;}
.ya{bottom:1023.840000px;}
.y3e{bottom:1030.680000px;}
.y167{bottom:1033.560000px;}
.yaf{bottom:1039.680000px;}
.y166{bottom:1050.480000px;}
.y81{bottom:1051.200000px;}
.y3d{bottom:1051.560000px;}
.y9{bottom:1054.800000px;}
.ybd{bottom:1060.200000px;}
.y165{bottom:1067.760000px;}
.yae{bottom:1071.720000px;}
.y3c{bottom:1072.080000px;}
.ybc{bottom:1081.080000px;}
.y164{bottom:1085.040000px;}
.y8{bottom:1086.120000px;}
.y3b{bottom:1092.960000px;}
.ybb{bottom:1101.600000px;}
.y163{bottom:1102.320000px;}
.y3a{bottom:1113.480000px;}
.y7{bottom:1117.080000px;}
.y162{bottom:1119.600000px;}
.yba{bottom:1134.000000px;}
.y39{bottom:1134.360000px;}
.y161{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;}
.hc{height:31.672266px;}
.he{height:36.471094px;}
.hd{height:40.310156px;}
.hf{height:42.022969px;}
.h9{height:42.347813px;}
.h3{height:44.149219px;}
.hb{height:46.448640px;}
.ha{height:48.660480px;}
.h7{height:48.796875px;}
.h4{height:50.308594px;}
.h2{height:50.872320px;}
.h8{height:51.679688px;}
.h6{height:73.195313px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w2{width:31.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:127.439928px;}
.xb{left:141.830928px;}
.x4{left:154.439928px;}
.x13{left:159.390036px;}
.xd{left:169.965072px;}
.x6{left:171.630252px;}
.x11{left:180.614844px;}
.x7{left:191.161728px;}
.x12{left:208.439928px;}
.xf{left:209.952036px;}
.xc{left:217.189836px;}
.x2{left:233.702280px;}
.x1{left:242.852076px;}
.xa{left:266.657616px;}
.x8{left:346.029408px;}
.x3{left:446.152320px;}
.xe{left:534.392985px;}
.x10{left:556.158960px;}
.x5{left:735.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls58{letter-spacing:-1.435392pt;}
.ls4c{letter-spacing:-1.419264pt;}
.ls56{letter-spacing:-1.408512pt;}
.ls1b{letter-spacing:-1.365504pt;}
.ls46{letter-spacing:-1.349376pt;}
.ls11{letter-spacing:-1.344000pt;}
.ls19{letter-spacing:-1.338624pt;}
.ls4b{letter-spacing:-1.333248pt;}
.ls10{letter-spacing:-1.331200pt;}
.lsf{letter-spacing:-1.324800pt;}
.ls1a{letter-spacing:-1.311744pt;}
.ls48{letter-spacing:-1.295616pt;}
.ls49{letter-spacing:-1.279488pt;}
.ls4a{letter-spacing:-1.263360pt;}
.ls47{letter-spacing:-1.209600pt;}
.ls59{letter-spacing:-1.193472pt;}
.ls57{letter-spacing:-1.171968pt;}
.ls12{letter-spacing:-1.075200pt;}
.ls13{letter-spacing:-1.068800pt;}
.ls14{letter-spacing:-1.056000pt;}
.lsa{letter-spacing:-0.354816pt;}
.lsc{letter-spacing:-0.301056pt;}
.lsd{letter-spacing:-0.268800pt;}
.lse{letter-spacing:-0.215040pt;}
.ls17{letter-spacing:-0.197120pt;}
.ls8{letter-spacing:-0.158976pt;}
.ls18{letter-spacing:-0.157696pt;}
.lsb{letter-spacing:-0.139776pt;}
.ls2{letter-spacing:-0.129536pt;}
.ls7{letter-spacing:-0.117760pt;}
.ls6{letter-spacing:-0.058880pt;}
.ls3{letter-spacing:-0.052992pt;}
.ls4{letter-spacing:-0.047104pt;}
.ls9{letter-spacing:-0.019200pt;}
.ls3c{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.012800pt;}
.ls15{letter-spacing:0.180224pt;}
.ls21{letter-spacing:0.245760pt;}
.ls20{letter-spacing:0.557440pt;}
.ls30{letter-spacing:0.748800pt;}
.ls3b{letter-spacing:1.141632pt;}
.ls1c{letter-spacing:1.328640pt;}
.ls52{letter-spacing:1.937920pt;}
.ls32{letter-spacing:2.104320pt;}
.ls2f{letter-spacing:2.152960pt;}
.ls36{letter-spacing:2.634240pt;}
.ls37{letter-spacing:3.097728pt;}
.ls38{letter-spacing:3.098880pt;}
.ls50{letter-spacing:4.532480pt;}
.ls4f{letter-spacing:4.532736pt;}
.ls34{letter-spacing:4.700160pt;}
.ls24{letter-spacing:4.894720pt;}
.ls45{letter-spacing:4.993280pt;}
.ls43{letter-spacing:5.012480pt;}
.ls55{letter-spacing:5.103360pt;}
.ls44{letter-spacing:5.128960pt;}
.ls4e{letter-spacing:6.167040pt;}
.ls22{letter-spacing:6.401024pt;}
.ls25{letter-spacing:7.097728pt;}
.ls1d{letter-spacing:7.467392pt;}
.ls1e{letter-spacing:7.467520pt;}
.ls1f{letter-spacing:7.468800pt;}
.ls28{letter-spacing:8.202240pt;}
.ls26{letter-spacing:8.788480pt;}
.ls54{letter-spacing:8.970240pt;}
.ls2d{letter-spacing:9.214848pt;}
.ls29{letter-spacing:10.661120pt;}
.ls31{letter-spacing:10.931200pt;}
.ls35{letter-spacing:11.622400pt;}
.ls2e{letter-spacing:12.147200pt;}
.ls41{letter-spacing:12.607616pt;}
.ls39{letter-spacing:14.597760pt;}
.ls2c{letter-spacing:14.694400pt;}
.ls0{letter-spacing:15.389440pt;}
.ls4d{letter-spacing:16.157824pt;}
.ls27{letter-spacing:16.492800pt;}
.ls16{letter-spacing:17.736960pt;}
.ls33{letter-spacing:18.570240pt;}
.ls2b{letter-spacing:19.248768pt;}
.ls2a{letter-spacing:19.641600pt;}
.ls53{letter-spacing:20.410880pt;}
.ls42{letter-spacing:21.126144pt;}
.ls23{letter-spacing:21.847680pt;}
.ls3e{letter-spacing:27.274368pt;}
.ls3f{letter-spacing:30.208000pt;}
.ls3d{letter-spacing:32.340736pt;}
.ls3a{letter-spacing:33.141632pt;}
.ls51{letter-spacing:35.912960pt;}
.ls1{letter-spacing:55.701760pt;}
.ws0{word-spacing:-16.368640pt;}
.wse{word-spacing:-16.012800pt;}
.ws6{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.987200pt;}
.wsb{word-spacing:-14.945280pt;}
.wsc{word-spacing:-14.944000pt;}
.ws9{word-spacing:-14.931200pt;}
.ws7{word-spacing:-14.924800pt;}
.ws5{word-spacing:-14.675200pt;}
.wsa{word-spacing:-13.606656pt;}
.ws4{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.224960pt;}
.ws2{word-spacing:-13.138944pt;}
.ws13{word-spacing:-12.246528pt;}
.ws11{word-spacing:-12.230400pt;}
.ws14{word-spacing:-12.176640pt;}
.ws10{word-spacing:-12.160512pt;}
.wsf{word-spacing:-12.144384pt;}
.ws12{word-spacing:-12.106752pt;}
.ws1{word-spacing:-0.044800pt;}
.ws8{word-spacing:0.000000pt;}
._31{margin-left:-4.725632pt;}
._6{margin-left:-1.799936pt;}
._0{margin-left:-0.897664pt;}
._2{width:0.913920pt;}
._3{width:1.850368pt;}
._11{width:2.816000pt;}
._1f{width:3.717632pt;}
._7{width:4.672000pt;}
._18{width:5.824000pt;}
._e{width:7.104000pt;}
._d{width:8.064000pt;}
._4{width:9.024000pt;}
._1c{width:10.176000pt;}
._9{width:11.136000pt;}
._b{width:12.096000pt;}
._1b{width:13.120000pt;}
._24{width:14.011392pt;}
._30{width:14.905600pt;}
._1e{width:15.846400pt;}
._c{width:16.768000pt;}
._15{width:17.920000pt;}
._1a{width:18.880000pt;}
._12{width:20.032000pt;}
._5{width:21.632000pt;}
._10{width:23.296000pt;}
._1d{width:24.512000pt;}
._21{width:25.536000pt;}
._22{width:26.560000pt;}
._20{width:27.456000pt;}
._27{width:28.352000pt;}
._23{width:29.504000pt;}
._8{width:30.528000pt;}
._2a{width:32.064000pt;}
._2e{width:32.960000pt;}
._2d{width:34.112000pt;}
._17{width:35.136000pt;}
._29{width:36.096000pt;}
._13{width:37.120000pt;}
._a{width:38.912000pt;}
._25{width:40.064000pt;}
._26{width:40.960000pt;}
._19{width:44.032000pt;}
._2b{width:45.184000pt;}
._28{width:46.144000pt;}
._2f{width:48.384000pt;}
._f{width:50.048000pt;}
._14{width:52.096000pt;}
._2c{width:55.040000pt;}
._16{width:56.848256pt;}
._1{width:1728.000256pt;}
.fs5{font-size:42.240000pt;}
.fs6{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;}
.y6{bottom:4.853333pt;}
.y5{bottom:46.666667pt;}
.y4{bottom:51.520000pt;}
.y35{bottom:80.320000pt;}
.y11d{bottom:81.920000pt;}
.yab{bottom:85.440000pt;}
.yda{bottom:86.400000pt;}
.y69{bottom:88.320000pt;}
.y144{bottom:89.920000pt;}
.y100{bottom:90.880000pt;}
.y160{bottom:92.160000pt;}
.y70{bottom:96.000000pt;}
.y34{bottom:98.560000pt;}
.y11c{bottom:100.480000pt;}
.yaa{bottom:103.680000pt;}
.yd9{bottom:104.960000pt;}
.y68{bottom:106.880000pt;}
.y15f{bottom:107.200000pt;}
.y143{bottom:108.160000pt;}
.yff{bottom:109.440000pt;}
.y112{bottom:111.040000pt;}
.y6f{bottom:114.560000pt;}
.y33{bottom:117.120000pt;}
.y11b{bottom:118.720000pt;}
.ya9{bottom:122.240000pt;}
.y15e{bottom:122.560000pt;}
.yd8{bottom:123.200000pt;}
.y67{bottom:125.120000pt;}
.y142{bottom:126.720000pt;}
.yfe{bottom:127.680000pt;}
.y111{bottom:129.280000pt;}
.y6e{bottom:132.800000pt;}
.y11a{bottom:137.280000pt;}
.y15d{bottom:137.920000pt;}
.ya8{bottom:140.480000pt;}
.yd7{bottom:141.760000pt;}
.y66{bottom:143.680000pt;}
.y141{bottom:144.960000pt;}
.y32{bottom:145.600000pt;}
.yfd{bottom:146.240000pt;}
.y110{bottom:147.840000pt;}
.y6d{bottom:151.360000pt;}
.y15c{bottom:153.280000pt;}
.y119{bottom:155.520000pt;}
.ya7{bottom:159.040000pt;}
.yd6{bottom:160.000000pt;}
.y65{bottom:161.920000pt;}
.y140{bottom:163.520000pt;}
.y31{bottom:164.160000pt;}
.yfc{bottom:164.480000pt;}
.y10f{bottom:166.080000pt;}
.y15b{bottom:168.640000pt;}
.y80{bottom:169.600000pt;}
.y118{bottom:174.080000pt;}
.ya6{bottom:177.280000pt;}
.y6c{bottom:180.160000pt;}
.y64{bottom:180.480000pt;}
.y13f{bottom:181.760000pt;}
.yfb{bottom:183.040000pt;}
.y15a{bottom:184.000000pt;}
.y10e{bottom:184.640000pt;}
.y7f{bottom:188.160000pt;}
.yd5{bottom:188.800000pt;}
.y30{bottom:191.040000pt;}
.y117{bottom:192.320000pt;}
.ya5{bottom:195.840000pt;}
.y63{bottom:198.720000pt;}
.y159{bottom:199.360000pt;}
.y13e{bottom:200.000000pt;}
.yfa{bottom:201.280000pt;}
.y10d{bottom:202.880000pt;}
.yd4{bottom:206.080000pt;}
.y7e{bottom:206.400000pt;}
.y2f{bottom:209.600000pt;}
.y116{bottom:210.880000pt;}
.ya4{bottom:214.080000pt;}
.y158{bottom:214.720000pt;}
.y62{bottom:217.280000pt;}
.y13d{bottom:218.560000pt;}
.yf9{bottom:219.840000pt;}
.yd3{bottom:220.160000pt;}
.y10c{bottom:221.440000pt;}
.y7d{bottom:224.960000pt;}
.y2e{bottom:228.160000pt;}
.y115{bottom:229.120000pt;}
.y157{bottom:230.080000pt;}
.ya3{bottom:232.640000pt;}
.y61{bottom:235.520000pt;}
.y13c{bottom:236.800000pt;}
.yd2{bottom:238.400000pt;}
.y10b{bottom:239.680000pt;}
.y7c{bottom:243.200000pt;}
.y156{bottom:245.440000pt;}
.y14e{bottom:247.360000pt;}
.y131{bottom:247.680000pt;}
.yf8{bottom:248.640000pt;}
.ya2{bottom:250.880000pt;}
.y2d{bottom:254.080000pt;}
.y13b{bottom:255.360000pt;}
.yd1{bottom:256.960000pt;}
.y114{bottom:257.920000pt;}
.y10a{bottom:258.240000pt;}
.y155{bottom:260.800000pt;}
.y7b{bottom:261.760000pt;}
.y130{bottom:265.920000pt;}
.yf7{bottom:266.560000pt;}
.ya1{bottom:269.440000pt;}
.y60{bottom:272.320000pt;}
.y2c{bottom:272.960000pt;}
.y13a{bottom:273.600000pt;}
.y191{bottom:274.240000pt;}
.yd0{bottom:275.200000pt;}
.y113{bottom:275.520000pt;}
.y109{bottom:276.480000pt;}
.y7a{bottom:280.000000pt;}
.yf6{bottom:282.880000pt;}
.y12f{bottom:284.480000pt;}
.y154{bottom:287.040000pt;}
.ya0{bottom:287.680000pt;}
.y190{bottom:289.600000pt;}
.y5f{bottom:290.880000pt;}
.y2b{bottom:291.200000pt;}
.y139{bottom:292.160000pt;}
.ycf{bottom:293.760000pt;}
.y108{bottom:295.040000pt;}
.y79{bottom:298.560000pt;}
.yf5{bottom:301.120000pt;}
.y12e{bottom:302.720000pt;}
.y18f{bottom:305.280000pt;}
.y153{bottom:305.600000pt;}
.y9f{bottom:306.240000pt;}
.y5e{bottom:309.120000pt;}
.y2a{bottom:309.760000pt;}
.y138{bottom:310.400000pt;}
.yce{bottom:312.000000pt;}
.y107{bottom:313.280000pt;}
.y78{bottom:316.800000pt;}
.yf4{bottom:319.680000pt;}
.y18e{bottom:320.640000pt;}
.y12d{bottom:321.280000pt;}
.y9e{bottom:324.480000pt;}
.y5d{bottom:327.680000pt;}
.y29{bottom:328.000000pt;}
.y137{bottom:328.960000pt;}
.ycd{bottom:330.560000pt;}
.y106{bottom:331.840000pt;}
.y77{bottom:335.360000pt;}
.y18d{bottom:336.000000pt;}
.yf3{bottom:337.920000pt;}
.y12c{bottom:339.520000pt;}
.y9d{bottom:343.040000pt;}
.y5c{bottom:345.920000pt;}
.y28{bottom:346.560000pt;}
.y136{bottom:347.200000pt;}
.ycc{bottom:348.800000pt;}
.y18c{bottom:351.360000pt;}
.y76{bottom:353.600000pt;}
.yf2{bottom:356.480000pt;}
.y12b{bottom:358.080000pt;}
.y105{bottom:360.320000pt;}
.yb9{bottom:361.280000pt;}
.y5b{bottom:364.480000pt;}
.y27{bottom:364.800000pt;}
.y135{bottom:365.760000pt;}
.y18b{bottom:366.720000pt;}
.ycb{bottom:367.360000pt;}
.y9c{bottom:371.840000pt;}
.y75{bottom:372.160000pt;}
.yf1{bottom:374.720000pt;}
.y12a{bottom:376.320000pt;}
.y104{bottom:377.920000pt;}
.yb8{bottom:379.840000pt;}
.y18a{bottom:382.080000pt;}
.y5a{bottom:382.720000pt;}
.y26{bottom:383.360000pt;}
.y134{bottom:384.000000pt;}
.yca{bottom:385.600000pt;}
.y74{bottom:390.400000pt;}
.yf0{bottom:393.280000pt;}
.y129{bottom:394.880000pt;}
.y189{bottom:397.440000pt;}
.yb7{bottom:398.080000pt;}
.y59{bottom:401.280000pt;}
.y25{bottom:401.600000pt;}
.yc9{bottom:404.160000pt;}
.y73{bottom:408.960000pt;}
.yef{bottom:411.520000pt;}
.y188{bottom:412.480000pt;}
.y133{bottom:412.800000pt;}
.y128{bottom:413.120000pt;}
.yb6{bottom:416.640000pt;}
.y58{bottom:419.520000pt;}
.y24{bottom:420.160000pt;}
.yc8{bottom:422.400000pt;}
.y72{bottom:427.200000pt;}
.y187{bottom:427.840000pt;}
.yee{bottom:430.080000pt;}
.y132{bottom:430.400000pt;}
.y127{bottom:431.680000pt;}
.yb5{bottom:434.880000pt;}
.y57{bottom:438.080000pt;}
.y23{bottom:438.400000pt;}
.yc7{bottom:440.960000pt;}
.y186{bottom:443.200000pt;}
.y9b{bottom:445.760000pt;}
.yed{bottom:448.320000pt;}
.y126{bottom:449.920000pt;}
.yb4{bottom:453.440000pt;}
.y71{bottom:456.000000pt;}
.y56{bottom:456.320000pt;}
.y22{bottom:456.960000pt;}
.y185{bottom:458.560000pt;}
.yc6{bottom:459.200000pt;}
.y9a{bottom:464.000000pt;}
.yec{bottom:466.880000pt;}
.y125{bottom:468.480000pt;}
.yb3{bottom:471.680000pt;}
.y184{bottom:473.920000pt;}
.y55{bottom:474.880000pt;}
.y21{bottom:475.200000pt;}
.yc5{bottom:477.760000pt;}
.y99{bottom:482.560000pt;}
.yeb{bottom:485.120000pt;}
.y124{bottom:486.720000pt;}
.y183{bottom:489.280000pt;}
.yb2{bottom:490.240000pt;}
.y54{bottom:493.120000pt;}
.y20{bottom:493.760000pt;}
.yc4{bottom:496.000000pt;}
.y98{bottom:500.800000pt;}
.yea{bottom:503.680000pt;}
.y182{bottom:504.640000pt;}
.y123{bottom:505.280000pt;}
.yb1{bottom:508.480000pt;}
.y53{bottom:511.680000pt;}
.y1f{bottom:512.000000pt;}
.yc3{bottom:514.560000pt;}
.ybe{bottom:519.040000pt;}
.y97{bottom:519.360000pt;}
.y181{bottom:520.000000pt;}
.ye9{bottom:521.920000pt;}
.y122{bottom:523.520000pt;}
.y152{bottom:527.040000pt;}
.y52{bottom:529.920000pt;}
.y1e{bottom:530.240000pt;}
.yc2{bottom:532.800000pt;}
.y180{bottom:535.360000pt;}
.yb0{bottom:537.280000pt;}
.y96{bottom:537.600000pt;}
.ye8{bottom:540.480000pt;}
.y121{bottom:542.080000pt;}
.y151{bottom:545.280000pt;}
.y51{bottom:548.480000pt;}
.y1d{bottom:548.800000pt;}
.y17f{bottom:550.720000pt;}
.yc1{bottom:551.360000pt;}
.y95{bottom:556.160000pt;}
.ye7{bottom:558.720000pt;}
.y120{bottom:560.320000pt;}
.y17e{bottom:566.080000pt;}
.y50{bottom:566.720000pt;}
.y1c{bottom:567.040000pt;}
.y150{bottom:574.080000pt;}
.y94{bottom:574.400000pt;}
.ye6{bottom:577.280000pt;}
.y14d{bottom:578.880000pt;}
.yc0{bottom:580.160000pt;}
.y17d{bottom:581.120000pt;}
.y4f{bottom:585.280000pt;}
.y1b{bottom:585.600000pt;}
.y11f{bottom:589.120000pt;}
.y93{bottom:592.960000pt;}
.ye5{bottom:595.520000pt;}
.y17c{bottom:596.480000pt;}
.y14c{bottom:597.120000pt;}
.ybf{bottom:597.440000pt;}
.y4e{bottom:603.520000pt;}
.y1a{bottom:603.840000pt;}
.y11e{bottom:606.720000pt;}
.y92{bottom:611.200000pt;}
.y17b{bottom:611.840000pt;}
.ye4{bottom:614.080000pt;}
.y14b{bottom:615.680000pt;}
.yad{bottom:621.760000pt;}
.y4d{bottom:622.080000pt;}
.y19{bottom:622.400000pt;}
.y17a{bottom:627.200000pt;}
.y91{bottom:629.760000pt;}
.ye3{bottom:632.320000pt;}
.y14a{bottom:633.920000pt;}
.y4c{bottom:640.320000pt;}
.y18{bottom:640.640000pt;}
.y179{bottom:642.560000pt;}
.y90{bottom:648.000000pt;}
.ye2{bottom:650.880000pt;}
.y149{bottom:652.480000pt;}
.y178{bottom:657.920000pt;}
.y4b{bottom:658.880000pt;}
.y17{bottom:659.200000pt;}
.y8f{bottom:666.560000pt;}
.ye1{bottom:669.120000pt;}
.y148{bottom:670.720000pt;}
.y177{bottom:673.280000pt;}
.y4a{bottom:677.120000pt;}
.y16{bottom:677.440000pt;}
.y8e{bottom:684.800000pt;}
.ye0{bottom:687.680000pt;}
.y176{bottom:688.640000pt;}
.y147{bottom:689.280000pt;}
.y49{bottom:695.360000pt;}
.y15{bottom:696.000000pt;}
.y8d{bottom:703.360000pt;}
.y175{bottom:704.000000pt;}
.ydf{bottom:705.920000pt;}
.y48{bottom:713.920000pt;}
.y14{bottom:714.240000pt;}
.y146{bottom:718.080000pt;}
.y174{bottom:719.360000pt;}
.y8c{bottom:721.600000pt;}
.yde{bottom:724.480000pt;}
.y47{bottom:732.160000pt;}
.y13{bottom:732.800000pt;}
.y173{bottom:734.720000pt;}
.y145{bottom:735.680000pt;}
.y8b{bottom:740.160000pt;}
.ydd{bottom:742.720000pt;}
.y172{bottom:749.760000pt;}
.y46{bottom:750.720000pt;}
.y12{bottom:751.040000pt;}
.y8a{bottom:758.400000pt;}
.y103{bottom:761.280000pt;}
.y171{bottom:765.120000pt;}
.yac{bottom:768.640000pt;}
.y45{bottom:768.960000pt;}
.y11{bottom:769.600000pt;}
.ydc{bottom:771.520000pt;}
.y89{bottom:776.960000pt;}
.y170{bottom:780.480000pt;}
.y44{bottom:787.520000pt;}
.y10{bottom:787.840000pt;}
.ydb{bottom:789.440000pt;}
.y102{bottom:790.080000pt;}
.y88{bottom:795.200000pt;}
.y16f{bottom:795.840000pt;}
.y43{bottom:805.760000pt;}
.yf{bottom:806.080000pt;}
.y101{bottom:808.000000pt;}
.y16e{bottom:811.200000pt;}
.y87{bottom:813.760000pt;}
.ye{bottom:824.320000pt;}
.y16d{bottom:826.560000pt;}
.y86{bottom:832.000000pt;}
.yd{bottom:839.680000pt;}
.y16c{bottom:841.920000pt;}
.y42{bottom:842.560000pt;}
.y85{bottom:850.560000pt;}
.y16b{bottom:857.280000pt;}
.y41{bottom:861.120000pt;}
.yc{bottom:863.360000pt;}
.y84{bottom:868.800000pt;}
.y16a{bottom:872.640000pt;}
.y14f{bottom:879.040000pt;}
.y40{bottom:879.360000pt;}
.y83{bottom:887.360000pt;}
.y169{bottom:888.000000pt;}
.yb{bottom:889.920000pt;}
.y3f{bottom:897.920000pt;}
.y168{bottom:903.360000pt;}
.y82{bottom:905.600000pt;}
.ya{bottom:910.080000pt;}
.y3e{bottom:916.160000pt;}
.y167{bottom:918.720000pt;}
.yaf{bottom:924.160000pt;}
.y166{bottom:933.760000pt;}
.y81{bottom:934.400000pt;}
.y3d{bottom:934.720000pt;}
.y9{bottom:937.600000pt;}
.ybd{bottom:942.400000pt;}
.y165{bottom:949.120000pt;}
.yae{bottom:952.640000pt;}
.y3c{bottom:952.960000pt;}
.ybc{bottom:960.960000pt;}
.y164{bottom:964.480000pt;}
.y8{bottom:965.440000pt;}
.y3b{bottom:971.520000pt;}
.ybb{bottom:979.200000pt;}
.y163{bottom:979.840000pt;}
.y3a{bottom:989.760000pt;}
.y7{bottom:992.960000pt;}
.y162{bottom:995.200000pt;}
.yba{bottom:1008.000000pt;}
.y39{bottom:1008.320000pt;}
.y161{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;}
.hc{height:28.153125pt;}
.he{height:32.418750pt;}
.hd{height:35.831250pt;}
.hf{height:37.353750pt;}
.h9{height:37.642500pt;}
.h3{height:39.243750pt;}
.hb{height:41.287680pt;}
.ha{height:43.253760pt;}
.h7{height:43.375000pt;}
.h4{height:44.718750pt;}
.h2{height:45.219840pt;}
.h8{height:45.937500pt;}
.h6{height:65.062500pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w2{width:28.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:113.279936pt;}
.xb{left:126.071936pt;}
.x4{left:137.279936pt;}
.x13{left:141.680032pt;}
.xd{left:151.080064pt;}
.x6{left:152.560224pt;}
.x11{left:160.546528pt;}
.x7{left:169.921536pt;}
.x12{left:185.279936pt;}
.xf{left:186.624032pt;}
.xc{left:193.057632pt;}
.x2{left:207.735360pt;}
.x1{left:215.868512pt;}
.xa{left:237.028992pt;}
.x8{left:307.581696pt;}
.x3{left:396.579840pt;}
.xe{left:475.015987pt;}
.x10{left:494.363520pt;}
.x5{left:653.333333pt;}
}




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